Merge pull request #81322 from johnnyw/android_fix_joypad_trigger_range
Android: Fix joypad trigger value range
This commit is contained in:
commit
e6e9b04aab
|
@ -1095,7 +1095,8 @@ void Input::joy_axis(int p_device, JoyAxis p_axis, float p_value) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
JoyEvent map = _get_mapped_axis_event(map_db[joy.mapping], p_axis, p_value);
|
JoyAxisRange range;
|
||||||
|
JoyEvent map = _get_mapped_axis_event(map_db[joy.mapping], p_axis, p_value, range);
|
||||||
|
|
||||||
if (map.type == TYPE_BUTTON) {
|
if (map.type == TYPE_BUTTON) {
|
||||||
bool pressed = map.value > 0.5;
|
bool pressed = map.value > 0.5;
|
||||||
|
@ -1135,7 +1136,7 @@ void Input::joy_axis(int p_device, JoyAxis p_axis, float p_value) {
|
||||||
if (map.type == TYPE_AXIS) {
|
if (map.type == TYPE_AXIS) {
|
||||||
JoyAxis axis = JoyAxis(map.index);
|
JoyAxis axis = JoyAxis(map.index);
|
||||||
float value = map.value;
|
float value = map.value;
|
||||||
if (axis == JoyAxis::TRIGGER_LEFT || axis == JoyAxis::TRIGGER_RIGHT) {
|
if (range == FULL_AXIS && (axis == JoyAxis::TRIGGER_LEFT || axis == JoyAxis::TRIGGER_RIGHT)) {
|
||||||
// Convert to a value between 0.0f and 1.0f.
|
// Convert to a value between 0.0f and 1.0f.
|
||||||
value = 0.5f + value / 2.0f;
|
value = 0.5f + value / 2.0f;
|
||||||
}
|
}
|
||||||
|
@ -1241,7 +1242,7 @@ Input::JoyEvent Input::_get_mapped_button_event(const JoyDeviceMapping &mapping,
|
||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
Input::JoyEvent Input::_get_mapped_axis_event(const JoyDeviceMapping &mapping, JoyAxis p_axis, float p_value) {
|
Input::JoyEvent Input::_get_mapped_axis_event(const JoyDeviceMapping &mapping, JoyAxis p_axis, float p_value, JoyAxisRange &r_range) {
|
||||||
JoyEvent event;
|
JoyEvent event;
|
||||||
|
|
||||||
for (int i = 0; i < mapping.bindings.size(); i++) {
|
for (int i = 0; i < mapping.bindings.size(); i++) {
|
||||||
|
@ -1287,6 +1288,7 @@ Input::JoyEvent Input::_get_mapped_axis_event(const JoyDeviceMapping &mapping, J
|
||||||
case TYPE_AXIS:
|
case TYPE_AXIS:
|
||||||
event.index = (int)binding.output.axis.axis;
|
event.index = (int)binding.output.axis.axis;
|
||||||
event.value = value;
|
event.value = value;
|
||||||
|
r_range = binding.output.axis.range;
|
||||||
if (binding.output.axis.range != binding.input.axis.range) {
|
if (binding.output.axis.range != binding.input.axis.range) {
|
||||||
switch (binding.output.axis.range) {
|
switch (binding.output.axis.range) {
|
||||||
case POSITIVE_HALF_AXIS:
|
case POSITIVE_HALF_AXIS:
|
||||||
|
|
|
@ -221,7 +221,7 @@ private:
|
||||||
Vector<JoyDeviceMapping> map_db;
|
Vector<JoyDeviceMapping> map_db;
|
||||||
|
|
||||||
JoyEvent _get_mapped_button_event(const JoyDeviceMapping &mapping, JoyButton p_button);
|
JoyEvent _get_mapped_button_event(const JoyDeviceMapping &mapping, JoyButton p_button);
|
||||||
JoyEvent _get_mapped_axis_event(const JoyDeviceMapping &mapping, JoyAxis p_axis, float p_value);
|
JoyEvent _get_mapped_axis_event(const JoyDeviceMapping &mapping, JoyAxis p_axis, float p_value, JoyAxisRange &r_range);
|
||||||
void _get_mapped_hat_events(const JoyDeviceMapping &mapping, HatDir p_hat, JoyEvent r_events[(size_t)HatDir::MAX]);
|
void _get_mapped_hat_events(const JoyDeviceMapping &mapping, HatDir p_hat, JoyEvent r_events[(size_t)HatDir::MAX]);
|
||||||
JoyButton _get_output_button(String output);
|
JoyButton _get_output_button(String output);
|
||||||
JoyAxis _get_output_axis(String output);
|
JoyAxis _get_output_axis(String output);
|
||||||
|
|
Loading…
Reference in New Issue