author | sheepluva |
Tue, 11 Nov 2014 21:55:38 +0100 | |
changeset 10489 | bde3e43d7b27 |
parent 10108 | c68cf030eded |
child 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
1 |
/* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
4 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
8 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
13 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
17 |
*/ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
18 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
19 |
#include <QGridLayout> |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
20 |
#include <QHBoxLayout> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
21 |
#include <QPushButton> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
22 |
#include <QComboBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
23 |
#include <QLabel> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
24 |
#include <QLineEdit> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
25 |
#include <QTabWidget> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
26 |
#include <QGroupBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
27 |
#include <QToolBox> |
6024 | 28 |
#include <QMessageBox> |
7260 | 29 |
#include <QStandardItemModel> |
30 |
#include <QDebug> |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
31 |
#include "SquareLabel.h" |
5252 | 32 |
#include "HWApplication.h" |
8346 | 33 |
#include "keybinder.h" |
6196 | 34 |
|
6930 | 35 |
#include "DataManager.h" |
8374 | 36 |
#include "hatbutton.h" |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
37 |
|
6196 | 38 |
#include "pageeditteam.h" |
39 |
||
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
40 |
QLayout * PageEditTeam::bodyLayoutDefinition() |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
41 |
{ |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
42 |
QGridLayout * pageLayout = new QGridLayout(); |
8346 | 43 |
tbw = new QTabWidget(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
44 |
QWidget * page1 = new QWidget(this); |
8346 | 45 |
binder = new KeyBinder(this, tr("Select an action to choose a custom key bind for this team"), tr("Use my default"), tr("Reset all binds")); |
46 |
connect(binder, SIGNAL(resetAllBinds()), this, SLOT(resetAllBinds())); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
47 |
tbw->addTab(page1, tr("General")); |
8346 | 48 |
tbw->addTab(binder, tr("Custom Controls")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
49 |
pageLayout->addWidget(tbw, 0, 0, 1, 3); |
6024 | 50 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
51 |
QHBoxLayout * page1Layout = new QHBoxLayout(page1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
52 |
page1Layout->setAlignment(Qt::AlignTop); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
53 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
54 |
// ====== Page 1 ====== |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
55 |
QVBoxLayout * vbox1 = new QVBoxLayout(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
56 |
QVBoxLayout * vbox2 = new QVBoxLayout(); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
57 |
page1Layout->addLayout(vbox1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
58 |
page1Layout->addLayout(vbox2); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
59 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
60 |
GBoxHedgehogs = new QGroupBox(this); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
61 |
GBoxHedgehogs->setTitle(QGroupBox::tr("Team Members")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
62 |
GBoxHedgehogs->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
63 |
QGridLayout * GBHLayout = new QGridLayout(GBoxHedgehogs); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
64 |
|
6953
4c2dd25630a7
* make HatModel update automatically (also renamed class and files)
sheepluva
parents:
6952
diff
changeset
|
65 |
|
8374 | 66 |
GBHLayout->addWidget(new QLabel(tr("Hat")), 0, 0); |
67 |
GBHLayout->addWidget(new QLabel(tr("Name")), 0, 1); |
|
68 |
||
6024 | 69 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
70 |
{ |
8374 | 71 |
HHHats[i] = new HatButton(GBoxHedgehogs); |
72 |
GBHLayout->addWidget(HHHats[i], i + 1, 0); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
73 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
74 |
HHNameEdit[i] = new QLineEdit(GBoxHedgehogs); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
75 |
HHNameEdit[i]->setMaxLength(64); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
76 |
HHNameEdit[i]->setMinimumWidth(120); |
8374 | 77 |
HHNameEdit[i]->setFixedHeight(36); |
78 |
HHNameEdit[i]->setWhatsThis(tr("This hedgehog's name")); |
|
79 |
HHNameEdit[i]->setStyleSheet("padding: 6px;"); |
|
80 |
GBHLayout->addWidget(HHNameEdit[i], i + 1, 1); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
81 |
|
8374 | 82 |
btnRandomHogName[i] = addButton(":/res/dice.png", GBHLayout, i + 1, 3, 1, 1, true); |
83 |
btnRandomHogName[i]->setFixedHeight(HHNameEdit[i]->height()); |
|
84 |
btnRandomHogName[i]->setWhatsThis(tr("Randomize this hedgehog's name")); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
85 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
86 |
|
8374 | 87 |
btnRandomTeam = new QPushButton(); |
88 |
btnRandomTeam->setText(tr("Random Team")); |
|
89 |
btnRandomTeam->setStyleSheet("padding: 6px 10px;"); |
|
90 |
GBHLayout->addWidget(btnRandomTeam, 9, 0, 1, 4, Qt::AlignCenter); |
|
91 |
btnRandomTeam->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
92 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
93 |
vbox1->addWidget(GBoxHedgehogs); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
94 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
95 |
GBoxTeam = new QGroupBox(this); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
96 |
GBoxTeam->setTitle(QGroupBox::tr("Team Settings")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
97 |
GBoxTeam->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
98 |
QGridLayout * GBTLayout = new QGridLayout(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
99 |
QLabel * tmpLabel = new QLabel(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
100 |
tmpLabel->setText(QLabel::tr("Name")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
101 |
GBTLayout->addWidget(tmpLabel, 0, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
102 |
tmpLabel = new QLabel(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
103 |
tmpLabel->setText(QLabel::tr("Type")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
104 |
GBTLayout->addWidget(tmpLabel, 1, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
105 |
tmpLabel = new QLabel(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
106 |
tmpLabel->setText(QLabel::tr("Grave")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
107 |
GBTLayout->addWidget(tmpLabel, 2, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
108 |
tmpLabel = new QLabel(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
109 |
tmpLabel->setText(QLabel::tr("Flag")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
110 |
GBTLayout->addWidget(tmpLabel, 3, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
111 |
tmpLabel = new QLabel(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
112 |
tmpLabel->setText(QLabel::tr("Voice")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
113 |
GBTLayout->addWidget(tmpLabel, 4, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
114 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
115 |
TeamNameEdit = new QLineEdit(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
116 |
TeamNameEdit->setMaxLength(64); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
117 |
GBTLayout->addWidget(TeamNameEdit, 0, 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
118 |
vbox2->addWidget(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
119 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
120 |
CBTeamLvl = new QComboBox(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
121 |
CBTeamLvl->setIconSize(QSize(48, 48)); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
122 |
CBTeamLvl->addItem(QIcon(":/res/botlevels/0.png"), QComboBox::tr("Human")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
123 |
for(int i = 5; i > 0; i--) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
124 |
CBTeamLvl->addItem( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
125 |
QIcon(QString(":/res/botlevels/%1.png").arg(6 - i)), |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
126 |
QString("%1 %2").arg(QComboBox::tr("Level")).arg(i) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
127 |
); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
128 |
GBTLayout->addWidget(CBTeamLvl, 1, 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
129 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
130 |
CBGrave = new QComboBox(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
131 |
CBGrave->setMaxCount(65535); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
132 |
CBGrave->setIconSize(QSize(32, 32)); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
133 |
GBTLayout->addWidget(CBGrave, 2, 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
134 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
135 |
CBFlag = new QComboBox(GBoxTeam); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
136 |
CBFlag->setMaxCount(65535); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
137 |
CBFlag->setIconSize(QSize(22, 15)); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
138 |
GBTLayout->addWidget(CBFlag, 3, 1); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
139 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
140 |
QHBoxLayout * hbox = new QHBoxLayout(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
141 |
CBVoicepack = new QComboBox(GBoxTeam); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
142 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
143 |
hbox->addWidget(CBVoicepack, 100); |
7781
6505805e7f98
crude workaround for problem inu reported with sound button
nemo
parents:
7553
diff
changeset
|
144 |
btnTestSound = addSoundlessButton(":/res/PlaySound.png", hbox, 1, true); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
145 |
hbox->setStretchFactor(btnTestSound, 1); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
146 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
147 |
GBTLayout->addLayout(hbox, 4, 1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
148 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
149 |
GBoxFort = new QGroupBox(this); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
150 |
GBoxFort->setTitle(QGroupBox::tr("Fort")); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
151 |
QGridLayout * GBFLayout = new QGridLayout(GBoxFort); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
152 |
CBFort = new QComboBox(GBoxFort); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
153 |
CBFort->setMaxCount(65535); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
154 |
GBFLayout->addWidget(CBFort, 0, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
155 |
FortPreview = new SquareLabel(GBoxFort); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
156 |
FortPreview->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
157 |
FortPreview->setMinimumSize(128, 128); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
158 |
FortPreview->setPixmap(QPixmap()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
159 |
// perhaps due to handling its own paintevents, SquareLabel doesn't play nice with the stars |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
160 |
//FortPreview->setAttribute(Qt::WA_PaintOnScreen, true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
161 |
GBFLayout->addWidget(FortPreview, 1, 0); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
162 |
vbox2->addWidget(GBoxFort); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
163 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
164 |
vbox1->addStretch(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
165 |
vbox2->addStretch(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
166 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
167 |
return pageLayout; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
168 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
169 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
170 |
QLayout * PageEditTeam::footerLayoutDefinition() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
171 |
{ |
6525
6c97379c584b
[GCI] backz task: unify the back button functionality, avoid using the save button
m4tx
parents:
6212
diff
changeset
|
172 |
return NULL; |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
173 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
174 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
175 |
void PageEditTeam::connectSignals() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
176 |
{ |
8384 | 177 |
connect(this, SIGNAL(pageLeave()), this, SLOT(saveTeam())); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
178 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
179 |
signalMapper1 = new QSignalMapper(this); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
180 |
signalMapper2 = new QSignalMapper(this); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
181 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
182 |
connect(signalMapper1, SIGNAL(mapped(int)), this, SLOT(fixHHname(int))); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
183 |
connect(signalMapper2, SIGNAL(mapped(int)), this, SLOT(setRandomName(int))); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
184 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
185 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
186 |
{ |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
187 |
connect(HHNameEdit[i], SIGNAL(editingFinished()), signalMapper1, SLOT(map())); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
188 |
signalMapper1->setMapping(HHNameEdit[i], i); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
189 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
190 |
connect(btnRandomHogName[i], SIGNAL(clicked()), signalMapper2, SLOT(map())); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
191 |
signalMapper2->setMapping(btnRandomHogName[i], i); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
192 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
193 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
194 |
connect(btnRandomTeam, SIGNAL(clicked()), this, SLOT(setRandomNames())); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
195 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
196 |
connect(btnTestSound, SIGNAL(clicked()), this, SLOT(testSound())); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
197 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
198 |
connect(CBFort, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(CBFort_activated(const QString &))); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
199 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
200 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
201 |
PageEditTeam::PageEditTeam(QWidget* parent) : |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
202 |
AbstractPage(parent) |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
203 |
{ |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
204 |
initPage(); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
205 |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
206 |
m_playerHash = "0000000000000000000000000000000000000000"; |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
207 |
m_loaded = false; |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
208 |
} |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
209 |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
210 |
void PageEditTeam::lazyLoad() |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
211 |
{ |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
212 |
if(m_loaded) return; |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
213 |
m_loaded = true; |
9738 | 214 |
qDebug("[LAZINESS] PageEditTeam::lazyLoad()"); |
215 |
||
216 |
HatModel * hatsModel = DataManager::instance().hatModel(); |
|
217 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
|
218 |
HHHats[i]->setModel(hatsModel); |
|
219 |
||
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
220 |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
221 |
QRegExp pngSuffix("\\.png$"); |
6930 | 222 |
DataManager & dataMgr = DataManager::instance(); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
223 |
QStringList list; |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
224 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
225 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
226 |
// voicepacks |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
227 |
list = dataMgr.entryList("Sounds/voices", |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
228 |
QDir::AllDirs | QDir::NoDotAndDotDot); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
229 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
230 |
CBVoicepack->addItems(list); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
231 |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
232 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
233 |
// forts |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
234 |
list = dataMgr.entryList("Forts", QDir::Files, QStringList("*L.png")); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
235 |
list.replaceInStrings(QRegExp("L\\.png$"), ""); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
236 |
CBFort->addItems(list); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
237 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
238 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
239 |
// graves |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
240 |
list = |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
241 |
dataMgr.entryList("Graphics/Graves", QDir::Files, QStringList("*.png")); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
242 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
243 |
foreach (QString file, list) |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
244 |
{ |
8049 | 245 |
QPixmap pix("physfs://Graphics/Graves/" + file); |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
246 |
if ((pix.height() > 32) || pix.width() > 32) |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
247 |
pix = pix.copy(0, 0, 32, 32); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
248 |
QIcon icon(pix); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
249 |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
250 |
QString grave = file.remove(pngSuffix); |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
251 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
252 |
CBGrave->addItem(icon, grave); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
253 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
254 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
255 |
// flags |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
256 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
257 |
list = |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
258 |
dataMgr.entryList("Graphics/Flags", QDir::Files, QStringList("*.png")); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
259 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
260 |
// skip cpu and hedgewars flags |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
261 |
int idx = list.indexOf("cpu.png"); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
262 |
if (idx >= 0) |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
263 |
list.removeAt(idx); |
7495 | 264 |
idx = list.indexOf("cpu_plain.png"); |
265 |
if (idx >= 0) |
|
266 |
list.removeAt(idx); |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
267 |
idx = list.indexOf("hedgewars.png"); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
268 |
if (idx >= 0) |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
269 |
list.removeAt(idx); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
270 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
271 |
// add the default flag |
8049 | 272 |
QPixmap hwFlag("physfs://Graphics/Flags/hedgewars.png"); |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
273 |
CBFlag->addItem(QIcon(hwFlag.copy(0, 0, 22, 15)), "Hedgewars", "hedgewars"); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
274 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
275 |
// add seperator after |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
276 |
CBFlag->insertSeparator(1); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
277 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
278 |
int insertAt = 2; // insert country flags after Hedgewars flag and seperator |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
279 |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
280 |
// add all country flags |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
281 |
foreach (const QString & file, list) |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
282 |
{ |
8049 | 283 |
QIcon icon(QPixmap("physfs://Graphics/Flags/" + file)); |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
284 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
285 |
QString flag = QString(file).remove(pngSuffix); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
286 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
287 |
bool isCountryFlag = !file.startsWith("cm_"); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
288 |
|
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
289 |
if (isCountryFlag) |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
290 |
{ |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
291 |
CBFlag->insertItem(insertAt, icon, flag.replace("_", " "), flag); |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
292 |
insertAt++; |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
293 |
} |
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
294 |
else // append community flags at end |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
295 |
CBFlag->addItem(icon, flag.replace("cm_", QComboBox::tr("Community") + ": "), flag); |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5204
diff
changeset
|
296 |
} |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
297 |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
298 |
// add separator between country flags and community flags |
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
299 |
CBFlag->insertSeparator(insertAt); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
300 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
301 |
|
5907
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
302 |
void PageEditTeam::fixHHname(int idx) |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
303 |
{ |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
304 |
HHNameEdit[idx]->setText(HHNameEdit[idx]->text().trimmed()); |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
305 |
|
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
306 |
if (HHNameEdit[idx]->text().isEmpty()) |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
307 |
HHNameEdit[idx]->setText(QLineEdit::tr("hedgehog %1").arg(idx+1)); |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
308 |
} |
64ccc6be0ec5
team edit: restore default hedgehog name if name is empty- since empty names are not supported and will lead to errors; also lupdate
sheepluva
parents:
5886
diff
changeset
|
309 |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
310 |
void PageEditTeam::CBFort_activated(const QString & fortname) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
311 |
{ |
8049 | 312 |
QPixmap pix("physfs://Forts/" + fortname + "L.png"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
313 |
FortPreview->setPixmap(pix); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
314 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
315 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
316 |
void PageEditTeam::testSound() |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
317 |
{ |
6930 | 318 |
DataManager & dataMgr = DataManager::instance(); |
6196 | 319 |
|
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
320 |
QString voiceDir = QString("Sounds/voices/") + CBVoicepack->currentText(); |
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
321 |
|
6196 | 322 |
QStringList list = dataMgr.entryList( |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
323 |
voiceDir, |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
324 |
QDir::Files, |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
325 |
QStringList() << |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
326 |
"Illgetyou.ogg" << |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
327 |
"Incoming.ogg" << |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
328 |
"Stupid.ogg" << |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
329 |
"Coward.ogg" << |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
330 |
"Firstblood.ogg" |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6525
diff
changeset
|
331 |
); |
6165
6fe3e922246e
moving and renaming SDLs.*, making it a singleton; cleaning up class responsibilties wrt SDLInteraction; some comments
sheepluva
parents:
6060
diff
changeset
|
332 |
|
6167 | 333 |
if (!list.isEmpty()) |
8913 | 334 |
SDLInteraction::instance().playSoundFile("/" + voiceDir + "/" + |
8049 | 335 |
list[rand() % list.size()]); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
336 |
} |
6024 | 337 |
|
338 |
void PageEditTeam::createTeam(const QString & name, const QString & playerHash) |
|
339 |
{ |
|
340 |
m_playerHash = playerHash; |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
341 |
lazyLoad(); |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
342 |
|
6024 | 343 |
HWTeam newTeam(name); |
344 |
loadTeam(newTeam); |
|
345 |
} |
|
346 |
||
347 |
void PageEditTeam::editTeam(const QString & name, const QString & playerHash) |
|
348 |
{ |
|
349 |
m_playerHash = playerHash; |
|
9511
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
350 |
lazyLoad(); |
1be565d7b4b7
Fill PageEditTeam containers only when it is actually required:
unc0rr
parents:
9080
diff
changeset
|
351 |
|
6024 | 352 |
HWTeam team(name); |
353 |
team.loadFromFile(); |
|
354 |
loadTeam(team); |
|
355 |
} |
|
356 |
||
357 |
void PageEditTeam::deleteTeam(const QString & name) |
|
358 |
{ |
|
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
359 |
QMessageBox reallyDeleteMsg(this); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
360 |
reallyDeleteMsg.setIcon(QMessageBox::Question); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
361 |
reallyDeleteMsg.setWindowTitle(QMessageBox::tr("Teams - Are you sure?")); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
362 |
reallyDeleteMsg.setText(QMessageBox::tr("Do you really want to delete the team '%1'?").arg(name)); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
363 |
reallyDeleteMsg.setWindowModality(Qt::WindowModal); |
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
364 |
reallyDeleteMsg.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel); |
6024 | 365 |
|
7794
ab7b94c03bc9
QMessageBox overhaul: unify buttons, style and appearance of info dialogs, fixing a few typos and return values along the way
koda
parents:
7781
diff
changeset
|
366 |
if (reallyDeleteMsg.exec() == QMessageBox::Ok) |
6024 | 367 |
HWTeam(name).deleteFile(); |
368 |
} |
|
369 |
||
370 |
void PageEditTeam::setRandomNames() |
|
371 |
{ |
|
372 |
HWTeam team = data(); |
|
373 |
HWNamegen::teamRandomNames(team, true); |
|
374 |
loadTeam(team); |
|
375 |
} |
|
376 |
||
377 |
void PageEditTeam::setRandomName(int hh_index) |
|
378 |
{ |
|
379 |
HWTeam team = data(); |
|
380 |
HWNamegen::teamRandomName(team,hh_index); |
|
381 |
loadTeam(team); |
|
382 |
} |
|
383 |
||
384 |
void PageEditTeam::loadTeam(const HWTeam & team) |
|
385 |
{ |
|
8346 | 386 |
tbw->setCurrentIndex(0); |
387 |
binder->resetInterface(); |
|
8434 | 388 |
|
6024 | 389 |
TeamNameEdit->setText(team.name()); |
390 |
CBTeamLvl->setCurrentIndex(team.difficulty()); |
|
391 |
||
392 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
|
393 |
{ |
|
394 |
HWHog hh = team.hedgehog(i); |
|
395 |
||
396 |
HHNameEdit[i]->setText(hh.Name); |
|
397 |
||
398 |
if (hh.Hat.startsWith("Reserved")) |
|
6195
6c9ada03602d
* fixing my hat preview bug nemo pointed out (thanks!)
sheepluva
parents:
6167
diff
changeset
|
399 |
hh.Hat = "Reserved "+hh.Hat.remove(0,40); |
6024 | 400 |
|
8374 | 401 |
HHHats[i]->setCurrentHat(hh.Hat); |
6024 | 402 |
} |
403 |
||
404 |
CBGrave->setCurrentIndex(CBGrave->findText(team.grave())); |
|
405 |
CBFlag->setCurrentIndex(CBFlag->findData(team.flag())); |
|
406 |
||
407 |
CBFort->setCurrentIndex(CBFort->findText(team.fort())); |
|
408 |
CBVoicepack->setCurrentIndex(CBVoicepack->findText(team.voicepack())); |
|
409 |
||
7260 | 410 |
QStandardItemModel * binds = DataManager::instance().bindsModel(); |
6024 | 411 |
for(int i = 0; i < BINDS_NUMBER; i++) |
412 |
{ |
|
8346 | 413 |
if (team.keyBind(i).isEmpty()) continue; |
8434 | 414 |
|
7260 | 415 |
QModelIndexList mdl = binds->match(binds->index(0, 0), Qt::UserRole + 1, team.keyBind(i), 1, Qt::MatchExactly); |
416 |
||
417 |
if(mdl.size() == 1) |
|
8346 | 418 |
binder->setBindIndex(i, mdl[0].row()); |
7260 | 419 |
else |
420 |
qDebug() << "Binds: cannot find" << team.keyBind(i); |
|
6024 | 421 |
} |
422 |
} |
|
423 |
||
424 |
HWTeam PageEditTeam::data() |
|
425 |
{ |
|
426 |
HWTeam team(TeamNameEdit->text()); |
|
427 |
team.setDifficulty(CBTeamLvl->currentIndex()); |
|
428 |
||
429 |
for(int i = 0; i < HEDGEHOGS_PER_TEAM; i++) |
|
430 |
{ |
|
431 |
HWHog hh; |
|
432 |
hh.Name = HHNameEdit[i]->text(); |
|
8374 | 433 |
hh.Hat = HHHats[i]->currentHat(); |
6024 | 434 |
|
435 |
if (hh.Hat.startsWith("Reserved")) |
|
436 |
hh.Hat = "Reserved"+m_playerHash+hh.Hat.remove(0,9); |
|
437 |
||
438 |
team.setHedgehog(i,hh); |
|
439 |
} |
|
440 |
||
441 |
team.setGrave(CBGrave->currentText()); |
|
442 |
team.setFort(CBFort->currentText()); |
|
443 |
team.setVoicepack(CBVoicepack->currentText()); |
|
444 |
team.setFlag(CBFlag->itemData(CBFlag->currentIndex()).toString()); |
|
445 |
||
7260 | 446 |
QStandardItemModel * binds = DataManager::instance().bindsModel(); |
6024 | 447 |
for(int i = 0; i < BINDS_NUMBER; i++) |
448 |
{ |
|
8346 | 449 |
team.bindKey(i, binds->index(binder->bindIndex(i), 0).data(Qt::UserRole + 1).toString()); |
6024 | 450 |
} |
451 |
||
452 |
return team; |
|
453 |
} |
|
454 |
||
455 |
void PageEditTeam::saveTeam() |
|
456 |
{ |
|
457 |
data().saveToFile(); |
|
458 |
} |
|
8346 | 459 |
|
460 |
// When the "Use default for all binds" is pressed... |
|
461 |
void PageEditTeam::resetAllBinds() |
|
462 |
{ |
|
463 |
for (int i = 0; i < BINDS_NUMBER; i++) |
|
464 |
binder->setBindIndex(i, 0); |
|
465 |
} |