File: Settings.cpp

package info (click to toggle)
lugaru 1.2-7.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,748 kB
  • sloc: cpp: 29,640; ansic: 537; sh: 34; xml: 28; makefile: 14
file content (328 lines) | stat: -rw-r--r-- 10,696 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
Copyright (C) 2003, 2010 - Wolfire Games
Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file)

This file is part of Lugaru.

Lugaru is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

Lugaru is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "User/Settings.hpp"

#include "Game.hpp"
#include "Utils/Folders.hpp"
#include "Utils/Input.hpp"

using namespace Game;

void DefaultSettings()
{
    detail = 2;
    ismotionblur = 1;
    usermousesensitivity = 1;
    newscreenwidth = kContextWidth = 1024;
    newscreenheight = kContextHeight = 768;
    fullscreen = 0;
    floatjump = 0;
    autoslomo = 1;
    decalstoggle = true;
    invertmouse = 0;
    bloodtoggle = 0;
    foliage = 1;
    musictoggle = 1;
    trilinear = 1;
    gamespeed = 1;
    damageeffects = 0;
    texttoggle = 1;
    alwaysblur = 0;
    showpoints = 0;
    showdamagebar = 0;
    immediate = 0;
    velocityblur = 0;
    volume = 0.8f;
    ambientsound = 1;
    devtools = 0;

    crouchkey = SDL_SCANCODE_LSHIFT;
    jumpkey = SDL_SCANCODE_SPACE;
    leftkey = SDL_SCANCODE_A;
    forwardkey = SDL_SCANCODE_W;
    backkey = SDL_SCANCODE_S;
    rightkey = SDL_SCANCODE_D;
    drawkey = SDL_SCANCODE_E;
    throwkey = SDL_SCANCODE_Q;
    attackkey = MOUSEBUTTON_LEFT;
    consolekey = SDL_SCANCODE_GRAVE;

    newdetail = detail;
}

void SaveSettings()
{
    if (newdetail < 0) {
        newdetail = 0;
    }
    if (newdetail > 2) {
        newdetail = 2;
    }
    if (newscreenwidth > 3000) {
        newscreenwidth = screenwidth;
    }
    if (newscreenwidth < 0) {
        newscreenwidth = screenwidth;
    }
    if (newscreenheight > 3000) {
        newscreenheight = screenheight;
    }
    if (newscreenheight < 0) {
        newscreenheight = screenheight;
    }
    errno = 0;
    ofstream opstream(Folders::getConfigFilePath());
    if (opstream.fail()) {
        perror(("Couldn't save config file " + Folders::getConfigFilePath()).c_str());
        return;
    }
    opstream << "Screenwidth:\n";
    opstream << newscreenwidth;
    opstream << "\nScreenheight:\n";
    opstream << newscreenheight;
    opstream << "\nFullscreen:\n";
    opstream << fullscreen;
    opstream << "\nMouse sensitivity:\n";
    opstream << usermousesensitivity;
    opstream << "\nBlur(0,1):\n";
    opstream << ismotionblur;
    opstream << "\nOverall Detail(0,1,2) higher=better:\n";
    opstream << newdetail;
    opstream << "\nFloating jump:\n";
    opstream << floatjump;
    opstream << "\nMouse jump:\n";
    opstream << mousejump;
    opstream << "\nAmbient sound:\n";
    opstream << ambientsound;
    opstream << "\nBlood (0,1,2):\n";
    opstream << bloodtoggle;
    opstream << "\nAuto slomo:\n";
    opstream << autoslomo;
    opstream << "\nFoliage:\n";
    opstream << foliage;
    opstream << "\nMusic:\n";
    opstream << musictoggle;
    opstream << "\nTrilinear:\n";
    opstream << trilinear;
    opstream << "\nDecals(shadows,blood puddles,etc):\n";
    opstream << decalstoggle;
    opstream << "\nInvert mouse:\n";
    opstream << invertmouse;
    opstream << "\nGamespeed:\n";
    if (oldgamespeed == 0) {
        oldgamespeed = 1;
    }
    opstream << oldgamespeed;
    opstream << "\nDamage effects(blackout, doublevision):\n";
    opstream << damageeffects;
    opstream << "\nText:\n";
    opstream << texttoggle;
    opstream << "\nShow Points:\n";
    opstream << showpoints;
    opstream << "\nAlways Blur:\n";
    opstream << alwaysblur;
    opstream << "\nImmediate mode (turn on on G5):\n";
    opstream << immediate;
    opstream << "\nVelocity blur:\n";
    opstream << velocityblur;
    opstream << "\nVolume:\n";
    opstream << volume;
    opstream << "\nForward key:\n";
    opstream << forwardkey;
    opstream << "\nBack key:\n";
    opstream << backkey;
    opstream << "\nLeft key:\n";
    opstream << leftkey;
    opstream << "\nRight key:\n";
    opstream << rightkey;
    opstream << "\nJump key:\n";
    opstream << jumpkey;
    opstream << "\nCrouch key:\n";
    opstream << crouchkey;
    opstream << "\nDraw key:\n";
    opstream << drawkey;
    opstream << "\nThrow key:\n";
    opstream << throwkey;
    opstream << "\nAttack key:\n";
    opstream << attackkey;
    opstream << "\nConsole key:\n";
    opstream << consolekey;
    opstream << "\nDamage bar:\n";
    opstream << showdamagebar;
    opstream << "\nStereoMode:\n";
    opstream << stereomode;
    opstream << "\nStereoSeparation:\n";
    opstream << stereoseparation;
    opstream << "\nStereoReverse:\n";
    opstream << stereoreverse;
    opstream << "\n";
    opstream.close();
}

