QTfrontend/frameTeam.cpp
author unc0rr
Sun, 27 Apr 2008 11:21:54 +0000
changeset 881 e550cc9a65a1
parent 616 00928b3cf505
child 1066 1f1b3686a2b0
permissions -rw-r--r--
Update README and ChangeLog
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
/*
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     2
 * Hedgewars, a worms-like game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 383
diff changeset
     3
 * Copyright (c) 2006, 2007 Ulyanov Igor <iulyanov@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
#include "frameTeam.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include "teamselhelper.h"
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    21
#include "hwconsts.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    22
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    23
#include <QResizeEvent>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    24
#include <QCoreApplication>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    25
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    26
FrameTeams::FrameTeams(QWidget* parent) :
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    27
  QWidget(parent), maxHedgehogsPerGame(18), overallHedgehogs(0), mainLayout(this), nonInteractive(false)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    28
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    29
  mainLayout.setSpacing(1);
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    30
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    31
  availableColors.push_back(*color1);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    32
  availableColors.push_back(*color2);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    33
  availableColors.push_back(*color3);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    34
  availableColors.push_back(*color4);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    35
  availableColors.push_back(*color5);
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    36
  availableColors.push_back(*color6);
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    37
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    38
  resetColors();
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    39
}
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    40
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    41
void FrameTeams::setNonInteractive()
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    42
{
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    43
  nonInteractive=true;
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    44
  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
    45
    TeamShowWidget* pts=dynamic_cast<TeamShowWidget*>(it.value());
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    46
    if(!pts) throw;
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    47
    pts->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
}
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    50
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    51
void FrameTeams::resetColors()
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    52
{
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    53
  currentColor=availableColors.begin();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    54
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    55
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    56
QColor FrameTeams::getNextColor() const
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    57
{
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    58
  QList<QColor>::ConstIterator nextColor=currentColor;
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    59
  ++nextColor;
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    60
  if (nextColor==availableColors.end()) nextColor=availableColors.begin();
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    61
  return *nextColor;
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    62
}
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    63
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    64
void FrameTeams::addTeam(HWTeam team, bool willPlay)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    65
{
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 207
diff changeset
    66
  TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this);
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    67
  if(nonInteractive) pTeamShowWidget->setNonInteractive();
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    68
//  int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height();
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    69
  mainLayout.addWidget(pTeamShowWidget);
348
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 341
diff changeset
    70
  teamToWidget.insert(team, pTeamShowWidget);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    71
  QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size());
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    72
  QCoreApplication::postEvent(parentWidget(), pevent);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    73
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    74
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    75
void FrameTeams::removeTeam(HWTeam team)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    76
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    77
  tmapTeamToWidget::iterator it=teamToWidget.find(team);
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    78
  if(it==teamToWidget.end()) return;
348
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 341
diff changeset
    79
  mainLayout.removeWidget(it.value());
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 341
diff changeset
    80
  delete it.value();
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 341
diff changeset
    81
  teamToWidget.erase(it);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    82
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    83
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    84
void FrameTeams::resetTeams()
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    85
{
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    86
  for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ) {
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    87
    mainLayout.removeWidget(it.value());
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    88
    delete it.value();
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    89
    teamToWidget.erase(it++);
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    90
  }
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    91
}
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    92
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    93
void FrameTeams::setHHNum(const HWTeam& team)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    94
{
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    95
  TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team));
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
    96
  if(!pTeamShowWidget) return;
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    97
  pTeamShowWidget->setHHNum(team.numHedgehogs);
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    98
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
    99
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   100
void FrameTeams::setTeamColor(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   101
{
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   102
  TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team));
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   103
  if(!pTeamShowWidget) return;
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   104
  pTeamShowWidget->changeTeamColor(team.teamColor);
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   105
}
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   106
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   107
QWidget* FrameTeams::getTeamWidget(HWTeam team)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   108
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   109
  tmapTeamToWidget::iterator it=teamToWidget.find(team);
348
c91b983de18f equal team names huge bug fixed for multiple clients
displacer
parents: 341
diff changeset
   110
  QWidget* ret = it!=teamToWidget.end() ? it.value() : 0;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   111
  return ret;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   112
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   113
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   114
bool FrameTeams::isFullTeams() const
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   115
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   116
  return overallHedgehogs==maxHedgehogsPerGame;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   117
}
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   118
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   119
void FrameTeams::emitTeamColorChanged(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   120
{
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   121
  emit teamColorChanged(team);
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   122
}