forked from stepmania/stepmania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrefsManager.h
404 lines (363 loc) · 13.8 KB
/
PrefsManager.h
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
#ifndef PREFSMANAGER_H
#define PREFSMANAGER_H
#include "Preference.h"
#include "GameConstantsAndTypes.h"
#include <unordered_map>
class IniFile;
void ValidateDisplayAspectRatio( float &val );
void ValidateSongsPerPlay( int &val );
/** @brief How many songs can be played during a normal game max?
*
* This assumes no extra stages, no event mode, no course modes. */
const int MAX_SONGS_PER_PLAY = 7;
enum MusicWheelUsesSections
{
MusicWheelUsesSections_NEVER,
MusicWheelUsesSections_ALWAYS,
MusicWheelUsesSections_ABC_ONLY,
NUM_MusicWheelUsesSections,
MusicWheelUsesSections_Invalid
};
/** @brief The options for allowing the W1 timing. */
enum AllowW1
{
ALLOW_W1_NEVER, /**< The W1 timing is not used. */
ALLOW_W1_COURSES_ONLY, /**< The W1 timing is used for courses only. */
ALLOW_W1_EVERYWHERE, /**< The W1 timing is used for all modes. */
NUM_AllowW1,
AllowW1_Invalid
};
enum Maybe
{
Maybe_ASK,
Maybe_NO,
Maybe_YES,
NUM_Maybe,
Maybe_Invalid
};
enum GetRankingName
{
RANKING_OFF,
RANKING_ON,
RANKING_LIST,
NUM_GetRankingName,
GetRankingName_Invalid
};
enum RandomBackgroundMode
{
BGMODE_OFF,
BGMODE_ANIMATIONS,
BGMODE_RANDOMMOVIES,
NUM_RandomBackgroundMode,
RandomBackgroundMode_Invalid
};
enum ShowDancingCharacters
{
SDC_Off,
SDC_Random,
SDC_Select,
NUM_ShowDancingCharacters,
ShowDancingCharacters_Invalid
};
enum BannerCacheMode
{
BNCACHE_OFF,
BNCACHE_LOW_RES_PRELOAD, // preload low-res on start
BNCACHE_LOW_RES_LOAD_ON_DEMAND, // preload low-res on screen load
BNCACHE_FULL,
NUM_BannerCacheMode,
BannerCacheMode_Invalid
};
/*
enum BackgroundCacheMode
{
BGCACHE_OFF,
BGCACHE_LOW_RES_PRELOAD, // preload low-res on start
BGCACHE_LOW_RES_LOAD_ON_DEMAND, // preload low-res on screen load
BGCACHE_FULL,
NUM_BackgroundCacheMode,
BackgroundCacheMode_Invalid
};
*/
enum HighResolutionTextures
{
HighResolutionTextures_Auto,
HighResolutionTextures_ForceOff,
HighResolutionTextures_ForceOn,
NUM_HighResolutionTextures,
HighResolutionTextures_Invalid,
};
enum AttractSoundFrequency
{
ASF_NEVER,
ASF_EVERY_TIME,
ASF_EVERY_2_TIMES,
ASF_EVERY_3_TIMES,
ASF_EVERY_4_TIMES,
ASF_EVERY_5_TIMES,
NUM_AttractSoundFrequency,
AttractSoundFrequency_Invalid
};
enum CourseSortOrders
{
COURSE_SORT_PREFERRED,
COURSE_SORT_SONGS,
COURSE_SORT_METER,
COURSE_SORT_METER_SUM,
COURSE_SORT_RANK,
NUM_CourseSortOrders,
CourseSortOrders_Invalid
};
enum BackgroundFitMode
{
BFM_CoverDistort,
BFM_CoverPreserve,
BFM_FitInside,
BFM_FitInsideAvoidLetter,
BFM_FitInsideAvoidPillar,
NUM_BackgroundFitMode,
BackgroundFitMode_Invalid
};
/** @brief Holds user-chosen preferences that are saved between sessions. */
class PrefsManager
{
public:
PrefsManager();
~PrefsManager();
void Init();
void SetCurrentGame( const std::string &sGame );
std::string GetCurrentGame() { return m_sCurrentGame.Get(); }
protected:
Preference<std::string> m_sCurrentGame;
public:
// Game-specific prefs. Copy these off and save them every time the game changes
Preference<std::string> m_sAnnouncer;
Preference<std::string> m_sTheme;
Preference<std::string> m_sDefaultModifiers;
protected:
void StoreGamePrefs();
void RestoreGamePrefs();
struct GamePrefs
{
// See GamePrefs::GamePrefs in PrefsManager.cpp for some default settings
GamePrefs();
std::string m_sAnnouncer;
std::string m_sTheme;
std::string m_sDefaultModifiers;
};
// Probably not a problem if the per-game sections are written to prefs in
// random order. -Kyz
std::unordered_map<std::string, GamePrefs> m_mapGameNameToGamePrefs;
public:
Preference<bool> m_bWindowed;
Preference<std::string> m_sDisplayId;
Preference<int> m_iDisplayWidth;
Preference<int> m_iDisplayHeight;
Preference<float> m_fDisplayAspectRatio;
Preference<int> m_iDisplayColorDepth;
Preference<int> m_iTextureColorDepth;
Preference<int> m_iMovieColorDepth;
Preference<bool> m_bStretchBackgrounds;
Preference<BackgroundFitMode> m_BGFitMode;
Preference<HighResolutionTextures> m_HighResolutionTextures;
Preference<int> m_iMaxTextureResolution;
Preference<int> m_iRefreshRate;
Preference<bool> m_bAllowMultitexture;
Preference<bool> m_bFullscreenIsBorderlessWindow;
Preference<bool> m_bShowStats;
Preference<bool> m_bShowBanners;
Preference<bool> m_bShowMouseCursor;
Preference<bool> m_bHiddenSongs;
Preference<bool> m_bVsync;
Preference<bool> m_FastNoteRendering;
Preference<bool> m_bInterlaced;
Preference<bool> m_bPAL;
Preference<bool> m_bDelayedTextureDelete;
Preference<bool> m_bDelayedModelDelete;
Preference<BannerCacheMode> m_BannerCache;
//Preference<BackgroundCacheMode> m_BackgroundCache;
Preference<bool> m_bFastLoad;
Preference<bool> m_bFastLoadAdditionalSongs;
Preference<std::string> m_NeverCacheList;
Preference<bool> m_bOnlyDedicatedMenuButtons;
Preference<bool> m_bMenuTimer;
Preference<float> m_fLifeDifficultyScale;
// Whoever added these: Please add a comment saying what they do. -Chris
Preference<int> m_iRegenComboAfterMiss; // combo that must be met after a Miss to regen life
Preference<int> m_iMaxRegenComboAfterMiss; // caps RegenComboAfterMiss if multiple Misses occur in rapid succession
Preference<bool> m_bMercifulDrain; // negative life deltas are scaled by the players life percentage
Preference<bool> m_HarshHotLifePenalty; // See LifeMeterBar.cpp -Kyz
Preference<bool> m_bMinimum1FullSongInCourses; // FEoS for 1st song, FailImmediate thereafter
Preference<bool> m_bFailOffInBeginner;
Preference<bool> m_bFailOffForFirstStageEasy;
Preference<bool> m_bMercifulBeginner; // don't subtract from percent score or grade DP, larger W5 window
Preference<bool> m_bMercifulSuperMeter; // negative super deltas are scaled by the players life percentage
Preference<bool> m_bDelayedBack;
Preference<bool> m_AllowHoldForOptions;
Preference<bool> m_bShowInstructions; // how to play a mode
Preference<bool> m_bShowCaution;
Preference<bool> m_bShowNativeLanguage;
Preference<int> m_iArcadeOptionsNavigation;
Preference<bool> m_ThreeKeyNavigation;
Preference<MusicWheelUsesSections> m_MusicWheelUsesSections;
Preference<int> m_iMusicWheelSwitchSpeed;
Preference<AllowW1> m_AllowW1; // this should almost always be on, given use cases. -aj
Preference<bool> m_bEventMode;
Preference<int> m_iCoinsPerCredit;
Preference<int> m_iSongsPerPlay;
Preference<bool> m_bDelayedCreditsReconcile; // zuh?
Preference<bool> m_bComboContinuesBetweenSongs;
Preference<bool> m_AllowMultipleToasties;
Preference<TapNoteScore> m_MinTNSToHideNotes;
Preference<Maybe> m_ShowSongOptions;
Preference<bool> m_bDancePointsForOni;
Preference<bool> m_bPercentageScoring;
Preference<float> m_fMinPercentageForMachineSongHighScore;
Preference<float> m_fMinPercentageForMachineCourseHighScore;
Preference<bool> m_bDisqualification;
Preference<bool> m_bAutogenSteps;
Preference<bool> m_bAutogenGroupCourses;
Preference<bool> m_bOnlyPreferredDifficulties;
Preference<bool> m_bBreakComboToGetItem;
Preference<bool> m_bLockCourseDifficulties;
Preference<ShowDancingCharacters> m_ShowDancingCharacters;
Preference<bool> m_bUseUnlockSystem;
Preference<float> m_fGlobalOffsetSeconds;
Preference<int> m_iProgressiveLifebar;
Preference<int> m_iProgressiveStageLifebar;
Preference<int> m_iProgressiveNonstopLifebar;
Preference<bool> m_bShowBeginnerHelper;
Preference<bool> m_bDisableScreenSaver;
Preference<std::string> m_sLanguage;
Preference<std::string> m_sMemoryCardProfileSubdir; // the directory on a memory card to look in for a profile
Preference<int> m_iProductID; // Saved in HighScore to track what software version a score came from.
Preference<int> m_iCenterImageTranslateX;
Preference<int> m_iCenterImageTranslateY;
Preference<int> m_fCenterImageAddWidth;
Preference<int> m_fCenterImageAddHeight;
Preference<AttractSoundFrequency> m_AttractSoundFrequency;
Preference<bool> m_bAllowExtraStage;
Preference<int> m_iMaxHighScoresPerListForMachine;
Preference<int> m_iMaxHighScoresPerListForPlayer;
Preference<bool> m_bAllowMultipleHighScoreWithSameName;
Preference<bool> m_DisableUploadDir;
Preference<bool> m_bCelShadeModels;
Preference<bool> m_bPreferredSortUsesGroups;
Preference<float> m_fDebounceCoinInputTime; // allow users to apply a distinct debounce to coin input
// Number of seconds it takes for a button on the controller to release
// after pressed.
Preference<float> m_fPadStickSeconds;
// Lead in time before recording starts in edit mode.
Preference<float> m_EditRecordModeLeadIn;
// User is prompted on clearing an area with more than this note count.
Preference<int> m_EditClearPromptThreshold;
// Useful for non 4:3 displays and resolutions < 640x480 where texels don't
// map directly to pixels.
Preference<bool> m_bForceMipMaps;
Preference<bool> m_bTrilinearFiltering; // has no effect without mipmaps on
Preference<bool> m_bAnisotropicFiltering; // has no effect without mipmaps on. Not mutually exclusive with trilinear.
// If true, then signatures created when writing profile data and verified
// when reading profile data. Leave this false if you want to use a profile
// on different machines that don't have the same key, or else the
// profile's data will be discarded.
Preference<bool> m_bSignProfileData;
Preference<bool> m_WarnOnNoProfile;
// course ranking
Preference<CourseSortOrders> m_CourseSortOrder;
Preference<bool> m_bSubSortByNumSteps;
Preference<GetRankingName> m_GetRankingName;
Preference<std::string> m_sAdditionalSongFolders;
Preference<std::string> m_sAdditionalCourseFolders;
Preference<std::string> m_sAdditionalFolders;
// failsafe
Preference<std::string> m_sDefaultTheme;
Preference<std::string> m_sLastSeenVideoDriver;
Preference<std::string> m_sVideoRenderers; // StepMania.cpp sets these on first run based on the card
Preference<bool> m_bSmoothLines;
Preference<int> m_iSoundWriteAhead;
Preference<std::string> m_iSoundDevice;
Preference<int> m_iSoundPreferredSampleRate;
Preference<std::string> m_sLightsStepsDifficulty;
Preference<bool> m_bAllowUnacceleratedRenderer;
Preference<bool> m_bThreadedInput;
Preference<bool> m_bThreadedMovieDecode;
Preference<std::string> m_sTestInitialScreen;
// m_bDebugLights is not a preference because people hit it by accident and
// have no clue how to turn it off -Kyz
bool m_bDebugLights;
Preference<std::string> m_sMachineName;
Preference<std::string> m_sCoursesToShowRanking;
Preference<bool> m_MuteActions;
Preference<bool> m_bAllowSongDeletion; // Allow the user to remove songs from their collection through UI / keyboard shortcut
/** @brief Enable some quirky behavior used by some older versions of StepMania. */
Preference<bool> m_bQuirksMode;
Preference<bool> m_custom_songs_enable;
Preference<unsigned int> m_custom_songs_max_count;
Preference<float> m_custom_songs_load_timeout;
Preference<float> m_custom_songs_max_seconds;
Preference<float> m_custom_songs_max_megabytes;
// Debug:
Preference<bool> m_bLogToDisk;
Preference<bool> m_bForceLogFlush;
Preference<bool> m_bShowLogOutput;
Preference<bool> m_bLogSkips;
Preference<bool> m_bLogCheckpoints;
Preference<bool> m_bShowLoadingWindow;
Preference<bool> m_bPseudoLocalize;
Preference<bool> m_show_theme_errors;
#if !defined(WITHOUT_NETWORKING)
Preference<bool> m_bEnableScoreboard; //Alows disabling of scoreboard in network play
// Check for Updates code
Preference<bool> m_bUpdateCheckEnable;
// TODO - Aldo_MX: Use PREFSMAN->m_iUpdateCheckIntervalSeconds & PREFSMAN->m_iUpdateCheckLastCheckedSecond
//Preference<int> m_iUpdateCheckIntervalSeconds;
//Preference<int> m_iUpdateCheckLastCheckedSecond;
// TODO - Aldo_MX: Write helpers in LuaManager.cpp to treat unsigned int/long like LUA Numbers
//Preference<unsigned long> m_uUpdateCheckLastCheckedBuild;
#endif
void ReadPrefsFromIni( const IniFile &ini, const std::string &sSection, bool bIsStatic );
void ReadGamePrefsFromIni( const std::string &sIni );
void ReadDefaultsFromIni( const IniFile &ini, const std::string &sSection );
void SavePrefsToIni( IniFile &ini );
void ReadPrefsFromDisk();
void SavePrefsToDisk();
void ResetToFactoryDefaults();
std::string GetPreferencesSection() const;
// Lua
void PushSelf( lua_State *L );
protected:
void ReadPrefsFromFile( const std::string &sIni, const std::string &sSection, bool bIsStatic );
void ReadDefaultsFromFile( const std::string &sIni, const std::string &sSection );
};
/* This is global, because it can be accessed by crash handlers and error handlers
* that are run after PREFSMAN shuts down (and probably don't want to deref that
* pointer anyway). */
extern bool g_bAutoRestart;
extern PrefsManager* PREFSMAN; // global and accessible from anywhere in our program
#endif
/**
* @file
* @author Chris Danford, Chris Gomez (c) 2001-2004
* @section LICENSE
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/