author | unc0rr |
Mon, 16 May 2011 22:03:14 +0400 | |
changeset 5211 | 8ebf92014447 |
parent 5115 | 276410cc1178 |
child 5238 | 46ddaf14509d |
permissions | -rw-r--r-- |
1907 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2009 Martin Minarik <ttsmj@pokec.sk> |
|
4976 | 4 |
* Copyright (c) 2009-2011 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 |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
20 |
#include <QFile> |
|
21 |
#include <QTextStream> |
|
22 |
#include <QApplication> |
|
23 |
#include <QStringList> |
|
24 |
#include <QLineEdit> |
|
25 |
#include "namegen.h" |
|
26 |
#include "hwform.h" |
|
27 |
#include "hwconsts.h" |
|
28 |
||
29 |
||
30 |
HWNamegen::HWNamegen() : |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
31 |
TypesAvliable(false) |
1907 | 32 |
{ |
33 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
34 |
TypesLoad(); |
1907 | 35 |
} |
36 |
||
37 |
HWNamegen::~HWNamegen() |
|
38 |
{ |
|
39 |
} |
|
40 |
||
41 |
||
42 |
||
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
43 |
void HWNamegen::TeamRandomName(HWTeam*& team, const int HedgehogNumber) |
1907 | 44 |
{ |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
45 |
RandomNameByHat(team, HedgehogNumber); |
1907 | 46 |
} |
47 |
||
48 |
void HWNamegen::TeamRandomNames(HWTeam*& team, const bool changeteamname) |
|
49 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
50 |
if ((TypesHatnames.size() > 0) && TypesAvliable){ |
1907 | 51 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
52 |
int kind = (rand()%(TypesHatnames.size())); |
1907 | 53 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
54 |
if (changeteamname){ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
55 |
if (TypesTeamnames[kind].size() > 0){ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
56 |
team->TeamName = TypesTeamnames[kind][rand()%(TypesTeamnames[kind].size())]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
57 |
} |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
58 |
team->Grave = GetRandomGrave(); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
59 |
team->Fort = GetRandomFort(); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
60 |
team->Voicepack = "Default"; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
61 |
} |
1907 | 62 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
63 |
//give each hedgehog a random name: |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
64 |
//TODO: load the dictionary only once! (right now it's loaded once for each hedgehog) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
65 |
for(int i = 0; i < 8; i++) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
66 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
67 |
if ((TypesHatnames[kind].size()) > 0){ |
3344 | 68 |
team->Hedgehogs[i].Hat = TypesHatnames[kind][rand()%(TypesHatnames[kind].size())]; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
69 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
70 |
RandomNameByHat(team,i); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
71 |
} |
1907 | 72 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
73 |
} |
1907 | 74 |
|
75 |
} |
|
76 |
||
77 |
||
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
78 |
void HWNamegen::RandomNameByHat(HWTeam*& team, const int HedgehogNumber) |
1907 | 79 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
80 |
QStringList Dictionaries; |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
81 |
HatCfgLoad(team->Hedgehogs[HedgehogNumber].Hat,Dictionaries); |
1907 | 82 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
83 |
QStringList Dictionary; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2192
diff
changeset
|
84 |
DictLoad(Dictionaries[rand()%(Dictionaries.size())],Dictionary); |
1907 | 85 |
|
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
86 |
team->Hedgehogs[HedgehogNumber].Name = Dictionary[rand()%(Dictionary.size())]; |
1907 | 87 |
} |
88 |
||
89 |
void HWNamegen::DictLoad(const QString filename, QStringList &list) |
|
90 |
{ |
|
91 |
list.clear(); |
|
92 |
||
93 |
QFile file(QString("%1/Names/%2.txt").arg(datadir->absolutePath()).arg(filename)); |
|
94 |
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) |
|
95 |
{ |
|
96 |
||
97 |
QTextStream in(&file); |
|
98 |
while (!in.atEnd()) { |
|
99 |
QString line = in.readLine(); |
|
100 |
if(line != QString("")) |
|
101 |
{list.append(line);} |
|
102 |
} |
|
103 |
} |
|
104 |
||
105 |
if (list.size()==0) |
|
106 |
list.append(filename); |
|
107 |
||
108 |
} |
|
109 |
||
110 |
||
111 |
void HWNamegen::HatCfgLoad(const QString hatname, QStringList &list) |
|
112 |
{ |
|
113 |
list.clear(); |
|
114 |
||
115 |
QFile file(QString("%1/Names/%2.cfg").arg(datadir->absolutePath()).arg(hatname)); |
|
116 |
if (file.open(QIODevice::ReadOnly | QIODevice::Text)) |
|
117 |
{ |
|
118 |
||
119 |
QTextStream in(&file); |
|
120 |
while (!in.atEnd()) { |
|
121 |
QString line = in.readLine(); |
|
122 |
if(line != QString("")) |
|
123 |
{list.append(line);} |
|
124 |
} |
|
125 |
} |
|
126 |
||
127 |
if (list.size()==0) |
|
128 |
list.append(QString("generic")); |
|
129 |
||
130 |
} |
|
131 |
||
132 |
||
133 |
void HWNamegen::TypesLoad() |
|
134 |
{ |
|
135 |
||
136 |
QFile file(QString("%1/Names/types.ini").arg(datadir->absolutePath())); |
|
137 |
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) |
|
138 |
{TypesAvliable = FALSE; return;} |
|
139 |
||
140 |
int counter = 0; //counter starts with 0 (teamnames mode) |
|
141 |
TypesTeamnames.append(QStringList()); |
|
142 |
TypesHatnames.append(QStringList()); |
|
143 |
||
144 |
QTextStream in(&file); |
|
145 |
while (!in.atEnd()) { |
|
146 |
QString line = in.readLine(); |
|
147 |
if (line == QString("#####")){ |
|
148 |
counter++; //toggle mode (teamnames || hats) |
|
149 |
if ((counter%2) == 0){ |
|
150 |
TypesTeamnames.append(QStringList()); |
|
151 |
TypesHatnames.append(QStringList()); |
|
152 |
} |
|
153 |
} else if ((line == QString("*****")) || (line == QString("*END*"))){ |
|
154 |
TypesAvliable = TRUE; return; // bye bye |
|
155 |
} else { |
|
156 |
if ((counter%2) == 0){ // even => teamnames mode |
|
157 |
TypesTeamnames[(counter/2)].append(line); |
|
158 |
} else { // odd => hats mode |
|
159 |
TypesHatnames[((counter-1)/2)].append(line); |
|
160 |
} |
|
161 |
} |
|
162 |
// Types.append(line); |
|
163 |
} |
|
164 |
TypesAvliable = TRUE; |
|
165 |
return; |
|
166 |
} |
|
167 |
||
168 |
||
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
169 |
|
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
170 |
QString HWNamegen::GetRandomGrave() |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
171 |
{ |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
172 |
QStringList Graves; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
173 |
|
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
174 |
//list all available Graves |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
175 |
QDir tmpdir; |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
176 |
tmpdir.cd(datadir->absolutePath()); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
177 |
tmpdir.cd("Graphics/Graves"); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
178 |
tmpdir.setFilter(QDir::Files); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
179 |
Graves.append(tmpdir.entryList(QStringList("*.png")).replaceInStrings(QRegExp("^(.*)\\.png"), "\\1")); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
180 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
181 |
if(Graves.size()==0) |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
182 |
{ |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
183 |
//do some serious error handling |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
184 |
return "Error"; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
185 |
} |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
186 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
187 |
//pick a random grave |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
188 |
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
|
189 |
} |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
190 |
|
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
191 |
QString HWNamegen::GetRandomFort() |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
192 |
{ |
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
193 |
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
|
194 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
195 |
//list all available Forts |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
196 |
QDir tmpdir; |
5114
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
197 |
tmpdir.cd(datadir->absolutePath()); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
198 |
tmpdir.cd("Forts"); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
199 |
tmpdir.setFilter(QDir::Files); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
200 |
Forts.append(tmpdir.entryList(QStringList("*L.png")).replaceInStrings(QRegExp("^(.*)L\\.png"), "\\1")); |
a05081bc2769
Improved random name generation (now a random fort and random grave is choosen
Jonathan@Jonathan-PC.fritz.box
parents:
4976
diff
changeset
|
201 |
|
5115
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
202 |
if(Forts.size()==0) |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
203 |
{ |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
204 |
//do some serious error handling |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
205 |
return "Error"; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
206 |
} |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
207 |
|
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
208 |
//pick a random fort |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
209 |
return Forts[rand()%(Forts.size())]; |
276410cc1178
fix indentation and missing newline at end of file
sheepluva
parents:
5114
diff
changeset
|
210 |
} |