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