2014-04-09 01:15:46 +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:15:46 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2014-04-09 01:15:46 +02:00
|
|
|
#pragma once
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2015-12-30 00:03:08 +01:00
|
|
|
#include <memory>
|
2016-12-16 01:01:48 +01:00
|
|
|
#include <string>
|
2014-12-22 07:30:09 +01:00
|
|
|
#include "common/common_types.h"
|
2018-06-20 14:01:50 +02:00
|
|
|
#include "core/frontend/applets/swkbd.h"
|
2018-08-26 19:47:45 +02:00
|
|
|
#include "core/hle/shared_page.h"
|
2017-08-02 01:53:35 +02:00
|
|
|
#include "core/loader/loader.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/memory.h"
|
2017-02-19 23:34:47 +01:00
|
|
|
#include "core/perf_stats.h"
|
2017-05-02 06:09:15 +02:00
|
|
|
#include "core/telemetry_session.h"
|
2014-12-22 07:30:09 +01:00
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
class EmuWindow;
|
2014-12-22 07:30:09 +01:00
|
|
|
class ARM_Interface;
|
2014-04-04 03:22:13 +02:00
|
|
|
|
2017-12-20 19:44:32 +01:00
|
|
|
namespace AudioCore {
|
|
|
|
class DspInterface;
|
|
|
|
}
|
|
|
|
|
2018-09-24 00:16:57 +02:00
|
|
|
#ifdef ENABLE_SCRIPTING
|
2018-09-11 22:00:12 +02:00
|
|
|
namespace RPC {
|
|
|
|
class RPCServer;
|
|
|
|
}
|
2018-09-24 00:16:57 +02:00
|
|
|
#endif
|
2018-09-11 22:00:12 +02:00
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
namespace Service {
|
|
|
|
namespace SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
} // namespace Service
|
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
namespace Core {
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
class System {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Gets the instance of the System singleton class.
|
|
|
|
* @returns Reference to the instance of the System singleton class.
|
|
|
|
*/
|
|
|
|
static System& GetInstance() {
|
|
|
|
return s_instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Enumeration representing the return values of the System Initialize and Load process.
|
|
|
|
enum class ResultStatus : u32 {
|
2016-12-17 07:20:47 +01:00
|
|
|
Success, ///< Succeeded
|
|
|
|
ErrorNotInitialized, ///< Error trying to use core prior to initialization
|
|
|
|
ErrorGetLoader, ///< Error finding the correct application loader
|
|
|
|
ErrorSystemMode, ///< Error determining the system mode
|
|
|
|
ErrorLoader, ///< Error loading the specified application
|
2016-12-16 01:01:48 +01:00
|
|
|
ErrorLoader_ErrorEncrypted, ///< Error loading the specified application due to encryption
|
2018-07-20 17:20:57 +02:00
|
|
|
ErrorLoader_ErrorInvalidFormat, ///< Error loading the specified application due to an
|
|
|
|
/// invalid format
|
|
|
|
ErrorSystemFiles, ///< Error in finding system files
|
|
|
|
ErrorVideoCore, ///< Error in the video core
|
|
|
|
ErrorVideoCore_ErrorGenericDrivers, ///< Error in the video core due to the user having
|
|
|
|
/// generic drivers installed
|
|
|
|
ErrorVideoCore_ErrorBelowGL33, ///< Error in the video core due to the user not having
|
|
|
|
/// OpenGL 3.3 or higher
|
2018-07-18 14:07:00 +02:00
|
|
|
ShutdownRequested, ///< Emulated program requested a system shutdown
|
2018-07-20 17:20:57 +02:00
|
|
|
ErrorUnknown ///< Any other error
|
2016-12-16 01:01:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the core CPU loop
|
2016-12-17 07:20:47 +01:00
|
|
|
* This function runs the core for the specified number of CPU instructions before trying to
|
|
|
|
* update hardware. This is much faster than SingleStep (and should be equivalent), as the CPU
|
|
|
|
* is not required to do a full dispatch with each instruction. NOTE: the number of instructions
|
|
|
|
* requested is not guaranteed to run, as this will be interrupted preemptively if a hardware
|
|
|
|
* update is requested (e.g. on a thread switch).
|
2017-12-03 03:57:08 +01:00
|
|
|
* @param tight_loop If false, the CPU single-steps.
|
2016-12-16 01:01:48 +01:00
|
|
|
* @return Result status, indicating whethor or not the operation succeeded.
|
|
|
|
*/
|
2017-12-03 03:57:08 +01:00
|
|
|
ResultStatus RunLoop(bool tight_loop = true);
|
2016-12-16 01:01:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Step the CPU one instruction
|
|
|
|
* @return Result status, indicating whethor or not the operation succeeded.
|
|
|
|
*/
|
|
|
|
ResultStatus SingleStep();
|
|
|
|
|
|
|
|
/// Shutdown the emulated system.
|
|
|
|
void Shutdown();
|
|
|
|
|
2018-07-18 14:07:00 +02:00
|
|
|
/// Shutdown and then load again
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
/// Request reset of the system
|
|
|
|
void RequestReset() {
|
|
|
|
reset_requested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Request shutdown of the system
|
|
|
|
void RequestShutdown() {
|
|
|
|
shutdown_requested = true;
|
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
/**
|
|
|
|
* Load an executable application.
|
2018-08-24 15:18:46 +02:00
|
|
|
* @param emu_window Reference to the host-system window used for video output and keyboard
|
|
|
|
* input.
|
2016-12-16 01:01:48 +01:00
|
|
|
* @param filepath String path to the executable application to load on the host file system.
|
|
|
|
* @returns ResultStatus code, indicating if the operation succeeded.
|
|
|
|
*/
|
2018-08-24 15:18:46 +02:00
|
|
|
ResultStatus Load(EmuWindow& emu_window, const std::string& filepath);
|
2016-12-16 01:01:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates if the emulated system is powered on (all subsystems initialized and able to run an
|
|
|
|
* application).
|
|
|
|
* @returns True if the emulated system is powered on, otherwise false.
|
|
|
|
*/
|
|
|
|
bool IsPoweredOn() const {
|
2016-12-22 06:00:01 +01:00
|
|
|
return cpu_core != nullptr;
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2017-05-02 06:09:15 +02:00
|
|
|
/**
|
|
|
|
* Returns a reference to the telemetry session for this emulation session.
|
|
|
|
* @returns Reference to the telemetry session.
|
|
|
|
*/
|
|
|
|
Core::TelemetrySession& TelemetrySession() const {
|
|
|
|
return *telemetry_session;
|
|
|
|
}
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
/// Prepare the core emulation for a reschedule
|
|
|
|
void PrepareReschedule();
|
|
|
|
|
2017-02-19 23:34:47 +01:00
|
|
|
PerfStats::Results GetAndResetPerfStats();
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
/**
|
2016-12-22 06:00:01 +01:00
|
|
|
* Gets a reference to the emulated CPU.
|
|
|
|
* @returns A reference to the emulated CPU.
|
2016-12-16 01:01:48 +01:00
|
|
|
*/
|
2016-12-22 06:00:01 +01:00
|
|
|
ARM_Interface& CPU() {
|
|
|
|
return *cpu_core;
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2017-12-20 19:44:32 +01:00
|
|
|
/**
|
|
|
|
* Gets a reference to the emulated DSP.
|
|
|
|
* @returns A reference to the emulated DSP.
|
|
|
|
*/
|
|
|
|
AudioCore::DspInterface& DSP() {
|
|
|
|
return *dsp_core;
|
|
|
|
}
|
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
/**
|
|
|
|
* Gets a reference to the service manager.
|
|
|
|
* @returns A reference to the service manager.
|
|
|
|
*/
|
|
|
|
Service::SM::ServiceManager& ServiceManager();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a const reference to the service manager.
|
|
|
|
* @returns A const reference to the service manager.
|
|
|
|
*/
|
|
|
|
const Service::SM::ServiceManager& ServiceManager() const;
|
|
|
|
|
2017-02-20 22:56:58 +01:00
|
|
|
PerfStats perf_stats;
|
2017-02-21 01:31:59 +01:00
|
|
|
FrameLimiter frame_limiter;
|
2017-02-19 23:34:47 +01:00
|
|
|
|
2017-06-02 23:03:38 +02:00
|
|
|
void SetStatus(ResultStatus new_status, const char* details = nullptr) {
|
2017-04-13 07:15:23 +02:00
|
|
|
status = new_status;
|
2017-06-02 23:03:38 +02:00
|
|
|
if (details) {
|
|
|
|
status_details = details;
|
|
|
|
}
|
2017-04-13 07:15:23 +02:00
|
|
|
}
|
|
|
|
|
2017-06-02 23:03:38 +02:00
|
|
|
const std::string& GetStatusDetails() const {
|
2017-04-13 07:15:23 +02:00
|
|
|
return status_details;
|
2017-03-08 22:28:30 +01:00
|
|
|
}
|
|
|
|
|
2017-08-02 01:53:35 +02:00
|
|
|
Loader::AppLoader& GetAppLoader() const {
|
|
|
|
return *app_loader;
|
|
|
|
}
|
|
|
|
|
2018-06-20 14:01:50 +02:00
|
|
|
/// Frontend Applets
|
|
|
|
|
|
|
|
void RegisterSoftwareKeyboard(std::shared_ptr<Frontend::SoftwareKeyboard> swkbd);
|
|
|
|
|
|
|
|
std::shared_ptr<Frontend::SoftwareKeyboard> GetSoftwareKeyboard() const {
|
|
|
|
return registered_swkbd;
|
|
|
|
}
|
|
|
|
|
2018-08-26 19:47:45 +02:00
|
|
|
std::shared_ptr<SharedPage::Handler> GetSharedPageHandler() const {
|
|
|
|
return shared_page_handler;
|
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
private:
|
2016-12-16 06:37:38 +01:00
|
|
|
/**
|
|
|
|
* Initialize the emulated system.
|
2018-08-24 15:18:46 +02:00
|
|
|
* @param emu_window Reference to the host-system window used for video output and keyboard
|
|
|
|
* input.
|
2016-12-16 06:37:38 +01:00
|
|
|
* @param system_mode The system mode.
|
|
|
|
* @return ResultStatus code, indicating if the operation succeeded.
|
|
|
|
*/
|
2018-08-24 15:18:46 +02:00
|
|
|
ResultStatus Init(EmuWindow& emu_window, u32 system_mode);
|
2016-12-16 06:37:38 +01:00
|
|
|
|
|
|
|
/// Reschedule the core emulation
|
|
|
|
void Reschedule();
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
/// AppLoader used to load the current executing application
|
|
|
|
std::unique_ptr<Loader::AppLoader> app_loader;
|
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
/// ARM11 CPU core
|
2016-12-22 06:00:01 +01:00
|
|
|
std::unique_ptr<ARM_Interface> cpu_core;
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
/// DSP core
|
2017-12-20 19:44:32 +01:00
|
|
|
std::unique_ptr<AudioCore::DspInterface> dsp_core;
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
/// When true, signals that a reschedule should happen
|
|
|
|
bool reschedule_pending{};
|
|
|
|
|
2017-05-02 06:09:15 +02:00
|
|
|
/// Telemetry session for this emulation session
|
|
|
|
std::unique_ptr<Core::TelemetrySession> telemetry_session;
|
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
/// Service manager
|
|
|
|
std::shared_ptr<Service::SM::ServiceManager> service_manager;
|
|
|
|
|
2018-06-20 14:01:50 +02:00
|
|
|
/// Frontend applets
|
|
|
|
std::shared_ptr<Frontend::SoftwareKeyboard> registered_swkbd;
|
|
|
|
|
2018-09-24 00:16:57 +02:00
|
|
|
#ifdef ENABLE_SCRIPTING
|
2018-09-11 22:00:12 +02:00
|
|
|
/// RPC Server for scripting support
|
|
|
|
std::unique_ptr<RPC::RPCServer> rpc_server;
|
2018-09-24 00:16:57 +02:00
|
|
|
#endif
|
2018-09-11 22:00:12 +02:00
|
|
|
|
2018-08-26 19:47:45 +02:00
|
|
|
/// Shared Page
|
|
|
|
std::shared_ptr<SharedPage::Handler> shared_page_handler;
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
static System s_instance;
|
2017-04-13 07:15:23 +02:00
|
|
|
|
2017-06-02 23:03:38 +02:00
|
|
|
ResultStatus status = ResultStatus::Success;
|
|
|
|
std::string status_details = "";
|
2018-07-18 14:07:00 +02:00
|
|
|
/// Saved variables for reset
|
|
|
|
EmuWindow* m_emu_window;
|
|
|
|
std::string m_filepath;
|
|
|
|
|
|
|
|
std::atomic<bool> reset_requested;
|
|
|
|
std::atomic<bool> shutdown_requested;
|
2016-12-16 01:01:48 +01:00
|
|
|
};
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2017-01-29 23:17:07 +01:00
|
|
|
inline ARM_Interface& CPU() {
|
2016-12-22 06:00:01 +01:00
|
|
|
return System::GetInstance().CPU();
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
2014-04-05 06:01:07 +02:00
|
|
|
|
2017-12-20 19:44:32 +01:00
|
|
|
inline AudioCore::DspInterface& DSP() {
|
|
|
|
return System::GetInstance().DSP();
|
|
|
|
}
|
|
|
|
|
2017-05-02 06:09:15 +02:00
|
|
|
inline TelemetrySession& Telemetry() {
|
|
|
|
return System::GetInstance().TelemetrySession();
|
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
} // namespace Core
|