QTfrontend/ui/widget/frameTeam.cpp
author Wolfgang Steffens <WolfgangSteff@gmail.com>
Mon, 14 May 2012 19:48:34 +0200
changeset 7082 17b0892ac794
parent 7005 19cddb42326f
child 7130 fcab1fd02bc6
permissions -rw-r--r--
Replaced FFP code that sets up orthogonal projection with explicit matrix calculation. Storing the orthogonal projection in the projection matrix for legacy GL (1.x) rather than in the modelview matrix.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
/*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 616
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 3876
diff changeset
     3
 * Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com>
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 6700
diff changeset
     4
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    15
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
 */
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
1078
8f891269392f Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents: 1066
diff changeset
    20
#include <QResizeEvent>
8f891269392f Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents: 1066
diff changeset
    21
#include <QCoreApplication>
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1179
diff changeset
    22
#include <QPalette>
1078
8f891269392f Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents: 1066
diff changeset
    23
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    24
#include "frameTeam.h"
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    25
#include "teamselhelper.h"
616
00928b3cf505 Use same team colors everywhere
unc0rr
parents: 577
diff changeset
    26
#include "hwconsts.h"
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    27
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    28
FrameTeams::FrameTeams(QWidget* parent) :
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    29
    QFrame(parent), maxHedgehogsPerGame(48), overallHedgehogs(0), mainLayout(this), nonInteractive(false)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    30
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    31
    QPalette newPalette = palette();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    32
    newPalette.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00));
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    33
    setPalette(newPalette);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    34
    setAutoFillBackground(true);
2377
f3fab2b09e0c And in frontend
nemo
parents: 1784
diff changeset
    35
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    36
    mainLayout.setSpacing(1);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    37
    mainLayout.setContentsMargins(4, 4, 4, 4);
2377
f3fab2b09e0c And in frontend
nemo
parents: 1784
diff changeset
    38
3876
3dd031a8b395 Frontend:
smaxx
parents: 2948
diff changeset
    39
    int i = 0;
5201
7b9aa7aac336 * moved colours and default port from .cpp.in to .h
koda
parents: 4976
diff changeset
    40
    while(colors[i] != 0)
7b9aa7aac336 * moved colours and default port from .cpp.in to .h
koda
parents: 4976
diff changeset
    41
        availableColors.push_back(QColor(colors[i++]));
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    42
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    43
    resetColors();
7005
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
    44
    this->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    45
}
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    46
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1424
diff changeset
    47
void FrameTeams::setInteractivity(bool interactive)
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    48
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    49
    nonInteractive = !interactive;
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    50
    for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); ++it)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    51
    {
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    52
        TeamShowWidget* pts = dynamic_cast<TeamShowWidget*>(it.value());
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    53
        if(!pts) throw;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    54
        pts->setInteractivity(interactive);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2377
diff changeset
    55
    }
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    56
}
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    57
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    58
void FrameTeams::resetColors()
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    59
{
6970
59f33a6a4814 display haxx0red teams colors correctly.
sheepluva
parents: 6952
diff changeset
    60
    currentColor = availableColors.last(); // ensure next color is the first one
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    61
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    62
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    63
QColor FrameTeams::getNextColor() const
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    64
{
6970
59f33a6a4814 display haxx0red teams colors correctly.
sheepluva
parents: 6952
diff changeset
    65
    int idx = availableColors.indexOf(currentColor);
59f33a6a4814 display haxx0red teams colors correctly.
sheepluva
parents: 6952
diff changeset
    66
6977
6a2ecad333da adjust column widths
sheepluva
parents: 6970
diff changeset
    67
    idx++;
6a2ecad333da adjust column widths
sheepluva
parents: 6970
diff changeset
    68
6a2ecad333da adjust column widths
sheepluva
parents: 6970
diff changeset
    69
    if (idx >= availableColors.size())
6a2ecad333da adjust column widths
sheepluva
parents: 6970
diff changeset
    70
        idx = 0;
6970
59f33a6a4814 display haxx0red teams colors correctly.
sheepluva
parents: 6952
diff changeset
    71
59f33a6a4814 display haxx0red teams colors correctly.
sheepluva
parents: 6952
diff changeset
    72
    return availableColors.at(idx);
382
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    73
}
e7220e48ead1 colors changing config fully working (still need disabling in slaves)
displacer
parents: 372
diff changeset
    74
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    75
void FrameTeams::addTeam(HWTeam team, bool willPlay)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    76
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    77
    TeamShowWidget* pTeamShowWidget = new TeamShowWidget(team, willPlay, this);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    78
    if(nonInteractive) pTeamShowWidget->setInteractivity(false);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    79
//  int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height();
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    80
    mainLayout.addWidget(pTeamShowWidget);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    81
    teamToWidget.insert(team, pTeamShowWidget);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    82
    QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size());
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    83
    QCoreApplication::postEvent(parentWidget(), pevent);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    84
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    85
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    86
void FrameTeams::removeTeam(HWTeam team)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    87
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    88
    tmapTeamToWidget::iterator it=teamToWidget.find(team);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    89
    if(it==teamToWidget.end()) return;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    90
    mainLayout.removeWidget(it.value());
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    91
    it.value()->deleteLater();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    92
    teamToWidget.erase(it);
