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