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