author | displacer |
Sat, 03 Feb 2007 12:42:38 +0000 | |
changeset 381 | 6096d74c37da |
parent 372 | 4bac77f8cd38 |
child 382 | e7220e48ead1 |
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) : |
|
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
28 |
QWidget(parent), maxHedgehogsPerGame(18), overallHedgehogs(0), mainLayout(this), nonInteractive(false) |
184 | 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 |
||
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
42 |
void FrameTeams::setNonInteractive() |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
43 |
{ |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
44 |
nonInteractive=true; |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
45 |
for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ++it) { |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
46 |
TeamShowWidget* pts=dynamic_cast<TeamShowWidget*>(it.value()); |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
47 |
if(!pts) throw; |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
48 |
pts->setNonInteractive(); |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
49 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
50 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
51 |
|
207 | 52 |
void FrameTeams::resetColors() |
53 |
{ |
|
54 |
currentColor=availableColors.begin(); |
|
184 | 55 |
} |
56 |
||
57 |
void FrameTeams::addTeam(HWTeam team, bool willPlay) |
|
58 |
{ |
|
341 | 59 |
TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this); |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
60 |
if(nonInteractive) pTeamShowWidget->setNonInteractive(); |
184 | 61 |
// 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
|
62 |
teamToWidget.insert(team, pTeamShowWidget); |
184 | 63 |
mainLayout.addWidget(pTeamShowWidget); |
64 |
QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size()); |
|
65 |
QCoreApplication::postEvent(parentWidget(), pevent); |
|
66 |
} |
|
67 |
||
68 |
void FrameTeams::removeTeam(HWTeam team) |
|
69 |
{ |
|
70 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
71 |
mainLayout.removeWidget(it.value()); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
72 |
delete it.value(); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
73 |
teamToWidget.erase(it); |
184 | 74 |
} |
75 |
||
352 | 76 |
void FrameTeams::setHHNum(const HWTeam& team) |
77 |
{ |
|
78 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
372 | 79 |
if(!pTeamShowWidget) return; |
352 | 80 |
pTeamShowWidget->setHHNum(team.numHedgehogs); |
81 |
} |
|
82 |
||
372 | 83 |
void FrameTeams::setTeamColor(const HWTeam& team) |
84 |
{ |
|
85 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
86 |
if(!pTeamShowWidget) return; |
|
87 |
pTeamShowWidget->changeTeamColor(team.teamColor); |
|
88 |
} |
|
89 |
||
184 | 90 |
QWidget* FrameTeams::getTeamWidget(HWTeam team) |
91 |
{ |
|
92 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
93 |
QWidget* ret = it!=teamToWidget.end() ? it.value() : 0; |
184 | 94 |
return ret; |
95 |
} |
|
96 |
||
97 |
bool FrameTeams::isFullTeams() const |
|
98 |
{ |
|
99 |
return overallHedgehogs==maxHedgehogsPerGame; |
|
100 |
} |
|
372 | 101 |
|
102 |
void FrameTeams::emitTeamColorChanged(const HWTeam& team) |
|
103 |
{ |
|
104 |
emit teamColorChanged(team); |
|
105 |
} |