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>
|
|
|
|
|
2015-09-26 14:01:16 +00:00
|
|
|
#include "Core/Compatibility.h"
|
2016-05-07 23:43:27 +00:00
|
|
|
#include "Core/Config.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
enum GPUCore {
|
2016-04-10 08:21:48 +00:00
|
|
|
GPUCORE_NULL,
|
|
|
|
GPUCORE_GLES,
|
|
|
|
GPUCORE_SOFTWARE,
|
|
|
|
GPUCORE_DIRECTX9,
|
|
|
|
GPUCORE_DIRECTX11,
|
|
|
|
GPUCORE_VULKAN,
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|
|
|
|
|
2014-11-23 21:59:56 +00:00
|
|
|
class FileLoader;
|
|
|
|
|
2015-12-31 15:59:40 +00:00
|
|
|
class GraphicsContext;
|
2016-03-20 19:04:49 +00:00
|
|
|
class Thin3DContext;
|
2015-12-31 15:59:40 +00:00
|
|
|
|
2013-09-26 10:41:07 +00:00
|
|
|
// PSP_CoreParameter()
|
|
|
|
struct CoreParameter {
|
2016-03-20 19:04:49 +00:00
|
|
|
CoreParameter() : thin3d(nullptr), collectEmuLog(0), unthrottle(false), fpsLimit(0), updateRecent(true), freezeNext(false), frozen(false), mountIsoLoader(nullptr) {}
|
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
|
|
|
|
2015-12-31 15:59:40 +00:00
|
|
|
GraphicsContext *graphicsContext; // TODO: Find a better place.
|
2016-03-20 19:04:49 +00:00
|
|
|
Thin3DContext *thin3d;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool enableSound; // there aren't multiple sound cores.
|
|
|
|
|
|
|
|
std::string fileToStart;
|
2014-04-19 19:52:43 +00:00
|
|
|
std::string mountIso; // If non-empty, and fileToStart is an ELF or PBP, will mount this ISO in the background to umd1:.
|
|
|
|
std::string 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
|
|
|
|
|
|
|
bool startPaused;
|
|
|
|
bool printfEmuLog; // writes "emulator:" logging to stdout
|
2013-03-06 23:10:53 +00:00
|
|
|
std::string *collectEmuLog;
|
2012-11-01 15:19:01 +00:00
|
|
|
bool headLess; // Try to avoid messageboxes etc
|
2012-11-19 20:23:29 +00:00
|
|
|
|
2012-11-20 15:48:24 +00:00
|
|
|
// Internal PSP resolution
|
2012-11-19 20:23:29 +00:00
|
|
|
int renderWidth;
|
|
|
|
int renderHeight;
|
2012-11-20 15:48:24 +00:00
|
|
|
|
|
|
|
// Actual pixel output resolution (for use by glViewport and the like)
|
|
|
|
int pixelWidth;
|
|
|
|
int pixelHeight;
|
2013-03-31 09:30:50 +00:00
|
|
|
|
|
|
|
// Can be modified at runtime.
|
|
|
|
bool unthrottle;
|
2013-05-10 00:36:23 +00:00
|
|
|
int fpsLimit;
|
2013-05-22 19:01:24 +00:00
|
|
|
|
|
|
|
bool updateRecent;
|
2013-11-15 12:11:44 +00:00
|
|
|
|
|
|
|
// Freeze-frame. For nvidia perfhud profiling. Developers only.
|
|
|
|
bool freezeNext;
|
|
|
|
bool frozen;
|
2014-11-23 21:59:56 +00:00
|
|
|
|
|
|
|
FileLoader *mountIsoLoader;
|
2015-09-26 14:01:16 +00:00
|
|
|
|
|
|
|
Compatibility compat;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|