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
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
#include <array>
|
|
|
|
#include <map>
|
2015-12-29 23:03:08 +00:00
|
|
|
#include <memory>
|
2018-08-31 16:21:34 +00:00
|
|
|
#include <thread>
|
2017-03-09 01:21:31 +00:00
|
|
|
#include <utility>
|
2018-08-31 16:21:34 +00:00
|
|
|
|
2018-11-28 19:00:44 +00:00
|
|
|
#include "common/file_util.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2018-08-10 01:33:13 +00:00
|
|
|
#include "common/string_util.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/arm/exclusive_monitor.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/core.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/core_cpu.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/core_timing.h"
|
2018-11-22 06:27:23 +00:00
|
|
|
#include "core/cpu_core_manager.h"
|
2018-09-02 14:53:06 +00:00
|
|
|
#include "core/file_sys/mode.h"
|
|
|
|
#include "core/file_sys/vfs_concat.h"
|
|
|
|
#include "core/file_sys/vfs_real.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2018-04-20 23:29:04 +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"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/hle/kernel/scheduler.h"
|
2014-05-23 02:54:07 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-11-11 21:39:25 +00:00
|
|
|
#include "core/hle/service/am/applets/software_keyboard.h"
|
2016-12-16 05:37:38 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2018-04-20 23:29:04 +00:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/loader/loader.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/perf_stats.h"
|
|
|
|
#include "core/telemetry_session.h"
|
2018-12-24 21:22:07 +00:00
|
|
|
#include "frontend/applets/profile_select.h"
|
2018-11-11 21:39:25 +00:00
|
|
|
#include "frontend/applets/software_keyboard.h"
|
2018-12-24 21:22:07 +00:00
|
|
|
#include "frontend/applets/web_browser.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
|
|
|
#include "video_core/gpu.h"
|
2018-08-03 16:55:58 +00:00
|
|
|
#include "video_core/renderer_base.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;
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
|
|
|
|
const std::string& path) {
|
|
|
|
// To account for split 00+01+etc files.
|
|
|
|
std::string dir_name;
|
|
|
|
std::string filename;
|
|
|
|
Common::SplitPath(path, &dir_name, &filename, nullptr);
|
|
|
|
if (filename == "00") {
|
|
|
|
const auto dir = vfs->OpenDirectory(dir_name, FileSys::Mode::Read);
|
|
|
|
std::vector<FileSys::VirtualFile> concat;
|
|
|
|
for (u8 i = 0; i < 0x10; ++i) {
|
|
|
|
auto next = dir->GetFile(fmt::format("{:02X}", i));
|
|
|
|
if (next != nullptr)
|
|
|
|
concat.push_back(std::move(next));
|
|
|
|
else {
|
|
|
|
next = dir->GetFile(fmt::format("{:02x}", i));
|
|
|
|
if (next != nullptr)
|
|
|
|
concat.push_back(std::move(next));
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-07-18 22:15:16 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
if (concat.empty())
|
|
|
|
return nullptr;
|
|
|
|
|
2018-09-25 21:38:16 +00:00
|
|
|
return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName());
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
2018-11-28 19:00:44 +00:00
|
|
|
if (FileUtil::IsDirectory(path))
|
|
|
|
return vfs->OpenFile(path + "/" + "main", FileSys::Mode::Read);
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
return vfs->OpenFile(path, FileSys::Mode::Read);
|
|
|
|
}
|
|
|
|
struct System::Impl {
|
2018-11-28 19:00:44 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Cpu& CurrentCpuCore() {
|
2018-11-22 06:27:23 +00:00
|
|
|
return cpu_core_manager.GetCurrentCore();
|
2018-05-08 02:57:39 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
ResultStatus RunLoop(bool tight_loop) {
|
|
|
|
status = ResultStatus::Success;
|
2018-05-08 02:57:39 +00:00
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
cpu_core_manager.RunLoop(tight_loop);
|
2018-08-30 14:50:54 +00:00
|
|
|
|
|
|
|
return status;
|
2015-09-02 12:56:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
ResultStatus Init(System& system, Frontend::EmuWindow& emu_window) {
|
2018-08-30 14:50:54 +00:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK");
|
|
|
|
|
|
|
|
CoreTiming::Init();
|
|
|
|
kernel.Initialize();
|
|
|
|
|
|
|
|
// Create a default fs if one doesn't already exist.
|
|
|
|
if (virtual_filesystem == nullptr)
|
|
|
|
virtual_filesystem = std::make_shared<FileSys::RealVfsFilesystem>();
|
|
|
|
|
2018-11-11 21:39:25 +00:00
|
|
|
/// Create default implementations of applets if one is not provided.
|
2018-11-23 02:00:04 +00:00
|
|
|
if (profile_selector == nullptr)
|
|
|
|
profile_selector = std::make_unique<Core::Frontend::DefaultProfileSelectApplet>();
|
2018-11-11 21:39:25 +00:00
|
|
|
if (software_keyboard == nullptr)
|
|
|
|
software_keyboard = std::make_unique<Core::Frontend::DefaultSoftwareKeyboardApplet>();
|
2018-12-24 21:22:07 +00:00
|
|
|
if (web_browser == nullptr)
|
|
|
|
web_browser = std::make_unique<Core::Frontend::DefaultWebBrowserApplet>();
|
2018-11-11 21:39:25 +00:00
|
|
|
|
2018-10-10 04:42:10 +00:00
|
|
|
auto main_process = Kernel::Process::Create(kernel, "main");
|
|
|
|
kernel.MakeCurrentProcess(main_process.get());
|
2018-08-30 14:50:54 +00:00
|
|
|
|
|
|
|
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
|
|
|
service_manager = std::make_shared<Service::SM::ServiceManager>();
|
|
|
|
|
2018-10-13 15:25:13 +00:00
|
|
|
Service::Init(service_manager, *virtual_filesystem);
|
2018-08-30 14:50:54 +00:00
|
|
|
GDBStub::Init();
|
|
|
|
|
|
|
|
renderer = VideoCore::CreateRenderer(emu_window);
|
|
|
|
if (!renderer->Init()) {
|
|
|
|
return ResultStatus::ErrorVideoCore;
|
|
|
|
}
|
|
|
|
|
|
|
|
gpu_core = std::make_unique<Tegra::GPU>(renderer->Rasterizer());
|
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
cpu_core_manager.Initialize(system);
|
|
|
|
is_powered_on = true;
|
2018-08-30 14:50:54 +00:00
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
|
|
|
|
|
|
|
// Reset counters and set time origin to current frame
|
|
|
|
GetAndResetPerfStats();
|
|
|
|
perf_stats.BeginSystemFrame();
|
|
|
|
|
|
|
|
return ResultStatus::Success;
|
2018-08-07 02:01:24 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
ResultStatus Load(System& system, Frontend::EmuWindow& emu_window,
|
|
|
|
const std::string& filepath) {
|
2018-08-30 14:50:54 +00:00
|
|
|
app_loader = Loader::GetLoader(GetGameFileFromPath(virtual_filesystem, filepath));
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
if (!app_loader) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to obtain loader for {}!", filepath);
|
|
|
|
return ResultStatus::ErrorGetLoader;
|
|
|
|
}
|
2018-10-30 04:03:25 +00:00
|
|
|
std::pair<std::optional<u32>, Loader::ResultStatus> system_mode =
|
2018-08-30 14:50:54 +00:00
|
|
|
app_loader->LoadKernelSystemMode();
|
2013-09-27 02:01:09 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
if (system_mode.second != Loader::ResultStatus::Success) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to determine system mode (Error {})!",
|
|
|
|
static_cast<int>(system_mode.second));
|
|
|
|
|
|
|
|
return ResultStatus::ErrorSystemMode;
|
2018-08-10 00:48:41 +00:00
|
|
|
}
|
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
ResultStatus init_result{Init(system, emu_window)};
|
2018-08-30 14:50:54 +00:00
|
|
|
if (init_result != ResultStatus::Success) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to initialize system (Error {})!",
|
|
|
|
static_cast<int>(init_result));
|
|
|
|
Shutdown();
|
|
|
|
return init_result;
|
|
|
|
}
|
2018-08-10 00:48:41 +00:00
|
|
|
|
2018-09-29 19:57:40 +00:00
|
|
|
const Loader::ResultStatus load_result{app_loader->Load(*kernel.CurrentProcess())};
|
2018-08-30 14:50:54 +00:00
|
|
|
if (load_result != Loader::ResultStatus::Success) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to load ROM (Error {})!", static_cast<int>(load_result));
|
|
|
|
Shutdown();
|
|
|
|
|
|
|
|
return static_cast<ResultStatus>(static_cast<u32>(ResultStatus::ErrorLoader) +
|
|
|
|
static_cast<u32>(load_result));
|
|
|
|
}
|
|
|
|
status = ResultStatus::Success;
|
|
|
|
return status;
|
2018-08-10 00:48:41 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
void Shutdown() {
|
|
|
|
// Log last frame performance stats
|
|
|
|
auto perf_results = GetAndResetPerfStats();
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_EmulationSpeed",
|
|
|
|
perf_results.emulation_speed * 100.0);
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_Framerate",
|
|
|
|
perf_results.game_fps);
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_Frametime",
|
|
|
|
perf_results.frametime * 1000.0);
|
|
|
|
|
2018-11-22 06:27:23 +00:00
|
|
|
is_powered_on = false;
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
// Shutdown emulation session
|
|
|
|
renderer.reset();
|
|
|
|
GDBStub::Shutdown();
|
|
|
|
Service::Shutdown();
|
|
|
|
service_manager.reset();
|
|
|
|
telemetry_session.reset();
|
|
|
|
gpu_core.reset();
|
|
|
|
|
|
|
|
// Close all CPU/threading state
|
2018-11-22 06:27:23 +00:00
|
|
|
cpu_core_manager.Shutdown();
|
2018-08-10 00:48:41 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
// Shutdown kernel and core timing
|
|
|
|
kernel.Shutdown();
|
|
|
|
CoreTiming::Shutdown();
|
|
|
|
|
|
|
|
// Close app loader
|
|
|
|
app_loader.reset();
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Loader::ResultStatus GetGameName(std::string& out) const {
|
|
|
|
if (app_loader == nullptr)
|
|
|
|
return Loader::ResultStatus::ErrorNotInitialized;
|
|
|
|
return app_loader->ReadTitle(out);
|
|
|
|
}
|
2017-03-08 21:28:30 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
void SetStatus(ResultStatus new_status, const char* details = nullptr) {
|
|
|
|
status = new_status;
|
|
|
|
if (details) {
|
|
|
|
status_details = details;
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
PerfStatsResults GetAndResetPerfStats() {
|
2018-08-30 14:50:54 +00:00
|
|
|
return perf_stats.GetAndResetStats(CoreTiming::GetGlobalTimeUs());
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Kernel::KernelCore kernel;
|
|
|
|
/// RealVfsFilesystem instance
|
|
|
|
FileSys::VirtualFilesystem virtual_filesystem;
|
|
|
|
/// AppLoader used to load the current executing application
|
|
|
|
std::unique_ptr<Loader::AppLoader> app_loader;
|
|
|
|
std::unique_ptr<VideoCore::RendererBase> renderer;
|
|
|
|
std::unique_ptr<Tegra::GPU> gpu_core;
|
|
|
|
std::shared_ptr<Tegra::DebugContext> debug_context;
|
2018-11-22 06:27:23 +00:00
|
|
|
CpuCoreManager cpu_core_manager;
|
|
|
|
bool is_powered_on = false;
|
2018-08-30 14:50:54 +00:00
|
|
|
|
2018-11-11 21:39:25 +00:00
|
|
|
/// Frontend applets
|
2018-11-23 02:00:04 +00:00
|
|
|
std::unique_ptr<Core::Frontend::ProfileSelectApplet> profile_selector;
|
2018-11-11 21:39:25 +00:00
|
|
|
std::unique_ptr<Core::Frontend::SoftwareKeyboardApplet> software_keyboard;
|
2018-12-24 21:22:07 +00:00
|
|
|
std::unique_ptr<Core::Frontend::WebBrowserApplet> web_browser;
|
2018-11-11 21:39:25 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
/// Service manager
|
|
|
|
std::shared_ptr<Service::SM::ServiceManager> service_manager;
|
|
|
|
|
|
|
|
/// Telemetry session for this emulation session
|
|
|
|
std::unique_ptr<Core::TelemetrySession> telemetry_session;
|
|
|
|
|
|
|
|
ResultStatus status = ResultStatus::Success;
|
|
|
|
std::string status_details = "";
|
|
|
|
|
|
|
|
Core::PerfStats perf_stats;
|
|
|
|
Core::FrameLimiter frame_limiter;
|
|
|
|
};
|
|
|
|
|
|
|
|
System::System() : impl{std::make_unique<Impl>()} {}
|
|
|
|
System::~System() = default;
|
|
|
|
|
|
|
|
Cpu& System::CurrentCpuCore() {
|
|
|
|
return impl->CurrentCpuCore();
|
|
|
|
}
|
|
|
|
|
2018-10-28 21:37:31 +00:00
|
|
|
const Cpu& System::CurrentCpuCore() const {
|
|
|
|
return impl->CurrentCpuCore();
|
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
System::ResultStatus System::RunLoop(bool tight_loop) {
|
|
|
|
return impl->RunLoop(tight_loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
System::ResultStatus System::SingleStep() {
|
|
|
|
return RunLoop(false);
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
void System::InvalidateCpuInstructionCaches() {
|
2018-11-22 06:27:23 +00:00
|
|
|
impl->cpu_core_manager.InvalidateAllInstructionCaches();
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
System::ResultStatus System::Load(Frontend::EmuWindow& emu_window, const std::string& filepath) {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->Load(*this, emu_window, filepath);
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool System::IsPoweredOn() const {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->is_powered_on;
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
void System::PrepareReschedule() {
|
2018-05-03 01:26:14 +00:00
|
|
|
CurrentCpuCore().PrepareReschedule();
|
2016-12-16 05:37:38 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
PerfStatsResults System::GetAndResetPerfStats() {
|
2018-08-30 14:50:54 +00:00
|
|
|
return impl->GetAndResetPerfStats();
|
2017-02-19 22:34:47 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 21:37:31 +00:00
|
|
|
TelemetrySession& System::TelemetrySession() {
|
|
|
|
return *impl->telemetry_session;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TelemetrySession& System::TelemetrySession() const {
|
2018-08-30 14:50:54 +00:00
|
|
|
return *impl->telemetry_session;
|
2018-05-03 04:34:54 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
ARM_Interface& System::CurrentArmInterface() {
|
|
|
|
return CurrentCpuCore().ArmInterface();
|
2018-08-28 16:30:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 21:37:31 +00:00
|
|
|
const ARM_Interface& System::CurrentArmInterface() const {
|
|
|
|
return CurrentCpuCore().ArmInterface();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t System::CurrentCoreIndex() const {
|
2018-08-30 14:50:54 +00:00
|
|
|
return CurrentCpuCore().CoreIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
Kernel::Scheduler& System::CurrentScheduler() {
|
2018-10-15 13:25:11 +00:00
|
|
|
return CurrentCpuCore().Scheduler();
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 21:37:31 +00:00
|
|
|
const Kernel::Scheduler& System::CurrentScheduler() const {
|
|
|
|
return CurrentCpuCore().Scheduler();
|
|
|
|
}
|
|
|
|
|
2018-10-15 13:25:11 +00:00
|
|
|
Kernel::Scheduler& System::Scheduler(std::size_t core_index) {
|
|
|
|
return CpuCore(core_index).Scheduler();
|
|
|
|
}
|
|
|
|
|
|
|
|
const Kernel::Scheduler& System::Scheduler(std::size_t core_index) const {
|
|
|
|
return CpuCore(core_index).Scheduler();
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 04:42:10 +00:00
|
|
|
Kernel::Process* System::CurrentProcess() {
|
2018-09-07 00:34:51 +00:00
|
|
|
return impl->kernel.CurrentProcess();
|
|
|
|
}
|
|
|
|
|
2018-10-10 04:42:10 +00:00
|
|
|
const Kernel::Process* System::CurrentProcess() const {
|
2018-09-07 00:34:51 +00:00
|
|
|
return impl->kernel.CurrentProcess();
|
2018-08-28 16:30:33 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
ARM_Interface& System::ArmInterface(std::size_t core_index) {
|
2018-10-18 16:07:21 +00:00
|
|
|
return CpuCore(core_index).ArmInterface();
|
2018-05-03 04:34:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 21:37:31 +00:00
|
|
|
const ARM_Interface& System::ArmInterface(std::size_t core_index) const {
|
|
|
|
return CpuCore(core_index).ArmInterface();
|
|
|
|
}
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
Cpu& System::CpuCore(std::size_t core_index) {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->cpu_core_manager.GetCore(core_index);
|
2018-05-06 03:54:43 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 13:25:11 +00:00
|
|
|
const Cpu& System::CpuCore(std::size_t core_index) const {
|
|
|
|
ASSERT(core_index < NUM_CPU_CORES);
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->cpu_core_manager.GetCore(core_index);
|
2018-10-15 13:25:11 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
ExclusiveMonitor& System::Monitor() {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->cpu_core_manager.GetExclusiveMonitor();
|
2018-10-28 21:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const ExclusiveMonitor& System::Monitor() const {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->cpu_core_manager.GetExclusiveMonitor();
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Tegra::GPU& System::GPU() {
|
|
|
|
return *impl->gpu_core;
|
|
|
|
}
|
2018-02-21 16:37:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const Tegra::GPU& System::GPU() const {
|
|
|
|
return *impl->gpu_core;
|
|
|
|
}
|
2018-08-03 15:51:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
VideoCore::RendererBase& System::Renderer() {
|
|
|
|
return *impl->renderer;
|
|
|
|
}
|
2018-03-13 21:49:59 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const VideoCore::RendererBase& System::Renderer() const {
|
|
|
|
return *impl->renderer;
|
|
|
|
}
|
2018-01-12 16:06:30 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Kernel::KernelCore& System::Kernel() {
|
|
|
|
return impl->kernel;
|
|
|
|
}
|
2018-04-20 23:29:04 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const Kernel::KernelCore& System::Kernel() const {
|
|
|
|
return impl->kernel;
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Core::PerfStats& System::GetPerfStats() {
|
|
|
|
return impl->perf_stats;
|
|
|
|
}
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const Core::PerfStats& System::GetPerfStats() const {
|
|
|
|
return impl->perf_stats;
|
|
|
|
}
|
2018-08-03 16:55:58 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Core::FrameLimiter& System::FrameLimiter() {
|
|
|
|
return impl->frame_limiter;
|
|
|
|
}
|
2018-05-03 01:26:14 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const Core::FrameLimiter& System::FrameLimiter() const {
|
|
|
|
return impl->frame_limiter;
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Loader::ResultStatus System::GetGameName(std::string& out) const {
|
|
|
|
return impl->GetGameName(out);
|
|
|
|
}
|
2017-02-19 22:34:47 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
void System::SetStatus(ResultStatus new_status, const char* details) {
|
|
|
|
impl->SetStatus(new_status, details);
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
const std::string& System::GetStatusDetails() const {
|
|
|
|
return impl->status_details;
|
|
|
|
}
|
2018-05-02 02:21:38 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
Loader::AppLoader& System::GetAppLoader() const {
|
|
|
|
return *impl->app_loader;
|
|
|
|
}
|
2018-02-21 16:37:48 +00:00
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
void System::SetGPUDebugContext(std::shared_ptr<Tegra::DebugContext> context) {
|
|
|
|
impl->debug_context = std::move(context);
|
|
|
|
}
|
2014-04-05 19:26:03 +00:00
|
|
|
|
2018-09-04 12:06:52 +00:00
|
|
|
Tegra::DebugContext* System::GetGPUDebugContext() const {
|
|
|
|
return impl->debug_context.get();
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
void System::SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs) {
|
2018-08-30 14:50:54 +00:00
|
|
|
impl->virtual_filesystem = std::move(vfs);
|
|
|
|
}
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
std::shared_ptr<FileSys::VfsFilesystem> System::GetFilesystem() const {
|
2018-08-30 14:50:54 +00:00
|
|
|
return impl->virtual_filesystem;
|
|
|
|
}
|
|
|
|
|
2018-11-23 02:00:04 +00:00
|
|
|
void System::SetProfileSelector(std::unique_ptr<Core::Frontend::ProfileSelectApplet> applet) {
|
|
|
|
impl->profile_selector = std::move(applet);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Core::Frontend::ProfileSelectApplet& System::GetProfileSelector() const {
|
|
|
|
return *impl->profile_selector;
|
|
|
|
}
|
|
|
|
|
2018-11-11 21:39:25 +00:00
|
|
|
void System::SetSoftwareKeyboard(std::unique_ptr<Core::Frontend::SoftwareKeyboardApplet> applet) {
|
|
|
|
impl->software_keyboard = std::move(applet);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Core::Frontend::SoftwareKeyboardApplet& System::GetSoftwareKeyboard() const {
|
|
|
|
return *impl->software_keyboard;
|
|
|
|
}
|
|
|
|
|
2018-12-24 21:22:07 +00:00
|
|
|
void System::SetWebBrowser(std::unique_ptr<Core::Frontend::WebBrowserApplet> applet) {
|
|
|
|
impl->web_browser = std::move(applet);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Core::Frontend::WebBrowserApplet& System::GetWebBrowser() const {
|
|
|
|
return *impl->web_browser;
|
|
|
|
}
|
|
|
|
|
2018-08-30 14:50:54 +00:00
|
|
|
System::ResultStatus System::Init(Frontend::EmuWindow& emu_window) {
|
2018-11-22 06:27:23 +00:00
|
|
|
return impl->Init(*this, emu_window);
|
2018-08-30 14:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void System::Shutdown() {
|
|
|
|
impl->Shutdown();
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-20 23:29:04 +00:00
|
|
|
Service::SM::ServiceManager& System::ServiceManager() {
|
2018-08-30 14:50:54 +00:00
|
|
|
return *impl->service_manager;
|
2018-04-20 23:29:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const Service::SM::ServiceManager& System::ServiceManager() const {
|
2018-08-30 14:50:54 +00:00
|
|
|
return *impl->service_manager;
|
2018-04-20 23:29:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 23:17:47 +00:00
|
|
|
} // namespace Core
|