2012-11-01 15:19:01 +00: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 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00: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 19:03:42 +00:00
|
|
|
#include <vector>
|
2013-02-01 23:36:35 +00:00
|
|
|
#include <map>
|
2013-07-06 17:08:59 +00:00
|
|
|
|
2013-05-18 17:21:04 +00:00
|
|
|
#include "CommonTypes.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-03-02 20:31:11 +00:00
|
|
|
extern const char *PPSSPP_GIT_VERSION;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-08-24 00:16:10 +00:00
|
|
|
struct Config {
|
2012-11-01 15:19:01 +00:00
|
|
|
public:
|
2013-03-24 19:03:42 +00:00
|
|
|
Config();
|
|
|
|
~Config();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-12-25 07:34:19 +00:00
|
|
|
// Whether to save the config on close.
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bSaveSettings;
|
2013-06-01 17:01:43 +00:00
|
|
|
bool bFirstRun;
|
|
|
|
|
2012-12-25 07:34:19 +00:00
|
|
|
// These are broken
|
|
|
|
bool bAutoLoadLast;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bSpeedLimit;
|
|
|
|
bool bConfirmOnQuit;
|
2013-01-04 09:26:14 +00:00
|
|
|
bool bAutoRun; // start immediately
|
2013-02-17 19:39:31 +00:00
|
|
|
bool bBrowse;
|
2013-06-10 21:45:12 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool bTopMost;
|
|
|
|
#endif
|
2012-12-25 07:34:19 +00:00
|
|
|
|
2013-05-01 12:08:01 +00:00
|
|
|
// General
|
|
|
|
int iNumWorkerThreads;
|
2013-07-07 22:10:23 +00:00
|
|
|
bool bScreenshotsAsPNG;
|
2013-07-27 23:59:08 +00:00
|
|
|
bool bEnableLogging;
|
2013-05-01 12:08:01 +00:00
|
|
|
|
2012-12-25 07:34:19 +00:00
|
|
|
// Core
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bIgnoreBadMemAccess;
|
2012-12-21 15:49:02 +00:00
|
|
|
bool bFastMemory;
|
2013-02-16 08:49:33 +00:00
|
|
|
bool bJit;
|
2013-08-08 07:18:00 +00:00
|
|
|
// Definitely cannot be changed while game is running.
|
2013-08-08 08:09:43 +00:00
|
|
|
bool bSeparateCPUThread;
|
2013-08-11 18:51:36 +00:00
|
|
|
bool bSeparateIOThread;
|
2013-06-12 21:15:45 +00:00
|
|
|
int iLockedCPUSpeed;
|
2013-03-31 04:42:43 +00:00
|
|
|
bool bAutoSaveSymbolMap;
|
2013-03-01 16:51:01 +00:00
|
|
|
std::string sReportHost;
|
2013-03-24 19:03:42 +00:00
|
|
|
std::vector<std::string> recentIsos;
|
2013-04-18 09:58:54 +00:00
|
|
|
std::string languageIni;
|
2012-12-21 10:08:54 +00:00
|
|
|
|
|
|
|
// GFX
|
2013-08-16 19:48:30 +00:00
|
|
|
bool bSoftwareRendering;
|
|
|
|
bool bHardwareTransform; // only used in the GLES backend
|
2013-07-21 23:33:18 +00: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 06:48:50 +00:00
|
|
|
int iTexFiltering; // 1 = off , 2 = nearest , 3 = linear , 4 = linear(CG)
|
2013-06-21 05:40:52 +00:00
|
|
|
#ifdef BLACKBERRY
|
2013-05-08 13:22:45 +00:00
|
|
|
bool bPartialStretch;
|
|
|
|
#endif
|
2013-02-13 17:21:21 +00:00
|
|
|
bool bStretchToDisplay;
|
2013-07-20 14:03:52 +00:00
|
|
|
bool bVSync;
|
2013-05-02 19:36:36 +00:00
|
|
|
int iFrameSkip;
|
2013-02-13 17:21:21 +00:00
|
|
|
|
2013-03-30 16:49:02 +00:00
|
|
|
int iWindowX;
|
|
|
|
int iWindowY;
|
2012-12-25 07:34:19 +00:00
|
|
|
int iWindowZoom; // for Windows
|
2013-08-04 07:49:51 +00:00
|
|
|
bool bAntiAliasing;
|
2013-01-19 16:05:08 +00:00
|
|
|
bool bVertexCache;
|
2013-01-27 13:05:09 +00:00
|
|
|
bool bFullScreen;
|
2013-07-10 18:22:22 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
bool bFullScreenOnLaunch;
|
|
|
|
#endif
|
2013-07-17 20:27:05 +00:00
|
|
|
int iAnisotropyLevel; // 0 - 5, powers of 2: 0 = 1x = no aniso
|
2013-02-19 18:07:42 +00:00
|
|
|
bool bTrueColor;
|
2013-04-02 23:33:14 +00:00
|
|
|
bool bMipMap;
|
2013-05-01 21:55:34 +00:00
|
|
|
int iTexScalingLevel; // 1 = off, 2 = 2x, ..., 5 = 5x
|
2013-05-03 08:29:29 +00:00
|
|
|
int iTexScalingType; // 0 = xBRZ, 1 = Hybrid
|
2013-05-03 14:21:46 +00:00
|
|
|
bool bTexDeposterize;
|
2013-05-10 00:36:23 +00:00
|
|
|
int iFpsLimit;
|
2013-06-30 07:02:33 +00:00
|
|
|
int iForceMaxEmulatedFPS;
|
2013-05-19 14:40:01 +00:00
|
|
|
int iMaxRecent;
|
2013-07-21 11:31:46 +00:00
|
|
|
int iCurrentStateSlot;
|
2013-05-23 11:10:39 +00:00
|
|
|
bool bEnableCheats;
|
2013-05-30 07:08:20 +00:00
|
|
|
bool bReloadCheats;
|
2012-12-25 07:34:19 +00:00
|
|
|
|
|
|
|
// Sound
|
|
|
|
bool bEnableSound;
|
2013-06-01 14:58:22 +00:00
|
|
|
bool bEnableAtrac3plus;
|
2013-08-24 00:16:10 +00:00
|
|
|
bool bLowLatencyAudio;
|
2013-08-09 12:04:13 +00:00
|
|
|
int iSFXVolume;
|
2013-07-05 19:19:56 +00:00
|
|
|
int iBGMVolume;
|
2013-06-17 18:28:22 +00:00
|
|
|
|
2012-12-25 07:34:19 +00:00
|
|
|
// UI
|
2012-12-01 22:20:08 +00:00
|
|
|
bool bShowTouchControls;
|
2012-12-05 03:57:30 +00:00
|
|
|
bool bShowDebuggerOnLoad;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bShowAnalogStick;
|
2013-06-19 05:08:29 +00:00
|
|
|
int iShowFPSCounter;
|
2012-11-22 22:07:15 +00:00
|
|
|
bool bShowDebugStats;
|
2013-03-10 12:21:36 +00:00
|
|
|
bool bAccelerometerToAnalogHoriz;
|
2012-11-20 09:59:23 +00:00
|
|
|
|
2013-08-18 20:30:34 +00:00
|
|
|
// The three tabs.
|
|
|
|
bool bGridView1;
|
|
|
|
bool bGridView2;
|
|
|
|
bool bGridView3;
|
|
|
|
|
2013-02-01 23:36:35 +00:00
|
|
|
// Control
|
2013-06-17 18:28:22 +00:00
|
|
|
int iTouchButtonOpacity;
|
2013-06-18 09:37:34 +00:00
|
|
|
float fButtonScale;
|
2013-02-01 23:36:35 +00:00
|
|
|
|
2013-07-27 21:21:48 +00: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 09:50:05 +00:00
|
|
|
// SystemParam
|
2013-04-19 18:59:24 +00:00
|
|
|
std::string sNickName;
|
2013-01-20 09:50:05 +00:00
|
|
|
int ilanguage;
|
2013-06-19 05:08:29 +00:00
|
|
|
int iTimeFormat;
|
2013-04-19 18:59:24 +00:00
|
|
|
int iDateFormat;
|
|
|
|
int iTimeZone;
|
|
|
|
bool bDayLightSavings;
|
2013-06-19 05:08:29 +00:00
|
|
|
int iButtonPreference;
|
2013-04-20 16:01:03 +00:00
|
|
|
int iLockParentalLevel;
|
2013-01-28 23:11:02 +00:00
|
|
|
bool bEncryptSave;
|
2013-04-19 18:59:24 +00:00
|
|
|
int iWlanAdhocChannel;
|
|
|
|
bool bWlanPowerSave;
|
2013-08-06 01:32:19 +00:00
|
|
|
// TODO: Make this work with your platform, too!
|
|
|
|
#ifdef _WIN32
|
|
|
|
bool bBypassOSKWithKeyboard;
|
|
|
|
#endif
|
2013-01-20 09:50:05 +00:00
|
|
|
|
2013-06-26 07:15:16 +00:00
|
|
|
// Debugger
|
|
|
|
int iDisasmWindowX;
|
|
|
|
int iDisasmWindowY;
|
|
|
|
int iDisasmWindowW;
|
|
|
|
int iDisasmWindowH;
|
2013-06-26 07:32:49 +00:00
|
|
|
int iConsoleWindowX;
|
|
|
|
int iConsoleWindowY;
|
2013-07-09 09:17:57 +00:00
|
|
|
int iFontWidth;
|
|
|
|
int iFontHeight;
|
2013-07-30 15:06:37 +00:00
|
|
|
bool bDisplayStatusBar;
|
2013-06-26 07:15:16 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
std::string currentDirectory;
|
2013-06-19 05:08:29 +00:00
|
|
|
std::string externalDirectory;
|
2012-12-09 15:48:56 +00:00
|
|
|
std::string memCardDirectory;
|
2012-12-09 23:32:44 +00:00
|
|
|
std::string flashDirectory;
|
2013-05-30 17:06:00 +00:00
|
|
|
std::string internalDataDirectory;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-08-16 17:34:44 +00:00
|
|
|
void Load(const char *iniFileName = "ppsspp.ini", const char *controllerIniFilename = "controls.ini");
|
2012-11-01 15:19:01 +00:00
|
|
|
void Save();
|
2013-03-24 19:03:42 +00:00
|
|
|
|
|
|
|
// Utility functions for "recent" management
|
|
|
|
void AddRecent(const std::string &file);
|
2013-04-13 19:24:07 +00:00
|
|
|
void CleanRecent();
|
2013-03-24 19:03:42 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
private:
|
|
|
|
std::string iniFilename_;
|
2013-08-16 17:34:44 +00:00
|
|
|
std::string controllerIniFilename_;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|
|
|
|
|
2013-03-24 19:03:42 +00:00
|
|
|
extern Config g_Config;
|