author | displacer |
Mon, 05 Feb 2007 23:26:00 +0000 | |
changeset 396 | 70dfd02845af |
parent 387 | 66345e38826d |
child 482 | 61c617f1bec7 |
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 <QLabel> |
|
20 |
#include <QPixmap> |
|
21 |
#include <QPushButton> |
|
22 |
#include <QFrame> |
|
23 |
||
24 |
#include <vertScrollArea.h> |
|
25 |
#include "teamselect.h" |
|
26 |
#include "teamselhelper.h" |
|
27 |
#include "frameTeam.h" |
|
28 |
||
339
7535ab6c3820
Run game message added, team and config info provided for net game
displacer
parents:
322
diff
changeset
|
29 |
void TeamSelWidget::addTeam(HWTeam team) |
184 | 30 |
{ |
352 | 31 |
if(team.isNetTeam()) { |
322 | 32 |
framePlaying->addTeam(team, true); |
33 |
curPlayingTeams.push_back(team); |
|
352 | 34 |
connect(framePlaying->getTeamWidget(team), SIGNAL(teamStatusChanged(HWTeam)), |
347 | 35 |
this, SLOT(netTeamStatusChanged(const HWTeam&))); |
356
ca3a5dfcae75
network teams hedgehogs nums modifications now working from chief client
displacer
parents:
352
diff
changeset
|
36 |
connect(framePlaying->getTeamWidget(team), SIGNAL(hhNmChanged(const HWTeam&)), |
ca3a5dfcae75
network teams hedgehogs nums modifications now working from chief client
displacer
parents:
352
diff
changeset
|
37 |
this, SLOT(hhNumChanged(const HWTeam&))); |
372 | 38 |
connect(framePlaying->getTeamWidget(team), SIGNAL(teamColorChanged(const HWTeam&)), |
39 |
this, SLOT(proxyTeamColorChanged(const HWTeam&))); |
|
322 | 40 |
} else { |
41 |
frameDontPlaying->addTeam(team, false); |
|
42 |
curDontPlayingTeams.push_back(team); |
|
373 | 43 |
if(m_acceptOuter) { |
44 |
connect(frameDontPlaying->getTeamWidget(team), SIGNAL(teamStatusChanged(HWTeam)), |
|
45 |
this, SLOT(pre_changeTeamStatus(HWTeam))); |
|
46 |
} else { |
|
47 |
connect(frameDontPlaying->getTeamWidget(team), SIGNAL(teamStatusChanged(HWTeam)), |
|
48 |
this, SLOT(changeTeamStatus(HWTeam))); |
|
49 |
} |
|
322 | 50 |
} |
184 | 51 |
} |
52 |
||
362
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
53 |
void TeamSelWidget::setNonInteractive() |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
54 |
{ |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
55 |
framePlaying->setNonInteractive(); |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
56 |
} |
b28e0dd48269
hedgehogs num modification now allowed to chief client only
displacer
parents:
356
diff
changeset
|
57 |
|
352 | 58 |
void TeamSelWidget::hhNumChanged(const HWTeam& team) |
59 |
{ |
|
60 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
|
61 |
itPlay->numHedgehogs=team.numHedgehogs; |
|
62 |
emit hhogsNumChanged(team); |
|
63 |
} |
|
64 |
||
372 | 65 |
void TeamSelWidget::proxyTeamColorChanged(const HWTeam& team) |
66 |
{ |
|
67 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
|
68 |
itPlay->teamColor=team.teamColor; |
|
69 |
emit teamColorChanged(team); |
|
70 |
} |
|
71 |
||
352 | 72 |
void TeamSelWidget::changeHHNum(const HWTeam& team) |
73 |
{ |
|
74 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
|
372 | 75 |
if(itPlay==curPlayingTeams.end()) return; |
352 | 76 |
itPlay->numHedgehogs=team.numHedgehogs; |
77 |
||
78 |
framePlaying->setHHNum(team); |
|
79 |
} |
|
80 |
||
372 | 81 |
void TeamSelWidget::changeTeamColor(const HWTeam& team) |
82 |
{ |
|
83 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
|
84 |
if(itPlay==curPlayingTeams.end()) return; |
|
85 |
itPlay->teamColor=team.teamColor; |
|
86 |
||
87 |
framePlaying->setTeamColor(team); |
|
88 |
} |
|
89 |
||
347 | 90 |
void TeamSelWidget::removeNetTeam(const HWTeam& team) |
91 |
{ |
|
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
92 |
for(;;) { |
352 | 93 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
94 |
if(itPlay==curPlayingTeams.end()) break; |
352 | 95 |
if(itPlay->isNetTeam()) { |
348
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
96 |
QObject::disconnect(framePlaying->getTeamWidget(*itPlay), SIGNAL(teamStatusChanged(HWTeam))); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
97 |
framePlaying->removeTeam(team); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
98 |
curPlayingTeams.erase(itPlay); |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
99 |
break; |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
100 |
} |
c91b983de18f
equal team names huge bug fixed for multiple clients
displacer
parents:
347
diff
changeset
|
101 |
} |
347 | 102 |
} |
103 |
||
104 |
void TeamSelWidget::netTeamStatusChanged(const HWTeam& team) |
|
105 |
{ |
|
352 | 106 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
347 | 107 |
|
108 |
} |
|
109 |
||
184 | 110 |
//void TeamSelWidget::removeTeam(__attribute__ ((unused)) HWTeam team) |
111 |
//{ |
|
112 |
//curDontPlayingTeams.erase(std::find(curDontPlayingTeams.begin(), curDontPlayingTeams.end(), team)); |
|
113 |
//} |
|
114 |
||
115 |
void TeamSelWidget::changeTeamStatus(HWTeam team) |
|
116 |
{ |
|
352 | 117 |
QList<HWTeam>::iterator itDontPlay=std::find(curDontPlayingTeams.begin(), curDontPlayingTeams.end(), team); |
118 |
QList<HWTeam>::iterator itPlay=std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team); |
|
184 | 119 |
|
120 |
bool willBePlaying=itDontPlay!=curDontPlayingTeams.end(); |
|
121 |
||
122 |
if(!willBePlaying) { |
|
123 |
// playing team => dont playing |
|
124 |
curDontPlayingTeams.push_back(*itPlay); |
|
347 | 125 |
emit teamNotPlaying(*itPlay); |
184 | 126 |
curPlayingTeams.erase(itPlay); |
127 |
} else { |
|
128 |
// return if max playing teams reached |
|
129 |
if(framePlaying->isFullTeams()) return; |
|
130 |
// dont playing team => playing |
|
387 | 131 |
itDontPlay->teamColor=framePlaying->getNextColor(); |
184 | 132 |
curPlayingTeams.push_back(*itDontPlay); |
373 | 133 |
if(!m_acceptOuter) emit teamWillPlay(*itDontPlay); |
184 | 134 |
curDontPlayingTeams.erase(itDontPlay); |
135 |
} |
|
136 |
||
137 |
FrameTeams* pRemoveTeams; |
|
138 |
FrameTeams* pAddTeams; |
|
139 |
if(!willBePlaying) { |
|
140 |
pRemoveTeams=framePlaying; |
|
141 |
pAddTeams=frameDontPlaying; |
|
142 |
} else { |
|
143 |
pRemoveTeams=frameDontPlaying; |
|
144 |
pAddTeams=framePlaying; |
|
145 |
} |
|
146 |
||
147 |
pAddTeams->addTeam(team, willBePlaying); |
|
148 |
pRemoveTeams->removeTeam(team); |
|
384
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
149 |
if(!team.isNetTeam() && m_acceptOuter && !willBePlaying) { |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
150 |
connect(frameDontPlaying->getTeamWidget(team), SIGNAL(teamStatusChanged(HWTeam)), |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
151 |
this, SLOT(pre_changeTeamStatus(HWTeam))); |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
152 |
} else { |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
153 |
connect(pAddTeams->getTeamWidget(team), SIGNAL(teamStatusChanged(HWTeam)), |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
154 |
this, SLOT(changeTeamStatus(HWTeam))); |
29299ca39155
adding the same command twice bug fixed for net game
displacer
parents:
383
diff
changeset
|
155 |
} |
372 | 156 |
if(willBePlaying) { |
157 |
connect(framePlaying->getTeamWidget(team), SIGNAL(hhNmChanged(const HWTeam&)), |
|
158 |
this, SLOT(hhNumChanged(const HWTeam&))); |
|
159 |
connect(framePlaying->getTeamWidget(team), SIGNAL(teamColorChanged(const HWTeam&)), |
|
160 |
this, SLOT(proxyTeamColorChanged(const HWTeam&))); |
|
161 |
emit teamColorChanged(((TeamShowWidget*)framePlaying->getTeamWidget(team))->getTeam()); |
|
162 |
} |
|
184 | 163 |
|
164 |
QSize szh=pAddTeams->sizeHint(); |
|
165 |
QSize szh1=pRemoveTeams->sizeHint(); |
|
166 |
if(szh.isValid() && szh1.isValid()) { |
|
167 |
pAddTeams->resize(pAddTeams->size().width(), szh.height()); |
|
168 |
pRemoveTeams->resize(pRemoveTeams->size().width(), szh1.height()); |
|
169 |
} |
|
170 |
} |
|
171 |
||
311 | 172 |
void TeamSelWidget::addScrArea(FrameTeams* pfteams, QColor color, int maxHeight) |
184 | 173 |
{ |
174 |
VertScrArea* area=new VertScrArea(color); |
|
175 |
area->setWidget(pfteams); |
|
176 |
mainLayout.addWidget(area, 30); |
|
311 | 177 |
if (maxHeight > 0) |
178 |
area->setMaximumHeight(maxHeight); |
|
184 | 179 |
} |
180 |
||
181 |
TeamSelWidget::TeamSelWidget(QWidget* parent) : |
|
373 | 182 |
QGroupBox(parent), mainLayout(this), m_acceptOuter(false) |
184 | 183 |
{ |
240 | 184 |
setTitle(QGroupBox::tr("Playing teams")); |
184 | 185 |
framePlaying=new FrameTeams(); |
186 |
frameDontPlaying=new FrameTeams(); |
|
244 | 187 |
// addScrArea(framePlaying, QColor("DarkTurquoise")); |
188 |
// addScrArea(frameDontPlaying, QColor("LightGoldenrodYellow")); |
|
189 |
QPalette p; |
|
311 | 190 |
addScrArea(framePlaying, p.color(QPalette::Window).light(105), 200); |
191 |
addScrArea(frameDontPlaying, p.color(QPalette::Window).dark(105), 0); |
|
192 |
newTeam = new QPushButton(this); |
|
193 |
newTeam->setText(QPushButton::tr("New team")); |
|
194 |
connect(newTeam, SIGNAL(clicked()), this, SLOT(newTeamClicked())); |
|
195 |
mainLayout.addWidget(newTeam); |
|
184 | 196 |
} |
197 |
||
373 | 198 |
void TeamSelWidget::setAcceptOuter(bool acceptOuter) |
199 |
{ |
|
200 |
m_acceptOuter=acceptOuter; |
|
201 |
} |
|
202 |
||
231 | 203 |
void TeamSelWidget::resetPlayingTeams(const QList<HWTeam>& teamslist) |
184 | 204 |
{ |
352 | 205 |
QList<HWTeam>::iterator it; |
383 | 206 |
//for(it=curPlayingTeams.begin(); it!=curPlayingTeams.end(); it++) { |
207 |
//framePlaying->removeTeam(*it); |
|
208 |
//} |
|
209 |
framePlaying->resetTeams(); |
|
207 | 210 |
framePlaying->resetColors(); |
184 | 211 |
curPlayingTeams.clear(); |
383 | 212 |
//for(it=curDontPlayingTeams.begin(); it!=curDontPlayingTeams.end(); it++) { |
213 |
//frameDontPlaying->removeTeam(*it); |
|
214 |
//} |
|
215 |
frameDontPlaying->resetTeams(); |
|
184 | 216 |
curDontPlayingTeams.clear(); |
217 |
||
231 | 218 |
for (QList<HWTeam>::ConstIterator it = teamslist.begin(); it != teamslist.end(); ++it ) { |
184 | 219 |
addTeam(*it); |
220 |
} |
|
221 |
} |
|
222 |
||
223 |
bool TeamSelWidget::isPlaying(HWTeam team) const |
|
224 |
{ |
|
225 |
return std::find(curPlayingTeams.begin(), curPlayingTeams.end(), team)!=curPlayingTeams.end(); |
|
226 |
} |
|
227 |
||
352 | 228 |
QList<HWTeam> TeamSelWidget::getPlayingTeams() const |
184 | 229 |
{ |
230 |
return curPlayingTeams; |
|
231 |
} |
|
232 |
||
373 | 233 |
void TeamSelWidget::pre_changeTeamStatus(HWTeam team) |
234 |
{ |
|
382
e7220e48ead1
colors changing config fully working (still need disabling in slaves)
displacer
parents:
373
diff
changeset
|
235 |
team.teamColor=framePlaying->getNextColor(); |
373 | 236 |
emit acceptRequested(team); |
237 |
} |
|
238 |
||
311 | 239 |
void TeamSelWidget::newTeamClicked() |
240 |
{ |
|
241 |
emit NewTeam(); |
|
242 |
} |