author | unc0rr |
Sun, 13 Jul 2008 11:39:02 +0000 | |
changeset 1078 | 8f891269392f |
parent 1066 | 1f1b3686a2b0 |
child 1178 | 62724f4bbb96 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
486 | 3 |
* Copyright (c) 2006, 2007 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 |
||
1078
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
19 |
#include <QResizeEvent> |
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
20 |
#include <QCoreApplication> |
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
21 |
#include <QDebug> |
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
22 |
|
184 | 23 |
#include "frameTeam.h" |
24 |
#include "teamselhelper.h" |
|
616 | 25 |
#include "hwconsts.h" |
184 | 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 |
|
616 | 32 |
availableColors.push_back(*color1); |
33 |
availableColors.push_back(*color2); |
|
34 |
availableColors.push_back(*color3); |
|
35 |
availableColors.push_back(*color4); |
|
36 |
availableColors.push_back(*color5); |
|
37 |
availableColors.push_back(*color6); |
|
207 | 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 |
||
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
57 |
QColor FrameTeams::getNextColor() const |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
58 |
{ |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
59 |
QList<QColor>::ConstIterator nextColor=currentColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
60 |
++nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
61 |
if (nextColor==availableColors.end()) nextColor=availableColors.begin(); |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
62 |
return *nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
63 |
} |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
64 |
|
184 | 65 |
void FrameTeams::addTeam(HWTeam team, bool willPlay) |
66 |
{ |
|
341 | 67 |
TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this); |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
68 |
if(nonInteractive) pTeamShowWidget->setNonInteractive(); |
184 | 69 |
// int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height(); |
383 | 70 |
mainLayout.addWidget(pTeamShowWidget); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
71 |
teamToWidget.insert(team, pTeamShowWidget); |
184 | 72 |
QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size()); |
73 |
QCoreApplication::postEvent(parentWidget(), pevent); |
|
74 |
} |
|
75 |
||
76 |
void FrameTeams::removeTeam(HWTeam team) |
|
77 |
{ |
|
78 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
383 | 79 |
if(it==teamToWidget.end()) return; |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
80 |
mainLayout.removeWidget(it.value()); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
81 |
delete it.value(); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
82 |
teamToWidget.erase(it); |
184 | 83 |
} |
84 |
||
383 | 85 |
void FrameTeams::resetTeams() |
86 |
{ |
|
87 |
for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ) { |
|
88 |
mainLayout.removeWidget(it.value()); |
|
89 |
delete it.value(); |
|
90 |
teamToWidget.erase(it++); |
|
91 |
} |
|
92 |
} |
|
93 |
||
352 | 94 |
void FrameTeams::setHHNum(const HWTeam& team) |
95 |
{ |
|
96 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
372 | 97 |
if(!pTeamShowWidget) return; |
352 | 98 |
pTeamShowWidget->setHHNum(team.numHedgehogs); |
99 |
} |
|
100 |
||
372 | 101 |
void FrameTeams::setTeamColor(const HWTeam& team) |
102 |
{ |
|
103 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
104 |
if(!pTeamShowWidget) return; |
|
105 |
pTeamShowWidget->changeTeamColor(team.teamColor); |
|
106 |
} |
|
107 |
||
184 | 108 |
QWidget* FrameTeams::getTeamWidget(HWTeam team) |
109 |
{ |
|
1078
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
110 |
//qDebug() << "FrameTeams::getTeamWidget getNetID() = " << team.getNetID(); |
184 | 111 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
112 |
QWidget* ret = it!=teamToWidget.end() ? it.value() : 0; |
184 | 113 |
return ret; |
114 |
} |
|
115 |
||
116 |
bool FrameTeams::isFullTeams() const |
|
117 |
{ |
|
118 |
return overallHedgehogs==maxHedgehogsPerGame; |
|
119 |
} |
|
372 | 120 |
|
121 |
void FrameTeams::emitTeamColorChanged(const HWTeam& team) |
|
122 |
{ |
|
123 |
emit teamColorChanged(team); |
|
124 |
} |