author | unc0rr |
Sat, 15 Dec 2007 16:44:13 +0000 | |
changeset 662 | b2f914786d87 |
parent 660 | 7c155e849602 |
child 666 | 07fa9a74a074 |
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 HWFORM_H |
|
20 |
#define HWFORM_H |
|
21 |
||
471 | 22 |
#include <QMainWindow> |
289 | 23 |
#include <QStack> |
530 | 24 |
#include <QTime> |
184 | 25 |
|
314 | 26 |
#include "netserver.h" |
306 | 27 |
#include "game.h" |
184 | 28 |
#include "ui_hwform.h" |
29 |
||
30 |
class HWGame; |
|
31 |
class HWTeam; |
|
314 | 32 |
class HWNewNet; |
184 | 33 |
class GameUIConfig; |
634 | 34 |
class HWNetRegisterServer; |
184 | 35 |
|
36 |
class HWForm : public QMainWindow |
|
37 |
{ |
|
38 |
Q_OBJECT |
|
39 |
||
40 |
public: |
|
41 |
HWForm(QWidget *parent = 0); |
|
42 |
Ui_HWForm ui; |
|
43 |
||
44 |
private slots: |
|
45 |
void GoToMain(); |
|
46 |
void GoToSinglePlayer(); |
|
47 |
void GoToSetup(); |
|
48 |
void GoToMultiplayer(); |
|
579 | 49 |
void GoToSaves(); |
184 | 50 |
void GoToDemos(); |
51 |
void GoToNet(); |
|
187 | 52 |
void GoToInfo(); |
586 | 53 |
void GoToSimpleGame(); |
587 | 54 |
void GoToTraining(); |
600 | 55 |
void GoToSelectWeapon(); |
646 | 56 |
void GoToNetServer(); |
289 | 57 |
void GoToPage(quint8 id); |
58 |
void GoBack(); |
|
530 | 59 |
void btnExitPressed(); |
60 |
void btnExitClicked(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
61 |
void IntermediateSetup(); |
184 | 62 |
void NewTeam(); |
63 |
void EditTeam(); |
|
64 |
void TeamSave(); |
|
65 |
void TeamDiscard(); |
|
66 |
void SimpleGame(); |
|
67 |
void PlayDemo(); |
|
587 | 68 |
void StartTraining(); |
184 | 69 |
void NetConnect(); |
416 | 70 |
void NetConnectServer(); |
314 | 71 |
void NetStartServer(); |
184 | 72 |
void NetDisconnect(); |
73 |
void NetGameEnter(); |
|
74 |
void NetStartGame(); |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
75 |
void AddNetTeam(const HWTeam& team); |
184 | 76 |
void StartMPGame(); |
306 | 77 |
void GameStateChanged(GameState gameState); |
78 |
void GameStats(char type, const QString & info); |
|
383 | 79 |
void ForcedDisconnect(); |
425 | 80 |
void ShowErrorMessage(const QString &); |
533 | 81 |
void GetRecord(bool isDemo, const QByteArray & record); |
660 | 82 |
void CreateNetGame(); |
83 |
||
184 | 84 |
private: |
314 | 85 |
void _NetConnect(const QString & hostName, quint16 port, const QString & nick); |
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
86 |
void UpdateTeamsLists(const QStringList* editable_teams=0); |
341 | 87 |
void CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget); |
187 | 88 |
enum PageIDs { |
586 | 89 |
ID_PAGE_SIMPLEGAME = 0, |
90 |
ID_PAGE_SETUP_TEAM = 1, |
|
91 |
ID_PAGE_SETUP = 2, |
|
92 |
ID_PAGE_MULTIPLAYER = 3, |
|
93 |
ID_PAGE_DEMOS = 4, |
|
94 |
ID_PAGE_NET = 5, |
|
95 |
ID_PAGE_NETCFG = 6, |
|
96 |
ID_PAGE_INFO = 7, |
|
97 |
ID_PAGE_MAIN = 8, |
|
98 |
ID_PAGE_GAMESTATS = 9, |
|
587 | 99 |
ID_PAGE_SINGLEPLAYER = 10, |
600 | 100 |
ID_PAGE_TRAINING = 11, |
646 | 101 |
ID_PAGE_SELECTWEAPON = 12, |
102 |
ID_PAGE_NETSERVER = 13 |
|
187 | 103 |
}; |
184 | 104 |
HWGame * game; |
245 | 105 |
HWTeam * editedTeam; |
314 | 106 |
HWNewNet * hwnet; |
184 | 107 |
GameUIConfig * config; |
289 | 108 |
QStack<quint8> PagesStack; |
314 | 109 |
HWNetServer* pnetserver; |
634 | 110 |
HWNetRegisterServer* pRegisterServer; |
530 | 111 |
QTime eggTimer; |
307 | 112 |
void AddStatText(const QString & msg); |
496 | 113 |
void OnPageShown(quint8 id, quint8 lastid=0); |
184 | 114 |
}; |
115 |
||
116 |
#endif |