author | unc0rr |
Sat, 12 Aug 2006 17:41:02 +0000 | |
changeset 109 | ab0340f580c2 |
parent 97 | e7c1df9cce2c |
child 116 | 00d3d6d2e699 |
permissions | -rw-r--r-- |
26 | 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 |
#include <QFile> |
|
35 |
#include <QTextStream> |
|
88 | 36 |
#include <QApplication> |
26 | 37 |
#include "team.h" |
38 |
#include "hwform.h" |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
39 |
#include "gameuiconfig.h" |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
40 |
#include "predefteams.h" |
87 | 41 |
#include "pages.h" |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
42 |
#include "hwconsts.h" |
26 | 43 |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
44 |
HWTeam::HWTeam(const QString & teamname, GameUIConfig * config) |
26 | 45 |
{ |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
46 |
this->config = config; |
26 | 47 |
TeamName = teamname; |
48 |
for (int i = 0; i < 8; i++) HHName[i].sprintf("hedgehog %d", i); |
|
49 |
Grave = "Simple"; |
|
50 |
Fort = "Barrelhouse"; |
|
51 |
for(int i = 0; i < BINDS_NUMBER; i++) |
|
52 |
{ |
|
53 |
binds[i].action = cbinds[i].action; |
|
54 |
binds[i].strbind = cbinds[i].strbind; |
|
55 |
} |
|
56 |
} |
|
57 |
||
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
58 |
HWTeam::HWTeam(quint8 num, GameUIConfig * config) |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
59 |
{ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
60 |
this->config = config; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
61 |
num %= PREDEFTEAMS_COUNT; |
88 | 62 |
TeamName = QApplication::translate("teams", pteams[num].TeamName); |
63 |
HHName[0] = QApplication::translate("teams", pteams[num].hh0name); |
|
64 |
HHName[1] = QApplication::translate("teams", pteams[num].hh1name); |
|
65 |
HHName[2] = QApplication::translate("teams", pteams[num].hh2name); |
|
66 |
HHName[3] = QApplication::translate("teams", pteams[num].hh3name); |
|
67 |
HHName[4] = QApplication::translate("teams", pteams[num].hh4name); |
|
68 |
HHName[5] = QApplication::translate("teams", pteams[num].hh5name); |
|
69 |
HHName[6] = QApplication::translate("teams", pteams[num].hh6name); |
|
70 |
HHName[7] = QApplication::translate("teams", pteams[num].hh7name); |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
71 |
Grave = pteams[num].Grave; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
72 |
Fort = pteams[num].Fort; |
87 | 73 |
for(int i = 0; i < BINDS_NUMBER; i++) |
74 |
{ |
|
75 |
binds[i].action = cbinds[i].action; |
|
76 |
binds[i].strbind = cbinds[i].strbind; |
|
77 |
} |
|
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
78 |
} |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
79 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
80 |
|
26 | 81 |
bool HWTeam::LoadFromFile() |
82 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
83 |
QFile cfgfile(cfgdir->absolutePath() + "/" + TeamName + ".cfg"); |
26 | 84 |
if (!cfgfile.open(QIODevice::ReadOnly)) return false; |
85 |
QTextStream stream(&cfgfile); |
|
86 |
stream.setCodec("UTF-8"); |
|
87 |
QString str; |
|
88 |
QString action; |
|
89 |
||
90 |
while (!stream.atEnd()) |
|
91 |
{ |
|
92 |
str = stream.readLine(); |
|
93 |
if (str.startsWith(";")) continue; |
|
94 |
if (str.startsWith("name team ")) |
|
95 |
{ |
|
96 |
str.remove(0, 10); |
|
97 |
TeamName = str; |
|
98 |
} else |
|
99 |
if (str.startsWith("name hh")) |
|
100 |
{ |
|
101 |
str.remove(0, 7); |
|
102 |
long i = str.left(1).toLong(); |
|
103 |
if ((i < 0) || (i > 7)) continue; |
|
104 |
str.remove(0, 2); |
|
105 |
HHName[i] = str; |
|
106 |
} else |
|
107 |
if (str.startsWith("grave ")) |
|
108 |
{ |
|
109 |
str.remove(0, 6); |
|
110 |
Grave = str; |
|
111 |
} else |
|
112 |
if (str.startsWith("fort ")) |
|
113 |
{ |
|
114 |
str.remove(0, 5); |
|
115 |
Fort = str; |
|
116 |
} else |
|
117 |
if (str.startsWith("bind ")) |
|
118 |
{ |
|
119 |
str.remove(0, 5); |
|
120 |
action = str.section(' ', 1); |
|
121 |
str = str.section(' ', 0, 0); |
|
122 |
str.truncate(15); |
|
123 |
for (int i = 0; i < BINDS_NUMBER; i++) |
|
124 |
if (action == binds[i].action) |
|
125 |
{ |
|
126 |
binds[i].strbind = str; |
|
127 |
break; |
|
128 |
} |
|
129 |
} |
|
130 |
} |
|
131 |
cfgfile.close(); |
|
132 |
return true; |
|
133 |
} |
|
134 |
||
135 |
bool HWTeam::SaveToFile() |
|
136 |
{ |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
88
diff
changeset
|
137 |
QFile cfgfile(cfgdir->absolutePath() + "/" + TeamName + ".cfg"); |
26 | 138 |
if (!cfgfile.open(QIODevice::WriteOnly)) return false; |
139 |
QTextStream stream(&cfgfile); |
|
140 |
stream.setCodec("UTF-8"); |
|
141 |
stream << "; Generated by Hedgewars, do not modify" << endl; |
|
142 |
stream << "name team " << TeamName << endl; |
|
143 |
for (int i = 0; i < 8; i++) |
|
144 |
stream << "name hh" << i << " " << HHName[i] << endl; |
|
145 |
stream << "grave " << Grave << endl; |
|
146 |
stream << "fort " << Fort << endl; |
|
147 |
for(int i = 0; i < BINDS_NUMBER; i++) |
|
148 |
{ |
|
149 |
stream << "bind " << binds[i].strbind << " " << binds[i].action << endl; |
|
150 |
} |
|
151 |
cfgfile.close(); |
|
152 |
return true; |
|
153 |
} |
|
154 |
||
155 |
void HWTeam::SetToPage(HWForm * hwform) |
|
156 |
{ |
|
87 | 157 |
hwform->ui.pageEditTeam->TeamNameEdit->setText(TeamName); |
26 | 158 |
for(int i = 0; i < 8; i++) |
159 |
{ |
|
87 | 160 |
hwform->ui.pageEditTeam->HHNameEdit[i]->setText(HHName[i]); |
26 | 161 |
} |
87 | 162 |
hwform->ui.pageEditTeam->CBGrave->setCurrentIndex(hwform->ui.pageEditTeam->CBGrave->findText(Grave)); |
163 |
hwform->ui.pageEditTeam->CBGrave_activated(Grave); |
|
26 | 164 |
|
87 | 165 |
hwform->ui.pageEditTeam->CBFort->setCurrentIndex(hwform->ui.pageEditTeam->CBFort->findText(Fort)); |
166 |
hwform->ui.pageEditTeam->CBFort_activated(Fort); |
|
26 | 167 |
|
168 |
for(int i = 0; i < BINDS_NUMBER; i++) |
|
169 |
{ |
|
87 | 170 |
hwform->ui.pageEditTeam->CBBind[i]->setCurrentIndex(hwform->ui.pageEditTeam->CBBind[i]->findText(binds[i].strbind)); |
26 | 171 |
} |
172 |
} |
|
173 |
||
174 |
void HWTeam::GetFromPage(HWForm * hwform) |
|
175 |
{ |
|
87 | 176 |
TeamName = hwform->ui.pageEditTeam->TeamNameEdit->text(); |
26 | 177 |
for(int i = 0; i < 8; i++) |
178 |
{ |
|
87 | 179 |
HHName[i] = hwform->ui.pageEditTeam->HHNameEdit[i]->text(); |
26 | 180 |
} |
181 |
||
87 | 182 |
Grave = hwform->ui.pageEditTeam->CBGrave->currentText(); |
183 |
Fort = hwform->ui.pageEditTeam->CBFort->currentText(); |
|
26 | 184 |
for(int i = 0; i < 8; i++) |
185 |
{ |
|
87 | 186 |
binds[i].strbind = hwform->ui.pageEditTeam->CBBind[i]->currentText(); |
26 | 187 |
} |
188 |
} |
|
189 |
||
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
190 |
QByteArray HWTeam::IPCTeamInfo() const |
26 | 191 |
{ |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
192 |
QByteArray buf; |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
193 |
#define ADD(a) { \ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
194 |
QByteArray strmsg = a.toUtf8(); \ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
195 |
quint8 sz = strmsg.size(); \ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
196 |
buf.append(QByteArray((char *)&sz, 1)); \ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
197 |
buf.append(strmsg); \ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
198 |
} |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
199 |
|
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
200 |
ADD(QString("ename team " + TeamName)); |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
201 |
for (int i = 0; i < 8; i++) |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
202 |
ADD(QString("ename hh%1 ").arg(i).append(HHName[i])); |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
203 |
ADD(QString("egrave " + Grave)); |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
204 |
ADD(QString("efort " + Fort)); |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
205 |
for(int i = 0; i < BINDS_NUMBER; i++) |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
206 |
{ |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
207 |
ADD(QString("ebind " + binds[i].strbind + " " + binds[i].action)); |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
208 |
} |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
209 |
#undef ADD |
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
210 |
return buf; |
26 | 211 |
} |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
26
diff
changeset
|
212 |