bool LoadSettings()
{
    errno = 0;
    ifstream ipstream(Folders::getConfigFilePath(), std::ios::in);
    if (ipstream.fail()) {
        perror(("Couldn't read config file " + Folders::getConfigFilePath()).c_str());
        return false;
    }
    char setting[256];
    char string[256];

    printf("Loading config\n");
    while (!ipstream.eof()) {
        ipstream.getline(setting, sizeof(setting));

        // skip blank lines
        // assume lines starting with spaces are all blank
        if (strlen(setting) == 0 || setting[0] == ' ' || setting[0] == '\t') {
            continue;
        }
        //~ printf("setting : %s\n",setting);

        if (ipstream.eof() || ipstream.fail()) {
            fprintf(stderr, "Error reading config file: Got setting name '%s', but value can't be read\n", setting);
            ipstream.close();
            return false;
        }

        if (!strncmp(setting, "Screenwidth", 11)) {
            ipstream >> kContextWidth;
        } else if (!strncmp(setting, "Screenheight", 12)) {
            ipstream >> kContextHeight;
        } else if (!strncmp(setting, "Fullscreen", 10)) {
            ipstream >> fullscreen;
        } else if (!strncmp(setting, "Mouse sensitivity", 17)) {
            ipstream >> usermousesensitivity;
        } else if (!strncmp(setting, "Blur", 4)) {
            ipstream >> ismotionblur;
        } else if (!strncmp(setting, "Overall Detail", 14)) {
            ipstream >> detail;
        } else if (!strncmp(setting, "Floating jump", 13)) {
            ipstream >> floatjump;
        } else if (!strncmp(setting, "Mouse jump", 10)) {
            ipstream >> mousejump;
        } else if (!strncmp(setting, "Ambient sound", 13)) {
            ipstream >> ambientsound;
        } else if (!strncmp(setting, "Blood", 5)) {
            ipstream >> bloodtoggle;
        } else if (!strncmp(setting, "Auto slomo", 10)) {
            ipstream >> autoslomo;
        } else if (!strncmp(setting, "Foliage", 7)) {
            ipstream >> foliage;
        } else if (!strncmp(setting, "Music", 5)) {
            ipstream >> musictoggle;
        } else if (!strncmp(setting, "Trilinear", 9)) {
            ipstream >> trilinear;
        } else if (!strncmp(setting, "Decals", 6)) {
            ipstream >> decalstoggle;
        } else if (!strncmp(setting, "Invert mouse", 12)) {
            ipstream >> invertmouse;
        } else if (!strncmp(setting, "Gamespeed", 9)) {
            ipstream >> gamespeed;
            oldgamespeed = gamespeed;
            if (oldgamespeed == 0) {
                gamespeed = 1;
                oldgamespeed = 1;
            }
        } else if (!strncmp(setting, "Damage effects", 14)) {
            ipstream >> damageeffects;
        } else if (!strncmp(setting, "Text", 4)) {
            ipstream >> texttoggle;
        } else if (!strncmp(setting, "Devtools", 8)) {
            ipstream >> devtools;
        } else if (!strncmp(setting, "Show Points", 11)) {
            ipstream >> showpoints;
        } else if (!strncmp(setting, "Always Blur", 11)) {
            ipstream >> alwaysblur;
        } else if (!strncmp(setting, "Immediate mode ", 15)) {
            ipstream >> immediate;
        } else if (!strncmp(setting, "Velocity blur", 13)) {
            ipstream >> velocityblur;
        } else if (!strncmp(setting, "Volume", 6)) {
            ipstream >> volume;
        } else if (!strncmp(setting, "Forward key", 11)) {
            ipstream >> forwardkey;
        } else if (!strncmp(setting, "Back key", 8)) {
            ipstream >> backkey;
        } else if (!strncmp(setting, "Left key", 8)) {
            ipstream >> leftkey;
        } else if (!strncmp(setting, "Right key", 9)) {
            ipstream >> rightkey;
        } else if (!strncmp(setting, "Jump key", 8)) {
            ipstream >> jumpkey;
        } else if (!strncmp(setting, "Crouch key", 10)) {
            ipstream >> crouchkey;
        } else if (!strncmp(setting, "Draw key", 8)) {
            ipstream >> drawkey;
        } else if (!strncmp(setting, "Throw key", 9)) {
            ipstream >> throwkey;
        } else if (!strncmp(setting, "Attack key", 10)) {
            ipstream >> attackkey;
        } else if (!strncmp(setting, "Console key", 11)) {
            ipstream >> consolekey;
        } else if (!strncmp(setting, "Damage bar", 10)) {
            ipstream >> showdamagebar;
        } else if (!strncmp(setting, "StereoMode", 10)) {
            int i;
            ipstream >> i;
            stereomode = (StereoMode)i;
        } else if (!strncmp(setting, "StereoSeparation", 16)) {
            ipstream >> stereoseparation;
        } else if (!strncmp(setting, "StereoReverse", 13)) {
            ipstream >> stereoreverse;
        } else {
            ipstream >> string;
            fprintf(stderr, "Unknown config option '%s' with value '%s'. Ignoring.\n", setting, string);
        }

        if (ipstream.fail()) {
            fprintf(stderr, "Error reading config file: EOF reached when trying to read value for setting '%s'.\n", setting);
            ipstream.close();
            return false;
        }

        if (ipstream.bad()) {
            fprintf(stderr, "Error reading config file: Failed to read value for setting '%s'.\n", setting);
            ipstream.close();
            return false;
        }
    }

    ipstream.close();

    if (detail > 2) {
        detail = 2;
    }
    if (detail < 0) {
        detail = 0;
    }
    if (screenwidth < 0) {
        screenwidth = 1024;
    }
    if (screenheight < 0) {
        screenheight = 768;
    }

    newdetail = detail;
    return true;
}