From 9cc92fd2e1dedfae839297738cf75d22293827a0 Mon Sep 17 00:00:00 2001 From: Dario Manesku Date: Tue, 11 Nov 2014 02:27:13 +0100 Subject: [PATCH] Cleanup unused code. --- examples/common/entry/entry.cpp | 104 -------------------------------- examples/common/entry/entry.h | 1 - 2 files changed, 105 deletions(-) diff --git a/examples/common/entry/entry.cpp b/examples/common/entry/entry.cpp index 70a619f95..5b3941d80 100644 --- a/examples/common/entry/entry.cpp +++ b/examples/common/entry/entry.cpp @@ -156,110 +156,6 @@ namespace entry return result; } - char keyToAscii(entry::Key::Enum _key, bool _shiftModifier) - { - static const char s_keyToAscii[entry::Key::Count] = - { - '\0', // None - 0x1b, // Esc - 0x0d, // Return - 0x09, // Tab - 0x20, // Space - 0x08, // Backspace - '\0', // Up - '\0', // Down - '\0', // Left - '\0', // Right - '\0', // PageUp - '\0', // PageDown - '\0', // Home - '\0', // End - '\0', // Print - 0x3d, // Equals - 0x2d, // Minus - '\0', // F1 - '\0', // F2 - '\0', // F3 - '\0', // F4 - '\0', // F5 - '\0', // F6 - '\0', // F7 - '\0', // F8 - '\0', // F9 - '\0', // F10 - '\0', // F11 - '\0', // F12 - 0x30, // NumPad0 - 0x31, // NumPad1 - 0x32, // NumPad2 - 0x33, // NumPad3 - 0x34, // NumPad4 - 0x35, // NumPad5 - 0x36, // NumPad6 - 0x37, // NumPad7 - 0x38, // NumPad8 - 0x39, // NumPad9 - 0x30, // Key0 - 0x31, // Key1 - 0x32, // Key2 - 0x33, // Key3 - 0x34, // Key4 - 0x35, // Key5 - 0x36, // Key6 - 0x37, // Key7 - 0x38, // Key8 - 0x39, // Key9 - 0x61, // KeyA - 0x62, // KeyB - 0x63, // KeyC - 0x64, // KeyD - 0x65, // KeyE - 0x66, // KeyF - 0x67, // KeyG - 0x68, // KeyH - 0x69, // KeyI - 0x6a, // KeyJ - 0x6b, // KeyK - 0x6c, // KeyL - 0x6d, // KeyM - 0x6e, // KeyN - 0x6f, // KeyO - 0x70, // KeyP - 0x71, // KeyQ - 0x72, // KeyR - 0x73, // KeyS - 0x74, // KeyT - 0x75, // KeyU - 0x76, // KeyV - 0x77, // KeyW - 0x78, // KeyX - 0x79, // KeyY - 0x7a, // KeyZ - }; - - char ascii = s_keyToAscii[_key]; - - if (_shiftModifier) - { - // Big letters. - if (ascii >= 'a' && ascii <= 'z') - { - ascii += 'A' - 'a'; - } - // Special cases. - else if ('-' == ascii) - { - ascii = '_'; - } - else if ('=' == ascii) - { - ascii = '+'; - } - } - - return ascii; - } - bool processEvents(uint32_t& _width, uint32_t& _height, uint32_t& _debug, uint32_t& _reset, MouseState* _mouse) { s_debug = _debug; diff --git a/examples/common/entry/entry.h b/examples/common/entry/entry.h index b5325dbb1..f2fc2b320 100644 --- a/examples/common/entry/entry.h +++ b/examples/common/entry/entry.h @@ -155,7 +155,6 @@ namespace entry uint8_t m_buttons[entry::MouseButton::Count]; }; - char keyToAscii(entry::Key::Enum _key, bool _shiftModifier); bool processEvents(uint32_t& _width, uint32_t& _height, uint32_t& _debug, uint32_t& _reset, MouseState* _mouse = NULL); bx::FileReaderI* getFileReader();