author | unc0rr |
Fri, 30 Jan 2009 14:57:02 +0000 | |
changeset 1778 | 1d9395d1e104 |
parent 1375 | c95c6887b289 |
child 1907 | a104432e8301 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 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 GAME_H |
|
20 |
#define GAME_H |
|
21 |
||
22 |
#include <QString> |
|
23 |
#include "team.h" |
|
24 |
||
25 |
#include "tcpBase.h" |
|
26 |
||
27 |
class GameUIConfig; |
|
28 |
class GameCFGWidget; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
29 |
class TeamSelWidget; |
184 | 30 |
|
306 | 31 |
enum GameState { |
32 |
gsNotStarted = 0, |
|
33 |
gsStarted = 1, |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
34 |
gsInterrupted = 2, |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
35 |
gsFinished = 3, |
686 | 36 |
gsStopped = 4, |
37 |
gsDestroyed = 5 |
|
306 | 38 |
}; |
39 |
||
40 |
||
184 | 41 |
class HWGame : public TCPBase |
42 |
{ |
|
43 |
Q_OBJECT |
|
44 |
public: |
|
681 | 45 |
HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget = 0); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
395
diff
changeset
|
46 |
virtual ~HWGame(); |
341 | 47 |
void AddTeam(const QString & team); |
184 | 48 |
void PlayDemo(const QString & demofilename); |
49 |
void StartLocal(); |
|
50 |
void StartQuick(); |
|
51 |
void StartNet(); |
|
587 | 52 |
void StartTraining(); |
184 | 53 |
|
54 |
protected: |
|
55 |
virtual QStringList setArguments(); |
|
56 |
virtual void onClientRead(); |
|
57 |
virtual void onClientDisconnect(); |
|
58 |
||
59 |
signals: |
|
60 |
void SendNet(const QByteArray & msg); |
|
1356 | 61 |
void SendChat(const QString & msg); |
306 | 62 |
void GameStateChanged(GameState gameState); |
63 |
void GameStats(char type, const QString & info); |
|
533 | 64 |
void HaveRecord(bool isDemo, const QByteArray & record); |
425 | 65 |
void ErrorMessage(const QString &); |
184 | 66 |
|
67 |
public slots: |
|
68 |
void FromNet(const QByteArray & msg); |
|
1356 | 69 |
void FromNetChat(const QString & msg); |
184 | 70 |
|
71 |
private: |
|
1375 | 72 |
enum GameType { |
73 |
gtLocal = 1, |
|
74 |
gtQLocal = 2, |
|
75 |
gtDemo = 3, |
|
76 |
gtNet = 4, |
|
77 |
gtTraining = 5 |
|
184 | 78 |
}; |
79 |
char msgbuf[MAXMSGCHARS]; |
|
80 |
QString teams[5]; |
|
681 | 81 |
QString ammostr; |
184 | 82 |
int TeamCount; |
83 |
GameUIConfig * config; |
|
84 |
GameCFGWidget * gamecfg; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
85 |
TeamSelWidget* m_pTeamSelWidget; |
184 | 86 |
GameType gameType; |
533 | 87 |
GameState gameState; |
184 | 88 |
|
253 | 89 |
void commonConfig(); |
184 | 90 |
void SendConfig(); |
91 |
void SendQuickConfig(); |
|
341 | 92 |
void SendNetConfig(); |
588 | 93 |
void SendTrainingConfig(); |
184 | 94 |
void ParseMessage(const QByteArray & msg); |
533 | 95 |
void SetGameState(GameState state); |
184 | 96 |
}; |
97 |
||
98 |
#endif |