2014-04-09 01:19:26 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:19:26 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2015-12-30 00:03:08 +01:00
|
|
|
#include <memory>
|
2017-03-09 02:21:31 +01:00
|
|
|
#include <utility>
|
2017-12-20 19:44:32 +01:00
|
|
|
#include "audio_core/dsp_interface.h"
|
|
|
|
#include "audio_core/hle/hle.h"
|
2018-12-06 17:13:13 +01:00
|
|
|
#include "audio_core/lle/lle.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
2019-08-06 17:54:12 +02:00
|
|
|
#include "common/texture.h"
|
2014-12-22 07:30:09 +01:00
|
|
|
#include "core/arm/arm_interface.h"
|
2018-01-08 17:58:24 +01:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/arm/dynarmic/arm_dynarmic.h"
|
2018-01-08 17:58:24 +01:00
|
|
|
#endif
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/arm/dyncom/arm_dyncom.h"
|
2018-11-17 02:01:10 +01:00
|
|
|
#include "core/cheats/cheats.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/core.h"
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/core_timing.h"
|
2019-01-26 15:36:39 +01:00
|
|
|
#include "core/dumping/backend.h"
|
2019-08-20 08:45:39 +02:00
|
|
|
#ifdef ENABLE_FFMPEG_VIDEO_DUMPER
|
2019-01-26 15:41:28 +01:00
|
|
|
#include "core/dumping/ffmpeg_backend.h"
|
|
|
|
#endif
|
2019-08-06 14:43:24 +02:00
|
|
|
#include "core/custom_tex_cache.h"
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2018-04-13 05:06:21 +02:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-09-27 01:17:47 +02:00
|
|
|
#include "core/hle/kernel/process.h"
|
2014-05-23 04:54:07 +02:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-09-29 18:39:31 +02:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2016-12-16 06:37:38 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2018-04-13 05:06:21 +02:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/hw/hw.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/loader/loader.h"
|
2017-12-17 04:43:09 +01:00
|
|
|
#include "core/movie.h"
|
2018-09-11 22:00:12 +02:00
|
|
|
#include "core/rpc/rpc_server.h"
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/settings.h"
|
2017-08-19 19:14:33 +02:00
|
|
|
#include "network/network.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "video_core/video_core.h"
|
2015-09-02 14:56:38 +02:00
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
namespace Core {
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
/*static*/ System System::s_instance;
|
|
|
|
|
2017-12-03 03:57:08 +01:00
|
|
|
System::ResultStatus System::RunLoop(bool tight_loop) {
|
2017-06-02 23:03:38 +02:00
|
|
|
status = ResultStatus::Success;
|
2016-12-22 06:00:01 +01:00
|
|
|
if (!cpu_core) {
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
|
|
|
}
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2016-12-15 22:19:30 +01:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
2015-09-02 14:56:38 +02:00
|
|
|
GDBStub::HandlePacket();
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
// If the loop is halted and we want to step, use a tiny (1) number of instructions to
|
2016-09-19 03:01:46 +02:00
|
|
|
// execute. Otherwise, get out of the loop function.
|
2015-09-02 14:56:38 +02:00
|
|
|
if (GDBStub::GetCpuHaltFlag()) {
|
|
|
|
if (GDBStub::GetCpuStepFlag()) {
|
2018-08-16 11:40:52 +02:00
|
|
|
tight_loop = false;
|
2015-09-02 14:56:38 +02:00
|
|
|
} else {
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::Success;
|
2015-09-02 14:56:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 21:09:10 +02:00
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
2015-01-07 16:10:58 +01:00
|
|
|
// instead advance to the next event and try to yield to the next thread
|
2018-10-30 05:35:37 +01:00
|
|
|
if (kernel->GetThreadManager().GetCurrentThread() == nullptr) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_TRACE(Core_ARM11, "Idling");
|
2018-10-27 21:53:20 +02:00
|
|
|
timing->Idle();
|
|
|
|
timing->Advance();
|
2016-12-16 06:37:38 +01:00
|
|
|
PrepareReschedule();
|
2015-01-07 16:10:58 +01:00
|
|
|
} else {
|
2018-10-27 21:53:20 +02:00
|
|
|
timing->Advance();
|
2017-12-03 03:57:08 +01:00
|
|
|
if (tight_loop) {
|
|
|
|
cpu_core->Run();
|
|
|
|
} else {
|
|
|
|
cpu_core->Step();
|
|
|
|
}
|
2015-01-07 16:10:58 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 11:40:52 +02:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
|
|
|
GDBStub::SetCpuStepFlag(false);
|
|
|
|
}
|
|
|
|
|
2014-08-30 05:24:32 +02:00
|
|
|
HW::Update();
|
2016-12-16 06:37:38 +01:00
|
|
|
Reschedule();
|
2013-09-27 04:01:09 +02:00
|
|
|
|
2018-07-18 14:07:00 +02:00
|
|
|
if (reset_requested.exchange(false)) {
|
|
|
|
Reset();
|
|
|
|
} else if (shutdown_requested.exchange(false)) {
|
|
|
|
return ResultStatus::ShutdownRequested;
|
|
|
|
}
|
|
|
|
|
2017-06-02 23:03:38 +02:00
|
|
|
return status;
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
System::ResultStatus System::SingleStep() {
|
2017-12-03 03:57:08 +01:00
|
|
|
return RunLoop(false);
|
2013-09-27 04:01:09 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 18:24:07 +02:00
|
|
|
void System::PreloadCustomTextures() {
|
|
|
|
// Custom textures are currently stored as
|
|
|
|
// load/textures/[TitleID]/tex1_[width]x[height]_[64-bit hash]_[format].png
|
|
|
|
const std::string load_path =
|
|
|
|
fmt::format("{}textures/{:016X}/", FileUtil::GetUserPath(FileUtil::UserPath::LoadDir),
|
|
|
|
Kernel().GetCurrentProcess()->codeset->program_id);
|
|
|
|
|
|
|
|
if (FileUtil::Exists(load_path)) {
|
|
|
|
FileUtil::FSTEntry texture_files;
|
|
|
|
FileUtil::ScanDirectoryTree(load_path, texture_files);
|
|
|
|
for (const auto& file : texture_files.children) {
|
|
|
|
if (file.isDirectory)
|
|
|
|
continue;
|
|
|
|
if (file.virtualName.substr(0, 5) != "tex1_")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
|
|
|
u64 hash;
|
|
|
|
u32 format; // unused
|
|
|
|
// TODO: more modern way of doing this
|
|
|
|
if (std::sscanf(file.virtualName.c_str(), "tex1_%ux%u_%llX_%u.png", &width, &height,
|
|
|
|
&hash, &format) == 4) {
|
|
|
|
u32 png_width;
|
|
|
|
u32 png_height;
|
|
|
|
std::vector<u8> decoded_png;
|
|
|
|
|
2019-08-07 04:56:56 +02:00
|
|
|
if (registered_image_interface->DecodePNG(decoded_png, png_width, png_height,
|
|
|
|
file.physicalName)) {
|
2019-08-06 18:24:07 +02:00
|
|
|
LOG_INFO(Render_OpenGL, "Preloaded custom texture from {}", file.physicalName);
|
|
|
|
Common::FlipRGBA8Texture(decoded_png, png_width, png_height);
|
|
|
|
custom_tex_cache->CacheTexture(hash, decoded_png, png_width, png_height);
|
2019-08-07 04:56:56 +02:00
|
|
|
} else {
|
|
|
|
// Error should be reported by frontend
|
|
|
|
LOG_CRITICAL(Render_OpenGL, "Failed to preload custom texture");
|
2019-08-06 18:24:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 02:20:19 +02:00
|
|
|
System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) {
|
2016-12-16 01:01:48 +01:00
|
|
|
app_loader = Loader::GetLoader(filepath);
|
|
|
|
if (!app_loader) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to obtain loader for {}!", filepath);
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::ErrorGetLoader;
|
|
|
|
}
|
2018-10-05 12:37:55 +02:00
|
|
|
std::pair<std::optional<u32>, Loader::ResultStatus> system_mode =
|
2017-03-09 02:21:31 +01:00
|
|
|
app_loader->LoadKernelSystemMode();
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2017-03-09 02:21:31 +01:00
|
|
|
if (system_mode.second != Loader::ResultStatus::Success) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to determine system mode (Error {})!",
|
2018-06-29 15:56:12 +02:00
|
|
|
static_cast<int>(system_mode.second));
|
2017-03-08 22:28:30 +01:00
|
|
|
|
2017-03-09 02:21:31 +01:00
|
|
|
switch (system_mode.second) {
|
2017-03-08 22:28:30 +01:00
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorSystemMode;
|
|
|
|
}
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 16:51:33 +02:00
|
|
|
ASSERT(system_mode.first);
|
2018-10-05 12:37:55 +02:00
|
|
|
ResultStatus init_result{Init(emu_window, *system_mode.first)};
|
2016-12-16 01:01:48 +01:00
|
|
|
if (init_result != ResultStatus::Success) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to initialize system (Error {})!",
|
2018-06-29 15:56:12 +02:00
|
|
|
static_cast<u32>(init_result));
|
2016-12-16 01:01:48 +01:00
|
|
|
System::Shutdown();
|
|
|
|
return init_result;
|
|
|
|
}
|
|
|
|
|
2019-05-29 03:12:23 +02:00
|
|
|
telemetry_session->AddInitialInfo(*app_loader);
|
2019-03-23 21:04:19 +01:00
|
|
|
std::shared_ptr<Kernel::Process> process;
|
2018-10-17 21:23:56 +02:00
|
|
|
const Loader::ResultStatus load_result{app_loader->Load(process)};
|
|
|
|
kernel->SetCurrentProcess(process);
|
2017-06-02 23:03:38 +02:00
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to load ROM (Error {})!", static_cast<u32>(load_result));
|
2016-12-16 01:01:48 +01: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 02:01:10 +01:00
|
|
|
cheat_engine = std::make_unique<Cheats::CheatEngine>(*this);
|
2019-08-13 06:15:00 +02: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 14:43:24 +02:00
|
|
|
custom_tex_cache = std::make_unique<Core::CustomTexCache>();
|
2019-08-08 22:55:36 +02:00
|
|
|
if (Settings::values.custom_textures)
|
|
|
|
FileUtil::CreateFullPath(fmt::format("{}textures/{:016X}/",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::LoadDir),
|
|
|
|
Kernel().GetCurrentProcess()->codeset->program_id));
|
2019-08-06 18:24:07 +02:00
|
|
|
if (Settings::values.preload_textures)
|
|
|
|
PreloadCustomTextures();
|
2017-03-08 22:28:30 +01:00
|
|
|
status = ResultStatus::Success;
|
2018-07-18 14:07:00 +02:00
|
|
|
m_emu_window = &emu_window;
|
|
|
|
m_filepath = filepath;
|
2019-08-17 05:33:16 +02:00
|
|
|
|
|
|
|
// Reset counters and set time origin to current frame
|
|
|
|
GetAndResetPerfStats();
|
|
|
|
perf_stats->BeginSystemFrame();
|
2017-06-02 23:03:38 +02:00
|
|
|
return status;
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
void System::PrepareReschedule() {
|
2016-12-22 06:00:01 +01:00
|
|
|
cpu_core->PrepareReschedule();
|
2016-12-16 06:37:38 +01:00
|
|
|
reschedule_pending = true;
|
|
|
|
}
|
|
|
|
|
2017-02-19 23:34:47 +01:00
|
|
|
PerfStats::Results System::GetAndResetPerfStats() {
|
2019-08-13 06:15:00 +02:00
|
|
|
return perf_stats->GetAndResetStats(timing->GetGlobalTimeUs());
|
2017-02-19 23:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
void System::Reschedule() {
|
|
|
|
if (!reschedule_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reschedule_pending = false;
|
2018-10-23 17:40:57 +02:00
|
|
|
kernel->GetThreadManager().Reschedule();
|
2016-12-16 06:37:38 +01:00
|
|
|
}
|
|
|
|
|
2018-08-12 02:20:19 +02:00
|
|
|
System::ResultStatus System::Init(Frontend::EmuWindow& emu_window, u32 system_mode) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK");
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2018-11-21 04:38:47 +01:00
|
|
|
memory = std::make_unique<Memory::MemorySystem>();
|
|
|
|
|
2018-10-27 21:53:20 +02:00
|
|
|
timing = std::make_unique<Timing>();
|
2017-12-20 19:44:32 +01:00
|
|
|
|
2019-08-06 18:24:07 +02:00
|
|
|
kernel = std::make_unique<Kernel::KernelSystem>(*memory, *timing,
|
|
|
|
[this] { PrepareReschedule(); }, system_mode);
|
2018-11-05 16:38:35 +01:00
|
|
|
|
2016-09-02 05:18:01 +02:00
|
|
|
if (Settings::values.use_cpu_jit) {
|
2018-01-08 17:58:24 +01:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2019-06-26 00:39:11 +02:00
|
|
|
cpu_core = std::make_shared<ARM_Dynarmic>(this, *memory, USER32MODE);
|
2018-01-08 17:58:24 +01:00
|
|
|
#else
|
2019-06-26 00:39:11 +02:00
|
|
|
cpu_core = std::make_shared<ARM_DynCom>(this, *memory, USER32MODE);
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available");
|
2018-01-08 17:58:24 +01:00
|
|
|
#endif
|
2016-09-02 05:18:01 +02:00
|
|
|
} else {
|
2019-06-26 00:39:11 +02:00
|
|
|
cpu_core = std::make_shared<ARM_DynCom>(this, *memory, USER32MODE);
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2019-06-26 00:39:11 +02:00
|
|
|
kernel->SetCPU(cpu_core);
|
2019-02-01 17:23:39 +01:00
|
|
|
|
2018-12-06 17:13:13 +01:00
|
|
|
if (Settings::values.enable_dsp_lle) {
|
2018-12-20 01:45:22 +01:00
|
|
|
dsp_core = std::make_unique<AudioCore::DspLle>(*memory,
|
|
|
|
Settings::values.enable_dsp_lle_multithread);
|
2018-12-06 17:13:13 +01:00
|
|
|
} else {
|
|
|
|
dsp_core = std::make_unique<AudioCore::DspHle>(*memory);
|
|
|
|
}
|
|
|
|
|
2019-02-04 03:33:20 +01:00
|
|
|
memory->SetDSP(*dsp_core);
|
|
|
|
|
2018-07-02 15:03:14 +02:00
|
|
|
dsp_core->SetSink(Settings::values.sink_id, Settings::values.audio_device_id);
|
2017-12-20 19:44:32 +01:00
|
|
|
dsp_core->EnableStretching(Settings::values.enable_audio_stretching);
|
|
|
|
|
2017-05-02 06:09:15 +02:00
|
|
|
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
2018-09-24 00:16:57 +02:00
|
|
|
|
2018-09-11 22:00:12 +02:00
|
|
|
rpc_server = std::make_unique<RPC::RPCServer>();
|
2018-09-24 00:16:57 +02:00
|
|
|
|
2018-10-13 01:00:16 +02:00
|
|
|
service_manager = std::make_shared<Service::SM::ServiceManager>(*this);
|
2018-10-13 22:11:20 +02:00
|
|
|
archive_manager = std::make_unique<Service::FS::ArchiveManager>(*this);
|
2017-05-02 06:09:15 +02:00
|
|
|
|
2018-11-21 17:53:10 +01:00
|
|
|
HW::Init(*memory);
|
2018-10-12 22:11:51 +02:00
|
|
|
Service::Init(*this);
|
2016-12-16 01:01:48 +01:00
|
|
|
GDBStub::Init();
|
|
|
|
|
2018-11-21 17:20:20 +01:00
|
|
|
ResultStatus result = VideoCore::Init(emu_window, *memory);
|
2018-07-20 17:20:57 +02:00
|
|
|
if (result != ResultStatus::Success) {
|
|
|
|
return result;
|
2016-09-02 05:18:01 +02:00
|
|
|
}
|
2014-10-25 21:54:44 +02:00
|
|
|
|
2019-08-20 08:45:39 +02:00
|
|
|
#ifdef ENABLE_FFMPEG_VIDEO_DUMPER
|
2019-01-26 15:41:28 +01:00
|
|
|
video_dumper = std::make_unique<VideoDumper::FFmpegBackend>();
|
|
|
|
#else
|
|
|
|
video_dumper = std::make_unique<VideoDumper::NullBackend>();
|
|
|
|
#endif
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
2016-12-16 01:01:48 +01:00
|
|
|
|
|
|
|
return ResultStatus::Success;
|
2014-04-01 04:26:50 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
Service::SM::ServiceManager& System::ServiceManager() {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::SM::ServiceManager& System::ServiceManager() const {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
2018-09-29 18:39:31 +02:00
|
|
|
Service::FS::ArchiveManager& System::ArchiveManager() {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::FS::ArchiveManager& System::ArchiveManager() const {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:49:52 +02:00
|
|
|
Kernel::KernelSystem& System::Kernel() {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Kernel::KernelSystem& System::Kernel() const {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
2018-10-27 21:53:20 +02:00
|
|
|
Timing& System::CoreTiming() {
|
|
|
|
return *timing;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Timing& System::CoreTiming() const {
|
|
|
|
return *timing;
|
|
|
|
}
|
|
|
|
|
2018-11-21 04:38:47 +01:00
|
|
|
Memory::MemorySystem& System::Memory() {
|
|
|
|
return *memory;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Memory::MemorySystem& System::Memory() const {
|
|
|
|
return *memory;
|
|
|
|
}
|
|
|
|
|
2018-11-17 02:01:10 +01:00
|
|
|
Cheats::CheatEngine& System::CheatEngine() {
|
|
|
|
return *cheat_engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Cheats::CheatEngine& System::CheatEngine() const {
|
|
|
|
return *cheat_engine;
|
|
|
|
}
|
|
|
|
|
2019-01-26 15:36:39 +01:00
|
|
|
VideoDumper::Backend& System::VideoDumper() {
|
|
|
|
return *video_dumper;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VideoDumper::Backend& System::VideoDumper() const {
|
|
|
|
return *video_dumper;
|
2019-08-06 18:24:07 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 14:43:24 +02:00
|
|
|
Core::CustomTexCache& System::CustomTexCache() {
|
|
|
|
return *custom_tex_cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Core::CustomTexCache& System::CustomTexCache() const {
|
|
|
|
return *custom_tex_cache;
|
2019-01-26 15:36:39 +01:00
|
|
|
}
|
|
|
|
|
2019-02-09 17:00:57 +01:00
|
|
|
void System::RegisterMiiSelector(std::shared_ptr<Frontend::MiiSelector> mii_selector) {
|
|
|
|
registered_mii_selector = std::move(mii_selector);
|
|
|
|
}
|
|
|
|
|
2018-06-20 14:01:50 +02:00
|
|
|
void System::RegisterSoftwareKeyboard(std::shared_ptr<Frontend::SoftwareKeyboard> swkbd) {
|
|
|
|
registered_swkbd = std::move(swkbd);
|
|
|
|
}
|
|
|
|
|
2019-08-07 04:56:56 +02:00
|
|
|
void System::RegisterImageInterface(std::shared_ptr<Frontend::ImageInterface> image_interface) {
|
|
|
|
registered_image_interface = std::move(image_interface);
|
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
void System::Shutdown() {
|
2017-07-13 04:19:34 +02:00
|
|
|
// Log last frame performance stats
|
2019-03-02 21:17:40 +01: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 05:33:16 +02:00
|
|
|
telemetry_session->AddField(Telemetry::FieldType::Performance, "Mean_Frametime_MS",
|
|
|
|
perf_stats->GetMeanFrametime());
|
2017-07-13 04:19:34 +02:00
|
|
|
|
|
|
|
// Shutdown emulation session
|
2016-12-16 01:01:48 +01:00
|
|
|
GDBStub::Shutdown();
|
|
|
|
VideoCore::Shutdown();
|
|
|
|
HW::Shutdown();
|
2018-04-13 05:06:21 +02:00
|
|
|
telemetry_session.reset();
|
2019-08-15 05:03:11 +02:00
|
|
|
perf_stats.reset();
|
2018-09-11 22:00:12 +02:00
|
|
|
rpc_server.reset();
|
2018-11-17 02:01:10 +01:00
|
|
|
cheat_engine.reset();
|
2018-04-13 05:06:21 +02:00
|
|
|
service_manager.reset();
|
|
|
|
dsp_core.reset();
|
|
|
|
cpu_core.reset();
|
2019-03-13 00:06:20 +01:00
|
|
|
kernel.reset();
|
2018-10-27 21:53:20 +02:00
|
|
|
timing.reset();
|
2018-04-13 05:06:21 +02:00
|
|
|
app_loader.reset();
|
2017-12-20 19:44:32 +01:00
|
|
|
|
2019-01-26 15:36:39 +01:00
|
|
|
if (video_dumper->IsDumping()) {
|
|
|
|
video_dumper->StopDumping();
|
|
|
|
}
|
|
|
|
|
2017-08-19 19:14:33 +02:00
|
|
|
if (auto room_member = Network::GetRoomMember().lock()) {
|
|
|
|
Network::GameInfo game_info{};
|
|
|
|
room_member->SendGameInfo(game_info);
|
|
|
|
}
|
2014-04-05 21:26:03 +02:00
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 14:07:00 +02: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);
|
|
|
|
}
|
|
|
|
|
2017-09-27 01:17:47 +02:00
|
|
|
} // namespace Core
|