author | unc0rr |
Thu, 09 Oct 2008 20:36:53 +0000 | |
changeset 1339 | 8a11157c6c81 |
parent 1338 | 758c39a3dcfe |
child 1344 | 4004e597f1bf |
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> |
315 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QMessageBox> |
|
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 |
{ |
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))); |
|
46 |
} |
|
47 |
||
48 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
|
49 |
{ |
|
655
e58a77556878
- Temporary set delimiter to *, as \t seems to be endline now in Qt
unc0rr
parents:
574
diff
changeset
|
50 |
mynick = nick; |
315 | 51 |
NetSocket.connectToHost(hostName, port); |
52 |
} |
|
53 |
||
54 |
void HWNewNet::Disconnect() |
|
55 |
{ |
|
1311 | 56 |
m_game_connected = false; |
383 | 57 |
NetSocket.disconnectFromHost(); |
315 | 58 |
} |
59 |
||
1082 | 60 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 61 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
62 |
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
|
63 |
{ |
1321 | 64 |
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
|
65 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
66 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
67 |
|
1082 | 68 |
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
|
69 |
m_pGameCFGWidget->setEnabled(true); |
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1333
diff
changeset
|
70 |
//m_pTeamSelWidget->setNonInteractive(); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
71 |
isChief = true; |
1082 | 72 |
} |
73 |
||
74 |
void HWNewNet::JoinRoom(const QString & room) |
|
75 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
76 |
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
|
77 |
{ |
1321 | 78 |
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
|
79 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
80 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
81 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
82 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
83 |
|
1082 | 84 |
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
|
85 |
m_pGameCFGWidget->setEnabled(false); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
86 |
m_pTeamSelWidget->setNonInteractive(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
87 |
isChief = false; |
315 | 88 |
} |
89 |
||
90 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
91 |
{ |
|
1327 | 92 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
93 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
94 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
95 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
96 |
team.Fort + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
97 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
98 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
99 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
100 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
101 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
102 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
103 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
104 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
105 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
106 |
RawSendNet(cmd); |
315 | 107 |
} |
108 |
||
347 | 109 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
110 |
{ |
|
1329 | 111 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 112 |
} |
113 |
||
1311 | 114 |
void HWNewNet::Ready() |
315 | 115 |
{ |
1311 | 116 |
RawSendNet(QString("READY")); |
315 | 117 |
} |
118 |
||
119 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
120 |
{ |
|
121 |
QString msg = QString(buf.toBase64()); |
|
122 |
||
1311 | 123 |
RawSendNet(QString("GAMEMSG%1%2").arg(delimeter).arg(msg)); |
315 | 124 |
} |
125 |
||
126 |
void HWNewNet::RawSendNet(const QString & str) |
|
127 |
{ |
|
128 |
RawSendNet(str.toUtf8()); |
|
129 |
} |
|
130 |
||
131 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
132 |
{ |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
133 |
qDebug() << "Client: " << QString(buf).split("\n"); |
315 | 134 |
NetSocket.write(buf); |
1082 | 135 |
NetSocket.write("\n\n", 2); |
315 | 136 |
} |
137 |
||
138 |
void HWNewNet::ClientRead() |
|
139 |
{ |
|
1082 | 140 |
while (NetSocket.canReadLine()) { |
141 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
142 |
||
143 |
if (s.size() == 0) { |
|
144 |
ParseCmd(cmdbuf); |
|
145 |
cmdbuf.clear(); |
|
146 |
} else |
|
147 |
cmdbuf << s; |
|
148 |
} |
|
315 | 149 |
} |
150 |
||
151 |
void HWNewNet::OnConnect() |
|
152 |
{ |
|
1310 | 153 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
154 |
RawSendNet(QString("PROTO%1%2").arg(delimeter).arg(*cProtoVer)); |
|
315 | 155 |
} |
156 |
||
157 |
void HWNewNet::OnDisconnect() |
|
158 |
{ |
|
338
d1e75dcd285f
multiple teams now available per host (still alpha)
displacer
parents:
335
diff
changeset
|
159 |
//emit ChangeInTeams(QStringList()); |
383 | 160 |
if(m_game_connected) emit Disconnected(); |
161 |
m_game_connected=false; |
|
315 | 162 |
} |
163 |
||
164 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
165 |
{ |
|
1302 | 166 |
switch (socketError) { |
167 |
case QAbstractSocket::RemoteHostClosedError: |
|
168 |
break; |
|
169 |
case QAbstractSocket::HostNotFoundError: |
|
170 |
QMessageBox::information(0, tr("Error"), |
|
171 |
tr("The host was not found. Please check the host name and port settings.")); |
|
172 |
break; |
|
173 |
case QAbstractSocket::ConnectionRefusedError: |
|
174 |
QMessageBox::information(0, tr("Error"), |
|
175 |
tr("Connection refused")); |
|
176 |
break; |
|
177 |
default: |
|
178 |
QMessageBox::information(0, tr("Error"), |
|
179 |
NetSocket.errorString()); |
|
180 |
} |
|
315 | 181 |
} |
182 |
||
1082 | 183 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 184 |
{ |
1305 | 185 |
qDebug() << "Server: " << lst; |
186 |
||
187 |
if(!lst.size()) |
|
188 |
{ |
|
189 |
qWarning("Net client: Bad message"); |
|
190 |
return; |
|
191 |
} |
|
320 | 192 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
193 |
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
|
194 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
195 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
196 |
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
|
197 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
198 |
netClientState = 2; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
199 |
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
|
200 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
201 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
202 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
203 |
|
1305 | 204 |
if (lst[0] == "ERROR") { |
205 |
if (lst.size() == 2) |
|
1307 | 206 |
QMessageBox::information(0, 0, "Error: " + lst[1]); |
1305 | 207 |
else |
208 |
QMessageBox::information(0, 0, "Unknown error"); |
|
209 |
return; |
|
210 |
} |
|
315 | 211 |
|
1307 | 212 |
if (lst[0] == "WARNING") { |
213 |
if (lst.size() == 2) |
|
214 |
QMessageBox::information(0, 0, "Warning: " + lst[1]); |
|
215 |
else |
|
216 |
QMessageBox::information(0, 0, "Unknown warning"); |
|
217 |
return; |
|
218 |
} |
|
219 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
220 |
if (lst[0] == "CONNECTED") { |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
221 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
222 |
m_game_connected = true; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
223 |
emit Connected(); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
224 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
225 |
} |
315 | 226 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
227 |
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
|
228 |
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
|
229 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
230 |
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
|
231 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
232 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
233 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
234 |
if (lst[0] == "CHAT_STRING") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
235 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
236 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
237 |
qWarning("Net: Empty CHAT_STRING message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
238 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
239 |
} |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
240 |
QStringList tmp = lst; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
241 |
tmp.removeFirst(); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
242 |
emit chatStringFromNet(tmp); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
243 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
244 |
} |
453 | 245 |
|
1325 | 246 |
if (lst[0] == "ADD_TEAM") { |
247 |
if(lst.size() != 21) |
|
1321 | 248 |
{ |
1325 | 249 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 250 |
return; |
251 |
} |
|
252 |
QStringList tmp = lst; |
|
253 |
tmp.removeFirst(); |
|
254 |
emit AddNetTeam(tmp); |
|
255 |
return; |
|
256 |
} |
|
315 | 257 |
|
1338 | 258 |
if (lst[0] == "REMOVE_TEAM") { |
259 |
if(lst.size() != 2) |
|
260 |
{ |
|
261 |
qWarning("Net: Bad REMOVETEAM message"); |
|
262 |
return; |
|
263 |
} |
|
264 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
265 |
return; |
|
266 |
} |
|
347 | 267 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
268 |
if(lst[0]=="JOINED") { |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
269 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
270 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
271 |
qWarning("Net: Bad JOINED message"); |
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 |
} |
1311 | 274 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
275 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 276 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
277 |
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
|
278 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
279 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
280 |
emit EnteredGame(); |
1316 | 281 |
if (isChief) |
282 |
ConfigAsked(); |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
283 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
284 |
emit nickAdded(lst[i]); |
1311 | 285 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
286 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
287 |
} |
455 | 288 |
|
1325 | 289 |
if(lst[0] == "LEFT") { |
1310 | 290 |
if(lst.size() < 2) |
291 |
{ |
|
292 |
qWarning("Net: Bad LEFT message"); |
|
293 |
return; |
|
294 |
} |
|
295 |
emit nickRemoved(lst[1]); |
|
296 |
return; |
|
297 |
} |
|
461 | 298 |
|
1338 | 299 |
if (lst[0] == "RUN_GAME") { |
1325 | 300 |
RunGame(); |
301 |
return; |
|
302 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
303 |
|
1325 | 304 |
if (lst[0] == "TEAM_ACCEPTED") { |
305 |
if (lst.size() != 2) |
|
306 |
{ |
|
307 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
308 |
return; |
|
309 |
} |
|
310 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
311 |
return; |
|
312 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
313 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
314 |
if (lst[0] == "MAP") { |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
315 |
if (lst.size() != 2) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
316 |
{ |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
317 |
qWarning("Net: Bad MAP message"); |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
318 |
return; |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
319 |
} |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
320 |
emit mapChanged(lst[1]); |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
321 |
return; |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
322 |
} |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
323 |
|
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
324 |
|
1319 | 325 |
if (lst[0] == "CONFIG_PARAM") { |
326 |
if(lst.size() < 3) |
|
327 |
{ |
|
328 |
qWarning("Net: Bad CONFIG_PARAM message"); |
|
329 |
return; |
|
330 |
} |
|
331 |
if (lst[1] == "SEED") { |
|
332 |
emit seedChanged(lst[2]); |
|
333 |
return; |
|
334 |
} |
|
335 |
if (lst[1] == "THEME") { |
|
336 |
emit themeChanged(lst[2]); |
|
337 |
return; |
|
338 |
} |
|
339 |
if (lst[1] == "HEALTH") { |
|
340 |
emit initHealthChanged(lst[2].toUInt()); |
|
341 |
return; |
|
342 |
} |
|
343 |
if (lst[1] == "TURNTIME") { |
|
344 |
emit turnTimeChanged(lst[2].toUInt()); |
|
345 |
return; |
|
346 |
} |
|
347 |
if (lst[1] == "FORTSMODE") { |
|
348 |
emit fortsModeChanged(lst[2].toInt() != 0); |
|
349 |
return; |
|
350 |
} |
|
351 |
if (lst[1] == "AMMO") { |
|
352 |
if(lst.size() < 4) return; |
|
353 |
emit ammoChanged(lst[3], lst[2]); |
|
354 |
return; |
|
355 |
} |
|
356 |
qWarning() << "Net: Unknown 'CONFIG_PARAM' message:" << lst; |
|
357 |
return; |
|
697 | 358 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
359 |
|
1327 | 360 |
if (lst[0] == "HH_NUM") { |
361 |
if (lst.size() != 3) |
|
362 |
{ |
|
363 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
364 |
return; |
|
365 |
} |
|
366 |
HWTeam tmptm(lst[1]); |
|
367 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
368 |
emit hhnumChanged(tmptm); |
|
369 |
return; |
|
370 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
371 |
|
1330 | 372 |
if (lst[0] == "TEAM_COLOR") { |
373 |
if (lst.size() != 3) |
|
374 |
{ |
|
375 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
376 |
return; |
|
377 |
} |
|
378 |
HWTeam tmptm(lst[1]); |
|
379 |
tmptm.teamColor = QColor(lst[2]); |
|
380 |
emit teamColorChanged(tmptm); |
|
381 |
return; |
|
382 |
} |
|
383 |
||
1310 | 384 |
if (lst[0] == "GAMEMSG") { |
573 | 385 |
if(lst.size() < 2) |
386 |
{ |
|
1310 | 387 |
qWarning("Net: Bad GAMEMSG message"); |
573 | 388 |
return; |
389 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
390 |
QByteArray em = QByteArray::fromBase64(lst[1].toAscii()); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
391 |
emit FromNet(em); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
392 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
393 |
} |
573 | 394 |
|
1082 | 395 |
qWarning() << "Net: Unknown message:" << lst; |
315 | 396 |
} |
397 |
||
398 |
||
399 |
void HWNewNet::ConfigAsked() |
|
400 |
{ |
|
1310 | 401 |
QString map = m_pGameCFGWidget->getCurrentMap(); |
402 |
if (map.size()) |
|
403 |
onMapChanged(map); |
|
574 | 404 |
|
1310 | 405 |
onSeedChanged(m_pGameCFGWidget->getCurrentSeed()); |
406 |
onThemeChanged(m_pGameCFGWidget->getCurrentTheme()); |
|
407 |
onInitHealthChanged(m_pGameCFGWidget->getInitHealth()); |
|
408 |
onTurnTimeChanged(m_pGameCFGWidget->getTurnTime()); |
|
409 |
onFortsModeChanged(m_pGameCFGWidget->getGameFlags() & 0x1); |
|
410 |
// always initialize with default ammo (also avoiding complicated cross-class dependencies) |
|
411 |
onWeaponsNameChanged("Default", cDefaultAmmoStore->mid(10)); |
|
315 | 412 |
} |
413 |
||
414 |
void HWNewNet::RunGame() |
|
415 |
{ |
|
1310 | 416 |
emit AskForRunGame(); |
431 | 417 |
} |
418 |
||
352 | 419 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
420 |
{ |
|
1330 | 421 |
if (isChief) |
1327 | 422 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 423 |
.arg(delimeter) |
424 |
.arg(team.TeamName) |
|
1321 | 425 |
.arg(team.numHedgehogs)); |
352 | 426 |
} |
427 |
||
372 | 428 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
429 |
{ |
|
1330 | 430 |
if (isChief) |
431 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 432 |
.arg(delimeter) |
433 |
.arg(team.TeamName) |
|
1321 | 434 |
.arg(team.teamColor.name())); |
372 | 435 |
} |
436 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
437 |
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
|
438 |
{ |
1318 | 439 |
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
|
440 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
441 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
442 |
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
|
443 |
{ |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
444 |
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
|
445 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
446 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
447 |
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
|
448 |
{ |
1318 | 449 |
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
|
450 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
451 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
452 |
void HWNewNet::onInitHealthChanged(quint32 health) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
453 |
{ |
1318 | 454 |
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
|
455 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
456 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
457 |
void HWNewNet::onTurnTimeChanged(quint32 time) |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
458 |
{ |
1318 | 459 |
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
|
460 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
461 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
462 |
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
|
463 |
{ |
1318 | 464 |
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
|
465 |
} |
453 | 466 |
|
703 | 467 |
void HWNewNet::onWeaponsNameChanged(const QString& name, const QString& ammo) |
697 | 468 |
{ |
1318 | 469 |
if (isChief) RawSendNet(QString("CONFIG_PARAM%1AMMO%1%2%1%3").arg(delimeter).arg(ammo).arg(name)); |
697 | 470 |
} |
471 |
||
453 | 472 |
void HWNewNet::chatLineToNet(const QString& str) |
473 |
{ |
|
474 |
if(str!="") { |
|
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
475 |
RawSendNet(QString("CHAT_STRING")+delimeter+str); |
453 | 476 |
emit(chatStringFromNet(QStringList(mynick) << str)); |
477 |
} |
|
478 |
} |
|
1315 | 479 |
|
480 |
void HWNewNet::askRoomsList() |
|
481 |
{ |
|
482 |
if(netClientState != 2) |
|
483 |
{ |
|
1321 | 484 |
qWarning("Illegal try to get rooms list!"); |
1315 | 485 |
return; |
486 |
} |
|
487 |
RawSendNet(QString("LIST")); |
|
488 |
} |
|
1339 | 489 |
|
490 |
bool HWNewNet::isRoomChief() |
|
491 |
{ |
|
492 |
return isChief; |
|
493 |
} |