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