author | unc0rr |
Mon, 19 Jan 2009 18:53:04 +0000 | |
branch | 0.9.9 |
changeset 1728 | fee68e3a3039 |
parent 1671 | bb12cb688f75 |
child 1782 | e7589e37a6d6 |
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 |
#ifndef _NEW_NETCLIENT_INCLUDED |
|
20 |
#define _NEW_NETCLIENT_INCLUDED |
|
21 |
||
22 |
#include <QObject> |
|
23 |
#include <QString> |
|
24 |
#include <QTcpSocket> |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
25 |
#include <QMap> |
315 | 26 |
|
27 |
#include "team.h" |
|
448 | 28 |
#include "game.h" // for GameState |
315 | 29 |
|
30 |
class GameUIConfig; |
|
334 | 31 |
class GameCFGWidget; |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
32 |
class TeamSelWidget; |
315 | 33 |
|
34 |
extern char delimeter; |
|
35 |
||
36 |
class HWNewNet : public QObject |
|
37 |
{ |
|
38 |
Q_OBJECT |
|
39 |
||
40 |
public: |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
41 |
HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget); |
1526
18e412dd7d50
Send QUIT message to server when netclient object is destroyed
unc0rr
parents:
1512
diff
changeset
|
42 |
~HWNewNet(); |
315 | 43 |
void Connect(const QString & hostName, quint16 port, const QString & nick); |
44 |
void Disconnect(); |
|
1339 | 45 |
bool isRoomChief(); |
1671 | 46 |
bool isInRoom(); |
315 | 47 |
|
48 |
private: |
|
49 |
GameUIConfig* config; |
|
334 | 50 |
GameCFGWidget* m_pGameCFGWidget; |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
51 |
TeamSelWidget* m_pTeamSelWidget; |
315 | 52 |
|
334 | 53 |
bool isChief; |
315 | 54 |
QString mynick; |
55 |
QTcpSocket NetSocket; |
|
56 |
QString seed; |
|
383 | 57 |
bool m_game_connected; |
315 | 58 |
|
59 |
void ConfigAsked(); |
|
60 |
void RunGame(); |
|
61 |
||
62 |
template <typename T> |
|
63 |
void SendCfgStrNet(T a) { |
|
64 |
QByteArray strmsg; |
|
328 | 65 |
strmsg.append(a); |
315 | 66 |
quint8 sz = strmsg.size(); |
67 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
68 |
QString _msg = delimeter + QString(enginemsg.toBase64()); |
|
69 |
RawSendNet(_msg); |
|
70 |
} |
|
71 |
||
72 |
template <typename T> |
|
73 |
void SendCfgStrLoc(T a) { |
|
74 |
QByteArray strmsg; |
|
75 |
strmsg.append(QString(a).toUtf8()); |
|
76 |
quint8 sz = strmsg.size(); |
|
77 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
78 |
emit FromNet(enginemsg); |
|
79 |
} |
|
80 |
||
1082 | 81 |
QStringList cmdbuf; |
82 |
||
315 | 83 |
void RawSendNet(const QString & buf); |
84 |
void RawSendNet(const QByteArray & buf); |
|
1082 | 85 |
void ParseCmd(const QStringList & lst); |
1378 | 86 |
QString formatChatMsg(const QString & nick, const QString & msg); |
315 | 87 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
88 |
int loginStep; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
89 |
int netClientState; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
90 |
|
315 | 91 |
signals: |
660 | 92 |
void AskForRunGame(); |
315 | 93 |
void Connected(); |
94 |
void Disconnected(); |
|
95 |
void EnteredGame(); |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1577
diff
changeset
|
96 |
void LeftRoom(); |
465 | 97 |
void nickAdded(const QString& nick); |
98 |
void nickRemoved(const QString& nick); |
|
1566
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1530
diff
changeset
|
99 |
void nickAddedLobby(const QString& nick); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1530
diff
changeset
|
100 |
void nickRemovedLobby(const QString& nick); |
315 | 101 |
void FromNet(const QByteArray & buf); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
102 |
void AddNetTeam(const HWTeam&); |
315 | 103 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
104 |
void seedChanged(const QString & seed); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
105 |
void mapChanged(const QString & map); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
106 |
void themeChanged(const QString & theme); |
1427 | 107 |
void initHealthChanged(int health); |
108 |
void turnTimeChanged(int time); |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
109 |
void fortsModeChanged(bool value); |
1427 | 110 |
void teamsDivideChanged(bool value); |
1530 | 111 |
void solidChanged(bool value); |
352 | 112 |
void hhnumChanged(const HWTeam&); |
372 | 113 |
void teamColorChanged(const HWTeam&); |
1568 | 114 |
void chatStringLobby(const QString&); |
1356 | 115 |
void chatStringFromNet(const QString&); |
1360 | 116 |
void chatStringFromMe(const QString&); |
1568 | 117 |
void chatStringFromMeLobby(const QString&); |
703 | 118 |
void ammoChanged(const QString& name, const QString& ammo); |
1377 | 119 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
120 |
void roomsList(const QStringList&); |
1377 | 121 |
void serverMessage(const QString &); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
122 |
|
1405 | 123 |
void setReadyStatus(const QString & nick, bool isReady); |
1648 | 124 |
void setMyReadyStatus(bool isReady); |
1512
43742041c211
- Don't send 'Bad param' msg, as the only reason of it is just some lag
unc0rr
parents:
1427
diff
changeset
|
125 |
void showMessage(const QString &); |
1405 | 126 |
|
315 | 127 |
public slots: |
1404 | 128 |
void ToggleReady(); |
453 | 129 |
void chatLineToNet(const QString& str); |
1568 | 130 |
void chatLineToLobby(const QString& str); |
315 | 131 |
void SendNet(const QByteArray & buf); |
328 | 132 |
void AddTeam(const HWTeam & team); |
347 | 133 |
void RemoveTeam(const HWTeam& team); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
134 |
void onSeedChanged(const QString & seed); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
135 |
void onMapChanged(const QString & map); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
136 |
void onThemeChanged(const QString & theme); |
1427 | 137 |
void onInitHealthChanged(int health); |
138 |
void onTurnTimeChanged(int time); |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
139 |
void onFortsModeChanged(bool value); |
1427 | 140 |
void onTeamsDivideChanged(bool value); |
1530 | 141 |
void onSolidChanged(bool value); |
352 | 142 |
void onHedgehogsNumChanged(const HWTeam& team); |
372 | 143 |
void onTeamColorChanged(const HWTeam& team); |
703 | 144 |
void onWeaponsNameChanged(const QString& name, const QString& ammo); |
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
145 |
void JoinRoom(const QString & room); |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
146 |
void CreateRoom(const QString & room); |
1315 | 147 |
void askRoomsList(); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
148 |
void gameFinished(); |
1391 | 149 |
void kickPlayer(const QString &); |
1577 | 150 |
void infoPlayer(const QString &); |
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
151 |
void startGame(); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
152 |
void toggleRestrictJoins(); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
153 |
void toggleRestrictTeamAdds(); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1577
diff
changeset
|
154 |
void partRoom(); |
315 | 155 |
|
156 |
private slots: |
|
157 |
void ClientRead(); |
|
158 |
void OnConnect(); |
|
159 |
void OnDisconnect(); |
|
160 |
void displayError(QAbstractSocket::SocketError socketError); |
|
161 |
}; |
|
162 |
||
163 |
#endif // _NEW_NETCLIENT_INCLUDED |