7005
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
    93
    QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size());
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
    94
    QCoreApplication::postEvent(parentWidget(), pevent);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    95
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    96
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    97
void FrameTeams::resetTeams()
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
    98
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
    99
    for(tmapTeamToWidget::iterator it=teamToWidget.begin(); it!=teamToWidget.end(); )
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   100
    {
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   101
        mainLayout.removeWidget(it.value());
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   102
        it.value()->deleteLater();
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   103
        teamToWidget.erase(it++);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   104
    }
7005
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   105
    QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size());
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   106
    QCoreApplication::postEvent(parentWidget(), pevent);
383
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
   107
}
09a8795105a4 some disconnect and remove teams bugfixes
displacer
parents: 382
diff changeset
   108
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   109
void FrameTeams::setHHNum(const HWTeam& team)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   110
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   111
    TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team));
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   112
    if(!pTeamShowWidget) return;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   113
    pTeamShowWidget->setHHNum(team.numHedgehogs());
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   114
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 348
diff changeset
   115
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   116
void FrameTeams::setTeamColor(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   117
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   118
    TeamShowWidget* pTeamShowWidget = dynamic_cast<TeamShowWidget*>(getTeamWidget(team));
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   119
    if(!pTeamShowWidget) return;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   120
    pTeamShowWidget->changeTeamColor(team.color());
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   121
}
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   122
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   123
QWidget* FrameTeams::getTeamWidget(HWTeam team)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   124
{
1078
8f891269392f Add a few debug message which show the problem with total hedgehogs number counting
unc0rr
parents: 1066
diff changeset
   125
//qDebug() << "FrameTeams::getTeamWidget getNetID() = " << team.getNetID();
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   126
    tmapTeamToWidget::iterator it=teamToWidget.find(team);
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   127
    QWidget* ret = it!=teamToWidget.end() ? it.value() : 0;
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   128
    return ret;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   129
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   130
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   131
bool FrameTeams::isFullTeams() const
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   132
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   133
    return overallHedgehogs==maxHedgehogsPerGame;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   134
}
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   135
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   136
void FrameTeams::emitTeamColorChanged(const HWTeam& team)
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   137
{
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6060
diff changeset
   138
    emit teamColorChanged(team);
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 362
diff changeset
   139
}
7005
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   140
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   141
QSize FrameTeams::sizeHint() const
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   142
{
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   143
    return QSize(-1, teamToWidget.size() * 39 + 9);
19cddb42326f fix: issue with playing team list vertically collapsing
sheepluva
parents: 6977
diff changeset
   144
}