project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/RoomPlayerlistFragment.java
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 12:17:30 +0200
changeset 11765 10860d4bca22
parent 10017 de822cd3df3a
permissions -rw-r--r--
Add sound effects for: cleaver impact, air mine impact, using extra time
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7584
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     1
/*
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     2
 * Hedgewars for Android. An Android port of Hedgewars, a free turn based strategy game
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     3
 * Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com>
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     4
 *
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     5
 * This program is free software; you can redistribute it and/or
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     6
 * modify it under the terms of the GNU General Public License
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     7
 * as published by the Free Software Foundation; either version 2
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     8
 * of the License, or (at your option) any later version.
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
     9
 *
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    13
 * GNU General Public License for more details.
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    14
 *
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    15
 * You should have received a copy of the GNU General Public License
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    16
 * along with this program; if not, write to the Free Software
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    18
 */
7831c84cc644 License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents: 7582
diff changeset
    19
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    20
package org.hedgewars.hedgeroid;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    21
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    22
import org.hedgewars.hedgeroid.R;
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    23
import org.hedgewars.hedgeroid.Datastructures.Player;
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    24
import org.hedgewars.hedgeroid.Datastructures.PlayerInRoom;
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    25
import org.hedgewars.hedgeroid.netplay.Netplay;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    26
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    27
import android.os.Bundle;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    28
import android.support.v4.app.ListFragment;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    29
import android.view.ContextMenu;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    30
import android.view.ContextMenu.ContextMenuInfo;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    31
import android.view.LayoutInflater;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    32
import android.view.MenuInflater;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    33
import android.view.MenuItem;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    34
import android.view.View;
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    35
import android.view.ViewGroup;
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    36
import android.widget.AdapterView;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    37
import android.widget.AdapterView.AdapterContextMenuInfo;
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 7476
diff changeset
    38
import android.widget.AdapterView.OnItemClickListener;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    39
7582
714310efad8f Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents: 7508
diff changeset
    40
public class RoomPlayerlistFragment extends ListFragment implements OnItemClickListener {
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    41
    private Netplay netplay;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    42
    private RoomPlayerlistAdapter adapter;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    43
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    44
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    45
    public void onCreate(Bundle savedInstanceState) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    46
        super.onCreate(savedInstanceState);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    47
        netplay = Netplay.getAppInstance(getActivity().getApplicationContext());
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    48
        adapter = new RoomPlayerlistAdapter();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    49
        adapter.setSource(netplay.roomPlayerlist);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    50
        setListAdapter(adapter);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    51
    }
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    52
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    53
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    54
    public void onDestroy() {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    55
        super.onDestroy();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    56
        adapter.invalidate();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    57
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    58
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    59
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    60
    public void onActivityCreated(Bundle savedInstanceState) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    61
        super.onActivityCreated(savedInstanceState);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    62
        registerForContextMenu(getListView());
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    63
        getListView().setOnItemClickListener(this);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    64
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    65
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    66
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    67
    public void onCreateContextMenu(ContextMenu menu, View v,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    68
            ContextMenuInfo menuInfo) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    69
        super.onCreateContextMenu(menu, v, menuInfo);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    70
        AdapterContextMenuInfo info = (AdapterContextMenuInfo)menuInfo;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    71
        String playerName = adapter.getItem(info.position).player.name;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
    72
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    73
        MenuInflater inflater = getActivity().getMenuInflater();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    74
        inflater.inflate(R.menu.room_playerlist_context, menu);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    75
        if(netplay.isChief() && !playerName.equals(netplay.getPlayerName())) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    76
            inflater.inflate(R.menu.room_playerlist_chief_context, menu);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    77
        }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    78
        menu.setHeaderIcon(R.drawable.human);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    79
        menu.setHeaderTitle(playerName);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    80
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    81
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    82
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    83
    public boolean onContextItemSelected(MenuItem item) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    84
        AdapterContextMenuInfo info = (AdapterContextMenuInfo)item.getMenuInfo();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    85
        PlayerInRoom player = adapter.getItem(info.position);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    86
        switch(item.getItemId()) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    87
        case R.id.player_info:
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    88
            netplay.sendPlayerInfoQuery(player.player.name);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    89
            return true;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    90
        case R.id.player_kick:
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    91
            netplay.sendKick(player.player.name);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    92
            return true;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    93
        default:
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    94
            return super.onContextItemSelected(item);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    95
        }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    96
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    97
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    98
    @Override
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
    99
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   100
            Bundle savedInstanceState) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   101
        return inflater.inflate(R.layout.fragment_playerlist, container, false);
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   102
    }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   103
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   104
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   105
        Player player = adapter.getItem(position).player;
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   106
        if(player.name.equals(netplay.getPlayerName())) {
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   107
            netplay.sendToggleReady();
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   108
        }
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 7584
diff changeset
   109
    }
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
diff changeset
   110
}