From a54f1804ba735e538d3dd71f843961dc9d13ce48 Mon Sep 17 00:00:00 2001 From: penfold42 Date: Sun, 19 Aug 2018 22:11:36 +1000 Subject: [PATCH] Added options to remap the input push buttons --- options.txt | 6 ++++++ src/InputMappings.cpp | 4 ++-- src/InputMappings.h | 6 ++++++ src/iec_bus.h | 2 ++ src/main.cpp | 8 +++++++- src/options.cpp | 11 +++++++++++ src/options.h | 12 ++++++++++++ 7 files changed, 46 insertions(+), 3 deletions(-) diff --git a/options.txt b/options.txt index 4534551..26fc4af 100644 --- a/options.txt +++ b/options.txt @@ -90,3 +90,9 @@ GraphIEC = 1 //ShowOptions = 0 // display some options on startup screen //IgnoreReset = 0 +// You can remap the physical button functions +//buttonEnter = 0 +//buttonUp = 1 +//buttonDown = 2 +//buttonBack = 3 +//buttonInsert = 4 diff --git a/src/InputMappings.cpp b/src/InputMappings.cpp index 89b9e5e..1c3778d 100644 --- a/src/InputMappings.cpp +++ b/src/InputMappings.cpp @@ -99,12 +99,12 @@ bool InputMappings::CheckButtonsBrowseMode() SetButtonFlag(BACK_FLAG); // edge detection - insertButtonPressed = !IEC_Bus::GetInputButtonReleased(4); + insertButtonPressed = !IEC_Bus::GetInputButtonReleased(INPUT_BUTTON_INSERT); if (insertButtonPressedPrev && !insertButtonPressed) SetButtonFlag(INSERT_FLAG); insertButtonPressedPrev = insertButtonPressed; - enterButtonPressed = !IEC_Bus::GetInputButtonReleased(0); + enterButtonPressed = !IEC_Bus::GetInputButtonReleased(INPUT_BUTTON_ENTER); if (enterButtonPressedPrev && !enterButtonPressed) SetButtonFlag(ENTER_FLAG); enterButtonPressedPrev = enterButtonPressed; diff --git a/src/InputMappings.h b/src/InputMappings.h index 0cfc119..d0a8221 100644 --- a/src/InputMappings.h +++ b/src/InputMappings.h @@ -85,6 +85,12 @@ public: bool CheckButtonsBrowseMode(); void CheckButtonsEmulationMode(); + u8 INPUT_BUTTON_ENTER = 0; + u8 INPUT_BUTTON_UP = 1; + u8 INPUT_BUTTON_DOWN = 2; + u8 INPUT_BUTTON_BACK = 3; + u8 INPUT_BUTTON_INSERT = 4; + void Reset() { keyboardFlags = 0; diff --git a/src/iec_bus.h b/src/iec_bus.h index 965075d..91df8ef 100644 --- a/src/iec_bus.h +++ b/src/iec_bus.h @@ -28,11 +28,13 @@ #define INPUT_BUTTON_DEBOUNCE_THRESHOLD 20000 #define INPUT_BUTTON_REPEAT_THRESHOLD 460000 +/* moved to variables in InputMapping #define INPUT_BUTTON_ENTER 0 #define INPUT_BUTTON_UP 1 #define INPUT_BUTTON_DOWN 2 #define INPUT_BUTTON_BACK 3 #define INPUT_BUTTON_INSERT 4 +*/ // DIN ATN is inverted and then connected to pb7 and ca1 // - also input to xor with ATNAout pb4 diff --git a/src/main.cpp b/src/main.cpp index adc0eae..66b2e89 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1348,9 +1348,15 @@ extern "C" // DEBUG_LOG("Mouse found\r\n"); Keyboard::Instance(); - InputMappings::Instance(); +// InputMappings::Instance(); + InputMappings* inputMappings = InputMappings::Instance(); //USPiMouseRegisterStatusHandler(MouseHandler); + inputMappings->INPUT_BUTTON_ENTER = options.GetButtonEnter(); + inputMappings->INPUT_BUTTON_UP = options.GetButtonUp(); + inputMappings->INPUT_BUTTON_DOWN = options.GetButtonDown(); + inputMappings->INPUT_BUTTON_BACK = options.GetButtonBack(); + inputMappings->INPUT_BUTTON_INSERT = options.GetButtonInsert(); CheckOptions(); diff --git a/src/options.cpp b/src/options.cpp index 6f30db7..c646eb3 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -149,6 +149,12 @@ Options::Options(void) , i2cLcdModel(LCD_UNKNOWN) , scrollHighlightRate(0.125f) , keyboardBrowseLCDScreen(0) + , buttonEnter(0) + , buttonUp(1) + , buttonDown(2) + , buttonBack(3) + , buttonInsert(4) + { autoMountImageName[0] = 0; strcpy(ROMFontName, "chargen"); @@ -228,6 +234,11 @@ void Options::Process(char* buffer) ELSE_CHECK_DECIMAL_OPTION(i2cLcdDimTime) ELSE_CHECK_FLOAT_OPTION(scrollHighlightRate) ELSE_CHECK_DECIMAL_OPTION(keyboardBrowseLCDScreen) + ELSE_CHECK_DECIMAL_OPTION(buttonEnter) + ELSE_CHECK_DECIMAL_OPTION(buttonUp) + ELSE_CHECK_DECIMAL_OPTION(buttonDown) + ELSE_CHECK_DECIMAL_OPTION(buttonBack) + ELSE_CHECK_DECIMAL_OPTION(buttonInsert) else if ((strcasecmp(pOption, "AutoBaseName") == 0)) { strncpy(autoBaseName, pValue, 255); diff --git a/src/options.h b/src/options.h index c860161..c15efb4 100644 --- a/src/options.h +++ b/src/options.h @@ -88,6 +88,12 @@ public: inline float ScrollHighlightRate() const { return scrollHighlightRate; } + inline unsigned int GetButtonEnter() const { return buttonEnter; } + inline unsigned int GetButtonUp() const { return buttonUp; } + inline unsigned int GetButtonDown() const { return buttonDown; } + inline unsigned int GetButtonBack() const { return buttonBack; } + inline unsigned int GetButtonInsert() const { return buttonInsert; } + // Page up and down will jump a different amount based on the maximum number rows displayed. // Perhaps we should use some keyboard modifier to the the other screen? inline unsigned int KeyboardBrowseLCDScreen() const { return keyboardBrowseLCDScreen; } @@ -135,6 +141,12 @@ private: unsigned int keyboardBrowseLCDScreen; + u8 buttonEnter; + u8 buttonUp; + u8 buttonDown; + u8 buttonBack; + u8 buttonInsert; + char starFileName[256]; char C128BootSectorName[256]; char autoBaseName[256];