|
@@ -1,15 +1,72 @@
|
|
|
-
|
|
|
-#include <iostream>*/
|
|
|
+#include <iostream>
|
|
|
|
|
|
#include "input/Controller.h"
|
|
|
|
|
|
-
|
|
|
-}*/
|
|
|
+Controller::Axis::Axis() : positive(0), negative(0) {
|
|
|
+}
|
|
|
+
|
|
|
+Controller::Controller() : keyToButton(0), gamepadToButton(0) {
|
|
|
+}
|
|
|
+
|
|
|
+bool Controller::mapKey(int key, int button) {
|
|
|
+ if(key < 0 || key >= keyToButton.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ button++;
|
|
|
+ if(button < 0 || button >= buttons.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ keyToButton[key] = button;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+bool Controller::mapGamepad(int gamepad, int button) {
|
|
|
+ if(gamepad < 0 || gamepad >= gamepadToButton.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ button++;
|
|
|
+ if(button < 0 || button >= buttons.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ gamepadToButton[gamepad] = button;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+bool Controller::mapAxis(int axis, int positiveButton, int negativeButton) {
|
|
|
+ if(axis < 0 || axis >= axisToButton.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ positiveButton++;
|
|
|
+ if(positiveButton < 0 || positiveButton >= buttons.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ negativeButton++;
|
|
|
+ if(negativeButton < 0 || negativeButton >= buttons.getLength()) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ axisToButton[axis].positive = positiveButton;
|
|
|
+ axisToButton[axis].negative = negativeButton;
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+void Controller::press(int key) {
|
|
|
+ if(key < 0 || key >= keyToButton.getLength()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ buttons[keyToButton[key]].press();
|
|
|
+}
|
|
|
|
|
|
-Controller::Controller() {
|
|
|
+void Controller::release(int key) {
|
|
|
+ if(key < 0 || key >= keyToButton.getLength()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ buttons[keyToButton[key]].release();
|
|
|
}
|
|
|
|
|
|
void Controller::tick() {
|
|
|
+ for(Button& b : buttons) {
|
|
|
+ b.tick();
|
|
|
+ }
|
|
|
|
|
|
std::cout << "cannot find any controller - resetting buttons\n";
|
|
|
reset();
|
|
@@ -64,46 +121,33 @@ void Controller::increment(uint button, bool notReleased) {
|
|
|
buttons[button].justReleased = (buttons[button].downTime > 0 && !notReleased && !buttons[button].justReleased);
|
|
|
bool b = notReleased || buttons[button].justReleased;
|
|
|
buttons[button].downTime = buttons[button].downTime * b + b;
|
|
|
-}
|
|
|
+}*/
|
|
|
|
|
|
-uint Controller::getButtonAmount() const {
|
|
|
+int Controller::getButtonAmount() const {
|
|
|
return buttons.getLength();
|
|
|
}
|
|
|
|
|
|
-const char* Controller::getName(uint button) const {
|
|
|
- static constexpr const char* buttonNames[] = {
|
|
|
- "A", "B", "X", "Y", "L", "R", "Select", "Start", "Left", "Right", "Up", "Down"
|
|
|
+const char* Controller::getName(int button) const {
|
|
|
+ static constexpr const char* buttonNames[BUTTON_AMOUNT] = {
|
|
|
+ "Unknown", "A", "B", "X", "Y", "L", "R", "Start", "Select", "Left", "Right", "Up", "Down"
|
|
|
};
|
|
|
- return buttonNames[button];
|
|
|
-}
|
|
|
-
|
|
|
-uint Controller::getDownTime(uint button) const {
|
|
|
- return buttons[button].downTime;
|
|
|
-}
|
|
|
-
|
|
|
-bool Controller::isDown(uint button) const {
|
|
|
- return buttons[button].downTime > 0;
|
|
|
-}
|
|
|
-
|
|
|
-bool Controller::wasReleased(uint button) const {
|
|
|
- return buttons[button].justReleased;
|
|
|
+ return buttonNames[(button + 1) & getRangeMask(button + 1)];
|
|
|
}
|
|
|
- */
|
|
|
|
|
|
bool Controller::isDown(int button) const {
|
|
|
- return buttons[(button + 1) & getRangeMask(button)].isDown();
|
|
|
+ return buttons[(button + 1) & getRangeMask(button + 1)].isDown();
|
|
|
}
|
|
|
|
|
|
int Controller::getDownTime(int button) const {
|
|
|
- return buttons[(button + 1) & getRangeMask(button)].getDownTime();
|
|
|
+ return buttons[(button + 1) & getRangeMask(button + 1)].getDownTime();
|
|
|
}
|
|
|
|
|
|
bool Controller::isUp(int button) const {
|
|
|
- return buttons[(button + 1) & getRangeMask(button)].isUp();
|
|
|
+ return buttons[(button + 1) & getRangeMask(button + 1)].isUp();
|
|
|
}
|
|
|
|
|
|
int Controller::getUpTime(int button) const {
|
|
|
- return buttons[(button + 1) & getRangeMask(button)].getUpTime();
|
|
|
+ return buttons[(button + 1) & getRangeMask(button + 1)].getUpTime();
|
|
|
}
|
|
|
|
|
|
int Controller::getRangeMask(int button) const {
|