author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 29 Sep 2019 22:23:00 +0200 | |
changeset 15435 | e9fd2527a457 |
parent 14935 | 4accf3e18dbc |
permissions | -rw-r--r-- |
1907 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2009 Martin Minarik <ttsmj@pokec.sk> |
|
11046 | 4 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
1907 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
1907 | 18 |
*/ |
19 |
||
20 |
#ifndef NAMEGEN_H |
|
21 |
#define NAMEGEN_H |
|
22 |
||
23 |
#include <QString> |
|
24 |
||
25 |
class HWForm; |
|
26 |
class HWTeam; |
|
27 |
||
28 |
class HWNamegen |
|
29 |
{ |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6060
diff
changeset
|
30 |
public: |
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
31 |
static void teamRandomTeamName(HWTeam & team); |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
32 |
static void teamRandomGrave(HWTeam & team, bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
33 |
static void teamRandomFort(HWTeam & team, bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
34 |
static void teamRandomFlag(HWTeam & team, bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
35 |
static void teamRandomVoice(HWTeam & team, bool withDLC = true); |
12502
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
36 |
static void teamRandomHats(HWTeam & team, bool withDLC = true); |
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
37 |
static void teamRandomHat(HWTeam & team, const int HedgehogNumber, bool withDLC = true); |
12505
82c75a317d48
Randomized teams now can have any random hats (not just from types.ini)
Wuzzy <almikes@aol.com>
parents:
12502
diff
changeset
|
38 |
static void teamRandomHogNames(HWTeam & team); |
12244 | 39 |
static void teamRandomHogName(HWTeam & team, const int HedgehogNumber); |
12505
82c75a317d48
Randomized teams now can have any random hats (not just from types.ini)
Wuzzy <almikes@aol.com>
parents:
12502
diff
changeset
|
40 |
static void teamRandomEverything(HWTeam & team); |
14935
4accf3e18dbc
Add withDLC for getLocalizedDefaultVoice
Wuzzy <Wuzzy2@mail.ru>
parents:
14934
diff
changeset
|
41 |
static void teamLocalizedDefaultVoice(HWTeam & team, bool withDLC = true); |
12244 | 42 |
|
43 |
private: |
|
44 |
HWNamegen(); |
|
45 |
||
12247
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
46 |
static QString getRandomTeamName(int kind); |
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
47 |
static QString getRandomHat(bool withDLC = true); |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
48 |
static QString getRandomGrave(bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
49 |
static QString getRandomFort(bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
50 |
static QString getRandomFlag(bool withDLC = true); |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
51 |
static QString getRandomVoice(bool withDLC = true); |
14935
4accf3e18dbc
Add withDLC for getLocalizedDefaultVoice
Wuzzy <Wuzzy2@mail.ru>
parents:
14934
diff
changeset
|
52 |
static QString getLocalizedDefaultVoice(bool withDLC = true); |
1907 | 53 |
|
6024 | 54 |
static QList<QStringList> TypesTeamnames; |
55 |
static QList<QStringList> TypesHatnames; |
|
56 |
static bool typesAvailable; |
|
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
57 |
|
6024 | 58 |
static bool loadTypes(); |
59 |
static QStringList dictContents(const QString filename); |
|
60 |
static QStringList dictsForHat(const QString hatname); |
|
61 |
||
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
62 |
static void teamRandomHat(HWTeam & team, const int HedgehogNumber, const QStringList & dict); |
12244 | 63 |
static void teamRandomHogName(HWTeam & team, const int HedgehogNumber, const QStringList & dict); |
1907 | 64 |
}; |
65 |
||
66 |
||
67 |
||
68 |
#endif |