configure_input_player_widget: Avoid nontrivial copies where applicable
Previously a function was copying an array of 20 std::string instances by value.
This commit is contained in:
parent
2e32ab4e0b
commit
5c7c212f61
|
@ -37,7 +37,8 @@ void PlayerControlPreview::SetPlayerInput(std::size_t index, const ButtonParam&
|
||||||
Input::CreateDevice<Input::AnalogDevice>);
|
Input::CreateDevice<Input::AnalogDevice>);
|
||||||
UpdateColors();
|
UpdateColors();
|
||||||
}
|
}
|
||||||
void PlayerControlPreview::SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw buttons_,
|
void PlayerControlPreview::SetPlayerInputRaw(std::size_t index,
|
||||||
|
const Settings::ButtonsRaw& buttons_,
|
||||||
Settings::AnalogsRaw analogs_) {
|
Settings::AnalogsRaw analogs_) {
|
||||||
player_index = index;
|
player_index = index;
|
||||||
std::transform(buttons_.begin() + Settings::NativeButton::BUTTON_HID_BEGIN,
|
std::transform(buttons_.begin() + Settings::NativeButton::BUTTON_HID_BEGIN,
|
||||||
|
@ -2323,7 +2324,7 @@ void PlayerControlPreview::DrawGCJoystick(QPainter& p, const QPointF center, boo
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlayerControlPreview::DrawRawJoystick(QPainter& p, const QPointF center, const QPointF value,
|
void PlayerControlPreview::DrawRawJoystick(QPainter& p, const QPointF center, const QPointF value,
|
||||||
const Input::AnalogProperties properties) {
|
const Input::AnalogProperties& properties) {
|
||||||
constexpr float size = 45.0f;
|
constexpr float size = 45.0f;
|
||||||
const float range = size * properties.range;
|
const float range = size * properties.range;
|
||||||
const float deadzone = size * properties.deadzone;
|
const float deadzone = size * properties.deadzone;
|
||||||
|
|
|
@ -25,7 +25,7 @@ public:
|
||||||
|
|
||||||
void SetPlayerInput(std::size_t index, const ButtonParam& buttons_param,
|
void SetPlayerInput(std::size_t index, const ButtonParam& buttons_param,
|
||||||
const AnalogParam& analogs_param);
|
const AnalogParam& analogs_param);
|
||||||
void SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw buttons_,
|
void SetPlayerInputRaw(std::size_t index, const Settings::ButtonsRaw& buttons_,
|
||||||
Settings::AnalogsRaw analogs_);
|
Settings::AnalogsRaw analogs_);
|
||||||
void SetConnectedStatus(bool checked);
|
void SetConnectedStatus(bool checked);
|
||||||
void SetControllerType(Settings::ControllerType type);
|
void SetControllerType(Settings::ControllerType type);
|
||||||
|
@ -138,8 +138,8 @@ private:
|
||||||
// Draw joystick functions
|
// Draw joystick functions
|
||||||
void DrawJoystick(QPainter& p, QPointF center, float size, bool pressed);
|
void DrawJoystick(QPainter& p, QPointF center, float size, bool pressed);
|
||||||
void DrawJoystickSideview(QPainter& p, QPointF center, float angle, float size, bool pressed);
|
void DrawJoystickSideview(QPainter& p, QPointF center, float angle, float size, bool pressed);
|
||||||
void DrawRawJoystick(QPainter& p, QPointF center, const QPointF value,
|
void DrawRawJoystick(QPainter& p, QPointF center, QPointF value,
|
||||||
const Input::AnalogProperties properties);
|
const Input::AnalogProperties& properties);
|
||||||
void DrawProJoystick(QPainter& p, QPointF center, QPointF offset, float scalar, bool pressed);
|
void DrawProJoystick(QPainter& p, QPointF center, QPointF offset, float scalar, bool pressed);
|
||||||
void DrawGCJoystick(QPainter& p, QPointF center, bool pressed);
|
void DrawGCJoystick(QPainter& p, QPointF center, bool pressed);
|
||||||
|
|
||||||
|
|
Reference in New Issue