diff options
author | Tarek Soliman | 2012-02-09 01:26:11 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-12 13:28:13 -0600 |
commit | 52da780fbc10200b91d92e7cd04932b101c7539b (patch) | |
tree | 6f7ace246c4a711ec760c35d102492e0c3da75d3 /backends/keymapper | |
parent | 0ba3335674dcd88d34d1d2ab8453658191d31c38 (diff) | |
download | scummvm-rg350-52da780fbc10200b91d92e7cd04932b101c7539b.tar.gz scummvm-rg350-52da780fbc10200b91d92e7cd04932b101c7539b.tar.bz2 scummvm-rg350-52da780fbc10200b91d92e7cd04932b101c7539b.zip |
KEYMAPPER: Refactor HardwareKeySet generation
Diffstat (limited to 'backends/keymapper')
-rw-r--r-- | backends/keymapper/hardware-key.h | 66 |
1 files changed, 64 insertions, 2 deletions
diff --git a/backends/keymapper/hardware-key.h b/backends/keymapper/hardware-key.h index 32df042525..713b086791 100644 --- a/backends/keymapper/hardware-key.h +++ b/backends/keymapper/hardware-key.h @@ -32,7 +32,6 @@ namespace Common { - #define HWKEY_ID_SIZE (30) /** @@ -62,6 +61,27 @@ struct HardwareKey { } }; +/** + * Entry in a static table of available non-modifier keys + */ +struct KeyTableEntry { + const char *hwId; + KeyCode keycode; + uint16 ascii; + const char *desc; + KeyType preferredAction; + bool shiftable; +}; + +/** + * Entry in a static table of available key modifiers + */ +struct ModifierTableEntry { + byte flag; + const char *id; + const char *desc; + bool shiftable; +}; /** * Simple class to encapsulate a device's set of HardwareKeys. @@ -71,6 +91,17 @@ struct HardwareKey { class HardwareKeySet { public: + /** + * Add hardware keys to the set out of key and modifier tables. + * @param keys table of available keys + * @param modifiers table of available modifiers + */ + HardwareKeySet(const KeyTableEntry keys[], const ModifierTableEntry modifiers[]) { + addHardwareKeys(keys, modifiers); + } + + HardwareKeySet() { } + virtual ~HardwareKeySet() { List<const HardwareKey*>::const_iterator it; @@ -111,6 +142,38 @@ public: return _keys.size(); } + /** + * Add hardware keys to the set out of key and modifier tables. + * @param keys table of available keys + * @param modifiers table of available modifiers + */ + void addHardwareKeys(const KeyTableEntry keys[], const ModifierTableEntry modifiers[]) { + const KeyTableEntry *key; + const ModifierTableEntry *mod; + char fullKeyId[50]; + char fullKeyDesc[100]; + uint16 ascii; + + for (mod = modifiers; mod->id; mod++) { + for (key = keys; key->hwId; key++) { + ascii = key->ascii; + + if (mod->shiftable && key->shiftable) { + snprintf(fullKeyId, 50, "%s%c", mod->id, toupper(key->hwId[0])); + snprintf(fullKeyDesc, 100, "%s%c", mod->desc, toupper(key->desc[0])); + ascii = toupper(key->ascii); + } else if (mod->shiftable) { + snprintf(fullKeyId, 50, "S+%s%s", mod->id, key->hwId); + snprintf(fullKeyDesc, 100, "Shift+%s%s", mod->desc, key->desc); + } else { + snprintf(fullKeyId, 50, "%s%s", mod->id, key->hwId); + snprintf(fullKeyDesc, 100, "%s%s", mod->desc, key->desc); + } + + addHardwareKey(new HardwareKey(fullKeyId, KeyState(key->keycode, ascii, mod->flag), fullKeyDesc, key->preferredAction )); + } + } + } private: @@ -128,7 +191,6 @@ private: List<const HardwareKey*> _keys; }; - } // End of namespace Common #endif // #ifdef ENABLE_KEYMAPPER |