author | nemo |
Thu, 15 Oct 2009 19:38:18 +0000 | |
changeset 2467 | be6690c337fb |
parent 2377 | f3fab2b09e0c |
child 2471 | 1cfc9f897616 |
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 |
883 | 3 |
* Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com> |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
4 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
5 |
* 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
|
6 |
* 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
|
7 |
* the Free Software Foundation; version 2 of the License |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
8 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
9 |
* 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
|
10 |
* 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
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
12 |
* GNU General Public License for more details. |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
13 |
* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
14 |
* 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
|
15 |
* along with this program; if not, write to the Free Software |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
17 |
*/ |
1509 | 18 |
|
624 | 19 |
#include "selectWeapon.h" |
629 | 20 |
#include "weaponItem.h" |
681 | 21 |
#include "hwconsts.h" |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
22 |
|
624 | 23 |
#include <QPushButton> |
24 |
#include <QGridLayout> |
|
629 | 25 |
#include <QHBoxLayout> |
26 |
#include <QLabel> |
|
630 | 27 |
#include <QBitmap> |
694 | 28 |
#include <QLineEdit> |
29 |
#include <QSettings> |
|
724 | 30 |
#include <QMessageBox> |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
31 |
#include <QTabWidget> |
2467 | 32 |
#include <math.h> |
624 | 33 |
|
629 | 34 |
QImage getAmmoImage(int num) |
35 |
{ |
|
1509 | 36 |
static QImage ammo(":Ammos.png"); |
2467 | 37 |
int x = floor((num * 32) / ammo.height()) * 32; |
38 |
if(x) x--; |
|
39 |
return ammo.copy(x, num*32, 32, 32); |
|
629 | 40 |
} |
41 |
||
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
42 |
SelWeaponItem::SelWeaponItem(bool allowInfinite, int iconNum, int wNum, QWidget* parent) : |
1509 | 43 |
QWidget(parent) |
629 | 44 |
{ |
1509 | 45 |
QHBoxLayout* hbLayout = new QHBoxLayout(this); |
46 |
hbLayout->setSpacing(1); |
|
47 |
hbLayout->setMargin(1); |
|
2377 | 48 |
|
1509 | 49 |
QLabel* lbl = new QLabel(this); |
50 |
lbl->setPixmap(QPixmap::fromImage(getAmmoImage(iconNum))); |
|
51 |
lbl->setMaximumWidth(30); |
|
52 |
lbl->setGeometry(0, 0, 30, 30); |
|
53 |
hbLayout->addWidget(lbl); |
|
639 | 54 |
|
1509 | 55 |
item = new WeaponItem(QImage(":/res/ammopic.png"), this); |
56 |
item->setItemsNum(wNum); |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
57 |
item->setInfinityState(allowInfinite); |
1509 | 58 |
hbLayout->addWidget(item); |
639 | 59 |
|
1509 | 60 |
hbLayout->setStretchFactor(lbl, 1); |
61 |
hbLayout->setStretchFactor(item, 99); |
|
62 |
hbLayout->setAlignment(lbl, Qt::AlignLeft | Qt::AlignVCenter); |
|
63 |
hbLayout->setAlignment(item, Qt::AlignLeft | Qt::AlignVCenter); |
|
629 | 64 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
65 |
|
683 | 66 |
void SelWeaponItem::setItemsNum(const unsigned char num) |
67 |
{ |
|
1509 | 68 |
item->setItemsNum(num); |
683 | 69 |
} |
70 |
||
681 | 71 |
unsigned char SelWeaponItem::getItemsNum() const |
72 |
{ |
|
1509 | 73 |
return item->getItemsNum(); |
681 | 74 |
} |
75 |
||
683 | 76 |
SelWeaponWidget::SelWeaponWidget(int numItems, QWidget* parent) : |
1904 | 77 |
QFrame(parent), |
78 |
m_numItems(numItems) |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
79 |
{ |
1509 | 80 |
wconf = new QSettings(cfgdir->absolutePath() + "/weapons.ini", QSettings::IniFormat, this); |
1004
4cbd91296df7
Don't let updated hedgewars version to make errors due to old weapons.ini
unc0rr
parents:
883
diff
changeset
|
81 |
|
1967 | 82 |
for(int i = 0; i < cDefaultAmmos.size(); ++i) |
83 |
wconf->setValue(cDefaultAmmos[i].first, cDefaultAmmos[i].second); |
|
694 | 84 |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
85 |
QStringList keys = wconf->allKeys(); |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
86 |
for(int i = 0; i < keys.size(); i++) |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
87 |
{ |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
88 |
if (wconf->value(keys[i]).toString().size() != cDefaultAmmoStore->size()) |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
89 |
wconf->remove(keys[i]); |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
90 |
} |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
91 |
|
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
92 |
QString currentState = *cDefaultAmmoStore; |
683 | 93 |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
94 |
QTabWidget * tbw = new QTabWidget(this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
95 |
QWidget * page1 = new QWidget(this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
96 |
p1Layout = new QGridLayout(page1); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
97 |
p1Layout->setSpacing(1); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
98 |
p1Layout->setMargin(1); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
99 |
QWidget * page2 = new QWidget(this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
100 |
p2Layout = new QGridLayout(page2); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
101 |
p2Layout->setSpacing(1); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
102 |
p2Layout->setMargin(1); |
2377 | 103 |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
104 |
tbw->addTab(page1, tr("Weapon set")); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
105 |
tbw->addTab(page2, tr("Probabilities")); |
2377 | 106 |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
107 |
QGridLayout * pageLayout = new QGridLayout(this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
108 |
pageLayout->addWidget(tbw); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
109 |
|
629 | 110 |
|
1509 | 111 |
int j = -1; |
112 |
int i = 0, k = 0; |
|
113 |
for(; i < m_numItems; ++i) { |
|
114 |
if (i == 6) continue; |
|
115 |
if (k % 4 == 0) ++j; |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
116 |
SelWeaponItem * swi = new SelWeaponItem(true, i, currentState[i].digitValue(), this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
117 |
weaponItems[i].append(swi); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
118 |
p1Layout->addWidget(swi, j, k % 4); |
2377 | 119 |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
120 |
SelWeaponItem * pwi = new SelWeaponItem(false, i, currentState[numItems + i].digitValue(), this); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
121 |
weaponItems[i].append(pwi); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
122 |
p2Layout->addWidget(pwi, j, k % 4); |
2377 | 123 |
|
1509 | 124 |
++k; |
125 |
} |
|
694 | 126 |
|
1509 | 127 |
//pLayout->setRowStretch(5, 100); |
128 |
m_name = new QLineEdit(this); |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
129 |
pageLayout->addWidget(m_name, i, 0, 1, 5); |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
130 |
} |
681 | 131 |
|
694 | 132 |
void SelWeaponWidget::setWeapons(const QString& ammo) |
683 | 133 |
{ |
1509 | 134 |
for(int i = 0; i < m_numItems; ++i) { |
135 |
twi::iterator it = weaponItems.find(i); |
|
136 |
if (it == weaponItems.end()) continue; |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
137 |
it.value()[0]->setItemsNum(ammo[i].digitValue()); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
138 |
it.value()[1]->setItemsNum(ammo[m_numItems + i].digitValue()); |
1509 | 139 |
} |
140 |
update(); |
|
683 | 141 |
} |
142 |
||
143 |
void SelWeaponWidget::setDefault() |
|
144 |
{ |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
145 |
setWeapons(*cDefaultAmmoStore); |
683 | 146 |
} |
147 |
||
148 |
void SelWeaponWidget::save() |
|
149 |
{ |
|
1509 | 150 |
if (m_name->text() == "Default") { |
151 |
QMessageBox impossible(QMessageBox::Warning, QMessageBox::tr("Weapons"), QMessageBox::tr("Can not edit default weapon set")); |
|
152 |
impossible.exec(); |
|
153 |
return; |
|
154 |
} |
|
2377 | 155 |
|
1509 | 156 |
if (m_name->text() == "") return; |
2377 | 157 |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
158 |
QString state1; |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
159 |
QString state2; |
2377 | 160 |
|
1509 | 161 |
for(int i = 0; i < m_numItems; ++i) { |
162 |
twi::const_iterator it = weaponItems.find(i); |
|
2371 | 163 |
int num = it == weaponItems.end() ? 9 : it.value()[0]->getItemsNum(); // 9 is for 'skip turn' |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
164 |
state1.append(QString::number(num)); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
165 |
int prob = it == weaponItems.end() ? 0 : it.value()[1]->getItemsNum(); |
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
166 |
state2.append(QString::number(prob)); |
1509 | 167 |
} |
168 |
if (curWeaponsName != "") { |
|
169 |
// remove old entry |
|
170 |
wconf->remove(curWeaponsName); |
|
171 |
} |
|
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
172 |
wconf->setValue(m_name->text(), state1 + state2); |
1509 | 173 |
emit weaponsChanged(); |
683 | 174 |
} |
175 |
||
681 | 176 |
int SelWeaponWidget::operator [] (unsigned int weaponIndex) const |
177 |
{ |
|
1509 | 178 |
twi::const_iterator it = weaponItems.find(weaponIndex); |
2369
c3eb11f1ab3a
Implement probability editor for weapon schemes (engine doesn't support that yet)
unc0rr
parents:
1967
diff
changeset
|
179 |
return it == weaponItems.end() ? 9 : it.value()[0]->getItemsNum(); |
681 | 180 |
} |
181 |
||
696 | 182 |
QString SelWeaponWidget::getWeaponsString(const QString& name) const |
183 |
{ |
|
1509 | 184 |
return wconf->value(name).toString(); |
696 | 185 |
} |
186 |
||
718 | 187 |
void SelWeaponWidget::deleteWeaponsName() |
188 |
{ |
|
1509 | 189 |
if (curWeaponsName == "") return; |
724 | 190 |
|
1509 | 191 |
if (curWeaponsName == "Default") { |
192 |
QMessageBox impossible(QMessageBox::Warning, QMessageBox::tr("Weapons"), QMessageBox::tr("Can not delete default weapon set")); |
|
193 |
impossible.exec(); |
|
194 |
return; |
|
195 |
} |
|
196 |
||
197 |
QMessageBox reallyDelete(QMessageBox::Question, QMessageBox::tr("Weapons"), QMessageBox::tr("Really delete this weapon set?"), QMessageBox::Ok | QMessageBox::Cancel); |
|
2377 | 198 |
|
1509 | 199 |
if (reallyDelete.exec() == QMessageBox::Ok) { |
200 |
wconf->remove(curWeaponsName); |
|
201 |
emit weaponsDeleted(); |
|
202 |
} |
|
718 | 203 |
} |
204 |
||
1509 | 205 |
void SelWeaponWidget::setWeaponsName(const QString& name) |
694 | 206 |
{ |
1509 | 207 |
if(name != "" && wconf->contains(name)) { |
208 |
setWeapons(wconf->value(name).toString()); |
|
209 |
} |
|
694 | 210 |
|
1509 | 211 |
curWeaponsName = name; |
717 | 212 |
|
1509 | 213 |
m_name->setText(name); |
694 | 214 |
} |
215 |
||
216 |
QStringList SelWeaponWidget::getWeaponNames() const |
|
217 |
{ |
|
1509 | 218 |
return wconf->allKeys(); |
694 | 219 |
} |