author | smxx |
Sat, 06 Mar 2010 01:09:14 +0000 | |
changeset 2943 | d61bee34402c |
parent 2915 | a02f276035e8 |
child 2948 | 3f21a9dc93d0 |
permissions | -rw-r--r-- |
1881 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2009 Andrey Korotaev <unC0Rr@gmail.com> |
|
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>() |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
26 |
<< QVariant("Default") // name 0 |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
27 |
<< QVariant(false) // fortsmode 1 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
28 |
<< QVariant(false) // team divide 2 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
29 |
<< QVariant(false) // solid land 3 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
30 |
<< QVariant(false) // border 4 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
31 |
<< QVariant(false) // low gravity 5 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
32 |
<< QVariant(false) // laser sight 6 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
33 |
<< QVariant(false) // invulnerable 7 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
34 |
<< QVariant(true) // add mines 8 |
2017 | 35 |
<< QVariant(false) // vampiric 9 |
36 |
<< QVariant(false) // karma 10 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
37 |
<< QVariant(false) // artillery 11 |
2703 | 38 |
<< QVariant(true) // random order 12 |
2726 | 39 |
<< QVariant(false) // king 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
40 |
<< QVariant(false) // place hog 14 |
2881 | 41 |
<< QVariant(false) // shared ammo 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
42 |
<< QVariant(false) //disable girders 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
43 |
<< QVariant(100) // damage modfier 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
44 |
<< QVariant(45) // turn time 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
45 |
<< QVariant(100) // init health 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
46 |
<< QVariant(15) // sudden death 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
47 |
<< QVariant(5) // case prob 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
48 |
<< QVariant(3) // mines time 22 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
49 |
<< QVariant(4) // landadds 23 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
50 |
<< QVariant(0) // mine dud pct 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
51 |
<< QVariant(2) // explosives 25 |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
52 |
; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
53 |
|
1897 | 54 |
AmmoSchemeModel::AmmoSchemeModel(QObject* parent, const QString & fileName) : |
55 |
QAbstractTableModel(parent), |
|
1974 | 56 |
numberOfDefaultSchemes(4), |
1940 | 57 |
fileConfig(fileName, QSettings::IniFormat) |
1881 | 58 |
{ |
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
59 |
QStringList predefSchemesNames; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
60 |
predefSchemesNames |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
61 |
<< "Default" |
1968 | 62 |
<< "Pro mode" |
1974 | 63 |
<< "Shoppa" |
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
64 |
<< "Basketball" |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
65 |
<< "Minefield"; |
2377 | 66 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
67 |
spNames = QStringList() |
1897 | 68 |
<< "name" // 0 |
69 |
<< "fortsmode" // 1 |
|
70 |
<< "divteams" // 2 |
|
71 |
<< "solidland" // 3 |
|
72 |
<< "border" // 4 |
|
73 |
<< "lowgrav" // 5 |
|
74 |
<< "laser" // 6 |
|
75 |
<< "invulnerability" // 7 |
|
76 |
<< "mines" // 8 |
|
2017 | 77 |
<< "vampiric" // 9 |
78 |
<< "karma" // 10 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
79 |
<< "artillery" // 11 |
2703 | 80 |
<< "randomorder" // 12 |
2726 | 81 |
<< "king" // 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
82 |
<< "placehog" // 14 |
2881 | 83 |
<< "sharedammo" // 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
84 |
<< "disablegirders" // 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
85 |
<< "damagefactor" // 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
86 |
<< "turntime" // 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
87 |
<< "health" // 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
88 |
<< "suddendeath" // 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
89 |
<< "caseprobability" // 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
90 |
<< "minestime" // 22 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
91 |
<< "landadds" // 23 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
92 |
<< "minedudpct" // 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
93 |
<< "explosives" // 25 |
1897 | 94 |
; |
95 |
||
96 |
QList<QVariant> proMode; |
|
97 |
proMode |
|
1968 | 98 |
<< predefSchemesNames[1] // name 0 |
1897 | 99 |
<< QVariant(false) // fortsmode 1 |
100 |
<< QVariant(false) // team divide 2 |
|
101 |
<< QVariant(false) // solid land 3 |
|
102 |
<< QVariant(false) // border 4 |
|
103 |
<< QVariant(false) // low gravity 5 |
|
104 |
<< QVariant(false) // laser sight 6 |
|
105 |
<< QVariant(false) // invulnerable 7 |
|
106 |
<< QVariant(false) // add mines 8 |
|
2017 | 107 |
<< QVariant(false) // vampiric 9 |
108 |
<< QVariant(false) // karma 10 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
109 |
<< QVariant(false) // artillery 11 |
2703 | 110 |
<< QVariant(true) // random order 12 |
2726 | 111 |
<< QVariant(false) // king 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
112 |
<< QVariant(false) // place hog 14 |
2881 | 113 |
<< QVariant(true) // shared ammo 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
114 |
<< QVariant(false) //disable girders 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
115 |
<< QVariant(100) // damage modfier 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
116 |
<< QVariant(15) // turn time 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
117 |
<< QVariant(100) // init health 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
118 |
<< QVariant(15) // sudden death 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
119 |
<< QVariant(0) // case prob 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
120 |
<< QVariant(3) // mines time 22 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
121 |
<< QVariant(4) // landadds 23 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
122 |
<< QVariant(0) // mine dud pct 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
123 |
<< QVariant(2) // explosives 25 |
1897 | 124 |
; |
125 |
||
1968 | 126 |
QList<QVariant> shoppa; |
127 |
shoppa |
|
128 |
<< predefSchemesNames[2] // name 0 |
|
129 |
<< QVariant(false) // fortsmode 1 |
|
130 |
<< QVariant(false) // team divide 2 |
|
131 |
<< QVariant(true) // solid land 3 |
|
132 |
<< QVariant(true) // border 4 |
|
133 |
<< QVariant(false) // low gravity 5 |
|
134 |
<< QVariant(false) // laser sight 6 |
|
135 |
<< QVariant(false) // invulnerable 7 |
|
136 |
<< QVariant(false) // add mines 8 |
|
2017 | 137 |
<< QVariant(false) // vampiric 9 |
138 |
<< QVariant(false) // karma 10 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
139 |
<< QVariant(false) // artillery 11 |
2703 | 140 |
<< QVariant(true) // random order 12 |
2726 | 141 |
<< QVariant(false) // king 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
142 |
<< QVariant(false) // place hog 14 |
2881 | 143 |
<< QVariant(true) // shared ammo 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
144 |
<< QVariant(true) //disable girders 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
145 |
<< QVariant(100) // damage modfier 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
146 |
<< QVariant(30) // turn time 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
147 |
<< QVariant(100) // init health 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
148 |
<< QVariant(50) // sudden death 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
149 |
<< QVariant(1) // case prob 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
150 |
<< QVariant(3) // mines time 22 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
151 |
<< QVariant(4) // landadds 23 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
152 |
<< QVariant(0) // mine dud pct 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
153 |
<< QVariant(0) // explosives 25 |
1974 | 154 |
; |
155 |
||
156 |
QList<QVariant> basketball; |
|
157 |
basketball |
|
158 |
<< predefSchemesNames[3] // name 0 |
|
159 |
<< QVariant(false) // fortsmode 1 |
|
160 |
<< QVariant(false) // team divide 2 |
|
161 |
<< QVariant(true) // solid land 3 |
|
162 |
<< QVariant(true) // border 4 |
|
163 |
<< QVariant(true) // low gravity 5 |
|
164 |
<< QVariant(false) // laser sight 6 |
|
165 |
<< QVariant(true) // invulnerable 7 |
|
166 |
<< QVariant(false) // add mines 8 |
|
2017 | 167 |
<< QVariant(false) // vampiric 9 |
168 |
<< QVariant(false) // karma 10 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
169 |
<< QVariant(false) // artillery 11 |
2703 | 170 |
<< QVariant(true) // random order 12 |
2726 | 171 |
<< QVariant(false) // king 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
172 |
<< QVariant(false) // place hog 14 |
2881 | 173 |
<< QVariant(true) // shared ammo 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
174 |
<< QVariant(true) //disable girders 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
175 |
<< QVariant(100) // damage modfier 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
176 |
<< QVariant(30) // turn time 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
177 |
<< QVariant(100) // init health 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
178 |
<< QVariant(15) // sudden death 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
179 |
<< QVariant(0) // case prob 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
180 |
<< QVariant(3) // mines time 22 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
181 |
<< QVariant(4) // landadds 23 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
182 |
<< QVariant(0) // mine dud pct 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
183 |
<< QVariant(0) // explosives 25 |
1968 | 184 |
; |
185 |
||
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
186 |
QList<QVariant> minefield; |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
187 |
minefield |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
188 |
<< predefSchemesNames[4] // name 0 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
189 |
<< QVariant(false) // fortsmode 1 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
190 |
<< QVariant(false) // team divide 2 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
191 |
<< QVariant(false) // solid land 3 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
192 |
<< QVariant(false) // border 4 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
193 |
<< QVariant(false) // low gravity 5 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
194 |
<< QVariant(false) // laser sight 6 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
195 |
<< QVariant(false) // invulnerable 7 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
196 |
<< QVariant(true) // add mines 8 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
197 |
<< QVariant(false) // vampiric 9 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
198 |
<< QVariant(false) // karma 10 |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
199 |
<< QVariant(false) // artillery 11 |
2703 | 200 |
<< QVariant(true) // random order 12 |
2726 | 201 |
<< QVariant(false) // king 13 |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2726
diff
changeset
|
202 |
<< QVariant(false) // place hog 14 |
2881 | 203 |
<< QVariant(true) // shared ammo 15 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
204 |
<< QVariant(true) //disable girders 16 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
205 |
<< QVariant(150) // damage modfier 17 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
206 |
<< QVariant(30) // turn time 18 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
207 |
<< QVariant(50) // init health 19 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
208 |
<< QVariant(15) // sudden death 20 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
209 |
<< QVariant(0) // case prob 21 |
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
210 |
<< QVariant(0) // mines time 22 |
2894 | 211 |
<< QVariant(80) // landadds 23 |
2891
e1f902eb0cfe
Formerly "Draw Girders" by MrMfS - now "Disable Girders" to allow template prefs to still exist
nemo
parents:
2882
diff
changeset
|
212 |
<< QVariant(0) // mine dud pct 24 |
2915
a02f276035e8
Add spinner for explosives, add dust on crate impact, crank up explosives a bit
nemo
parents:
2894
diff
changeset
|
213 |
<< QVariant(0) // explosives 25 |
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
214 |
; |
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
215 |
|
1884 | 216 |
schemes.append(defaultScheme); |
1897 | 217 |
schemes.append(proMode); |
1968 | 218 |
schemes.append(shoppa); |
1974 | 219 |
schemes.append(basketball); |
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2031
diff
changeset
|
220 |
schemes.append(minefield); |
1897 | 221 |
|
222 |
||
223 |
int size = fileConfig.beginReadArray("schemes"); |
|
224 |
for (int i = 0; i < size; ++i) { |
|
225 |
fileConfig.setArrayIndex(i); |
|
226 |
||
227 |
if (!predefSchemesNames.contains(fileConfig.value(spNames[0]).toString())) |
|
228 |
{ |
|
229 |
QList<QVariant> scheme; |
|
230 |
||
231 |
for (int k = 0; k < spNames.size(); ++k) |
|
232 |
scheme << fileConfig.value(spNames[k], defaultScheme[k]); |
|
233 |
||
234 |
schemes.append(scheme); |
|
235 |
} |
|
236 |
} |
|
237 |
fileConfig.endArray(); |
|
1881 | 238 |
} |
239 |
||
240 |
QVariant AmmoSchemeModel::headerData(int section, Qt::Orientation orientation, int role) const |
|
241 |
{ |
|
242 |
return QVariant(); |
|
243 |
} |
|
244 |
||
245 |
int AmmoSchemeModel::rowCount(const QModelIndex &parent) const |
|
246 |
{ |
|
247 |
if (parent.isValid()) |
|
248 |
return 0; |
|
249 |
else |
|
250 |
return schemes.size(); |
|
251 |
} |
|
252 |
||
253 |
int AmmoSchemeModel::columnCount(const QModelIndex & parent) const |
|
254 |
{ |
|
255 |
if (parent.isValid()) |
|
256 |
return 0; |
|
257 |
else |
|
1884 | 258 |
return defaultScheme.size(); |
1881 | 259 |
} |
260 |
||
261 |
Qt::ItemFlags AmmoSchemeModel::flags(const QModelIndex & index) const |
|
262 |
{ |
|
263 |
return |
|
264 |
Qt::ItemIsEnabled |
|
265 |
| Qt::ItemIsSelectable |
|
266 |
| Qt::ItemIsEditable; |
|
267 |
} |
|
268 |
||
269 |
bool AmmoSchemeModel::setData(const QModelIndex & index, const QVariant & value, int role) |
|
270 |
{ |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
271 |
if (!index.isValid() || index.row() < numberOfDefaultSchemes |
1884 | 272 |
|| index.row() >= schemes.size() |
273 |
|| index.column() >= defaultScheme.size() |
|
1885 | 274 |
|| role != Qt::EditRole) |
1884 | 275 |
return false; |
276 |
||
1890 | 277 |
schemes[index.row()][index.column()] = value; |
1885 | 278 |
|
1881 | 279 |
emit dataChanged(index, index); |
1884 | 280 |
return true; |
1881 | 281 |
} |
1884 | 282 |
|
283 |
bool AmmoSchemeModel::insertRows(int row, int count, const QModelIndex & parent) |
|
284 |
{ |
|
285 |
beginInsertRows(parent, row, row); |
|
286 |
||
1890 | 287 |
QList<QVariant> newScheme = defaultScheme; |
288 |
newScheme[0] = QVariant(tr("new")); |
|
2377 | 289 |
|
1889 | 290 |
schemes.insert(row, newScheme); |
1884 | 291 |
|
292 |
endInsertRows(); |
|
2377 | 293 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
294 |
return true; |
1884 | 295 |
} |
296 |
||
297 |
bool AmmoSchemeModel::removeRows(int row, int count, const QModelIndex & parent) |
|
298 |
{ |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
299 |
if(count != 1 |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
300 |
|| row < numberOfDefaultSchemes |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
301 |
|| row >= schemes.size()) |
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
302 |
return false; |
2377 | 303 |
|
1884 | 304 |
beginRemoveRows(parent, row, row); |
305 |
||
306 |
schemes.removeAt(row); |
|
307 |
||
308 |
endRemoveRows(); |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
309 |
|
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
310 |
return true; |
1884 | 311 |
} |
312 |
||
313 |
QVariant AmmoSchemeModel::data(const QModelIndex &index, int role) const |
|
314 |
{ |
|
315 |
if (!index.isValid() || index.row() < 0 |
|
316 |
|| index.row() >= schemes.size() |
|
317 |
|| index.column() >= defaultScheme.size() |
|
1889 | 318 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
319 |
) |
|
1884 | 320 |
return QVariant(); |
321 |
||
1890 | 322 |
return schemes[index.row()][index.column()]; |
1884 | 323 |
} |
1897 | 324 |
|
325 |
void AmmoSchemeModel::Save() |
|
326 |
{ |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
327 |
fileConfig.beginWriteArray("schemes", schemes.size()); |
2377 | 328 |
|
1897 | 329 |
for (int i = 0; i < schemes.size(); ++i) { |
330 |
fileConfig.setArrayIndex(i); |
|
331 |
||
332 |
QList<QVariant> scheme = schemes[i]; |
|
2377 | 333 |
|
1902
aeadb10c2d77
Add delete button and scheme selection combobox to scheme edit page
unc0rr
parents:
1899
diff
changeset
|
334 |
for (int k = 0; k < scheme.size(); ++k) |
1897 | 335 |
fileConfig.setValue(spNames[k], scheme[k]); |
336 |
} |
|
337 |
fileConfig.endArray(); |
|
338 |
} |
|
1899
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
339 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
340 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
341 |
NetAmmoSchemeModel::NetAmmoSchemeModel(QObject * parent) : |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
342 |
QAbstractTableModel(parent) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
343 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
344 |
netScheme = defaultScheme; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
345 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
346 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
347 |
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
|
348 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
349 |
return QVariant(); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
350 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
351 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
352 |
int NetAmmoSchemeModel::rowCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
353 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
354 |
if (parent.isValid()) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
355 |
return 0; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
356 |
else |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
357 |
return 1; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
358 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
359 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
360 |
int NetAmmoSchemeModel::columnCount(const QModelIndex & parent) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
361 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
362 |
if (parent.isValid()) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
363 |
return 0; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
364 |
else |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
365 |
return defaultScheme.size(); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
366 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
367 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
368 |
QVariant NetAmmoSchemeModel::data(const QModelIndex &index, int role) const |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
369 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
370 |
if (!index.isValid() || index.row() < 0 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
371 |
|| index.row() > 1 |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
372 |
|| index.column() >= defaultScheme.size() |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
373 |
|| (role != Qt::EditRole && role != Qt::DisplayRole) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
374 |
) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
375 |
return QVariant(); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
376 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
377 |
return netScheme[index.column()]; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
378 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
379 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
380 |
void NetAmmoSchemeModel::setNetSchemeConfig(QStringList & cfg) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
381 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
382 |
if(cfg.size() != netScheme.size()) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
383 |
{ |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
384 |
qWarning("Incorrect scheme cfg size"); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
385 |
return; |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
386 |
} |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
387 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
388 |
for(int i = 0; i < cfg.size(); ++i) |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
389 |
netScheme[i] = QVariant(cfg[i]); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
390 |
|
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
391 |
reset(); |
5763f46d7486
Sync schemes config over net should work now (untested)
unc0rr
parents:
1897
diff
changeset
|
392 |
} |