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
|
|
|
|
|
2020-07-15 12:38:05 +02:00
|
|
|
#include <string>
|
|
|
|
|
2013-03-31 16:55:48 +10:00
|
|
|
#include "Core/System.h"
|
2013-03-29 20:51:14 +01:00
|
|
|
#include "Core/CoreParameter.h"
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2015-12-31 16:59:40 +01:00
|
|
|
class GraphicsContext;
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// called from emu thread
|
2017-03-14 22:01:18 -07:00
|
|
|
void UpdateRunLoop();
|
2017-12-15 12:40:38 +01:00
|
|
|
|
2017-03-14 22:01:18 -07:00
|
|
|
void Core_Run(GraphicsContext *ctx);
|
2012-11-01 16:19:01 +01:00
|
|
|
void Core_Stop();
|
2016-01-01 14:08:23 +01:00
|
|
|
// For platforms that don't call Core_Run
|
|
|
|
void Core_SetGraphicsContext(GraphicsContext *ctx);
|
2017-12-15 12:40:38 +01:00
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
// called from gui
|
2021-10-23 16:56:15 -07:00
|
|
|
void Core_EnableStepping(bool step, const char *reason = nullptr, u32 relatedAddress = 0);
|
2020-07-04 20:57:05 +02:00
|
|
|
|
|
|
|
bool Core_NextFrame();
|
2012-11-01 16:19:01 +01:00
|
|
|
void Core_DoSingleStep();
|
2013-09-14 18:43:23 -07:00
|
|
|
void Core_UpdateSingleStep();
|
2018-04-29 18:08:41 -07:00
|
|
|
void Core_ProcessStepping();
|
2018-04-19 21:14:01 -07:00
|
|
|
// Changes every time we enter stepping.
|
|
|
|
int Core_GetSteppingCounter();
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2018-04-22 08:33:22 -07:00
|
|
|
enum class CoreLifecycle {
|
|
|
|
STARTING,
|
|
|
|
// Note: includes failure cases. Guaranteed call after STARTING.
|
|
|
|
START_COMPLETE,
|
|
|
|
STOPPING,
|
|
|
|
// Guaranteed call after STOPPING.
|
|
|
|
STOPPED,
|
2018-05-06 10:40:02 -07:00
|
|
|
|
|
|
|
// Sometimes called for save states. Guaranteed sequence, and never during STARTING or STOPPING.
|
|
|
|
MEMORY_REINITING,
|
|
|
|
MEMORY_REINITED,
|
2018-04-22 08:33:22 -07:00
|
|
|
};
|
|
|
|
|
2018-06-11 14:54:42 -07:00
|
|
|
// Callback is called on the Emu thread.
|
2018-04-22 08:33:22 -07:00
|
|
|
typedef void (* CoreLifecycleFunc)(CoreLifecycle stage);
|
|
|
|
void Core_ListenLifecycle(CoreLifecycleFunc func);
|
|
|
|
void Core_NotifyLifecycle(CoreLifecycle stage);
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2018-06-11 14:54:42 -07:00
|
|
|
// Callback is executed on requesting thread.
|
|
|
|
typedef void (* CoreStopRequestFunc)();
|
|
|
|
void Core_ListenStopRequest(CoreStopRequestFunc callback);
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
bool Core_IsStepping();
|
|
|
|
|
2013-06-08 08:32:07 +08:00
|
|
|
bool Core_IsActive();
|
2013-02-23 12:59:40 -08:00
|
|
|
bool Core_IsInactive();
|
2018-04-29 18:08:41 -07:00
|
|
|
// Warning: these currently work only on Windows.
|
2013-02-23 12:59:40 -08:00
|
|
|
void Core_WaitInactive();
|
2013-02-23 13:21:28 -08:00
|
|
|
void Core_WaitInactive(int milliseconds);
|
2013-02-23 12:59:40 -08:00
|
|
|
|
2017-01-17 17:21:00 +07:00
|
|
|
bool UpdateScreenScale(int width, int height);
|
2014-06-29 13:11:06 +02:00
|
|
|
|
|
|
|
// Don't run the core when minimized etc.
|
|
|
|
void Core_NotifyWindowHidden(bool hidden);
|
2015-02-28 22:20:14 -08:00
|
|
|
void Core_NotifyActivity();
|
2016-07-24 17:04:06 -07:00
|
|
|
|
|
|
|
void Core_SetPowerSaving(bool mode);
|
|
|
|
bool Core_GetPowerSaving();
|
2020-07-04 20:30:05 +02:00
|
|
|
|
|
|
|
enum class MemoryExceptionType {
|
2020-07-05 11:40:58 +02:00
|
|
|
NONE,
|
2020-07-13 09:17:42 +02:00
|
|
|
UNKNOWN,
|
2020-07-04 20:30:05 +02:00
|
|
|
READ_WORD,
|
|
|
|
WRITE_WORD,
|
|
|
|
READ_BLOCK,
|
|
|
|
WRITE_BLOCK,
|
|
|
|
};
|
2020-07-12 21:59:08 -07:00
|
|
|
enum class ExecExceptionType {
|
|
|
|
JUMP,
|
|
|
|
THREAD,
|
|
|
|
};
|
2020-07-04 20:30:05 +02:00
|
|
|
|
2020-07-15 12:38:05 +02:00
|
|
|
// Separate one for without info, to avoid having to allocate a string
|
2020-07-04 20:30:05 +02:00
|
|
|
void Core_MemoryException(u32 address, u32 pc, MemoryExceptionType type);
|
2020-07-15 12:38:05 +02:00
|
|
|
|
|
|
|
void Core_MemoryExceptionInfo(u32 address, u32 pc, MemoryExceptionType type, std::string additionalInfo);
|
|
|
|
|
2020-07-12 21:59:08 -07:00
|
|
|
void Core_ExecException(u32 address, u32 pc, ExecExceptionType type);
|
2020-07-04 20:30:05 +02:00
|
|
|
void Core_Break();
|
2021-08-08 23:15:27 -07:00
|
|
|
// Call when loading save states, etc.
|
|
|
|
void Core_ResetException();
|
2020-07-04 20:57:05 +02:00
|
|
|
|
|
|
|
enum class ExceptionType {
|
|
|
|
NONE,
|
|
|
|
MEMORY,
|
|
|
|
BREAK,
|
2020-07-04 23:45:03 +02:00
|
|
|
BAD_EXEC_ADDR,
|
2020-07-04 20:57:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ExceptionInfo {
|
|
|
|
ExceptionType type;
|
|
|
|
std::string info;
|
2019-02-12 13:29:37 +01:00
|
|
|
|
|
|
|
// Memory exception info
|
|
|
|
MemoryExceptionType memory_type;
|
|
|
|
uint32_t pc;
|
|
|
|
uint32_t address;
|
2020-07-12 21:59:08 -07:00
|
|
|
|
|
|
|
// Reuses pc and address from memory type, where address is the failed destination.
|
|
|
|
ExecExceptionType exec_type;
|
2020-07-04 20:57:05 +02:00
|
|
|
};
|
|
|
|
|
2019-02-12 13:29:37 +01:00
|
|
|
const ExceptionInfo &Core_GetExceptionInfo();
|
2020-07-04 20:57:05 +02:00
|
|
|
|
2019-02-12 13:29:37 +01:00
|
|
|
const char *ExceptionTypeAsString(ExceptionType type);
|
|
|
|
const char *MemoryExceptionTypeAsString(MemoryExceptionType type);
|
2020-07-12 21:59:08 -07:00
|
|
|
const char *ExecExceptionTypeAsString(ExecExceptionType type);
|