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