author | unc0rr |
Mon, 16 Mar 2009 20:55:10 +0000 | |
changeset 1898 | f0ab0c77946d |
parent 1879 | bb114339eb4e |
child 1899 | 5763f46d7486 |
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> |
1844 | 21 |
#include <QInputDialog> |
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" |
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
30 |
#include "misc.h" |
315 | 31 |
|
1082 | 32 |
char delimeter='\n'; |
315 | 33 |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
34 |
HWNewNet::HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget) : |
334 | 35 |
config(config), |
36 |
m_pGameCFGWidget(pGameCFGWidget), |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
37 |
m_pTeamSelWidget(pTeamSelWidget), |
383 | 38 |
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
|
39 |
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
|
40 |
loginStep(0), |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
41 |
netClientState(0) |
315 | 42 |
{ |
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
43 |
// socket stuff |
1418 | 44 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
45 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
46 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
47 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
48 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
49 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
50 |
// config stuff |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
51 |
connect(this, SIGNAL(paramChanged(const QString &, const QStringList &)), pGameCFGWidget, SLOT(setParam(const QString &, const QStringList &))); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
52 |
connect(pGameCFGWidget, SIGNAL(paramChanged(const QString &, const QStringList &)), this, SLOT(onParamChanged(const QString &, const QStringList &))); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1879
diff
changeset
|
53 |
connect(this, SIGNAL(configAsked()), pGameCFGWidget, SLOT(fullNetConfig())); |
315 | 54 |
} |
55 |
||
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
56 |
HWNewNet::~HWNewNet() |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
57 |
{ |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
58 |
if (m_game_connected) |
1800 | 59 |
{ |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
60 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1800 | 61 |
emit Disconnected(); |
62 |
} |
|
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
63 |
NetSocket.flush(); |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
64 |
} |
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
65 |
|
315 | 66 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
67 |
{ |
|
1418 | 68 |
mynick = nick; |
69 |
NetSocket.connectToHost(hostName, port); |
|
315 | 70 |
} |
71 |
||
72 |
void HWNewNet::Disconnect() |
|
73 |
{ |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
74 |
if (m_game_connected) |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
75 |
RawSendNet(QString("QUIT%1%2").arg(delimeter).arg("User quit")); |
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
76 |
m_game_connected = false; |
1800 | 77 |
|
1354
a8dcdeb88a43
Various small insignificant improvements everywhere
unc0rr
parents:
1351
diff
changeset
|
78 |
NetSocket.disconnectFromHost(); |
315 | 79 |
} |
80 |
||
1082 | 81 |
void HWNewNet::CreateRoom(const QString & room) |
315 | 82 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
83 |
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
|
84 |
{ |
1321 | 85 |
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
|
86 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
87 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
88 |
|
1082 | 89 |
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
|
90 |
m_pGameCFGWidget->setEnabled(true); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
91 |
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
|
92 |
isChief = true; |
1082 | 93 |
} |
94 |
||
95 |
void HWNewNet::JoinRoom(const QString & room) |
|
96 |
{ |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
97 |
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
|
98 |
{ |
1321 | 99 |
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
|
100 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
101 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
102 |
|
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
103 |
loginStep++; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
104 |
|
1082 | 105 |
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
|
106 |
m_pGameCFGWidget->setEnabled(false); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1471
diff
changeset
|
107 |
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
|
108 |
isChief = false; |
315 | 109 |
} |
110 |
||
111 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
112 |
{ |
|
1327 | 113 |
QString cmd = QString("ADD_TEAM") + delimeter + |
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
114 |
team.TeamName + delimeter + |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
115 |
team.teamColor.name() + delimeter + |
443
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
116 |
team.Grave + delimeter + |
eec37eb7f5db
fort, grave and difficulty information for net team
displacer
parents:
431
diff
changeset
|
117 |
team.Fort + delimeter + |
1661 | 118 |
team.Voicepack + delimeter + |
1245
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
119 |
QString::number(team.difficulty); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
120 |
|
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
121 |
for(int i = 0; i < 8; ++i) |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
122 |
{ |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
123 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
124 |
cmd.append(team.HHName[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
125 |
cmd.append(delimeter); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
126 |
cmd.append(team.HHHat[i]); |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
127 |
} |
d2eca4a053f5
Send hats info via net. Hats implementation complete now.
unc0rr
parents:
1189
diff
changeset
|
128 |
RawSendNet(cmd); |
315 | 129 |
} |
130 |
||
347 | 131 |
void HWNewNet::RemoveTeam(const HWTeam & team) |
132 |
{ |
|
1329 | 133 |
RawSendNet(QString("REMOVE_TEAM") + delimeter + team.TeamName); |
347 | 134 |
} |
135 |
||
1404 | 136 |
void HWNewNet::ToggleReady() |
315 | 137 |
{ |
1404 | 138 |
RawSendNet(QString("TOGGLE_READY")); |
315 | 139 |
} |
140 |
||
141 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
142 |
{ |
|
143 |
QString msg = QString(buf.toBase64()); |
|
144 |
||
1866 | 145 |
RawSendNet(QString("EM%1%2").arg(delimeter).arg(msg)); |
315 | 146 |
} |
147 |
||
148 |
void HWNewNet::RawSendNet(const QString & str) |
|
149 |
{ |
|
150 |
RawSendNet(str.toUtf8()); |
|
151 |
} |
|
152 |
||
153 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
154 |
{ |
|
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
155 |
qDebug() << "Client: " << QString(buf).split("\n"); |
1369 | 156 |
NetSocket.write(buf); |
157 |
NetSocket.write("\n\n", 2); |
|
315 | 158 |
} |
159 |
||
160 |
void HWNewNet::ClientRead() |
|
161 |
{ |
|
1082 | 162 |
while (NetSocket.canReadLine()) { |
163 |
QString s = QString::fromUtf8(NetSocket.readLine().trimmed()); |
|
164 |
||
165 |
if (s.size() == 0) { |
|
166 |
ParseCmd(cmdbuf); |
|
167 |
cmdbuf.clear(); |
|
168 |
} else |
|
169 |
cmdbuf << s; |
|
170 |
} |
|
315 | 171 |
} |
172 |
||
173 |
void HWNewNet::OnConnect() |
|
174 |
{ |
|
175 |
} |
|
176 |
||
177 |
void HWNewNet::OnDisconnect() |
|
178 |
{ |
|
1875 | 179 |
if(m_game_connected) emit Disconnected(); |
180 |
m_game_connected = false; |
|
315 | 181 |
} |
182 |
||
183 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
184 |
{ |
|
1800 | 185 |
emit Disconnected(); |
186 |
||
1302 | 187 |
switch (socketError) { |
188 |
case QAbstractSocket::RemoteHostClosedError: |
|
189 |
break; |
|
190 |
case QAbstractSocket::HostNotFoundError: |
|
1800 | 191 |
emit showMessage(tr("The host was not found. Please check the host name and port settings.")); |
1302 | 192 |
break; |
193 |
case QAbstractSocket::ConnectionRefusedError: |
|
1800 | 194 |
emit showMessage(tr("Connection refused")); |
1302 | 195 |
break; |
196 |
default: |
|
1800 | 197 |
emit showMessage(NetSocket.errorString()); |
1302 | 198 |
} |
315 | 199 |
} |
200 |
||
1082 | 201 |
void HWNewNet::ParseCmd(const QStringList & lst) |
315 | 202 |
{ |
1742
cf97d1eecb12
Start fixing spectating bug (implement some routines)
unc0rr
parents:
1683
diff
changeset
|
203 |
qDebug() << "Server: " << lst; |
1305 | 204 |
|
205 |
if(!lst.size()) |
|
206 |
{ |
|
207 |
qWarning("Net client: Bad message"); |
|
208 |
return; |
|
209 |
} |
|
320 | 210 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
211 |
if (lst[0] == "NICK") |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
212 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
213 |
mynick = lst[1]; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
214 |
return ; |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
215 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
216 |
|
1305 | 217 |
if (lst[0] == "ERROR") { |
218 |
if (lst.size() == 2) |
|
1600 | 219 |
emit showMessage("Error: " + lst[1]); |
1305 | 220 |
else |
1600 | 221 |
emit showMessage("Unknown error"); |
1305 | 222 |
return; |
223 |
} |
|
315 | 224 |
|
1307 | 225 |
if (lst[0] == "WARNING") { |
226 |
if (lst.size() == 2) |
|
1600 | 227 |
emit showMessage("Warning: " + lst[1]); |
1307 | 228 |
else |
1600 | 229 |
emit showMessage("Unknown warning"); |
1307 | 230 |
return; |
231 |
} |
|
232 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
233 |
if (lst[0] == "CONNECTED") { |
1471 | 234 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
235 |
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
|
236 |
netClientState = 1; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
237 |
m_game_connected = true; |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
238 |
emit adminAccess(false); |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
239 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
240 |
} |
315 | 241 |
|
1462 | 242 |
if (lst[0] == "PING") { |
243 |
RawSendNet(QString("PONG")); |
|
244 |
return; |
|
245 |
} |
|
246 |
||
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
247 |
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
|
248 |
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
|
249 |
tmp.removeFirst(); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
250 |
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
|
251 |
return; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
252 |
} |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
253 |
|
1377 | 254 |
if (lst[0] == "SERVER_MESSAGE") { |
255 |
if(lst.size() < 2) |
|
256 |
{ |
|
257 |
qWarning("Net: Empty SERVERMESSAGE message"); |
|
258 |
return; |
|
259 |
} |
|
260 |
emit serverMessage(lst[1]); |
|
261 |
return; |
|
262 |
} |
|
263 |
||
1815 | 264 |
if (lst[0] == "CHAT") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
265 |
if(lst.size() < 3) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
266 |
{ |
1815 | 267 |
qWarning("Net: Empty CHAT message"); |
1377 | 268 |
return; |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
269 |
} |
1568 | 270 |
if (netClientState == 2) |
271 |
emit chatStringLobby(formatChatMsg(lst[1], lst[2])); |
|
272 |
else |
|
273 |
emit chatStringFromNet(formatChatMsg(lst[1], lst[2])); |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
274 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
275 |
} |
453 | 276 |
|
1577 | 277 |
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
|
278 |
if(lst.size() < 5) |
1577 | 279 |
{ |
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
|
280 |
qWarning("Net: Malformed INFO message"); |
1577 | 281 |
return; |
282 |
} |
|
283 |
QStringList tmp = lst; |
|
284 |
tmp.removeFirst(); |
|
285 |
if (netClientState == 2) |
|
1587 | 286 |
emit chatStringLobby(tmp.join("\n")); |
1577 | 287 |
else |
1587 | 288 |
emit chatStringFromNet(tmp.join("\n")); |
1577 | 289 |
return; |
290 |
} |
|
291 |
||
1405 | 292 |
if (lst[0] == "READY") { |
1829 | 293 |
if(lst.size() < 2) |
1405 | 294 |
{ |
295 |
qWarning("Net: Malformed READY message"); |
|
296 |
return; |
|
297 |
} |
|
1829 | 298 |
for(int i = 1; i < lst.size(); ++i) |
299 |
{ |
|
300 |
if (lst[i] == mynick) |
|
301 |
emit setMyReadyStatus(true); |
|
302 |
emit setReadyStatus(lst[i], true); |
|
303 |
} |
|
1405 | 304 |
return; |
305 |
} |
|
1591 | 306 |
|
1405 | 307 |
if (lst[0] == "NOT_READY") { |
1829 | 308 |
if(lst.size() < 2) |
1405 | 309 |
{ |
310 |
qWarning("Net: Malformed NOT_READY message"); |
|
311 |
return; |
|
312 |
} |
|
1829 | 313 |
for(int i = 1; i < lst.size(); ++i) |
314 |
{ |
|
315 |
if (lst[i] == mynick) |
|
316 |
emit setMyReadyStatus(false); |
|
317 |
emit setReadyStatus(lst[i], false); |
|
318 |
} |
|
1405 | 319 |
return; |
320 |
} |
|
321 |
||
1325 | 322 |
if (lst[0] == "ADD_TEAM") { |
1683 | 323 |
if(lst.size() != 23) |
1321 | 324 |
{ |
1325 | 325 |
qWarning("Net: Bad ADDTEAM message"); |
1321 | 326 |
return; |
327 |
} |
|
328 |
QStringList tmp = lst; |
|
329 |
tmp.removeFirst(); |
|
330 |
emit AddNetTeam(tmp); |
|
331 |
return; |
|
332 |
} |
|
315 | 333 |
|
1338 | 334 |
if (lst[0] == "REMOVE_TEAM") { |
335 |
if(lst.size() != 2) |
|
336 |
{ |
|
337 |
qWarning("Net: Bad REMOVETEAM message"); |
|
338 |
return; |
|
339 |
} |
|
340 |
m_pTeamSelWidget->removeNetTeam(HWTeam(lst[1])); |
|
341 |
return; |
|
342 |
} |
|
347 | 343 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
344 |
if(lst[0] == "ROOMABANDONED") { |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
345 |
netClientState = 2; |
1600 | 346 |
emit showMessage(HWNewNet::tr("Room destroyed")); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
347 |
emit LeftRoom(); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
348 |
return; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
349 |
} |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
350 |
|
1879 | 351 |
if(lst[0] == "KICKED") { |
352 |
netClientState = 2; |
|
353 |
emit showMessage(HWNewNet::tr("You got kicked")); |
|
354 |
emit LeftRoom(); |
|
355 |
return; |
|
356 |
} |
|
357 |
||
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
358 |
if(lst[0] == "JOINED") { |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
359 |
if(lst.size() < 2) |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
360 |
{ |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
361 |
qWarning("Net: Bad JOINED message"); |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
362 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
363 |
} |
1311 | 364 |
|
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
365 |
for(int i = 1; i < lst.size(); ++i) |
1311 | 366 |
{ |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
367 |
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
|
368 |
{ |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
369 |
netClientState = 3; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
370 |
emit EnteredGame(); |
1860 | 371 |
emit roomMaster(isChief); |
1316 | 372 |
if (isChief) |
1875 | 373 |
emit configAsked(); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
374 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
375 |
emit nickAdded(lst[i]); |
1378 | 376 |
emit chatStringFromNet(QString(tr("*** %1 joined")).arg(lst[i])); |
1311 | 377 |
} |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
378 |
return; |
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
379 |
} |
455 | 380 |
|
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
381 |
if(lst[0] == "LOBBY:JOINED") { |
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
382 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
383 |
{ |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
384 |
qWarning("Net: Bad JOINED message"); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
385 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
386 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
387 |
|
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
388 |
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
|
389 |
{ |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
390 |
if (lst[i] == mynick) |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
391 |
{ |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
392 |
netClientState = 2; |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
393 |
RawSendNet(QString("LIST")); |
1842
96a4757dfeb8
Move from 'connecting' page to lobby only when account checked
unc0rr
parents:
1841
diff
changeset
|
394 |
emit Connected(); |
1838
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
395 |
} |
00a5fc50aa43
Use another event to change state from 'logging in' to 'lobby'
unc0rr
parents:
1829
diff
changeset
|
396 |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
397 |
emit nickAddedLobby(lst[i]); |
1568 | 398 |
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
|
399 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
400 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
401 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
402 |
|
1325 | 403 |
if(lst[0] == "LEFT") { |
1310 | 404 |
if(lst.size() < 2) |
405 |
{ |
|
406 |
qWarning("Net: Bad LEFT message"); |
|
407 |
return; |
|
408 |
} |
|
409 |
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
|
410 |
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
|
411 |
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
|
412 |
else |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
413 |
emit chatStringFromNet(QString(tr("*** %1 left (%2)")).arg(lst[1], lst[2])); |
1310 | 414 |
return; |
415 |
} |
|
461 | 416 |
|
1591 | 417 |
if(lst[0] == "ROOM") { |
418 |
if(lst.size() < 2) |
|
419 |
{ |
|
420 |
qWarning("Net: Bad ROOM message"); |
|
421 |
return; |
|
422 |
} |
|
423 |
RawSendNet(QString("LIST")); |
|
424 |
return; |
|
425 |
} |
|
426 |
||
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
427 |
if(lst[0] == "LOBBY:LEFT") { |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
428 |
if(lst.size() < 2) |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
429 |
{ |
1581 | 430 |
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
|
431 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
432 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
433 |
emit nickRemovedLobby(lst[1]); |
1568 | 434 |
if (lst.size() < 3) |
435 |
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
|
436 |
else |
1568 | 437 |
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
|
438 |
return; |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
439 |
} |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1560
diff
changeset
|
440 |
|
1338 | 441 |
if (lst[0] == "RUN_GAME") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
442 |
netClientState = 5; |
1325 | 443 |
RunGame(); |
444 |
return; |
|
445 |
} |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
446 |
|
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
447 |
if (lst[0] == "ASKPASSWORD") { |
1844 | 448 |
QString password = QInputDialog::getText(0, tr("Password"), tr("Enter your password:"), QLineEdit::Password); |
449 |
||
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
450 |
QString hash = Hash::md5(password.toLatin1()); |
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
451 |
|
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1875
diff
changeset
|
452 |
RawSendNet(QString("PASSWORD%1%2").arg(delimeter).arg(hash)); |
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
453 |
return; |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
454 |
} |
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1838
diff
changeset
|
455 |
|
1325 | 456 |
if (lst[0] == "TEAM_ACCEPTED") { |
457 |
if (lst.size() != 2) |
|
458 |
{ |
|
459 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
460 |
return; |
|
461 |
} |
|
462 |
m_pTeamSelWidget->changeTeamStatus(lst[1]); |
|
463 |
return; |
|
464 |
} |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
465 |
|
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1330
diff
changeset
|
466 |
|
1814 | 467 |
if (lst[0] == "CFG") { |
1319 | 468 |
if(lst.size() < 3) |
469 |
{ |
|
1817 | 470 |
qWarning("Net: Bad CFG message"); |
1319 | 471 |
return; |
472 |
} |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
473 |
QStringList tmp = lst; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
474 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
475 |
tmp.removeFirst(); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
476 |
emit paramChanged(lst[1], tmp); |
1319 | 477 |
return; |
697 | 478 |
} |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
479 |
|
1327 | 480 |
if (lst[0] == "HH_NUM") { |
481 |
if (lst.size() != 3) |
|
482 |
{ |
|
483 |
qWarning("Net: Bad TEAM_ACCEPTED message"); |
|
484 |
return; |
|
485 |
} |
|
486 |
HWTeam tmptm(lst[1]); |
|
487 |
tmptm.numHedgehogs = lst[2].toUInt(); |
|
488 |
emit hhnumChanged(tmptm); |
|
489 |
return; |
|
490 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
491 |
|
1330 | 492 |
if (lst[0] == "TEAM_COLOR") { |
493 |
if (lst.size() != 3) |
|
494 |
{ |
|
495 |
qWarning("Net: Bad TEAM_COLOR message"); |
|
496 |
return; |
|
497 |
} |
|
498 |
HWTeam tmptm(lst[1]); |
|
499 |
tmptm.teamColor = QColor(lst[2]); |
|
500 |
emit teamColorChanged(tmptm); |
|
501 |
return; |
|
502 |
} |
|
503 |
||
1866 | 504 |
if (lst[0] == "EM") { |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
505 |
if(lst.size() < 2) |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
506 |
{ |
1866 | 507 |
qWarning("Net: Bad EM message"); |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
508 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
509 |
} |
1558
3370b7ffeb5c
- Send previous moves info to newly connected client when it joins a room with already started game
unc0rr
parents:
1541
diff
changeset
|
510 |
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
|
511 |
{ |
1559
71e1f67dcfe7
Now spectating works for those who joined after game start
unc0rr
parents:
1558
diff
changeset
|
512 |
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
|
513 |
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
|
514 |
} |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
515 |
return; |
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
516 |
} |
573 | 517 |
|
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
518 |
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
|
519 |
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
|
520 |
{ |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
521 |
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
|
522 |
return; |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
523 |
} |
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1475
diff
changeset
|
524 |
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
|
525 |
return; |
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 |
|
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
528 |
|
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
529 |
if (lst[0] == "ADMIN_ACCESS") { |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
530 |
emit adminAccess(true); |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
531 |
return; |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
diff
changeset
|
532 |
} |
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1844
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 |
void HWNewNet::RunGame() |
|
538 |
{ |
|
1310 | 539 |
emit AskForRunGame(); |
431 | 540 |
} |
541 |
||
352 | 542 |
void HWNewNet::onHedgehogsNumChanged(const HWTeam& team) |
543 |
{ |
|
1330 | 544 |
if (isChief) |
1327 | 545 |
RawSendNet(QString("HH_NUM%1%2%1%3") |
1324 | 546 |
.arg(delimeter) |
547 |
.arg(team.TeamName) |
|
1321 | 548 |
.arg(team.numHedgehogs)); |
352 | 549 |
} |
550 |
||
372 | 551 |
void HWNewNet::onTeamColorChanged(const HWTeam& team) |
552 |
{ |
|
1330 | 553 |
if (isChief) |
554 |
RawSendNet(QString("TEAM_COLOR%1%2%1%3") |
|
1324 | 555 |
.arg(delimeter) |
556 |
.arg(team.TeamName) |
|
1321 | 557 |
.arg(team.teamColor.name())); |
372 | 558 |
} |
559 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
560 |
void HWNewNet::onParamChanged(const QString & param, const QStringList & value) |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1742
diff
changeset
|
561 |
{ |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
562 |
if (isChief) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
563 |
RawSendNet( |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
564 |
QString("CFG%1%2%1%3") |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
565 |
.arg(delimeter) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
566 |
.arg(param) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
567 |
.arg(value.join(QString(delimeter))) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1866
diff
changeset
|
568 |
); |
1797 | 569 |
} |
570 |
||
453 | 571 |
void HWNewNet::chatLineToNet(const QString& str) |
572 |
{ |
|
1568 | 573 |
if(str != "") { |
1815 | 574 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 575 |
emit(chatStringFromMe(formatChatMsg(mynick, str))); |
576 |
} |
|
577 |
} |
|
578 |
||
579 |
void HWNewNet::chatLineToLobby(const QString& str) |
|
580 |
{ |
|
581 |
if(str != "") { |
|
1815 | 582 |
RawSendNet(QString("CHAT") + delimeter + str); |
1568 | 583 |
emit(chatStringFromMeLobby(formatChatMsg(mynick, str))); |
584 |
} |
|
453 | 585 |
} |
1315 | 586 |
|
587 |
void HWNewNet::askRoomsList() |
|
588 |
{ |
|
589 |
if(netClientState != 2) |
|
590 |
{ |
|
1321 | 591 |
qWarning("Illegal try to get rooms list!"); |
1315 | 592 |
return; |
593 |
} |
|
594 |
RawSendNet(QString("LIST")); |
|
595 |
} |
|
1339 | 596 |
|
597 |
bool HWNewNet::isRoomChief() |
|
598 |
{ |
|
599 |
return isChief; |
|
600 |
} |
|
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
601 |
|
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
602 |
void HWNewNet::gameFinished() |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
603 |
{ |
1351
aa7aefec5c1b
Add partial implementation of handling disconnects while playing via network
unc0rr
parents:
1344
diff
changeset
|
604 |
netClientState = 3; |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
605 |
RawSendNet(QString("ROUNDFINISHED")); |
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
606 |
} |
1378 | 607 |
|
608 |
QString HWNewNet::formatChatMsg(const QString & nick, const QString & msg) |
|
609 |
{ |
|
610 |
if(msg.left(4) == "/me ") |
|
1587 | 611 |
return QString("* %1 %2").arg(nick).arg(msg.mid(4)); |
1378 | 612 |
else |
1587 | 613 |
return QString("%1: %2").arg(nick).arg(msg); |
1378 | 614 |
} |
1391 | 615 |
|
1860 | 616 |
void HWNewNet::banPlayer(const QString & nick) |
617 |
{ |
|
618 |
RawSendNet(QString("BAN%1%2").arg(delimeter).arg(nick)); |
|
619 |
} |
|
620 |
||
1391 | 621 |
void HWNewNet::kickPlayer(const QString & nick) |
622 |
{ |
|
623 |
RawSendNet(QString("KICK%1%2").arg(delimeter).arg(nick)); |
|
624 |
} |
|
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
625 |
|
1577 | 626 |
void HWNewNet::infoPlayer(const QString & nick) |
627 |
{ |
|
628 |
RawSendNet(QString("INFO%1%2").arg(delimeter).arg(nick)); |
|
629 |
} |
|
630 |
||
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
631 |
void HWNewNet::startGame() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
632 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
633 |
RawSendNet(QString("START_GAME")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
634 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
635 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
636 |
void HWNewNet::toggleRestrictJoins() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
637 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
638 |
RawSendNet(QString("TOGGLE_RESTRICT_JOINS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
639 |
} |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
640 |
|
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
641 |
void HWNewNet::toggleRestrictTeamAdds() |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
642 |
{ |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
643 |
RawSendNet(QString("TOGGLE_RESTRICT_TEAMS")); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
644 |
} |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
645 |
|
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
646 |
void HWNewNet::partRoom() |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
647 |
{ |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
648 |
netClientState = 2; |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
649 |
RawSendNet(QString("PART")); |
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1591
diff
changeset
|
650 |
} |
1671 | 651 |
|
652 |
bool HWNewNet::isInRoom() |
|
653 |
{ |
|
654 |
return netClientState > 2; |
|
655 |
} |