author | unc0rr |
Tue, 18 Sep 2007 18:24:02 +0000 | |
changeset 596 | 38bdde6a54c1 |
parent 588 | b2e61fc49e5d |
child 681 | 7a20c50988ec |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
486 | 3 |
* Copyright (c) 2005-2007 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, |
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
36 |
gsStopped = 4 |
306 | 37 |
}; |
38 |
||
39 |
||
184 | 40 |
class HWGame : public TCPBase |
41 |
{ |
|
42 |
Q_OBJECT |
|
43 |
public: |
|
341 | 44 |
HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget = 0); |
419
fdeed9718e6b
virtual destructors for tcpBase derived classes, readarray clear removed as unneeded
displacer
parents:
395
diff
changeset
|
45 |
virtual ~HWGame(); |
341 | 46 |
void AddTeam(const QString & team); |
184 | 47 |
void PlayDemo(const QString & demofilename); |
48 |
void StartLocal(); |
|
49 |
void StartQuick(); |
|
50 |
void StartNet(); |
|
587 | 51 |
void StartTraining(); |
184 | 52 |
|
53 |
protected: |
|
54 |
virtual QStringList setArguments(); |
|
55 |
virtual void onClientRead(); |
|
56 |
virtual void onClientDisconnect(); |
|
57 |
||
58 |
signals: |
|
59 |
void SendNet(const QByteArray & msg); |
|
306 | 60 |
void GameStateChanged(GameState gameState); |
61 |
void GameStats(char type, const QString & info); |
|
533 | 62 |
void HaveRecord(bool isDemo, const QByteArray & record); |
425 | 63 |
void ErrorMessage(const QString &); |
184 | 64 |
|
65 |
public slots: |
|
66 |
void FromNet(const QByteArray & msg); |
|
67 |
||
68 |
private: |
|
69 |
enum GameType { |
|
588 | 70 |
gtLocal = 1, |
71 |
gtQLocal = 2, |
|
72 |
gtDemo = 3, |
|
73 |
gtNet = 4, |
|
74 |
gtTraining = 5 |
|
184 | 75 |
}; |
76 |
char msgbuf[MAXMSGCHARS]; |
|
77 |
QString teams[5]; |
|
78 |
QString seed; |
|
79 |
int TeamCount; |
|
80 |
GameUIConfig * config; |
|
81 |
GameCFGWidget * gamecfg; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
82 |
TeamSelWidget* m_pTeamSelWidget; |
184 | 83 |
GameType gameType; |
533 | 84 |
GameState gameState; |
184 | 85 |
|
253 | 86 |
void commonConfig(); |
184 | 87 |
void SendConfig(); |
88 |
void SendQuickConfig(); |
|
341 | 89 |
void SendNetConfig(); |
588 | 90 |
void SendTrainingConfig(); |
184 | 91 |
void ParseMessage(const QByteArray & msg); |
533 | 92 |
void SetGameState(GameState state); |
184 | 93 |
}; |
94 |
||
95 |
#endif |