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>
|
|
|
|
|
2023-08-07 20:10:38 +00:00
|
|
|
#include "Common/File/Path.h"
|
2015-09-26 14:01:16 +00:00
|
|
|
#include "Core/Compatibility.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
enum GPUCore {
|
2016-04-10 08:21:48 +00:00
|
|
|
GPUCORE_GLES,
|
|
|
|
GPUCORE_SOFTWARE,
|
|
|
|
GPUCORE_DIRECTX9,
|
|
|
|
GPUCORE_DIRECTX11,
|
|
|
|
GPUCORE_VULKAN,
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|
|
|
|
|
2018-06-17 03:07:11 +00:00
|
|
|
enum class FPSLimit {
|
|
|
|
NORMAL = 0,
|
|
|
|
CUSTOM1 = 1,
|
|
|
|
CUSTOM2 = 2,
|
2022-07-04 20:10:42 +00:00
|
|
|
ANALOG = 3,
|
2018-06-17 03:07:11 +00:00
|
|
|
};
|
|
|
|
|
2014-11-23 21:59:56 +00:00
|
|
|
class FileLoader;
|
|
|
|
|
2015-12-31 15:59:40 +00:00
|
|
|
class GraphicsContext;
|
2016-12-25 17:18:19 +00:00
|
|
|
namespace Draw {
|
2016-12-25 20:01:57 +00:00
|
|
|
class DrawContext;
|
2016-12-25 17:18:19 +00:00
|
|
|
}
|
2015-12-31 15:59:40 +00:00
|
|
|
|
2017-03-02 11:36:54 +00:00
|
|
|
enum class CPUCore;
|
|
|
|
|
2013-09-26 10:41:07 +00:00
|
|
|
// PSP_CoreParameter()
|
|
|
|
struct CoreParameter {
|
2018-06-17 03:07:11 +00:00
|
|
|
CoreParameter() {}
|
2015-12-31 15:59:40 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
CPUCore cpuCore;
|
|
|
|
GPUCore gpuCore;
|
2016-05-07 23:43:27 +00:00
|
|
|
|
2018-06-17 03:07:11 +00:00
|
|
|
GraphicsContext *graphicsContext = nullptr; // TODO: Find a better place.
|
2012-11-01 15:19:01 +00:00
|
|
|
bool enableSound; // there aren't multiple sound cores.
|
|
|
|
|
2021-05-05 23:31:38 +00:00
|
|
|
Path fileToStart;
|
|
|
|
Path mountIso; // If non-empty, and fileToStart is an ELF or PBP, will mount this ISO in the background to umd1:.
|
|
|
|
Path mountRoot; // If non-empty, and fileToStart is an ELF or PBP, mount this as host0: / umd0:.
|
2013-08-07 15:07:13 +00:00
|
|
|
std::string errorString;
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2018-06-23 17:14:36 +00:00
|
|
|
bool startBreak;
|
2023-03-26 17:21:07 +00:00
|
|
|
std::string *collectDebugOutput = nullptr;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool headLess; // Try to avoid messageboxes etc
|
2012-11-19 20:23:29 +00:00
|
|
|
|
2020-11-05 10:21:00 +00:00
|
|
|
// Internal PSP rendering resolution and scale factor.
|
2022-08-18 22:34:02 +00:00
|
|
|
int renderScaleFactor = 1;
|
2012-11-19 20:23:29 +00:00
|
|
|
int renderWidth;
|
|
|
|
int renderHeight;
|
2012-11-20 15:48:24 +00:00
|
|
|
|
2020-11-05 10:21:00 +00:00
|
|
|
// Actual output resolution in pixels.
|
2012-11-20 15:48:24 +00:00
|
|
|
int pixelWidth;
|
|
|
|
int pixelHeight;
|
2013-03-31 09:30:50 +00:00
|
|
|
|
|
|
|
// Can be modified at runtime.
|
2021-08-17 14:48:47 +00:00
|
|
|
bool fastForward = false;
|
2018-06-17 03:07:11 +00:00
|
|
|
FPSLimit fpsLimit = FPSLimit::NORMAL;
|
2022-07-04 20:10:42 +00:00
|
|
|
int analogFpsLimit = 0;
|
2013-05-22 19:01:24 +00:00
|
|
|
|
2018-06-17 03:07:11 +00:00
|
|
|
bool updateRecent = true;
|
2013-11-15 12:11:44 +00:00
|
|
|
|
|
|
|
// Freeze-frame. For nvidia perfhud profiling. Developers only.
|
2018-06-17 03:07:11 +00:00
|
|
|
bool freezeNext = false;
|
|
|
|
bool frozen = false;
|
2014-11-23 21:59:56 +00:00
|
|
|
|
2018-06-17 03:07:11 +00:00
|
|
|
FileLoader *mountIsoLoader = nullptr;
|
2015-09-26 14:01:16 +00:00
|
|
|
|
|
|
|
Compatibility compat;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|