author | unc0rr |
Wed, 26 Dec 2007 22:16:22 +0000 | |
changeset 686 | 494b5880989a |
parent 683 | 57d624f71e65 |
child 694 | 436045756181 |
permissions | -rw-r--r-- |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
1 |
/* |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
2 |
* Hedgewars, a worms-like game |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
3 |
* Copyright (c) 2006, 2007 Ulyanov Igor <iulyanov@gmail.com> |
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 |
*/ |
624 | 18 |
|
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> |
624 | 28 |
|
629 | 29 |
QImage getAmmoImage(int num) |
30 |
{ |
|
31 |
static QImage ammo(":Ammos.png"); |
|
32 |
return ammo.copy(0, num*32, 32, 32); |
|
33 |
} |
|
34 |
||
681 | 35 |
SelWeaponItem::SelWeaponItem(int iconNum, int wNum, QWidget* parent) : |
629 | 36 |
QWidget(parent) |
37 |
{ |
|
38 |
QHBoxLayout* hbLayout = new QHBoxLayout(this); |
|
644 | 39 |
hbLayout->setSpacing(1); |
40 |
hbLayout->setMargin(1); |
|
629 | 41 |
|
639 | 42 |
QLabel* lbl = new QLabel(this); |
681 | 43 |
lbl->setPixmap(QPixmap::fromImage(getAmmoImage(iconNum))); |
639 | 44 |
lbl->setMaximumWidth(30); |
45 |
lbl->setGeometry(0, 0, 30, 30); |
|
629 | 46 |
hbLayout->addWidget(lbl); |
639 | 47 |
|
681 | 48 |
item=new WeaponItem(QImage(":/res/hh25x25.png"), this); |
49 |
item->setItemsNum(wNum); |
|
640 | 50 |
item->setInfinityState(true); |
629 | 51 |
hbLayout->addWidget(item); |
639 | 52 |
|
53 |
hbLayout->setStretchFactor(lbl, 1); |
|
54 |
hbLayout->setStretchFactor(item, 99); |
|
644 | 55 |
hbLayout->setAlignment(lbl, Qt::AlignLeft | Qt::AlignVCenter); |
56 |
hbLayout->setAlignment(item, Qt::AlignLeft | Qt::AlignVCenter); |
|
629 | 57 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
58 |
|
683 | 59 |
void SelWeaponItem::setItemsNum(const unsigned char num) |
60 |
{ |
|
61 |
item->setItemsNum(num); |
|
62 |
} |
|
63 |
||
681 | 64 |
unsigned char SelWeaponItem::getItemsNum() const |
65 |
{ |
|
66 |
return item->getItemsNum(); |
|
67 |
} |
|
68 |
||
683 | 69 |
SelWeaponWidget::SelWeaponWidget(int numItems, QWidget* parent) : |
70 |
m_numItems(numItems), |
|
71 |
QWidget(parent) |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
72 |
{ |
683 | 73 |
currentState=cDefaultAmmoStore->mid(10); |
74 |
||
624 | 75 |
pLayout=new QGridLayout(this); |
644 | 76 |
pLayout->setSpacing(1); |
77 |
pLayout->setMargin(1); |
|
629 | 78 |
|
79 |
int j=-1; |
|
683 | 80 |
for(int i=0, k=0; i<m_numItems; ++i) { |
681 | 81 |
if(i==6) continue; |
82 |
if (k%4==0) ++j; |
|
683 | 83 |
weaponItems[i]=new SelWeaponItem(i, currentState[i].digitValue(), this); |
681 | 84 |
pLayout->addWidget(weaponItems[i], j, k%4); |
85 |
++k; |
|
629 | 86 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
87 |
} |
681 | 88 |
|
683 | 89 |
void SelWeaponWidget::setWeapons(QString ammo) |
90 |
{ |
|
91 |
for(int i=0; i<m_numItems; ++i) { |
|
92 |
twi::iterator it=weaponItems.find(i); |
|
93 |
if (it==weaponItems.end()) continue; |
|
94 |
it->second->setItemsNum(ammo[i].digitValue()); |
|
95 |
} |
|
96 |
update(); |
|
97 |
} |
|
98 |
||
99 |
void SelWeaponWidget::setDefault() |
|
100 |
{ |
|
101 |
setWeapons(cDefaultAmmoStore->mid(10)); |
|
102 |
} |
|
103 |
||
104 |
void SelWeaponWidget::save() |
|
105 |
{ |
|
106 |
currentState=""; |
|
107 |
for(int i=0; i<m_numItems; ++i) { |
|
108 |
twi::const_iterator it=weaponItems.find(i); |
|
109 |
int num = it==weaponItems.end() ? 9 : (*this)[i]; |
|
110 |
currentState = QString("%1%2").arg(currentState).arg(num); |
|
111 |
} |
|
112 |
} |
|
113 |
||
681 | 114 |
int SelWeaponWidget::operator [] (unsigned int weaponIndex) const |
115 |
{ |
|
683 | 116 |
twi::const_iterator it=weaponItems.find(weaponIndex); |
681 | 117 |
return it==weaponItems.end() ? 9 : it->second->getItemsNum(); |
118 |
} |
|
119 |
||
120 |
QString SelWeaponWidget::getWeaponsString() const |
|
121 |
{ |
|
683 | 122 |
return currentState; |
681 | 123 |
} |