author | alfadur |
Fri, 20 Jul 2018 22:14:20 +0300 | |
changeset 13528 | c8b626b0a3ad |
parent 13320 | b024cf25bde1 |
child 13555 | 43b72629d453 |
permissions | -rw-r--r-- |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2006-2008 Igor Ulyanov <iulyanov@gmail.com> |
11046 | 4 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
5 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
6 |
* This program is free software; you can redistribute it and/or modify |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
7 |
* it under the terms of the GNU General Public License as published by |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
8 |
* the Free Software Foundation; version 2 of the License |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
9 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
10 |
* This program is distributed in the hope that it will be useful, |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
13 |
* GNU General Public License for more details. |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
14 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
16 |
* along with this program; if not, write to the Free Software |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
18 |
*/ |
1509 | 19 |
|
624 | 20 |
#include "selectWeapon.h" |
629 | 21 |
#include "weaponItem.h" |
681 | 22 |
#include "hwconsts.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
23 |
|
12922 | 24 |
#include <QDebug> |
624 | 25 |
#include <QPushButton> |
26 |
#include <QGridLayout> |
|
629 | 27 |
#include <QHBoxLayout> |
28 |
#include <QLabel> |
|
630 | 29 |
#include <QBitmap> |
694 | 30 |
#include <QLineEdit> |
31 |
#include <QSettings> |
|
724 | 32 |
#include <QMessageBox> |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
33 |
#include <QTabWidget> |
2467 | 34 |
#include <math.h> |
624 | 35 |
|
629 | 36 |
QImage getAmmoImage(int num) |
37 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
38 |
static QImage ammo(":Ammos.png"); |
5112
4e2ebd8ac298
avoided some ambiguous function calls
Jonathan@Jonathan-PC.fritz.box
parents:
5051
diff
changeset
|
39 |
int x = num/(ammo.height()/32); |
2471
1cfc9f897616
properly do offsets into mult-column ammo image (forgot y)
nemo
parents:
2467
diff
changeset
|
40 |
int y = (num-((ammo.height()/32)*x))*32; |
1cfc9f897616
properly do offsets into mult-column ammo image (forgot y)
nemo
parents:
2467
diff
changeset
|
41 |
x*=32; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
42 |
return ammo.copy(x, y, 32, 32); |
629 | 43 |
} |
44 |
||
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
45 |
SelWeaponItem::SelWeaponItem(bool allowInfinite, int iconNum, int wNum, QImage image, QImage imagegrey, QWidget* parent) : |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
46 |
QWidget(parent) |
629 | 47 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
48 |
QHBoxLayout* hbLayout = new QHBoxLayout(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
49 |
hbLayout->setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
50 |
hbLayout->setMargin(1); |
2377 | 51 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
52 |
QLabel* lbl = new QLabel(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
53 |
lbl->setPixmap(QPixmap::fromImage(getAmmoImage(iconNum))); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
54 |
lbl->setMaximumWidth(30); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
55 |
lbl->setGeometry(0, 0, 30, 30); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
56 |
hbLayout->addWidget(lbl); |
639 | 57 |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
58 |
item = new WeaponItem(image, imagegrey, this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
59 |
item->setItemsNum(wNum); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
60 |
item->setInfinityState(allowInfinite); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
61 |
hbLayout->addWidget(item); |
639 | 62 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
63 |
hbLayout->setStretchFactor(lbl, 1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
64 |
hbLayout->setStretchFactor(item, 99); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
65 |
hbLayout->setAlignment(lbl, Qt::AlignLeft | Qt::AlignVCenter); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
66 |
hbLayout->setAlignment(item, Qt::AlignLeft | Qt::AlignVCenter); |
629 | 67 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
68 |
|
683 | 69 |
void SelWeaponItem::setItemsNum(const unsigned char num) |
70 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
71 |
item->setItemsNum(num); |
683 | 72 |
} |
73 |
||
681 | 74 |
unsigned char SelWeaponItem::getItemsNum() const |
75 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
76 |
return item->getItemsNum(); |
681 | 77 |
} |
78 |
||
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
79 |
void SelWeaponItem::setEnabled(bool value) |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
80 |
{ |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
81 |
item->setEnabled(value); |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
82 |
} |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
83 |
|
683 | 84 |
SelWeaponWidget::SelWeaponWidget(int numItems, QWidget* parent) : |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
85 |
QFrame(parent), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
86 |
m_numItems(numItems) |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
87 |
{ |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
88 |
wconf = new QMap<QString, QString>(); |
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
89 |
for(int i = 0; i < cDefaultAmmos.size(); ++i) |
13315 | 90 |
{ |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
91 |
wconf->insert(cDefaultAmmos[i].first, cDefaultAmmos[i].second); |
13315 | 92 |
} |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
93 |
|
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
94 |
if (!QDir(cfgdir->absolutePath() + "/Schemes").exists()) { |
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
95 |
QDir().mkdir(cfgdir->absolutePath() + "/Schemes"); |
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
96 |
} |
12923 | 97 |
if (!QDir(cfgdir->absolutePath() + "/Schemes/Ammo").exists()) { |
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
98 |
qDebug("No /Schemes/Ammo directory found. Trying to import weapon schemes from weapons.ini."); |
12923 | 99 |
QDir().mkdir(cfgdir->absolutePath() + "/Schemes/Ammo"); |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
100 |
|
12923 | 101 |
QSettings old_wconf(cfgdir->absolutePath() + "/weapons.ini", QSettings::IniFormat); |
1004
4cbd91296df7
Don't let updated hedgewars version to make errors due to old weapons.ini
unc0rr
parents:
883
diff
changeset
|
102 |
|
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
103 |
QStringList defaultAmmos; |
13315 | 104 |
for(int i = 0; i < cDefaultAmmos.size(); ++i) |
105 |
{ |
|
106 |
defaultAmmos.append(cDefaultAmmos[i].first); |
|
107 |
} |
|
12922 | 108 |
|
12923 | 109 |
QStringList keys = old_wconf.allKeys(); |
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
110 |
int imported = 0; |
12922 | 111 |
for(int i = 0; i < keys.size(); i++) |
112 |
{ |
|
12923 | 113 |
if (!defaultAmmos.contains(keys[i])) { |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
114 |
wconf->insert(keys[i], fixWeaponSet(old_wconf.value(keys[i]).toString())); |
12923 | 115 |
QFile file(cfgdir->absolutePath() + "/Schemes/Ammo/" + keys[i] + ".hwa"); |
116 |
if (file.open(QIODevice::WriteOnly)) { |
|
117 |
QTextStream stream( &file ); |
|
118 |
stream << old_wconf.value(keys[i]).toString() << endl; |
|
13196
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
119 |
file.close(); |
12923 | 120 |
} |
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
121 |
imported++; |
12922 | 122 |
} |
123 |
} |
|
13195
7d9462d49d4c
Fix bad import of old ammo schemes, improve debug output when importing schemes from old .ini files
Wuzzy <Wuzzy2@mail.ru>
parents:
12923
diff
changeset
|
124 |
qDebug("%d weapon scheme(s) imported.", imported); |
13315 | 125 |
} else { |
13320
b024cf25bde1
Use QDir::Files to read ammo schemes
Wuzzy <Wuzzy2@mail.ru>
parents:
13315
diff
changeset
|
126 |
QStringList schemes = QDir(cfgdir->absolutePath() + "/Schemes/Ammo").entryList(QDir::Files); |
12922 | 127 |
|
128 |
for(int i = 0; i < schemes.size(); i++) |
|
129 |
{ |
|
12923 | 130 |
QFile file(cfgdir->absolutePath() + "/Schemes/Ammo/" + schemes[i]); |
12922 | 131 |
QString config; |
132 |
if (file.open(QIODevice::ReadOnly)) { |
|
133 |
QTextStream stream( &file ); |
|
134 |
stream >> config; |
|
13196
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
135 |
file.close(); |
12922 | 136 |
} |
137 |
||
13196
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
138 |
// Chop off file name suffix |
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
139 |
QString schemeName = schemes[i]; |
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
140 |
if (schemeName.endsWith(".hwa", Qt::CaseInsensitive)) { |
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
141 |
schemeName.chop(4); |
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
142 |
} |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
143 |
wconf->insert(schemeName, fixWeaponSet(config)); |
12922 | 144 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
145 |
} |
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
146 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
147 |
QString currentState = *cDefaultAmmoStore; |
683 | 148 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
149 |
QTabWidget * tbw = new QTabWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
150 |
QWidget * page1 = new QWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
151 |
p1Layout = new QGridLayout(page1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
152 |
p1Layout->setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
153 |
p1Layout->setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
154 |
QWidget * page2 = new QWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
155 |
p2Layout = new QGridLayout(page2); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
156 |
p2Layout->setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
157 |
p2Layout->setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
158 |
QWidget * page3 = new QWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
159 |
p3Layout = new QGridLayout(page3); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
160 |
p3Layout->setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
161 |
p3Layout->setMargin(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
162 |
QWidget * page4 = new QWidget(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
163 |
p4Layout = new QGridLayout(page4); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
164 |
p4Layout->setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
165 |
p4Layout->setMargin(1); |
2377 | 166 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
167 |
tbw->addTab(page1, tr("Weapon set")); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
168 |
tbw->addTab(page2, tr("Probabilities")); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
169 |
tbw->addTab(page4, tr("Ammo in boxes")); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
170 |
tbw->addTab(page3, tr("Delays")); |
2377 | 171 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
172 |
QGridLayout * pageLayout = new QGridLayout(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
173 |
pageLayout->addWidget(tbw); |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
174 |
|
629 | 175 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
176 |
int j = -1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
177 |
int i = 0, k = 0; |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
178 |
for(; i < m_numItems; ++i) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
179 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
180 |
if (i == 6) continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
181 |
if (k % 4 == 0) ++j; |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
182 |
SelWeaponItem * swi = new SelWeaponItem(true, i, currentState[i].digitValue(), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
183 |
weaponItems[i].append(swi); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
184 |
p1Layout->addWidget(swi, j, k % 4); |
2377 | 185 |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
186 |
SelWeaponItem * pwi = new SelWeaponItem(false, i, currentState[numItems + i].digitValue(), QImage(":/res/ammopicbox.png"), QImage(":/res/ammopicboxgrey.png"), this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
187 |
weaponItems[i].append(pwi); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
188 |
p2Layout->addWidget(pwi, j, k % 4); |
3697 | 189 |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
190 |
SelWeaponItem * dwi = new SelWeaponItem(false, i, currentState[numItems*2 + i].digitValue(), QImage(":/res/ammopicdelay.png"), QImage(":/res/ammopicdelaygrey.png"), this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
191 |
weaponItems[i].append(dwi); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
192 |
p3Layout->addWidget(dwi, j, k % 4); |
3697 | 193 |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
194 |
SelWeaponItem * awi = new SelWeaponItem(false, i, currentState[numItems*3 + i].digitValue(), QImage(":/res/ammopic.png"), QImage(":/res/ammopicgrey.png"), this); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
195 |
weaponItems[i].append(awi); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
196 |
p4Layout->addWidget(awi, j, k % 4); |
2377 | 197 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
198 |
++k; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
199 |
} |
694 | 200 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
201 |
//pLayout->setRowStretch(5, 100); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
202 |
m_name = new QLineEdit(this); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
203 |
pageLayout->addWidget(m_name, i, 0, 1, 5); |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
204 |
} |
681 | 205 |
|
694 | 206 |
void SelWeaponWidget::setWeapons(const QString& ammo) |
683 | 207 |
{ |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
208 |
bool enable = true; |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
209 |
for(int i = 0; i < cDefaultAmmos.size(); i++) |
13315 | 210 |
{ |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
211 |
if (!cDefaultAmmos[i].first.compare(m_name->text())) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
212 |
{ |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
213 |
enable = false; |
13315 | 214 |
break; |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
215 |
} |
13315 | 216 |
} |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
217 |
for(int i = 0; i < m_numItems; ++i) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
218 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
219 |
twi::iterator it = weaponItems.find(i); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
220 |
if (it == weaponItems.end()) continue; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
221 |
it.value()[0]->setItemsNum(ammo[i].digitValue()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
222 |
it.value()[1]->setItemsNum(ammo[m_numItems + i].digitValue()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
223 |
it.value()[2]->setItemsNum(ammo[m_numItems*2 + i].digitValue()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
224 |
it.value()[3]->setItemsNum(ammo[m_numItems*3 + i].digitValue()); |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
225 |
it.value()[0]->setEnabled(enable); |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
226 |
it.value()[1]->setEnabled(enable); |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
227 |
it.value()[2]->setEnabled(enable); |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
228 |
it.value()[3]->setEnabled(enable); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
229 |
} |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
230 |
m_name->setEnabled(enable); |
683 | 231 |
} |
232 |
||
233 |
void SelWeaponWidget::setDefault() |
|
234 |
{ |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
235 |
for(int i = 0; i < cDefaultAmmos.size(); i++) |
13315 | 236 |
{ |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
237 |
if (!cDefaultAmmos[i].first.compare(m_name->text())) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
238 |
{ |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
239 |
return; |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
240 |
} |
13315 | 241 |
} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
242 |
setWeapons(*cDefaultAmmoStore); |
683 | 243 |
} |
244 |
||
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
245 |
//Save current weapons set. |
683 | 246 |
void SelWeaponWidget::save() |
247 |
{ |
|
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
248 |
//The save() function is called by ANY change of the combo box. |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
249 |
//If an entry is deleted, this code would just re-add the deleted |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
250 |
//item. We use isDeleted to check if we are currently deleting to |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
251 |
//prevent this. |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
252 |
if (isDeleting) |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
253 |
return; |
7830
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
254 |
// TODO make this return if success or not, so that the page can react |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
255 |
// properly and not goBack if saving failed |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
256 |
if (m_name->text() == "") |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
257 |
return; |
2377 | 258 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
259 |
QString state1; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
260 |
QString state2; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
261 |
QString state3; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
262 |
QString state4; |
7830
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
263 |
QString stateFull; |
2377 | 264 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
265 |
for(int i = 0; i < m_numItems; ++i) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
266 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
267 |
twi::const_iterator it = weaponItems.find(i); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
268 |
int num = it == weaponItems.end() ? 9 : it.value()[0]->getItemsNum(); // 9 is for 'skip turn' |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
269 |
state1.append(QString::number(num)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
270 |
int prob = it == weaponItems.end() ? 0 : it.value()[1]->getItemsNum(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
271 |
state2.append(QString::number(prob)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
272 |
int del = it == weaponItems.end() ? 0 : it.value()[2]->getItemsNum(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
273 |
state3.append(QString::number(del)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
274 |
int am = it == weaponItems.end() ? 0 : it.value()[3]->getItemsNum(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
275 |
state4.append(QString::number(am)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
276 |
} |
7830
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
277 |
|
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
278 |
stateFull = state1 + state2 + state3 + state4; |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
279 |
|
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
280 |
for(int i = 0; i < cDefaultAmmos.size(); i++) |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
281 |
{ |
12689
5b135c26f320
Don't let player save ammo scheme with pre-installed name, even case-insensitively
Wuzzy <almikes@aol.com>
parents:
12665
diff
changeset
|
282 |
// Don't allow same name as default weapon set, even case-insensitively. |
5b135c26f320
Don't let player save ammo scheme with pre-installed name, even case-insensitively
Wuzzy <almikes@aol.com>
parents:
12665
diff
changeset
|
283 |
// This prevents some problems with saving/loading. |
5b135c26f320
Don't let player save ammo scheme with pre-installed name, even case-insensitively
Wuzzy <almikes@aol.com>
parents:
12665
diff
changeset
|
284 |
if (cDefaultAmmos[i].first.toLower().compare(m_name->text().toLower()) == 0) |
7830
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
285 |
{ |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
286 |
// don't show warning if no change |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
287 |
if (cDefaultAmmos[i].second.compare(stateFull) == 0) |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
288 |
return; |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
289 |
|
12689
5b135c26f320
Don't let player save ammo scheme with pre-installed name, even case-insensitively
Wuzzy <almikes@aol.com>
parents:
12665
diff
changeset
|
290 |
m_name->setText(curWeaponsName); |
7830
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
291 |
QMessageBox deniedMsg(this); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
292 |
deniedMsg.setIcon(QMessageBox::Warning); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
293 |
deniedMsg.setWindowTitle(QMessageBox::tr("Weapons - Warning")); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
294 |
deniedMsg.setText(QMessageBox::tr("Cannot overwrite default weapon set '%1'!").arg(cDefaultAmmos[i].first)); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
295 |
deniedMsg.setWindowModality(Qt::WindowModal); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
296 |
deniedMsg.exec(); |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
297 |
return; |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
298 |
} |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
299 |
} |
72e52da6ea7f
fix for issue 441 ("Cannot overwrite default weapon set 'Default'!" message when no change to weapon set was made)
sheepluva
parents:
7797
diff
changeset
|
300 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
301 |
if (curWeaponsName != "") |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
302 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
303 |
// remove old entry |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
304 |
wconf->remove(curWeaponsName); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
305 |
} |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
306 |
wconf->insert(m_name->text(), stateFull); |
12923 | 307 |
QFile file(cfgdir->absolutePath() + "/Schemes/Ammo/" + m_name->text()+ ".hwa"); |
12922 | 308 |
if (file.open(QIODevice::WriteOnly)) { |
309 |
QTextStream stream( &file ); |
|
310 |
stream << stateFull << endl; |
|
13196
f93658732448
Game scheme handling: Use QFile instead of QSettings for increased efficiency
Wuzzy <Wuzzy2@mail.ru>
parents:
13195
diff
changeset
|
311 |
file.close(); |
12922 | 312 |
} |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
313 |
emit weaponsEdited(curWeaponsName, m_name->text(), stateFull); |
683 | 314 |
} |
315 |
||
681 | 316 |
int SelWeaponWidget::operator [] (unsigned int weaponIndex) const |
317 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
318 |
twi::const_iterator it = weaponItems.find(weaponIndex); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
319 |
return it == weaponItems.end() ? 9 : it.value()[0]->getItemsNum(); |
681 | 320 |
} |
321 |
||
696 | 322 |
QString SelWeaponWidget::getWeaponsString(const QString& name) const |
323 |
{ |
|
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
324 |
return wconf->find(name).value(); |
696 | 325 |
} |
326 |
||
718 | 327 |
void SelWeaponWidget::deleteWeaponsName() |
328 |
{ |
|
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
329 |
QString delWeaponsName = curWeaponsName; |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
330 |
if (delWeaponsName == "") return; |
724 | 331 |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
332 |
for(int i = 0; i < cDefaultAmmos.size(); i++) |
13315 | 333 |
{ |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
334 |
if (!cDefaultAmmos[i].first.compare(delWeaponsName)) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
335 |
{ |
7797 | 336 |
QMessageBox deniedMsg(this); |
337 |
deniedMsg.setIcon(QMessageBox::Warning); |
|
338 |
deniedMsg.setWindowTitle(QMessageBox::tr("Weapons - Warning")); |
|
339 |
deniedMsg.setText(QMessageBox::tr("Cannot delete default weapon set '%1'!").arg(cDefaultAmmos[i].first)); |
|
340 |
deniedMsg.setWindowModality(Qt::WindowModal); |
|
341 |
deniedMsg.exec(); |
|
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
342 |
return; |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
343 |
} |
13315 | 344 |
} |
1509 | 345 |
|
7797 | 346 |
QMessageBox reallyDeleteMsg(this); |
347 |
reallyDeleteMsg.setIcon(QMessageBox::Question); |
|
348 |
reallyDeleteMsg.setWindowTitle(QMessageBox::tr("Weapons - Are you sure?")); |
|
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
349 |
reallyDeleteMsg.setText(QMessageBox::tr("Do you really want to delete the weapon set '%1'?").arg(delWeaponsName)); |
7797 | 350 |
reallyDeleteMsg.setWindowModality(Qt::WindowModal); |
351 |
reallyDeleteMsg.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel); |
|
2377 | 352 |
|
7797 | 353 |
if (reallyDeleteMsg.exec() == QMessageBox::Ok) |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
354 |
{ |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
355 |
isDeleting = true; |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
356 |
wconf->remove(delWeaponsName); |
12923 | 357 |
QFile(cfgdir->absolutePath() + "/Schemes/Ammo/" + curWeaponsName + ".hwa").remove(); |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
358 |
emit weaponsDeleted(delWeaponsName); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
359 |
} |
718 | 360 |
} |
361 |
||
4416
29d2d1548387
adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents:
4412
diff
changeset
|
362 |
void SelWeaponWidget::newWeaponsName() |
29d2d1548387
adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents:
4412
diff
changeset
|
363 |
{ |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
364 |
save(); |
11817
5f21387edff1
Slightly better naming of new or copied ammo/game schemes
Wuzzy <almikes@aol.com>
parents:
11763
diff
changeset
|
365 |
QString newName = tr("New"); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
366 |
if(wconf->contains(newName)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
367 |
{ |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
368 |
//name already used -> look for an appropriate name: |
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
369 |
int i=2; |
11817
5f21387edff1
Slightly better naming of new or copied ammo/game schemes
Wuzzy <almikes@aol.com>
parents:
11763
diff
changeset
|
370 |
while(wconf->contains(newName = tr("New (%1)").arg(i++))) ; |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
371 |
} |
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
372 |
setWeaponsName(newName); |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
373 |
wconf->insert(newName, *cEmptyAmmoStore); |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
374 |
emit weaponsAdded(newName, *cEmptyAmmoStore); |
4416
29d2d1548387
adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents:
4412
diff
changeset
|
375 |
} |
29d2d1548387
adding a combobox to weapon editor as scheme editor, added a few notices for deleting and some buttons in this area.
Henek
parents:
4412
diff
changeset
|
376 |
|
1509 | 377 |
void SelWeaponWidget::setWeaponsName(const QString& name) |
694 | 378 |
{ |
4412
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
379 |
m_name->setText(name); |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
380 |
|
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
381 |
curWeaponsName = name; |
c9a78ba03679
added disabling option to itemNum and grey images for that. also made default weapon sets uneditable and not deleteable.
Henek
parents:
3697
diff
changeset
|
382 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
383 |
if(name != "" && wconf->contains(name)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
384 |
{ |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
385 |
setWeapons(wconf->find(name).value()); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
386 |
} |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
387 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
388 |
{ |
11763
59e979b1408f
Add empty weapons scheme (instead of default) when using “New” button
Wuzzy <almikes@aol.com>
parents:
11046
diff
changeset
|
389 |
setWeapons(*cEmptyAmmoStore); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2860
diff
changeset
|
390 |
} |
694 | 391 |
} |
392 |
||
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
393 |
void SelWeaponWidget::switchWeapons(const QString& name) |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
394 |
{ |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
395 |
// Rescue old weapons set, then select new one |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
396 |
save(); |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
397 |
setWeaponsName(name); |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
398 |
} |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
399 |
|
694 | 400 |
QStringList SelWeaponWidget::getWeaponNames() const |
401 |
{ |
|
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
402 |
return wconf->keys(); |
694 | 403 |
} |
4598 | 404 |
|
405 |
void SelWeaponWidget::copy() |
|
406 |
{ |
|
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
407 |
save(); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
408 |
if(wconf->contains(curWeaponsName)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
409 |
{ |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
410 |
QString ammo = getWeaponsString(curWeaponsName); |
11817
5f21387edff1
Slightly better naming of new or copied ammo/game schemes
Wuzzy <almikes@aol.com>
parents:
11763
diff
changeset
|
411 |
QString newName = tr("Copy of %1").arg(curWeaponsName); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
412 |
if(wconf->contains(newName)) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6479
diff
changeset
|
413 |
{ |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
414 |
//name already used -> look for an appropriate name: |
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
415 |
int i=2; |
12663
d7492247a368
Fix argument bug in default name of copy of copy of ammo scheme
Wuzzy <almikes@aol.com>
parents:
11817
diff
changeset
|
416 |
while(wconf->contains(newName = tr("Copy of %1 (%2)").arg(curWeaponsName).arg(i++))); |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
417 |
} |
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
418 |
setWeaponsName(newName); |
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
419 |
setWeapons(ammo); |
13314
fe85ba81b01b
I guess "Fix weapon scheme lookup being unnecesarily persisted"?.. or something
alfadur
parents:
13196
diff
changeset
|
420 |
wconf->insert(newName, ammo); |
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
421 |
emit weaponsAdded(newName, ammo); |
5029
97c650500991
solved issue 197 and other issues that were caused when copying or creating a new weapon set that was named like an already existing one. this will now be avoided.
Tobias Domhan <tdomhan@gmail.com>
parents:
4976
diff
changeset
|
422 |
} |
4598 | 423 |
} |
9900 | 424 |
|
425 |
QString SelWeaponWidget::fixWeaponSet(const QString &s) |
|
426 |
{ |
|
427 |
int neededLength = cDefaultAmmoStore->size() / 4; |
|
428 |
int thisSetLength = s.size() / 4; |
|
429 |
||
430 |
QStringList sl; |
|
431 |
sl |
|
432 |
<< s.left(thisSetLength) |
|
433 |
<< s.mid(thisSetLength, thisSetLength) |
|
434 |
<< s.mid(thisSetLength * 2, thisSetLength) |
|
435 |
<< s.right(thisSetLength) |
|
436 |
; |
|
437 |
||
438 |
for(int i = sl.length() - 1; i >= 0; --i) |
|
13315 | 439 |
{ |
9900 | 440 |
sl[i] = sl[i].leftJustified(neededLength, '0', true); |
13315 | 441 |
} |
9900 | 442 |
|
443 |
return sl.join(QString()); |
|
444 |
} |
|
12665
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
445 |
|
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
446 |
void SelWeaponWidget::deletionDone() |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
447 |
{ |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
448 |
isDeleting = false; |
5664ec82aed7
Rework weapon scheme handling in frontend and fix a couple of bugs
Wuzzy <almikes@aol.com>
parents:
12663
diff
changeset
|
449 |
} |
12763
ad67a3804981
Fix sometimes ammo schemes not being saved after changing before an ammo scheme got deleted in session
Wuzzy <Wuzzy2@mail.ru>
parents:
12689
diff
changeset
|
450 |
|
ad67a3804981
Fix sometimes ammo schemes not being saved after changing before an ammo scheme got deleted in session
Wuzzy <Wuzzy2@mail.ru>
parents:
12689
diff
changeset
|
451 |
void SelWeaponWidget::init() |
ad67a3804981
Fix sometimes ammo schemes not being saved after changing before an ammo scheme got deleted in session
Wuzzy <Wuzzy2@mail.ru>
parents:
12689
diff
changeset
|
452 |
{ |
ad67a3804981
Fix sometimes ammo schemes not being saved after changing before an ammo scheme got deleted in session
Wuzzy <Wuzzy2@mail.ru>
parents:
12689
diff
changeset
|
453 |
isDeleting = false; |
ad67a3804981
Fix sometimes ammo schemes not being saved after changing before an ammo scheme got deleted in session
Wuzzy <Wuzzy2@mail.ru>
parents:
12689
diff
changeset
|
454 |
} |