1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-07-05 02:38:45 +00:00

Fix controllers not taking any button input with no configs

This commit is contained in:
cathery 2020-03-03 12:58:12 +03:00
parent 1750201216
commit 80a18b89c3

View File

@ -1,8 +1,8 @@
#pragma once #pragma once
#include <cstdint> #include <cstdint>
enum ControllerButton : int8_t enum ControllerButton : uint8_t
{ {
NOT_SET = -1, NOT_SET = 0,
FACE_UP, FACE_UP,
FACE_RIGHT, FACE_RIGHT,
FACE_DOWN, FACE_DOWN,
@ -22,7 +22,7 @@ enum ControllerButton : int8_t
SYNC, SYNC,
GUIDE, GUIDE,
TOUCHPAD, TOUCHPAD,
NUM_CONTROLLERBUTTONS, NUM_CONTROLLERBUTTONS = TOUCHPAD,
}; };
struct NormalizedStick struct NormalizedStick
@ -47,12 +47,12 @@ struct ControllerConfig
{ {
uint8_t leftStickDeadzonePercent{10}; uint8_t leftStickDeadzonePercent{10};
uint8_t rightStickDeadzonePercent{10}; uint8_t rightStickDeadzonePercent{10};
uint16_t leftStickRotationDegrees{0}; uint16_t leftStickRotationDegrees{};
uint16_t rightStickRotationDegrees{0}; uint16_t rightStickRotationDegrees{};
uint8_t triggerDeadzonePercent{0}; uint8_t triggerDeadzonePercent{};
ControllerButton buttons[NUM_CONTROLLERBUTTONS]; ControllerButton buttons[NUM_CONTROLLERBUTTONS]{};
float triggers[2]{0}; float triggers[2]{};
NormalizedStick sticks[2]{0}; NormalizedStick sticks[2]{};
bool swapDPADandLSTICK{false}; bool swapDPADandLSTICK{false};
RGBAColor bodyColor{107, 107, 107, 255}; RGBAColor bodyColor{107, 107, 107, 255};
RGBAColor buttonsColor{0, 0, 0, 255}; RGBAColor buttonsColor{0, 0, 0, 255};