author | unc0rr |
Fri, 20 Feb 2009 19:46:22 +0000 | |
changeset 1814 | e5391d901cff |
parent 1802 | dd148e2506e2 |
child 1815 | 3d62cf9c350e |
permissions | -rw-r--r-- |
315 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com> |
1569 | 4 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
315 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
1189
f66cdbbfc4b6
Fix compile under Ubuntu (why it compiles everywhere else?)
unc0rr
parents:
1083
diff
changeset
|
20 |
#include <QDebug> |
315 | 21 |
|
697 | 22 |
#include "hwconsts.h" |
315 | 23 |
#include "newnetclient.h" |
24 |
#include "proto.h" |
|
25 |
#include "gameuiconfig.h" |
|
26 |
#include "game.h" |
|
334 | 27 |
#include "gamecfgwidget.h" |
347 | 28 |
#include "teamselect.h" |
315 | 29 |
|
1082 | 30 |
char delimeter='\n'; |
315 | 31 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
32 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 33 |
config(config), |
34 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
35 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 36 |
isChief(false), |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
37 |
m_game_connected(false), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
38 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
39 |
netClientState(0) |
315 | 40 |
{ |
1418 | 41 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
42 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
43 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
44 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
45 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
315 | 46 |
} |
47 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
48 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
49 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
50 |
if (m_game_connected) |
1800 | 51 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
52 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 53 |
emit Disconnected(); |
54 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
55 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
56 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
57 |
|
315 | 58 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
59 |
{ |
|
1418 | 60 |
mynick = nick; |
61 |
NetSocket.connectToHost(hostName, port); |
|
315 | 62 |
} |
63 |
||
64 |
void HWNewNet::Disconnect() |
|
65 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
66 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
67 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
68 |
m_game_connected = false; |
1800 | 69 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
70 |
NetSocket.disconnectFromHost(); |
315 | 71 |
} |
72 |
||
1082 | 73 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 74 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
75 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
76 |
{ |
1321 | 77 |
qWarning("Illegal try to create room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
78 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
79 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
80 |
|
1082 | 81 |
RawSendNet(QString("CREATE%1%2").arg(delimeter).arg(room)); |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1333
diff
changeset
|
82 |
m_pGameCFGWidget->setEnabled(true); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
83 |
m_pTeamSelWidget->setInteractivity(true); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
84 |
isChief = true; |
1082 | 85 |
} |
86 |
||
87 |
void HWNewNet::JoinRoom(const QString & room) |
|
88 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
89 |
if(netClientState != 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
90 |
{ |
1321 | 91 |
qWarning("Illegal try to join room!"); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
92 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
93 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
94 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
95 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
96 |
|
1082 | 97 |
RawSendNet(QString("JOIN%1%2").arg(delimeter).arg(room)); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
98 |
m_pGameCFGWidget->setEnabled(false); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
99 |
m_pTeamSelWidget->setInteractivity(false); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
100 |
isChief = false; |
315 | 101 |
} |
102 |
||
103 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
104 |
{ |
|
1327 | 105 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
106 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
107 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
108 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
109 |
team.Fort + delimeter + |
1661 | 110 |
team.Voicepack + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
111 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
112 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
113 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
114 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
115 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
116 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
117 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
118 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
RawSendNet(cmd); |
315 | 121 |
} |
122 |
||
347 | 123 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
124 |
{ |
|
1329 | 125 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 126 |
} |
127 |
||
1404 | 128 |
void HWNewNet::ToggleReady() |
315 | 129 |
{ |
1404 | 130 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 131 |
} |
132 |
||
133 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
134 |
{ |
|
135 |
QString msg = QString(buf.toBase64()); |
|
136 |
||
1311 | 137 |
RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg)); |
315 | 138 |
} |
139 |
||
140 |
void HWNewNet::RawSendNet(const QString & str) |
|
141 |
{ |
|
142 |
RawSendNet(str.toUtf8()); |
|
143 |
} |
|
144 |
||
145 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
146 |
{ |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
147 |
qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 148 |
NetSocket.write(buf); |
149 |
NetSocket.write("\n\n", 2); |
|
315 | 150 |
} |
151 |
||
152 |
void HWNewNet::ClientRead() |
|
153 |
{ |
|
1082 | 154 |
while (NetSocket.canReadLine()) { |
155 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
156 |
||
157 |
if (s.size() == 0) { |
|
158 |
ParseCmd(cmdbuf); |
|
159 |
cmdbuf.clear(); |
|
160 |
} else |
|
161 |
cmdbuf << s; |
|
162 |
} |
|
315 | 163 |
} |
164 |
||
165 |
void HWNewNet::OnConnect() |
|
166 |
{ |
|
167 |
} |
|
168 |
||
169 |
void HWNewNet::OnDisconnect() |
|
170 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
171 |
//emit ChangeInTeams(QStringList()); |
383 | 172 |
if(m_game_connected) emit Disconnected(); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
173 |
m_game_connected = false; |
315 | 174 |
} |
175 |
||
176 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
177 |
{ |
|
1800 | 178 |
emit Disconnected(); |
179 |
||
1302 | 180 |
switch (socketError) { |
181 |
case QAbstractSocket::RemoteHostClosedError: |
|
182 |
break; |
|
183 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 184 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 185 |
break; |
186 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 187 |
emit showMessage(tr("Connection refused")); |
1302 | 188 |
break; |
189 |
default: |
|
1800 | 190 |
emit showMessage(NetSocket.errorString()); |
1302 | 191 |
} |
315 | 192 |
} |
193 |
||
1082 | 194 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 195 |
{ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
196 |
qDebug() << "Server: " << lst; |
1305 | 197 |
|
198 |
if(!lst.size()) |
|
199 |
{ |
|
200 |
qWarning("Net client: Bad message"); |
|
201 |
return; |
|
202 |
} |
|
320 | 203 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
204 |
if ((lst[0] == "NICK") || (lst[0] == "PROTO")) |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
205 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
206 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
207 |
if (loginStep == 2) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
208 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
209 |
netClientState = 2; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
210 |
RawSendNet(QString("LIST")); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
211 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
212 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
213 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
214 |
|
1305 | 215 |
if (lst[0] == "ERROR") { |
216 |
if (lst.size() == 2) |
|
1600 | 217 |
emit showMessage("Error: " + lst[1]); |
1305 | 218 |
else |
1600 | 219 |
emit showMessage("Unknown error"); |
1305 | 220 |
return; |
221 |
} |
|
315 | 222 |
|
1307 | 223 |
if (lst[0] == "WARNING") { |
224 |
if (lst.size() == 2) |
|
1600 | 225 |
emit showMessage("Warning: " + lst[1]); |
1307 | 226 |
else |
1600 | 227 |
emit showMessage("Unknown warning"); |
1307 | 228 |
return; |
229 |
} |
|
230 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
231 |
if (lst[0] == "CONNECTED") { |
1471 | 232 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
233 |
RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer)); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
234 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
235 |
m_game_connected = true; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
236 |
emit Connected(); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
237 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
238 |
} |
315 | 239 |
|
1462 | 240 |
if (lst[0] == "PING") { |
241 |
RawSendNet(QString("PONG")); |
|
242 |
return; |
|
243 |
} |
|
244 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
245 |
if (lst[0] == "ROOMS") { |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
246 |
QStringList tmp = lst; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
247 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
248 |
emit roomsList(tmp); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
249 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
250 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
251 |
|
1377 | 252 |
if (lst[0] == "SERVER_MESSAGE") { |
253 |
if(lst.size() < 2) |
|
254 |
{ |
|
255 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
256 |
return; |
|
257 |
} |
|
258 |
emit serverMessage(lst[1]); |
|
259 |
return; |
|
260 |
} |
|
261 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
262 |
if (lst[0] == "CHAT_STRING") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
263 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
264 |
{ |
1377 | 265 |
qWarning("Net: Empty CHAT_STRING message"); |
266 |
return; |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
267 |
} |
1568 | 268 |
if (netClientState == 2) |
269 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
270 |
else |
|
271 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
272 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
273 |
} |
453 | 274 |
|
1577 | 275 |
if (lst[0] == "INFO") { |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
276 |
if(lst.size() < 5) |
1577 | 277 |
{ |
1584
90f6a5abad17
Save much space for chat widget on lobby page by removing server message widget (now this messages goes to chat)
unc0rr
parents:
1581
diff
changeset
|
278 |
qWarning("Net: Malformed INFO message"); |
1577 | 279 |
return; |
280 |
} |
|
281 |
QStringList tmp = lst; |
|
282 |
tmp.removeFirst(); |
|
283 |
if (netClientState == 2) |
|
1587 | 284 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 285 |
else |
1587 | 286 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 287 |
return; |
288 |
} |
|
289 |
||
1405 | 290 |
if (lst[0] == "READY") { |
291 |
if(lst.size() != 2) |
|
292 |
{ |
|
293 |
qWarning("Net: Malformed READY message"); |
|
294 |
return; |
|
295 |
} |
|
296 |
emit setReadyStatus(lst[1], true); |
|
1648 | 297 |
if (lst[1] == mynick) |
298 |
emit setMyReadyStatus(true); |
|
1405 | 299 |
return; |
300 |
} |
|
1591 | 301 |
|
1405 | 302 |
if (lst[0] == "NOT_READY") { |
303 |
if(lst.size() != 2) |
|
304 |
{ |
|
305 |
qWarning("Net: Malformed NOT_READY message"); |
|
306 |
return; |
|
307 |
} |
|
308 |
emit setReadyStatus(lst[1], false); |
|
1648 | 309 |
if (lst[1] == mynick) |
310 |
emit setMyReadyStatus(false); |
|
1405 | 311 |
return; |
312 |
} |
|
313 |
||
1325 | 314 |
if (lst[0] == "ADD_TEAM") { |
1683 | 315 |
if(lst.size() != 23) |
1321 | 316 |
{ |
1325 | 317 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 318 |
return; |
319 |
} |
|
320 |
QStringList tmp = lst; |
|
321 |
tmp.removeFirst(); |
|
322 |
emit AddNetTeam(tmp); |
|
323 |
return; |
|
324 |
} |
|
315 | 325 |
|
1338 | 326 |
if (lst[0] == "REMOVE_TEAM") { |
327 |
if(lst.size() != 2) |
|
328 |
{ |
|
329 |
qWarning("Net: Bad REMOVETEAM message"); |
|
330 |
return; |
|
331 |
} |
|
332 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
333 |
if (netClientState == 5) // we're in game, need to tell the engine about this |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
334 |
{ |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
335 |
QByteArray em; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
336 |
HWProto::addStringToBuffer(em, "F" + lst[1]); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
337 |
emit FromNet(em); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
338 |
} |
1338 | 339 |
return; |
340 |
} |
|
347 | 341 |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
342 |
if(lst[0]=="ROOMABANDONED") { |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
343 |
netClientState = 2; |
1600 | 344 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
345 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
346 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
347 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
348 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
349 |
if(lst[0]=="JOINED") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
350 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
351 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
352 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
353 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
354 |
} |
1311 | 355 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
356 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 357 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
358 |
if (lst[i] == mynick) |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
359 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
360 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
361 |
emit EnteredGame(); |
1316 | 362 |
if (isChief) |
363 |
ConfigAsked(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
364 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
365 |
emit nickAdded(lst[i]); |
1378 | 366 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 367 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
368 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
369 |
} |
455 | 370 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
371 |
if(lst[0]=="LOBBY:JOINED") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
372 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
373 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
374 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
375 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
376 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
377 |
|
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
378 |
for(int i = 1; i < lst.size(); ++i) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
379 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
380 |
emit nickAddedLobby(lst[i]); |
1568 | 381 |
emit chatStringLobby(QString(tr("*** %1 joined")).arg(lst[i])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
382 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
383 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
384 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
|
1325 | 386 |
if(lst[0] == "LEFT") { |
1310 | 387 |
if(lst.size() < 2) |
388 |
{ |
|
389 |
qWarning("Net: Bad LEFT message"); |
|
390 |
return; |
|
391 |
} |
|
392 |
emit nickRemoved(lst[1]); |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
393 |
if (lst.size() < 3) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
394 |
emit chatStringFromNet(QString(tr("*** %1 left")).arg(lst[1])); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
395 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
396 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 397 |
return; |
398 |
} |
|
461 | 399 |
|
1591 | 400 |
if(lst[0] == "ROOM") { |
401 |
if(lst.size() < 2) |
|
402 |
{ |
|
403 |
qWarning("Net: Bad ROOM message"); |
|
404 |
return; |
|
405 |
} |
|
406 |
RawSendNet(QString("LIST")); |
|
407 |
return; |
|
408 |
} |
|
409 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
410 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
411 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
412 |
{ |
1581 | 413 |
qWarning("Net: Bad LOBBY:LEFT message"); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
414 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
415 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
416 |
emit nickRemovedLobby(lst[1]); |
1568 | 417 |
if (lst.size() < 3) |
418 |
emit chatStringLobby(QString(tr("*** %1 left")).arg(lst[1])); |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
419 |
else |
1568 | 420 |
emit chatStringLobby(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
421 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
422 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
423 |
|
1338 | 424 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
425 |
netClientState = 5; |
1325 | 426 |
RunGame(); |
427 |
return; |
|
428 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
429 |
|
1325 | 430 |
if (lst[0] == "TEAM_ACCEPTED") { |
431 |
if (lst.size() != 2) |
|
432 |
{ |
|
433 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
434 |
return; |
|
435 |
} |
|
436 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
437 |
return; |
|
438 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
439 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
440 |
|
1814 | 441 |
if (lst[0] == "CFG") { |
1319 | 442 |
if(lst.size() < 3) |
443 |
{ |
|
444 |
qWarning("Net: Bad CONFIG_PARAM message"); |
|
445 |
return; |
|
446 |
} |
|
1814 | 447 |
if (lst[1] == "MAP") { |
448 |
emit mapChanged(lst[2]); |
|
449 |
return; |
|
450 |
} |
|
1319 | 451 |
if (lst[1] == "SEED") { |
452 |
emit seedChanged(lst[2]); |
|
453 |
return; |
|
454 |
} |
|
455 |
if (lst[1] == "THEME") { |
|
456 |
emit themeChanged(lst[2]); |
|
457 |
return; |
|
458 |
} |
|
459 |
if (lst[1] == "HEALTH") { |
|
460 |
emit initHealthChanged(lst[2].toUInt()); |
|
461 |
return; |
|
462 |
} |
|
463 |
if (lst[1] == "TURNTIME") { |
|
464 |
emit turnTimeChanged(lst[2].toUInt()); |
|
465 |
return; |
|
466 |
} |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
467 |
if (lst[1] == "SD_TURNS") { |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
468 |
emit suddenDeathTurnsChanged(lst[2].toUInt()); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
469 |
return; |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
470 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
471 |
if (lst[1] == "CASEFACTOR") { |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
472 |
emit caseProbabilityChanged(lst[2].toUInt()); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
473 |
return; |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
474 |
} |
1319 | 475 |
if (lst[1] == "FORTSMODE") { |
476 |
emit fortsModeChanged(lst[2].toInt() != 0); |
|
477 |
return; |
|
478 |
} |
|
1427 | 479 |
if (lst[1] == "DIVIDETEAMS") { |
480 |
emit teamsDivideChanged(lst[2].toInt() != 0); |
|
481 |
return; |
|
482 |
} |
|
1530 | 483 |
if (lst[1] == "SOLIDLAND") { |
484 |
emit solidChanged(lst[2].toInt() != 0); |
|
485 |
return; |
|
486 |
} |
|
1784 | 487 |
if (lst[1] == "BORDER") { |
488 |
emit borderChanged(lst[2].toInt() != 0); |
|
489 |
return; |
|
490 |
} |
|
1319 | 491 |
if (lst[1] == "AMMO") { |
492 |
if(lst.size() < 4) return; |
|
493 |
emit ammoChanged(lst[3], lst[2]); |
|
494 |
return; |
|
495 |
} |
|
1797 | 496 |
if (lst[1] == "TEMPLATE_FILTER") { |
497 |
emit templateFilterChanged(lst[2].toUInt()); |
|
498 |
return; |
|
499 |
} |
|
1319 | 500 |
qWarning() << "Net: Unknown 'CONFIG_PARAM' message:" << lst; |
501 |
return; |
|
697 | 502 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
503 |
|
1327 | 504 |
if (lst[0] == "HH_NUM") { |
505 |
if (lst.size() != 3) |
|
506 |
{ |
|
507 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
508 |
return; |
|
509 |
} |
|
510 |
HWTeam tmptm(lst[1]); |
|
511 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
512 |
emit hhnumChanged(tmptm); |
|
513 |
return; |
|
514 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
515 |
|
1330 | 516 |
if (lst[0] == "TEAM_COLOR") { |
517 |
if (lst.size() != 3) |
|
518 |
{ |
|
519 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
520 |
return; |
|
521 |
} |
|
522 |
HWTeam tmptm(lst[1]); |
|
523 |
tmptm.teamColor = QColor(lst[2]); |
|
524 |
emit teamColorChanged(tmptm); |
|
525 |
return; |
|
526 |
} |
|
527 |
||
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
528 |
if (lst[0] == "GAMEMSG") { |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
529 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
530 |
{ |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
531 |
qWarning("Net: Bad GAMEMSG message"); |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
532 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
533 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
534 |
for(int i = 1; i < lst.size(); ++i) |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
535 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
536 |
QByteArray em = QByteArray::fromBase64(lst[i].toAscii()); |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
537 |
emit FromNet(em); |
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
538 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
539 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
540 |
} |
573 | 541 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
542 |
if (lst[0] == "BYE") { |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
543 |
if (lst.size() < 2) |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
544 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
545 |
qWarning("Net: Bad BYE message"); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
546 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
547 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
548 |
emit showMessage(HWNewNet::tr("Quit reason: ") + lst[1]); |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
549 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
550 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
551 |
|
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
552 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 553 |
} |
554 |
||
555 |
||
556 |
void HWNewNet::ConfigAsked() |
|
557 |
{ |
|
1310 | 558 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
559 |
if (map.size()) |
|
560 |
onMapChanged(map); |
|
574 | 561 |
|
1793 | 562 |
onSuddenDeathTurnsChanged(m_pGameCFGWidget->getSuddenDeathTurns()); |
563 |
onCaseProbabilityChanged(m_pGameCFGWidget->getCaseProbability()); |
|
1310 | 564 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
565 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
566 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
567 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
568 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
|
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
569 |
onTeamsDivideChanged(m_pGameCFGWidget->getGameFlags() & 0x10); |
1530 | 570 |
onSolidChanged(m_pGameCFGWidget->getGameFlags() & 0x04); |
1784 | 571 |
onBorderChanged(m_pGameCFGWidget->getGameFlags() & 0x08); |
1310 | 572 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
1541 | 573 |
QString name = m_pGameCFGWidget->WeaponsName->currentText(); |
574 |
QString ammo = m_pGameCFGWidget->WeaponsName->itemData( |
|
575 |
m_pGameCFGWidget->WeaponsName->currentIndex() |
|
576 |
).toString(); |
|
577 |
onWeaponsNameChanged(name, ammo); |
|
1802 | 578 |
onTemplateFilterChanged(m_pGameCFGWidget->pMapContainer->getTemplateFilter()); |
315 | 579 |
} |
580 |
||
581 |
void HWNewNet::RunGame() |
|
582 |
{ |
|
1310 | 583 |
emit AskForRunGame(); |
431 | 584 |
} |
585 |
||
352 | 586 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
587 |
{ |
|
1330 | 588 |
if (isChief) |
1327 | 589 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 590 |
.arg(delimeter) |
591 |
.arg(team.TeamName) |
|
1321 | 592 |
.arg(team.numHedgehogs)); |
352 | 593 |
} |
594 |
||
372 | 595 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
596 |
{ |
|
1330 | 597 |
if (isChief) |
598 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 599 |
.arg(delimeter) |
600 |
.arg(team.TeamName) |
|
1321 | 601 |
.arg(team.teamColor.name())); |
372 | 602 |
} |
603 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
604 |
void HWNewNet::onSeedChanged(const QString & seed) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
605 |
{ |
1530 | 606 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1SEED%1%2").arg(delimeter).arg(seed)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
607 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
608 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
609 |
void HWNewNet::onMapChanged(const QString & map) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
610 |
{ |
1814 | 611 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1MAP%1%2").arg(delimeter).arg(map)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
612 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
613 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
614 |
void HWNewNet::onThemeChanged(const QString & theme) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
615 |
{ |
1530 | 616 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1THEME%1%2").arg(delimeter).arg(theme)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
617 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
618 |
|
1427 | 619 |
void HWNewNet::onInitHealthChanged(int health) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
620 |
{ |
1530 | 621 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1HEALTH%1%2").arg(delimeter).arg(health)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
622 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
623 |
|
1427 | 624 |
void HWNewNet::onTurnTimeChanged(int time) |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
625 |
{ |
1530 | 626 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1TURNTIME%1%2").arg(delimeter).arg(time)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
627 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
628 |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
629 |
void HWNewNet::onSuddenDeathTurnsChanged(int turns) |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
630 |
{ |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
631 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1SD_TURNS%1%2").arg(delimeter).arg(turns)); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
632 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
633 |
|
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
634 |
void HWNewNet::onCaseProbabilityChanged(int prob) |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
635 |
{ |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
636 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1CASEFACTOR%1%2").arg(delimeter).arg(prob)); |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
637 |
} |
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
638 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
639 |
void HWNewNet::onFortsModeChanged(bool value) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
640 |
{ |
1530 | 641 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1FORTSMODE%1%2").arg(delimeter).arg(value)); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
642 |
} |
453 | 643 |
|
1427 | 644 |
void HWNewNet::onTeamsDivideChanged(bool value) |
645 |
{ |
|
1530 | 646 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1DIVIDETEAMS%1%2").arg(delimeter).arg(value)); |
647 |
} |
|
648 |
||
649 |
void HWNewNet::onSolidChanged(bool value) |
|
650 |
{ |
|
651 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1SOLIDLAND%1%2").arg(delimeter).arg(value)); |
|
1427 | 652 |
} |
653 |
||
1784 | 654 |
void HWNewNet::onBorderChanged(bool value) |
655 |
{ |
|
656 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1BORDER%1%2").arg(delimeter).arg(value)); |
|
657 |
} |
|
658 |
||
703 | 659 |
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo) |
697 | 660 |
{ |
1530 | 661 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name)); |
697 | 662 |
} |
663 |
||
1797 | 664 |
void HWNewNet::onTemplateFilterChanged(int filter) |
665 |
{ |
|
666 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1TEMPLATE_FILTER%1%2").arg(delimeter).arg(filter)); |
|
667 |
} |
|
668 |
||
453 | 669 |
void HWNewNet::chatLineToNet(const QString& str) |
670 |
{ |
|
1568 | 671 |
if(str != "") { |
672 |
RawSendNet(QString("CHAT_STRING") + delimeter + str); |
|
673 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
|
674 |
} |
|
675 |
} |
|
676 |
||
677 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
678 |
{ |
|
679 |
if(str != "") { |
|
680 |
RawSendNet(QString("CHAT_STRING") + delimeter + str); |
|
681 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
|
682 |
} |
|
453 | 683 |
} |
1315 | 684 |
|
685 |
void HWNewNet::askRoomsList() |
|
686 |
{ |
|
687 |
if(netClientState != 2) |
|
688 |
{ |
|
1321 | 689 |
qWarning("Illegal try to get rooms list!"); |
1315 | 690 |
return; |
691 |
} |
|
692 |
RawSendNet(QString("LIST")); |
|
693 |
} |
|
1339 | 694 |
|
695 |
bool HWNewNet::isRoomChief() |
|
696 |
{ |
|
697 |
return isChief; |
|
698 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
699 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
700 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
701 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
702 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
703 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
704 |
} |
1378 | 705 |
|
706 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
707 |
{ |
|
708 |
if(msg.left(4) == "/me ") |
|
1587 | 709 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 710 |
else |
1587 | 711 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 712 |
} |
1391 | 713 |
|
714 |
void HWNewNet::kickPlayer(const QString & nick) |
|
715 |
{ |
|
716 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
717 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
718 |
|
1577 | 719 |
void HWNewNet::infoPlayer(const QString & nick) |
720 |
{ |
|
721 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
722 |
} |
|
723 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
724 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
725 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
726 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
727 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
728 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
729 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
730 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
731 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
732 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
733 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
734 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
735 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
736 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
737 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
738 |
|
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
739 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
740 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
741 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
742 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
743 |
} |
1671 | 744 |
|
745 |
bool HWNewNet::isInRoom() |
|
746 |
{ |
|
747 |
return netClientState > 2; |
|
748 |
} |