author | displacer |
Wed, 19 Dec 2007 11:10:23 +0000 | |
changeset 681 | 7a20c50988ec |
parent 644 | 45454744f240 |
child 682 | a37b6966de84 |
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 |
|
681 | 59 |
unsigned char SelWeaponItem::getItemsNum() const |
60 |
{ |
|
61 |
return item->getItemsNum(); |
|
62 |
} |
|
63 |
||
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
64 |
SelWeaponWidget::SelWeaponWidget(QWidget* parent) : |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
65 |
QWidget(parent) |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
66 |
{ |
624 | 67 |
pLayout=new QGridLayout(this); |
644 | 68 |
pLayout->setSpacing(1); |
69 |
pLayout->setMargin(1); |
|
629 | 70 |
|
71 |
int j=-1; |
|
681 | 72 |
for(int i=0, k=0; i<20; ++i) { |
73 |
if(i==6) continue; |
|
74 |
if (k%4==0) ++j; |
|
75 |
weaponItems[i]=new SelWeaponItem(i, cDefaultAmmoStore->at(10+i).digitValue(), this); |
|
76 |
pLayout->addWidget(weaponItems[i], j, k%4); |
|
77 |
++k; |
|
629 | 78 |
} |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
598
diff
changeset
|
79 |
} |
681 | 80 |
|
81 |
int SelWeaponWidget::operator [] (unsigned int weaponIndex) const |
|
82 |
{ |
|
83 |
std::map<int, SelWeaponItem*>::const_iterator it=weaponItems.find(weaponIndex); |
|
84 |
return it==weaponItems.end() ? 9 : it->second->getItemsNum(); |
|
85 |
} |
|
86 |
||
87 |
QString SelWeaponWidget::getWeaponsString() const |
|
88 |
{ |
|
89 |
QString ammo("eammstore "); |
|
90 |
for(int i=0; i<20; ++i) { |
|
91 |
ammo=QString("%1%2").arg(ammo).arg((*this)[i]); |
|
92 |
} |
|
93 |
return ammo; |
|
94 |
} |