author | sheepluva |
Sat, 30 Oct 2010 23:25:41 +0200 | |
changeset 4026 | afae5a3b8424 |
parent 3876 | 3dd031a8b395 |
child 4976 | 088d40d8aba2 |
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) : |
|
1784 | 28 |
QFrame(parent), maxHedgehogsPerGame(48), overallHedgehogs(0), mainLayout(this), nonInteractive(false) |
184 | 29 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
30 |
QPalette newPalette = palette(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
31 |
newPalette.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00)); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
32 |
setPalette(newPalette); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
33 |
setAutoFillBackground(true); |
2377 | 34 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
35 |
mainLayout.setSpacing(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
36 |
mainLayout.setContentsMargins(4, 4, 4, 4); |
2377 | 37 |
|
3876 | 38 |
int i = 0; |
39 |
while(colors[i]) |
|
40 |
availableColors.push_back(*colors[i++]); |
|
207 | 41 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
42 |
resetColors(); |
207 | 43 |
} |
44 |
||
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1424
diff
changeset
|
45 |
void FrameTeams::setInteractivity(bool interactive) |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
46 |
{ |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
47 |
nonInteractive = !interactive; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
48 |
for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ++it) { |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
49 |
TeamShowWidget* pts = dynamic_cast<TeamShowWidget*>(it.value()); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
50 |
if(!pts) throw; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
51 |
pts->setInteractivity(interactive); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2377
diff
changeset
|
52 |
} |
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
53 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
352
diff
changeset
|
54 |
|
207 | 55 |
void FrameTeams::resetColors() |
56 |
{ |
|
3876 | 57 |
currentColor=availableColors.end() - 1; // ensure next color is the first one |
184 | 58 |
} |
59 |
||
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
60 |
QColor FrameTeams::getNextColor() const |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
61 |
{ |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
62 |
QList<QColor>::ConstIterator nextColor=currentColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
63 |
++nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
64 |
if (nextColor==availableColors.end()) nextColor=availableColors.begin(); |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
65 |
return *nextColor; |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
66 |
} |
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
372
diff
changeset
|
67 |
|
184 | 68 |
void FrameTeams::addTeam(HWTeam team, bool willPlay) |
69 |
{ |
|
341 | 70 |
TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this); |
1475
bab5650fc894
- Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents:
1424
diff
changeset
|
71 |
if(nonInteractive) pTeamShowWidget->setInteractivity(false); |
184 | 72 |
// int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height(); |
383 | 73 |
mainLayout.addWidget(pTeamShowWidget); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
74 |
teamToWidget.insert(team, pTeamShowWidget); |
184 | 75 |
QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size()); |
76 |
QCoreApplication::postEvent(parentWidget(), pevent); |
|
77 |
} |
|
78 |
||
79 |
void FrameTeams::removeTeam(HWTeam team) |
|
80 |
{ |
|
81 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
|
383 | 82 |
if(it==teamToWidget.end()) return; |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
83 |
mainLayout.removeWidget(it.value()); |
1178 | 84 |
it.value()->deleteLater(); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
85 |
teamToWidget.erase(it); |
184 | 86 |
} |
87 |
||
383 | 88 |
void FrameTeams::resetTeams() |
89 |
{ |
|
90 |
for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ) { |
|
91 |
mainLayout.removeWidget(it.value()); |
|
1179 | 92 |
it.value()->deleteLater(); |
383 | 93 |
teamToWidget.erase(it++); |
94 |
} |
|
95 |
} |
|
96 |
||
352 | 97 |
void FrameTeams::setHHNum(const HWTeam& team) |
98 |
{ |
|
99 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
372 | 100 |
if(!pTeamShowWidget) return; |
352 | 101 |
pTeamShowWidget->setHHNum(team.numHedgehogs); |
102 |
} |
|
103 |
||
372 | 104 |
void FrameTeams::setTeamColor(const HWTeam& team) |
105 |
{ |
|
106 |
TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team)); |
|
107 |
if(!pTeamShowWidget) return; |
|
108 |
pTeamShowWidget->changeTeamColor(team.teamColor); |
|
109 |
} |
|
110 |
||
184 | 111 |
QWidget* FrameTeams::getTeamWidget(HWTeam team) |
112 |
{ |
|
1078
8f891269392f
Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents:
1066
diff
changeset
|
113 |
//qDebug() << "FrameTeams::getTeamWidget getNetID() = " << team.getNetID(); |
184 | 114 |
tmapTeamToWidget::iterator it=teamToWidget.find(team); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
341
diff
changeset
|
115 |
QWidget* ret = it!=teamToWidget.end() ? it.value() : 0; |
184 | 116 |
return ret; |
117 |
} |
|
118 |
||
119 |
bool FrameTeams::isFullTeams() const |
|
120 |
{ |
|
121 |
return overallHedgehogs==maxHedgehogsPerGame; |
|
122 |
} |
|
372 | 123 |
|
124 |
void FrameTeams::emitTeamColorChanged(const HWTeam& team) |
|
125 |
{ |
|
126 |
emit teamColorChanged(team); |
|
127 |
} |