author | unc0rr |
Sun, 26 Oct 2008 17:17:07 +0000 | |
changeset 1424 | 2b45d88716b0 |
parent 1389 | 6e411559cc7b |
child 1475 | bab5650fc894 |
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> |
1389 | 21 |
#include <QPalette> |
1078
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) : |
|
1424 | 28 |
QFrame(parent), maxHedgehogsPerGame(18), overallHedgehogs(0), mainLayout(this), nonInteractive(false) |
184 | 29 |
{ |
1389 | 30 |
QPalette newPalette = palette(); |
1424 | 31 |
newPalette.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00)); |
1389 | 32 |
setPalette(newPalette); |
33 |
setAutoFillBackground(true); |
|
34 |
||
35 |
mainLayout.setSpacing(1); |
|
207 | 36 |
|
1389 | 37 |
availableColors.push_back(*color1); |
38 |
availableColors.push_back(*color2); |
|
39 |
availableColors.push_back(*color3); |
|
40 |
availableColors.push_back(*color4); |
|
41 |
availableColors.push_back(*color5); |
|
42 |
availableColors.push_back(*color6); |
|
207 | 43 |
|
1389 | 44 |
resetColors(); |
207 | 45 |
} |
46 |
||
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
47 |
void FrameTeams::setNonInteractive() |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
48 |
{ |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
49 |
nonInteractive=true; |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
50 |
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
|
51 |
TeamShowWidget* pts=dynamic_cast<TeamShowWidget*>(it.value()); |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
52 |
if(!pts) throw; |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
53 |
pts->setNonInteractive(); |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
54 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
55 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
56 |
|
207 | 57 |
void FrameTeams::resetColors() |
58 |
{ |
|
59 |
currentColor=availableColors.begin(); |
|
184 | 60 |
} |
61 |
||
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
62 |
QColor FrameTeams::getNextColor() const |
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 |
QList<QColor>::ConstIterator nextColor=currentColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
65 |
++nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
66 |
if (nextColor==availableColors.end()) nextColor=availableColors.begin(); |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
67 |
return *nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
68 |
} |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
69 |
|
184 | 70 |
void FrameTeams::addTeam(HWTeam team, bool willPlay) |
71 |
{ |
|
341 | 72 |
TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this); |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
73 |
if(nonInteractive) pTeamShowWidget->setNonInteractive(); |
184 | 74 |
// int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height(); |
383 | 75 |
mainLayout.addWidget(pTeamShowWidget); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
76 |
teamToWidget.insert(team, pTeamShowWidget); |
184 | 77 |
QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size()); |
78 |
QCoreApplication::postEvent(parentWidget(), pevent); |
|
79 |
} |
|
80 |
||
81 |
void FrameTeams::removeTeam(HWTeam team) |
|
82 |
{ |
|
83 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
383 | 84 |
if(it==teamToWidget.end()) return; |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
85 |
mainLayout.removeWidget(it.value()); |
1178 | 86 |
it.value()->deleteLater(); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
87 |
teamToWidget.erase(it); |
184 | 88 |
} |
89 |
||
383 | 90 |
void FrameTeams::resetTeams() |
91 |
{ |
|
92 |
for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ) { |
|
93 |
mainLayout.removeWidget(it.value()); |
|
1179 | 94 |
it.value()->deleteLater(); |
383 | 95 |
teamToWidget.erase(it++); |
96 |
} |
|
97 |
} |
|
98 |
||
352 | 99 |
void FrameTeams::setHHNum(const HWTeam& team) |
100 |
{ |
|
101 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
372 | 102 |
if(!pTeamShowWidget) return; |
352 | 103 |
pTeamShowWidget->setHHNum(team.numHedgehogs); |
104 |
} |
|
105 |
||
372 | 106 |
void FrameTeams::setTeamColor(const HWTeam& team) |
107 |
{ |
|
108 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
109 |
if(!pTeamShowWidget) return; |
|
110 |
pTeamShowWidget->changeTeamColor(team.teamColor); |
|
111 |
} |
|
112 |
||
184 | 113 |
QWidget* FrameTeams::getTeamWidget(HWTeam team) |
114 |
{ |
|
1078
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
115 |
//qDebug() << "FrameTeams::getTeamWidget getNetID() = " << team.getNetID(); |
184 | 116 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
117 |
QWidget* ret = it!=teamToWidget.end() ? it.value() : 0; |
184 | 118 |
return ret; |
119 |
} |
|
120 |
||
121 |
bool FrameTeams::isFullTeams() const |
|
122 |
{ |
|
123 |
return overallHedgehogs==maxHedgehogsPerGame; |
|
124 |
} |
|
372 | 125 |
|
126 |
void FrameTeams::emitTeamColorChanged(const HWTeam& team) |
|
127 |
{ |
|
128 |
emit teamColorChanged(team); |
|
129 |
} |