8 changed files with 162 additions and 0 deletions
-
20src/citra/config.cpp
-
27src/citra_qt/config.cpp
-
2src/citra_qt/config.h
-
2src/input_common/CMakeLists.txt
-
58src/input_common/analog_from_button.cpp
-
31src/input_common/analog_from_button.h
-
18src/input_common/main.cpp
-
4src/input_common/main.h
@ -0,0 +1,58 @@ |
|||
// Copyright 2017 Citra Emulator Project
|
|||
// Licensed under GPLv2 or any later version
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#include "input_common/analog_from_button.h"
|
|||
|
|||
namespace InputCommon { |
|||
|
|||
class Analog final : public Input::AnalogDevice { |
|||
public: |
|||
using Button = std::unique_ptr<Input::ButtonDevice>; |
|||
|
|||
Analog(Button up_, Button down_, Button left_, Button right_, Button modifier_, |
|||
float modifier_scale_) |
|||
: up(std::move(up_)), down(std::move(down_)), left(std::move(left_)), |
|||
right(std::move(right_)), modifier(std::move(modifier_)), |
|||
modifier_scale(modifier_scale_) {} |
|||
|
|||
std::tuple<float, float> GetStatus() const override { |
|||
constexpr float SQRT_HALF = 0.707106781f; |
|||
int x = 0, y = 0; |
|||
|
|||
if (right->GetStatus()) |
|||
++x; |
|||
if (left->GetStatus()) |
|||
--x; |
|||
if (up->GetStatus()) |
|||
++y; |
|||
if (down->GetStatus()) |
|||
--y; |
|||
|
|||
float coef = modifier->GetStatus() ? modifier_scale : 1.0f; |
|||
return std::make_tuple(x * coef * (y == 0 ? 1.0f : SQRT_HALF), |
|||
y * coef * (x == 0 ? 1.0f : SQRT_HALF)); |
|||
} |
|||
|
|||
private: |
|||
Button up; |
|||
Button down; |
|||
Button left; |
|||
Button right; |
|||
Button modifier; |
|||
float modifier_scale; |
|||
}; |
|||
|
|||
std::unique_ptr<Input::AnalogDevice> AnalogFromButton::Create(const Common::ParamPackage& params) { |
|||
const std::string null_engine = Common::ParamPackage{{"engine", "null"}}.Serialize(); |
|||
auto up = Input::CreateDevice<Input::ButtonDevice>(params.Get("up", null_engine)); |
|||
auto down = Input::CreateDevice<Input::ButtonDevice>(params.Get("down", null_engine)); |
|||
auto left = Input::CreateDevice<Input::ButtonDevice>(params.Get("left", null_engine)); |
|||
auto right = Input::CreateDevice<Input::ButtonDevice>(params.Get("right", null_engine)); |
|||
auto modifier = Input::CreateDevice<Input::ButtonDevice>(params.Get("modifier", null_engine)); |
|||
auto modifier_scale = params.Get("modifier_scale", 0.5f); |
|||
return std::make_unique<Analog>(std::move(up), std::move(down), std::move(left), |
|||
std::move(right), std::move(modifier), modifier_scale); |
|||
} |
|||
|
|||
} // namespace InputCommon
|
|||
@ -0,0 +1,31 @@ |
|||
// Copyright 2017 Citra Emulator Project |
|||
// Licensed under GPLv2 or any later version |
|||
// Refer to the license.txt file included. |
|||
|
|||
#pragma once |
|||
|
|||
#include <memory> |
|||
#include "core/frontend/input.h" |
|||
|
|||
namespace InputCommon { |
|||
|
|||
/** |
|||
* An analog device factory that takes direction button devices and combines them into a analog |
|||
* device. |
|||
*/ |
|||
class AnalogFromButton final : public Input::Factory<Input::AnalogDevice> { |
|||
public: |
|||
/** |
|||
* Creates an analog device from direction button devices |
|||
* @param params contains parameters for creating the device: |
|||
* - "up": a serialized ParamPackage for creating a button device for up direction |
|||
* - "down": a serialized ParamPackage for creating a button device for down direction |
|||
* - "left": a serialized ParamPackage for creating a button device for left direction |
|||
* - "right": a serialized ParamPackage for creating a button device for right direction |
|||
* - "modifier": a serialized ParamPackage for creating a button device as the modifier |
|||
* - "modifier_scale": a float for the multiplier the modifier gives to the position |
|||
*/ |
|||
std::unique_ptr<Input::AnalogDevice> Create(const Common::ParamPackage& params) override; |
|||
}; |
|||
|
|||
} // namespace InputCommon |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue