author | unc0rr |
Tue, 25 Jul 2006 13:32:11 +0000 | |
changeset 85 | 44d9045b26ff |
parent 84 | 0f6669da2fcb |
child 87 | ff213e443336 |
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" |
42 |
#include "binds.h" |
|
43 |
#include "game.h" |
|
21 | 44 |
#include "team.h" |
28 | 45 |
#include "netclient.h" |
60
7fbfa2f13f6f
vector removed & teamselwidget moved to constructor
displacer
parents:
50
diff
changeset
|
46 |
#include "teamselect.h" |
50 | 47 |
|
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
48 |
class GameUIConfig; |
84 | 49 |
|
20 | 50 |
class HWForm : public QMainWindow |
51 |
{ |
|
52 |
Q_OBJECT |
|
53 |
||
54 |
public: |
|
55 |
HWForm(QWidget *parent = 0); |
|
56 |
Ui::HWForm ui; |
|
57 |
QLineEdit * TeamNameEdit; |
|
58 |
QLineEdit * HHNameEdit[8]; |
|
59 |
QComboBox * CBBind[BINDS_NUMBER]; |
|
60 |
||
61 |
private slots: |
|
62 |
void GoToMain(); |
|
63 |
void GoToSinglePlayer(); |
|
64 |
void GoToSetup(); |
|
25 | 65 |
void GoToMultiplayer(); |
26 | 66 |
void GoToDemos(); |
28 | 67 |
void GoToNet(); |
68 |
void GoToNetChat(); |
|
20 | 69 |
void NewTeam(); |
70 |
void EditTeam(); |
|
71 |
void TeamSave(); |
|
72 |
void TeamDiscard(); |
|
73 |
void SimpleGame(); |
|
26 | 74 |
void PlayDemo(); |
28 | 75 |
void NetConnect(); |
76 |
void NetDisconnect(); |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
77 |
void NetJoin(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
78 |
void NetCreate(); |
28 | 79 |
void AddGame(const QString & chan); |
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
80 |
void NetAddTeam(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
81 |
void NetGameEnter(); |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
82 |
void NetStartGame(); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
31
diff
changeset
|
83 |
void ChangeInNetTeams(const QStringList & teams); |
26 | 84 |
|
20 | 85 |
public slots: |
86 |
void CBGrave_activated(const QString & gravename); |
|
87 |
void CBFort_activated(const QString & gravename); |
|
88 |
||
89 |
private: |
|
90 |
QLabel * LBind[BINDS_NUMBER]; |
|
91 |
HWGame * game; |
|
21 | 92 |
HWTeam * tmpTeam; |
28 | 93 |
HWNet * hwnet; |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
94 |
GameUIConfig * config; |
20 | 95 |
}; |
96 |
||
97 |
#define ID_PAGE_SINGLEPLAYER 0 |
|
26 | 98 |
#define ID_PAGE_SETUP_TEAM 1 |
20 | 99 |
#define ID_PAGE_SETUP 2 |
25 | 100 |
#define ID_PAGE_MULTIPLAYER 3 |
26 | 101 |
#define ID_PAGE_DEMOS 4 |
28 | 102 |
#define ID_PAGE_NET 5 |
103 |
#define ID_PAGE_NETCHAT 6 |
|
31
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
104 |
#define ID_PAGE_NETCFG 7 |
99888245a4e8
Now net game is near available, but exception occurs...
unc0rr
parents:
28
diff
changeset
|
105 |
#define ID_PAGE_MAIN 8 |
20 | 106 |
|
107 |
#endif |