Skip to content

Commit 19d1d56

Browse files
committed
Save/load resolution settings.
1 parent 6686a55 commit 19d1d56

File tree

3 files changed

+108
-21
lines changed

3 files changed

+108
-21
lines changed

mainwindow.cpp

+56-21
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,36 @@ ioLaunch::ioLaunch(QWidget *parent) :
4848
}
4949

5050
settings.setHaveRun(true);
51+
52+
// Populate the GUI with values read from settings.
53+
if (settings.getResolutionMode() >= 0)
54+
{
55+
// Predefined.
56+
ui->cbResolution->setCurrentIndex(2 + settings.getResolutionMode());
57+
}
58+
else if (settings.getResolutionMode() == -1)
59+
{
60+
// Custom.
61+
ui->cbResolution->setCurrentIndex(0);
62+
}
63+
else if (settings.getResolutionMode() == -2)
64+
{
65+
// Desktop.
66+
ui->cbResolution->setCurrentIndex(1);
67+
}
68+
69+
ui->sbWidth->setValue(settings.getResolutionWidth());
70+
ui->sbHeight->setValue(settings.getResolutionHeight());
71+
ioWedited = ioHedited = true;
72+
73+
if (settings.getResolutionFullscreen())
74+
{
75+
ui->rbFull->setChecked(true);
76+
}
77+
else
78+
{
79+
ui->rbWin->setChecked(true);
80+
}
5181
}
5282

5383
ioLaunch::~ioLaunch()
@@ -223,13 +253,30 @@ void ioLaunch::on_cbResolution_currentIndexChanged(int index)
223253
break;
224254
}
225255
}
256+
257+
if (index == 0)
258+
{
259+
// Custom.
260+
settings.setResolutionMode(-1);
261+
}
262+
else if (index == 1)
263+
{
264+
// Desktop.
265+
settings.setResolutionMode(-2);
266+
}
267+
else
268+
{
269+
// Predefined.
270+
settings.setResolutionMode(index - 2);
271+
}
226272
}
227273

228274
void ioLaunch::on_rbFull_toggled(bool checked)
229275
{
230276
if(checked)
231277
{
232278
screenOption = " +set r_fullscreen 1";
279+
settings.setResolutionFullscreen(true);
233280
}
234281
}
235282

@@ -238,6 +285,7 @@ void ioLaunch::on_rbWin_toggled(bool checked)
238285
if(checked)
239286
{
240287
screenOption = " +set r_fullscreen 0";
288+
settings.setResolutionFullscreen(false);
241289
}
242290
}
243291

@@ -261,6 +309,8 @@ void ioLaunch::on_sbWidth_valueChanged(int arg1)
261309
else{
262310
ioWedited = false;
263311
}
312+
313+
settings.setResolutionWidth(arg1);
264314
}
265315

266316
void ioLaunch::on_sbHeight_valueChanged(int arg1)
@@ -274,6 +324,8 @@ void ioLaunch::on_sbHeight_valueChanged(int arg1)
274324
else{
275325
ioHedited = false;
276326
}
327+
328+
settings.setResolutionHeight(arg1);
277329
}
278330

279331
// Since q3config.cfg is generated it's nice and clean and shouldn't need a full parser.
@@ -325,9 +377,6 @@ void ioLaunch::parseQuake3Config()
325377

326378
QTextStream stream(&file);
327379

328-
// These may occur in any order, so process them after parsing the entire file.
329-
QString r_mode, r_customwidth, r_customheight;
330-
331380
while (!stream.atEnd())
332381
{
333382
const QString line(stream.readLine());
@@ -344,34 +393,20 @@ void ioLaunch::parseQuake3Config()
344393

345394
if (cvar == "r_mode")
346395
{
347-
r_mode = ParseToken(line, offset);
396+
settings.setResolutionMode(ParseToken(line, offset).toInt());
348397
}
349398
else if (cvar == "r_customwidth")
350399
{
351-
r_customwidth = ParseToken(line, offset);
400+
settings.setResolutionWidth(ParseToken(line, offset).toInt());
352401
}
353402
else if (cvar == "r_customheight")
354403
{
355-
r_customheight = ParseToken(line, offset);
404+
settings.setResolutionHeight(ParseToken(line, offset).toInt());
356405
}
357406
else if (cvar == "r_fullscreen")
358407
{
359-
// Set fullscreen/windows radio buttons.
360-
const QString value(ParseToken(line, offset));
361-
362-
if (value == "0")
363-
ui->rbWin->setChecked(true);
364-
else if (value == "1")
365-
ui->rbFull->setChecked(true);
408+
settings.setResolutionFullscreen(ParseToken(line, offset).toInt() != 0);
366409
}
367410
}
368411
}
369-
370-
// Populate resolution spinboxes.
371-
if (r_mode == "-1" && !r_customwidth.isEmpty() && !r_customheight.isEmpty())
372-
{
373-
ui->sbWidth->setValue(r_customwidth.toInt());
374-
ui->sbHeight->setValue(r_customheight.toInt());
375-
ioWedited = ioHedited = true;
376-
}
377412
}

settings.cpp

+40
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,43 @@ void Settings::setQuakePath(const QString &path)
5252
{
5353
settings.setValue("quakePath", path);
5454
}
55+
56+
int Settings::getResolutionMode() const
57+
{
58+
return settings.value("resolution/mode", 3).toInt();
59+
}
60+
61+
void Settings::setResolutionMode(int mode)
62+
{
63+
settings.setValue("resolution/mode", mode);
64+
}
65+
66+
int Settings::getResolutionWidth() const
67+
{
68+
return settings.value("resolution/width", 1600).toInt();
69+
}
70+
71+
void Settings::setResolutionWidth(int width)
72+
{
73+
settings.setValue("resolution/width", width);
74+
}
75+
76+
int Settings::getResolutionHeight() const
77+
{
78+
return settings.value("resolution/height", 1024).toInt();
79+
}
80+
81+
void Settings::setResolutionHeight(int height)
82+
{
83+
settings.setValue("resolution/height", height);
84+
}
85+
86+
bool Settings::getResolutionFullscreen() const
87+
{
88+
return settings.value("resolution/fullscreen", 1).toBool();
89+
}
90+
91+
void Settings::setResolutionFullscreen(bool value)
92+
{
93+
settings.setValue("resolution/fullscreen", value);
94+
}

settings.h

+12
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,18 @@ class Settings
3939
bool containsQuakePath() const;
4040
void setQuakePath(const QString &path);
4141

42+
int getResolutionMode() const;
43+
void setResolutionMode(int mode);
44+
45+
int getResolutionWidth() const;
46+
void setResolutionWidth(int width);
47+
48+
int getResolutionHeight() const;
49+
void setResolutionHeight(int height);
50+
51+
bool getResolutionFullscreen() const;
52+
void setResolutionFullscreen(bool value);
53+
4254
private:
4355
QSettings settings;
4456
};

0 commit comments

Comments
 (0)