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