author | displacer |
Sun, 21 Jan 2007 19:53:25 +0000 | |
changeset 352 | 4665bfe25470 |
parent 348 | c91b983de18f |
child 362 | b28e0dd48269 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006 Ulyanov Igor <iulyanov@gmail.com> |
|
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 "frameTeam.h" |
|
20 |
#include "teamselhelper.h" |
|
21 |
||
22 |
#include <QResizeEvent> |
|
23 |
#include <QCoreApplication> |
|
24 |
||
25 |
using namespace std; |
|
26 |
||
27 |
FrameTeams::FrameTeams(QWidget* parent) : |
|
28 |
QWidget(parent), maxHedgehogsPerGame(18), overallHedgehogs(0), mainLayout(this) |
|
29 |
{ |
|
30 |
mainLayout.setSpacing(1); |
|
207 | 31 |
|
32 |
availableColors.push_back(QColor(0, 0, 255)); |
|
33 |
availableColors.push_back(QColor(0, 255, 0)); |
|
34 |
availableColors.push_back(QColor(0, 255, 255)); |
|
35 |
availableColors.push_back(QColor(255, 0, 0)); |
|
36 |
availableColors.push_back(QColor(255, 0, 255)); |
|
37 |
availableColors.push_back(QColor(255, 255, 0)); |
|
38 |
||
39 |
resetColors(); |
|
40 |
} |
|
41 |
||
42 |
void FrameTeams::resetColors() |
|
43 |
{ |
|
44 |
currentColor=availableColors.begin(); |
|
184 | 45 |
} |
46 |
||
47 |
void FrameTeams::addTeam(HWTeam team, bool willPlay) |
|
48 |
{ |
|
341 | 49 |
TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this); |
184 | 50 |
// int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height(); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
51 |
teamToWidget.insert(team, pTeamShowWidget); |
184 | 52 |
mainLayout.addWidget(pTeamShowWidget); |
53 |
QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size()); |
|
54 |
QCoreApplication::postEvent(parentWidget(), pevent); |
|
55 |
} |
|
56 |
||
57 |
void FrameTeams::removeTeam(HWTeam team) |
|
58 |
{ |
|
59 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
60 |
mainLayout.removeWidget(it.value()); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
61 |
delete it.value(); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
62 |
teamToWidget.erase(it); |
184 | 63 |
} |
64 |
||
352 | 65 |
void FrameTeams::setHHNum(const HWTeam& team) |
66 |
{ |
|
67 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
68 |
if(!pTeamShowWidget) throw; |
|
69 |
pTeamShowWidget->setHHNum(team.numHedgehogs); |
|
70 |
} |
|
71 |
||
184 | 72 |
QWidget* FrameTeams::getTeamWidget(HWTeam team) |
73 |
{ |
|
74 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
75 |
QWidget* ret = it!=teamToWidget.end() ? it.value() : 0; |
184 | 76 |
return ret; |
77 |
} |
|
78 |
||
79 |
bool FrameTeams::isFullTeams() const |
|
80 |
{ |
|
81 |
return overallHedgehogs==maxHedgehogsPerGame; |
|
82 |
} |