author | nemo |
Sun, 24 May 2009 02:41:34 +0000 | |
changeset 2098 | c977d7f2aa09 |
parent 1812 | 3d4692e825e7 |
child 2099 | e70e7ce4fb0f |
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()); |
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
48 |
Form->ui.pageOptions->CBFrontendEffects->setChecked(value("video/frontendeffects", true).toBool()); |
301 | 49 |
Form->ui.pageOptions->CBEnableSound->setChecked(value("audio/sound", true).toBool()); |
1129 | 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()); |
603 | 67 |
|
674 | 68 |
depth = QApplication::desktop()->depth(); |
603 | 69 |
if (depth < 16) depth = 16; |
70 |
else if (depth > 16) depth = 32; |
|
184 | 71 |
} |
72 |
||
73 |
QStringList GameUIConfig::GetTeamsList() |
|
74 |
{ |
|
75 |
QStringList teamslist = cfgdir->entryList(QStringList("*.cfg")); |
|
76 |
QStringList cleanedList; |
|
77 |
for (QStringList::Iterator it = teamslist.begin(); it != teamslist.end(); ++it ) { |
|
603 | 78 |
QString tmpTeamStr=(*it).replace(QRegExp("^(.*)\\.cfg$"), "\\1"); |
184 | 79 |
cleanedList.push_back(tmpTeamStr); |
80 |
} |
|
81 |
return cleanedList; |
|
82 |
} |
|
83 |
||
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
84 |
void GameUIConfig::resizeToConfigValues() |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
85 |
{ |
1223
41d7283934c1
Hackish way to play music in frontend... to be fixed
unc0rr
parents:
1165
diff
changeset
|
86 |
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
|
87 |
} |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
88 |
|
184 | 89 |
void GameUIConfig::SaveOptions() |
90 |
{ |
|
555 | 91 |
setValue("video/resolution", Form->ui.pageOptions->CBResolution->currentText()); |
301 | 92 |
setValue("video/fullscreen", vid_Fullscreen()); |
1812 | 93 |
|
94 |
setValue("video/reducequality", isReducedQuality()); |
|
95 |
||
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
96 |
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
|
97 |
|
1162 | 98 |
bool ffscr=isFrontendFullscreen(); |
99 |
setValue("video/frontendfullscreen", ffscr); |
|
100 |
emit frontendFullscreen(ffscr); |
|
1165
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
101 |
if (!ffscr) { |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
102 |
setValue("window/width", Form->width()); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
103 |
setValue("window/height", Form->height()); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
104 |
} else { |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
105 |
resizeToConfigValues(); |
40eeae82e70b
correct restoring window size after fullscreen mode
displacer
parents:
1162
diff
changeset
|
106 |
} |
301 | 107 |
|
108 |
setValue("audio/sound", isSoundEnabled()); |
|
1129 | 109 |
setValue("audio/music", isMusicEnabled()); |
1777 | 110 |
setValue("audio/volume", Form->ui.pageOptions->volumeBox->value()); |
301 | 111 |
|
949 | 112 |
setValue("net/nick", netNick()); |
654 | 113 |
setValue("net/ip", *netHost); |
114 |
setValue("net/port", netPort); |
|
657
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
115 |
setValue("net/servername", Form->ui.pageNetServer->leServerDescr->text()); |
b34fc518a48a
Basic concept for net server options page (subject to change)
unc0rr
parents:
654
diff
changeset
|
116 |
setValue("net/serverport", Form->ui.pageNetServer->sbPort->value()); |
301 | 117 |
|
118 |
setValue("fps/show", isShowFPSEnabled()); |
|
119 |
setValue("fps/interval", Form->ui.pageOptions->fpsedit->value()); |
|
529 | 120 |
|
121 |
setValue("misc/altdamage", isAltDamageEnabled()); |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
122 |
setValue("misc/appendTimeToRecords", appendDateTimeToRecordName()); |
184 | 123 |
} |
124 |
||
555 | 125 |
QRect GameUIConfig::vid_Resolution() |
184 | 126 |
{ |
555 | 127 |
QRect result(0, 0, 640, 480); |
128 |
QStringList wh = Form->ui.pageOptions->CBResolution->currentText().split('x'); |
|
129 |
if (wh.size() == 2) |
|
130 |
{ |
|
131 |
result.setWidth(wh[0].toInt()); |
|
132 |
result.setHeight(wh[1].toInt()); |
|
133 |
} |
|
134 |
return result; |
|
184 | 135 |
} |
136 |
||
137 |
bool GameUIConfig::vid_Fullscreen() |
|
138 |
{ |
|
139 |
return Form->ui.pageOptions->CBFullscreen->isChecked(); |
|
140 |
} |
|
141 |
||
1812 | 142 |
bool GameUIConfig::isReducedQuality() const |
143 |
{ |
|
144 |
return Form->ui.pageOptions->CBReduceQuality->isChecked(); |
|
145 |
} |
|
2098
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
146 |
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
|
147 |
{ |
c977d7f2aa09
Toggle for stars ("frontend effects") - also turns off optimisations for stars that were causing problems onone machine
nemo
parents:
1812
diff
changeset
|
148 |
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
|
149 |
} |
1812 | 150 |
|
1162 | 151 |
bool GameUIConfig::isFrontendFullscreen() const |
152 |
{ |
|
153 |
return Form->ui.pageOptions->CBFrontendFullscreen->isChecked(); |
|
154 |
} |
|
155 |
||
184 | 156 |
bool GameUIConfig::isSoundEnabled() |
157 |
{ |
|
158 |
return Form->ui.pageOptions->CBEnableSound->isChecked(); |
|
159 |
} |
|
160 |
||
1129 | 161 |
bool GameUIConfig::isMusicEnabled() |
162 |
{ |
|
163 |
return Form->ui.pageOptions->CBEnableMusic->isChecked(); |
|
164 |
} |
|
165 |
||
297 | 166 |
bool GameUIConfig::isShowFPSEnabled() |
167 |
{ |
|
168 |
return Form->ui.pageOptions->CBShowFPS->isChecked(); |
|
169 |
} |
|
170 |
||
529 | 171 |
bool GameUIConfig::isAltDamageEnabled() |
172 |
{ |
|
1487
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
173 |
return Form->ui.pageOptions->CBAltDamage->isChecked(); |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
174 |
} |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
175 |
|
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
176 |
bool GameUIConfig::appendDateTimeToRecordName() |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
177 |
{ |
b4cc59a6d50a
Add an option to name records with current date and time
unc0rr
parents:
1235
diff
changeset
|
178 |
return Form->ui.pageOptions->CBNameWithDate->isChecked(); |
529 | 179 |
} |
180 |
||
297 | 181 |
quint8 GameUIConfig::timerInterval() |
182 |
{ |
|
183 |
return 35 - Form->ui.pageOptions->fpsedit->value(); |
|
184 |
} |
|
603 | 185 |
|
186 |
quint8 GameUIConfig::bitDepth() |
|
187 |
{ |
|
188 |
return depth; |
|
189 |
} |
|
949 | 190 |
|
191 |
QString GameUIConfig::netNick() |
|
192 |
{ |
|
193 |
return Form->ui.pageOptions->editNetNick->text(); |
|
194 |
} |
|
1777 | 195 |
|
196 |
quint8 GameUIConfig::volume() |
|
197 |
{ |
|
198 |
return Form->ui.pageOptions->volumeBox->value() * 128 / 100; |
|
199 |
} |