Rev 4236 | Rev 4285 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3923 | svoboda | 1 | /* |
| 2 | * Copyright (c) 2009 Jiri Svoboda |
||
| 3 | * All rights reserved. |
||
| 4 | * |
||
| 5 | * Redistribution and use in source and binary forms, with or without |
||
| 6 | * modification, are permitted provided that the following conditions |
||
| 7 | * are met: |
||
| 8 | * |
||
| 9 | * - Redistributions of source code must retain the above copyright |
||
| 10 | * notice, this list of conditions and the following disclaimer. |
||
| 11 | * - Redistributions in binary form must reproduce the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer in the |
||
| 13 | * documentation and/or other materials provided with the distribution. |
||
| 14 | * - The name of the author may not be used to endorse or promote products |
||
| 15 | * derived from this software without specific prior written permission. |
||
| 16 | * |
||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | */ |
||
| 28 | |||
| 29 | /** @addtogroup kbd |
||
| 30 | * @brief US QWERTY leyout. |
||
| 31 | * @{ |
||
| 32 | */ |
||
| 33 | |||
| 34 | #include <kbd.h> |
||
| 35 | #include <kbd/kbd.h> |
||
| 36 | #include <kbd/keycode.h> |
||
| 37 | #include <layout.h> |
||
| 38 | |||
| 4240 | svoboda | 39 | static wchar_t layout_parse_ev(kbd_event_t *ev); |
| 40 | |||
| 41 | layout_op_t us_qwerty_op = { |
||
| 42 | layout_parse_ev |
||
| 43 | }; |
||
| 44 | |||
| 4236 | svoboda | 45 | static wchar_t map_lcase[] = { |
| 3923 | svoboda | 46 | [KC_Q] = 'q', |
| 47 | [KC_W] = 'w', |
||
| 48 | [KC_E] = 'e', |
||
| 49 | [KC_R] = 'r', |
||
| 50 | [KC_T] = 't', |
||
| 51 | [KC_Y] = 'y', |
||
| 52 | [KC_U] = 'u', |
||
| 53 | [KC_I] = 'i', |
||
| 54 | [KC_O] = 'o', |
||
| 55 | [KC_P] = 'p', |
||
| 56 | |||
| 57 | [KC_A] = 'a', |
||
| 58 | [KC_S] = 's', |
||
| 59 | [KC_D] = 'd', |
||
| 60 | [KC_F] = 'f', |
||
| 61 | [KC_G] = 'g', |
||
| 62 | [KC_H] = 'h', |
||
| 63 | [KC_J] = 'j', |
||
| 64 | [KC_K] = 'k', |
||
| 65 | [KC_L] = 'l', |
||
| 66 | |||
| 67 | [KC_Z] = 'z', |
||
| 68 | [KC_X] = 'x', |
||
| 69 | [KC_C] = 'c', |
||
| 70 | [KC_V] = 'v', |
||
| 71 | [KC_B] = 'b', |
||
| 72 | [KC_N] = 'n', |
||
| 73 | [KC_M] = 'm', |
||
| 3933 | svoboda | 74 | }; |
| 3923 | svoboda | 75 | |
| 4236 | svoboda | 76 | static wchar_t map_ucase[] = { |
| 3933 | svoboda | 77 | [KC_Q] = 'Q', |
| 78 | [KC_W] = 'W', |
||
| 79 | [KC_E] = 'E', |
||
| 80 | [KC_R] = 'R', |
||
| 81 | [KC_T] = 'T', |
||
| 82 | [KC_Y] = 'Y', |
||
| 83 | [KC_U] = 'U', |
||
| 84 | [KC_I] = 'I', |
||
| 85 | [KC_O] = 'O', |
||
| 86 | [KC_P] = 'P', |
||
| 87 | |||
| 88 | [KC_A] = 'A', |
||
| 89 | [KC_S] = 'S', |
||
| 90 | [KC_D] = 'D', |
||
| 91 | [KC_F] = 'F', |
||
| 92 | [KC_G] = 'G', |
||
| 93 | [KC_H] = 'H', |
||
| 94 | [KC_J] = 'J', |
||
| 95 | [KC_K] = 'K', |
||
| 96 | [KC_L] = 'L', |
||
| 97 | |||
| 98 | [KC_Z] = 'Z', |
||
| 99 | [KC_X] = 'X', |
||
| 100 | [KC_C] = 'C', |
||
| 101 | [KC_V] = 'V', |
||
| 102 | [KC_B] = 'B', |
||
| 103 | [KC_N] = 'N', |
||
| 104 | [KC_M] = 'M', |
||
| 105 | }; |
||
| 106 | |||
| 4236 | svoboda | 107 | static wchar_t map_not_shifted[] = { |
| 3933 | svoboda | 108 | [KC_BACKTICK] = '`', |
| 109 | |||
| 110 | [KC_1] = '1', |
||
| 111 | [KC_2] = '2', |
||
| 112 | [KC_3] = '3', |
||
| 113 | [KC_4] = '4', |
||
| 114 | [KC_5] = '5', |
||
| 115 | [KC_6] = '6', |
||
| 116 | [KC_7] = '7', |
||
| 117 | [KC_8] = '8', |
||
| 118 | [KC_9] = '9', |
||
| 119 | [KC_0] = '0', |
||
| 120 | |||
| 121 | [KC_MINUS] = '-', |
||
| 122 | [KC_EQUALS] = '=', |
||
| 123 | |||
| 124 | [KC_LBRACKET] = '[', |
||
| 125 | [KC_RBRACKET] = ']', |
||
| 126 | |||
| 127 | [KC_SEMICOLON] = ';', |
||
| 128 | [KC_QUOTE] = '\'', |
||
| 129 | [KC_BACKSLASH] = '\\', |
||
| 130 | |||
| 3923 | svoboda | 131 | [KC_COMMA] = ',', |
| 132 | [KC_PERIOD] = '.', |
||
| 133 | [KC_SLASH] = '/', |
||
| 3933 | svoboda | 134 | }; |
| 3923 | svoboda | 135 | |
| 4236 | svoboda | 136 | static wchar_t map_shifted[] = { |
| 3933 | svoboda | 137 | [KC_BACKTICK] = '~', |
| 138 | |||
| 139 | [KC_1] = '!', |
||
| 140 | [KC_2] = '@', |
||
| 141 | [KC_3] = '#', |
||
| 142 | [KC_4] = '$', |
||
| 143 | [KC_5] = '%', |
||
| 144 | [KC_6] = '^', |
||
| 145 | [KC_7] = '&', |
||
| 146 | [KC_8] = '*', |
||
| 147 | [KC_9] = '(', |
||
| 148 | [KC_0] = ')', |
||
| 149 | |||
| 150 | [KC_MINUS] = '_', |
||
| 151 | [KC_EQUALS] = '+', |
||
| 152 | |||
| 153 | [KC_LBRACKET] = '{', |
||
| 154 | [KC_RBRACKET] = '}', |
||
| 155 | |||
| 156 | [KC_SEMICOLON] = ':', |
||
| 157 | [KC_QUOTE] = '"', |
||
| 158 | [KC_BACKSLASH] = '|', |
||
| 159 | |||
| 160 | [KC_COMMA] = '<', |
||
| 161 | [KC_PERIOD] = '>', |
||
| 162 | [KC_SLASH] = '?', |
||
| 163 | }; |
||
| 164 | |||
| 4236 | svoboda | 165 | static wchar_t map_neutral[] = { |
| 3933 | svoboda | 166 | [KC_BACKSPACE] = '\b', |
| 167 | [KC_TAB] = '\t', |
||
| 168 | [KC_ENTER] = '\n', |
||
| 3942 | svoboda | 169 | [KC_SPACE] = ' ', |
| 170 | |||
| 171 | [KC_NSLASH] = '/', |
||
| 172 | [KC_NTIMES] = '*', |
||
| 173 | [KC_NMINUS] = '-', |
||
| 174 | [KC_NPLUS] = '+', |
||
| 175 | [KC_NENTER] = '\n' |
||
| 3923 | svoboda | 176 | }; |
| 177 | |||
| 4236 | svoboda | 178 | static wchar_t map_numeric[] = { |
| 3942 | svoboda | 179 | [KC_N7] = '7', |
| 180 | [KC_N8] = '8', |
||
| 181 | [KC_N9] = '9', |
||
| 182 | [KC_N4] = '4', |
||
| 183 | [KC_N5] = '5', |
||
| 184 | [KC_N6] = '6', |
||
| 185 | [KC_N1] = '1', |
||
| 186 | [KC_N2] = '2', |
||
| 187 | [KC_N3] = '3', |
||
| 188 | |||
| 189 | [KC_N0] = '0', |
||
| 190 | [KC_NPERIOD] = '.' |
||
| 191 | }; |
||
| 192 | |||
| 4236 | svoboda | 193 | static wchar_t translate(unsigned int key, wchar_t *map, size_t map_length) |
| 3933 | svoboda | 194 | { |
| 4236 | svoboda | 195 | if (key >= map_length) |
| 196 | return 0; |
||
| 197 | return map[key]; |
||
| 3933 | svoboda | 198 | } |
| 199 | |||
| 4240 | svoboda | 200 | static wchar_t layout_parse_ev(kbd_event_t *ev) |
| 3923 | svoboda | 201 | { |
| 4236 | svoboda | 202 | wchar_t c; |
| 3933 | svoboda | 203 | |
| 204 | /* Produce no characters when Ctrl or Alt is pressed. */ |
||
| 205 | if ((ev->mods & (KM_CTRL | KM_ALT)) != 0) |
||
| 3923 | svoboda | 206 | return 0; |
| 207 | |||
| 4236 | svoboda | 208 | c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(wchar_t)); |
| 209 | if (c != 0) |
||
| 210 | return c; |
||
| 3933 | svoboda | 211 | |
| 212 | if (((ev->mods & KM_SHIFT) != 0) ^ ((ev->mods & KM_CAPS_LOCK) != 0)) |
||
| 4236 | svoboda | 213 | c = translate(ev->key, map_ucase, sizeof(map_ucase) / sizeof(wchar_t)); |
| 3933 | svoboda | 214 | else |
| 4236 | svoboda | 215 | c = translate(ev->key, map_lcase, sizeof(map_lcase) / sizeof(wchar_t)); |
| 3933 | svoboda | 216 | |
| 4236 | svoboda | 217 | if (c != 0) |
| 218 | return c; |
||
| 3933 | svoboda | 219 | |
| 220 | if ((ev->mods & KM_SHIFT) != 0) |
||
| 4236 | svoboda | 221 | c = translate(ev->key, map_shifted, sizeof(map_shifted) / sizeof(wchar_t)); |
| 3933 | svoboda | 222 | else |
| 4236 | svoboda | 223 | c = translate(ev->key, map_not_shifted, sizeof(map_not_shifted) / sizeof(wchar_t)); |
| 3933 | svoboda | 224 | |
| 4236 | svoboda | 225 | if (c != 0) |
| 226 | return c; |
||
| 3933 | svoboda | 227 | |
| 3942 | svoboda | 228 | if ((ev->mods & KM_NUM_LOCK) != 0) |
| 4236 | svoboda | 229 | c = translate(ev->key, map_numeric, sizeof(map_numeric) / sizeof(wchar_t)); |
| 3942 | svoboda | 230 | else |
| 231 | c = 0; |
||
| 232 | |||
| 233 | return c; |
||
| 3923 | svoboda | 234 | } |
| 235 | |||
| 236 | /** |
||
| 237 | * @} |
||
| 238 | */ |