author | nemo |
Sun, 18 Oct 2009 06:26:45 +0000 | |
changeset 2538 | 661079b00177 |
parent 2405 | 3b8607ac32c6 |
child 2706 | 935b7d618cf0 |
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 |
template <typename T> |
|
60 |
void SendCfgStrNet(T a) { |
|
61 |
QByteArray strmsg; |
|
328 | 62 |
strmsg.append(a); |
315 | 63 |
quint8 sz = strmsg.size(); |
64 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
65 |
QString _msg = delimeter + QString(enginemsg.toBase64()); |
|
66 |
RawSendNet(_msg); |
|
67 |
} |
|
68 |
||
69 |
template <typename T> |
|
70 |
void SendCfgStrLoc(T a) { |
|
71 |
QByteArray strmsg; |
|
72 |
strmsg.append(QString(a).toUtf8()); |
|
73 |
quint8 sz = strmsg.size(); |
|
74 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
75 |
emit FromNet(enginemsg); |
|
76 |
} |
|
77 |
||
1082 | 78 |
QStringList cmdbuf; |
79 |
||
315 | 80 |
void RawSendNet(const QString & buf); |
81 |
void RawSendNet(const QByteArray & buf); |
|
1082 | 82 |
void ParseCmd(const QStringList & lst); |
315 | 83 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
84 |
int loginStep; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
85 |
int netClientState; |
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
86 |
|
315 | 87 |
signals: |
660 | 88 |
void AskForRunGame(); |
315 | 89 |
void Connected(); |
90 |
void Disconnected(); |
|
91 |
void EnteredGame(); |
|
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1577
diff
changeset
|
92 |
void LeftRoom(); |
465 | 93 |
void nickAdded(const QString& nick); |
94 |
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
|
95 |
void nickAddedLobby(const QString& nick); |
6b63c75fdc68
Start work on lobby: add/remove nick from the list on join/quit
unc0rr
parents:
1530
diff
changeset
|
96 |
void nickRemovedLobby(const QString& nick); |
315 | 97 |
void FromNet(const QByteArray & buf); |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1797
diff
changeset
|
98 |
void adminAccess(bool); |
1860 | 99 |
void roomMaster(bool); |
1856
e71dbf958c87
Enable admin button when have privilege. Button does nothing yet.
unc0rr
parents:
1797
diff
changeset
|
100 |
|
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1875
diff
changeset
|
101 |
void netSchemeConfig(QStringList &); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1860
diff
changeset
|
102 |
void paramChanged(const QString & param, const QStringList & value); |
1875 | 103 |
void configAsked(); |
104 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
105 |
void AddNetTeam(const HWTeam&); |
352 | 106 |
void hhnumChanged(const HWTeam&); |
372 | 107 |
void teamColorChanged(const HWTeam&); |
1568 | 108 |
void chatStringLobby(const QString&); |
1356 | 109 |
void chatStringFromNet(const QString&); |
1360 | 110 |
void chatStringFromMe(const QString&); |
1568 | 111 |
void chatStringFromMeLobby(const QString&); |
1377 | 112 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
113 |
void roomsList(const QStringList&); |
1377 | 114 |
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
|
115 |
|
1405 | 116 |
void setReadyStatus(const QString & nick, bool isReady); |
1648 | 117 |
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
|
118 |
void showMessage(const QString &); |
1405 | 119 |
|
315 | 120 |
public slots: |
1404 | 121 |
void ToggleReady(); |
453 | 122 |
void chatLineToNet(const QString& str); |
1568 | 123 |
void chatLineToLobby(const QString& str); |
2403 | 124 |
void SendTeamMessage(const QString& str); |
315 | 125 |
void SendNet(const QByteArray & buf); |
328 | 126 |
void AddTeam(const HWTeam & team); |
347 | 127 |
void RemoveTeam(const HWTeam& team); |
352 | 128 |
void onHedgehogsNumChanged(const HWTeam& team); |
372 | 129 |
void onTeamColorChanged(const HWTeam& team); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1860
diff
changeset
|
130 |
void onParamChanged(const QString & param, const QStringList & value); |
2377 | 131 |
|
1925 | 132 |
void newServerMessage(const QString &); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1860
diff
changeset
|
133 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1860
diff
changeset
|
134 |
|
1313
f4c54e9e1b8c
- Introduce a bit of state miachine in client code (should be more robust and verbosive now)
unc0rr
parents:
1311
diff
changeset
|
135 |
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
|
136 |
void CreateRoom(const QString & room); |
1315 | 137 |
void askRoomsList(); |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1339
diff
changeset
|
138 |
void gameFinished(); |
1860 | 139 |
void banPlayer(const QString &); |
1391 | 140 |
void kickPlayer(const QString &); |
1577 | 141 |
void infoPlayer(const QString &); |
1410
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
142 |
void startGame(); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
143 |
void toggleRestrictJoins(); |
eece43296890
Send appropriate messages to server on control menu actions
unc0rr
parents:
1405
diff
changeset
|
144 |
void toggleRestrictTeamAdds(); |
1592
5ee77ee470a6
Start converting network protocol to no-disconnecting religion
unc0rr
parents:
1577
diff
changeset
|
145 |
void partRoom(); |
2155
d897222d3339
Implement ability for server admin to clear accounts cache
unc0rr
parents:
1925
diff
changeset
|
146 |
void clearAccountsCache(); |
315 | 147 |
|
148 |
private slots: |
|
149 |
void ClientRead(); |
|
150 |
void OnConnect(); |
|
151 |
void OnDisconnect(); |
|
152 |
void displayError(QAbstractSocket::SocketError socketError); |
|
153 |
}; |
|
154 |
||
155 |
#endif // _NEW_NETCLIENT_INCLUDED |