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