QTfrontend/teamselhelper.cpp
author unc0rr
Fri, 01 May 2009 09:01:44 +0000
changeset 2021 a591afb43768
parent 1683 af34da5726aa
child 2377 f3fab2b09e0c
permissions -rw-r--r--
Some changes in try to fix issue when you enter room with painted map, but frontend shows generated one (most probably bug is triggered by template filters) Untested.
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: 749
diff changeset
     2
 * Hedgewars, a free turn based strategy game
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 483
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 <QPixmap>
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
#include <QPainter>
229
91043d0c2247 more pretty color choose
displacer
parents: 225
diff changeset
    21
#include <QStyleFactory>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    22
749
3acf2371d73c gcc 4.3 fixes
displacer
parents: 612
diff changeset
    23
#include <algorithm>
3acf2371d73c gcc 4.3 fixes
displacer
parents: 612
diff changeset
    24
1252
2e2719c0a397 - Reorganize headers according to Qt's style guide
unc0rr
parents: 1171
diff changeset
    25
#include "teamselhelper.h"
2e2719c0a397 - Reorganize headers according to Qt's style guide
unc0rr
parents: 1171
diff changeset
    26
#include "hwconsts.h"
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    27
#include "frameTeam.h"
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    28
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    29
void TeamLabel::teamButtonClicked()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    30
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    31
  emit teamActivated(text());
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    32
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    33
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    34
TeamShowWidget::TeamShowWidget(HWTeam team, bool isPlaying, QWidget * parent) :
486
7ea71cd3acd5 - Change proto version to 4
unc0rr
parents: 483
diff changeset
    35
  QWidget(parent), mainLayout(this), m_team(team), m_isPlaying(isPlaying), phhoger(0),
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    36
  colorButt(0)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    37
{
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    38
	QPalette newPalette = palette();
1424
2b45d88716b0 - Some work on team select widget look
unc0rr
parents: 1419
diff changeset
    39
	newPalette.setColor(QPalette::Window, QColor(0x00, 0x00, 0x00));
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    40
	setPalette(newPalette);
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    41
	setAutoFillBackground(true);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    42
1395
46fd70de89e2 Add "Join official server" button
unc0rr
parents: 1389
diff changeset
    43
	mainLayout.setSpacing(3);
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    44
	mainLayout.setMargin(0);
1440
6439fa9af904 Replace grey hedgehogs
unc0rr
parents: 1426
diff changeset
    45
	this->setMaximumHeight(38);
6439fa9af904 Replace grey hedgehogs
unc0rr
parents: 1426
diff changeset
    46
	this->setMinimumHeight(38);
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    47
	QIcon difficultyIcon=team.isNetTeam() ?
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    48
		QIcon(QString(":/res/botlevels/net%1.png").arg(m_team.difficulty))
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    49
		: QIcon(QString(":/res/botlevels/%1.png").arg(m_team.difficulty));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    50
1171
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    51
	butt = new QPushButton(difficultyIcon, team.TeamName, this);
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    52
	butt->setFlat(true);
1683
af34da5726aa Show team owner in tooltip
unc0rr
parents: 1477
diff changeset
    53
	butt->setToolTip(team.Owner);
1171
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    54
	mainLayout.addWidget(butt);
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    55
	butt->setStyleSheet("QPushButton{"
1440
6439fa9af904 Replace grey hedgehogs
unc0rr
parents: 1426
diff changeset
    56
			"icon-size: 48px;"
1171
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    57
			"text-align: left;"
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    58
			"background-color: #0d0544;"
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    59
			"color: orange;"
ab9932feda49 - Start work on team select widget
unc0rr
parents: 1066
diff changeset
    60
			"font: bold;"
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    61
			"border-width: 2px;"
1440
6439fa9af904 Replace grey hedgehogs
unc0rr
parents: 1426
diff changeset
    62
			"margin: 6px 0px 6px 0px;"
6439fa9af904 Replace grey hedgehogs
unc0rr
parents: 1426
diff changeset
    63
			"}");
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    64
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    65
	if(m_isPlaying) {
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    66
		// team color
1389
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    67
		colorButt = new QPushButton(this);
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    68
		colorButt->setMaximumWidth(26);
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    69
		colorButt->setMinimumHeight(26);
6e411559cc7b Customize team select widget background
unc0rr
parents: 1283
diff changeset
    70
		colorButt->setGeometry(0, 0, 26, 26);
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    71
		
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    72
		changeTeamColor();
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    73
		connect(colorButt, SIGNAL(clicked()), this, SLOT(changeTeamColor()));
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    74
		mainLayout.addWidget(colorButt);
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
    75
1419
8650a8f55006 Set custom palette to scrollbars
unc0rr
parents: 1395
diff changeset
    76
		phhoger = new CHedgehogerWidget(QImage(":/res/hh25x25.png"), this);
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    77
		connect(phhoger, SIGNAL(hedgehogsNumChanged()), this, SLOT(hhNumChanged()));
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    78
		mainLayout.addWidget(phhoger);
1426
b80048899fa7 SetMinimumHeight of TeamShowWidget. Probably solves tiny team select widget look
unc0rr
parents: 1424
diff changeset
    79
	} else {
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    80
	}
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    81
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    82
	QObject::connect(butt, SIGNAL(clicked()), this, SLOT(activateTeam()));
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
    83
	//QObject::connect(bText, SIGNAL(clicked()), this, SLOT(activateTeam()));
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    84
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    85
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    86
void TeamShowWidget::setInteractivity(bool interactive)
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    87
{
1475
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    88
	if(m_team.isNetTeam()) {
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    89
		butt->setEnabled(interactive);
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    90
	}
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    91
	
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    92
	colorButt->setEnabled(interactive);
bab5650fc894 - Fix ConfigAsked not sending full config (leads to team divide checkbox inconsistency)
unc0rr
parents: 1440
diff changeset
    93
	phhoger->setEnabled(interactive);
362
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    94
}
b28e0dd48269 hedgehogs num modification now allowed to chief client only
displacer
parents: 352
diff changeset
    95
352
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
    96
void TeamShowWidget::setHHNum(unsigned int num)
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
    97
{
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
    98
  phhoger->setHHNum(num);
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
    99
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   100
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   101
void TeamShowWidget::hhNumChanged()
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   102
{
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   103
  m_team.numHedgehogs=phhoger->getHedgehogsNum();
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   104
  emit hhNmChanged(m_team);
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   105
}
4665bfe25470 first buggy hedgehogs num net change
displacer
parents: 341
diff changeset
   106
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   107
void TeamShowWidget::activateTeam()
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   108
{
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   109
  emit teamStatusChanged(m_team);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   110
}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   111
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 340
diff changeset
   112
/*HWTeamTempParams TeamShowWidget::getTeamParams() const
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   113
{
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   114
  if(!phhoger) throw;
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   115
  HWTeamTempParams params;
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   116
  params.numHedgehogs=phhoger->getHedgehogsNum();
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   117
  params.teamColor=colorButt->palette().color(QPalette::Button);
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   118
  return params;
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 340
diff changeset
   119
}*/
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   120
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   121
void TeamShowWidget::changeTeamColor(QColor color)
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   122
{
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   123
	FrameTeams* pOurFrameTeams=dynamic_cast<FrameTeams*>(parentWidget());
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   124
	if(!color.isValid()) {
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   125
		if(++pOurFrameTeams->currentColor==pOurFrameTeams->availableColors.end()) {
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   126
			pOurFrameTeams->currentColor=pOurFrameTeams->availableColors.begin();
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   127
		}
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   128
		color=*pOurFrameTeams->currentColor;
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   129
	} else {
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   130
		// set according color iterator
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   131
		pOurFrameTeams->currentColor=std::find(pOurFrameTeams->availableColors.begin(),
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   132
				pOurFrameTeams->availableColors.end(), color);
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   133
		if(pOurFrameTeams->currentColor==pOurFrameTeams->availableColors.end()) {
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   134
			// error condition
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   135
			pOurFrameTeams->currentColor=pOurFrameTeams->availableColors.begin();
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   136
		}
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   137
	}
341
184230eb4151 - Store more team specific values in HWTeam
unc0rr
parents: 340
diff changeset
   138
1283
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   139
	colorButt->setStyleSheet(QString("QPushButton{"
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   140
			"background-color: %1;"
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   141
			"border-width: 1px;"
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   142
			"border-radius: 2px;"
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   143
			"}").arg(pOurFrameTeams->currentColor->name()));
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   144
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   145
	m_team.teamColor=color;
a1e99d1e4fd3 Enable back the ability to see chosen team color in team widget
unc0rr
parents: 1252
diff changeset
   146
	emit teamColorChanged(m_team);
207
287077789132 coosing colors added
displacer
parents: 184
diff changeset
   147
}
372
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   148
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   149
HWTeam TeamShowWidget::getTeam() const
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   150
{
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   151
  return m_team;
4bac77f8cd38 network colors (alpha)
displacer
parents: 363
diff changeset
   152
}