author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 07 Apr 2019 19:26:16 +0200 | |
changeset 14755 | ab7bf5036314 |
parent 10017 | de822cd3df3a |
permissions | -rw-r--r-- |
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:
diff
changeset
|
20 |
package org.hedgewars.hedgeroid.netplay; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
21 |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
22 |
import static org.hedgewars.hedgeroid.netplay.ThreadedNetConnection.ToNetMsgType.*; |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
23 |
import static org.hedgewars.hedgeroid.util.ObjectUtils.equal; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
24 |
|
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
25 |
import java.util.Arrays; |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
26 |
import java.util.Collections; |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
27 |
import java.util.Map; |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
28 |
import java.util.TreeMap; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
29 |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
30 |
import org.hedgewars.hedgeroid.BasicRoomState; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
31 |
import org.hedgewars.hedgeroid.Datastructures.GameConfig; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
32 |
import org.hedgewars.hedgeroid.Datastructures.MapRecipe; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
33 |
import org.hedgewars.hedgeroid.Datastructures.Scheme; |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
34 |
import org.hedgewars.hedgeroid.Datastructures.Team; |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
35 |
import org.hedgewars.hedgeroid.Datastructures.TeamInGame; |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
36 |
import org.hedgewars.hedgeroid.Datastructures.TeamIngameAttributes; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
37 |
import org.hedgewars.hedgeroid.Datastructures.Weaponset; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
38 |
import org.hedgewars.hedgeroid.netplay.ThreadedNetConnection.ToNetMsgType; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
39 |
|
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
40 |
/** |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
41 |
* This class manages the room state in a network game. |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
42 |
*/ |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
43 |
class NetRoomState extends BasicRoomState { |
10017 | 44 |
final Map<String, TeamInGame> requestedTeams = new TreeMap<String, TeamInGame>(); |
45 |
private Netplay netplay; |
|
46 |
||
47 |
public NetRoomState(Netplay netplay) { |
|
48 |
this.netplay = netplay; |
|
49 |
initRoomState(false); |
|
50 |
} |
|
51 |
||
52 |
public void changeWeaponset(Weaponset weaponset) { |
|
53 |
if(getChiefStatus() && !equal(weaponset, getWeaponset())) { |
|
54 |
sendToNet(MSG_SEND_WEAPONSET, weaponset); |
|
55 |
setWeaponset(weaponset); |
|
56 |
} |
|
57 |
} |
|
58 |
||
59 |
public void changeMapRecipe(MapRecipe mapRecipe) { |
|
60 |
if(getChiefStatus() && !equal(mapRecipe, getMapRecipe())) { |
|
61 |
sendToNet(MSG_SEND_MAP, mapRecipe); |
|
62 |
setMapRecipe(mapRecipe); |
|
63 |
} |
|
64 |
} |
|
65 |
||
66 |
public void changeMapNameAndGenerator(String mapName) { |
|
67 |
if(getChiefStatus() && !equal(mapName, getMapRecipe().name)) { |
|
68 |
int newGenerator = MapRecipe.generatorForMapname(mapName); |
|
69 |
if(newGenerator != getMapRecipe().mapgen) { |
|
70 |
sendToNet(MSG_SEND_MAP_GENERATOR, newGenerator, null); |
|
71 |
} |
|
72 |
sendToNet(MSG_SEND_MAP_NAME, mapName); |
|
73 |
setMapRecipe(getMapRecipe().withName(mapName).withMapgen(newGenerator)); |
|
74 |
} |
|
75 |
} |
|
76 |
||
77 |
public void changeMapTemplate(int template) { |
|
78 |
if(getChiefStatus() && template != getMapRecipe().templateFilter) { |
|
79 |
sendToNet(MSG_SEND_MAP_TEMPLATE, template, null); |
|
80 |
setMapRecipe(getMapRecipe().withTemplateFilter(template)); |
|
81 |
} |
|
82 |
} |
|
83 |
||
84 |
public void changeMazeSize(int mazeSize) { |
|
85 |
if(getChiefStatus() && mazeSize != getMapRecipe().mazeSize) { |
|
86 |
sendToNet(MSG_SEND_MAZE_SIZE, mazeSize, 0); |
|
87 |
setMapRecipe(getMapRecipe().withMazeSize(mazeSize)); |
|
88 |
} |
|
89 |
} |
|
90 |
||
91 |
public void changeMapSeed(String seed) { |
|
92 |
if(getChiefStatus() && !equal(seed, getMapRecipe().seed)) { |
|
93 |
sendToNet(MSG_SEND_MAP_SEED, seed); |
|
94 |
setMapRecipe(getMapRecipe().withSeed(seed)); |
|
95 |
} |
|
96 |
} |
|
97 |
||
98 |
public void changeMapTheme(String theme) { |
|
99 |
if(getChiefStatus() && !equal(theme, getMapRecipe().theme)) { |
|
100 |
sendToNet(MSG_SEND_MAP_THEME, theme); |
|
101 |
setMapRecipe(getMapRecipe().withTheme(theme)); |
|
102 |
} |
|
103 |
} |
|
104 |
||
105 |
public void changeMapDrawdata(byte[] drawdata) { |
|
106 |
if(getChiefStatus() && !Arrays.equals(drawdata, getMapRecipe().getDrawData())) { |
|
107 |
sendToNet(MSG_SEND_MAP_DRAWDATA, drawdata); |
|
108 |
setMapRecipe(getMapRecipe().withDrawData(drawdata)); |
|
109 |
} |
|
110 |
} |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
111 |
|
10017 | 112 |
public void changeGameStyle(String gameStyle) { |
113 |
if(getChiefStatus() && !equal(gameStyle, getGameStyle())) { |
|
114 |
sendToNet(MSG_SEND_GAMESTYLE, gameStyle); |
|
115 |
setGameStyle(gameStyle); |
|
116 |
} |
|
117 |
} |
|
118 |
||
119 |
public void changeScheme(Scheme scheme) { |
|
120 |
if(getChiefStatus() && !equal(scheme, getScheme())) { |
|
121 |
sendToNet(MSG_SEND_SCHEME, scheme); |
|
122 |
setScheme(scheme); |
|
123 |
} |
|
124 |
} |
|
125 |
||
126 |
void initRoomState(boolean chief) { |
|
127 |
setTeams(Collections.<String, TeamInGame>emptyMap()); |
|
128 |
requestedTeams.clear(); |
|
129 |
||
130 |
setChief(chief); |
|
131 |
setGameStyle(GameConfig.DEFAULT_STYLE); |
|
132 |
setMapRecipe(MapRecipe.makeRandomMap(0, "seed", GameConfig.DEFAULT_THEME)); |
|
133 |
setScheme(netplay.defaultScheme); |
|
134 |
setWeaponset(netplay.defaultWeaponset); |
|
135 |
sendFullConfig(); |
|
136 |
} |
|
137 |
||
138 |
void sendFullConfig() { |
|
139 |
if(getChiefStatus()) { |
|
140 |
sendToNet(MSG_SEND_GAMESTYLE, getGameStyle()); |
|
141 |
sendToNet(MSG_SEND_SCHEME, getScheme()); |
|
142 |
sendToNet(MSG_SEND_WEAPONSET, getWeaponset()); |
|
143 |
sendToNet(MSG_SEND_MAP, getMapRecipe()); |
|
144 |
} |
|
145 |
} |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
146 |
|
10017 | 147 |
private boolean sendToNet(ToNetMsgType what, Object obj) { |
148 |
return netplay.sendToNet(what, 0, obj); |
|
149 |
} |
|
150 |
||
151 |
private boolean sendToNet(ToNetMsgType what, int arg1, Object obj) { |
|
152 |
return netplay.sendToNet(what, arg1, obj); |
|
153 |
} |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
154 |
|
10017 | 155 |
public void requestAddTeam(Team team, int colorIndex) { |
156 |
TeamIngameAttributes tia = new TeamIngameAttributes(netplay.getPlayerName(), colorIndex, TeamIngameAttributes.DEFAULT_HOG_COUNT, false); |
|
157 |
TeamInGame newTeamInGame = new TeamInGame(team, tia); |
|
158 |
requestedTeams.put(team.name, newTeamInGame); |
|
159 |
sendToNet(MSG_SEND_ADD_TEAM, newTeamInGame); |
|
160 |
} |
|
161 |
||
162 |
public void requestRemoveTeam(String teamname) { |
|
163 |
sendToNet(MSG_SEND_REMOVE_TEAM, teamname); |
|
164 |
} |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
165 |
|
10017 | 166 |
public void changeTeamColorIndex(String teamname, int colorIndex) { |
167 |
if(getChiefStatus()) { |
|
168 |
TeamInGame team = getTeams().get(teamname); |
|
169 |
if(team.ingameAttribs.colorIndex != colorIndex) { |
|
170 |
sendToNet(MSG_SEND_TEAM_COLOR_INDEX, colorIndex, teamname); |
|
171 |
putTeam(team.withAttribs(team.ingameAttribs.withColorIndex(colorIndex))); |
|
172 |
} |
|
173 |
} |
|
174 |
} |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
175 |
|
10017 | 176 |
public void changeTeamHogCount(String teamname, int hogcount) { |
177 |
if(getChiefStatus()) { |
|
178 |
TeamInGame team = getTeams().get(teamname); |
|
179 |
if(team.ingameAttribs.hogCount != hogcount) { |
|
180 |
sendToNet(MSG_SEND_TEAM_HOG_COUNT, hogcount, teamname); |
|
181 |
putTeam(team.withAttribs(team.ingameAttribs.withHogCount(hogcount))); |
|
182 |
} |
|
183 |
} |
|
184 |
} |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
diff
changeset
|
185 |
} |