author | unc0rr |
Thu, 08 Jan 2009 15:43:40 +0000 | |
changeset 1602 | 90694bfc6959 |
parent 1576 | a02353129a41 |
child 1904 | 20348675b015 |
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> |
624 | 31 |
|
629 | 32 |
QImage getAmmoImage(int num) |
33 |
{ |
|
1509 | 34 |
static QImage ammo(":Ammos.png"); |
35 |
return ammo.copy(0, num*32, 32, 32); |
|
629 | 36 |
} |
37 |
||
681 | 38 |
SelWeaponItem::SelWeaponItem(int iconNum, int wNum, QWidget* parent) : |
1509 | 39 |
QWidget(parent) |
629 | 40 |
{ |
1509 | 41 |
QHBoxLayout* hbLayout = new QHBoxLayout(this); |
42 |
hbLayout->setSpacing(1); |
|
43 |
hbLayout->setMargin(1); |
|
44 |
||
45 |
QLabel* lbl = new QLabel(this); |
|
46 |
lbl->setPixmap(QPixmap::fromImage(getAmmoImage(iconNum))); |
|
47 |
lbl->setMaximumWidth(30); |
|
48 |
lbl->setGeometry(0, 0, 30, 30); |
|
49 |
hbLayout->addWidget(lbl); |
|
639 | 50 |
|
1509 | 51 |
item = new WeaponItem(QImage(":/res/ammopic.png"), this); |
52 |
item->setItemsNum(wNum); |
|
53 |
item->setInfinityState(true); |
|
54 |
hbLayout->addWidget(item); |
|
639 | 55 |
|
1509 | 56 |
hbLayout->setStretchFactor(lbl, 1); |
57 |
hbLayout->setStretchFactor(item, 99); |
|
58 |
hbLayout->setAlignment(lbl, Qt::AlignLeft | Qt::AlignVCenter); |
|
59 |
hbLayout->setAlignment(item, Qt::AlignLeft | Qt::AlignVCenter); |
|
629 | 60 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
61 |
|
683 | 62 |
void SelWeaponItem::setItemsNum(const unsigned char num) |
63 |
{ |
|
1509 | 64 |
item->setItemsNum(num); |
683 | 65 |
} |
66 |
||
681 | 67 |
unsigned char SelWeaponItem::getItemsNum() const |
68 |
{ |
|
1509 | 69 |
return item->getItemsNum(); |
681 | 70 |
} |
71 |
||
683 | 72 |
SelWeaponWidget::SelWeaponWidget(int numItems, QWidget* parent) : |
73 |
m_numItems(numItems), |
|
1455 | 74 |
QFrame(parent) |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
75 |
{ |
1509 | 76 |
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
|
77 |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
78 |
wconf->setValue("Default", *cDefaultAmmoStore); |
694 | 79 |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
80 |
QStringList keys = wconf->allKeys(); |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
81 |
for(int i = 0; i < keys.size(); i++) |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
82 |
{ |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
83 |
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
|
84 |
wconf->remove(keys[i]); |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
85 |
} |
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
86 |
|
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
87 |
QString currentState = *cDefaultAmmoStore; |
683 | 88 |
|
1509 | 89 |
pLayout = new QGridLayout(this); |
90 |
pLayout->setSpacing(1); |
|
91 |
pLayout->setMargin(1); |
|
629 | 92 |
|
1509 | 93 |
int j = -1; |
94 |
int i = 0, k = 0; |
|
95 |
for(; i < m_numItems; ++i) { |
|
96 |
if (i == 6) continue; |
|
97 |
if (k % 4 == 0) ++j; |
|
98 |
weaponItems[i] = new SelWeaponItem(i, currentState[i].digitValue(), this); |
|
99 |
pLayout->addWidget(weaponItems[i], j, k % 4); |
|
100 |
++k; |
|
101 |
} |
|
694 | 102 |
|
1509 | 103 |
//pLayout->setRowStretch(5, 100); |
104 |
m_name = new QLineEdit(this); |
|
105 |
pLayout->addWidget(m_name, i, 0, 1, 5); |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
106 |
} |
681 | 107 |
|
694 | 108 |
void SelWeaponWidget::setWeapons(const QString& ammo) |
683 | 109 |
{ |
1509 | 110 |
for(int i = 0; i < m_numItems; ++i) { |
111 |
twi::iterator it = weaponItems.find(i); |
|
112 |
if (it == weaponItems.end()) continue; |
|
113 |
it->second->setItemsNum(ammo[i].digitValue()); |
|
114 |
} |
|
115 |
update(); |
|
683 | 116 |
} |
117 |
||
118 |
void SelWeaponWidget::setDefault() |
|
119 |
{ |
|
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1509
diff
changeset
|
120 |
setWeapons(*cDefaultAmmoStore); |
683 | 121 |
} |
122 |
||
123 |
void SelWeaponWidget::save() |
|
124 |
{ |
|
1509 | 125 |
if (m_name->text() == "Default") { |
126 |
QMessageBox impossible(QMessageBox::Warning, QMessageBox::tr("Weapons"), QMessageBox::tr("Can not edit default weapon set")); |
|
127 |
impossible.exec(); |
|
128 |
return; |
|
129 |
} |
|
130 |
||
131 |
if (m_name->text() == "") return; |
|
132 |
||
133 |
QString currentState; |
|
134 |
||
135 |
for(int i = 0; i < m_numItems; ++i) { |
|
136 |
twi::const_iterator it = weaponItems.find(i); |
|
137 |
int num = it == weaponItems.end() ? 9 : (*this)[i]; |
|
138 |
currentState = QString("%1%2").arg(currentState).arg(num); |
|
139 |
} |
|
140 |
if (curWeaponsName != "") { |
|
141 |
// remove old entry |
|
142 |
wconf->remove(curWeaponsName); |
|
143 |
} |
|
144 |
wconf->setValue(m_name->text(), currentState); |
|
145 |
emit weaponsChanged(); |
|
683 | 146 |
} |
147 |
||
681 | 148 |
int SelWeaponWidget::operator [] (unsigned int weaponIndex) const |
149 |
{ |
|
1509 | 150 |
twi::const_iterator it = weaponItems.find(weaponIndex); |
151 |
return it == weaponItems.end() ? 9 : it->second->getItemsNum(); |
|
681 | 152 |
} |
153 |
||
696 | 154 |
QString SelWeaponWidget::getWeaponsString(const QString& name) const |
155 |
{ |
|
1509 | 156 |
return wconf->value(name).toString(); |
696 | 157 |
} |
158 |
||
718 | 159 |
void SelWeaponWidget::deleteWeaponsName() |
160 |
{ |
|
1509 | 161 |
if (curWeaponsName == "") return; |
724 | 162 |
|
1509 | 163 |
if (curWeaponsName == "Default") { |
164 |
QMessageBox impossible(QMessageBox::Warning, QMessageBox::tr("Weapons"), QMessageBox::tr("Can not delete default weapon set")); |
|
165 |
impossible.exec(); |
|
166 |
return; |
|
167 |
} |
|
168 |
||
169 |
QMessageBox reallyDelete(QMessageBox::Question, QMessageBox::tr("Weapons"), QMessageBox::tr("Really delete this weapon set?"), QMessageBox::Ok | QMessageBox::Cancel); |
|
170 |
||
171 |
if (reallyDelete.exec() == QMessageBox::Ok) { |
|
172 |
wconf->remove(curWeaponsName); |
|
173 |
emit weaponsDeleted(); |
|
174 |
} |
|
718 | 175 |
} |
176 |
||
1509 | 177 |
void SelWeaponWidget::setWeaponsName(const QString& name) |
694 | 178 |
{ |
1509 | 179 |
if(name != "" && wconf->contains(name)) { |
180 |
setWeapons(wconf->value(name).toString()); |
|
181 |
} |
|
694 | 182 |
|
1509 | 183 |
curWeaponsName = name; |
717 | 184 |
|
1509 | 185 |
m_name->setText(name); |
694 | 186 |
} |
187 |
||
188 |
QStringList SelWeaponWidget::getWeaponNames() const |
|
189 |
{ |
|
1509 | 190 |
return wconf->allKeys(); |
694 | 191 |
} |