author | unc0rr |
Fri, 19 Sep 2008 19:58:57 +0000 | |
changeset 1276 | 281f6aa9afba |
parent 1235 | 070629f3902d |
child 1311 | 49beb1221c0b |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy 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" |
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
29 |
#include "SDLs.h" |
184 | 30 |
|
31 |
class HWGame; |
|
32 |
class HWTeam; |
|
314 | 33 |
class HWNewNet; |
184 | 34 |
class GameUIConfig; |
634 | 35 |
class HWNetRegisterServer; |
674 | 36 |
class QCloseEvent; |
184 | 37 |
|
38 |
class HWForm : public QMainWindow |
|
39 |
{ |
|
40 |
Q_OBJECT |
|
41 |
||
42 |
public: |
|
43 |
HWForm(QWidget *parent = 0); |
|
44 |
Ui_HWForm ui; |
|
45 |
||
46 |
private slots: |
|
47 |
void GoToMain(); |
|
48 |
void GoToSinglePlayer(); |
|
49 |
void GoToSetup(); |
|
50 |
void GoToMultiplayer(); |
|
579 | 51 |
void GoToSaves(); |
184 | 52 |
void GoToDemos(); |
53 |
void GoToNet(); |
|
187 | 54 |
void GoToInfo(); |
587 | 55 |
void GoToTraining(); |
600 | 56 |
void GoToSelectWeapon(); |
694 | 57 |
void GoToSelectNewWeapon(); |
646 | 58 |
void GoToNetServer(); |
289 | 59 |
void GoToPage(quint8 id); |
60 |
void GoBack(); |
|
530 | 61 |
void btnExitPressed(); |
62 |
void btnExitClicked(); |
|
535
a14eaf35cf4b
"Setup" button instead of "New team", exclude playing teams from setup
displacer
parents:
533
diff
changeset
|
63 |
void IntermediateSetup(); |
184 | 64 |
void NewTeam(); |
65 |
void EditTeam(); |
|
66 |
void TeamSave(); |
|
67 |
void TeamDiscard(); |
|
68 |
void SimpleGame(); |
|
69 |
void PlayDemo(); |
|
587 | 70 |
void StartTraining(); |
184 | 71 |
void NetConnect(); |
666 | 72 |
void NetConnectServer(const QString & host, quint16 port); |
314 | 73 |
void NetStartServer(); |
184 | 74 |
void NetDisconnect(); |
75 |
void NetGameEnter(); |
|
76 |
void NetStartGame(); |
|
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
338
diff
changeset
|
77 |
void AddNetTeam(const HWTeam& team); |
184 | 78 |
void StartMPGame(); |
306 | 79 |
void GameStateChanged(GameState gameState); |
80 |
void GameStats(char type, const QString & info); |
|
383 | 81 |
void ForcedDisconnect(); |
425 | 82 |
void ShowErrorMessage(const QString &); |
533 | 83 |
void GetRecord(bool isDemo, const QByteArray & record); |
660 | 84 |
void CreateNetGame(); |
695 | 85 |
void UpdateWeapons(); |
697 | 86 |
void NetWeaponNameChanged(const QString& name); |
1162 | 87 |
void onFrontendFullscreen(bool value); |
1235 | 88 |
void Music(bool checked); |
660 | 89 |
|
184 | 90 |
private: |
314 | 91 |
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
|
92 |
void UpdateTeamsLists(const QStringList* editable_teams=0); |
696 | 93 |
void CreateGame(GameCFGWidget * gamecfg, TeamSelWidget* pTeamSelWidget, QString ammo); |
674 | 94 |
void closeEvent(QCloseEvent *event); |
187 | 95 |
enum PageIDs { |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
96 |
ID_PAGE_SETUP_TEAM = 0, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
97 |
ID_PAGE_SETUP = 1, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
98 |
ID_PAGE_MULTIPLAYER = 2, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
99 |
ID_PAGE_DEMOS = 3, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
100 |
ID_PAGE_NET = 4, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
101 |
ID_PAGE_NETCFG = 5, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
102 |
ID_PAGE_INFO = 6, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
103 |
ID_PAGE_MAIN = 7, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
104 |
ID_PAGE_GAMESTATS = 8, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
105 |
ID_PAGE_SINGLEPLAYER = 9, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
106 |
ID_PAGE_TRAINING = 10, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
107 |
ID_PAGE_SELECTWEAPON = 11, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
108 |
ID_PAGE_NETSERVER = 12, |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
697
diff
changeset
|
109 |
ID_PAGE_INGAME = 13 |
187 | 110 |
}; |
184 | 111 |
HWGame * game; |
245 | 112 |
HWTeam * editedTeam; |
314 | 113 |
HWNewNet * hwnet; |
184 | 114 |
GameUIConfig * config; |
289 | 115 |
QStack<quint8> PagesStack; |
314 | 116 |
HWNetServer* pnetserver; |
634 | 117 |
HWNetRegisterServer* pRegisterServer; |
530 | 118 |
QTime eggTimer; |
1225
f882a92ef872
Play music in menu also, with fading effects when run game
unc0rr
parents:
1223
diff
changeset
|
119 |
SDLInteraction sdli; |
307 | 120 |
void AddStatText(const QString & msg); |
496 | 121 |
void OnPageShown(quint8 id, quint8 lastid=0); |
184 | 122 |
}; |
123 |
||
124 |
#endif |