author | unc0rr |
Thu, 14 Aug 2008 14:04:45 +0000 | |
changeset 1210 | bfed1b89bc85 |
parent 1082 | 596b1dcdc1df |
child 1311 | 49beb1221c0b |
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); |
315 | 42 |
void Connect(const QString & hostName, quint16 port, const QString & nick); |
43 |
void Disconnect(); |
|
1082 | 44 |
void JoinRoom(const QString & room); |
45 |
void CreateRoom(const QString & room); |
|
315 | 46 |
void StartGame(); |
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 |
|
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
59 |
QMap<unsigned int, QString> m_networkToLocalteams; // key is netID, value is local team name |
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
60 |
|
315 | 61 |
void ConfigAsked(); |
62 |
void RunGame(); |
|
63 |
||
64 |
template <typename T> |
|
65 |
void SendCfgStrNet(T a) { |
|
66 |
QByteArray strmsg; |
|
328 | 67 |
strmsg.append(a); |
315 | 68 |
quint8 sz = strmsg.size(); |
69 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
70 |
QString _msg = delimeter + QString(enginemsg.toBase64()); |
|
71 |
RawSendNet(_msg); |
|
72 |
} |
|
73 |
||
74 |
template <typename T> |
|
75 |
void SendCfgStrLoc(T a) { |
|
76 |
QByteArray strmsg; |
|
77 |
strmsg.append(QString(a).toUtf8()); |
|
78 |
quint8 sz = strmsg.size(); |
|
79 |
QByteArray enginemsg = QByteArray((char *)&sz, 1) + strmsg; |
|
80 |
emit FromNet(enginemsg); |
|
81 |
} |
|
82 |
||
1082 | 83 |
QStringList cmdbuf; |
84 |
||
315 | 85 |
void RawSendNet(const QString & buf); |
86 |
void RawSendNet(const QByteArray & buf); |
|
1082 | 87 |
void ParseCmd(const QStringList & lst); |
315 | 88 |
|
89 |
signals: |
|
660 | 90 |
void AskForRunGame(); |
315 | 91 |
void Connected(); |
92 |
void Disconnected(); |
|
93 |
void EnteredGame(); |
|
465 | 94 |
void nickAdded(const QString& nick); |
95 |
void nickRemoved(const QString& nick); |
|
315 | 96 |
void FromNet(const QByteArray & buf); |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
97 |
void AddNetTeam(const HWTeam&); |
315 | 98 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
99 |
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
|
100 |
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
|
101 |
void themeChanged(const QString & theme); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
102 |
void initHealthChanged(quint32 health); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
103 |
void turnTimeChanged(quint32 time); |
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 fortsModeChanged(bool value); |
352 | 105 |
void hhnumChanged(const HWTeam&); |
372 | 106 |
void teamColorChanged(const HWTeam&); |
453 | 107 |
void chatStringFromNet(const QStringList&); |
703 | 108 |
void ammoChanged(const QString& name, const QString& ammo); |
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 |
|
315 | 110 |
public slots: |
453 | 111 |
void chatLineToNet(const QString& str); |
315 | 112 |
void SendNet(const QByteArray & buf); |
328 | 113 |
void AddTeam(const HWTeam & team); |
347 | 114 |
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
|
115 |
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
|
116 |
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
|
117 |
void onThemeChanged(const QString & theme); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
118 |
void onInitHealthChanged(quint32 health); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
119 |
void onTurnTimeChanged(quint32 time); |
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
120 |
void onFortsModeChanged(bool value); |
352 | 121 |
void onHedgehogsNumChanged(const HWTeam& team); |
372 | 122 |
void onTeamColorChanged(const HWTeam& team); |
703 | 123 |
void onWeaponsNameChanged(const QString& name, const QString& ammo); |
315 | 124 |
|
125 |
private slots: |
|
126 |
void ClientRead(); |
|
127 |
void OnConnect(); |
|
128 |
void OnDisconnect(); |
|
129 |
//void Perform(); |
|
130 |
void displayError(QAbstractSocket::SocketError socketError); |
|
131 |
//void FlushNetBuf(); |
|
132 |
}; |
|
133 |
||
134 |
#endif // _NEW_NETCLIENT_INCLUDED |