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