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-02-02 00:36:35 +01:00
|
|
|
#include <map>
|
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-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
|
|
|
|
|
2012-12-25 08:34:19 +01:00
|
|
|
|
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
|
|
|
|
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-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-04-18 11:58:54 +02:00
|
|
|
std::string languageIni;
|
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-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-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-01-27 21:05:09 +08:00
|
|
|
bool bFullScreen;
|
2013-07-10 14:22:22 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool bFullScreenOnLaunch;
|
|
|
|
#endif
|
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-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;
|
2012-12-25 08:34:19 +01:00
|
|
|
|
|
|
|
// Sound
|
|
|
|
bool bEnableSound;
|
2013-06-01 22:58:22 +08:00
|
|
|
bool bEnableAtrac3plus;
|
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
|
|
|
|
2012-12-25 08:34:19 +01:00
|
|
|
// UI
|
2012-12-01 23:20:08 +01:00
|
|
|
bool bShowTouchControls;
|
2012-12-05 10:57:30 +07:00
|
|
|
bool bShowDebuggerOnLoad;
|
2012-11-01 16:19:01 +01:00
|
|
|
bool bShowAnalogStick;
|
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-09-09 23:48:11 +02:00
|
|
|
int iTiltSensitivity;
|
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-02-02 00:36:35 +01:00
|
|
|
// Control
|
2013-06-17 20:28:22 +02:00
|
|
|
int iTouchButtonOpacity;
|
2013-06-18 18:37:34 +09:00
|
|
|
float fButtonScale;
|
2013-02-02 00:36:35 +01:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
// End GLES hacks.
|
|
|
|
|
2013-01-20 10:50:05 +01:00
|
|
|
// SystemParam
|
2013-04-19 21:59:24 +03:00
|
|
|
std::string sNickName;
|
2013-01-20 10:50:05 +01: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-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-07 20:54:11 +02:00
|
|
|
bool bShowDeveloperMenu;
|
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;
|
2012-12-09 23:32:44 +00:00
|
|
|
std::string flashDirectory;
|
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
|
|
|
|
|
|
|
// 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_;
|
2012-11-01 16:19:01 +01:00
|
|
|
};
|
|
|
|
|
2013-03-24 20:03:42 +01:00
|
|
|
extern Config g_Config;
|