author | koda |
Wed, 24 Nov 2010 23:35:41 +0100 | |
changeset 4354 | c4e1820fa792 |
parent 4303 | 9057d4d85830 |
child 4396 | 3cfd2e15464a |
permissions | -rw-r--r-- |
1881 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3172
diff
changeset
|
3 |
* Copyright (c) 2010 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 |
50 |
<< QVariant(100) // damage modfier 24 |
|
51 |
<< QVariant(45) // turn time 25 |
|
52 |
<< QVariant(100) // init health 26 |
|
53 |
<< QVariant(15) // sudden death 27 |
|
54 |
<< QVariant(5) // case prob 28 |
|
55 |
<< QVariant(3) // mines time 29 |
|
56 |
<< QVariant(4) // mines number 30 |
|
57 |
<< QVariant(0) // mine dud pct 31 |
|
58 |
<< QVariant(2) // explosives 32 |
|
59 |
<< QVariant(35) // health case pct 33 |
|
60 |
<< QVariant(25) // health case amt 34 |
|
61 |
<< QVariant(47) // water rise amt 35 |
|
62 |
<< QVariant(5) // health dec amt 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
63 |
; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
64 |
|
1897 | 65 |
AmmoSchemeModel::AmmoSchemeModel(QObject* parent, const QString & fileName) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
66 |
QAbstractTableModel(parent), |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
67 |
fileConfig(fileName, QSettings::IniFormat) |
1881 | 68 |
{ |
4232
3a7862405c36
tweak interface, there is no need to manually add new weapons and schemes to the filter list
koda
parents:
4231
diff
changeset
|
69 |
predefSchemesNames = QStringList() |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
70 |
<< "Default" |
3172 | 71 |
<< "Pro Mode" |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
72 |
<< "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
|
73 |
<< "Clean Slate" |
3172 | 74 |
<< "Minefield" |
75 |
<< "Barrel Mayhem" |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
76 |
<< "Tunnel Hogs" |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
77 |
<< "Fort Mode" |
4231 | 78 |
<< "Timeless" |
79 |
<< "Thinking with Portals" |
|
80 |
<< "King Mode" |
|
81 |
; |
|
3172 | 82 |
|
83 |
numberOfDefaultSchemes = predefSchemesNames.size(); |
|
2377 | 84 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
85 |
spNames = QStringList() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
86 |
<< "name" // 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
87 |
<< "fortsmode" // 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
88 |
<< "divteams" // 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
89 |
<< "solidland" // 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
90 |
<< "border" // 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
91 |
<< "lowgrav" // 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
92 |
<< "laser" // 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
93 |
<< "invulnerability" // 7 |
4099 | 94 |
<< "resethealth" // 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
95 |
<< "vampiric" // 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
96 |
<< "karma" // 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
97 |
<< "artillery" // 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
98 |
<< "randomorder" // 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
99 |
<< "king" // 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
100 |
<< "placehog" // 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
101 |
<< "sharedammo" // 15 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
102 |
<< "disablegirders" // 16 |
3287 | 103 |
<< "disablelandobjects" // 17 |
3743 | 104 |
<< "aisurvival" // 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
|
105 |
<< "infattack" // 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
|
106 |
<< "resetweps" // 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
|
107 |
<< "perhogammo" // 21 |
4250 | 108 |
<< "disablewind" // 22 |
4303 | 109 |
<< "morewind" // 23 |
110 |
<< "damagefactor" // 24 |
|
111 |
<< "turntime" // 25 |
|
112 |
<< "health" // 26 |
|
113 |
<< "suddendeath" // 27 |
|
114 |
<< "caseprobability" // 28 |
|
115 |
<< "minestime" // 29 |
|
116 |
<< "minesnum" // 30 |
|
117 |
<< "minedudpct" // 31 |
|
118 |
<< "explosives" // 32 |
|
119 |
<< "healthprobability" // 33 |
|
120 |
<< "healthcaseamount" // 34 |
|
121 |
<< "waterrise" // 35 |
|
122 |
<< "healthdecrease" // 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
123 |
; |
1897 | 124 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
125 |
QList<QVariant> proMode; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
126 |
proMode |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
127 |
<< predefSchemesNames[1] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
128 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
129 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
130 |
<< QVariant(false) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
131 |
<< QVariant(false) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
132 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
133 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
134 |
<< QVariant(false) // invulnerable 7 |
4099 | 135 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
136 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
137 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
138 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
139 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
140 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
141 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
142 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
143 |
<< QVariant(false) // disable girders 16 |
3287 | 144 |
<< QVariant(false) // disable land objects 17 |
3743 | 145 |
<< 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
|
146 |
<< 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
|
147 |
<< 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
|
148 |
<< QVariant(false) // per hog ammo 21 |
4250 | 149 |
<< QVariant(false) // no wind 22 |
4303 | 150 |
<< QVariant(false) // more wind 23 |
151 |
<< QVariant(100) // damage modfier 24 |
|
152 |
<< QVariant(15) // turn time 25 |
|
153 |
<< QVariant(100) // init health 26 |
|
154 |
<< QVariant(15) // sudden death 27 |
|
155 |
<< QVariant(0) // case prob 28 |
|
156 |
<< QVariant(3) // mines time 29 |
|
157 |
<< QVariant(0) // mines number 30 |
|
158 |
<< QVariant(0) // mine dud pct 31 |
|
159 |
<< QVariant(2) // explosives 32 |
|
160 |
<< QVariant(35) // health case pct 33 |
|
161 |
<< QVariant(25) // health case amt 34 |
|
162 |
<< QVariant(47) // water rise amt 35 |
|
163 |
<< QVariant(5) // health dec amt 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
164 |
; |
1897 | 165 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
166 |
QList<QVariant> shoppa; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
167 |
shoppa |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
168 |
<< predefSchemesNames[2] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
169 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
170 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
171 |
<< QVariant(true) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
172 |
<< QVariant(true) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
173 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
174 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
175 |
<< QVariant(false) // invulnerable 7 |
4099 | 176 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
177 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
178 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
179 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
180 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
181 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
182 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
183 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
184 |
<< QVariant(true) // disable girders 16 |
3287 | 185 |
<< QVariant(false) // disable land objects 17 |
3743 | 186 |
<< 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
|
187 |
<< 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
|
188 |
<< 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
|
189 |
<< QVariant(false) // per hog ammo 21 |
4250 | 190 |
<< QVariant(false) // no wind 22 |
4303 | 191 |
<< QVariant(false) // more wind 23 |
192 |
<< QVariant(100) // damage modfier 24 |
|
193 |
<< QVariant(30) // turn time 25 |
|
194 |
<< QVariant(100) // init health 26 |
|
195 |
<< QVariant(50) // sudden death 27 |
|
196 |
<< QVariant(1) // case prob 28 |
|
197 |
<< QVariant(3) // mines time 29 |
|
198 |
<< QVariant(0) // mines number 30 |
|
199 |
<< QVariant(0) // mine dud pct 31 |
|
200 |
<< QVariant(0) // explosives 32 |
|
201 |
<< QVariant(0) // health case pct 33 |
|
202 |
<< QVariant(25) // health case amt 34 |
|
203 |
<< QVariant(47) // water rise amt 35 |
|
204 |
<< QVariant(5) // health dec amt 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
205 |
; |
1974 | 206 |
|
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
|
207 |
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
|
208 |
cleanslate |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
209 |
<< predefSchemesNames[3] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
210 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
211 |
<< 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
|
212 |
<< 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
|
213 |
<< 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
|
214 |
<< QVariant(false) // low gravity 5 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
215 |
<< 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
|
216 |
<< 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
|
217 |
<< QVariant(true) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
218 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
219 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
220 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
221 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
222 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
223 |
<< 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
|
224 |
<< 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
|
225 |
<< QVariant(false) // disable girders 16 |
3287 | 226 |
<< QVariant(false) // disable land objects 17 |
3743 | 227 |
<< 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
|
228 |
<< 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
|
229 |
<< 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
|
230 |
<< QVariant(false) // per hog ammo 21 |
4250 | 231 |
<< QVariant(false) // no wind 22 |
4303 | 232 |
<< QVariant(false) // more wind 23 |
233 |
<< QVariant(100) // damage modfier 24 |
|
234 |
<< QVariant(45) // turn time 25 |
|
235 |
<< QVariant(100) // init health 26 |
|
236 |
<< QVariant(15) // sudden death 27 |
|
237 |
<< QVariant(5) // case prob 28 |
|
238 |
<< QVariant(3) // mines time 29 |
|
239 |
<< QVariant(4) // mines number 30 |
|
240 |
<< QVariant(0) // mine dud pct 31 |
|
241 |
<< QVariant(2) // explosives 32 |
|
242 |
<< QVariant(35) // health case pct 33 |
|
243 |
<< QVariant(25) // health case amt 34 |
|
244 |
<< QVariant(47) // water rise amt 35 |
|
245 |
<< QVariant(5) // health dec amt 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
246 |
; |
1968 | 247 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
248 |
QList<QVariant> minefield; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
249 |
minefield |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
250 |
<< predefSchemesNames[4] // name 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
251 |
<< QVariant(false) // fortsmode 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
252 |
<< QVariant(false) // team divide 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
253 |
<< QVariant(false) // solid land 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
254 |
<< QVariant(false) // border 4 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
255 |
<< QVariant(false) // low gravity 5 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
256 |
<< QVariant(false) // laser sight 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
257 |
<< QVariant(false) // invulnerable 7 |
4099 | 258 |
<< QVariant(false) // reset health 8 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
259 |
<< QVariant(false) // vampiric 9 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
260 |
<< QVariant(false) // karma 10 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
261 |
<< QVariant(false) // artillery 11 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
262 |
<< QVariant(true) // random order 12 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
263 |
<< QVariant(false) // king 13 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
264 |
<< QVariant(false) // place hog 14 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
265 |
<< QVariant(true) // shared ammo 15 |
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
266 |
<< QVariant(true) // disable girders 16 |
3287 | 267 |
<< QVariant(false) // disable land objects 17 |
3743 | 268 |
<< 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
|
269 |
<< 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
|
270 |
<< 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
|
271 |
<< QVariant(false) // per hog ammo 21 |
4250 | 272 |
<< QVariant(false) // no wind 22 |
4303 | 273 |
<< QVariant(false) // more wind 23 |
274 |
<< QVariant(150) // damage modfier 24 |
|
275 |
<< QVariant(30) // turn time 25 |
|
276 |
<< QVariant(50) // init health 26 |
|
277 |
<< QVariant(15) // sudden death 27 |
|
278 |
<< QVariant(0) // case prob 28 |
|
279 |
<< QVariant(0) // mines time 29 |
|
280 |
<< QVariant(80) // mines number 30 |
|
281 |
<< QVariant(0) // mine dud pct 31 |
|
282 |
<< QVariant(0) // explosives 32 |
|
283 |
<< QVariant(35) // health case pct 33 |
|
284 |
<< QVariant(25) // health case amt 34 |
|
285 |
<< QVariant(47) // water rise amt 35 |
|
286 |
<< QVariant(5) // health dec amt 36 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
287 |
; |
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
288 |
|
3172 | 289 |
QList<QVariant> barrelmayhem; |
290 |
barrelmayhem |
|
291 |
<< predefSchemesNames[5] // name 0 |
|
292 |
<< QVariant(false) // fortsmode 1 |
|
293 |
<< QVariant(false) // team divide 2 |
|
294 |
<< QVariant(false) // solid land 3 |
|
295 |
<< QVariant(false) // border 4 |
|
296 |
<< QVariant(false) // low gravity 5 |
|
297 |
<< QVariant(false) // laser sight 6 |
|
298 |
<< QVariant(false) // invulnerable 7 |
|
4099 | 299 |
<< QVariant(false) // reset health 8 |
3172 | 300 |
<< QVariant(false) // vampiric 9 |
301 |
<< QVariant(false) // karma 10 |
|
302 |
<< QVariant(false) // artillery 11 |
|
303 |
<< QVariant(true) // random order 12 |
|
304 |
<< QVariant(false) // king 13 |
|
305 |
<< QVariant(false) // place hog 14 |
|
306 |
<< QVariant(true) // shared ammo 15 |
|
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
307 |
<< QVariant(false) // disable girders 16 |
3287 | 308 |
<< QVariant(false) // disable land objects 17 |
3743 | 309 |
<< 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
|
310 |
<< 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
|
311 |
<< 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
|
312 |
<< QVariant(false) // per hog ammo 21 |
4250 | 313 |
<< QVariant(false) // no wind 22 |
4303 | 314 |
<< QVariant(false) // more wind 23 |
315 |
<< QVariant(100) // damage modfier 24 |
|
316 |
<< QVariant(30) // turn time 25 |
|
317 |
<< QVariant(100) // init health 26 |
|
318 |
<< QVariant(15) // sudden death 27 |
|
319 |
<< QVariant(0) // case prob 28 |
|
320 |
<< QVariant(0) // mines time 29 |
|
321 |
<< QVariant(0) // mines number 30 |
|
322 |
<< QVariant(0) // mine dud pct 31 |
|
323 |
<< QVariant(80) // explosives 32 |
|
324 |
<< QVariant(35) // health case pct 33 |
|
325 |
<< QVariant(25) // health case amt 34 |
|
326 |
<< QVariant(47) // water rise amt 35 |
|
327 |
<< QVariant(5) // health dec amt 36 |
|
3172 | 328 |
; |
329 |
||
330 |
QList<QVariant> tunnelhogs; |
|
331 |
tunnelhogs |
|
332 |
<< predefSchemesNames[6] // name 0 |
|
333 |
<< QVariant(false) // fortsmode 1 |
|
334 |
<< QVariant(false) // team divide 2 |
|
335 |
<< QVariant(false) // solid land 3 |
|
336 |
<< QVariant(true) // border 4 |
|
337 |
<< QVariant(false) // low gravity 5 |
|
338 |
<< QVariant(false) // laser sight 6 |
|
339 |
<< QVariant(false) // invulnerable 7 |
|
4099 | 340 |
<< QVariant(false) // reset health 8 |
3172 | 341 |
<< QVariant(false) // vampiric 9 |
342 |
<< QVariant(false) // karma 10 |
|
343 |
<< QVariant(false) // artillery 11 |
|
344 |
<< QVariant(true) // random order 12 |
|
345 |
<< QVariant(false) // king 13 |
|
346 |
<< QVariant(false) // place hog 14 |
|
347 |
<< QVariant(true) // shared ammo 15 |
|
4003
ca0600ab38bf
disable gfMines and update variable names (landadds -> minesnum, cLandAdditions -> cLandMines)
koda
parents:
3943
diff
changeset
|
348 |
<< QVariant(true) // disable girders 16 |
3287 | 349 |
<< QVariant(true) // disable land objects 17 |
3743 | 350 |
<< 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
|
351 |
<< 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
|
352 |
<< 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
|
353 |
<< QVariant(false) // per hog ammo 21 |
4250 | 354 |
<< QVariant(false) // no wind 22 |
4303 | 355 |
<< QVariant(false) // more wind 23 |
356 |
<< QVariant(100) // damage modfier 24 |
|
357 |
<< QVariant(30) // turn time 25 |
|
358 |
<< QVariant(100) // init health 26 |
|
359 |
<< QVariant(15) // sudden death 27 |
|
360 |
<< QVariant(5) // case prob 28 |
|
361 |
<< QVariant(3) // mines time 29 |
|
362 |
<< QVariant(10) // mines number 30 |
|
363 |
<< QVariant(10) // mine dud pct 31 |
|
364 |
<< QVariant(10) // explosives 32 |
|
365 |
<< QVariant(35) // health case pct 33 |
|
366 |
<< QVariant(25) // health case amt 34 |
|
367 |
<< QVariant(47) // water rise amt 35 |
|
368 |
<< QVariant(5) // health dec amt 36 |
|
3172 | 369 |
; |
370 |
||
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
371 |
QList<QVariant> forts; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
372 |
forts |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
373 |
<< predefSchemesNames[7] // name 0 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
374 |
<< QVariant(true) // fortsmode 1 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
375 |
<< QVariant(true) // team divide 2 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
376 |
<< QVariant(false) // solid land 3 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
377 |
<< QVariant(false) // border 4 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
378 |
<< QVariant(true) // low gravity 5 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
379 |
<< QVariant(false) // laser sight 6 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
380 |
<< QVariant(false) // invulnerable 7 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
381 |
<< QVariant(false) // reset health 8 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
382 |
<< QVariant(false) // vampiric 9 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
383 |
<< QVariant(false) // karma 10 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
384 |
<< QVariant(false) // artillery 11 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
385 |
<< QVariant(true) // random order 12 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
386 |
<< QVariant(false) // king 13 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
387 |
<< QVariant(false) // place hog 14 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
388 |
<< QVariant(false) // shared ammo 15 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
389 |
<< QVariant(false) // disable girders 16 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
390 |
<< QVariant(false) // disable land objects 17 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
391 |
<< QVariant(false) // AI survival 18 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
392 |
<< QVariant(false) // inf. attack 19 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
393 |
<< QVariant(false) // reset weps 20 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
394 |
<< QVariant(false) // per hog ammo 21 |
4250 | 395 |
<< QVariant(false) // no wind 22 |
4303 | 396 |
<< QVariant(false) // more wind 23 |
397 |
<< QVariant(100) // damage modfier 24 |
|
398 |
<< QVariant(45) // turn time 25 |
|
399 |
<< QVariant(100) // init health 26 |
|
400 |
<< QVariant(15) // sudden death 27 |
|
401 |
<< QVariant(5) // case prob 28 |
|
402 |
<< QVariant(3) // mines time 29 |
|
403 |
<< QVariant(0) // mines number 30 |
|
404 |
<< QVariant(0) // mine dud pct 31 |
|
405 |
<< QVariant(0) // explosives 32 |
|
406 |
<< QVariant(35) // health case pct 33 |
|
407 |
<< QVariant(25) // health case amt 34 |
|
408 |
<< QVariant(47) // water rise amt 35 |
|
409 |
<< QVariant(5) // health dec amt 36 |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
410 |
; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
411 |
|
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
412 |
QList<QVariant> timeless; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
413 |
timeless |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
414 |
<< predefSchemesNames[8] // name 0 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
415 |
<< QVariant(false) // fortsmode 1 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
416 |
<< QVariant(false) // team divide 2 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
417 |
<< QVariant(false) // solid land 3 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
418 |
<< QVariant(false) // border 4 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
419 |
<< QVariant(false) // low gravity 5 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
420 |
<< QVariant(false) // laser sight 6 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
421 |
<< QVariant(false) // invulnerable 7 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
422 |
<< QVariant(false) // reset health 8 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
423 |
<< QVariant(false) // vampiric 9 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
424 |
<< QVariant(false) // karma 10 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
425 |
<< QVariant(false) // artillery 11 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
426 |
<< QVariant(true) // random order 12 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
427 |
<< QVariant(false) // king 13 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
428 |
<< QVariant(false) // place hog 14 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
429 |
<< QVariant(false) // shared ammo 15 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
430 |
<< QVariant(false) // disable girders 16 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
431 |
<< QVariant(false) // disable land objects 17 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
432 |
<< QVariant(false) // AI survival 18 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
433 |
<< QVariant(false) // inf. attack 19 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
434 |
<< QVariant(false) // reset weps 20 |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
435 |
<< QVariant(true) // per hog ammo 21 |
4250 | 436 |
<< QVariant(false) // no wind 22 |
4303 | 437 |
<< QVariant(false) // more wind 23 |
438 |
<< QVariant(100) // damage modfier 24 |
|
439 |
<< QVariant(9999) // turn time 25 |
|
440 |
<< QVariant(100) // init health 26 |
|
441 |
<< QVariant(15) // sudden death 27 |
|
442 |
<< QVariant(5) // case prob 28 |
|
443 |
<< QVariant(3) // mines time 29 |
|
444 |
<< QVariant(5) // mines number 30 |
|
445 |
<< QVariant(10) // mine dud pct 31 |
|
446 |
<< QVariant(2) // explosives 32 |
|
447 |
<< QVariant(35) // health case pct 33 |
|
448 |
<< QVariant(30) // health case amt 34 |
|
449 |
<< QVariant(0) // water rise amt 35 |
|
450 |
<< QVariant(0) // health dec amt 36 |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
451 |
; |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
452 |
|
4231 | 453 |
QList<QVariant> thinkingportals; |
454 |
thinkingportals |
|
455 |
<< predefSchemesNames[9] // name 0 |
|
456 |
<< QVariant(false) // fortsmode 1 |
|
457 |
<< QVariant(false) // team divide 2 |
|
458 |
<< QVariant(false) // solid land 3 |
|
459 |
<< QVariant(false) // border 4 |
|
460 |
<< QVariant(false) // low gravity 5 |
|
461 |
<< QVariant(false) // laser sight 6 |
|
462 |
<< QVariant(false) // invulnerable 7 |
|
463 |
<< QVariant(false) // reset health 8 |
|
464 |
<< QVariant(false) // vampiric 9 |
|
465 |
<< QVariant(false) // karma 10 |
|
466 |
<< QVariant(true) // artillery 11 |
|
467 |
<< QVariant(true) // random order 12 |
|
468 |
<< QVariant(false) // king 13 |
|
469 |
<< QVariant(false) // place hog 14 |
|
470 |
<< QVariant(false) // shared ammo 15 |
|
471 |
<< QVariant(false) // disable girders 16 |
|
472 |
<< QVariant(false) // disable land objects 17 |
|
473 |
<< QVariant(false) // AI survival 18 |
|
474 |
<< QVariant(false) // inf. attack 19 |
|
475 |
<< QVariant(false) // reset weps 20 |
|
476 |
<< QVariant(false) // per hog ammo 21 |
|
4250 | 477 |
<< QVariant(false) // no wind 22 |
4303 | 478 |
<< QVariant(false) // more wind 23 |
479 |
<< QVariant(100) // damage modfier 24 |
|
480 |
<< QVariant(45) // turn time 25 |
|
481 |
<< QVariant(100) // init health 26 |
|
482 |
<< QVariant(15) // sudden death 27 |
|
483 |
<< QVariant(2) // case prob 28 |
|
484 |
<< QVariant(3) // mines time 29 |
|
485 |
<< QVariant(5) // mines number 30 |
|
486 |
<< QVariant(0) // mine dud pct 31 |
|
487 |
<< QVariant(5) // explosives 32 |
|
488 |
<< QVariant(25) // health case pct 33 |
|
489 |
<< QVariant(25) // health case amt 34 |
|
490 |
<< QVariant(47) // water rise amt 35 |
|
491 |
<< QVariant(5) // health dec amt 36 |
|
4231 | 492 |
; |
493 |
||
494 |
QList<QVariant> kingmode; |
|
495 |
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
|
496 |
<< predefSchemesNames[10] // name 0 |
4231 | 497 |
<< QVariant(false) // fortsmode 1 |
498 |
<< QVariant(false) // team divide 2 |
|
499 |
<< QVariant(false) // solid land 3 |
|
500 |
<< QVariant(false) // border 4 |
|
501 |
<< QVariant(false) // low gravity 5 |
|
502 |
<< QVariant(false) // laser sight 6 |
|
503 |
<< QVariant(false) // invulnerable 7 |
|
504 |
<< QVariant(false) // reset health 8 |
|
505 |
<< QVariant(false) // vampiric 9 |
|
506 |
<< QVariant(false) // karma 10 |
|
507 |
<< QVariant(false) // artillery 11 |
|
508 |
<< QVariant(true) // random order 12 |
|
509 |
<< QVariant(true) // king 13 |
|
510 |
<< QVariant(true) // place hog 14 |
|
511 |
<< QVariant(true) // shared ammo 15 |
|
512 |
<< QVariant(false) // disable girders 16 |
|
513 |
<< QVariant(false) // disable land objects 17 |
|
514 |
<< QVariant(false) // AI survival 18 |
|
515 |
<< QVariant(false) // inf. attack 19 |
|
516 |
<< QVariant(false) // reset weps 20 |
|
517 |
<< QVariant(false) // per hog ammo 21 |
|
4250 | 518 |
<< QVariant(false) // no wind 22 |
4303 | 519 |
<< QVariant(false) // more wind 23 |
520 |
<< QVariant(100) // damage modfier 24 |
|
521 |
<< QVariant(45) // turn time 25 |
|
522 |
<< QVariant(100) // init health 26 |
|
523 |
<< QVariant(15) // sudden death 27 |
|
524 |
<< QVariant(5) // case prob 28 |
|
525 |
<< QVariant(3) // mines time 29 |
|
526 |
<< QVariant(3) // mines number 30 |
|
527 |
<< QVariant(20) // mine dud pct 31 |
|
528 |
<< QVariant(3) // explosives 32 |
|
529 |
<< QVariant(35) // health case pct 33 |
|
530 |
<< QVariant(30) // health case amt 34 |
|
531 |
<< QVariant(30) // water rise amt 35 |
|
532 |
<< QVariant(5) // health dec amt 36 |
|
4231 | 533 |
; |
534 |
||
535 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
536 |
schemes.append(defaultScheme); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
537 |
schemes.append(proMode); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
538 |
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
|
539 |
schemes.append(cleanslate); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
540 |
schemes.append(minefield); |
3172 | 541 |
schemes.append(barrelmayhem); |
542 |
schemes.append(tunnelhogs); |
|
4151
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
543 |
schemes.append(forts); |
08b95ec1bfdf
add Timeless and Fort game modes, tweaks to other modes
koda
parents:
4143
diff
changeset
|
544 |
schemes.append(timeless); |
4231 | 545 |
schemes.append(thinkingportals); |
546 |
schemes.append(kingmode); |
|
1897 | 547 |
|
548 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
549 |
int size = fileConfig.beginReadArray("schemes"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
550 |
for (int i = 0; i < size; ++i) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
551 |
fileConfig.setArrayIndex(i); |
1897 | 552 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
553 |
if (!predefSchemesNames.contains(fileConfig.value(spNames[0]).toString())) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
554 |
{ |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
555 |
QList<QVariant> scheme; |
1897 | 556 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
557 |
for (int k = 0; k < spNames.size(); ++k) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
558 |
scheme << fileConfig.value(spNames[k], defaultScheme[k]); |
1897 | 559 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
560 |
schemes.append(scheme); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
561 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
562 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
563 |
fileConfig.endArray(); |
1881 | 564 |
} |
565 |
||
566 |
QVariant AmmoSchemeModel::headerData(int section, Qt::Orientation orientation, int role) const |
|
567 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
568 |
return QVariant(); |
1881 | 569 |
} |
570 |
||
571 |
int AmmoSchemeModel::rowCount(const QModelIndex &parent) const |
|
572 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
573 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
574 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
575 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
576 |
return schemes.size(); |
1881 | 577 |
} |
578 |
||
579 |
int AmmoSchemeModel::columnCount(const QModelIndex & parent) const |
|
580 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
581 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
582 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
583 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
584 |
return defaultScheme.size(); |
1881 | 585 |
} |
586 |
||
587 |
Qt::ItemFlags AmmoSchemeModel::flags(const QModelIndex & index) const |
|
588 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
589 |
return |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
590 |
Qt::ItemIsEnabled |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
591 |
| Qt::ItemIsSelectable |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
592 |
| Qt::ItemIsEditable; |
1881 | 593 |
} |
594 |
||
595 |
bool AmmoSchemeModel::setData(const QModelIndex & index, const QVariant & value, int role) |
|
596 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
597 |
if (!index.isValid() || index.row() < numberOfDefaultSchemes |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
598 |
|| index.row() >= schemes.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
599 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
600 |
|| role != Qt::EditRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
601 |
return false; |
1884 | 602 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
603 |
schemes[index.row()][index.column()] = value; |
1885 | 604 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
605 |
emit dataChanged(index, index); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
606 |
return true; |
1881 | 607 |
} |
1884 | 608 |
|
609 |
bool AmmoSchemeModel::insertRows(int row, int count, const QModelIndex & parent) |
|
610 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
611 |
beginInsertRows(parent, row, row); |
1884 | 612 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
613 |
QList<QVariant> newScheme = defaultScheme; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
614 |
newScheme[0] = QVariant(tr("new")); |
2377 | 615 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
616 |
schemes.insert(row, newScheme); |
1884 | 617 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
618 |
endInsertRows(); |
2377 | 619 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
620 |
return true; |
1884 | 621 |
} |
622 |
||
623 |
bool AmmoSchemeModel::removeRows(int row, int count, const QModelIndex & parent) |
|
624 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
625 |
if(count != 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
626 |
|| row < numberOfDefaultSchemes |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
627 |
|| row >= schemes.size()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
628 |
return false; |
2377 | 629 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
630 |
beginRemoveRows(parent, row, row); |
1884 | 631 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
632 |
schemes.removeAt(row); |
1884 | 633 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
634 |
endRemoveRows(); |
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
635 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
636 |
return true; |
1884 | 637 |
} |
638 |
||
639 |
QVariant AmmoSchemeModel::data(const QModelIndex &index, int role) const |
|
640 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
641 |
if (!index.isValid() || index.row() < 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
642 |
|| index.row() >= schemes.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
643 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
644 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
645 |
) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
646 |
return QVariant(); |
1884 | 647 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
648 |
return schemes[index.row()][index.column()]; |
1884 | 649 |
} |
1897 | 650 |
|
651 |
void AmmoSchemeModel::Save() |
|
652 |
{ |
|
3494 | 653 |
fileConfig.beginWriteArray("schemes", schemes.size() - numberOfDefaultSchemes); |
2377 | 654 |
|
3494 | 655 |
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
|
656 |
fileConfig.setArrayIndex(i); |
1897 | 657 |
|
3494 | 658 |
QList<QVariant> scheme = schemes[i + numberOfDefaultSchemes]; |
2377 | 659 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
660 |
for (int k = 0; k < scheme.size(); ++k) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
661 |
fileConfig.setValue(spNames[k], scheme[k]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
662 |
} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
663 |
fileConfig.endArray(); |
1897 | 664 |
} |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
665 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
666 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
667 |
NetAmmoSchemeModel::NetAmmoSchemeModel(QObject * parent) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
668 |
QAbstractTableModel(parent) |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
669 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
670 |
netScheme = defaultScheme; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
671 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
672 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
673 |
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
|
674 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
675 |
return QVariant(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
676 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
677 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
678 |
int NetAmmoSchemeModel::rowCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
679 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
680 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
681 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
682 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
683 |
return 1; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
684 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
685 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
686 |
int NetAmmoSchemeModel::columnCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
687 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
688 |
if (parent.isValid()) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
689 |
return 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
690 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
691 |
return defaultScheme.size(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
692 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
693 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
694 |
QVariant NetAmmoSchemeModel::data(const QModelIndex &index, int role) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
695 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
696 |
if (!index.isValid() || index.row() < 0 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
697 |
|| index.row() > 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
698 |
|| index.column() >= defaultScheme.size() |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
699 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
700 |
) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
701 |
return QVariant(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
702 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
703 |
return netScheme[index.column()]; |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
704 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
705 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
706 |
void NetAmmoSchemeModel::setNetSchemeConfig(QStringList & cfg) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
707 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
708 |
if(cfg.size() != netScheme.size()) |
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 |
qWarning("Incorrect scheme cfg size"); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
711 |
return; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
712 |
} |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
713 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
714 |
for(int i = 0; i < cfg.size(); ++i) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
715 |
netScheme[i] = QVariant(cfg[i]); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
716 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2915
diff
changeset
|
717 |
reset(); |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
718 |
} |