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>
|
2013-03-24 20:03:42 +01:00
|
|
|
#include <vector>
|
2013-07-06 19:08:59 +02:00
|
|
|
|
2013-05-18 10:21:04 -07:00
|
|
|
#include "CommonTypes.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
|
|
|
|
2013-10-26 19:20:44 -07:00
|
|
|
const int MAX_CONFIG_VOLUME = 8;
|
|
|
|
|
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;
|
|
|
|
|
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;
|
2013-07-27 19:59:08 -04:00
|
|
|
bool bEnableLogging;
|
2013-08-27 17:36:04 -04:00
|
|
|
#ifdef _WIN32
|
2013-10-11 14:53:25 +03:00
|
|
|
bool bPauseOnLostFocus;
|
2013-08-27 17:36:04 -04:00
|
|
|
bool bTopMost;
|
2013-08-30 13:33:12 -04:00
|
|
|
std::string sFont;
|
2013-08-27 17:36:04 -04:00
|
|
|
#endif
|
2012-12-25 08:34:19 +01:00
|
|
|
// Core
|
2012-11-01 16:19:01 +01:00
|
|
|
bool bIgnoreBadMemAccess;
|
2012-12-21 16:49:02 +01:00
|
|
|
bool bFastMemory;
|
2013-02-16 09:49:33 +01:00
|
|
|
bool bJit;
|
2013-08-08 00:18:00 -07:00
|
|
|
// Definitely cannot be changed while game is running.
|
2013-08-08 01:09:43 -07:00
|
|
|
bool bSeparateCPUThread;
|
2013-08-11 11:51:36 -07:00
|
|
|
bool bSeparateIOThread;
|
2013-10-15 11:36:37 +05:30
|
|
|
bool bAtomicAudioLocks;
|
2013-06-12 17:15:45 -04:00
|
|
|
int iLockedCPUSpeed;
|
2013-03-30 21:42:43 -07:00
|
|
|
bool bAutoSaveSymbolMap;
|
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-09-16 19:47:25 -04:00
|
|
|
std::string sLanguageIni;
|
2012-12-21 11:08:54 +01:00
|
|
|
|
|
|
|
// GFX
|
2013-08-16 21:48:30 +02:00
|
|
|
bool bSoftwareRendering;
|
|
|
|
bool bHardwareTransform; // only used in the GLES backend
|
2013-11-10 13:18:52 +01:00
|
|
|
bool bSoftwareSkinning; // may speed up some games
|
|
|
|
|
2013-07-22 07:33:18 +08:00
|
|
|
int iRenderingMode; // 0 = non-buffered rendering 1 = buffered rendering 2 = Read Framebuffer to memory (CPU) 3 = Read Framebuffer to memory (GPU)
|
2013-06-30 14:48:50 +08:00
|
|
|
int iTexFiltering; // 1 = off , 2 = nearest , 3 = linear , 4 = linear(CG)
|
2013-06-21 15:40:52 +10:00
|
|
|
#ifdef BLACKBERRY
|
2013-05-08 23:22:45 +10:00
|
|
|
bool bPartialStretch;
|
|
|
|
#endif
|
2013-02-13 18:21:21 +01:00
|
|
|
bool bStretchToDisplay;
|
2013-07-20 22:03:52 +08:00
|
|
|
bool bVSync;
|
2013-05-02 21:36:36 +02:00
|
|
|
int iFrameSkip;
|
2013-09-17 11:33:32 +05:00
|
|
|
bool bFrameSkipUnthrottle;
|
2013-02-13 18:21:21 +01:00
|
|
|
|
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-11-09 18:16:26 +01:00
|
|
|
bool bVertexDecoderJit;
|
2013-01-27 21:05:09 +08:00
|
|
|
bool bFullScreen;
|
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
|
2013-02-20 02:07:42 +08:00
|
|
|
bool bTrueColor;
|
2013-04-03 07:33:14 +08:00
|
|
|
bool bMipMap;
|
2013-05-01 23:55:34 +02:00
|
|
|
int iTexScalingLevel; // 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;
|
2013-05-09 19:36:23 -05:00
|
|
|
int iFpsLimit;
|
2013-06-30 00:02:33 -07:00
|
|
|
int iForceMaxEmulatedFPS;
|
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;
|
2013-10-30 22:46:27 +05:30
|
|
|
bool bEnableAutoLoad;
|
2013-05-23 13:10:39 +02:00
|
|
|
bool bEnableCheats;
|
2013-05-30 02:08:20 -05:00
|
|
|
bool bReloadCheats;
|
2013-09-05 20:51:17 +08:00
|
|
|
bool bDisableStencilTest;
|
|
|
|
bool bAlwaysDepthWrite;
|
2013-09-24 11:14:04 +02:00
|
|
|
bool bLowQualitySplineBezier;
|
2013-10-30 22:44:01 +01:00
|
|
|
bool bWipeFramebufferAlpha; // this was meant to be CopyStencilToAlpha but not done yet.
|
2013-10-12 02:05:55 +02:00
|
|
|
std::string sPostShaderName; // Off for off.
|
2012-12-25 08:34:19 +01:00
|
|
|
|
|
|
|
// Sound
|
|
|
|
bool bEnableSound;
|
2013-08-24 02:16:10 +02:00
|
|
|
bool bLowLatencyAudio;
|
2013-08-09 08:04:13 -04:00
|
|
|
int iSFXVolume;
|
2013-07-06 03:19:56 +08:00
|
|
|
int iBGMVolume;
|
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;
|
2012-11-22 23:07:15 +01:00
|
|
|
bool bShowDebugStats;
|
2013-03-10 13:21:36 +01:00
|
|
|
bool bAccelerometerToAnalogHoriz;
|
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.)
|
|
|
|
bool bInvertTiltX, bInvertTiltY;
|
|
|
|
//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;
|
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;
|
|
|
|
|
2013-10-20 15:36:01 +05:30
|
|
|
// Control Positions
|
2013-10-10 01:45:56 +05:30
|
|
|
int iTouchButtonOpacity;
|
|
|
|
float fButtonScale;
|
|
|
|
//space between PSP buttons
|
|
|
|
int iActionButtonSpacing;
|
|
|
|
//the PSP button's center (triangle, circle, square, cross)
|
2013-11-05 14:52:31 +10:00
|
|
|
float fActionButtonCenterX, fActionButtonCenterY;
|
2013-10-10 01:45:56 +05:30
|
|
|
//radius of the D-pad (PSP cross)
|
|
|
|
int iDpadRadius;
|
|
|
|
//the D-pad (PSP cross) position
|
2013-11-05 14:52:31 +10:00
|
|
|
float fDpadX, fDpadY;
|
2013-10-10 01:45:56 +05:30
|
|
|
//the start key position
|
2013-11-05 14:52:31 +10:00
|
|
|
float fStartKeyX, fStartKeyY;
|
2013-10-10 01:45:56 +05:30
|
|
|
//the select key position;
|
2013-11-05 14:52:31 +10:00
|
|
|
float fSelectKeyX, fSelectKeyY;
|
|
|
|
float fUnthrottleKeyX, fUnthrottleKeyY;
|
|
|
|
float fLKeyX, fLKeyY;
|
|
|
|
float fRKeyX, fRKeyY;
|
2013-10-10 01:45:56 +05:30
|
|
|
//position of the analog stick
|
2013-11-05 14:52:31 +10:00
|
|
|
float fAnalogStickX, fAnalogStickY;
|
2013-07-27 23:21:48 +02:00
|
|
|
|
2013-10-20 15:36:01 +05:30
|
|
|
// Controls Visibility
|
|
|
|
bool bShowTouchControls;
|
|
|
|
|
|
|
|
bool bShowTouchCircle;
|
|
|
|
bool bShowTouchCross;
|
|
|
|
bool bShowTouchTriangle;
|
|
|
|
bool bShowTouchSquare;
|
|
|
|
|
|
|
|
bool bShowTouchStart;
|
|
|
|
bool bShowTouchSelect;
|
|
|
|
bool bShowTouchUnthrottle;
|
|
|
|
|
|
|
|
bool bShowTouchLTrigger;
|
|
|
|
bool bShowTouchRTrigger;
|
|
|
|
|
|
|
|
bool bShowTouchAnalogStick;
|
|
|
|
bool bShowTouchDpad;
|
|
|
|
|
|
|
|
bool bHapticFeedback;
|
|
|
|
|
2013-07-27 23:21:48 +02:00
|
|
|
// GLES backend-specific hacks. Not saved to the ini file, do not add checkboxes. Will be made into
|
|
|
|
// proper options when good enough.
|
|
|
|
// PrescaleUV:
|
|
|
|
// * Applies UV scale/offset when decoding verts. Get rid of some work in the vertex shader,
|
|
|
|
// saves a uniform upload and is a prerequisite for future optimized hybrid
|
|
|
|
// (SW skinning, HW transform) skinning.
|
|
|
|
// * Still has major problems so off by default - need to store tex scale/offset per DeferredDrawCall,
|
|
|
|
// which currently isn't done so if texscale/offset isn't static (like in Tekken 6) things go wrong.
|
|
|
|
bool bPrescaleUV;
|
2013-10-22 13:00:19 +02:00
|
|
|
bool bDisableAlphaTest; // Helps PowerVR immensely, breaks some graphics
|
2013-07-27 23:21:48 +02:00
|
|
|
// End GLES hacks.
|
|
|
|
|
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-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;
|
2013-04-19 21:59:24 +03:00
|
|
|
int iWlanAdhocChannel;
|
|
|
|
bool bWlanPowerSave;
|
2013-08-05 21:32:19 -04:00
|
|
|
// TODO: Make this work with your platform, too!
|
|
|
|
#ifdef _WIN32
|
|
|
|
bool bBypassOSKWithKeyboard;
|
|
|
|
#endif
|
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;
|
2013-10-29 23:02:05 -07:00
|
|
|
// Double edged sword: much easier debugging, but not accurate.
|
|
|
|
bool bSkipDeadbeefFilling;
|
2013-06-26 00:15:16 -07:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
std::string currentDirectory;
|
2013-06-19 13:08:29 +08:00
|
|
|
std::string externalDirectory;
|
2012-12-09 16:48:56 +01:00
|
|
|
std::string memCardDirectory;
|
2013-10-12 16:08:39 -07:00
|
|
|
std::string flash0Directory;
|
2013-05-30 19:06:00 +02:00
|
|
|
std::string internalDataDirectory;
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-08-16 19:34:44 +02:00
|
|
|
void Load(const char *iniFileName = "ppsspp.ini", const char *controllerIniFilename = "controls.ini");
|
2012-11-01 16:19:01 +01:00
|
|
|
void Save();
|
2013-08-28 16:23:16 -04:00
|
|
|
void RestoreDefaults();
|
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);
|
2013-04-13 21:24:07 +02:00
|
|
|
void CleanRecent();
|
2013-03-24 20:03:42 +01:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
private:
|
|
|
|
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_;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
2013-03-24 20:03:42 +01:00
|
|
|
extern Config g_Config;
|