2012-11-01 16:19:01 +01:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 23:01:49 +01:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2014-01-03 14:32:33 +01:00
|
|
|
#include <map>
|
2013-03-24 20:03:42 +01:00
|
|
|
#include <vector>
|
2013-07-06 19:08:59 +02:00
|
|
|
|
2019-06-07 05:16:27 +08:00
|
|
|
#include "ppsspp_config.h"
|
2017-02-25 00:52:42 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2019-06-22 11:48:36 -07:00
|
|
|
#include "Core/ConfigValues.h"
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-03-02 12:31:11 -08:00
|
|
|
extern const char *PPSSPP_GIT_VERSION;
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2016-12-05 11:04:31 +08:00
|
|
|
enum ChatPositions {
|
|
|
|
BOTTOM_LEFT = 0,
|
|
|
|
BOTTOM_CENTER = 1,
|
|
|
|
BOTOM_RIGHT = 2,
|
|
|
|
TOP_LEFT = 3,
|
|
|
|
TOP_CENTER = 4,
|
|
|
|
TOP_RIGHT = 5,
|
|
|
|
CENTER_LEFT = 6,
|
|
|
|
CENTER_RIGHT = 7,
|
|
|
|
};
|
|
|
|
|
2013-11-26 14:04:29 +01:00
|
|
|
namespace http {
|
|
|
|
class Download;
|
|
|
|
class Downloader;
|
|
|
|
}
|
|
|
|
|
2014-02-09 17:15:00 -08:00
|
|
|
struct UrlEncoder;
|
|
|
|
|
2018-06-16 22:14:41 -07:00
|
|
|
struct ConfigTouchPos {
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float scale;
|
|
|
|
// Note: Show is not used for all settings.
|
|
|
|
bool show;
|
|
|
|
};
|
|
|
|
|
2013-08-24 02:16:10 +02:00
|
|
|
struct Config {
|
2012-11-01 16:19:01 +01:00
|
|
|
public:
|
2013-03-24 20:03:42 +01:00
|
|
|
Config();
|
|
|
|
~Config();
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2012-12-25 08:34:19 +01:00
|
|
|
// Whether to save the config on close.
|
2012-11-01 16:19:01 +01:00
|
|
|
bool bSaveSettings;
|
2013-06-01 19:01:43 +02:00
|
|
|
bool bFirstRun;
|
2014-12-14 20:33:20 +01:00
|
|
|
bool bGameSpecific;
|
2013-06-01 19:01:43 +02:00
|
|
|
|
2013-11-26 10:24:31 +01:00
|
|
|
int iRunCount; // To be used to for example check for updates every 10 runs and things like that.
|
|
|
|
|
2013-01-04 10:26:14 +01:00
|
|
|
bool bAutoRun; // start immediately
|
2013-08-27 17:36:04 -04:00
|
|
|
bool bBrowse; // when opening the emulator, immediately show a file browser
|
|
|
|
|
2013-05-01 14:08:01 +02:00
|
|
|
// General
|
|
|
|
int iNumWorkerThreads;
|
2013-07-08 00:10:23 +02:00
|
|
|
bool bScreenshotsAsPNG;
|
2016-08-27 14:38:05 -04:00
|
|
|
bool bUseFFV1;
|
|
|
|
bool bDumpFrames;
|
2019-06-03 12:21:22 +02:00
|
|
|
bool bDumpVideoOutput;
|
2016-09-03 10:06:40 -04:00
|
|
|
bool bDumpAudio;
|
2017-11-14 05:12:27 +01:00
|
|
|
bool bSaveLoadResetsAVdumping;
|
2013-07-27 19:59:08 -04:00
|
|
|
bool bEnableLogging;
|
2014-02-27 01:19:32 -05:00
|
|
|
bool bDumpDecryptedEboot;
|
2015-10-14 17:45:21 +02:00
|
|
|
bool bFullscreenOnDoubleclick;
|
2019-08-21 10:17:33 +02:00
|
|
|
|
|
|
|
// These four are Win UI only
|
2013-10-11 14:53:25 +03:00
|
|
|
bool bPauseOnLostFocus;
|
2013-08-27 17:36:04 -04:00
|
|
|
bool bTopMost;
|
2014-01-07 15:32:58 -05:00
|
|
|
bool bIgnoreWindowsKey;
|
2017-05-21 17:24:40 +02:00
|
|
|
bool bRestartRequired;
|
2019-08-21 10:17:33 +02:00
|
|
|
|
2018-06-09 11:34:12 -07:00
|
|
|
std::string sFont;
|
2014-04-26 01:00:45 -04:00
|
|
|
|
2014-06-30 13:04:44 -04:00
|
|
|
bool bPauseWhenMinimized;
|
|
|
|
|
2019-08-21 10:17:33 +02:00
|
|
|
// Not used on mobile devices.
|
2014-04-26 01:54:32 -04:00
|
|
|
bool bPauseExitsEmulator;
|
2019-08-21 10:17:33 +02:00
|
|
|
|
2018-04-02 16:31:26 +02:00
|
|
|
bool bPauseMenuExitsEmulator;
|
2014-04-26 01:00:45 -04:00
|
|
|
|
2012-12-25 08:34:19 +01:00
|
|
|
// Core
|
2012-11-01 16:19:01 +01:00
|
|
|
bool bIgnoreBadMemAccess;
|
2020-07-04 20:57:05 +02:00
|
|
|
|
2012-12-21 16:49:02 +01:00
|
|
|
bool bFastMemory;
|
2016-05-06 23:45:37 +02:00
|
|
|
int iCpuCore;
|
2013-12-12 15:58:46 +01:00
|
|
|
bool bCheckForNewVersion;
|
2014-06-01 00:52:10 -07:00
|
|
|
bool bForceLagSync;
|
2014-06-07 00:13:45 -07:00
|
|
|
bool bFuncReplacements;
|
2017-03-11 19:31:00 -08:00
|
|
|
bool bHideSlowWarnings;
|
2018-06-14 17:54:13 -07:00
|
|
|
bool bHideStateWarnings;
|
2018-01-06 16:43:38 -08:00
|
|
|
bool bPreloadFunctions;
|
2019-02-03 13:58:24 -08:00
|
|
|
uint32_t uJitDisableFlags;
|
2013-12-12 15:58:46 +01:00
|
|
|
|
2015-11-15 11:03:16 -08:00
|
|
|
bool bSeparateSASThread;
|
2020-07-05 10:37:44 +02:00
|
|
|
bool bSeparateIOThread;
|
2015-11-15 11:03:16 -08:00
|
|
|
int iIOTimingMethod;
|
2013-06-12 17:15:45 -04:00
|
|
|
int iLockedCPUSpeed;
|
2013-03-30 21:42:43 -07:00
|
|
|
bool bAutoSaveSymbolMap;
|
2014-10-31 00:14:00 +01:00
|
|
|
bool bCacheFullIsoInRam;
|
2016-07-03 21:09:17 -07:00
|
|
|
int iRemoteISOPort;
|
2017-02-13 21:18:14 -05:00
|
|
|
std::string sLastRemoteISOServer;
|
|
|
|
int iLastRemoteISOPort;
|
2017-02-21 20:45:58 -05:00
|
|
|
bool bRemoteISOManual;
|
2017-12-10 18:30:28 -08:00
|
|
|
bool bRemoteShareOnStartup;
|
2017-02-21 20:45:58 -05:00
|
|
|
std::string sRemoteISOSubdir;
|
2018-04-21 13:54:44 -07:00
|
|
|
bool bRemoteDebuggerOnStartup;
|
2016-08-05 21:27:53 -07:00
|
|
|
bool bMemStickInserted;
|
2015-05-12 21:01:15 +02:00
|
|
|
|
|
|
|
int iScreenRotation; // The rotation angle of the PPSSPP UI. Only supported on Android and possibly other mobile platforms.
|
|
|
|
int iInternalScreenRotation; // The internal screen rotation angle. Useful for vertical SHMUPs and similar.
|
2014-02-04 12:58:37 +01:00
|
|
|
|
2013-03-01 08:51:01 -08:00
|
|
|
std::string sReportHost;
|
2013-03-24 20:03:42 +01:00
|
|
|
std::vector<std::string> recentIsos;
|
2013-12-07 22:39:35 -08:00
|
|
|
std::vector<std::string> vPinnedPaths;
|
2013-09-16 19:47:25 -04:00
|
|
|
std::string sLanguageIni;
|
2012-12-21 11:08:54 +01:00
|
|
|
|
2018-08-13 00:08:56 +02:00
|
|
|
bool bDiscordPresence; // Enables setting the Discord presence to the current game (or menu)
|
|
|
|
|
2012-12-21 11:08:54 +01:00
|
|
|
// GFX
|
2014-08-17 16:07:14 +02:00
|
|
|
int iGPUBackend;
|
2018-09-01 13:57:20 -07:00
|
|
|
std::string sFailedGPUBackends;
|
2019-06-22 11:48:36 -07:00
|
|
|
std::string sDisabledGPUBackends;
|
2018-04-15 09:56:37 +02:00
|
|
|
// We have separate device parameters for each backend so it doesn't get erased if you switch backends.
|
|
|
|
// If not set, will use the "best" device.
|
2018-06-06 10:24:16 +02:00
|
|
|
std::string sVulkanDevice;
|
2019-08-21 10:17:33 +02:00
|
|
|
std::string sD3D11Device; // Windows only
|
2020-01-09 15:57:09 +02:00
|
|
|
std::string sCameraDevice;
|
2019-08-21 10:17:33 +02:00
|
|
|
|
2013-08-16 21:48:30 +02:00
|
|
|
bool bSoftwareRendering;
|
|
|
|
bool bHardwareTransform; // only used in the GLES backend
|
2018-04-10 12:22:02 +02:00
|
|
|
bool bSoftwareSkinning; // may speed up some games
|
2018-12-15 10:44:05 +01:00
|
|
|
bool bVendorBugChecksEnabled;
|
2013-11-10 13:18:52 +01:00
|
|
|
|
2017-12-25 11:20:26 -08:00
|
|
|
int iRenderingMode; // 0 = non-buffered rendering 1 = buffered rendering
|
2013-06-30 14:48:50 +08:00
|
|
|
int iTexFiltering; // 1 = off , 2 = nearest , 3 = linear , 4 = linear(CG)
|
2014-08-08 20:51:15 +02:00
|
|
|
int iBufFilter; // 1 = linear, 2 = nearest
|
2015-12-21 06:32:05 +01:00
|
|
|
int iSmallDisplayZoomType; // Used to fit display into screen 0 = stretch, 1 = partial stretch, 2 = auto scaling, 3 = manual scaling.
|
2015-10-24 14:40:29 +02:00
|
|
|
float fSmallDisplayOffsetX; // Along with Y it goes from 0.0 to 1.0, XY (0.5, 0.5) = center of the screen
|
|
|
|
float fSmallDisplayOffsetY;
|
2015-12-21 06:32:05 +01:00
|
|
|
float fSmallDisplayZoomLevel; //This is used for zoom values, both in and out.
|
2014-02-09 23:16:08 +01:00
|
|
|
bool bImmersiveMode; // Mode on Android Kitkat 4.4 that hides the back button etc.
|
2017-06-09 15:29:57 +02:00
|
|
|
bool bSustainedPerformanceMode; // Android: Slows clocks down to avoid overheating/speed fluctuations.
|
2020-07-05 22:46:04 +02:00
|
|
|
bool bIgnoreScreenInsets; // Android: Center screen disregarding insets if this is enabled.
|
2013-07-20 22:03:52 +08:00
|
|
|
bool bVSync;
|
2013-05-02 21:36:36 +02:00
|
|
|
int iFrameSkip;
|
2018-11-03 01:33:41 +00:00
|
|
|
int iFrameSkipType;
|
2014-01-25 21:41:39 +05:00
|
|
|
bool bAutoFrameSkip;
|
2013-09-17 11:33:32 +05:00
|
|
|
bool bFrameSkipUnthrottle;
|
2013-02-13 18:21:21 +01:00
|
|
|
|
2019-10-25 11:01:49 +02:00
|
|
|
bool bEnableCardboardVR; // Cardboard Master Switch
|
2019-10-25 10:34:08 +02:00
|
|
|
int iCardboardScreenSize; // Screen Size (in %)
|
|
|
|
int iCardboardXShift; // X-Shift of Screen (in %)
|
|
|
|
int iCardboardYShift; // Y-Shift of Screen (in %)
|
|
|
|
|
2013-03-30 17:49:02 +01:00
|
|
|
int iWindowX;
|
|
|
|
int iWindowY;
|
2013-09-11 00:19:34 +02:00
|
|
|
int iWindowWidth; // Windows and other windowed environments
|
|
|
|
int iWindowHeight;
|
|
|
|
|
2013-01-19 17:05:08 +01:00
|
|
|
bool bVertexCache;
|
2013-12-29 14:43:45 -08:00
|
|
|
bool bTextureBackoffCache;
|
|
|
|
bool bTextureSecondaryCache;
|
2013-11-09 18:16:26 +01:00
|
|
|
bool bVertexDecoderJit;
|
2013-01-27 21:05:09 +08:00
|
|
|
bool bFullScreen;
|
2017-07-30 08:33:02 -07:00
|
|
|
bool bFullScreenMulti;
|
2013-09-11 00:19:34 +02:00
|
|
|
int iInternalResolution; // 0 = Auto (native), 1 = 1x (480x272), 2 = 2x, 3 = 3x, 4 = 4x and so on.
|
2013-07-17 22:27:05 +02:00
|
|
|
int iAnisotropyLevel; // 0 - 5, powers of 2: 0 = 1x = no aniso
|
2016-01-20 22:00:07 -08:00
|
|
|
int bHighQualityDepth;
|
2016-04-30 14:05:03 -07:00
|
|
|
bool bReplaceTextures;
|
|
|
|
bool bSaveNewTextures;
|
2018-09-30 17:55:51 -07:00
|
|
|
bool bIgnoreTextureFilenames;
|
2018-06-16 19:20:23 -07:00
|
|
|
int iTexScalingLevel; // 0 = auto, 1 = off, 2 = 2x, ..., 5 = 5x
|
2013-05-03 10:29:29 +02:00
|
|
|
int iTexScalingType; // 0 = xBRZ, 1 = Hybrid
|
2013-05-03 16:21:46 +02:00
|
|
|
bool bTexDeposterize;
|
2019-09-29 18:10:55 -07:00
|
|
|
bool bTexHardwareScaling;
|
2018-06-16 20:07:11 -07:00
|
|
|
int iFpsLimit1;
|
|
|
|
int iFpsLimit2;
|
2013-05-19 16:40:01 +02:00
|
|
|
int iMaxRecent;
|
2013-07-21 13:31:46 +02:00
|
|
|
int iCurrentStateSlot;
|
2013-11-02 18:33:23 -07:00
|
|
|
int iRewindFlipFrequency;
|
2018-03-17 14:00:06 -07:00
|
|
|
bool bEnableStateUndo;
|
2018-06-21 09:00:57 +01:00
|
|
|
int iAutoLoadSaveState; // 0 = off, 1 = oldest, 2 = newest, >2 = slot number + 3
|
2013-05-23 13:10:39 +02:00
|
|
|
bool bEnableCheats;
|
2013-05-30 02:08:20 -05:00
|
|
|
bool bReloadCheats;
|
2015-01-27 00:50:50 +01:00
|
|
|
int iCwCheatRefreshRate;
|
2020-03-26 10:59:08 +01:00
|
|
|
float fCwCheatScrollPosition;
|
2015-01-23 02:08:20 +01:00
|
|
|
int iBloomHack; //0 = off, 1 = safe, 2 = balanced, 3 = aggressive
|
2014-05-25 10:18:14 +02:00
|
|
|
bool bBlockTransferGPU;
|
2014-07-08 23:32:41 -07:00
|
|
|
bool bDisableSlowFramebufEffects;
|
2014-08-24 15:26:38 -07:00
|
|
|
bool bFragmentTestCache;
|
2014-04-25 20:44:02 +08:00
|
|
|
int iSplineBezierQuality; // 0 = low , 1 = Intermediate , 2 = High
|
2017-01-07 00:14:58 +09:00
|
|
|
bool bHardwareTessellation;
|
2013-10-12 02:05:55 +02:00
|
|
|
std::string sPostShaderName; // Off for off.
|
2020-05-16 00:52:38 +02:00
|
|
|
std::map<std::string, float> mPostShaderSetting;
|
2015-10-11 11:46:24 +02:00
|
|
|
bool bGfxDebugOutput;
|
2017-11-22 10:46:23 +01:00
|
|
|
bool bGfxDebugSplitSubmit;
|
2020-03-01 08:53:46 -08:00
|
|
|
int iInflightFrames;
|
2020-01-29 10:16:03 +01:00
|
|
|
bool bRenderDuplicateFrames;
|
2012-12-25 08:34:19 +01:00
|
|
|
|
|
|
|
// Sound
|
|
|
|
bool bEnableSound;
|
2015-01-24 13:50:27 +01:00
|
|
|
int iAudioBackend;
|
2016-01-17 22:47:29 -08:00
|
|
|
int iGlobalVolume;
|
2019-06-23 13:34:08 -07:00
|
|
|
int iAltSpeedVolume;
|
2016-12-01 21:35:32 +01:00
|
|
|
bool bExtraAudioBuffering; // For bluetooth
|
2019-09-15 12:54:55 -07:00
|
|
|
std::string sAudioDevice;
|
2019-09-15 13:42:56 -07:00
|
|
|
bool bAutoAudioDevice;
|
2013-06-17 20:28:22 +02:00
|
|
|
|
2013-10-10 16:44:12 +02:00
|
|
|
// UI
|
|
|
|
bool bShowDebuggerOnLoad;
|
2013-06-19 13:08:29 +08:00
|
|
|
int iShowFPSCounter;
|
2020-02-23 08:33:44 +01:00
|
|
|
bool bShowRegionOnGameIcon;
|
2020-02-23 14:01:15 +01:00
|
|
|
bool bShowIDOnGameIcon;
|
2020-03-01 15:34:35 +01:00
|
|
|
float fGameGridScale;
|
2015-01-29 12:55:49 +01:00
|
|
|
|
2017-03-26 09:51:33 -07:00
|
|
|
// TODO: Maybe move to a separate theme system.
|
|
|
|
uint32_t uItemStyleFg;
|
|
|
|
uint32_t uItemStyleBg;
|
|
|
|
uint32_t uItemFocusedStyleFg;
|
|
|
|
uint32_t uItemFocusedStyleBg;
|
|
|
|
uint32_t uItemDownStyleFg;
|
|
|
|
uint32_t uItemDownStyleBg;
|
|
|
|
uint32_t uItemDisabledStyleFg;
|
|
|
|
uint32_t uItemDisabledStyleBg;
|
|
|
|
uint32_t uItemHighlightedStyleFg;
|
|
|
|
uint32_t uItemHighlightedStyleBg;
|
|
|
|
|
|
|
|
uint32_t uButtonStyleFg;
|
|
|
|
uint32_t uButtonStyleBg;
|
|
|
|
uint32_t uButtonFocusedStyleFg;
|
|
|
|
uint32_t uButtonFocusedStyleBg;
|
|
|
|
uint32_t uButtonDownStyleFg;
|
|
|
|
uint32_t uButtonDownStyleBg;
|
|
|
|
uint32_t uButtonDisabledStyleFg;
|
|
|
|
uint32_t uButtonDisabledStyleBg;
|
|
|
|
uint32_t uButtonHighlightedStyleFg;
|
|
|
|
uint32_t uButtonHighlightedStyleBg;
|
|
|
|
|
|
|
|
uint32_t uHeaderStyleFg;
|
|
|
|
uint32_t uInfoStyleFg;
|
|
|
|
uint32_t uInfoStyleBg;
|
|
|
|
uint32_t uPopupTitleStyleFg;
|
|
|
|
uint32_t uPopupStyleFg;
|
|
|
|
uint32_t uPopupStyleBg;
|
|
|
|
|
2017-03-23 19:16:17 -07:00
|
|
|
bool bLogFrameDrops;
|
2012-11-22 23:07:15 +01:00
|
|
|
bool bShowDebugStats;
|
2015-01-29 12:55:49 +01:00
|
|
|
bool bShowAudioDebug;
|
2019-08-21 00:03:00 +02:00
|
|
|
bool bShowGpuProfile;
|
2013-10-27 23:28:47 +05:30
|
|
|
|
|
|
|
//Analog stick tilting
|
|
|
|
//the base x and y tilt. this inclination is treated as (0,0) and the tilt input
|
|
|
|
//considers this orientation to be equal to no movement of the analog stick.
|
|
|
|
float fTiltBaseX, fTiltBaseY;
|
|
|
|
//whether the x axes and y axes should invert directions (left becomes right, top becomes bottom.)
|
2016-08-27 14:38:05 -04:00
|
|
|
bool bInvertTiltX, bInvertTiltY;
|
2013-10-27 23:28:47 +05:30
|
|
|
//the sensitivity of the tilt in the x direction
|
|
|
|
int iTiltSensitivityX;
|
|
|
|
//the sensitivity of the tilt in the Y direction
|
|
|
|
int iTiltSensitivityY;
|
2013-10-28 16:43:42 +05:30
|
|
|
//the deadzone radius of the tilt
|
|
|
|
float fDeadzoneRadius;
|
2020-03-23 16:32:42 +01:00
|
|
|
// deadzone skip
|
|
|
|
float fTiltDeadzoneSkip;
|
2013-11-11 17:22:04 +05:30
|
|
|
//type of tilt input currently selected: Defined in TiltEventProcessor.h
|
|
|
|
//0 - no tilt, 1 - analog stick, 2 - D-Pad, 3 - Action Buttons (Tri, Cross, Square, Circle)
|
|
|
|
int iTiltInputType;
|
2012-11-20 10:59:23 +01:00
|
|
|
|
2013-08-18 22:30:34 +02:00
|
|
|
// The three tabs.
|
|
|
|
bool bGridView1;
|
|
|
|
bool bGridView2;
|
|
|
|
bool bGridView3;
|
2015-06-28 13:34:05 +08:00
|
|
|
//Combo key screen flag
|
|
|
|
int iComboMode;
|
2013-08-18 22:30:34 +02:00
|
|
|
|
2019-11-13 18:55:18 +01:00
|
|
|
// Right analog binding
|
|
|
|
int iRightAnalogUp;
|
|
|
|
int iRightAnalogDown;
|
|
|
|
int iRightAnalogLeft;
|
|
|
|
int iRightAnalogRight;
|
|
|
|
int iRightAnalogPress;
|
|
|
|
bool bRightAnalogCustom;
|
|
|
|
|
2013-12-02 15:50:09 +01:00
|
|
|
// Disable diagonals
|
|
|
|
bool bDisableDpadDiagonals;
|
2015-02-28 14:02:03 -08:00
|
|
|
bool bGamepadOnlyFocused;
|
2013-12-10 23:19:37 +01:00
|
|
|
// Control Style
|
|
|
|
int iTouchButtonStyle;
|
2013-10-10 01:45:56 +05:30
|
|
|
int iTouchButtonOpacity;
|
2015-12-20 12:40:47 -08:00
|
|
|
int iTouchButtonHideSeconds;
|
2020-03-23 00:45:22 +01:00
|
|
|
// Auto rotation speed
|
|
|
|
float fAnalogAutoRotSpeed;
|
2019-12-19 00:41:32 +01:00
|
|
|
|
|
|
|
// Snap touch control position
|
|
|
|
bool bTouchSnapToGrid;
|
|
|
|
int iTouchSnapGridSize;
|
|
|
|
|
2015-03-05 10:58:25 +01:00
|
|
|
// Floating analog stick (recenters on thumb on press).
|
|
|
|
bool bAutoCenterTouchAnalog;
|
|
|
|
|
2013-10-10 01:45:56 +05:30
|
|
|
//space between PSP buttons
|
|
|
|
//the PSP button's center (triangle, circle, square, cross)
|
2018-06-16 22:14:41 -07:00
|
|
|
ConfigTouchPos touchActionButtonCenter;
|
2013-12-02 15:15:19 +01:00
|
|
|
float fActionButtonSpacing;
|
2013-10-10 01:45:56 +05:30
|
|
|
//radius of the D-pad (PSP cross)
|
2013-12-02 15:15:19 +01:00
|
|
|
// int iDpadRadius;
|
2013-10-10 01:45:56 +05:30
|
|
|
//the D-pad (PSP cross) position
|
2018-06-16 22:14:41 -07:00
|
|
|
ConfigTouchPos touchDpad;
|
2013-12-02 15:15:19 +01:00
|
|
|
float fDpadSpacing;
|
2018-06-16 22:14:41 -07:00
|
|
|
ConfigTouchPos touchStartKey;
|
|
|
|
ConfigTouchPos touchSelectKey;
|
|
|
|
ConfigTouchPos touchUnthrottleKey;
|
|
|
|
ConfigTouchPos touchLKey;
|
|
|
|
ConfigTouchPos touchRKey;
|
|
|
|
ConfigTouchPos touchAnalogStick;
|
2019-07-18 03:16:46 +02:00
|
|
|
ConfigTouchPos touchRightAnalogStick;
|
2018-06-16 22:14:41 -07:00
|
|
|
|
|
|
|
ConfigTouchPos touchCombo0;
|
|
|
|
ConfigTouchPos touchCombo1;
|
|
|
|
ConfigTouchPos touchCombo2;
|
|
|
|
ConfigTouchPos touchCombo3;
|
|
|
|
ConfigTouchPos touchCombo4;
|
2018-06-16 23:00:21 -07:00
|
|
|
ConfigTouchPos touchSpeed1Key;
|
|
|
|
ConfigTouchPos touchSpeed2Key;
|
2020-01-28 08:52:18 +01:00
|
|
|
ConfigTouchPos touchRapidFireKey;
|
2020-03-23 09:24:36 +01:00
|
|
|
ConfigTouchPos touchAnalogRotationCWKey;
|
|
|
|
ConfigTouchPos touchAnalogRotationCCWKey;
|
2015-06-28 13:34:05 +08:00
|
|
|
|
2013-10-20 15:36:01 +05:30
|
|
|
// Controls Visibility
|
|
|
|
bool bShowTouchControls;
|
|
|
|
|
|
|
|
bool bShowTouchCircle;
|
|
|
|
bool bShowTouchCross;
|
|
|
|
bool bShowTouchTriangle;
|
|
|
|
bool bShowTouchSquare;
|
|
|
|
|
2015-06-28 13:34:05 +08:00
|
|
|
// Combo_key mapping. These are bitfields.
|
|
|
|
int iCombokey0;
|
|
|
|
int iCombokey1;
|
|
|
|
int iCombokey2;
|
|
|
|
int iCombokey3;
|
|
|
|
int iCombokey4;
|
|
|
|
|
2020-02-12 15:48:49 +01:00
|
|
|
bool bComboToggle0;
|
|
|
|
bool bComboToggle1;
|
|
|
|
bool bComboToggle2;
|
|
|
|
bool bComboToggle3;
|
|
|
|
bool bComboToggle4;
|
|
|
|
|
2017-04-12 22:02:50 -07:00
|
|
|
// Ignored on iOS and other platforms that lack pause.
|
2014-02-25 01:39:10 -05:00
|
|
|
bool bShowTouchPause;
|
|
|
|
|
2013-10-20 15:36:01 +05:30
|
|
|
bool bHapticFeedback;
|
|
|
|
|
2015-01-17 16:47:19 +00:00
|
|
|
float fDInputAnalogDeadzone;
|
|
|
|
int iDInputAnalogInverseMode;
|
|
|
|
float fDInputAnalogInverseDeadzone;
|
2015-02-05 05:30:39 +00:00
|
|
|
float fDInputAnalogSensitivity;
|
2015-01-17 16:47:19 +00:00
|
|
|
|
2017-05-10 14:26:35 +02:00
|
|
|
// We also use the XInput settings as analog settings on other platforms like Android.
|
2015-02-05 05:48:29 +00:00
|
|
|
float fXInputAnalogDeadzone;
|
|
|
|
int iXInputAnalogInverseMode;
|
|
|
|
float fXInputAnalogInverseDeadzone;
|
|
|
|
float fXInputAnalogSensitivity;
|
2015-01-17 16:47:19 +00:00
|
|
|
|
2014-08-16 15:05:37 -04:00
|
|
|
float fAnalogLimiterDeadzone;
|
2013-07-27 23:21:48 +02:00
|
|
|
|
2017-04-26 16:48:55 +02:00
|
|
|
bool bMouseControl;
|
|
|
|
bool bMapMouse; // Workaround for mapping screen:|
|
2017-04-27 16:29:08 +02:00
|
|
|
bool bMouseConfine; // Trap inside the window.
|
2017-04-26 16:48:55 +02:00
|
|
|
float fMouseSensitivity;
|
|
|
|
float fMouseSmoothing;
|
|
|
|
|
2014-07-18 21:49:54 +02:00
|
|
|
// Use the hardware scaler to scale up the image to save fillrate. Similar to Windows' window size, really.
|
|
|
|
int iAndroidHwScale; // 0 = device resolution. 1 = 480x272 (extended to correct aspect), 2 = 960x544 etc.
|
|
|
|
|
2013-11-08 12:30:31 +01:00
|
|
|
// Risky JIT optimizations
|
|
|
|
bool bDiscardRegsOnJRRA;
|
|
|
|
|
2013-01-20 10:50:05 +01:00
|
|
|
// SystemParam
|
2013-04-19 21:59:24 +03:00
|
|
|
std::string sNickName;
|
2013-11-28 12:38:45 +01:00
|
|
|
std::string proAdhocServer;
|
2014-07-07 16:29:48 -04:00
|
|
|
std::string sMACAddress;
|
2016-01-24 16:52:39 +08:00
|
|
|
int iPortOffset;
|
2013-09-16 18:08:09 -04:00
|
|
|
int iLanguage;
|
2013-06-19 13:08:29 +08:00
|
|
|
int iTimeFormat;
|
2013-04-19 21:59:24 +03:00
|
|
|
int iDateFormat;
|
|
|
|
int iTimeZone;
|
|
|
|
bool bDayLightSavings;
|
2013-06-19 13:08:29 +08:00
|
|
|
int iButtonPreference;
|
2013-04-20 09:01:03 -07:00
|
|
|
int iLockParentalLevel;
|
2013-01-29 00:11:02 +01:00
|
|
|
bool bEncryptSave;
|
2017-10-04 17:16:21 +02:00
|
|
|
bool bSavedataUpgrade;
|
2013-12-04 11:07:00 +01:00
|
|
|
|
|
|
|
// Networking
|
|
|
|
bool bEnableWlan;
|
2014-08-23 20:35:05 +08:00
|
|
|
bool bEnableAdhocServer;
|
2013-04-19 21:59:24 +03:00
|
|
|
int iWlanAdhocChannel;
|
|
|
|
bool bWlanPowerSave;
|
2016-10-21 20:40:11 +08:00
|
|
|
bool bEnableNetworkChat;
|
2016-12-05 11:04:31 +08:00
|
|
|
//for chat position , moveable buttons is better than this
|
|
|
|
int iChatButtonPosition;
|
|
|
|
int iChatScreenPosition;
|
2017-07-06 21:43:39 +08:00
|
|
|
|
|
|
|
bool bEnableQuickChat;
|
|
|
|
std::string sQuickChat0;
|
|
|
|
std::string sQuickChat1;
|
|
|
|
std::string sQuickChat2;
|
|
|
|
std::string sQuickChat3;
|
|
|
|
std::string sQuickChat4;
|
2013-12-04 11:07:00 +01:00
|
|
|
|
2013-11-28 12:35:15 -05:00
|
|
|
int iPSPModel;
|
2013-12-13 13:06:44 -05:00
|
|
|
int iFirmwareVersion;
|
2013-08-05 21:32:19 -04:00
|
|
|
bool bBypassOSKWithKeyboard;
|
2013-01-20 10:50:05 +01:00
|
|
|
|
2013-06-26 00:15:16 -07:00
|
|
|
// Debugger
|
|
|
|
int iDisasmWindowX;
|
|
|
|
int iDisasmWindowY;
|
|
|
|
int iDisasmWindowW;
|
|
|
|
int iDisasmWindowH;
|
2013-09-28 16:04:56 +02:00
|
|
|
int iGEWindowX;
|
|
|
|
int iGEWindowY;
|
|
|
|
int iGEWindowW;
|
|
|
|
int iGEWindowH;
|
2013-06-26 00:32:49 -07:00
|
|
|
int iConsoleWindowX;
|
|
|
|
int iConsoleWindowY;
|
2013-07-09 11:17:57 +02:00
|
|
|
int iFontWidth;
|
|
|
|
int iFontHeight;
|
2013-07-30 17:06:37 +02:00
|
|
|
bool bDisplayStatusBar;
|
2013-09-30 21:42:05 +02:00
|
|
|
bool bShowBottomTabTitles;
|
2013-09-07 20:54:11 +02:00
|
|
|
bool bShowDeveloperMenu;
|
2018-01-17 13:59:32 +01:00
|
|
|
bool bShowAllocatorDebug;
|
2013-10-29 23:02:05 -07:00
|
|
|
// Double edged sword: much easier debugging, but not accurate.
|
|
|
|
bool bSkipDeadbeefFilling;
|
2013-12-06 00:11:49 -08:00
|
|
|
bool bFuncHashMap;
|
2020-02-11 08:19:30 +01:00
|
|
|
bool bDrawFrameGraph;
|
2013-06-26 00:15:16 -07:00
|
|
|
|
2015-05-13 22:28:02 +02:00
|
|
|
// Volatile development settings
|
|
|
|
bool bShowFrameProfiler;
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
std::string currentDirectory;
|
2016-08-27 14:38:05 -04:00
|
|
|
std::string externalDirectory;
|
2014-10-19 23:20:51 +02:00
|
|
|
std::string memStickDirectory;
|
2013-10-12 16:08:39 -07:00
|
|
|
std::string flash0Directory;
|
2013-05-30 19:06:00 +02:00
|
|
|
std::string internalDataDirectory;
|
2016-01-17 22:11:28 +01:00
|
|
|
std::string appCacheDirectory;
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-11-26 14:04:29 +01:00
|
|
|
// Data for upgrade prompt
|
|
|
|
std::string upgradeMessage; // The actual message from the server is currently not used, need a translation mechanism. So this just acts as a flag.
|
|
|
|
std::string upgradeVersion;
|
|
|
|
std::string dismissedVersion;
|
|
|
|
|
2014-12-14 20:33:20 +01:00
|
|
|
void Load(const char *iniFileName = nullptr, const char *controllerIniFilename = nullptr);
|
2019-02-23 10:49:49 +01:00
|
|
|
void Save(const char *saveReason);
|
2020-03-08 15:25:20 -07:00
|
|
|
void Reload();
|
2013-08-28 16:23:16 -04:00
|
|
|
void RestoreDefaults();
|
2016-08-27 14:38:05 -04:00
|
|
|
|
2014-12-14 20:33:20 +01:00
|
|
|
//per game config managment, should maybe be in it's own class
|
2019-07-14 15:04:09 -07:00
|
|
|
void changeGameSpecific(const std::string &gameId = "", const std::string &title = "");
|
2014-12-14 20:33:20 +01:00
|
|
|
bool createGameConfig(const std::string &game_id);
|
|
|
|
bool deleteGameConfig(const std::string& pGameId);
|
2019-07-17 21:28:21 -07:00
|
|
|
bool loadGameConfig(const std::string &game_id, const std::string &title);
|
2019-07-14 15:04:09 -07:00
|
|
|
bool saveGameConfig(const std::string &pGameId, const std::string &title);
|
2014-12-14 20:33:20 +01:00
|
|
|
void unloadGameConfig();
|
|
|
|
std::string getGameConfigFile(const std::string &gameId);
|
|
|
|
bool hasGameConfig(const std::string &game_id);
|
2013-03-24 20:03:42 +01:00
|
|
|
|
2013-10-12 16:02:03 -07:00
|
|
|
// Used when the file is not found in the search path. Trailing slash.
|
|
|
|
void SetDefaultPath(const std::string &defaultPath);
|
|
|
|
// Use a trailing slash.
|
|
|
|
void AddSearchPath(const std::string &path);
|
|
|
|
const std::string FindConfigFile(const std::string &baseFilename);
|
|
|
|
|
2013-03-24 20:03:42 +01:00
|
|
|
// Utility functions for "recent" management
|
|
|
|
void AddRecent(const std::string &file);
|
2018-08-12 08:24:33 -07:00
|
|
|
void RemoveRecent(const std::string &file);
|
2013-04-13 21:24:07 +02:00
|
|
|
void CleanRecent();
|
2013-03-24 20:03:42 +01:00
|
|
|
|
2013-11-26 14:04:29 +01:00
|
|
|
static void DownloadCompletedCallback(http::Download &download);
|
|
|
|
void DismissUpgrade();
|
|
|
|
|
2013-12-12 14:52:46 +01:00
|
|
|
void ResetControlLayout();
|
|
|
|
|
2014-02-09 17:15:00 -08:00
|
|
|
void GetReportingInfo(UrlEncoder &data);
|
2015-05-15 18:04:05 +02:00
|
|
|
|
2018-06-16 18:42:31 -07:00
|
|
|
bool IsPortrait() const;
|
2018-09-01 13:57:20 -07:00
|
|
|
int NextValidBackend();
|
2019-06-22 11:48:36 -07:00
|
|
|
bool IsBackendEnabled(GPUBackend backend, bool validate = true);
|
2016-01-05 23:01:49 -08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void LoadStandardControllerIni();
|
2016-08-27 14:38:05 -04:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
private:
|
2020-03-08 15:25:20 -07:00
|
|
|
bool reload_ = false;
|
2014-12-30 10:05:36 -08:00
|
|
|
std::string gameId_;
|
2019-07-14 15:04:09 -07:00
|
|
|
std::string gameIdTitle_;
|
2012-11-01 16:19:01 +01:00
|
|
|
std::string iniFilename_;
|
2013-08-16 19:34:44 +02:00
|
|
|
std::string controllerIniFilename_;
|
2013-10-12 16:02:03 -07:00
|
|
|
std::vector<std::string> searchPath_;
|
|
|
|
std::string defaultPath_;
|
2014-12-30 10:05:36 -08:00
|
|
|
std::string createdPath_;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
2014-01-03 19:04:43 +01:00
|
|
|
std::map<std::string, std::pair<std::string, int>> GetLangValuesMapping();
|
2017-04-29 12:48:06 -07:00
|
|
|
std::string CreateRandMAC();
|
2014-01-03 19:04:43 +01:00
|
|
|
|
2013-11-26 14:04:29 +01:00
|
|
|
// TODO: Find a better place for this.
|
|
|
|
extern http::Downloader g_DownloadManager;
|
2013-03-24 20:03:42 +01:00
|
|
|
extern Config g_Config;
|
2013-11-26 14:04:29 +01:00
|
|
|
|