author | Wuzzy <almikes@aol.com> |
Sat, 23 Sep 2017 09:35:45 +0200 | |
changeset 12502 | f4b0e164a0d5 |
parent 12501 | 92c597704e57 |
child 12505 | 82c75a317d48 |
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 |
#include <QFile> |
|
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
21 |
#include <QFileInfo> |
1907 | 22 |
#include <QTextStream> |
23 |
#include <QStringList> |
|
24 |
#include <QLineEdit> |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
25 |
|
1907 | 26 |
#include "hwform.h" |
6930 | 27 |
#include "DataManager.h" |
1907 | 28 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
29 |
#include "namegen.h" |
1907 | 30 |
|
6024 | 31 |
HWNamegen::HWNamegen() {} |
1907 | 32 |
|
6024 | 33 |
QList<QStringList> HWNamegen::TypesTeamnames; |
34 |
QList<QStringList> HWNamegen::TypesHatnames; |
|
35 |
bool HWNamegen::typesAvailable = false; |
|
1907 | 36 |
|
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
37 |
void HWNamegen::teamRandomTeamName(HWTeam & team) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
38 |
{ |
12247
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
39 |
QString newName = getRandomTeamName(-1); |
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
40 |
if(!newName.isNull()) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
41 |
team.setName(newName); |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
42 |
} |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
43 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
44 |
void HWNamegen::teamRandomFlag(HWTeam & team, bool withDLC) |
12244 | 45 |
{ |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
46 |
team.setFlag(getRandomFlag(withDLC)); |
12244 | 47 |
} |
1907 | 48 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
49 |
void HWNamegen::teamRandomVoice(HWTeam & team, bool withDLC) |
12244 | 50 |
{ |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
51 |
team.setVoicepack(getRandomVoice(withDLC)); |
12244 | 52 |
} |
53 |
||
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
54 |
void HWNamegen::teamRandomGrave(HWTeam & team, bool withDLC) |
12244 | 55 |
{ |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
56 |
team.setGrave(getRandomGrave(withDLC)); |
12244 | 57 |
} |
58 |
||
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
59 |
void HWNamegen::teamRandomFort(HWTeam & team, bool withDLC) |
12244 | 60 |
{ |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
61 |
team.setFort(getRandomFort(withDLC)); |
12244 | 62 |
} |
63 |
||
12248
07f67ee424dc
Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents:
12247
diff
changeset
|
64 |
void HWNamegen::teamRandomEverything(HWTeam & team, const RandomTeamMode mode) |
1907 | 65 |
{ |
6024 | 66 |
// load types if not already loaded |
67 |
if (!typesAvailable) |
|
68 |
if (!loadTypes()) |
|
69 |
return; // abort if loading failed |
|
70 |
||
71 |
// abort if there are no hat types |
|
72 |
if (TypesHatnames.size() <= 0) |
|
73 |
return; |
|
1907 | 74 |
|
6024 | 75 |
// the hat will influence which names the hogs get |
76 |
int kind = (rand()%(TypesHatnames.size())); |
|
77 |
||
78 |
// pick team name based on hat |
|
12248
07f67ee424dc
Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents:
12247
diff
changeset
|
79 |
if (mode == HWNamegen::rtmEverything) |
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
80 |
{ team.setName(getRandomTeamName(kind)); |
6024 | 81 |
team.setGrave(getRandomGrave()); |
82 |
team.setFort(getRandomFort()); |
|
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
83 |
team.setFlag(getRandomFlag()); |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
84 |
team.setVoicepack(getRandomVoice()); |
6024 | 85 |
} |
86 |
||
87 |
QStringList dicts; |
|
88 |
QStringList dict; |
|
89 |
||
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
90 |
if ((mode == HWNamegen::rtmHogNames || mode == HWNamegen::rtmEverything) && (TypesHatnames[kind].size()) <= 0) |
6024 | 91 |
{ |
92 |
dicts = dictsForHat(team.hedgehog(0).Hat); |
|
93 |
dict = dictContents(dicts[rand()%(dicts.size())]); |
|
94 |
} |
|
95 |
||
96 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
|
97 |
{ |
|
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
98 |
if (mode == HWNamegen::rtmEverything && (TypesHatnames[kind].size()) > 0) |
6024 | 99 |
{ |
100 |
HWHog hh = team.hedgehog(i); |
|
101 |
hh.Hat = TypesHatnames[kind][rand()%(TypesHatnames[kind].size())]; |
|
102 |
team.setHedgehog(i,hh); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
103 |
} |
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
104 |
|
6024 | 105 |
// there is a chance that this hog has the same hat as the previous one |
106 |
// let's reuse the hat-specific dict in this case |
|
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
107 |
if ( (mode == HWNamegen::rtmHogNames || mode == HWNamegen::rtmEverything) && ((i == 0) || (team.hedgehog(i).Hat != team.hedgehog(i-1).Hat))) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
108 |
{ |
6024 | 109 |
dicts = dictsForHat(team.hedgehog(i).Hat); |
110 |
dict = dictContents(dicts[rand()%(dicts.size())]); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
111 |
} |
1907 | 112 |
|
6024 | 113 |
// give each hedgehog a random name |
12248
07f67ee424dc
Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents:
12247
diff
changeset
|
114 |
if (mode == HWNamegen::rtmHogNames || mode == HWNamegen::rtmEverything) |
07f67ee424dc
Add buttons to randomize hats and hog names only
Wuzzy <almikes@aol.com>
parents:
12247
diff
changeset
|
115 |
HWNamegen::teamRandomHogName(team,i,dict); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
116 |
} |
1907 | 117 |
|
118 |
} |
|
119 |
||
12502
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
120 |
// Set random hats for entire team |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
121 |
void HWNamegen::teamRandomHats(HWTeam & team, bool withDLC) |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
122 |
{ |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
123 |
// 50% chance that all hogs are set to the same hat. |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
124 |
// 50% chance that each hog gets a random head individually. |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
125 |
|
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
126 |
bool sameHogs = (rand()%2) == 0; |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
127 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
128 |
{ |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
129 |
HWHog hh = team.hedgehog(i); |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
130 |
if (sameHogs and i > 0) |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
131 |
hh.Hat = team.hedgehog(i-1).Hat; |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
132 |
else |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
133 |
hh.Hat = getRandomHat(withDLC); |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
134 |
team.setHedgehog(i, hh); |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
135 |
} |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
136 |
} |
f4b0e164a0d5
Chance that clicking the random hats button produces a set of equal hats
Wuzzy <almikes@aol.com>
parents:
12501
diff
changeset
|
137 |
|
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
138 |
void HWNamegen::teamRandomHat(HWTeam & team, const int HedgehogNumber, bool withDLC) |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
139 |
{ |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
140 |
HWHog hh = team.hedgehog(HedgehogNumber); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
141 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
142 |
hh.Hat = getRandomHat(withDLC); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
143 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
144 |
team.setHedgehog(HedgehogNumber, hh); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
145 |
} |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
146 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
147 |
void HWNamegen::teamRandomHat(HWTeam & team, const int HedgehogNumber, const QStringList & dict) |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
148 |
{ |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
149 |
HWHog hh = team.hedgehog(HedgehogNumber); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
150 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
151 |
hh.Name = dict[rand()%(dict.size())]; |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
152 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
153 |
team.setHedgehog(HedgehogNumber, hh); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
154 |
} |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
155 |
|
12244 | 156 |
void HWNamegen::teamRandomHogName(HWTeam & team, const int HedgehogNumber) |
6024 | 157 |
{ |
158 |
QStringList dicts = dictsForHat(team.hedgehog(HedgehogNumber).Hat); |
|
1907 | 159 |
|
6024 | 160 |
QStringList dict = dictContents(dicts[rand()%(dicts.size())]); |
161 |
||
12244 | 162 |
teamRandomHogName(team, HedgehogNumber, dict); |
6024 | 163 |
} |
164 |
||
12244 | 165 |
void HWNamegen::teamRandomHogName(HWTeam & team, const int HedgehogNumber, const QStringList & dict) |
1907 | 166 |
{ |
6024 | 167 |
QStringList namesDict = dict; |
1907 | 168 |
|
6024 | 169 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
170 |
{ |
|
171 |
namesDict.removeOne(team.hedgehog(i).Name); |
|
172 |
} |
|
173 |
||
174 |
// if our dict doesn't have any new names we'll have to use duplicates |
|
175 |
if (namesDict.size() < 1) |
|
176 |
namesDict = dict; |
|
1907 | 177 |
|
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5252
diff
changeset
|
178 |
HWHog hh = team.hedgehog(HedgehogNumber); |
6024 | 179 |
|
180 |
hh.Name = namesDict[rand()%(namesDict.size())]; |
|
181 |
||
6015
daffc14a518a
cleaning up a little bit more, especially team class. we were leaking teams into heap memory on quick game starts btw
sheepluva
parents:
5252
diff
changeset
|
182 |
team.setHedgehog(HedgehogNumber, hh); |
1907 | 183 |
} |
184 |
||
6024 | 185 |
QStringList HWNamegen::dictContents(const QString filename) |
1907 | 186 |
{ |
6024 | 187 |
QStringList list; |
1907 | 188 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
189 |
// find .txt to load the names from |
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
190 |
QFile file(QString("physfs://Names/%1.txt").arg(filename)); |
6024 | 191 |
|
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
192 |
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
193 |
{ |
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
194 |
QTextStream in(&file); |
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
195 |
QString line; |
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
196 |
do |
6024 | 197 |
{ |
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
198 |
line = in.readLine(); |
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
199 |
|
6024 | 200 |
if(!line.isEmpty()) |
201 |
list.append(line); |
|
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
202 |
} while (!line.isNull()); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
203 |
} |
1907 | 204 |
|
6024 | 205 |
if (list.size() == 0) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
206 |
list.append(filename); |
1907 | 207 |
|
6024 | 208 |
return list; |
1907 | 209 |
} |
210 |
||
211 |
||
6024 | 212 |
QStringList HWNamegen::dictsForHat(const QString hatname) |
1907 | 213 |
{ |
6024 | 214 |
QStringList list; |
1907 | 215 |
|
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
216 |
// Find and check .cfg to load the dicts from |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
217 |
QString path = QString("physfs://Names/%1.cfg").arg(hatname); |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
218 |
QFileInfo check_file(path); |
6024 | 219 |
|
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
220 |
// Note: The .cfg file is optional; a fallback mechanism is in place (see below) |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
221 |
|
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
222 |
// Check if file exists to prevent PhysFS from complaining in console so much |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
223 |
if (check_file.exists() && check_file.isFile()) |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
224 |
{ |
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
225 |
QFile file(path); |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
226 |
|
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
227 |
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) |
6024 | 228 |
{ |
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
229 |
QTextStream in(&file); |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
230 |
QString line; |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
231 |
do |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
232 |
{ |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
233 |
line = in.readLine(); |
8110
9f5fe3fc9d16
Use alternative way of checking for file end. Also refactor this code a bit.
unc0rr
parents:
8049
diff
changeset
|
234 |
|
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
235 |
if(!line.isEmpty()) |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
236 |
list.append(line); |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
237 |
} while (!line.isNull()); |
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
238 |
} |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
239 |
} |
1907 | 240 |
|
12499
d97050a7c074
Stop PhysFS from complaining when a random name .cfg file is missing
Wuzzy <almikes@aol.com>
parents:
12295
diff
changeset
|
241 |
// Use Data/Names/generic.cfg by default |
6024 | 242 |
if (list.size() == 0) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
243 |
list.append(QString("generic")); |
1907 | 244 |
|
6024 | 245 |
return list; |
1907 | 246 |
} |
247 |
||
6024 | 248 |
// loades types from ini files. returns true on success. |
249 |
bool HWNamegen::loadTypes() |
|
250 |
{ |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
251 |
typesAvailable = false; |
6024 | 252 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
253 |
// find .ini to load the names from |
8049 | 254 |
QFile * file = new QFile(QString("physfs://Names/types.ini")); |
6024 | 255 |
|
1907 | 256 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
257 |
if (file->exists() && file->open(QIODevice::ReadOnly | QIODevice::Text)) |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
258 |
{ |
1907 | 259 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
260 |
int counter = 0; //counter starts with 0 (teamnames mode) |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
261 |
TypesTeamnames.append(QStringList()); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
262 |
TypesHatnames.append(QStringList()); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
263 |
|
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
264 |
QTextStream in(file); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
265 |
while (!in.atEnd()) |
6024 | 266 |
{ |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
267 |
QString line = in.readLine(); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
268 |
if (line == QString("#####")) |
6024 | 269 |
{ |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
270 |
counter++; //toggle mode (teamnames || hats) |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
271 |
if ((counter%2) == 0) |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
272 |
{ |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
273 |
TypesTeamnames.append(QStringList()); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
274 |
TypesHatnames.append(QStringList()); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
275 |
} |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
276 |
} |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
277 |
else if ((line == QString("*****")) || (line == QString("*END*"))) |
6024 | 278 |
{ |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
279 |
typesAvailable = true; |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
280 |
return true; // bye bye |
6024 | 281 |
} |
282 |
else |
|
283 |
{ |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
284 |
if ((counter%2) == 0) |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
285 |
{ |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
286 |
// even => teamnames mode |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
287 |
TypesTeamnames[(counter/2)].append(line); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
288 |
} |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
289 |
else |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
290 |
{ |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
291 |
// odd => hats mode |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
292 |
TypesHatnames[((counter-1)/2)].append(line); |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
293 |
} |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
294 |
} |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
295 |
} |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
296 |
|
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
297 |
typesAvailable = true; |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5115
diff
changeset
|
298 |
} |
6024 | 299 |
|
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
300 |
// this QFile isn't needed any further |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
301 |
delete file; |
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
302 |
|
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
303 |
return typesAvailable; |
1907 | 304 |
} |
305 |
||
12247
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
306 |
/* Generates a random team name. |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
307 |
kind: Use to select a team name out of a group (types.ini). |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
308 |
Use a negative value if you don't care. |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
309 |
This function may return a null QString on error(this should never happen). */ |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
310 |
QString HWNamegen::getRandomTeamName(int kind) |
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
311 |
{ |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
312 |
// load types if not already loaded |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
313 |
if (!typesAvailable) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
314 |
if (!loadTypes()) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
315 |
return QString(); // abort if loading failed |
1907 | 316 |
|
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
317 |
// abort if there are no hat types |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
318 |
if (TypesHatnames.size() <= 0) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
319 |
return QString(); |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
320 |
|
12247
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
321 |
if(kind < 0) |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
322 |
kind = (rand()%(TypesHatnames.size())); |
a6e0977be914
Fix non-matching team name when generating random teams
Wuzzy <almikes@aol.com>
parents:
12245
diff
changeset
|
323 |
|
12245
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
324 |
if (TypesTeamnames[kind].size() > 0) |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
325 |
return TypesTeamnames[kind][rand()%(TypesTeamnames[kind].size())]; |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
326 |
else |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
327 |
return QString(); |
5206f9a803d1
Allow to randomize team name, flag, grave, voice and fort seperately
Wuzzy <almikes@aol.com>
parents:
12244
diff
changeset
|
328 |
} |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
329 |
|
12501
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
330 |
QString HWNamegen::getRandomHat(bool withDLC) |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
331 |
{ |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
332 |
QStringList Hats; |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
333 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
334 |
// list all available hats |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
335 |
Hats.append(DataManager::instance().entryList( |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
336 |
"Graphics/Hats", |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
337 |
QDir::Files, |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
338 |
QStringList("*.png"), |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
339 |
withDLC |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
340 |
).replaceInStrings(QRegExp("\\.png$"), "") |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
341 |
); |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
342 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
343 |
if(Hats.size()==0) |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
344 |
{ |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
345 |
// TODO do some serious error handling |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
346 |
return "Error"; |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
347 |
} |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
348 |
|
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
349 |
// pick a random hat |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
350 |
return Hats[rand()%(Hats.size())]; |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
351 |
} |
92c597704e57
Use completely random hats when clicking on "Random hats" button in team editor
Wuzzy <almikes@aol.com>
parents:
12499
diff
changeset
|
352 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
353 |
QString HWNamegen::getRandomGrave(bool withDLC) |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
354 |
{ |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
355 |
QStringList Graves; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
356 |
|
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
357 |
//list all available Graves |
6930 | 358 |
Graves.append(DataManager::instance().entryList( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
359 |
"Graphics/Graves", |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
360 |
QDir::Files, |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
361 |
QStringList("*.png"), |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
362 |
withDLC |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
363 |
).replaceInStrings(QRegExp("\\.png$"), "") |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
364 |
); |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
365 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
366 |
if(Graves.size()==0) |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
367 |
{ |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
368 |
// TODO do some serious error handling |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
369 |
return "Error"; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
370 |
} |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
371 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
372 |
//pick a random grave |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
373 |
return Graves[rand()%(Graves.size())]; |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
374 |
} |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
375 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
376 |
QString HWNamegen::getRandomFlag(bool withDLC) |
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
377 |
{ |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
378 |
QStringList Flags; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
379 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
380 |
//list all available flags |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
381 |
Flags.append(DataManager::instance().entryList( |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
382 |
"Graphics/Flags", |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
383 |
QDir::Files, |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
384 |
QStringList("*.png"), |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
385 |
withDLC |
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
386 |
).replaceInStrings(QRegExp("\\.png$"), "") |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
387 |
); |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
388 |
//remove internal flags |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
389 |
Flags.removeAll("cpu"); |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
390 |
Flags.removeAll("cpu_plain"); |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
391 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
392 |
if(Flags.size()==0) |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
393 |
{ |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
394 |
// TODO do some serious error handling |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
395 |
return "Error"; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
396 |
} |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
397 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
398 |
//pick a random flag |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
399 |
return Flags[rand()%(Flags.size())]; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
400 |
} |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
401 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
402 |
QString HWNamegen::getRandomFort(bool withDLC) |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
403 |
{ |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
404 |
QStringList Forts; |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
405 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
406 |
//list all available Forts |
6930 | 407 |
Forts.append(DataManager::instance().entryList( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
408 |
"Forts", |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
409 |
QDir::Files, |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
410 |
QStringList("*L.png"), |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
411 |
withDLC |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6212
diff
changeset
|
412 |
).replaceInStrings(QRegExp("L\\.png$"), "") |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
413 |
); |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
414 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
415 |
if(Forts.size()==0) |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
416 |
{ |
6160
863d3edf5690
cleaning up some more, also adding a WIP file. changes: hats in the hat selection are now sorted like this: NoHat, Reserved hats (alphabetically), All other hats (alphabeticall)
sheepluva
parents:
6060
diff
changeset
|
417 |
// TODO do some serious error handling |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
418 |
return "Error"; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
419 |
} |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
420 |
|
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
421 |
//pick a random fort |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
422 |
return Forts[rand()%(Forts.size())]; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
423 |
} |
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
424 |
|
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
425 |
QString HWNamegen::getRandomVoice(bool withDLC) |
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
426 |
{ |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
427 |
QStringList Voices; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
428 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
429 |
//list all available voices |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
430 |
Voices.append(DataManager::instance().entryList( |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
431 |
"Sounds/voices", |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
432 |
QDir::Dirs | QDir::NoDotAndDotDot, |
12295
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
433 |
QStringList("*"), |
ac57d564efce
Add DLC filtering in DataManager.cpp and namegen.cpp
Wuzzy <almikes@aol.com>
parents:
12248
diff
changeset
|
434 |
withDLC)); |
11888
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
435 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
436 |
if(Voices.size()==0) |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
437 |
{ |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
438 |
// TODO do some serious error handling |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
439 |
return "Error"; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
440 |
} |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
441 |
|
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
442 |
//pick a random voice |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
443 |
return Voices[rand()%(Voices.size())]; |
618d99523933
Set random flags and voice in random teams
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
444 |
} |