author | unc0rr |
Sun, 14 Jan 2007 15:58:18 +0000 | |
changeset 330 | 09cfe028a629 |
parent 329 | 4c3aad46baa5 |
child 332 | 10080f681118 |
permissions | -rw-r--r-- |
315 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com> |
|
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> |
|
20 |
#include <QDebug> |
|
21 |
||
22 |
#include "newnetclient.h" |
|
23 |
#include "proto.h" |
|
24 |
#include "gameuiconfig.h" |
|
25 |
#include "game.h" |
|
26 |
||
27 |
char delimeter='\t'; |
|
28 |
||
29 |
HWNewNet::HWNewNet(GameUIConfig * config) : |
|
30 |
config(config) |
|
31 |
{ |
|
32 |
connect(&NetSocket, SIGNAL(readyRead()), this, SLOT(ClientRead())); |
|
33 |
connect(&NetSocket, SIGNAL(connected()), this, SLOT(OnConnect())); |
|
34 |
connect(&NetSocket, SIGNAL(disconnected()), this, SLOT(OnDisconnect())); |
|
35 |
connect(&NetSocket, SIGNAL(error(QAbstractSocket::SocketError)), this, |
|
36 |
SLOT(displayError(QAbstractSocket::SocketError))); |
|
37 |
} |
|
38 |
||
39 |
void HWNewNet::Connect(const QString & hostName, quint16 port, const QString & nick) |
|
40 |
{ |
|
41 |
qDebug() << hostName << ":" << port; |
|
42 |
NetSocket.connectToHost(hostName, port); |
|
43 |
mynick = nick; |
|
44 |
} |
|
45 |
||
46 |
void HWNewNet::Disconnect() |
|
47 |
{ |
|
48 |
NetSocket.disconnect(); |
|
49 |
} |
|
50 |
||
51 |
void HWNewNet::JoinGame(const QString & game) |
|
52 |
{ |
|
53 |
RawSendNet(QString("JOIN %1").arg(game)); |
|
54 |
} |
|
55 |
||
56 |
void HWNewNet::AddTeam(const HWTeam & team) |
|
57 |
{ |
|
58 |
RawSendNet(QString("ADDTEAM:") + delimeter + |
|
59 |
team.TeamName + delimeter + team.HHName[0] + delimeter + team.HHName[1] + delimeter + |
|
60 |
team.HHName[2] + delimeter + team.HHName[3] + delimeter + team.HHName[4] + delimeter + |
|
61 |
team.HHName[5] + delimeter + team.HHName[6] + delimeter + team.HHName[7]); |
|
62 |
} |
|
63 |
||
64 |
void HWNewNet::StartGame() |
|
65 |
{ |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
66 |
RawSendNet(QString("START:")); |
315 | 67 |
} |
68 |
||
69 |
void HWNewNet::SendNet(const QByteArray & buf) |
|
70 |
{ |
|
71 |
QString msg = QString(buf.toBase64()); |
|
322 | 72 |
qDebug() << "to net:" << buf << ":" << msg; |
315 | 73 |
|
74 |
//NetBuffer += buf; |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
75 |
RawSendNet(QString("GAMEMSG:%1%2").arg(delimeter).arg(msg)); |
315 | 76 |
} |
77 |
||
78 |
void HWNewNet::RawSendNet(const QString & str) |
|
79 |
{ |
|
80 |
RawSendNet(str.toUtf8()); |
|
81 |
} |
|
82 |
||
83 |
void HWNewNet::RawSendNet(const QByteArray & buf) |
|
84 |
{ |
|
85 |
NetSocket.write(buf); |
|
86 |
NetSocket.write("\n", 1); |
|
87 |
} |
|
88 |
||
89 |
void HWNewNet::ClientRead() |
|
90 |
{ |
|
91 |
while (NetSocket.canReadLine()) { |
|
92 |
ParseLine(NetSocket.readLine().trimmed()); |
|
93 |
} |
|
94 |
} |
|
95 |
||
96 |
void HWNewNet::OnConnect() |
|
97 |
{ |
|
98 |
RawSendNet(QString("USER") + delimeter + "hwgame 1 2 Hedgewars game"); |
|
99 |
RawSendNet(QString("NICK%1%2").arg(delimeter).arg(mynick)); |
|
100 |
} |
|
101 |
||
102 |
void HWNewNet::OnDisconnect() |
|
103 |
{ |
|
104 |
emit ChangeInTeams(QStringList()); |
|
105 |
emit Disconnected(); |
|
106 |
} |
|
107 |
||
108 |
void HWNewNet::displayError(QAbstractSocket::SocketError socketError) |
|
109 |
{ |
|
110 |
switch (socketError) { |
|
111 |
case QAbstractSocket::RemoteHostClosedError: |
|
112 |
break; |
|
113 |
case QAbstractSocket::HostNotFoundError: |
|
114 |
QMessageBox::information(0, tr("Error"), |
|
115 |
tr("The host was not found. Please check the host name and port settings.")); |
|
116 |
break; |
|
117 |
case QAbstractSocket::ConnectionRefusedError: |
|
118 |
QMessageBox::information(0, tr("Error"), |
|
119 |
tr("Connection refused")); |
|
120 |
break; |
|
121 |
default: |
|
122 |
QMessageBox::information(0, tr("Error"), |
|
123 |
NetSocket.errorString()); |
|
124 |
} |
|
125 |
} |
|
126 |
||
127 |
void HWNewNet::ParseLine(const QByteArray & line) |
|
128 |
{ |
|
129 |
QString msg = QString::fromUtf8 (line.data(), line.size()); |
|
320 | 130 |
|
315 | 131 |
qDebug() << "line " << msg << " received"; |
132 |
||
133 |
QStringList lst = msg.split(delimeter); |
|
134 |
if (lst[0] == "ERRONEUSNICKNAME") { |
|
135 |
QMessageBox::information(0, 0, "Your net nickname is in use or cannot be used"); |
|
136 |
return; |
|
137 |
} |
|
138 |
||
139 |
if (lst[0] == "CONNECTED") { |
|
140 |
emit Connected(); |
|
141 |
emit EnteredGame(); |
|
142 |
return; |
|
143 |
} |
|
144 |
||
145 |
if (lst[0] == "TEAMCHANGED") { |
|
146 |
lst.pop_front(); |
|
147 |
emit ChangeInTeams(lst); |
|
148 |
return; |
|
149 |
} |
|
150 |
||
151 |
if (lst[0] == "CONFIGASKED") { |
|
152 |
ConfigAsked(); |
|
153 |
return; |
|
154 |
} |
|
320 | 155 |
|
315 | 156 |
if (lst[0] == "CONFIGURED") { |
157 |
lst.pop_front(); |
|
158 |
RunGame(); |
|
159 |
qDebug() << lst[0]; |
|
160 |
QByteArray ar=QByteArray::fromBase64(lst[0].toAscii()); |
|
161 |
emit FromNet(ar); |
|
320 | 162 |
|
315 | 163 |
lst.pop_front(); |
164 |
QByteArray cache; |
|
165 |
emit FromNet(HWProto::addStringListToBuffer(cache, lst)); |
|
166 |
return; |
|
167 |
} |
|
168 |
||
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
169 |
if (lst[0] == "CONFIG_PARAM") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
170 |
if (lst[1] == "SEED") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
171 |
emit seedChanged(lst[2]); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
172 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
173 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
174 |
if (lst[1] == "MAP") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
175 |
emit mapChanged(lst[2]); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
176 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
177 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
178 |
if (lst[1] == "THEME") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
179 |
emit themeChanged(lst[2]); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
180 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
181 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
182 |
if (lst[1] == "HEALTH") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
183 |
emit initHealthChanged(lst[2].toUInt()); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
184 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
185 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
186 |
if (lst[1] == "TURNTIME") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
187 |
emit turnTimeChanged(lst[2].toUInt()); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
188 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
189 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
190 |
if (lst[1] == "FORTSMODE") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
191 |
emit fortsModeChanged(lst[2].toInt() != 0); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
192 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
193 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
194 |
qDebug() << "unknow config param: " << lst[1]; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
195 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
196 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
197 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
198 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
199 |
// should be kinda game states, which don't allow "GAMEMSG:" at configure step, |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
200 |
// "CONNECTED" at round phase, etc. |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
201 |
if (lst[0] == "GAMEMSG:") { |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
202 |
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
|
203 |
qDebug() << "to engine:" << em; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
204 |
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
|
205 |
return; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
206 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
207 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
208 |
qDebug() << "unknown net command: " << msg; |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
209 |
|
315 | 210 |
} |
211 |
||
212 |
||
213 |
void HWNewNet::ConfigAsked() |
|
214 |
{ |
|
215 |
QByteArray cache; |
|
216 |
HWProto::addStringToBuffer(cache, "eseed " + seed); |
|
319 | 217 |
HWProto::addStringToBuffer(cache, "TN"); |
315 | 218 |
HWProto::addStringToBuffer(cache, "e$gmflags 0"); |
320 | 219 |
HWProto::addStringToBuffer(cache, QString("etheme steel")); |
315 | 220 |
QString _msg = QString("CONFIGANSWER") + delimeter + QString(cache.toBase64()); |
221 |
RawSendNet(_msg); |
|
222 |
} |
|
223 |
||
224 |
void HWNewNet::RunGame() |
|
225 |
{ |
|
226 |
HWGame * game = new HWGame(config, 0); |
|
227 |
connect(game, SIGNAL(SendNet(const QByteArray &)), this, SLOT(SendNet(const QByteArray &))); |
|
228 |
connect(this, SIGNAL(FromNet(const QByteArray &)), game, SLOT(FromNet(const QByteArray &))); |
|
229 |
connect(this, SIGNAL(LocalCFG(const QString &)), game, SLOT(LocalCFG(const QString &))); |
|
230 |
game->StartNet(); |
|
231 |
} |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
232 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
233 |
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
|
234 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
235 |
RawSendNet(QString("CONFIG_PARAM%1SEED%1%2").arg(delimeter).arg(seed)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
236 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
237 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
238 |
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
|
239 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
240 |
RawSendNet(QString("CONFIG_PARAM%1MAP%1%2").arg(delimeter).arg(map)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
241 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
242 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
243 |
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
|
244 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
245 |
RawSendNet(QString("CONFIG_PARAM%1THEME%1%2").arg(delimeter).arg(theme)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
246 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
247 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
248 |
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
|
249 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
250 |
RawSendNet(QString("CONFIG_PARAM%1HEALTH%1%2").arg(delimeter).arg(health)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
251 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
252 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
253 |
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
|
254 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
255 |
RawSendNet(QString("CONFIG_PARAM%1TURNTIME%1%2").arg(delimeter).arg(time)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
256 |
} |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
257 |
|
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
258 |
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
|
259 |
{ |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
260 |
RawSendNet(QString("CONFIG_PARAM%1FORTSMODE%1%2").arg(delimeter).arg(value)); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
322
diff
changeset
|
261 |
} |