author | unc0rr |
Thu, 06 Sep 2007 18:14:12 +0000 | |
changeset 586 | ecb6347dfeca |
parent 579 | 94db15de0392 |
child 587 | 74db4115064a |
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; |
412 | 34 |
class HWNetUdpServer; |
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(); |
289 | 54 |
void GoToPage(quint8 id); |
55 |
void GoBack(); |
|
530 | 56 |
void btnExitPressed(); |
57 |
void btnExitClicked(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
58 |
void IntermediateSetup(); |
184 | 59 |
void NewTeam(); |
60 |
void EditTeam(); |
|
61 |
void TeamSave(); |
|
62 |
void TeamDiscard(); |
|
63 |
void SimpleGame(); |
|
64 |
void PlayDemo(); |
|
65 |
void NetConnect(); |
|
416 | 66 |
void NetConnectServer(); |
314 | 67 |
void NetStartServer(); |
184 | 68 |
void NetDisconnect(); |
69 |
void NetGameEnter(); |
|
70 |
void NetStartGame(); |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
71 |
void AddNetTeam(const HWTeam& team); |
184 | 72 |
void StartMPGame(); |
448 | 73 |
void NetGameStateChanged(GameState gameState); |
306 | 74 |
void GameStateChanged(GameState gameState); |
75 |
void GameStats(char type, const QString & info); |
|
383 | 76 |
void ForcedDisconnect(); |
425 | 77 |
void ShowErrorMessage(const QString &); |
533 | 78 |
void GetRecord(bool isDemo, const QByteArray & record); |
184 | 79 |
|
80 |
private: |
|
314 | 81 |
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
|
82 |
void UpdateTeamsLists(const QStringList* editable_teams=0); |
341 | 83 |
void CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget); |
187 | 84 |
enum PageIDs { |
586 | 85 |
ID_PAGE_SIMPLEGAME = 0, |
86 |
ID_PAGE_SETUP_TEAM = 1, |
|
87 |
ID_PAGE_SETUP = 2, |
|
88 |
ID_PAGE_MULTIPLAYER = 3, |
|
89 |
ID_PAGE_DEMOS = 4, |
|
90 |
ID_PAGE_NET = 5, |
|
91 |
ID_PAGE_NETCFG = 6, |
|
92 |
ID_PAGE_INFO = 7, |
|
93 |
ID_PAGE_MAIN = 8, |
|
94 |
ID_PAGE_GAMESTATS = 9, |
|
95 |
ID_PAGE_SINGLEPLAYER = 10 |
|
187 | 96 |
}; |
184 | 97 |
HWGame * game; |
245 | 98 |
HWTeam * editedTeam; |
314 | 99 |
HWNewNet * hwnet; |
184 | 100 |
GameUIConfig * config; |
289 | 101 |
QStack<quint8> PagesStack; |
314 | 102 |
HWNetServer* pnetserver; |
412 | 103 |
HWNetUdpServer* pUdpServer; |
530 | 104 |
QTime eggTimer; |
307 | 105 |
void AddStatText(const QString & msg); |
496 | 106 |
void OnPageShown(quint8 id, quint8 lastid=0); |
184 | 107 |
}; |
108 |
||
109 |
#endif |