mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +00:00
Merge pull request #151 from archshift/dyncom-enabled
Use configuration files to enable or disable the new dyncom interpreter.
This commit is contained in:
commit
48f80bb79e
10 changed files with 63 additions and 7 deletions
|
@ -7,6 +7,7 @@
|
|||
#include "citra/default_ini.h"
|
||||
#include "common/file_util.h"
|
||||
#include "core/settings.h"
|
||||
#include "core/core.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
|
@ -55,6 +56,11 @@ void Config::ReadControls() {
|
|||
Settings::values.pad_sright_key = glfw_config->GetInteger("Controls", "pad_sright", GLFW_KEY_RIGHT);
|
||||
}
|
||||
|
||||
void Config::ReadCore() {
|
||||
Settings::values.cpu_core = glfw_config->GetInteger("Core", "cpu_core", Core::CPU_Interpreter);
|
||||
Settings::values.gpu_refresh_rate = glfw_config->GetInteger("Core", "gpu_refresh_rate", 60);
|
||||
}
|
||||
|
||||
void Config::ReadData() {
|
||||
Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
||||
}
|
||||
|
@ -62,6 +68,7 @@ void Config::ReadData() {
|
|||
void Config::Reload() {
|
||||
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
|
||||
ReadControls();
|
||||
ReadCore();
|
||||
ReadData();
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ class Config {
|
|||
|
||||
bool LoadINI(INIReader* config, const char* location, const std::string& default_contents="", bool retry=true);
|
||||
void ReadControls();
|
||||
void ReadCore();
|
||||
void ReadData();
|
||||
public:
|
||||
Config();
|
||||
|
|
|
@ -26,6 +26,10 @@ pad_sdown =
|
|||
pad_sleft =
|
||||
pad_sright =
|
||||
|
||||
[Core]
|
||||
cpu_core = ## 0: Interpreter (default), 1: FastInterpreter (experimental)
|
||||
gpu_refresh_rate = ## 60 (default), 1024 or 2048 may work better on the FastInterpreter
|
||||
|
||||
[Data Storage]
|
||||
use_virtual_sd =
|
||||
)";
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <QStringList>
|
||||
|
||||
#include "core/settings.h"
|
||||
#include "core/core.h"
|
||||
#include "common/file_util.h"
|
||||
|
||||
#include "config.h"
|
||||
|
@ -64,6 +65,20 @@ void Config::SaveControls() {
|
|||
qt_config->endGroup();
|
||||
}
|
||||
|
||||
void Config::ReadCore() {
|
||||
qt_config->beginGroup("Core");
|
||||
Settings::values.cpu_core = qt_config->value("cpu_core", Core::CPU_Interpreter).toInt();
|
||||
Settings::values.gpu_refresh_rate = qt_config->value("gpu_refresh_rate", 60).toInt();
|
||||
qt_config->endGroup();
|
||||
}
|
||||
|
||||
void Config::SaveCore() {
|
||||
qt_config->beginGroup("Core");
|
||||
qt_config->setValue("cpu_core", Settings::values.cpu_core);
|
||||
qt_config->setValue("gpu_refresh_rate", Settings::values.gpu_refresh_rate);
|
||||
qt_config->endGroup();
|
||||
}
|
||||
|
||||
void Config::ReadData() {
|
||||
qt_config->beginGroup("Data Storage");
|
||||
Settings::values.use_virtual_sd = qt_config->value("use_virtual_sd", true).toBool();
|
||||
|
@ -78,11 +93,13 @@ void Config::SaveData() {
|
|||
|
||||
void Config::Reload() {
|
||||
ReadControls();
|
||||
ReadCore();
|
||||
ReadData();
|
||||
}
|
||||
|
||||
void Config::Save() {
|
||||
SaveControls();
|
||||
SaveCore();
|
||||
SaveData();
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,8 @@ class Config {
|
|||
|
||||
void ReadControls();
|
||||
void SaveControls();
|
||||
|
||||
void ReadCore();
|
||||
void SaveCore();
|
||||
void ReadData();
|
||||
void SaveData();
|
||||
public:
|
||||
|
|
|
@ -5,12 +5,14 @@
|
|||
#include "common/common_types.h"
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/hw/hw.h"
|
||||
|
||||
#include "core/settings.h"
|
||||
#include "core/arm/disassembler/arm_disasm.h"
|
||||
#include "core/arm/interpreter/arm_interpreter.h"
|
||||
|
||||
#include "core/arm/dyncom/arm_dyncom.h"
|
||||
#include "core/hle/hle.h"
|
||||
#include "core/hle/kernel/thread.h"
|
||||
#include "core/hw/hw.h"
|
||||
|
||||
namespace Core {
|
||||
|
||||
|
@ -48,9 +50,18 @@ int Init() {
|
|||
NOTICE_LOG(MASTER_LOG, "initialized OK");
|
||||
|
||||
g_disasm = new ARM_Disasm();
|
||||
g_app_core = new ARM_Interpreter();
|
||||
g_sys_core = new ARM_Interpreter();
|
||||
|
||||
switch (Settings::values.cpu_core) {
|
||||
case CPU_FastInterpreter:
|
||||
g_app_core = new ARM_DynCom();
|
||||
break;
|
||||
case CPU_Interpreter:
|
||||
default:
|
||||
g_app_core = new ARM_Interpreter();
|
||||
break;
|
||||
}
|
||||
|
||||
g_last_ticks = Core::g_app_core->GetTicks();
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -11,6 +11,11 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
enum CPUCore {
|
||||
CPU_Interpreter,
|
||||
CPU_FastInterpreter
|
||||
};
|
||||
|
||||
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
||||
extern ARM_Interface* g_sys_core; ///< ARM11 system (OS) core
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
#include "common/common_types.h"
|
||||
|
||||
#include "core/settings.h"
|
||||
#include "core/core.h"
|
||||
#include "core/mem_map.h"
|
||||
|
||||
|
@ -24,6 +25,9 @@ u32 g_cur_line = 0; ///< Current vertical screen line
|
|||
u64 g_last_line_ticks = 0; ///< CPU tick count from last vertical screen line
|
||||
u64 g_last_frame_ticks = 0; ///< CPU tick count from last frame
|
||||
|
||||
static u32 kFrameCycles = 0; ///< 268MHz / 60 frames per second
|
||||
static u32 kFrameTicks = 0; ///< Approximate number of instructions/frame
|
||||
|
||||
template <typename T>
|
||||
inline void Read(T &var, const u32 raw_addr) {
|
||||
u32 addr = raw_addr - 0x1EF00000;
|
||||
|
@ -214,6 +218,9 @@ void Update() {
|
|||
|
||||
/// Initialize hardware
|
||||
void Init() {
|
||||
kFrameCycles = 268123480 / Settings::values.gpu_refresh_rate;
|
||||
kFrameTicks = kFrameCycles / 3;
|
||||
|
||||
g_cur_line = 0;
|
||||
g_last_frame_ticks = g_last_line_ticks = Core::g_app_core->GetTicks();
|
||||
|
||||
|
|
|
@ -11,9 +11,6 @@
|
|||
|
||||
namespace GPU {
|
||||
|
||||
static const u32 kFrameCycles = 268123480 / 60; ///< 268MHz / 60 frames per second
|
||||
static const u32 kFrameTicks = kFrameCycles / 3; ///< Approximate number of instructions/frame
|
||||
|
||||
// Returns index corresponding to the Regs member labeled by field_name
|
||||
// TODO: Due to Visual studio bug 209229, offsetof does not return constant expressions
|
||||
// when used with array elements (e.g. GPU_REG_INDEX(memory_fill_config[0])).
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
namespace Settings {
|
||||
|
||||
struct Values {
|
||||
// Controls
|
||||
int pad_a_key;
|
||||
int pad_b_key;
|
||||
int pad_x_key;
|
||||
|
@ -25,6 +26,11 @@ struct Values {
|
|||
int pad_sleft_key;
|
||||
int pad_sright_key;
|
||||
|
||||
// Core
|
||||
int cpu_core;
|
||||
int gpu_refresh_rate;
|
||||
|
||||
// Data Storage
|
||||
bool use_virtual_sd;
|
||||
} extern values;
|
||||
|
||||
|
|
Loading…
Reference in a new issue