2014-04-08 23:19:26 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:19:26 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2015-12-29 23:03:08 +00:00
|
|
|
#include <memory>
|
2017-03-09 01:21:31 +00:00
|
|
|
#include <utility>
|
2019-08-07 01:53:56 +00:00
|
|
|
#include "boost/serialization/array.hpp"
|
2017-12-20 18:44:32 +00:00
|
|
|
#include "audio_core/dsp_interface.h"
|
|
|
|
#include "audio_core/hle/hle.h"
|
2018-12-06 16:13:13 +00:00
|
|
|
#include "audio_core/lle/lle.h"
|
2019-08-07 01:53:56 +00:00
|
|
|
#include "common/archives.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2019-08-06 15:54:12 +00:00
|
|
|
#include "common/texture.h"
|
2014-12-22 06:30:09 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
2018-01-08 16:58:24 +00:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/arm/dynarmic/arm_dynarmic.h"
|
2018-01-08 16:58:24 +00:00
|
|
|
#endif
|
2014-10-25 19:54:44 +00:00
|
|
|
#include "core/arm/dyncom/arm_dyncom.h"
|
2018-11-17 01:01:10 +00:00
|
|
|
#include "core/cheats/cheats.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/core.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/core_timing.h"
|
2019-01-26 14:36:39 +00:00
|
|
|
#include "core/dumping/backend.h"
|
2019-08-20 06:45:39 +00:00
|
|
|
#ifdef ENABLE_FFMPEG_VIDEO_DUMPER
|
2019-01-26 14:41:28 +00:00
|
|
|
#include "core/dumping/ffmpeg_backend.h"
|
|
|
|
#endif
|
2019-08-06 12:43:24 +00:00
|
|
|
#include "core/custom_tex_cache.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2019-12-25 18:51:56 +00:00
|
|
|
#include "core/global.h"
|
2018-04-13 03:06:21 +00:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-09-26 23:17:47 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2014-05-23 02:54:07 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-09-29 16:39:31 +00:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2016-12-16 05:37:38 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2018-04-13 03:06:21 +00:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2019-08-07 01:53:56 +00:00
|
|
|
#include "core/hw/gpu.h"
|
2014-10-25 19:54:44 +00:00
|
|
|
#include "core/hw/hw.h"
|
2019-08-07 01:53:56 +00:00
|
|
|
#include "core/hw/lcd.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/loader/loader.h"
|
2017-12-17 03:43:09 +00:00
|
|
|
#include "core/movie.h"
|
2018-09-11 20:00:12 +00:00
|
|
|
#include "core/rpc/rpc_server.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/settings.h"
|
2017-08-19 17:14:33 +00:00
|
|
|
#include "network/network.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "video_core/video_core.h"
|
2015-09-02 12:56:38 +00:00
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
namespace Core {
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
/*static*/ System System::s_instance;
|
|
|
|
|
2019-12-25 18:51:56 +00:00
|
|
|
template <>
|
|
|
|
Core::System& Global() { return System::GetInstance(); }
|
|
|
|
|
|
|
|
template <>
|
|
|
|
Kernel::KernelSystem& Global() { return System::GetInstance().Kernel(); }
|
|
|
|
|
2017-12-03 02:57:08 +00:00
|
|
|
System::ResultStatus System::RunLoop(bool tight_loop) {
|
2017-06-02 21:03:38 +00:00
|
|
|
status = ResultStatus::Success;
|
2016-12-22 05:00:01 +00:00
|
|
|
if (!cpu_core) {
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
|
|
|
}
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2016-12-15 21:19:30 +00:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
2015-09-02 12:56:38 +00:00
|
|
|
GDBStub::HandlePacket();
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// If the loop is halted and we want to step, use a tiny (1) number of instructions to
|
2016-09-19 01:01:46 +00:00
|
|
|
// execute. Otherwise, get out of the loop function.
|
2015-09-02 12:56:38 +00:00
|
|
|
if (GDBStub::GetCpuHaltFlag()) {
|
|
|
|
if (GDBStub::GetCpuStepFlag()) {
|
2018-08-16 09:40:52 +00:00
|
|
|
tight_loop = false;
|
2015-09-02 12:56:38 +00:00
|
|
|
} else {
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::Success;
|
2015-09-02 12:56:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 19:09:10 +00:00
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
2015-01-07 15:10:58 +00:00
|
|
|
// instead advance to the next event and try to yield to the next thread
|
2018-10-30 04:35:37 +00:00
|
|
|
if (kernel->GetThreadManager().GetCurrentThread() == nullptr) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_TRACE(Core_ARM11, "Idling");
|
2018-10-27 19:53:20 +00:00
|
|
|
timing->Idle();
|
|
|
|
timing->Advance();
|
2016-12-16 05:37:38 +00:00
|
|
|
PrepareReschedule();
|
2015-01-07 15:10:58 +00:00
|
|
|
} else {
|
2018-10-27 19:53:20 +00:00
|
|
|
timing->Advance();
|
2017-12-03 02:57:08 +00:00
|
|
|
if (tight_loop) {
|
|
|
|
cpu_core->Run();
|
|
|
|
} else {
|
|
|
|
cpu_core->Step();
|
|
|
|
}
|
2015-01-07 15:10:58 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 09:40:52 +00:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
|
|
|
GDBStub::SetCpuStepFlag(false);
|
|
|
|
}
|
|
|
|
|
2014-08-30 03:24:32 +00:00
|
|
|
HW::Update();
|
2016-12-16 05:37:38 +00:00
|
|
|
Reschedule();
|
2013-09-27 02:01:09 +00:00
|
|
|
|
2018-07-18 12:07:00 +00:00
|
|
|
if (reset_requested.exchange(false)) {
|
|
|
|
Reset();
|
|
|
|
} else if (shutdown_requested.exchange(false)) {
|
|
|
|
return ResultStatus::ShutdownRequested;
|
|
|
|
}
|
|
|
|
|
2017-06-02 21:03:38 +00:00
|
|
|
return status;
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
System::ResultStatus System::SingleStep() {
|
2017-12-03 02:57:08 +00:00
|
|
|
return RunLoop(false);
|
2013-09-27 02:01:09 +00:00
|
|
|
}
|
|
|
|
|
2018-08-12 00:20:19 +00:00
|
|
|
System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) {
|
2016-12-16 00:01:48 +00:00
|
|
|
app_loader = Loader::GetLoader(filepath);
|
|
|
|
if (!app_loader) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to obtain loader for {}!", filepath);
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::ErrorGetLoader;
|
|
|
|
}
|
2018-10-05 10:37:55 +00:00
|
|
|
std::pair<std::optional<u32>, Loader::ResultStatus> system_mode =
|
2017-03-09 01:21:31 +00:00
|
|
|
app_loader->LoadKernelSystemMode();
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2017-03-09 01:21:31 +00:00
|
|
|
if (system_mode.second != Loader::ResultStatus::Success) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to determine system mode (Error {})!",
|
2018-06-29 13:56:12 +00:00
|
|
|
static_cast<int>(system_mode.second));
|
2017-03-08 21:28:30 +00:00
|
|
|
|
2017-03-09 01:21:31 +00:00
|
|
|
switch (system_mode.second) {
|
2017-03-08 21:28:30 +00:00
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorSystemMode;
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 14:51:33 +00:00
|
|
|
ASSERT(system_mode.first);
|
2018-10-05 10:37:55 +00:00
|
|
|
ResultStatus init_result{Init(emu_window, *system_mode.first)};
|
2016-12-16 00:01:48 +00:00
|
|
|
if (init_result != ResultStatus::Success) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to initialize system (Error {})!",
|
2018-06-29 13:56:12 +00:00
|
|
|
static_cast<u32>(init_result));
|
2016-12-16 00:01:48 +00:00
|
|
|
System::Shutdown();
|
|
|
|
return init_result;
|
|
|
|
}
|
|
|
|
|
2019-05-29 01:12:23 +00:00
|
|
|
telemetry_session->AddInitialInfo(*app_loader);
|
2019-03-23 20:04:19 +00:00
|
|
|
std::shared_ptr<Kernel::Process> process;
|
2018-10-17 19:23:56 +00:00
|
|
|
const Loader::ResultStatus load_result{app_loader->Load(process)};
|
|
|
|
kernel->SetCurrentProcess(process);
|
2017-06-02 21:03:38 +00:00
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to load ROM (Error {})!", static_cast<u32>(load_result));
|
2016-12-16 00:01:48 +00:00
|
|
|
System::Shutdown();
|
|
|
|
|
|
|
|
switch (load_result) {
|
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorLoader;
|
|
|
|
}
|
|
|
|
}
|
2018-11-17 01:01:10 +00:00
|
|
|
cheat_engine = std::make_unique<Cheats::CheatEngine>(*this);
|
2019-08-13 04:15:00 +00:00
|
|
|
u64 title_id{0};
|
|
|
|
if (app_loader->ReadProgramId(title_id) != Loader::ResultStatus::Success) {
|
|
|
|
LOG_ERROR(Core, "Failed to find title id for ROM (Error {})",
|
|
|
|
static_cast<u32>(load_result));
|
|
|
|
}
|
|
|
|
perf_stats = std::make_unique<PerfStats>(title_id);
|
2019-08-06 12:43:24 +00:00
|
|
|
custom_tex_cache = std::make_unique<Core::CustomTexCache>();
|
2019-08-14 05:04:50 +00:00
|
|
|
if (Settings::values.custom_textures) {
|
2019-08-08 20:55:36 +00:00
|
|
|
FileUtil::CreateFullPath(fmt::format("{}textures/{:016X}/",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::LoadDir),
|
|
|
|
Kernel().GetCurrentProcess()->codeset->program_id));
|
2019-08-17 02:34:22 +00:00
|
|
|
custom_tex_cache->FindCustomTextures();
|
2019-08-14 05:04:50 +00:00
|
|
|
}
|
2019-08-06 16:24:07 +00:00
|
|
|
if (Settings::values.preload_textures)
|
2019-08-17 02:34:22 +00:00
|
|
|
custom_tex_cache->PreloadTextures();
|
2017-03-08 21:28:30 +00:00
|
|
|
status = ResultStatus::Success;
|
2018-07-18 12:07:00 +00:00
|
|
|
m_emu_window = &emu_window;
|
|
|
|
m_filepath = filepath;
|
2019-08-17 03:33:16 +00:00
|
|
|
|
|
|
|
// Reset counters and set time origin to current frame
|
|
|
|
GetAndResetPerfStats();
|
|
|
|
perf_stats->BeginSystemFrame();
|
2017-06-02 21:03:38 +00:00
|
|
|
return status;
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
void System::PrepareReschedule() {
|
2016-12-22 05:00:01 +00:00
|
|
|
cpu_core->PrepareReschedule();
|
2016-12-16 05:37:38 +00:00
|
|
|
reschedule_pending = true;
|
|
|
|
}
|
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
PerfStats::Results System::GetAndResetPerfStats() {
|
2019-08-13 04:15:00 +00:00
|
|
|
return perf_stats->GetAndResetStats(timing->GetGlobalTimeUs());
|
2017-02-19 22:34:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
void System::Reschedule() {
|
|
|
|
if (!reschedule_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reschedule_pending = false;
|
2018-10-23 15:40:57 +00:00
|
|
|
kernel->GetThreadManager().Reschedule();
|
2016-12-16 05:37:38 +00:00
|
|
|
}
|
|
|
|
|
2018-08-12 00:20:19 +00:00
|
|
|
System::ResultStatus System::Init(Frontend::EmuWindow& emu_window, u32 system_mode) {
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK");
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-11-21 03:38:47 +00:00
|
|
|
memory = std::make_unique<Memory::MemorySystem>();
|
|
|
|
|
2018-10-27 19:53:20 +00:00
|
|
|
timing = std::make_unique<Timing>();
|
2017-12-20 18:44:32 +00:00
|
|
|
|
2019-09-10 01:48:40 +00:00
|
|
|
kernel = std::make_unique<Kernel::KernelSystem>(*memory, *timing,
|
|
|
|
[this] { PrepareReschedule(); }, system_mode);
|
2018-11-05 15:38:35 +00:00
|
|
|
|
2016-09-02 03:18:01 +00:00
|
|
|
if (Settings::values.use_cpu_jit) {
|
2018-01-08 16:58:24 +00:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2019-06-25 22:39:11 +00:00
|
|
|
cpu_core = std::make_shared<ARM_Dynarmic>(this, *memory, USER32MODE);
|
2018-01-08 16:58:24 +00:00
|
|
|
#else
|
2019-06-25 22:39:11 +00:00
|
|
|
cpu_core = std::make_shared<ARM_DynCom>(this, *memory, USER32MODE);
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available");
|
2018-01-08 16:58:24 +00:00
|
|
|
#endif
|
2016-09-02 03:18:01 +00:00
|
|
|
} else {
|
2019-06-25 22:39:11 +00:00
|
|
|
cpu_core = std::make_shared<ARM_DynCom>(this, *memory, USER32MODE);
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2019-06-25 22:39:11 +00:00
|
|
|
kernel->SetCPU(cpu_core);
|
2019-02-01 16:23:39 +00:00
|
|
|
|
2018-12-06 16:13:13 +00:00
|
|
|
if (Settings::values.enable_dsp_lle) {
|
2018-12-20 00:45:22 +00:00
|
|
|
dsp_core = std::make_unique<AudioCore::DspLle>(*memory,
|
|
|
|
Settings::values.enable_dsp_lle_multithread);
|
2018-12-06 16:13:13 +00:00
|
|
|
} else {
|
|
|
|
dsp_core = std::make_unique<AudioCore::DspHle>(*memory);
|
|
|
|
}
|
|
|
|
|
2019-02-04 02:33:20 +00:00
|
|
|
memory->SetDSP(*dsp_core);
|
|
|
|
|
2018-07-02 13:03:14 +00:00
|
|
|
dsp_core->SetSink(Settings::values.sink_id, Settings::values.audio_device_id);
|
2017-12-20 18:44:32 +00:00
|
|
|
dsp_core->EnableStretching(Settings::values.enable_audio_stretching);
|
|
|
|
|
2017-05-02 04:09:15 +00:00
|
|
|
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
2018-09-23 22:16:57 +00:00
|
|
|
|
2018-09-11 20:00:12 +00:00
|
|
|
rpc_server = std::make_unique<RPC::RPCServer>();
|
2018-09-23 22:16:57 +00:00
|
|
|
|
2019-12-23 11:41:07 +00:00
|
|
|
service_manager = std::make_unique<Service::SM::ServiceManager>(*this);
|
2018-10-13 20:11:20 +00:00
|
|
|
archive_manager = std::make_unique<Service::FS::ArchiveManager>(*this);
|
2017-05-02 04:09:15 +00:00
|
|
|
|
2018-11-21 16:53:10 +00:00
|
|
|
HW::Init(*memory);
|
2018-10-12 20:11:51 +00:00
|
|
|
Service::Init(*this);
|
2016-12-16 00:01:48 +00:00
|
|
|
GDBStub::Init();
|
|
|
|
|
2019-09-07 22:13:10 +00:00
|
|
|
VideoCore::ResultStatus result = VideoCore::Init(emu_window, *memory);
|
|
|
|
if (result != VideoCore::ResultStatus::Success) {
|
|
|
|
switch (result) {
|
|
|
|
case VideoCore::ResultStatus::ErrorGenericDrivers:
|
|
|
|
return ResultStatus::ErrorVideoCore_ErrorGenericDrivers;
|
|
|
|
case VideoCore::ResultStatus::ErrorBelowGL33:
|
|
|
|
return ResultStatus::ErrorVideoCore_ErrorBelowGL33;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorVideoCore;
|
|
|
|
}
|
2016-09-02 03:18:01 +00:00
|
|
|
}
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2019-08-20 06:45:39 +00:00
|
|
|
#ifdef ENABLE_FFMPEG_VIDEO_DUMPER
|
2019-01-26 14:41:28 +00:00
|
|
|
video_dumper = std::make_unique<VideoDumper::FFmpegBackend>();
|
|
|
|
#else
|
|
|
|
video_dumper = std::make_unique<VideoDumper::NullBackend>();
|
|
|
|
#endif
|
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
2016-12-16 00:01:48 +00:00
|
|
|
|
|
|
|
return ResultStatus::Success;
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 22:13:10 +00:00
|
|
|
RendererBase& System::Renderer() {
|
|
|
|
return *VideoCore::g_renderer;
|
|
|
|
}
|
|
|
|
|
2018-04-13 03:06:21 +00:00
|
|
|
Service::SM::ServiceManager& System::ServiceManager() {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::SM::ServiceManager& System::ServiceManager() const {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
2018-09-29 16:39:31 +00:00
|
|
|
Service::FS::ArchiveManager& System::ArchiveManager() {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::FS::ArchiveManager& System::ArchiveManager() const {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
2018-10-11 18:49:52 +00:00
|
|
|
Kernel::KernelSystem& System::Kernel() {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Kernel::KernelSystem& System::Kernel() const {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
2018-10-27 19:53:20 +00:00
|
|
|
Timing& System::CoreTiming() {
|
|
|
|
return *timing;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Timing& System::CoreTiming() const {
|
|
|
|
return *timing;
|
|
|
|
}
|
|
|
|
|
2018-11-21 03:38:47 +00:00
|
|
|
Memory::MemorySystem& System::Memory() {
|
|
|
|
return *memory;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Memory::MemorySystem& System::Memory() const {
|
|
|
|
return *memory;
|
|
|
|
}
|
|
|
|
|
2018-11-17 01:01:10 +00:00
|
|
|
Cheats::CheatEngine& System::CheatEngine() {
|
|
|
|
return *cheat_engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Cheats::CheatEngine& System::CheatEngine() const {
|
|
|
|
return *cheat_engine;
|
|
|
|
}
|
|
|
|
|
2019-01-26 14:36:39 +00:00
|
|
|
VideoDumper::Backend& System::VideoDumper() {
|
|
|
|
return *video_dumper;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VideoDumper::Backend& System::VideoDumper() const {
|
|
|
|
return *video_dumper;
|
2019-08-06 16:24:07 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 12:43:24 +00:00
|
|
|
Core::CustomTexCache& System::CustomTexCache() {
|
|
|
|
return *custom_tex_cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Core::CustomTexCache& System::CustomTexCache() const {
|
|
|
|
return *custom_tex_cache;
|
2019-01-26 14:36:39 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 16:00:57 +00:00
|
|
|
void System::RegisterMiiSelector(std::shared_ptr<Frontend::MiiSelector> mii_selector) {
|
|
|
|
registered_mii_selector = std::move(mii_selector);
|
|
|
|
}
|
|
|
|
|
2018-06-20 12:01:50 +00:00
|
|
|
void System::RegisterSoftwareKeyboard(std::shared_ptr<Frontend::SoftwareKeyboard> swkbd) {
|
|
|
|
registered_swkbd = std::move(swkbd);
|
|
|
|
}
|
|
|
|
|
2019-08-07 02:56:56 +00:00
|
|
|
void System::RegisterImageInterface(std::shared_ptr<Frontend::ImageInterface> image_interface) {
|
|
|
|
registered_image_interface = std::move(image_interface);
|
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
void System::Shutdown() {
|
2017-07-13 02:19:34 +00:00
|
|
|
// Log last frame performance stats
|
2019-03-02 20:17:40 +00:00
|
|
|
const auto perf_results = GetAndResetPerfStats();
|
|
|
|
telemetry_session->AddField(Telemetry::FieldType::Performance, "Shutdown_EmulationSpeed",
|
|
|
|
perf_results.emulation_speed * 100.0);
|
|
|
|
telemetry_session->AddField(Telemetry::FieldType::Performance, "Shutdown_Framerate",
|
|
|
|
perf_results.game_fps);
|
|
|
|
telemetry_session->AddField(Telemetry::FieldType::Performance, "Shutdown_Frametime",
|
|
|
|
perf_results.frametime * 1000.0);
|
2019-08-17 03:33:16 +00:00
|
|
|
telemetry_session->AddField(Telemetry::FieldType::Performance, "Mean_Frametime_MS",
|
|
|
|
perf_stats->GetMeanFrametime());
|
2017-07-13 02:19:34 +00:00
|
|
|
|
|
|
|
// Shutdown emulation session
|
2016-12-16 00:01:48 +00:00
|
|
|
GDBStub::Shutdown();
|
|
|
|
VideoCore::Shutdown();
|
|
|
|
HW::Shutdown();
|
2018-04-13 03:06:21 +00:00
|
|
|
telemetry_session.reset();
|
2019-08-15 03:03:11 +00:00
|
|
|
perf_stats.reset();
|
2018-09-11 20:00:12 +00:00
|
|
|
rpc_server.reset();
|
2018-11-17 01:01:10 +00:00
|
|
|
cheat_engine.reset();
|
2018-04-13 03:06:21 +00:00
|
|
|
service_manager.reset();
|
|
|
|
dsp_core.reset();
|
|
|
|
cpu_core.reset();
|
2019-03-12 23:06:20 +00:00
|
|
|
kernel.reset();
|
2018-10-27 19:53:20 +00:00
|
|
|
timing.reset();
|
2018-04-13 03:06:21 +00:00
|
|
|
app_loader.reset();
|
2017-12-20 18:44:32 +00:00
|
|
|
|
2019-01-26 14:36:39 +00:00
|
|
|
if (video_dumper->IsDumping()) {
|
|
|
|
video_dumper->StopDumping();
|
|
|
|
}
|
|
|
|
|
2017-08-19 17:14:33 +00:00
|
|
|
if (auto room_member = Network::GetRoomMember().lock()) {
|
|
|
|
Network::GameInfo game_info{};
|
|
|
|
room_member->SendGameInfo(game_info);
|
|
|
|
}
|
2014-04-05 19:26:03 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 12:07:00 +00:00
|
|
|
void System::Reset() {
|
|
|
|
// This is NOT a proper reset, but a temporary workaround by shutting down the system and
|
|
|
|
// reloading.
|
|
|
|
// TODO: Properly implement the reset
|
|
|
|
|
|
|
|
Shutdown();
|
|
|
|
// Reload the system with the same setting
|
|
|
|
Load(*m_emu_window, m_filepath);
|
|
|
|
}
|
|
|
|
|
2019-08-07 01:53:56 +00:00
|
|
|
template<class Archive>
|
|
|
|
void System::serialize(Archive & ar, const unsigned int file_version)
|
|
|
|
{
|
2019-12-22 23:37:17 +00:00
|
|
|
ar & *cpu_core.get();
|
2019-12-23 11:41:07 +00:00
|
|
|
ar & *service_manager.get();
|
2019-08-07 01:53:56 +00:00
|
|
|
ar & GPU::g_regs;
|
|
|
|
ar & LCD::g_regs;
|
|
|
|
ar & dsp_core->GetDspMemory();
|
2019-08-10 23:20:09 +00:00
|
|
|
ar & *memory.get();
|
|
|
|
ar & *kernel.get();
|
2019-08-07 01:53:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void System::Save(std::ostream &stream) const
|
|
|
|
{
|
2019-08-07 16:08:52 +00:00
|
|
|
{
|
|
|
|
oarchive oa{stream};
|
|
|
|
oa & *this;
|
|
|
|
}
|
|
|
|
VideoCore::Save(stream);
|
2019-08-07 01:53:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void System::Load(std::istream &stream)
|
|
|
|
{
|
2019-08-07 16:08:52 +00:00
|
|
|
{
|
|
|
|
iarchive ia{stream};
|
|
|
|
ia & *this;
|
|
|
|
}
|
|
|
|
VideoCore::Load(stream);
|
2019-08-07 01:53:56 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 23:17:47 +00:00
|
|
|
} // namespace Core
|