ppsspp/Core/Core.cpp

302 lines
6.4 KiB
C++
Raw Normal View History

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
// 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/.
#include <set>
2013-03-29 17:50:08 +00:00
#include "base/NativeApp.h"
#include "base/display.h"
2012-11-01 15:19:01 +00:00
#include "base/mutex.h"
#include "base/timeutil.h"
2013-03-29 17:50:08 +00:00
#include "input/input_state.h"
#include "Globals.h"
#include "Core/Core.h"
#include "Core/Config.h"
#include "Core/MemMap.h"
#include "Core/SaveState.h"
2013-03-29 17:50:08 +00:00
#include "Core/System.h"
#include "Core/MIPS/MIPS.h"
#ifdef _WIN32
#include "Windows/OpenGLBase.h"
#include "Windows/InputDevice.h"
#endif
2012-11-01 15:19:01 +00:00
#include "Host.h"
2013-03-29 17:50:08 +00:00
#include "Core/Debugger/Breakpoints.h"
2012-11-01 15:19:01 +00:00
static event m_hStepEvent;
static recursive_mutex m_hStepMutex;
static event m_hInactiveEvent;
static recursive_mutex m_hInactiveMutex;
static bool singleStepPending = false;
static std::set<Core_ShutdownFunc> shutdownFuncs;
2013-03-31 07:02:15 +00:00
#ifdef _WIN32
InputState input_state;
#else
extern InputState input_state;
#endif
2012-11-01 15:19:01 +00:00
2013-10-12 08:44:12 +00:00
void Core_ListenShutdown(Core_ShutdownFunc func) {
shutdownFuncs.insert(func);
}
2013-10-12 08:44:12 +00:00
void Core_NotifyShutdown() {
for (auto it = shutdownFuncs.begin(); it != shutdownFuncs.end(); ++it) {
(*it)();
2013-10-12 08:44:12 +00:00
}
}
2013-10-12 08:44:12 +00:00
void Core_ErrorPause() {
Core_UpdateState(CORE_ERROR);
2012-11-01 15:19:01 +00:00
}
2013-10-12 08:44:12 +00:00
void Core_Halt(const char *msg) {
2012-11-01 15:19:01 +00:00
Core_EnableStepping(true);
ERROR_LOG(CPU, "CPU HALTED : %s",msg);
_dbg_update_();
}
2013-10-12 08:44:12 +00:00
void Core_Stop() {
Core_UpdateState(CORE_POWERDOWN);
Core_NotifyShutdown();
2012-11-01 15:19:01 +00:00
m_hStepEvent.notify_one();
}
2013-10-12 08:44:12 +00:00
bool Core_IsStepping() {
2012-11-01 15:19:01 +00:00
return coreState == CORE_STEPPING || coreState == CORE_POWERDOWN;
}
2013-10-12 08:44:12 +00:00
bool Core_IsActive() {
return coreState == CORE_RUNNING || coreState == CORE_NEXTFRAME || coreStatePending;
}
2013-10-12 08:44:12 +00:00
bool Core_IsInactive() {
return coreState != CORE_RUNNING && coreState != CORE_NEXTFRAME && !coreStatePending;
}
2013-10-12 08:44:12 +00:00
void Core_WaitInactive() {
while (Core_IsActive()) {
m_hInactiveEvent.wait(m_hInactiveMutex);
2013-10-12 08:44:12 +00:00
}
}
2013-10-12 08:44:12 +00:00
void Core_WaitInactive(int milliseconds) {
if (Core_IsActive()) {
m_hInactiveEvent.wait_for(m_hInactiveMutex, milliseconds);
2013-10-12 08:44:12 +00:00
}
}
2013-03-29 17:50:08 +00:00
void UpdateScreenScale() {
dp_xres = PSP_CoreParameter().pixelWidth;
dp_yres = PSP_CoreParameter().pixelHeight;
2013-08-17 04:41:40 +00:00
pixel_xres = PSP_CoreParameter().pixelWidth;
pixel_yres = PSP_CoreParameter().pixelHeight;
g_dpi = 72;
g_dpi_scale = 1.0f;
#ifdef _WIN32
if (pixel_xres < 480 + 80)
{
dp_xres *= 2;
dp_yres *= 2;
2013-08-17 04:41:40 +00:00
g_dpi_scale = 2.0f;
}
2013-08-17 04:41:40 +00:00
else
#endif
2013-03-29 17:50:08 +00:00
pixel_in_dps = (float)pixel_xres / dp_xres;
}
static inline void UpdateRunLoop() {
UpdateScreenScale();
{
{
#ifdef _WIN32
lock_guard guard(input_state.lock);
input_state.pad_buttons = 0;
input_state.pad_lstick_x = 0;
input_state.pad_lstick_y = 0;
input_state.pad_rstick_x = 0;
input_state.pad_rstick_y = 0;
host->PollControllers(input_state);
UpdateInputState(&input_state);
#endif
}
NativeUpdate(input_state);
EndInputState(&input_state);
}
NativeRender();
}
void Core_RunLoop() {
while (globalUIState != UISTATE_INGAME && globalUIState != UISTATE_EXIT) {
2013-04-14 08:48:42 +00:00
time_update();
#ifdef _WIN32
double startTime = time_now_d();
UpdateRunLoop();
2013-03-29 17:50:08 +00:00
// Simple throttling to not burn the GPU in the menu.
time_update();
double diffTime = time_now_d() - startTime;
int sleepTime = (int) (1000000.0 / 60.0) - (int) (diffTime * 1000000.0);
if (sleepTime > 0)
Sleep(sleepTime / 1000);
GL_SwapBuffers();
#else
UpdateRunLoop();
#endif
}
while (!coreState && globalUIState == UISTATE_INGAME) {
time_update();
UpdateRunLoop();
#ifdef _WIN32
if (!Core_IsStepping()) {
GL_SwapBuffers();
}
#endif
}
2012-11-01 15:19:01 +00:00
}
2013-10-12 08:44:12 +00:00
void Core_DoSingleStep() {
singleStepPending = true;
m_hStepEvent.notify_one();
}
2013-10-12 08:44:12 +00:00
void Core_UpdateSingleStep() {
2012-11-01 15:19:01 +00:00
m_hStepEvent.notify_one();
}
2013-10-12 08:44:12 +00:00
void Core_SingleStep() {
2012-11-01 15:19:01 +00:00
currentMIPS->SingleStep();
}
2013-10-12 08:44:12 +00:00
static inline void CoreStateProcessed() {
if (coreStatePending) {
coreStatePending = false;
m_hInactiveEvent.notify_one();
}
}
2012-11-01 15:19:01 +00:00
// Some platforms, like Android, do not call this function but handle things on their own.
void Core_Run()
{
2012-12-26 07:52:40 +00:00
#if defined(_DEBUG)
2012-11-01 15:19:01 +00:00
host->UpdateDisassembly();
#endif
#if !defined(USING_QT_UI) || defined(USING_GLES2)
2012-11-01 15:19:01 +00:00
while (true)
#endif
2012-11-01 15:19:01 +00:00
{
reswitch:
if (globalUIState != UISTATE_INGAME) {
2013-10-12 08:44:12 +00:00
CoreStateProcessed();
if (globalUIState == UISTATE_EXIT) {
return;
}
Core_RunLoop();
2013-10-14 14:40:25 +00:00
#if defined(USING_QT_UI) && !defined(USING_GLES2)
return;
#else
continue;
2013-10-14 14:40:25 +00:00
#endif
}
switch (coreState)
2012-11-01 15:19:01 +00:00
{
case CORE_RUNNING:
// enter a fast runloop
2012-11-01 15:19:01 +00:00
Core_RunLoop();
break;
// We should never get here on Android.
case CORE_STEPPING:
singleStepPending = false;
2013-10-12 08:44:12 +00:00
CoreStateProcessed();
// Check if there's any pending savestate actions.
SaveState::Process();
if (coreState == CORE_POWERDOWN) {
return;
}
// wait for step command..
#if defined(USING_QT_UI) || defined(_DEBUG)
2013-02-17 00:06:06 +00:00
host->UpdateDisassembly();
host->UpdateMemView();
host->SendCoreWait(true);
#endif
2012-11-01 15:19:01 +00:00
m_hStepEvent.wait(m_hStepMutex);
#if defined(USING_QT_UI) || defined(_DEBUG)
host->SendCoreWait(false);
#endif
#if defined(USING_QT_UI) && !defined(USING_GLES2)
if (coreState != CORE_STEPPING)
return;
#endif
// No step pending? Let's go back to the wait.
if (!singleStepPending || coreState != CORE_STEPPING) {
if (coreState == CORE_POWERDOWN) {
return;
}
goto reswitch;
}
2012-11-01 15:19:01 +00:00
currentCPU = &mipsr4k;
Core_SingleStep();
// update disasm dialog
#if defined(USING_QT_UI) || defined(_DEBUG)
2012-11-01 15:19:01 +00:00
host->UpdateDisassembly();
host->UpdateMemView();
#endif
break;
case CORE_POWERDOWN:
case CORE_ERROR:
// Exit loop!!
2013-10-12 08:44:12 +00:00
CoreStateProcessed();
2013-03-23 17:30:52 +00:00
return;
case CORE_NEXTFRAME:
2012-11-01 15:19:01 +00:00
return;
}
}
}
2013-03-29 20:21:27 +00:00
2013-10-12 08:44:12 +00:00
void Core_EnableStepping(bool step) {
if (step) {
2012-11-01 15:19:01 +00:00
sleep_ms(1);
2012-12-26 07:52:40 +00:00
#if defined(_DEBUG)
2012-11-01 15:19:01 +00:00
host->SetDebugMode(true);
#endif
2013-04-20 16:41:17 +00:00
m_hStepEvent.reset();
Core_UpdateState(CORE_STEPPING);
2013-10-12 08:44:12 +00:00
} else {
2012-12-26 07:52:40 +00:00
#if defined(_DEBUG)
2012-11-01 15:19:01 +00:00
host->SetDebugMode(false);
#endif
coreState = CORE_RUNNING;
coreStatePending = false;
2012-11-01 15:19:01 +00:00
m_hStepEvent.notify_one();
}
}