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
|
|
|
|
|
2013-12-30 00:11:29 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2021-05-06 01:31:38 +02:00
|
|
|
#include "Common/File/Path.h"
|
2013-09-15 09:35:58 -07:00
|
|
|
#include "Core/CoreParameter.h"
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-12-29 23:28:31 +01:00
|
|
|
class MetaFileSystem;
|
2013-12-30 00:11:29 +01:00
|
|
|
class ParamSFOData;
|
2013-12-29 23:28:31 +01:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
extern MetaFileSystem pspFileSystem;
|
2013-01-02 21:00:10 +01:00
|
|
|
extern ParamSFOData g_paramSFO;
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2013-03-29 18:50:08 +01:00
|
|
|
// To synchronize the two UIs, we need to know which state we're in.
|
2013-03-29 19:32:20 +01:00
|
|
|
enum GlobalUIState {
|
2013-03-29 18:50:08 +01:00
|
|
|
UISTATE_MENU,
|
|
|
|
UISTATE_PAUSEMENU,
|
|
|
|
UISTATE_INGAME,
|
2013-06-18 00:31:15 -07:00
|
|
|
UISTATE_EXIT,
|
2021-08-08 23:40:41 -07:00
|
|
|
UISTATE_EXCEPTION,
|
2013-03-29 18:50:08 +01:00
|
|
|
};
|
|
|
|
|
2013-10-15 02:03:39 -04:00
|
|
|
// Use these in conjunction with GetSysDirectory.
|
|
|
|
enum PSPDirectories {
|
2021-07-24 18:16:12 +02:00
|
|
|
DIRECTORY_PSP,
|
2013-10-15 02:03:39 -04:00
|
|
|
DIRECTORY_CHEATS,
|
|
|
|
DIRECTORY_SCREENSHOT,
|
|
|
|
DIRECTORY_SYSTEM,
|
|
|
|
DIRECTORY_GAME,
|
|
|
|
DIRECTORY_SAVEDATA,
|
|
|
|
DIRECTORY_PAUTH,
|
2014-02-27 01:19:32 -05:00
|
|
|
DIRECTORY_DUMP,
|
2015-06-11 23:59:02 +02:00
|
|
|
DIRECTORY_SAVESTATE,
|
2015-06-27 18:32:21 -07:00
|
|
|
DIRECTORY_CACHE,
|
2016-04-30 14:05:03 -07:00
|
|
|
DIRECTORY_TEXTURES,
|
2020-08-25 19:54:51 -07:00
|
|
|
DIRECTORY_PLUGINS,
|
2016-01-17 22:11:28 +01:00
|
|
|
DIRECTORY_APP_CACHE, // Use the OS app cache if available
|
2016-09-03 18:26:01 -04:00
|
|
|
DIRECTORY_VIDEO,
|
2020-12-16 00:06:39 +01:00
|
|
|
DIRECTORY_AUDIO,
|
|
|
|
DIRECTORY_MEMSTICK_ROOT,
|
2021-07-18 22:28:59 +02:00
|
|
|
DIRECTORY_EXDATA,
|
|
|
|
DIRECTORY_CUSTOM_SHADERS,
|
2022-02-11 12:32:23 +01:00
|
|
|
DIRECTORY_CUSTOM_THEMES,
|
2013-10-15 02:03:39 -04:00
|
|
|
};
|
2013-03-29 18:50:08 +01:00
|
|
|
|
2015-12-31 16:59:40 +01:00
|
|
|
class GraphicsContext;
|
2016-01-05 22:37:28 -08:00
|
|
|
enum class GPUBackend;
|
2013-03-29 18:50:08 +01:00
|
|
|
|
2017-04-15 16:33:30 -07:00
|
|
|
void ResetUIState();
|
2013-12-29 23:44:35 +01:00
|
|
|
void UpdateUIState(GlobalUIState newState);
|
2014-06-22 09:38:46 +02:00
|
|
|
GlobalUIState GetUIState();
|
2013-09-15 09:35:58 -07:00
|
|
|
|
2018-09-30 00:53:21 -07:00
|
|
|
void SetGPUBackend(GPUBackend type, const std::string &device = "");
|
2016-01-05 22:37:28 -08:00
|
|
|
GPUBackend GetGPUBackend();
|
2018-09-30 00:53:21 -07:00
|
|
|
std::string GetGPUBackendDevice();
|
2016-01-05 22:37:28 -08:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
bool PSP_Init(const CoreParameter &coreParam, std::string *error_string);
|
2014-01-19 14:17:34 -08:00
|
|
|
bool PSP_InitStart(const CoreParameter &coreParam, std::string *error_string);
|
|
|
|
bool PSP_InitUpdate(std::string *error_string);
|
|
|
|
bool PSP_IsIniting();
|
2012-11-01 16:19:01 +01:00
|
|
|
bool PSP_IsInited();
|
2018-04-21 18:26:36 -07:00
|
|
|
bool PSP_IsQuitting();
|
2012-11-01 16:19:01 +01:00
|
|
|
void PSP_Shutdown();
|
2016-01-06 23:49:02 +01:00
|
|
|
|
|
|
|
void PSP_BeginHostFrame();
|
|
|
|
void PSP_EndHostFrame();
|
2018-04-29 18:38:17 -07:00
|
|
|
void PSP_RunLoopWhileState();
|
2013-08-04 15:22:30 -07:00
|
|
|
void PSP_RunLoopUntil(u64 globalticks);
|
|
|
|
void PSP_RunLoopFor(int cycles);
|
2013-03-28 20:17:45 +01:00
|
|
|
|
2018-03-12 18:06:46 -07:00
|
|
|
void PSP_SetLoading(const std::string &reason);
|
|
|
|
std::string PSP_GetLoading();
|
|
|
|
|
2018-11-01 21:27:01 -07:00
|
|
|
// Used to wait for background loading thread.
|
|
|
|
struct PSP_LoadingLock {
|
|
|
|
PSP_LoadingLock();
|
|
|
|
~PSP_LoadingLock();
|
|
|
|
};
|
|
|
|
|
2017-11-08 11:57:53 +01:00
|
|
|
// Call before PSP_BeginHostFrame() in order to not miss any GPU stats.
|
|
|
|
void Core_UpdateDebugStats(bool collectStats);
|
2021-09-19 15:17:13 -07:00
|
|
|
// Increments or decrements an internal counter. Intended to be used by debuggers.
|
|
|
|
void Core_ForceDebugStats(bool enable);
|
2017-11-08 11:57:53 +01:00
|
|
|
|
2013-08-14 08:44:36 -04:00
|
|
|
void Audio_Init();
|
2017-12-30 20:17:29 -08:00
|
|
|
void Audio_Shutdown();
|
2013-08-14 08:44:36 -04:00
|
|
|
bool IsAudioInitialised();
|
2013-08-09 00:32:40 -07:00
|
|
|
|
2014-11-23 13:59:56 -08:00
|
|
|
void UpdateLoadedFile(FileLoader *fileLoader);
|
|
|
|
|
2021-05-30 12:39:16 +02:00
|
|
|
// NOTE: These are almost all derived from g_Config.memStickDirectory directly -
|
|
|
|
// they are not stored anywhere.
|
2021-05-06 01:31:38 +02:00
|
|
|
Path GetSysDirectory(PSPDirectories directoryType);
|
2021-05-30 12:39:16 +02:00
|
|
|
|
2013-10-15 02:40:08 -04:00
|
|
|
#ifdef _WIN32
|
2013-10-15 02:03:39 -04:00
|
|
|
void InitSysDirectories();
|
2013-10-15 02:40:08 -04:00
|
|
|
#endif
|
2013-03-28 20:17:45 +01:00
|
|
|
|
2013-07-27 13:26:43 -07:00
|
|
|
// RUNNING must be at 0, NEXTFRAME must be at 1.
|
2017-07-05 14:04:19 +02:00
|
|
|
enum CoreState {
|
2019-02-12 13:29:37 +01:00
|
|
|
// Emulation is running normally.
|
2013-03-29 20:51:14 +01:00
|
|
|
CORE_RUNNING = 0,
|
2019-02-12 13:29:37 +01:00
|
|
|
// Emulation was running normally, just reached the end of a frame.
|
2013-07-27 13:26:43 -07:00
|
|
|
CORE_NEXTFRAME = 1,
|
2019-02-12 13:29:37 +01:00
|
|
|
// Emulation is paused, CPU thread is sleeping.
|
|
|
|
CORE_STEPPING, // Can be used for recoverable runtime errors (ignored memory exceptions)
|
|
|
|
// Core is being powered up.
|
2013-11-09 20:56:11 -08:00
|
|
|
CORE_POWERUP,
|
2019-02-12 13:29:37 +01:00
|
|
|
// Core is being powered down.
|
2013-03-29 20:51:14 +01:00
|
|
|
CORE_POWERDOWN,
|
2019-02-12 13:29:37 +01:00
|
|
|
// An error happened at boot.
|
2020-07-04 20:19:56 +02:00
|
|
|
CORE_BOOT_ERROR,
|
2019-02-12 13:29:37 +01:00
|
|
|
// Unrecoverable runtime error. Recoverable errors should use CORE_STEPPING.
|
2020-07-04 20:19:56 +02:00
|
|
|
CORE_RUNTIME_ERROR,
|
2013-03-29 20:51:14 +01:00
|
|
|
};
|
|
|
|
|
2017-03-23 18:57:18 -07:00
|
|
|
extern bool coreCollectDebugStats;
|
|
|
|
|
2013-03-29 20:51:14 +01:00
|
|
|
extern volatile CoreState coreState;
|
|
|
|
extern volatile bool coreStatePending;
|
|
|
|
void Core_UpdateState(CoreState newState);
|
|
|
|
|
2013-12-29 23:28:31 +01:00
|
|
|
CoreParameter &PSP_CoreParameter();
|