author | unc0rr |
Thu, 26 Mar 2009 16:54:16 +0000 | |
changeset 1921 | 2a09f7f786a0 |
parent 1898 | f0ab0c77946d |
child 1979 | 912e450d4db2 |
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 |
|
53 |
QPushButton * goToSchemePage = new QPushButton(GBoxOptions); |
|
54 |
goToSchemePage->setText(tr("Edit schemes")); |
|
55 |
GBoxOptionsLayout->addWidget(goToSchemePage, 1, 0, 1, 2); |
|
56 |
connect(goToSchemePage, SIGNAL(clicked()), this, SIGNAL(goToSchemes())); |
|
1427 | 57 |
|
1784 | 58 |
GBoxOptionsLayout->addWidget(new QLabel(QLabel::tr("Weapons"), GBoxOptions), 8, 0); |
311 | 59 |
|
697 | 60 |
WeaponsName = new QComboBox(GBoxOptions); |
1784 | 61 |
GBoxOptionsLayout->addWidget(WeaponsName, 8, 1); |
1874 | 62 |
|
1531 | 63 |
connect(WeaponsName, SIGNAL(currentIndexChanged(int)), this, SLOT(ammoChanged(int))); |
486 | 64 |
|
1874 | 65 |
connect(pMapContainer, SIGNAL(seedChanged(const QString &)), this, SLOT(seedChanged(const QString &))); |
66 |
connect(pMapContainer, SIGNAL(mapChanged(const QString &)), this, SLOT(mapChanged(const QString &))); |
|
67 |
connect(pMapContainer, SIGNAL(themeChanged(const QString &)), this, SLOT(themeChanged(const QString &))); |
|
1876 | 68 |
connect(pMapContainer, SIGNAL(newTemplateFilter(int)), this, SLOT(templateFilterChanged(int))); |
184 | 69 |
} |
70 |
||
1890 | 71 |
QVariant GameCFGWidget::schemeData(int column) const |
72 |
{ |
|
73 |
return GameSchemes->model()->data(GameSchemes->model()->index(GameSchemes->currentIndex(), column)); |
|
74 |
} |
|
75 |
||
318 | 76 |
quint32 GameCFGWidget::getGameFlags() const |
184 | 77 |
{ |
78 |
quint32 result = 0; |
|
1427 | 79 |
|
1890 | 80 |
if (schemeData(1).toBool()) |
1428 | 81 |
result |= 0x01; |
1890 | 82 |
if (schemeData(2).toBool()) |
1428 | 83 |
result |= 0x10; |
1890 | 84 |
if (schemeData(3).toBool()) |
1530 | 85 |
result |= 0x04; |
1890 | 86 |
if (schemeData(4).toBool()) |
87 |
result |= 0x08; |
|
1895 | 88 |
if (schemeData(5).toBool()) |
89 |
result |= 0x20; |
|
90 |
if (schemeData(6).toBool()) |
|
91 |
result |= 0x40; |
|
92 |
if (schemeData(7).toBool()) |
|
93 |
result |= 0x80; |
|
94 |
if (schemeData(8).toBool()) |
|
95 |
result |= 0x100; |
|
1427 | 96 |
|
184 | 97 |
return result; |
98 |
} |
|
99 |
||
312 | 100 |
quint32 GameCFGWidget::getInitHealth() const |
101 |
{ |
|
1895 | 102 |
return schemeData(11).toInt(); |
312 | 103 |
} |
104 |
||
318 | 105 |
QStringList GameCFGWidget::getFullConfig() const |
106 |
{ |
|
107 |
QStringList sl; |
|
1875 | 108 |
sl.append("eseed " + pMapContainer->getCurrentSeed()); |
318 | 109 |
sl.append(QString("e$gmflags %1").arg(getGameFlags())); |
1895 | 110 |
sl.append(QString("e$damagepct %1").arg(schemeData(9).toInt())); |
111 |
sl.append(QString("e$turntime %1").arg(schemeData(10).toInt() * 1000)); |
|
112 |
sl.append(QString("e$sd_turns %1").arg(schemeData(12).toInt())); |
|
113 |
sl.append(QString("e$casefreq %1").arg(schemeData(13).toInt())); |
|
1802 | 114 |
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
|
115 |
|
1875 | 116 |
QString currentMap = pMapContainer->getCurrentMap(); |
320 | 117 |
if (currentMap.size() > 0) |
318 | 118 |
sl.append("emap " + currentMap); |
1875 | 119 |
sl.append("etheme " + pMapContainer->getCurrentTheme()); |
318 | 120 |
return sl; |
121 |
} |
|
320 | 122 |
|
703 | 123 |
void GameCFGWidget::setNetAmmo(const QString& name, const QString& ammo) |
697 | 124 |
{ |
1576
a02353129a41
Check for deprecated ammo schemes at startup and delete them
unc0rr
parents:
1532
diff
changeset
|
125 |
if (ammo.size() != cDefaultAmmoStore->size()) |
1517 | 126 |
QMessageBox::critical(this, tr("Error"), tr("Illegal ammo scheme")); |
703 | 127 |
|
1517 | 128 |
int pos = WeaponsName->findText(name); |
129 |
if (pos == -1) { |
|
130 |
WeaponsName->addItem(name, ammo); |
|
131 |
WeaponsName->setCurrentIndex(WeaponsName->count() - 1); |
|
132 |
} else { |
|
133 |
WeaponsName->setItemData(pos, ammo); |
|
134 |
WeaponsName->setCurrentIndex(pos); |
|
135 |
} |
|
1530 | 136 |
} |
1531 | 137 |
|
1875 | 138 |
void GameCFGWidget::fullNetConfig() |
139 |
{ |
|
140 |
ammoChanged(WeaponsName->currentIndex()); |
|
141 |
||
142 |
seedChanged(pMapContainer->getCurrentSeed()); |
|
1876 | 143 |
templateFilterChanged(pMapContainer->getTemplateFilter()); |
1875 | 144 |
themeChanged(pMapContainer->getCurrentTheme()); |
145 |
||
1921 | 146 |
schemeChanged(GameSchemes->currentIndex()); |
147 |
||
1875 | 148 |
// map must be the last |
149 |
QString map = pMapContainer->getCurrentMap(); |
|
150 |
if (map.size()) |
|
151 |
mapChanged(map); |
|
152 |
} |
|
153 |
||
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
154 |
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
|
155 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
156 |
if (slValue.size() == 1) |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
157 |
{ |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
158 |
QString value = slValue[0]; |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
159 |
if (param == "MAP") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
160 |
pMapContainer->setMap(value); |
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 == "SEED") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
164 |
pMapContainer->setSeed(value); |
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 == "THEME") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
168 |
pMapContainer->setTheme(value); |
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 |
} |
1876 | 171 |
if (param == "TEMPLATE") { |
172 |
pMapContainer->setTemplateFilter(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 |
} |
1876 | 175 |
} |
1873
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
176 |
|
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
177 |
if (slValue.size() == 2) |
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 == "AMMO") { |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
180 |
setNetAmmo(slValue[0], slValue[1]); |
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 |
} |
1921 | 184 |
|
185 |
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
|
186 |
} |
815a3ff1fe4b
Start refactoring some things. Frontend becomes temporarily unusable for network game
unc0rr
parents:
1802
diff
changeset
|
187 |
|
1874 | 188 |
void GameCFGWidget::ammoChanged(int index) |
189 |
{ |
|
190 |
if (index >= 0) |
|
191 |
emit paramChanged( |
|
192 |
"AMMO", |
|
193 |
QStringList() << WeaponsName->itemText(index) << WeaponsName->itemData(index).toString() |
|
194 |
); |
|
195 |
} |
|
196 |
||
197 |
void GameCFGWidget::mapChanged(const QString & value) |
|
198 |
{ |
|
199 |
emit paramChanged("MAP", QStringList(value)); |
|
200 |
} |
|
201 |
||
1876 | 202 |
void GameCFGWidget::templateFilterChanged(int value) |
203 |
{ |
|
204 |
emit paramChanged("TEMPLATE", QStringList(QString::number(value))); |
|
205 |
} |
|
206 |
||
1874 | 207 |
void GameCFGWidget::seedChanged(const QString & value) |
208 |
{ |
|
209 |
emit paramChanged("SEED", QStringList(value)); |
|
210 |
} |
|
211 |
||
212 |
void GameCFGWidget::themeChanged(const QString & value) |
|
213 |
{ |
|
214 |
emit paramChanged("THEME", QStringList(value)); |
|
215 |
} |
|
1898
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
216 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
217 |
void GameCFGWidget::schemeChanged(int value) |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
218 |
{ |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
219 |
QStringList sl; |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
220 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
221 |
int size = GameSchemes->model()->columnCount(); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
222 |
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
|
223 |
sl << schemeData(i).toString(); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
224 |
|
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
225 |
emit paramChanged("SCHEME", sl); |
f0ab0c77946d
Send scheme data over net (but recieving part isn't implemented yet)
unc0rr
parents:
1895
diff
changeset
|
226 |
} |