author | unc0rr |
Thu, 09 Oct 2008 17:15:04 +0000 | |
changeset 1337 | b652c002633b |
parent 1300 | 22c03f69e142 |
child 1784 | dfe9bafb4590 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Ulyanov Igor <iulyanov@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include "hedgehogerWidget.h" |
|
20 |
||
21 |
#include "frameTeam.h" |
|
22 |
||
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
23 |
CHedgehogerWidget::CHedgehogerWidget(const QImage& im, QWidget * parent) : |
951 | 24 |
ItemNum(im, parent, 1) |
184 | 25 |
{ |
26 |
if(parent) { |
|
1300 | 27 |
pOurFrameTeams = dynamic_cast<FrameTeams*>(parent->parentWidget()); |
184 | 28 |
} |
1300 | 29 |
if(pOurFrameTeams->overallHedgehogs + 4 > pOurFrameTeams->maxHedgehogsPerGame) { |
30 |
numItems = pOurFrameTeams->maxHedgehogsPerGame - pOurFrameTeams->overallHedgehogs; |
|
31 |
} else numItems = 4; |
|
32 |
pOurFrameTeams->overallHedgehogs += numItems; |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
33 |
} |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
34 |
|
1300 | 35 |
void CHedgehogerWidget::incItems() |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
36 |
{ |
1300 | 37 |
if (pOurFrameTeams->overallHedgehogs < 18) { |
624 | 38 |
numItems++; |
39 |
pOurFrameTeams->overallHedgehogs++; |
|
40 |
emit hedgehogsNumChanged(); |
|
41 |
} |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
42 |
} |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
43 |
|
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
44 |
void CHedgehogerWidget::decItems() |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
45 |
{ |
624 | 46 |
numItems--; |
47 |
pOurFrameTeams->overallHedgehogs--; |
|
48 |
emit hedgehogsNumChanged(); |
|
184 | 49 |
} |
50 |
||
51 |
CHedgehogerWidget::~CHedgehogerWidget() |
|
52 |
{ |
|
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
53 |
pOurFrameTeams->overallHedgehogs-=numItems; |
184 | 54 |
} |
55 |
||
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
56 |
void CHedgehogerWidget::setNonInteractive() |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
57 |
{ |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
58 |
nonInteractive=true; |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
59 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
60 |
|
352 | 61 |
void CHedgehogerWidget::setHHNum(unsigned int num) |
62 |
{ |
|
1300 | 63 |
unsigned int diff = num - numItems; |
64 |
numItems += diff; |
|
65 |
pOurFrameTeams->overallHedgehogs += diff; |
|
352 | 66 |
repaint(); |
67 |
} |
|
68 |
||
207 | 69 |
unsigned char CHedgehogerWidget::getHedgehogsNum() const |
184 | 70 |
{ |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
579
diff
changeset
|
71 |
return numItems; |
184 | 72 |
} |