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