From 7dfaad90b505b6625194e316c216ad648b4c6246 Mon Sep 17 00:00:00 2001 From: wwylele Date: Wed, 11 May 2016 10:31:26 +0300 Subject: [PATCH] implement circle pad modifier --- src/citra/config.cpp | 4 +++- src/citra/default_ini.h | 5 +++++ src/citra_qt/config.cpp | 5 ++++- src/common/emu_window.cpp | 14 ++++++++++++-- src/common/emu_window.h | 9 ++++++++- src/core/hle/service/hid/hid.cpp | 3 ++- src/core/hle/service/hid/hid.h | 2 ++ src/core/settings.h | 8 ++++++-- 8 files changed, 42 insertions(+), 8 deletions(-) diff --git a/src/citra/config.cpp b/src/citra/config.cpp index c5cb4fb38..221e142f4 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp @@ -49,7 +49,8 @@ static const std::array defaults = { SDL_SCANCODE_M, SDL_SCANCODE_N, SDL_SCANCODE_B, SDL_SCANCODE_T, SDL_SCANCODE_G, SDL_SCANCODE_F, SDL_SCANCODE_H, SDL_SCANCODE_UP, SDL_SCANCODE_DOWN, SDL_SCANCODE_LEFT, SDL_SCANCODE_RIGHT, - SDL_SCANCODE_I, SDL_SCANCODE_K, SDL_SCANCODE_J, SDL_SCANCODE_L + SDL_SCANCODE_I, SDL_SCANCODE_K, SDL_SCANCODE_J, SDL_SCANCODE_L, + SDL_SCANCODE_D }; void Config::ReadValues() { @@ -58,6 +59,7 @@ void Config::ReadValues() { Settings::values.input_mappings[Settings::NativeInput::All[i]] = sdl2_config->GetInteger("Controls", Settings::NativeInput::Mapping[i], defaults[i]); } + Settings::values.circle_pad_modifier_scale = (float)sdl2_config->GetReal("Controls", "circle_pad_modifier_scale", 0.5); // Core Settings::values.frame_skip = sdl2_config->GetInteger("Core", "frame_skip", 0); diff --git a/src/citra/default_ini.h b/src/citra/default_ini.h index 49126356f..23c7b514a 100644 --- a/src/citra/default_ini.h +++ b/src/citra/default_ini.h @@ -31,6 +31,11 @@ pad_cup = pad_cdown = pad_cleft = pad_cright = +pad_cmodifier = + +# The multiplier to the circle pad radius when modifier is pressed. +# Must be in range of 0.0-1.0. Defaults to 0.5 +circle_pad_modifier_scale = [Core] # The applied frameskip amount. Must be a power of two. diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index b5bb75537..f69d5ca9b 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp @@ -27,7 +27,8 @@ static const std::array defaults = Qt::Key_M, Qt::Key_N, Qt::Key_B, Qt::Key_T, Qt::Key_G, Qt::Key_F, Qt::Key_H, Qt::Key_Up, Qt::Key_Down, Qt::Key_Left, Qt::Key_Right, - Qt::Key_I, Qt::Key_K, Qt::Key_J, Qt::Key_L + Qt::Key_I, Qt::Key_K, Qt::Key_J, Qt::Key_L, + Qt::Key_D }; void Config::ReadValues() { @@ -36,6 +37,7 @@ void Config::ReadValues() { Settings::values.input_mappings[Settings::NativeInput::All[i]] = qt_config->value(QString::fromStdString(Settings::NativeInput::Mapping[i]), defaults[i]).toInt(); } + Settings::values.circle_pad_modifier_scale = qt_config->value("circle_pad_modifier_scale", 0.5).toFloat(); qt_config->endGroup(); qt_config->beginGroup("Core"); @@ -125,6 +127,7 @@ void Config::SaveValues() { qt_config->setValue(QString::fromStdString(Settings::NativeInput::Mapping[i]), Settings::values.input_mappings[Settings::NativeInput::All[i]]); } + qt_config->setValue("circle_pad_modifier_scale", (double)Settings::values.circle_pad_modifier_scale); qt_config->endGroup(); qt_config->beginGroup("Core"); diff --git a/src/common/emu_window.cpp b/src/common/emu_window.cpp index b2807354a..a42203852 100644 --- a/src/common/emu_window.cpp +++ b/src/common/emu_window.cpp @@ -12,11 +12,21 @@ #include "video_core/video_core.h" void EmuWindow::KeyPressed(KeyMap::HostDeviceKey key) { - pad_state.hex |= KeyMap::GetPadKey(key).hex; + auto hex = KeyMap::GetPadKey(key).hex; + if (hex == Service::HID::PAD_C_MODIFIER.hex) { + circle_pad_modifier = true; + } else { + pad_state.hex |= KeyMap::GetPadKey(key).hex; + } } void EmuWindow::KeyReleased(KeyMap::HostDeviceKey key) { - pad_state.hex &= ~KeyMap::GetPadKey(key).hex; + auto hex = KeyMap::GetPadKey(key).hex; + if (hex == Service::HID::PAD_C_MODIFIER.hex) { + circle_pad_modifier = false; + } else { + pad_state.hex &= ~KeyMap::GetPadKey(key).hex; + } } /** diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 610307944..2c2e3b35f 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -138,7 +138,11 @@ public: y *= SQRT_HALF; if (y != 0) x *= SQRT_HALF; - return std::make_tuple(x, y); + if (circle_pad_modifier) { + x *= Settings::values.circle_pad_modifier_scale; + y *= Settings::values.circle_pad_modifier_scale; + } + return std::make_tuple(x, y); } /** @@ -233,6 +237,7 @@ protected: touch_x = 0; touch_y = 0; touch_pressed = false; + circle_pad_modifier = false; } virtual ~EmuWindow() {} @@ -298,4 +303,6 @@ private: std::tuple ClipToTouchScreen(unsigned new_x, unsigned new_y); Service::HID::PadState pad_state; + + bool circle_pad_modifier; ///< True if circle pad modifier is currently pressed, otherwise false }; diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 29e3a494d..15318dbf9 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -43,7 +43,8 @@ const std::array pad_ Service::HID::PAD_START, Service::HID::PAD_SELECT, Service::HID::PAD_NONE, Service::HID::PAD_UP, Service::HID::PAD_DOWN, Service::HID::PAD_LEFT, Service::HID::PAD_RIGHT, Service::HID::PAD_CIRCLE_UP, Service::HID::PAD_CIRCLE_DOWN, Service::HID::PAD_CIRCLE_LEFT, Service::HID::PAD_CIRCLE_RIGHT, - Service::HID::PAD_C_UP, Service::HID::PAD_C_DOWN, Service::HID::PAD_C_LEFT, Service::HID::PAD_C_RIGHT + Service::HID::PAD_C_UP, Service::HID::PAD_C_DOWN, Service::HID::PAD_C_LEFT, Service::HID::PAD_C_RIGHT, + Service::HID::PAD_C_MODIFIER , // place holder for circle pad modifier }}; void Update() { diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index 170d19ea8..8bd8dc4f2 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -215,6 +215,8 @@ const PadState PAD_CIRCLE_LEFT = {{1u << 29}}; const PadState PAD_CIRCLE_UP = {{1u << 30}}; const PadState PAD_CIRCLE_DOWN = {{1u << 31}}; +const PadState PAD_C_MODIFIER = {{1u << 23}}; // An intermediate value only used by citra + extern const std::array pad_mapping; diff --git a/src/core/settings.h b/src/core/settings.h index ce2a31164..9b202f4dd 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -19,6 +19,7 @@ enum Values { DUP, DDOWN, DLEFT, DRIGHT, SUP, SDOWN, SLEFT, SRIGHT, CUP, CDOWN, CLEFT, CRIGHT, + CMODIFIER, NUM_INPUTS }; static const std::array Mapping = {{ @@ -27,7 +28,8 @@ static const std::array Mapping = {{ "pad_start", "pad_select", "pad_home", "pad_dup", "pad_ddown", "pad_dleft", "pad_dright", "pad_sup", "pad_sdown", "pad_sleft", "pad_sright", - "pad_cup", "pad_cdown", "pad_cleft", "pad_cright" + "pad_cup", "pad_cdown", "pad_cleft", "pad_cright", + "pad_cmodifier" }}; static const std::array All = {{ A, B, X, Y, @@ -35,7 +37,8 @@ static const std::array All = {{ START, SELECT, HOME, DUP, DDOWN, DLEFT, DRIGHT, SUP, SDOWN, SLEFT, SRIGHT, - CUP, CDOWN, CLEFT, CRIGHT + CUP, CDOWN, CLEFT, CRIGHT, + CMODIFIER }}; } @@ -43,6 +46,7 @@ static const std::array All = {{ struct Values { // Controls std::array input_mappings; + float circle_pad_modifier_scale; // Core int frame_skip;