author | displacer |
Sat, 03 Feb 2007 12:42:38 +0000 | |
changeset 381 | 6096d74c37da |
parent 372 | 4bac77f8cd38 |
child 383 | 09a8795105a4 |
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 |
#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" |
|
28 |
||
29 |
class GameUIConfig; |
|
334 | 30 |
class GameCFGWidget; |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
31 |
class TeamSelWidget; |
315 | 32 |
|
33 |
extern char delimeter; |
|
34 |
||
35 |
class HWNewNet : public QObject |
|
36 |
{ |
|
37 |
Q_OBJECT |
|
38 |
||
39 |
public: |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
40 |
HWNewNet(GameUIConfig * config, GameCFGWidget* pGameCFGWidget, TeamSelWidget* pTeamSelWidget); |
315 | 41 |
void Connect(const QString & hostName, quint16 port, const QString & nick); |
42 |
void Disconnect(); |
|
43 |
void JoinGame(const QString & game); |
|
44 |
void StartGame(); |
|
45 |
||
46 |
private: |
|
47 |
GameUIConfig* config; |
|
334 | 48 |
GameCFGWidget* m_pGameCFGWidget; |
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
49 |
TeamSelWidget* m_pTeamSelWidget; |
315 | 50 |
|
334 | 51 |
bool isChief; |
315 | 52 |
QString mynick; |
53 |
QTcpSocket NetSocket; |
|
54 |
QString seed; |
|
55 |
||
354
60e4af0a4375
network to local teams map, addteams from server before team config bug, fixed some segfaults
displacer
parents:
352
diff
changeset
|
56 |
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
|
57 |
|
315 | 58 |
void ConfigAsked(); |
59 |
void RunGame(); |
|
341 | 60 |
void SendConfigToEngine(); |
315 | 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 |
||
81 |
void RawSendNet(const QString & buf); |
|
82 |
void RawSendNet(const QByteArray & buf); |
|
83 |
void ParseLine(const QByteArray & line); |
|
84 |
||
85 |
signals: |
|
86 |
void Connected(); |
|
87 |
void Disconnected(); |
|
88 |
void AddGame(const QString & chan); |
|
89 |
void EnteredGame(); |
|
90 |
void FromNet(const QByteArray & buf); |
|
91 |
void LocalCFG(const QString & team); |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
92 |
void AddNetTeam(const HWTeam&); |
315 | 93 |
|
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
94 |
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
|
95 |
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
|
96 |
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
|
97 |
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
|
98 |
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
|
99 |
void fortsModeChanged(bool value); |
352 | 100 |
void hhnumChanged(const HWTeam&); |
372 | 101 |
void teamColorChanged(const HWTeam&); |
329
4c3aad46baa5
Send game parameters by net... Currently it leads to infinite loop, flooding traffic with messages about changes
unc0rr
parents:
328
diff
changeset
|
102 |
|
315 | 103 |
public slots: |
104 |
void SendNet(const QByteArray & buf); |
|
328 | 105 |
void AddTeam(const HWTeam & team); |
347 | 106 |
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
|
107 |
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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
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
|
112 |
void onFortsModeChanged(bool value); |
352 | 113 |
void onHedgehogsNumChanged(const HWTeam& team); |
372 | 114 |
void onTeamColorChanged(const HWTeam& team); |
315 | 115 |
|
116 |
private slots: |
|
117 |
void ClientRead(); |
|
118 |
void OnConnect(); |
|
119 |
void OnDisconnect(); |
|
120 |
//void Perform(); |
|
121 |
void displayError(QAbstractSocket::SocketError socketError); |
|
122 |
//void FlushNetBuf(); |
|
123 |
}; |
|
124 |
||
125 |
#endif // _NEW_NETCLIENT_INCLUDED |