author | unc0rr |
Thu, 10 Sep 2009 12:23:02 +0000 | |
changeset 2370 | 2ff8fce5e06f |
parent 2334 | 3cf9290a518e |
child 2377 | f3fab2b09e0c |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 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 <QMessageBox> |
|
471 | 20 |
#include <QCheckBox> |
21 |
#include <QLineEdit> |
|
603 | 22 |
#include <QDesktopWidget> |
674 | 23 |
#include <QApplication> |
2334
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
24 |
#include <QInputDialog> |
471 | 25 |
|
184 | 26 |
#include "gameuiconfig.h" |
27 |
#include "hwform.h" |
|
28 |
#include "pages.h" |
|
29 |
#include "hwconsts.h" |
|
297 | 30 |
#include "fpsedit.h" |
184 | 31 |
|
301 | 32 |
GameUIConfig::GameUIConfig(HWForm * FormWidgets, const QString & fileName) |
33 |
: QSettings(fileName, QSettings::IniFormat) |
|
184 | 34 |
{ |
35 |
Form = FormWidgets; |
|
36 |
||
1235 | 37 |
connect(Form->ui.pageOptions->CBEnableMusic, SIGNAL(toggled(bool)), Form, SLOT(Music(bool))); |
38 |
||
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
39 |
//Form->resize(value("window/width", 640).toUInt(), value("window/height", 450).toUInt()); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
40 |
resizeToConfigValues(); |
674 | 41 |
|
555 | 42 |
int t = Form->ui.pageOptions->CBResolution->findText(value("video/resolution").toString()); |
43 |
Form->ui.pageOptions->CBResolution->setCurrentIndex((t < 0) ? 0 : t); |
|
301 | 44 |
Form->ui.pageOptions->CBFullscreen->setChecked(value("video/fullscreen", false).toBool()); |
1162 | 45 |
bool ffscr=value("video/frontendfullscreen", false).toBool(); |
46 |
Form->ui.pageOptions->CBFrontendFullscreen->setChecked(ffscr); |
|
301 | 47 |
|
1812 | 48 |
Form->ui.pageOptions->CBReduceQuality->setChecked(value("video/reducequality", false).toBool()); |
2099 | 49 |
Form->ui.pageOptions->CBFrontendEffects->setChecked(frontendEffects); |
2276
d4d9e490d534
Remove this check since I got confused as to why my sound still wasn't working even after I had fixed the lock caused by bad flash plugin and restarted hedgewars
nemo
parents:
2261
diff
changeset
|
50 |
Form->ui.pageOptions->CBEnableSound->setChecked(value("audio/sound", true).toBool()); |
d4d9e490d534
Remove this check since I got confused as to why my sound still wasn't working even after I had fixed the lock caused by bad flash plugin and restarted hedgewars
nemo
parents:
2261
diff
changeset
|
51 |
Form->ui.pageOptions->CBEnableMusic->setChecked(value("audio/music", true).toBool()); |
1777 | 52 |
Form->ui.pageOptions->volumeBox->setValue(value("audio/volume", 100).toUInt()); |
184 | 53 |
|
2334
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
54 |
QString netNick = value("net/nick", "").toString(); |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
55 |
if (netNick.isEmpty()) |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
56 |
netNick = QInputDialog::getText(Form, |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
57 |
QObject::tr("Nickname"), |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
58 |
QObject::tr("Please, enter your nickname"), |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
59 |
QLineEdit::Normal, |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
60 |
QDir::home().dirName()); |
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
61 |
|
3cf9290a518e
Ask user for a nickname on first run, suggest login name
unc0rr
parents:
2276
diff
changeset
|
62 |
Form->ui.pageOptions->editNetNick->setText(netNick); |
654 | 63 |
|
64 |
delete netHost; |
|
65 |
netHost = new QString(value("net/ip", "").toString()); |
|
66 |
netPort = value("net/port", 46631).toUInt(); |
|
529 | 67 |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
68 |
Form->ui.pageNetServer->leServerDescr->setText(value("net/servername", "hedgewars server").toString()); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
69 |
Form->ui.pageNetServer->sbPort->setValue(value("net/serverport", 46631).toUInt()); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
70 |
|
301 | 71 |
Form->ui.pageOptions->CBShowFPS->setChecked(value("fps/show", false).toBool()); |
72 |
Form->ui.pageOptions->fpsedit->setValue(value("fps/interval", 27).toUInt()); |
|
529 | 73 |
|
578 | 74 |
Form->ui.pageOptions->CBAltDamage->setChecked(value("misc/altdamage", false).toBool()); |
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
75 |
Form->ui.pageOptions->CBNameWithDate->setChecked(value("misc/appendTimeToRecords", false).toBool()); |
2261 | 76 |
|
77 |
#ifdef __APPLE__ |
|
78 |
//autoupdate |
|
79 |
Form->ui.pageOptions->CBAutoUpdate->setChecked(value("misc/autoUpdate", true).toBool()); |
|
80 |
#endif |
|
81 |
||
674 | 82 |
depth = QApplication::desktop()->depth(); |
603 | 83 |
if (depth < 16) depth = 16; |
84 |
else if (depth > 16) depth = 32; |
|
184 | 85 |
} |
86 |
||
87 |
QStringList GameUIConfig::GetTeamsList() |
|
88 |
{ |
|
89 |
QStringList teamslist = cfgdir->entryList(QStringList("*.cfg")); |
|
90 |
QStringList cleanedList; |
|
91 |
for (QStringList::Iterator it = teamslist.begin(); it != teamslist.end(); ++it ) { |
|
603 | 92 |
QString tmpTeamStr=(*it).replace(QRegExp("^(.*)\\.cfg$"), "\\1"); |
184 | 93 |
cleanedList.push_back(tmpTeamStr); |
94 |
} |
|
95 |
return cleanedList; |
|
96 |
} |
|
97 |
||
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
98 |
void GameUIConfig::resizeToConfigValues() |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
99 |
{ |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1165
diff
changeset
|
100 |
Form->resize(value("window/width", 720).toUInt(), value("window/height", 450).toUInt()); |
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
101 |
} |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
102 |
|
184 | 103 |
void GameUIConfig::SaveOptions() |
104 |
{ |
|
555 | 105 |
setValue("video/resolution", Form->ui.pageOptions->CBResolution->currentText()); |
301 | 106 |
setValue("video/fullscreen", vid_Fullscreen()); |
1812 | 107 |
|
108 |
setValue("video/reducequality", isReducedQuality()); |
|
109 |
||
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
110 |
setValue("video/frontendeffects", isFrontendEffects()); |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
111 |
|
2101 | 112 |
bool ffscr = isFrontendFullscreen(); |
1162 | 113 |
setValue("video/frontendfullscreen", ffscr); |
114 |
emit frontendFullscreen(ffscr); |
|
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
115 |
if (!ffscr) { |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
116 |
setValue("window/width", Form->width()); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
117 |
setValue("window/height", Form->height()); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
118 |
} else { |
2101 | 119 |
//resizeToConfigValues(); // TODO: why this has been made? |
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
120 |
} |
301 | 121 |
|
122 |
setValue("audio/sound", isSoundEnabled()); |
|
1129 | 123 |
setValue("audio/music", isMusicEnabled()); |
1777 | 124 |
setValue("audio/volume", Form->ui.pageOptions->volumeBox->value()); |
301 | 125 |
|
949 | 126 |
setValue("net/nick", netNick()); |
654 | 127 |
setValue("net/ip", *netHost); |
128 |
setValue("net/port", netPort); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
129 |
setValue("net/servername", Form->ui.pageNetServer->leServerDescr->text()); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
130 |
setValue("net/serverport", Form->ui.pageNetServer->sbPort->value()); |
301 | 131 |
|
132 |
setValue("fps/show", isShowFPSEnabled()); |
|
133 |
setValue("fps/interval", Form->ui.pageOptions->fpsedit->value()); |
|
529 | 134 |
|
135 |
setValue("misc/altdamage", isAltDamageEnabled()); |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
136 |
setValue("misc/appendTimeToRecords", appendDateTimeToRecordName()); |
2261 | 137 |
|
138 |
#ifdef __APPLE__ |
|
139 |
//autoupdate |
|
140 |
setValue("misc/autoUpdate", isAutoUpdateEnabled()); |
|
141 |
#endif |
|
184 | 142 |
} |
143 |
||
555 | 144 |
QRect GameUIConfig::vid_Resolution() |
184 | 145 |
{ |
555 | 146 |
QRect result(0, 0, 640, 480); |
147 |
QStringList wh = Form->ui.pageOptions->CBResolution->currentText().split('x'); |
|
148 |
if (wh.size() == 2) |
|
149 |
{ |
|
150 |
result.setWidth(wh[0].toInt()); |
|
151 |
result.setHeight(wh[1].toInt()); |
|
152 |
} |
|
153 |
return result; |
|
184 | 154 |
} |
155 |
||
156 |
bool GameUIConfig::vid_Fullscreen() |
|
157 |
{ |
|
158 |
return Form->ui.pageOptions->CBFullscreen->isChecked(); |
|
159 |
} |
|
160 |
||
1812 | 161 |
bool GameUIConfig::isReducedQuality() const |
162 |
{ |
|
163 |
return Form->ui.pageOptions->CBReduceQuality->isChecked(); |
|
164 |
} |
|
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
165 |
bool GameUIConfig::isFrontendEffects() const |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
166 |
{ |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
167 |
return Form->ui.pageOptions->CBFrontendEffects->isChecked(); |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
168 |
} |
1812 | 169 |
|
1162 | 170 |
bool GameUIConfig::isFrontendFullscreen() const |
171 |
{ |
|
172 |
return Form->ui.pageOptions->CBFrontendFullscreen->isChecked(); |
|
173 |
} |
|
174 |
||
184 | 175 |
bool GameUIConfig::isSoundEnabled() |
176 |
{ |
|
177 |
return Form->ui.pageOptions->CBEnableSound->isChecked(); |
|
178 |
} |
|
179 |
||
1129 | 180 |
bool GameUIConfig::isMusicEnabled() |
181 |
{ |
|
182 |
return Form->ui.pageOptions->CBEnableMusic->isChecked(); |
|
183 |
} |
|
184 |
||
297 | 185 |
bool GameUIConfig::isShowFPSEnabled() |
186 |
{ |
|
187 |
return Form->ui.pageOptions->CBShowFPS->isChecked(); |
|
188 |
} |
|
189 |
||
529 | 190 |
bool GameUIConfig::isAltDamageEnabled() |
191 |
{ |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
192 |
return Form->ui.pageOptions->CBAltDamage->isChecked(); |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
193 |
} |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
194 |
|
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
195 |
bool GameUIConfig::appendDateTimeToRecordName() |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
196 |
{ |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
197 |
return Form->ui.pageOptions->CBNameWithDate->isChecked(); |
529 | 198 |
} |
199 |
||
2261 | 200 |
#ifdef __APPLE__ |
201 |
//autoupdate |
|
202 |
bool GameUIConfig::isAutoUpdateEnabled() |
|
203 |
{ |
|
204 |
return Form->ui.pageOptions->CBAutoUpdate->isChecked(); |
|
205 |
} |
|
206 |
#endif |
|
207 |
||
297 | 208 |
quint8 GameUIConfig::timerInterval() |
209 |
{ |
|
210 |
return 35 - Form->ui.pageOptions->fpsedit->value(); |
|
211 |
} |
|
603 | 212 |
|
213 |
quint8 GameUIConfig::bitDepth() |
|
214 |
{ |
|
215 |
return depth; |
|
216 |
} |
|
949 | 217 |
|
218 |
QString GameUIConfig::netNick() |
|
219 |
{ |
|
220 |
return Form->ui.pageOptions->editNetNick->text(); |
|
221 |
} |
|
1777 | 222 |
|
223 |
quint8 GameUIConfig::volume() |
|
224 |
{ |
|
225 |
return Form->ui.pageOptions->volumeBox->value() * 128 / 100; |
|
226 |
} |