author | nemo |
Thu, 02 Dec 2010 18:52:37 -0500 | |
changeset 4448 | 64cb67276f20 |
parent 4430 | cacda05a053e |
child 4746 | 3ae448aebe7e |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
2948
diff
changeset
|
3 |
* Copyright (c) 2005-2010 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" |
|
1907 | 24 |
#include "namegen.h" |
184 | 25 |
|
26 |
#include "tcpBase.h" |
|
27 |
||
28 |
class GameUIConfig; |
|
29 |
class GameCFGWidget; |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
324
diff
changeset
|
30 |
class TeamSelWidget; |
184 | 31 |
|
306 | 32 |
enum GameState { |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
33 |
gsNotStarted = 0, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
34 |
gsStarted = 1, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
35 |
gsInterrupted = 2, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
36 |
gsFinished = 3, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
37 |
gsStopped = 4, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
38 |
gsDestroyed = 5 |
306 | 39 |
}; |
40 |
||
4084
0d0bf0533eee
Add opendesktop association of files for non-windows. NEEDS TESTING.
nemo
parents:
3760
diff
changeset
|
41 |
bool checkForDir(const QString & dir); |
306 | 42 |
|
184 | 43 |
class HWGame : public TCPBase |
44 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
45 |
Q_OBJECT |
184 | 46 |
public: |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
47 |
HWGame(GameUIConfig * config, GameCFGWidget * gamecfg, QString ammo, TeamSelWidget* pTeamSelWidget = 0); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
48 |
virtual ~HWGame(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
49 |
void AddTeam(const QString & team); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
50 |
void PlayDemo(const QString & demofilename); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
51 |
void StartLocal(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
52 |
void StartQuick(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
53 |
void StartNet(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
54 |
void StartTraining(const QString & file); |
3760 | 55 |
void StartCampaign(const QString & file); |
4428
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4084
diff
changeset
|
56 |
void KillAllTeams(); |
2bc3d3475edf
Try to kill off all teams if the player returns to the lobby in mid-game. Also leave game room open for admins to kick/restrict joins etc. NEEDS TESTING PROBABLY BROKE SOMETHING OR OTHER
nemo
parents:
4084
diff
changeset
|
57 |
GameState gameState; |
4430
cacda05a053e
Try suppressing those annoying "incorrect state" messages without actually breaking net play. Alter prior checks on GoBack. NEEDS TESTING.
nemo
parents:
4428
diff
changeset
|
58 |
bool netSuspend; |
184 | 59 |
|
60 |
protected: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
61 |
virtual QStringList setArguments(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
62 |
virtual void onClientRead(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
63 |
virtual void onClientDisconnect(); |
184 | 64 |
|
65 |
signals: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
66 |
void SendNet(const QByteArray & msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
67 |
void SendChat(const QString & msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
68 |
void SendTeamMessage(const QString & msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
69 |
void GameStateChanged(GameState gameState); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
70 |
void GameStats(char type, const QString & info); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
71 |
void HaveRecord(bool isDemo, const QByteArray & record); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
72 |
void ErrorMessage(const QString &); |
184 | 73 |
|
74 |
public slots: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
75 |
void FromNet(const QByteArray & msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
76 |
void FromNetChat(const QString & msg); |
184 | 77 |
|
78 |
private: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
79 |
enum GameType { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
80 |
gtLocal = 1, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
81 |
gtQLocal = 2, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
82 |
gtDemo = 3, |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
83 |
gtNet = 4, |
3760 | 84 |
gtTraining = 5, |
85 |
gtCampaign = 6, |
|
184 | 86 |
}; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
87 |
char msgbuf[MAXMSGCHARS]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
88 |
QString teams[5]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
89 |
QString ammostr; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
90 |
int TeamCount; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
91 |
GameUIConfig * config; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
92 |
GameCFGWidget * gamecfg; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
93 |
TeamSelWidget* m_pTeamSelWidget; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
94 |
GameType gameType; |
184 | 95 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
96 |
void commonConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
97 |
void SendConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
98 |
void SendQuickConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
99 |
void SendNetConfig(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
100 |
void SendTrainingConfig(); |
3760 | 101 |
void SendCampaignConfig(); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
102 |
void ParseMessage(const QByteArray & msg); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2468
diff
changeset
|
103 |
void SetGameState(GameState state); |
184 | 104 |
}; |
105 |
||
106 |
#endif |