author | nemo |
Mon, 14 Nov 2011 13:14:32 -0500 | |
branch | 0.9.17 |
changeset 6372 | b392132a588c |
parent 6061 | 15b4b485a1c5 |
child 6616 | f77bb02b669f |
permissions | -rw-r--r-- |
1881 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
4976 | 3 |
* Copyright (c) 2005-2011 Andrey Korotaev <unC0Rr@gmail.com> |
1881 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
1885 | 19 |
#include <QDebug> |
1881 | 20 |
#include <QModelIndex> |
1897 | 21 |
|
1881 | 22 |
#include "ammoSchemeModel.h" |
1897 | 23 |
#include "hwconsts.h" |
1881 | 24 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
25 |
QList<QVariant> defaultScheme = QList<QVariant>() |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
26 |
<< QVariant("Default") // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
27 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
28 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
29 |
<< QVariant(false) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
30 |
<< QVariant(false) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
31 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
32 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
33 |
<< QVariant(false) // invulnerable 7 |
4099 | 34 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
35 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
36 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
37 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
38 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
39 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
40 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
41 |
<< QVariant(false) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
42 |
<< QVariant(false) // disable girders 16 |
3287 | 43 |
<< QVariant(false) // disable land objects 17 |
3743 | 44 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
45 |
<< QVariant(false) // inf. attack 19 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
46 |
<< QVariant(false) // reset weps 20 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
47 |
<< QVariant(false) // per hog ammo 21 |
4250 | 48 |
<< QVariant(false) // no wind 22 |
4303 | 49 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
50 |
<< QVariant(false) // tag team 24 |
5717 | 51 |
<< QVariant(false) // bottom border 25 |
52 |
<< QVariant(100) // damage modfier 26 |
|
53 |
<< QVariant(45) // turn time 27 |
|
54 |
<< QVariant(100) // init health 28 |
|
55 |
<< QVariant(15) // sudden death 29 |
|
56 |
<< QVariant(5) // case prob 30 |
|
57 |
<< QVariant(3) // mines time 31 |
|
58 |
<< QVariant(4) // mines number 32 |
|
59 |
<< QVariant(0) // mine dud pct 33 |
|
60 |
<< QVariant(2) // explosives 34 |
|
61 |
<< QVariant(35) // health case pct 35 |
|
62 |
<< QVariant(25) // health case amt 36 |
|
63 |
<< QVariant(47) // water rise amt 37 |
|
64 |
<< QVariant(5) // health dec amt 38 |
|
65 |
<< QVariant(100) // rope modfier 39 |
|
66 |
<< QVariant(100) // get away time 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
67 |
; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
68 |
|
1897 | 69 |
AmmoSchemeModel::AmmoSchemeModel(QObject* parent, const QString & fileName) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
70 |
QAbstractTableModel(parent), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
71 |
fileConfig(fileName, QSettings::IniFormat) |
1881 | 72 |
{ |
4232
3a7862405c36
tweak interface, there is no need to manually add new weapons and schemes to the filter list
koda
parents:
4231
diff
changeset
|
73 |
predefSchemesNames = QStringList() |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
74 |
<< "Default" |
3172 | 75 |
<< "Pro Mode" |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
76 |
<< "Shoppa" |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
77 |
<< "Clean Slate" |
3172 | 78 |
<< "Minefield" |
79 |
<< "Barrel Mayhem" |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
80 |
<< "Tunnel Hogs" |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
81 |
<< "Fort Mode" |
4231 | 82 |
<< "Timeless" |
83 |
<< "Thinking with Portals" |
|
84 |
<< "King Mode" |
|
85 |
; |
|
3172 | 86 |
|
87 |
numberOfDefaultSchemes = predefSchemesNames.size(); |
|
2377 | 88 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
89 |
spNames = QStringList() |
5180 | 90 |
<< "name" // 0 |
91 |
<< "fortsmode" // 1 |
|
92 |
<< "divteams" // 2 |
|
93 |
<< "solidland" // 3 |
|
94 |
<< "border" // 4 |
|
95 |
<< "lowgrav" // 5 |
|
96 |
<< "laser" // 6 |
|
97 |
<< "invulnerability" // 7 |
|
98 |
<< "resethealth" // 8 |
|
99 |
<< "vampiric" // 9 |
|
100 |
<< "karma" // 10 |
|
101 |
<< "artillery" // 11 |
|
102 |
<< "randomorder" // 12 |
|
103 |
<< "king" // 13 |
|
104 |
<< "placehog" // 14 |
|
105 |
<< "sharedammo" // 15 |
|
106 |
<< "disablegirders" // 16 |
|
107 |
<< "disablelandobjects" // 17 |
|
108 |
<< "aisurvival" // 18 |
|
109 |
<< "infattack" // 19 |
|
110 |
<< "resetweps" // 20 |
|
111 |
<< "perhogammo" // 21 |
|
112 |
<< "disablewind" // 22 |
|
113 |
<< "morewind" // 23 |
|
114 |
<< "tagteam" // 24 |
|
5717 | 115 |
<< "bottomborder" // 25 |
116 |
<< "damagefactor" // 26 |
|
117 |
<< "turntime" // 27 |
|
118 |
<< "health" // 28 |
|
119 |
<< "suddendeath" // 29 |
|
120 |
<< "caseprobability" // 30 |
|
121 |
<< "minestime" // 31 |
|
122 |
<< "minesnum" // 32 |
|
123 |
<< "minedudpct" // 33 |
|
124 |
<< "explosives" // 34 |
|
125 |
<< "healthprobability" // 35 |
|
126 |
<< "healthcaseamount" // 36 |
|
127 |
<< "waterrise" // 37 |
|
128 |
<< "healthdecrease" // 38 |
|
129 |
<< "ropepct" // 39 |
|
130 |
<< "getawaytime" // 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
131 |
; |
1897 | 132 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
133 |
QList<QVariant> proMode; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
134 |
proMode |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
135 |
<< predefSchemesNames[1] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
136 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
137 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
138 |
<< QVariant(false) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
139 |
<< QVariant(false) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
140 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
141 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
142 |
<< QVariant(false) // invulnerable 7 |
4099 | 143 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
144 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
145 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
146 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
147 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
148 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
149 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
150 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
151 |
<< QVariant(false) // disable girders 16 |
3287 | 152 |
<< QVariant(false) // disable land objects 17 |
3743 | 153 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
154 |
<< QVariant(false) // inf. attack 19 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
155 |
<< QVariant(false) // reset weps 20 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
156 |
<< QVariant(false) // per hog ammo 21 |
4250 | 157 |
<< QVariant(false) // no wind 22 |
4303 | 158 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
159 |
<< QVariant(false) // tag team 24 |
5717 | 160 |
<< QVariant(false) // bottom border 25 |
161 |
<< QVariant(100) // damage modfier 26 |
|
162 |
<< QVariant(15) // turn time 27 |
|
163 |
<< QVariant(100) // init health 28 |
|
164 |
<< QVariant(15) // sudden death 29 |
|
165 |
<< QVariant(0) // case prob 30 |
|
166 |
<< QVariant(3) // mines time 31 |
|
167 |
<< QVariant(0) // mines number 32 |
|
168 |
<< QVariant(0) // mine dud pct 33 |
|
169 |
<< QVariant(2) // explosives 34 |
|
170 |
<< QVariant(35) // health case pct 35 |
|
171 |
<< QVariant(25) // health case amt 36 |
|
172 |
<< QVariant(47) // water rise amt 37 |
|
173 |
<< QVariant(5) // health dec amt 38 |
|
174 |
<< QVariant(100) // rope modfier 39 |
|
175 |
<< QVariant(100) // get away time 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
176 |
; |
1897 | 177 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
178 |
QList<QVariant> shoppa; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
179 |
shoppa |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
180 |
<< predefSchemesNames[2] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
181 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
182 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
183 |
<< QVariant(true) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
184 |
<< QVariant(true) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
185 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
186 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
187 |
<< QVariant(false) // invulnerable 7 |
4099 | 188 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
189 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
190 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
191 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
192 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
193 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
194 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
195 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
196 |
<< QVariant(true) // disable girders 16 |
3287 | 197 |
<< QVariant(false) // disable land objects 17 |
3743 | 198 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
199 |
<< QVariant(false) // inf. attack 19 |
4820 | 200 |
<< QVariant(true) // reset weps 20 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
201 |
<< QVariant(false) // per hog ammo 21 |
4250 | 202 |
<< QVariant(false) // no wind 22 |
4303 | 203 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
204 |
<< QVariant(false) // tag team 24 |
5717 | 205 |
<< QVariant(false) // bottom border 25 |
206 |
<< QVariant(100) // damage modfier 26 |
|
207 |
<< QVariant(30) // turn time 27 |
|
208 |
<< QVariant(100) // init health 28 |
|
209 |
<< QVariant(50) // sudden death 29 |
|
210 |
<< QVariant(1) // case prob 30 |
|
211 |
<< QVariant(3) // mines time 31 |
|
212 |
<< QVariant(0) // mines number 32 |
|
213 |
<< QVariant(0) // mine dud pct 33 |
|
214 |
<< QVariant(0) // explosives 34 |
|
215 |
<< QVariant(0) // health case pct 35 |
|
216 |
<< QVariant(25) // health case amt 36 |
|
217 |
<< QVariant(47) // water rise amt 37 |
|
218 |
<< QVariant(5) // health dec amt 38 |
|
219 |
<< QVariant(100) // rope modfier 39 |
|
220 |
<< QVariant(100) // get away time 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
221 |
; |
1974 | 222 |
|
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
223 |
QList<QVariant> cleanslate; |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
224 |
cleanslate |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
225 |
<< predefSchemesNames[3] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
226 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
227 |
<< QVariant(false) // team divide 2 |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
228 |
<< QVariant(false) // solid land 3 |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
229 |
<< QVariant(false) // border 4 |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
230 |
<< QVariant(false) // low gravity 5 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
231 |
<< QVariant(false) // laser sight 6 |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
232 |
<< QVariant(false) // invulnerable 7 |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
233 |
<< QVariant(true) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
234 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
235 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
236 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
237 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
238 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
239 |
<< QVariant(false) // place hog 14 |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
240 |
<< QVariant(false) // shared ammo 15 |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
241 |
<< QVariant(false) // disable girders 16 |
3287 | 242 |
<< QVariant(false) // disable land objects 17 |
3743 | 243 |
<< QVariant(false) // AI survival 18 |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
244 |
<< QVariant(true) // inf. attack 19 |
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
245 |
<< QVariant(true) // reset weps 20 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
246 |
<< QVariant(false) // per hog ammo 21 |
4250 | 247 |
<< QVariant(false) // no wind 22 |
4303 | 248 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
249 |
<< QVariant(false) // tag team 24 |
5717 | 250 |
<< QVariant(false) // bottom border 25 |
251 |
<< QVariant(100) // damage modfier 26 |
|
252 |
<< QVariant(45) // turn time 27 |
|
253 |
<< QVariant(100) // init health 28 |
|
254 |
<< QVariant(15) // sudden death 29 |
|
255 |
<< QVariant(5) // case prob 30 |
|
256 |
<< QVariant(3) // mines time 31 |
|
257 |
<< QVariant(4) // mines number 32 |
|
258 |
<< QVariant(0) // mine dud pct 33 |
|
259 |
<< QVariant(2) // explosives 34 |
|
260 |
<< QVariant(35) // health case pct 35 |
|
261 |
<< QVariant(25) // health case amt 36 |
|
262 |
<< QVariant(47) // water rise amt 37 |
|
263 |
<< QVariant(5) // health dec amt 38 |
|
264 |
<< QVariant(100) // rope modfier 39 |
|
265 |
<< QVariant(100) // get away time 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
266 |
; |
1968 | 267 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
268 |
QList<QVariant> minefield; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
269 |
minefield |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
270 |
<< predefSchemesNames[4] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
271 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
272 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
273 |
<< QVariant(false) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
274 |
<< QVariant(false) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
275 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
276 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
277 |
<< QVariant(false) // invulnerable 7 |
4099 | 278 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
279 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
280 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
281 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
282 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
283 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
284 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
285 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
286 |
<< QVariant(true) // disable girders 16 |
3287 | 287 |
<< QVariant(false) // disable land objects 17 |
3743 | 288 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
289 |
<< QVariant(false) // inf. attack 19 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
290 |
<< QVariant(false) // reset weps 20 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
291 |
<< QVariant(false) // per hog ammo 21 |
4250 | 292 |
<< QVariant(false) // no wind 22 |
4303 | 293 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
294 |
<< QVariant(false) // tag team 24 |
5717 | 295 |
<< QVariant(false) // bottom border 25 |
296 |
<< QVariant(100) // damage modfier 26 |
|
297 |
<< QVariant(30) // turn time 27 |
|
298 |
<< QVariant(50) // init health 28 |
|
299 |
<< QVariant(15) // sudden death 29 |
|
300 |
<< QVariant(0) // case prob 30 |
|
301 |
<< QVariant(0) // mines time 31 |
|
302 |
<< QVariant(80) // mines number 32 |
|
303 |
<< QVariant(0) // mine dud pct 33 |
|
304 |
<< QVariant(0) // explosives 34 |
|
305 |
<< QVariant(35) // health case pct 35 |
|
306 |
<< QVariant(25) // health case amt 36 |
|
307 |
<< QVariant(47) // water rise amt 37 |
|
308 |
<< QVariant(5) // health dec amt 38 |
|
309 |
<< QVariant(100) // rope modfier 39 |
|
310 |
<< QVariant(100) // get away time 40 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
311 |
; |
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
312 |
|
3172 | 313 |
QList<QVariant> barrelmayhem; |
314 |
barrelmayhem |
|
315 |
<< predefSchemesNames[5] // name 0 |
|
316 |
<< QVariant(false) // fortsmode 1 |
|
317 |
<< QVariant(false) // team divide 2 |
|
318 |
<< QVariant(false) // solid land 3 |
|
319 |
<< QVariant(false) // border 4 |
|
320 |
<< QVariant(false) // low gravity 5 |
|
321 |
<< QVariant(false) // laser sight 6 |
|
322 |
<< QVariant(false) // invulnerable 7 |
|
4099 | 323 |
<< QVariant(false) // reset health 8 |
3172 | 324 |
<< QVariant(false) // vampiric 9 |
325 |
<< QVariant(false) // karma 10 |
|
326 |
<< QVariant(false) // artillery 11 |
|
327 |
<< QVariant(true) // random order 12 |
|
328 |
<< QVariant(false) // king 13 |
|
329 |
<< QVariant(false) // place hog 14 |
|
330 |
<< QVariant(true) // shared ammo 15 |
|
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
331 |
<< QVariant(false) // disable girders 16 |
3287 | 332 |
<< QVariant(false) // disable land objects 17 |
3743 | 333 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
334 |
<< QVariant(false) // inf. attack 19 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
335 |
<< QVariant(false) // reset weps 20 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
336 |
<< QVariant(false) // per hog ammo 21 |
4250 | 337 |
<< QVariant(false) // no wind 22 |
4303 | 338 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
339 |
<< QVariant(false) // tag team 24 |
5717 | 340 |
<< QVariant(false) // bottom border 25 |
341 |
<< QVariant(100) // damage modfier 26 |
|
342 |
<< QVariant(30) // turn time 27 |
|
343 |
<< QVariant(100) // init health 28 |
|
344 |
<< QVariant(15) // sudden death 29 |
|
345 |
<< QVariant(0) // case prob 30 |
|
346 |
<< QVariant(0) // mines time 31 |
|
347 |
<< QVariant(0) // mines number 32 |
|
348 |
<< QVariant(0) // mine dud pct 33 |
|
349 |
<< QVariant(80) // explosives 34 |
|
350 |
<< QVariant(35) // health case pct 35 |
|
351 |
<< QVariant(25) // health case amt 36 |
|
352 |
<< QVariant(47) // water rise amt 37 |
|
353 |
<< QVariant(5) // health dec amt 38 |
|
354 |
<< QVariant(100) // rope modfier 39 |
|
355 |
<< QVariant(100) // get away time 40 |
|
3172 | 356 |
; |
357 |
||
358 |
QList<QVariant> tunnelhogs; |
|
359 |
tunnelhogs |
|
360 |
<< predefSchemesNames[6] // name 0 |
|
361 |
<< QVariant(false) // fortsmode 1 |
|
362 |
<< QVariant(false) // team divide 2 |
|
363 |
<< QVariant(false) // solid land 3 |
|
364 |
<< QVariant(true) // border 4 |
|
365 |
<< QVariant(false) // low gravity 5 |
|
366 |
<< QVariant(false) // laser sight 6 |
|
367 |
<< QVariant(false) // invulnerable 7 |
|
4099 | 368 |
<< QVariant(false) // reset health 8 |
3172 | 369 |
<< QVariant(false) // vampiric 9 |
370 |
<< QVariant(false) // karma 10 |
|
371 |
<< QVariant(false) // artillery 11 |
|
372 |
<< QVariant(true) // random order 12 |
|
373 |
<< QVariant(false) // king 13 |
|
374 |
<< QVariant(false) // place hog 14 |
|
375 |
<< QVariant(true) // shared ammo 15 |
|
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
376 |
<< QVariant(true) // disable girders 16 |
3287 | 377 |
<< QVariant(true) // disable land objects 17 |
3743 | 378 |
<< QVariant(false) // AI survival 18 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
379 |
<< QVariant(false) // inf. attack 19 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
380 |
<< QVariant(false) // reset weps 20 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3743
diff
changeset
|
381 |
<< QVariant(false) // per hog ammo 21 |
4250 | 382 |
<< QVariant(false) // no wind 22 |
4303 | 383 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
384 |
<< QVariant(false) // tag team 24 |
5717 | 385 |
<< QVariant(false) // bottom border 25 |
386 |
<< QVariant(100) // damage modfier 26 |
|
387 |
<< QVariant(30) // turn time 27 |
|
388 |
<< QVariant(100) // init health 28 |
|
389 |
<< QVariant(15) // sudden death 29 |
|
390 |
<< QVariant(5) // case prob 30 |
|
391 |
<< QVariant(3) // mines time 31 |
|
392 |
<< QVariant(10) // mines number 32 |
|
393 |
<< QVariant(10) // mine dud pct 33 |
|
394 |
<< QVariant(10) // explosives 34 |
|
395 |
<< QVariant(35) // health case pct 35 |
|
396 |
<< QVariant(25) // health case amt 36 |
|
397 |
<< QVariant(47) // water rise amt 37 |
|
398 |
<< QVariant(5) // health dec amt 38 |
|
399 |
<< QVariant(100) // rope modfier 39 |
|
400 |
<< QVariant(100) // get away time 40 |
|
3172 | 401 |
; |
402 |
||
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
403 |
QList<QVariant> forts; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
404 |
forts |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
405 |
<< predefSchemesNames[7] // name 0 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
406 |
<< QVariant(true) // fortsmode 1 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
407 |
<< QVariant(true) // team divide 2 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
408 |
<< QVariant(false) // solid land 3 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
409 |
<< QVariant(false) // border 4 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
410 |
<< QVariant(true) // low gravity 5 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
411 |
<< QVariant(false) // laser sight 6 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
412 |
<< QVariant(false) // invulnerable 7 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
413 |
<< QVariant(false) // reset health 8 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
414 |
<< QVariant(false) // vampiric 9 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
415 |
<< QVariant(false) // karma 10 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
416 |
<< QVariant(false) // artillery 11 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
417 |
<< QVariant(true) // random order 12 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
418 |
<< QVariant(false) // king 13 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
419 |
<< QVariant(false) // place hog 14 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
420 |
<< QVariant(false) // shared ammo 15 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
421 |
<< QVariant(false) // disable girders 16 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
422 |
<< QVariant(false) // disable land objects 17 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
423 |
<< QVariant(false) // AI survival 18 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
424 |
<< QVariant(false) // inf. attack 19 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
425 |
<< QVariant(false) // reset weps 20 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
426 |
<< QVariant(false) // per hog ammo 21 |
4250 | 427 |
<< QVariant(false) // no wind 22 |
4303 | 428 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
429 |
<< QVariant(false) // tag team 24 |
5717 | 430 |
<< QVariant(false) // bottom border 25 |
431 |
<< QVariant(100) // damage modfier 26 |
|
432 |
<< QVariant(45) // turn time 27 |
|
433 |
<< QVariant(100) // init health 28 |
|
434 |
<< QVariant(15) // sudden death 29 |
|
435 |
<< QVariant(5) // case prob 30 |
|
436 |
<< QVariant(3) // mines time 31 |
|
437 |
<< QVariant(0) // mines number 32 |
|
438 |
<< QVariant(0) // mine dud pct 33 |
|
439 |
<< QVariant(0) // explosives 34 |
|
440 |
<< QVariant(35) // health case pct 35 |
|
441 |
<< QVariant(25) // health case amt 36 |
|
442 |
<< QVariant(47) // water rise amt 37 |
|
443 |
<< QVariant(5) // health dec amt 38 |
|
444 |
<< QVariant(100) // rope modfier 39 |
|
445 |
<< QVariant(100) // get away time 40 |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
446 |
; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
447 |
|
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
448 |
QList<QVariant> timeless; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
449 |
timeless |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
450 |
<< predefSchemesNames[8] // name 0 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
451 |
<< QVariant(false) // fortsmode 1 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
452 |
<< QVariant(false) // team divide 2 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
453 |
<< QVariant(false) // solid land 3 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
454 |
<< QVariant(false) // border 4 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
455 |
<< QVariant(false) // low gravity 5 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
456 |
<< QVariant(false) // laser sight 6 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
457 |
<< QVariant(false) // invulnerable 7 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
458 |
<< QVariant(false) // reset health 8 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
459 |
<< QVariant(false) // vampiric 9 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
460 |
<< QVariant(false) // karma 10 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
461 |
<< QVariant(false) // artillery 11 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
462 |
<< QVariant(true) // random order 12 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
463 |
<< QVariant(false) // king 13 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
464 |
<< QVariant(false) // place hog 14 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
465 |
<< QVariant(false) // shared ammo 15 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
466 |
<< QVariant(false) // disable girders 16 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
467 |
<< QVariant(false) // disable land objects 17 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
468 |
<< QVariant(false) // AI survival 18 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
469 |
<< QVariant(false) // inf. attack 19 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
470 |
<< QVariant(false) // reset weps 20 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
471 |
<< QVariant(true) // per hog ammo 21 |
4250 | 472 |
<< QVariant(false) // no wind 22 |
4303 | 473 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
474 |
<< QVariant(false) // tag team 24 |
5717 | 475 |
<< QVariant(false) // bottom border 25 |
476 |
<< QVariant(100) // damage modfier 26 |
|
477 |
<< QVariant(9999) // turn time 27 |
|
478 |
<< QVariant(100) // init health 28 |
|
479 |
<< QVariant(15) // sudden death 29 |
|
480 |
<< QVariant(5) // case prob 30 |
|
481 |
<< QVariant(3) // mines time 31 |
|
482 |
<< QVariant(5) // mines number 32 |
|
483 |
<< QVariant(10) // mine dud pct 33 |
|
484 |
<< QVariant(2) // explosives 34 |
|
485 |
<< QVariant(35) // health case pct 35 |
|
486 |
<< QVariant(30) // health case amt 36 |
|
487 |
<< QVariant(0) // water rise amt 37 |
|
488 |
<< QVariant(0) // health dec amt 38 |
|
489 |
<< QVariant(100) // rope modfier 39 |
|
490 |
<< QVariant(100) // get away time 40 |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
491 |
; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
492 |
|
4231 | 493 |
QList<QVariant> thinkingportals; |
494 |
thinkingportals |
|
495 |
<< predefSchemesNames[9] // name 0 |
|
496 |
<< QVariant(false) // fortsmode 1 |
|
497 |
<< QVariant(false) // team divide 2 |
|
498 |
<< QVariant(false) // solid land 3 |
|
499 |
<< QVariant(false) // border 4 |
|
500 |
<< QVariant(false) // low gravity 5 |
|
501 |
<< QVariant(false) // laser sight 6 |
|
502 |
<< QVariant(false) // invulnerable 7 |
|
503 |
<< QVariant(false) // reset health 8 |
|
504 |
<< QVariant(false) // vampiric 9 |
|
505 |
<< QVariant(false) // karma 10 |
|
506 |
<< QVariant(true) // artillery 11 |
|
507 |
<< QVariant(true) // random order 12 |
|
508 |
<< QVariant(false) // king 13 |
|
509 |
<< QVariant(false) // place hog 14 |
|
510 |
<< QVariant(false) // shared ammo 15 |
|
511 |
<< QVariant(false) // disable girders 16 |
|
512 |
<< QVariant(false) // disable land objects 17 |
|
513 |
<< QVariant(false) // AI survival 18 |
|
514 |
<< QVariant(false) // inf. attack 19 |
|
515 |
<< QVariant(false) // reset weps 20 |
|
516 |
<< QVariant(false) // per hog ammo 21 |
|
4250 | 517 |
<< QVariant(false) // no wind 22 |
4303 | 518 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
519 |
<< QVariant(false) // tag team 24 |
5717 | 520 |
<< QVariant(false) // bottom border 25 |
521 |
<< QVariant(100) // damage modfier 26 |
|
522 |
<< QVariant(45) // turn time 27 |
|
523 |
<< QVariant(100) // init health 28 |
|
524 |
<< QVariant(15) // sudden death 29 |
|
525 |
<< QVariant(2) // case prob 30 |
|
526 |
<< QVariant(3) // mines time 31 |
|
527 |
<< QVariant(5) // mines number 32 |
|
528 |
<< QVariant(0) // mine dud pct 33 |
|
529 |
<< QVariant(5) // explosives 34 |
|
530 |
<< QVariant(25) // health case pct 35 |
|
531 |
<< QVariant(25) // health case amt 36 |
|
532 |
<< QVariant(47) // water rise amt 37 |
|
533 |
<< QVariant(5) // health dec amt 38 |
|
534 |
<< QVariant(100) // rope modfier 39 |
|
535 |
<< QVariant(100) // get away time 40 |
|
4231 | 536 |
; |
537 |
||
538 |
QList<QVariant> kingmode; |
|
539 |
kingmode |
|
4232
3a7862405c36
tweak interface, there is no need to manually add new weapons and schemes to the filter list
koda
parents:
4231
diff
changeset
|
540 |
<< predefSchemesNames[10] // name 0 |
4231 | 541 |
<< QVariant(false) // fortsmode 1 |
542 |
<< QVariant(false) // team divide 2 |
|
543 |
<< QVariant(false) // solid land 3 |
|
544 |
<< QVariant(false) // border 4 |
|
545 |
<< QVariant(false) // low gravity 5 |
|
546 |
<< QVariant(false) // laser sight 6 |
|
547 |
<< QVariant(false) // invulnerable 7 |
|
548 |
<< QVariant(false) // reset health 8 |
|
549 |
<< QVariant(false) // vampiric 9 |
|
550 |
<< QVariant(false) // karma 10 |
|
551 |
<< QVariant(false) // artillery 11 |
|
552 |
<< QVariant(true) // random order 12 |
|
553 |
<< QVariant(true) // king 13 |
|
4449
796bbec1101c
Restore King mode. The worst of the changes was Place Hogs
nemo
parents:
4396
diff
changeset
|
554 |
<< QVariant(false) // place hog 14 |
796bbec1101c
Restore King mode. The worst of the changes was Place Hogs
nemo
parents:
4396
diff
changeset
|
555 |
<< QVariant(false) // shared ammo 15 |
4231 | 556 |
<< QVariant(false) // disable girders 16 |
557 |
<< QVariant(false) // disable land objects 17 |
|
558 |
<< QVariant(false) // AI survival 18 |
|
559 |
<< QVariant(false) // inf. attack 19 |
|
560 |
<< QVariant(false) // reset weps 20 |
|
561 |
<< QVariant(false) // per hog ammo 21 |
|
4250 | 562 |
<< QVariant(false) // no wind 22 |
4303 | 563 |
<< QVariant(false) // more wind 23 |
5016
9347d82a26cc
added game mode Tag Team, mostly untested, please test :)
Henek
parents:
4976
diff
changeset
|
564 |
<< QVariant(false) // tag team 24 |
5717 | 565 |
<< QVariant(false) // bottom border 25 |
566 |
<< QVariant(100) // damage modfier 26 |
|
567 |
<< QVariant(45) // turn time 27 |
|
568 |
<< QVariant(100) // init health 28 |
|
569 |
<< QVariant(15) // sudden death 29 |
|
570 |
<< QVariant(5) // case prob 30 |
|
571 |
<< QVariant(3) // mines time 31 |
|
572 |
<< QVariant(4) // mines number 32 |
|
573 |
<< QVariant(0) // mine dud pct 33 |
|
574 |
<< QVariant(2) // explosives 34 |
|
575 |
<< QVariant(35) // health case pct 35 |
|
576 |
<< QVariant(25) // health case amt 36 |
|
577 |
<< QVariant(47) // water rise amt 37 |
|
578 |
<< QVariant(5) // health dec amt 38 |
|
579 |
<< QVariant(100) // rope modfier 39 |
|
580 |
<< QVariant(100) // get away time 40 |
|
4231 | 581 |
; |
582 |
||
583 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
584 |
schemes.append(defaultScheme); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
585 |
schemes.append(proMode); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
586 |
schemes.append(shoppa); |
4130
f437909ac9d4
Replace the deprecated Basketball mode with Clean Slate mode which uses a few of the new scheme options
nemo
parents:
4100
diff
changeset
|
587 |
schemes.append(cleanslate); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
588 |
schemes.append(minefield); |
3172 | 589 |
schemes.append(barrelmayhem); |
590 |
schemes.append(tunnelhogs); |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
591 |
schemes.append(forts); |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
592 |
schemes.append(timeless); |
4231 | 593 |
schemes.append(thinkingportals); |
594 |
schemes.append(kingmode); |
|
1897 | 595 |
|
596 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
597 |
int size = fileConfig.beginReadArray("schemes"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
598 |
for (int i = 0; i < size; ++i) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
599 |
fileConfig.setArrayIndex(i); |
1897 | 600 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
601 |
if (!predefSchemesNames.contains(fileConfig.value(spNames[0]).toString())) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
602 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
603 |
QList<QVariant> scheme; |
1897 | 604 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
605 |
for (int k = 0; k < spNames.size(); ++k) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
606 |
scheme << fileConfig.value(spNames[k], defaultScheme[k]); |
1897 | 607 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
608 |
schemes.append(scheme); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
609 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
610 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
611 |
fileConfig.endArray(); |
1881 | 612 |
} |
613 |
||
614 |
QVariant AmmoSchemeModel::headerData(int section, Qt::Orientation orientation, int role) const |
|
615 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
616 |
Q_UNUSED(section); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
617 |
Q_UNUSED(orientation); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
618 |
Q_UNUSED(role); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
619 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
620 |
return QVariant(); |
1881 | 621 |
} |
622 |
||
623 |
int AmmoSchemeModel::rowCount(const QModelIndex &parent) const |
|
624 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
625 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
626 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
627 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
628 |
return schemes.size(); |
1881 | 629 |
} |
630 |
||
631 |
int AmmoSchemeModel::columnCount(const QModelIndex & parent) const |
|
632 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
633 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
634 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
635 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
636 |
return defaultScheme.size(); |
1881 | 637 |
} |
638 |
||
639 |
Qt::ItemFlags AmmoSchemeModel::flags(const QModelIndex & index) const |
|
640 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
641 |
Q_UNUSED(index); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
642 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
643 |
return |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
644 |
Qt::ItemIsEnabled |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
645 |
| Qt::ItemIsSelectable |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
646 |
| Qt::ItemIsEditable; |
1881 | 647 |
} |
648 |
||
649 |
bool AmmoSchemeModel::setData(const QModelIndex & index, const QVariant & value, int role) |
|
650 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
651 |
if (!index.isValid() || index.row() < numberOfDefaultSchemes |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
652 |
|| index.row() >= schemes.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
653 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
654 |
|| role != Qt::EditRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
655 |
return false; |
1884 | 656 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
657 |
schemes[index.row()][index.column()] = value; |
1885 | 658 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
659 |
emit dataChanged(index, index); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
660 |
return true; |
1881 | 661 |
} |
1884 | 662 |
|
663 |
bool AmmoSchemeModel::insertRows(int row, int count, const QModelIndex & parent) |
|
664 |
{ |
|
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
665 |
Q_UNUSED(count); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
666 |
|
4600
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
667 |
beginInsertRows(parent, schemes.size(), schemes.size()); |
1884 | 668 |
|
4600
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
669 |
if (row == -1) |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
670 |
{ |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
671 |
QList<QVariant> newScheme = defaultScheme; |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
672 |
newScheme[0] = QVariant(tr("new")); |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
673 |
schemes.insert(schemes.size(), newScheme); |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
674 |
} |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
675 |
else |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
676 |
{ |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
677 |
QList<QVariant> newScheme = schemes[row]; |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
678 |
newScheme[0] = QVariant(tr("copy of") + " " + newScheme[0].toString()); |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
679 |
schemes.insert(schemes.size(), newScheme); |
5a3b1dbdd4c9
added copying also to schemes and updated some translations
Henek
parents:
4560
diff
changeset
|
680 |
} |
1884 | 681 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
682 |
endInsertRows(); |
2377 | 683 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
684 |
return true; |
1884 | 685 |
} |
686 |
||
687 |
bool AmmoSchemeModel::removeRows(int row, int count, const QModelIndex & parent) |
|
688 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
689 |
if(count != 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
690 |
|| row < numberOfDefaultSchemes |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
691 |
|| row >= schemes.size()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
692 |
return false; |
2377 | 693 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
694 |
beginRemoveRows(parent, row, row); |
1884 | 695 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
696 |
schemes.removeAt(row); |
1884 | 697 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
698 |
endRemoveRows(); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
699 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
700 |
return true; |
1884 | 701 |
} |
702 |
||
703 |
QVariant AmmoSchemeModel::data(const QModelIndex &index, int role) const |
|
704 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
705 |
if (!index.isValid() || index.row() < 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
706 |
|| index.row() >= schemes.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
707 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
708 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
709 |
) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
710 |
return QVariant(); |
1884 | 711 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
712 |
return schemes[index.row()][index.column()]; |
1884 | 713 |
} |
1897 | 714 |
|
715 |
void AmmoSchemeModel::Save() |
|
716 |
{ |
|
3494 | 717 |
fileConfig.beginWriteArray("schemes", schemes.size() - numberOfDefaultSchemes); |
2377 | 718 |
|
3494 | 719 |
for (int i = 0; i < schemes.size() - numberOfDefaultSchemes; ++i) { |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
720 |
fileConfig.setArrayIndex(i); |
1897 | 721 |
|
3494 | 722 |
QList<QVariant> scheme = schemes[i + numberOfDefaultSchemes]; |
2377 | 723 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
724 |
for (int k = 0; k < scheme.size(); ++k) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
725 |
fileConfig.setValue(spNames[k], scheme[k]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
726 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
727 |
fileConfig.endArray(); |
1897 | 728 |
} |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
729 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
730 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
731 |
NetAmmoSchemeModel::NetAmmoSchemeModel(QObject * parent) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
732 |
QAbstractTableModel(parent) |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
733 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
734 |
netScheme = defaultScheme; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
735 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
736 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
737 |
QVariant NetAmmoSchemeModel::headerData(int section, Qt::Orientation orientation, int role) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
738 |
{ |
4560
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
739 |
Q_UNUSED(section); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
740 |
Q_UNUSED(orientation); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
741 |
Q_UNUSED(role); |
5d6c7f88db73
- Some work on drawMap widget and scene to allow undo, clear, save and load operations
unc0rr
parents:
4449
diff
changeset
|
742 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
743 |
return QVariant(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
744 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
745 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
746 |
int NetAmmoSchemeModel::rowCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
747 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
748 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
749 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
750 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
751 |
return 1; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
752 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
753 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
754 |
int NetAmmoSchemeModel::columnCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
755 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
756 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
757 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
758 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
759 |
return defaultScheme.size(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
760 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
761 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
762 |
QVariant NetAmmoSchemeModel::data(const QModelIndex &index, int role) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
763 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
764 |
if (!index.isValid() || index.row() < 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
765 |
|| index.row() > 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
766 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
767 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
768 |
) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
769 |
return QVariant(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
770 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
771 |
return netScheme[index.column()]; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
772 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
773 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
774 |
void NetAmmoSchemeModel::setNetSchemeConfig(QStringList & cfg) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
775 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
776 |
if(cfg.size() != netScheme.size()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
777 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
778 |
qWarning("Incorrect scheme cfg size"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
779 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
780 |
} |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
781 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
782 |
for(int i = 0; i < cfg.size(); ++i) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
783 |
netScheme[i] = QVariant(cfg[i]); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
784 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
785 |
reset(); |
5717 | 786 |
} |