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-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-03-24 19:03:42 +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;
|
2012-12-25 07:34:19 +00:00
|
|
|
|
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;
|
|
|
|
|
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-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
|
2012-11-01 15:19:01 +00:00
|
|
|
bool bDisplayFramebuffer;
|
2012-12-21 10:08:54 +00:00
|
|
|
bool bHardwareTransform;
|
2012-11-20 09:59:23 +00:00
|
|
|
bool bBufferedRendering;
|
2012-12-28 15:23:42 +00:00
|
|
|
bool bLinearFiltering;
|
2013-01-10 11:51:18 +00:00
|
|
|
bool bUseVBO;
|
2013-05-08 13:22:45 +00:00
|
|
|
#ifdef BLACKBERRY10
|
|
|
|
bool bPartialStretch;
|
|
|
|
#endif
|
2013-02-13 17:21:21 +00:00
|
|
|
bool bStretchToDisplay;
|
2013-06-16 21:45:06 +00:00
|
|
|
int iVSyncInterval;
|
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-04-30 01:46:27 +00:00
|
|
|
bool SSAntiAliasing; // for Windows, too
|
2013-01-19 16:05:08 +00:00
|
|
|
bool bVertexCache;
|
2013-01-27 13:05:09 +00:00
|
|
|
bool bFullScreen;
|
2013-02-11 12:48:07 +00:00
|
|
|
int iAnisotropyLevel;
|
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-05-19 14:40:01 +00:00
|
|
|
int iMaxRecent;
|
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-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;
|
|
|
|
bool bShowFPSCounter;
|
2012-11-22 22:07:15 +00:00
|
|
|
bool bShowDebugStats;
|
2013-01-26 16:26:07 +00:00
|
|
|
bool bLargeControls;
|
2013-03-10 12:21:36 +00:00
|
|
|
bool bAccelerometerToAnalogHoriz;
|
2013-06-11 19:29:55 +00:00
|
|
|
// Temporary until control mapping rewrite
|
|
|
|
// 0 = none
|
|
|
|
// 1 = arrow buttons
|
|
|
|
// 2 = face buttons
|
|
|
|
// 3 = L/R
|
|
|
|
int iRightStickBind;
|
2012-11-20 09:59:23 +00:00
|
|
|
|
2013-02-01 23:36:35 +00:00
|
|
|
// Control
|
|
|
|
std::map<int,int> iMappingMap; // Can be used differently depending on systems
|
2013-04-16 14:34:20 +00:00
|
|
|
int iForceInputDevice;
|
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-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-01-21 13:35:31 +00:00
|
|
|
int itimeformat;
|
2013-04-19 18:59:24 +00:00
|
|
|
int iDateFormat;
|
|
|
|
int iTimeZone;
|
|
|
|
bool bDayLightSavings;
|
|
|
|
bool bButtonPreference;
|
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-01-20 09:50:05 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
std::string currentDirectory;
|
2013-06-18 05:37:35 +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
|
|
|
|
|
|
|
void Load(const char *iniFileName = "ppsspp.ini");
|
|
|
|
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-03-24 19:03:42 +00:00
|
|
|
extern Config g_Config;
|