author | unc0rr |
Fri, 13 Mar 2009 21:39:59 +0000 | |
changeset 1890 | de5cfe3beb22 |
parent 1887 | d68939b3f7f0 |
child 1895 | 7ba647a88b2f |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1878
b3b277d2b891
own md5 function, no qca2 dependancy (patch by nemo with Qt adaptation by me)
unc0rr
parents:
1877
diff
changeset
|
3 |
* Copyright (c) 2006, 2007, 2009 Andrey Korotaev <unC0Rr@gmail.com> |
184 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QResizeEvent> |
|
218 | 20 |
#include <QGroupBox> |
311 | 21 |
#include <QCheckBox> |
22 |
#include <QGridLayout> |
|
23 |
#include <QSpinBox> |
|
24 |
#include <QLabel> |
|
1517 | 25 |
#include <QMessageBox> |
1884 | 26 |
#include <QTableView> |
1885 | 27 |
#include <QPushButton> |
1217 | 28 |
|
184 | 29 |
#include "gamecfgwidget.h" |
1217 | 30 |
#include "igbox.h" |
1517 | 31 |
#include "hwconsts.h" |
1884 | 32 |
#include "ammoSchemeModel.h" |
184 | 33 |
|
349 | 34 |
GameCFGWidget::GameCFGWidget(QWidget* parent, bool externalControl) : |
1217 | 35 |
QGroupBox(parent), mainLayout(this) |
184 | 36 |
{ |
240 | 37 |
mainLayout.setMargin(0); |
1217 | 38 |
// mainLayout.setSizeConstraint(QLayout::SetMinimumSize); |
218 | 39 |
|
1217 | 40 |
pMapContainer = new HWMapContainer(this); |
41 |
mainLayout.addWidget(pMapContainer, 0, 0); |
|
218 | 42 |
|
1217 | 43 |
IconedGroupBox *GBoxOptions = new IconedGroupBox(this); |
218 | 44 |
GBoxOptions->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); |
45 |
mainLayout.addWidget(GBoxOptions); |
|
46 |
||
311 | 47 |
QGridLayout *GBoxOptionsLayout = new QGridLayout(GBoxOptions); |
1884 | 48 |
|
1890 | 49 |
GameSchemes = new QComboBox(GBoxOptions); |
50 |
GBoxOptionsLayout->addWidget(GameSchemes, 0, 1); |
|
1885 | 51 |
|
52 |
QPushButton * goToSchemePage = new QPushButton(GBoxOptions); |
|
53 |
goToSchemePage->setText(tr("Edit schemes")); |
|
54 |
GBoxOptionsLayout->addWidget(goToSchemePage, 1, 0, 1, 2); |
|
55 |
connect(goToSchemePage, SIGNAL(clicked()), this, SIGNAL(goToSchemes())); |
|
1427 | 56 |
|
1784 | 57 |
GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Weapons"), GBoxOptions), 8, 0); |
311 | 58 |
|
697 | 59 |
WeaponsName = new QComboBox(GBoxOptions); |
1784 | 60 |
GBoxOptionsLayout->addWidget(WeaponsName, 8, 1); |
1874 | 61 |
|
1531 | 62 |
connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int))); |
486 | 63 |
|
1874 | 64 |
connect(pMapContainer, SIGNAL(seedChanged(const QString &)), this, SLOT(seedChanged(const QString &))); |
65 |
connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &))); |
|
66 |
connect(pMapContainer, SIGNAL(themeChanged(const QString &)), this, SLOT(themeChanged(const QString &))); |
|
1876 | 67 |
connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int))); |
184 | 68 |
} |
69 |
||
1890 | 70 |
QVariant GameCFGWidget::schemeData(int column) const |
71 |
{ |
|
72 |
return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column)); |
|
73 |
} |
|
74 |
||
318 | 75 |
quint32 GameCFGWidget::getGameFlags() const |
184 | 76 |
{ |
77 |
quint32 result = 0; |
|
1427 | 78 |
|
1890 | 79 |
if (schemeData(1).toBool()) |
1428 | 80 |
result |= 0x01; |
1890 | 81 |
if (schemeData(2).toBool()) |
1428 | 82 |
result |= 0x10; |
1890 | 83 |
if (schemeData(3).toBool()) |
1530 | 84 |
result |= 0x04; |
1890 | 85 |
if (schemeData(4).toBool()) |
86 |
result |= 0x08; |
|
1427 | 87 |
|
184 | 88 |
return result; |
89 |
} |
|
90 |
||
312 | 91 |
quint32 GameCFGWidget::getInitHealth() const |
92 |
{ |
|
1890 | 93 |
return schemeData(6).toInt(); |
312 | 94 |
} |
95 |
||
318 | 96 |
QStringList GameCFGWidget::getFullConfig() const |
97 |
{ |
|
98 |
QStringList sl; |
|
1875 | 99 |
sl.append("eseed " + pMapContainer->getCurrentSeed()); |
318 | 100 |
sl.append(QString("e$gmflags %1").arg(getGameFlags())); |
1890 | 101 |
sl.append(QString("e$turntime %1").arg(schemeData(5).toInt() * 1000)); |
102 |
sl.append(QString("e$sd_turns %1").arg(schemeData(7).toInt())); |
|
103 |
sl.append(QString("e$casefreq %1").arg(schemeData(8).toInt())); |
|
1802 | 104 |
sl.append(QString("e$template_filter %1").arg(pMapContainer->getTemplateFilter())); |
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1628
diff
changeset
|
105 |
|
1875 | 106 |
QString currentMap = pMapContainer->getCurrentMap(); |
320 | 107 |
if (currentMap.size() > 0) |
318 | 108 |
sl.append("emap " + currentMap); |
1875 | 109 |
sl.append("etheme " + pMapContainer->getCurrentTheme()); |
318 | 110 |
return sl; |
111 |
} |
|
320 | 112 |
|
703 | 113 |
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo) |
697 | 114 |
{ |
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1532
diff
changeset
|
115 |
if (ammo.size() != cDefaultAmmoStore->size()) |
1517 | 116 |
QMessageBox::critical(this, tr("Error"), tr("Illegal ammo scheme")); |
703 | 117 |
|
1517 | 118 |
int pos = WeaponsName->findText(name); |
119 |
if (pos == -1) { |
|
120 |
WeaponsName->addItem(name, ammo); |
|
121 |
WeaponsName->setCurrentIndex(WeaponsName->count() - 1); |
|
122 |
} else { |
|
123 |
WeaponsName->setItemData(pos, ammo); |
|
124 |
WeaponsName->setCurrentIndex(pos); |
|
125 |
} |
|
1530 | 126 |
} |
1531 | 127 |
|
1875 | 128 |
void GameCFGWidget::fullNetConfig() |
129 |
{ |
|
130 |
ammoChanged(WeaponsName->currentIndex()); |
|
131 |
||
132 |
seedChanged(pMapContainer->getCurrentSeed()); |
|
1876 | 133 |
templateFilterChanged(pMapContainer->getTemplateFilter()); |
1875 | 134 |
themeChanged(pMapContainer->getCurrentTheme()); |
135 |
||
136 |
// map must be the last |
|
137 |
QString map = pMapContainer->getCurrentMap(); |
|
138 |
if (map.size()) |
|
139 |
mapChanged(map); |
|
140 |
} |
|
141 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
142 |
void GameCFGWidget::setParam(const QString & param, const QStringList & slValue) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
143 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
144 |
if (slValue.size() == 1) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
145 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
146 |
QString value = slValue[0]; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
147 |
if (param == "MAP") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
148 |
pMapContainer->setMap(value); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
149 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
150 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
151 |
if (param == "SEED") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
152 |
pMapContainer->setSeed(value); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
153 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
154 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
155 |
if (param == "THEME") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
156 |
pMapContainer->setTheme(value); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
157 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
158 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
159 |
if (param == "HEALTH") { |
1885 | 160 |
// SB_InitHealth->setValue(value.toUInt()); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
161 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
162 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
163 |
if (param == "TURNTIME") { |
1885 | 164 |
// SB_TurnTime->setValue(value.toUInt()); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
165 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
166 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
167 |
if (param == "SD_TURNS") { |
1885 | 168 |
// SB_SuddenDeath->setValue(value.toUInt()); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
169 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
170 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
171 |
if (param == "CASEFACTOR") { |
1885 | 172 |
// SB_CaseProb->setValue(value.toUInt()); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
173 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
174 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
175 |
if (param == "FORTSMODE") { |
1885 | 176 |
// CB_mode_Forts->setChecked(value.toUInt() != 0); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
177 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
178 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
179 |
if (param == "DIVIDETEAMS") { |
1885 | 180 |
// CB_teamsDivide->setChecked(value.toUInt() != 0); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
181 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
182 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
183 |
if (param == "SOLIDLAND") { |
1885 | 184 |
// CB_solid->setChecked(value.toUInt() != 0); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
185 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
186 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
187 |
if (param == "BORDER") { |
1885 | 188 |
// CB_border->setChecked(value.toUInt() != 0); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
189 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
190 |
} |
1876 | 191 |
if (param == "TEMPLATE") { |
192 |
pMapContainer->setTemplateFilter(value.toUInt()); |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
193 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
194 |
} |
1876 | 195 |
} |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
196 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
197 |
if (slValue.size() == 2) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
198 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
199 |
if (param == "AMMO") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
200 |
setNetAmmo(slValue[0], slValue[1]); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
201 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
202 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
203 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
204 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
205 |
|
1874 | 206 |
void GameCFGWidget::ammoChanged(int index) |
207 |
{ |
|
208 |
if (index >= 0) |
|
209 |
emit paramChanged( |
|
210 |
"AMMO", |
|
211 |
QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString() |
|
212 |
); |
|
213 |
} |
|
214 |
||
215 |
void GameCFGWidget::mapChanged(const QString & value) |
|
216 |
{ |
|
217 |
emit paramChanged("MAP", QStringList(value)); |
|
218 |
} |
|
219 |
||
1876 | 220 |
void GameCFGWidget::templateFilterChanged(int value) |
221 |
{ |
|
222 |
emit paramChanged("TEMPLATE", QStringList(QString::number(value))); |
|
223 |
} |
|
224 |
||
1874 | 225 |
void GameCFGWidget::seedChanged(const QString & value) |
226 |
{ |
|
227 |
emit paramChanged("SEED", QStringList(value)); |
|
228 |
} |
|
229 |
||
230 |
void GameCFGWidget::themeChanged(const QString & value) |
|
231 |
{ |
|
232 |
emit paramChanged("THEME", QStringList(value)); |
|
233 |
} |