author | unc0rr |
Thu, 05 Oct 2006 16:33:18 +0000 | |
changeset 183 | 57c2ef19f719 |
parent 97 | e7c1df9cce2c |
child 184 | f97a7a3dc8f6 |
permissions | -rw-r--r-- |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
1 |
/* |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
2 |
* Hedgewars, a worms-like game |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
3 |
* Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com> |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
4 |
* |
183 | 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 |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
8 |
* |
183 | 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. |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
13 |
* |
183 | 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 |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
17 |
*/ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
18 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
19 |
#ifndef PREDEFTEAMS_H |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
20 |
#define PREDEFTEAMS_H |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
21 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
22 |
#include <QtGlobal> |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
23 |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
24 |
#define PREDEFTEAMS_COUNT 3 |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
25 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
26 |
struct PredefinedTeam |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
27 |
{ |
87 | 28 |
const char * TeamName; |
29 |
const char * hh0name; |
|
30 |
const char * hh1name; |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
31 |
const char * hh2name; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
32 |
const char * hh3name; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
33 |
const char * hh4name; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
34 |
const char * hh5name; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
35 |
const char * hh6name; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
36 |
const char * hh7name; |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
37 |
QString Grave; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
38 |
QString Fort; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
39 |
}; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
40 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
41 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
42 |
const PredefinedTeam pteams[PREDEFTEAMS_COUNT] = |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
43 |
{ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
44 |
{ |
88 | 45 |
QT_TRANSLATE_NOOP("teams", "Hedgehogs"), |
46 |
QT_TRANSLATE_NOOP("teams", "hedgehog 1"), |
|
47 |
QT_TRANSLATE_NOOP("teams", "hedgehog 2"), |
|
48 |
QT_TRANSLATE_NOOP("teams", "hedgehog 3"), |
|
49 |
QT_TRANSLATE_NOOP("teams", "hedgehog 4"), |
|
50 |
QT_TRANSLATE_NOOP("teams", "hedgehog 5"), |
|
51 |
QT_TRANSLATE_NOOP("teams", "hedgehog 6"), |
|
52 |
QT_TRANSLATE_NOOP("teams", "hedgehog 7"), |
|
53 |
QT_TRANSLATE_NOOP("teams", "hedgehog 8"), |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
54 |
"Simple", "Island" |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
55 |
}, |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
56 |
{ |
88 | 57 |
QT_TRANSLATE_NOOP("teams", "Goddess"), |
58 |
QT_TRANSLATE_NOOP("teams", "Isis"), |
|
59 |
QT_TRANSLATE_NOOP("teams", "Astarte"), |
|
60 |
QT_TRANSLATE_NOOP("teams", "Diana"), |
|
61 |
QT_TRANSLATE_NOOP("teams", "Aphrodite"), |
|
62 |
QT_TRANSLATE_NOOP("teams", "Hecate"), |
|
63 |
QT_TRANSLATE_NOOP("teams", "Demeter"), |
|
64 |
QT_TRANSLATE_NOOP("teams", "Kali"), |
|
65 |
QT_TRANSLATE_NOOP("teams", "Inanna"), |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
66 |
"Bone", "Island" |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
67 |
}, |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
68 |
{ |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
69 |
QT_TRANSLATE_NOOP("teams", "Fruits"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
70 |
QT_TRANSLATE_NOOP("teams", "Banana"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
71 |
QT_TRANSLATE_NOOP("teams", "Apple"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
72 |
QT_TRANSLATE_NOOP("teams", "Orange"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
73 |
QT_TRANSLATE_NOOP("teams", "Lemon"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
74 |
QT_TRANSLATE_NOOP("teams", "Pineapple"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
75 |
QT_TRANSLATE_NOOP("teams", "Mango"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
76 |
QT_TRANSLATE_NOOP("teams", "Peach"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
77 |
QT_TRANSLATE_NOOP("teams", "Plum"), |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
78 |
"coffin", "Barrelhouse" |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
79 |
} |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
80 |
}; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
81 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
diff
changeset
|
82 |
#endif // PREDEFTEAMS_H |