author | unc0rr |
Wed, 26 Jul 2006 12:25:48 +0000 | |
changeset 87 | ff213e443336 |
parent 85 | 44d9045b26ff |
child 128 | 223522298250 |
permissions | -rw-r--r-- |
20 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2005 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*/ |
|
33 |
||
34 |
#ifndef HWFORM_H |
|
35 |
#define HWFORM_H |
|
36 |
||
37 |
#include <QLabel> |
|
38 |
#include <QLineEdit> |
|
39 |
#include <QDir> |
|
50 | 40 |
|
20 | 41 |
#include "ui_hwform.h" |
50 | 42 |
|
87 | 43 |
class HWGame; |
44 |
class HWTeam; |
|
45 |
class HWNet; |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
46 |
class GameUIConfig; |
84 | 47 |
|
20 | 48 |
class HWForm : public QMainWindow |
49 |
{ |
|
50 |
Q_OBJECT |
|
51 |
||
52 |
public: |
|
53 |
HWForm(QWidget *parent = 0); |
|
87 | 54 |
Ui_HWForm ui; |
20 | 55 |
|
56 |
private slots: |
|
57 |
void GoToMain(); |
|
58 |
void GoToSinglePlayer(); |
|
59 |
void GoToSetup(); |
|
25 | 60 |
void GoToMultiplayer(); |
26 | 61 |
void GoToDemos(); |
28 | 62 |
void GoToNet(); |
63 |
void GoToNetChat(); |
|
20 | 64 |
void NewTeam(); |
65 |
void EditTeam(); |
|
66 |
void TeamSave(); |
|
67 |
void TeamDiscard(); |
|
68 |
void SimpleGame(); |
|
26 | 69 |
void PlayDemo(); |
28 | 70 |
void NetConnect(); |
71 |
void NetDisconnect(); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
72 |
void NetJoin(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
73 |
void NetCreate(); |
28 | 74 |
void AddGame(const QString & chan); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
75 |
void NetAddTeam(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
76 |
void NetGameEnter(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
77 |
void NetStartGame(); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
78 |
void ChangeInNetTeams(const QStringList & teams); |
26 | 79 |
|
20 | 80 |
private: |
81 |
HWGame * game; |
|
21 | 82 |
HWTeam * tmpTeam; |
28 | 83 |
HWNet * hwnet; |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
84 |
GameUIConfig * config; |
20 | 85 |
}; |
86 |
||
87 |
#define ID_PAGE_SINGLEPLAYER 0 |
|
26 | 88 |
#define ID_PAGE_SETUP_TEAM 1 |
20 | 89 |
#define ID_PAGE_SETUP 2 |
25 | 90 |
#define ID_PAGE_MULTIPLAYER 3 |
26 | 91 |
#define ID_PAGE_DEMOS 4 |
28 | 92 |
#define ID_PAGE_NET 5 |
93 |
#define ID_PAGE_NETCHAT 6 |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
94 |
#define ID_PAGE_NETCFG 7 |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
95 |
#define ID_PAGE_MAIN 8 |
20 | 96 |
|
97 |
#endif |