author | koda |
Wed, 10 Feb 2010 22:00:49 +0000 | |
changeset 2799 | 558b29bf00c5 |
parent 2762 | 2fbc8d35eb52 |
child 2881 | 70d7976fa829 |
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); |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
51 |
connect(GameSchemes, SIGNAL(currentIndexChanged(int)), this, SLOT(schemeChanged(int))); |
1885 | 52 |
|
1979 | 53 |
GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Game scheme"), GBoxOptions), 0, 0); |
54 |
||
2739 | 55 |
QPixmap pmEdit(":/res/edit.png"); |
56 |
||
1885 | 57 |
QPushButton * goToSchemePage = new QPushButton(GBoxOptions); |
2739 | 58 |
//goToSchemePage->setText(tr("Edit schemes")); |
59 |
goToSchemePage->setIconSize(pmEdit.size()); |
|
60 |
goToSchemePage->setIcon(pmEdit); |
|
61 |
goToSchemePage->setMaximumWidth(pmEdit.width() + 6); |
|
62 |
GBoxOptionsLayout->addWidget(goToSchemePage, 0, 2); |
|
1885 | 63 |
connect(goToSchemePage, SIGNAL(clicked()), this, SIGNAL(goToSchemes())); |
2377 | 64 |
|
2739 | 65 |
GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Weapons"), GBoxOptions), 1, 0); |
311 | 66 |
|
697 | 67 |
WeaponsName = new QComboBox(GBoxOptions); |
2739 | 68 |
GBoxOptionsLayout->addWidget(WeaponsName, 1, 1); |
2377 | 69 |
|
1531 | 70 |
connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int))); |
2377 | 71 |
|
2009 | 72 |
QPushButton * goToWeaponPage = new QPushButton(GBoxOptions); |
2739 | 73 |
//goToWeaponPage->setText(tr("Edit weapons")); |
74 |
goToWeaponPage->setIconSize(pmEdit.size()); |
|
75 |
goToWeaponPage->setIcon(pmEdit); |
|
76 |
goToWeaponPage->setMaximumWidth(pmEdit.width() + 6); |
|
77 |
GBoxOptionsLayout->addWidget(goToWeaponPage, 1, 2); |
|
2009 | 78 |
|
79 |
connect(goToWeaponPage, SIGNAL(clicked()), this, SLOT(jumpToWeapons())); |
|
486 | 80 |
|
1874 | 81 |
connect(pMapContainer, SIGNAL(seedChanged(const QString &)), this, SLOT(seedChanged(const QString &))); |
82 |
connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &))); |
|
83 |
connect(pMapContainer, SIGNAL(themeChanged(const QString &)), this, SLOT(themeChanged(const QString &))); |
|
1876 | 84 |
connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int))); |
184 | 85 |
} |
86 |
||
2009 | 87 |
void GameCFGWidget::jumpToWeapons() |
88 |
{ |
|
89 |
emit goToWeapons(WeaponsName->currentText()); |
|
90 |
} |
|
91 |
||
1890 | 92 |
QVariant GameCFGWidget::schemeData(int column) const |
93 |
{ |
|
94 |
return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column)); |
|
95 |
} |
|
96 |
||
318 | 97 |
quint32 GameCFGWidget::getGameFlags() const |
184 | 98 |
{ |
99 |
quint32 result = 0; |
|
1427 | 100 |
|
1890 | 101 |
if (schemeData(1).toBool()) |
1428 | 102 |
result |= 0x01; |
1890 | 103 |
if (schemeData(2).toBool()) |
1428 | 104 |
result |= 0x10; |
1890 | 105 |
if (schemeData(3).toBool()) |
1530 | 106 |
result |= 0x04; |
1890 | 107 |
if (schemeData(4).toBool()) |
108 |
result |= 0x08; |
|
1895 | 109 |
if (schemeData(5).toBool()) |
110 |
result |= 0x20; |
|
111 |
if (schemeData(6).toBool()) |
|
112 |
result |= 0x40; |
|
113 |
if (schemeData(7).toBool()) |
|
114 |
result |= 0x80; |
|
115 |
if (schemeData(8).toBool()) |
|
116 |
result |= 0x100; |
|
2017 | 117 |
if (schemeData(9).toBool()) |
118 |
result |= 0x200; |
|
119 |
if (schemeData(10).toBool()) |
|
120 |
result |= 0x400; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
121 |
if (schemeData(11).toBool()) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
122 |
result |= 0x800; |
2703 | 123 |
if (schemeData(12).toBool()) |
124 |
result |= 0x2000; |
|
2726 | 125 |
if (schemeData(13).toBool()) |
126 |
result |= 0x4000; |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
127 |
if (schemeData(14).toBool()) |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
128 |
result |= 0x8000; |
1427 | 129 |
|
184 | 130 |
return result; |
131 |
} |
|
132 |
||
312 | 133 |
quint32 GameCFGWidget::getInitHealth() const |
134 |
{ |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
135 |
return schemeData(17).toInt(); |
312 | 136 |
} |
137 |
||
318 | 138 |
QStringList GameCFGWidget::getFullConfig() const |
139 |
{ |
|
140 |
QStringList sl; |
|
1875 | 141 |
sl.append("eseed " + pMapContainer->getCurrentSeed()); |
318 | 142 |
sl.append(QString("e$gmflags %1").arg(getGameFlags())); |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
143 |
sl.append(QString("e$damagepct %1").arg(schemeData(15).toInt())); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
144 |
sl.append(QString("e$turntime %1").arg(schemeData(16).toInt() * 1000)); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
145 |
sl.append(QString("e$minestime %1").arg(schemeData(20).toInt() * 1000)); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
146 |
sl.append(QString("e$landadds %1").arg(schemeData(21).toInt())); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
147 |
sl.append(QString("e$sd_turns %1").arg(schemeData(18).toInt())); |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2739
diff
changeset
|
148 |
sl.append(QString("e$casefreq %1").arg(schemeData(19).toInt())); |
1802 | 149 |
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
|
150 |
|
1875 | 151 |
QString currentMap = pMapContainer->getCurrentMap(); |
320 | 152 |
if (currentMap.size() > 0) |
318 | 153 |
sl.append("emap " + currentMap); |
1875 | 154 |
sl.append("etheme " + pMapContainer->getCurrentTheme()); |
318 | 155 |
return sl; |
156 |
} |
|
320 | 157 |
|
703 | 158 |
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo) |
697 | 159 |
{ |
2380 | 160 |
bool illegal = ammo.size() != cDefaultAmmoStore->size(); |
161 |
if (illegal) |
|
1517 | 162 |
QMessageBox::critical(this, tr("Error"), tr("Illegal ammo scheme")); |
703 | 163 |
|
1517 | 164 |
int pos = WeaponsName->findText(name); |
2380 | 165 |
if ((pos == -1) || illegal) { // prevent from overriding schemes with bad ones |
1517 | 166 |
WeaponsName->addItem(name, ammo); |
167 |
WeaponsName->setCurrentIndex(WeaponsName->count() - 1); |
|
168 |
} else { |
|
169 |
WeaponsName->setItemData(pos, ammo); |
|
170 |
WeaponsName->setCurrentIndex(pos); |
|
171 |
} |
|
1530 | 172 |
} |
1531 | 173 |
|
1875 | 174 |
void GameCFGWidget::fullNetConfig() |
175 |
{ |
|
176 |
ammoChanged(WeaponsName->currentIndex()); |
|
2377 | 177 |
|
1875 | 178 |
seedChanged(pMapContainer->getCurrentSeed()); |
1876 | 179 |
templateFilterChanged(pMapContainer->getTemplateFilter()); |
1875 | 180 |
themeChanged(pMapContainer->getCurrentTheme()); |
181 |
||
1921 | 182 |
schemeChanged(GameSchemes->currentIndex()); |
183 |
||
1875 | 184 |
// map must be the last |
185 |
QString map = pMapContainer->getCurrentMap(); |
|
186 |
if (map.size()) |
|
187 |
mapChanged(map); |
|
188 |
} |
|
189 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
190 |
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
|
191 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
192 |
if (slValue.size() == 1) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
193 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
194 |
QString value = slValue[0]; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
195 |
if (param == "MAP") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
196 |
pMapContainer->setMap(value); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
197 |
return; |
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 == "SEED") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
200 |
pMapContainer->setSeed(value); |
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 |
if (param == "THEME") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
204 |
pMapContainer->setTheme(value); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
205 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
206 |
} |
1876 | 207 |
if (param == "TEMPLATE") { |
208 |
pMapContainer->setTemplateFilter(value.toUInt()); |
|
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
209 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
210 |
} |
1876 | 211 |
} |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
212 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
213 |
if (slValue.size() == 2) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
214 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
215 |
if (param == "AMMO") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
216 |
setNetAmmo(slValue[0], slValue[1]); |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
217 |
return; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
218 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
219 |
} |
2377 | 220 |
|
1921 | 221 |
qWarning("Got bad config param from net"); |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
222 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
223 |
|
1874 | 224 |
void GameCFGWidget::ammoChanged(int index) |
225 |
{ |
|
226 |
if (index >= 0) |
|
227 |
emit paramChanged( |
|
228 |
"AMMO", |
|
229 |
QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString() |
|
230 |
); |
|
231 |
} |
|
232 |
||
233 |
void GameCFGWidget::mapChanged(const QString & value) |
|
234 |
{ |
|
235 |
emit paramChanged("MAP", QStringList(value)); |
|
236 |
} |
|
237 |
||
1876 | 238 |
void GameCFGWidget::templateFilterChanged(int value) |
239 |
{ |
|
240 |
emit paramChanged("TEMPLATE", QStringList(QString::number(value))); |
|
241 |
} |
|
242 |
||
1874 | 243 |
void GameCFGWidget::seedChanged(const QString & value) |
244 |
{ |
|
245 |
emit paramChanged("SEED", QStringList(value)); |
|
246 |
} |
|
247 |
||
248 |
void GameCFGWidget::themeChanged(const QString & value) |
|
249 |
{ |
|
250 |
emit paramChanged("THEME", QStringList(value)); |
|
251 |
} |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
252 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
253 |
void GameCFGWidget::schemeChanged(int value) |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
254 |
{ |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
255 |
QStringList sl; |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
256 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
257 |
int size = GameSchemes->model()->columnCount(); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
258 |
for(int i = 0; i < size; ++i) |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
259 |
sl << schemeData(i).toString(); |
2377 | 260 |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
261 |
emit paramChanged("SCHEME", sl); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
262 |
} |
2080
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
263 |
|
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
264 |
void GameCFGWidget::resendSchemeData() |
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
265 |
{ |
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
266 |
schemeChanged(GameSchemes->currentIndex()); |
6d29370dc0dd
This should resend scheme info to net server when scheme got edited (not tested)
unc0rr
parents:
2031
diff
changeset
|
267 |
} |