mirror of
https://github.com/gdsports/keymapper
synced 2024-11-28 12:12:25 -05:00
Fix bug in handling reserved keystrokes
Fix bug where any Ctrl-Shift keystrokes are dropped even if they are not reserved keystrokes. Formatting changes (replaced all tab chars with spaces)
This commit is contained in:
parent
e063ca1adb
commit
f3b325b755
226
keymapper.ino
226
keymapper.ino
@ -18,10 +18,19 @@
|
|||||||
#include "keymapper_game.h"
|
#include "keymapper_game.h"
|
||||||
|
|
||||||
//#define DEBUG
|
//#define DEBUG
|
||||||
|
|
||||||
|
|
||||||
#define modeLED 13
|
#define modeLED 13
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// function definitions
|
||||||
|
bool HandleReservedKeystrokes(uint8_t mod, uint8_t key);
|
||||||
|
void play_word_game(void);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// variable definitions
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
qwerty=0,
|
qwerty=0,
|
||||||
@ -33,6 +42,7 @@ typedef enum
|
|||||||
dvorak
|
dvorak
|
||||||
} KeyboardLayout;
|
} KeyboardLayout;
|
||||||
|
|
||||||
|
// keymap based on the scancodes from 4 to 57, refer to the HID usage table on the meaning of each element
|
||||||
PROGMEM prog_uint8_t qwertyKeymap[] = {4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
PROGMEM prog_uint8_t qwertyKeymap[] = {4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
||||||
PROGMEM prog_uint8_t tarmak1Keymap[] = {4, 5, 6, 7, 13, 9, 10, 11, 12, 17, 8, 15, 16, 14, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
PROGMEM prog_uint8_t tarmak1Keymap[] = {4, 5, 6, 7, 13, 9, 10, 11, 12, 17, 8, 15, 16, 14, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
||||||
PROGMEM prog_uint8_t tarmak2Keymap[] = {4, 5, 6, 7, 9, 23, 13, 11, 12, 17, 8, 15, 16, 14, 18, 19, 20, 21, 22, 10, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
PROGMEM prog_uint8_t tarmak2Keymap[] = {4, 5, 6, 7, 9, 23, 13, 11, 12, 17, 8, 15, 16, 14, 18, 19, 20, 21, 22, 10, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57};
|
||||||
@ -65,6 +75,7 @@ class KbdRptParser : public KeyboardReportParser
|
|||||||
protected:
|
protected:
|
||||||
virtual void OnKeyDown (uint8_t mod, uint8_t key);
|
virtual void OnKeyDown (uint8_t mod, uint8_t key);
|
||||||
virtual void OnKeyUp (uint8_t mod, uint8_t key);
|
virtual void OnKeyUp (uint8_t mod, uint8_t key);
|
||||||
|
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
||||||
};
|
};
|
||||||
|
|
||||||
void KbdRptParser::PrintKey(uint8_t m, uint8_t key)
|
void KbdRptParser::PrintKey(uint8_t m, uint8_t key)
|
||||||
@ -97,57 +108,9 @@ void KbdRptParser::OnKeyDown(uint8_t mod, uint8_t key)
|
|||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Serial.print("DN ");
|
Serial.print("DN ");
|
||||||
PrintKey(mod, key);
|
PrintKey(mod, key);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// check if we are changing layouts
|
if (!HandleReservedKeystrokes(mod, key))
|
||||||
if ((mod & 0x22) && (mod & 0x11)) {
|
|
||||||
switch (key) {
|
|
||||||
case 0x27: // 0
|
|
||||||
currentLayout = qwerty;
|
|
||||||
digitalWrite(modeLED, LOW);
|
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
Serial.print("Current layout: ");
|
|
||||||
Serial.println(currentLayout);
|
|
||||||
|
|
||||||
for (uint8_t i=0; i<54; i++)
|
|
||||||
Serial.println(pgm_read_byte(keymap[currentLayout]+i));
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x1e: // 1
|
|
||||||
currentLayout = tarmak1;
|
|
||||||
digitalWrite(modeLED, HIGH);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x1f: // 2
|
|
||||||
currentLayout = tarmak2;
|
|
||||||
digitalWrite(modeLED, HIGH);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x20: // 3
|
|
||||||
currentLayout = tarmak3;
|
|
||||||
digitalWrite(modeLED, HIGH);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x21: // 4
|
|
||||||
currentLayout = tarmak4;
|
|
||||||
digitalWrite(modeLED, HIGH);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 0x22: // 5
|
|
||||||
currentLayout = colemak;
|
|
||||||
digitalWrite(modeLED, HIGH);
|
|
||||||
break;
|
|
||||||
|
|
||||||
|
|
||||||
case 0x2c: // space bar
|
|
||||||
play_word_game();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
// print the key based on the current layout
|
// print the key based on the current layout
|
||||||
if (key-4 < 54) // transpose of 4 becoz our array starts from 0 but A is 4
|
if (key-4 < 54) // transpose of 4 becoz our array starts from 0 but A is 4
|
||||||
@ -175,21 +138,157 @@ void KbdRptParser::OnKeyUp(uint8_t mod, uint8_t key)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Copy and pasted over from Oleg's library in preparation for next major revision
|
||||||
|
|
||||||
USB Usb;
|
// void KbdRptParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
||||||
//USBHub Hub(&Usb);
|
// {
|
||||||
HIDBoot<HID_PROTOCOL_KEYBOARD> Keyboard2(&Usb);
|
// Serial.println ("This is my own parse function!");
|
||||||
|
|
||||||
uint32_t next_time;
|
// // On error - return
|
||||||
|
// if (buf[2] == 1)
|
||||||
|
// return;
|
||||||
|
|
||||||
KbdRptParser Prs;
|
// KBDINFO *pki = (KBDINFO*)buf;
|
||||||
|
|
||||||
|
// for (uint8_t i=2; i<8; i++)
|
||||||
|
// {
|
||||||
|
// bool down = true;
|
||||||
|
// bool up = true;
|
||||||
|
|
||||||
|
// for (uint8_t j=2; j<8; j++)
|
||||||
|
// {
|
||||||
|
// if (buf[i] == prevState.bInfo[j] && buf[i] != 1) // if at least one of the keys are the same
|
||||||
|
// down = false; // as the previous state, then it could not
|
||||||
|
// // have been pressed again
|
||||||
|
// if (buf[j] == prevState.bInfo[i] && prevState.bInfo[i] != 1) // if any of the keys in the previous
|
||||||
|
// up = false; // is found now, then it has not been
|
||||||
|
// } // released
|
||||||
|
|
||||||
|
// if (down)
|
||||||
|
// {
|
||||||
|
// HandleLockingKeys(hid, buf[i]);
|
||||||
|
// OnKeyDown(*buf, buf[i]);
|
||||||
|
// }
|
||||||
|
// if (up)
|
||||||
|
// {
|
||||||
|
// OnKeyUp(prevState.bInfo[0], prevState.bInfo[i]);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// // handle modifier keys
|
||||||
|
// if ( (buf[0] & 0x01) > (prevState.bInfo[0] & 0x01)) // left CTRL was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe0);
|
||||||
|
// if ( (buf[0] & 0x01) < (prevState.bInfo[0] & 0x01)) // left CTRL was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe0);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x02) > (prevState.bInfo[0] & 0x02)) // left SHIFT was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe1);
|
||||||
|
// if ( (buf[0] & 0x02) < (prevState.bInfo[0] & 0x02)) // left SHIFT was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe1);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x04) > (prevState.bInfo[0] & 0x04)) // left ALT was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe2);
|
||||||
|
// if ( (buf[0] & 0x04) < (prevState.bInfo[0] & 0x04)) // left ALT was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe2);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x08) > (prevState.bInfo[0] & 0x08)) // left GUI was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe3);
|
||||||
|
// if ( (buf[0] & 0x08) < (prevState.bInfo[0] & 0x08)) // left GUI was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe3);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x10) > (prevState.bInfo[0] & 0x10)) // right CTRL was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe4);
|
||||||
|
// if ( (buf[0] & 0x10) < (prevState.bInfo[0] & 0x10)) // right CTRL was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe4);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x20) > (prevState.bInfo[0] & 0x20)) // right SHIFT was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe5);
|
||||||
|
// if ( (buf[0] & 0x20) < (prevState.bInfo[0] & 0x20)) // right SHIFT was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe5);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x40) > (prevState.bInfo[0] & 0x40)) // right ALT was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe6);
|
||||||
|
// if ( (buf[0] & 0x40) < (prevState.bInfo[0] & 0x40)) // right ALT was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe6);
|
||||||
|
|
||||||
|
// if ( (buf[0] & 0x80) > (prevState.bInfo[0] & 0x80)) // right GUI was pressed
|
||||||
|
// OnKeyDown (*buf, 0xe7);
|
||||||
|
// if ( (buf[0] & 0x80) < (prevState.bInfo[0] & 0x80)) // right GUI was release
|
||||||
|
// OnKeyUp (prevState.bInfo[0], 0xe7);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// /*
|
||||||
|
// for (uint8_t i=0; i<8; i++)
|
||||||
|
// prevState.bInfo[i] = buf[i];
|
||||||
|
// */
|
||||||
|
// memcpy(prevState.bInfo, buf, 8); // potentially faster than the loop? code seems to compile smaller also
|
||||||
|
// };
|
||||||
|
|
||||||
|
|
||||||
|
bool HandleReservedKeystrokes(uint8_t mod, uint8_t key) // return true if it is a reserved keystroke
|
||||||
|
{
|
||||||
|
// check if we are changing layouts
|
||||||
|
if ((mod & 0x22) && (mod & 0x11)) { // Shift-Alt keystrokes
|
||||||
|
switch (key) {
|
||||||
|
case 0x27: // 0
|
||||||
|
currentLayout = qwerty;
|
||||||
|
digitalWrite(modeLED, LOW);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x1e: // 1
|
||||||
|
currentLayout = tarmak1;
|
||||||
|
digitalWrite(modeLED, HIGH);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x1f: // 2
|
||||||
|
currentLayout = tarmak2;
|
||||||
|
digitalWrite(modeLED, HIGH);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x20: // 3
|
||||||
|
currentLayout = tarmak3;
|
||||||
|
digitalWrite(modeLED, HIGH);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x21: // 4
|
||||||
|
currentLayout = tarmak4;
|
||||||
|
digitalWrite(modeLED, HIGH);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x22: // 5
|
||||||
|
currentLayout = colemak;
|
||||||
|
digitalWrite(modeLED, HIGH);
|
||||||
|
return true;
|
||||||
|
|
||||||
|
case 0x2c: // space bar
|
||||||
|
play_word_game();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// note that in the current implementation of HandleReservedKeystrokes, this
|
||||||
|
// part of the code will never get called even if DEBUG is defined
|
||||||
|
#ifdef DEBUG
|
||||||
|
Serial.print("Current layout: ");
|
||||||
|
Serial.println(currentLayout);
|
||||||
|
|
||||||
|
for (uint8_t i=0; i<54; i++)
|
||||||
|
Serial.println(pgm_read_byte(keymap[currentLayout]+i));
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return false;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// *******************************
|
// *******************************
|
||||||
// **** WORD GAME!!! ***
|
// **** WORD GAME!!! ***
|
||||||
// *******************************
|
// *******************************
|
||||||
|
|
||||||
void play_word_game()
|
void play_word_game(void)
|
||||||
{
|
{
|
||||||
char buffer[GAME_MAXWORDLENGTH];
|
char buffer[GAME_MAXWORDLENGTH];
|
||||||
char priorityAlphabets[10];
|
char priorityAlphabets[10];
|
||||||
@ -245,6 +344,19 @@ void play_word_game()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
USB Usb;
|
||||||
|
//USBHub Hub(&Usb);
|
||||||
|
HIDBoot<HID_PROTOCOL_KEYBOARD> Keyboard2(&Usb);
|
||||||
|
|
||||||
|
uint32_t next_time;
|
||||||
|
|
||||||
|
KbdRptParser Prs;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void setup()
|
void setup()
|
||||||
{
|
{
|
||||||
randomSeed(analogRead(0));
|
randomSeed(analogRead(0));
|
||||||
|
Loading…
Reference in New Issue
Block a user