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