/[rdesktop]/sourceforge.net/trunk/rdesktop/xkeymap.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/xkeymap.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 50 by matthewc, Sat Apr 20 09:41:03 2002 UTC revision 123 by matthewc, Sat Sep 14 13:47:24 2002 UTC
# Line 23  Line 23 
23  #include <stdio.h>  #include <stdio.h>
24  #include <stdlib.h>  #include <stdlib.h>
25  #include <string.h>  #include <string.h>
26    #include <ctype.h>
27  #include <limits.h>  #include <limits.h>
28  #include "rdesktop.h"  #include "rdesktop.h"
29    #include "scancodes.h"
30    
31  #define KEYMAP_SIZE 4096  #define KEYMAP_SIZE 4096
32  #define KEYMAP_MASK (KEYMAP_SIZE - 1)  #define KEYMAP_MASK (KEYMAP_SIZE - 1)
33    #define KEYMAP_MAX_LINE_LENGTH 80
34    
35  extern Display *display;  extern Display *display;
36  extern char keymapname[16];  extern char keymapname[16];
37  extern int keylayout;  extern int keylayout;
38    extern BOOL enable_compose;
39    
40  static uint8 keymap[KEYMAP_SIZE];  static key_translation keymap[KEYMAP_SIZE];
41  static unsigned int min_keycode;  static int min_keycode;
42    static uint16 remote_modifier_state = 0;
43    
44  static BOOL xkeymap_read(char *mapname)  static void update_modifier_state(uint16 modifiers, BOOL pressed);
45    
46    static void
47    add_to_keymap(char *keyname, uint8 scancode, uint16 modifiers, char *mapname)
48    {
49            KeySym keysym;
50    
51            keysym = XStringToKeysym(keyname);
52            if (keysym == NoSymbol)
53            {
54                    error("Bad keysym %s in keymap %s\n", keyname, mapname);
55                    return;
56            }
57    
58            DEBUG_KBD(("Adding translation, keysym=0x%x, scancode=0x%x, "
59                       "modifiers=0x%x\n", (unsigned int) keysym, scancode, modifiers));
60    
61            keymap[keysym & KEYMAP_MASK].scancode = scancode;
62            keymap[keysym & KEYMAP_MASK].modifiers = modifiers;
63    
64            return;
65    }
66    
67    
68    static BOOL
69    xkeymap_read(char *mapname)
70  {  {
71          FILE *fp;          FILE *fp;
72          char line[PATH_MAX], path[PATH_MAX];          char line[KEYMAP_MAX_LINE_LENGTH], path[PATH_MAX];
73            unsigned int line_num = 0;
74            unsigned int line_length = 0;
75          char *keyname, *p;          char *keyname, *p;
76          KeySym keysym;          char *line_rest;
77          unsigned char keycode;          uint8 scancode;
78            uint16 modifiers;
79    
80    
81          strcpy(path, KEYMAP_PATH);          strcpy(path, KEYMAP_PATH);
82          strncat(path, mapname, sizeof(path) - sizeof(KEYMAP_PATH));          strncat(path, mapname, sizeof(path) - sizeof(KEYMAP_PATH));
# Line 54  static BOOL xkeymap_read(char *mapname) Line 88  static BOOL xkeymap_read(char *mapname)
88                  return False;                  return False;
89          }          }
90    
91            /* FIXME: More tolerant on white space */
92          while (fgets(line, sizeof(line), fp) != NULL)          while (fgets(line, sizeof(line), fp) != NULL)
93          {          {
94                    line_num++;
95    
96                    /* Replace the \n with \0 */
97                  p = strchr(line, '\n');                  p = strchr(line, '\n');
98                  if (p != NULL)                  if (p != NULL)
99                          *p = 0;                          *p = 0;
100    
101                  keycode = strtol(line, &keyname, 16);                  line_length = strlen(line);
102                  if ((keycode != 0) && (*keyname == ' '))  
103                    /* Completely empty line */
104                    if (strspn(line, " \t\n\r\f\v") == line_length)
105                  {                  {
106                          do                          continue;
107                          {                  }
108                                  keyname++;  
109                                  p = strchr(keyname, ' ');                  /* Include */
110                                  if (p != NULL)                  if (strncmp(line, "include ", 8) == 0)
111                                          *p = 0;                  {
112                            if (!xkeymap_read(line + 8))
113                                    return False;
114                            continue;
115                    }
116    
117                    /* map */
118                    if (strncmp(line, "map ", 4) == 0)
119                    {
120                            keylayout = strtol(line + 4, NULL, 16);
121                            DEBUG_KBD(("Keylayout 0x%x\n", keylayout));
122                            continue;
123                    }
124    
125                                  keysym = XStringToKeysym(keyname);                  /* compose */
126                                  if (keysym == NoSymbol)                  if (strncmp(line, "enable_compose", 15) == 0)
127                                          error("Bad keysym %s in keymap %s\n", keyname, mapname);                  {
128                            DEBUG_KBD(("Enabling compose handling\n"));
129                            enable_compose = True;
130                            continue;
131                    }
132    
133                                  keymap[keysym & KEYMAP_MASK] = keycode;                  /* Comment */
134                                  keyname = p;                  if (line[0] == '#')
135                    {
136                            continue;
137                    }
138    
139                          } while (keyname != NULL);                  /* Normal line */
140                    keyname = line;
141                    p = strchr(line, ' ');
142                    if (p == NULL)
143                    {
144                            error("Bad line %d in keymap %s\n", line_num, mapname);
145                            continue;
146                  }                  }
147                  else if (strncmp(line, "include ", 8) == 0)                  else
148                  {                  {
149                          if (!xkeymap_read(line+8))                          *p = 0;
                                 return False;  
150                  }                  }
151                  else if (strncmp(line, "map ", 4) == 0)  
152                    /* scancode */
153                    p++;
154                    scancode = strtol(p, &line_rest, 16);
155    
156                    /* flags */
157                    /* FIXME: Should allow case-insensitive flag names.
158                       Fix by using lex+yacc... */
159                    modifiers = 0;
160                    if (strstr(line_rest, "altgr"))
161                  {                  {
162                          keylayout = strtol(line+4, NULL, 16);                          MASK_ADD_BITS(modifiers, MapAltGrMask);
163                  }                  }
164                  else if (line[0] != '#')  
165                    if (strstr(line_rest, "shift"))
166                    {
167                            MASK_ADD_BITS(modifiers, MapLeftShiftMask);
168                    }
169    
170                    if (strstr(line_rest, "numlock"))
171                  {                  {
172                          error("Malformed line in keymap %s\n", mapname);                          MASK_ADD_BITS(modifiers, MapNumLockMask);
173                    }
174    
175                    if (strstr(line_rest, "localstate"))
176                    {
177                            MASK_ADD_BITS(modifiers, MapLocalStateMask);
178                    }
179    
180                    if (strstr(line_rest, "inhibit"))
181                    {
182                            MASK_ADD_BITS(modifiers, MapInhibitMask);
183                    }
184    
185                    add_to_keymap(keyname, scancode, modifiers, mapname);
186    
187                    if (strstr(line_rest, "addupper"))
188                    {
189                            /* Automatically add uppercase key, with same modifiers
190                               plus shift */
191                            for (p = keyname; *p; p++)
192                                    *p = toupper(*p);
193                            MASK_ADD_BITS(modifiers, MapLeftShiftMask);
194                            add_to_keymap(keyname, scancode, modifiers, mapname);
195                  }                  }
196          }          }
197    
# Line 98  static BOOL xkeymap_read(char *mapname) Line 199  static BOOL xkeymap_read(char *mapname)
199          return True;          return True;
200  }  }
201    
202  void xkeymap_init(void)  
203    /* Before connecting and creating UI */
204    void
205    xkeymap_init(void)
206  {  {
207          unsigned int max_keycode;          unsigned int max_keycode;
208            int i;
         XDisplayKeycodes(display, &min_keycode, &max_keycode);  
209    
210          if (strcmp(keymapname, "none"))          if (strcmp(keymapname, "none"))
211                  xkeymap_read(keymapname);                  xkeymap_read(keymapname);
212    
213            XDisplayKeycodes(display, &min_keycode, (int *) &max_keycode);
214  }  }
215    
216  uint8 xkeymap_translate_key(unsigned int keysym, unsigned int keycode, uint16 *flags)  /* Handles, for example, multi-scancode keypresses (which is not
217       possible via keymap-files) */
218    BOOL
219    handle_special_keys(KeySym keysym, uint32 ev_time, BOOL pressed)
220  {  {
221          uint8 scancode;          switch (keysym)
   
         scancode = keymap[keysym & KEYMAP_MASK];  
         if (scancode != 0)  
222          {          {
223                  if (scancode & 0x80)                  case XK_Break:  /* toggle full screen */
224                          *flags |= KBD_FLAG_EXT;                          if (pressed && (get_key_state(XK_Alt_L) || get_key_state(XK_Alt_R)))
225                            {
226                                    xwin_toggle_fullscreen();
227                                    return True;
228                            }
229                            break;
230    
231                    case XK_Meta_L: /* Windows keys */
232                    case XK_Super_L:
233                    case XK_Hyper_L:
234                    case XK_Meta_R:
235                    case XK_Super_R:
236                    case XK_Hyper_R:
237                            if (pressed)
238                            {
239                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LCTRL);
240                                    rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_ESC);
241                            }
242                            else
243                            {
244                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_ESC);
245                                    rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LCTRL);
246                            }
247                            return True;
248                            break;
249            }
250            return False;
251    }
252    
253                  return (scancode & 0x7f);  
254    key_translation
255    xkeymap_translate_key(KeySym keysym, unsigned int keycode, unsigned int state)
256    {
257            key_translation tr = { 0, 0 };
258    
259            tr = keymap[keysym & KEYMAP_MASK];
260    
261            if (tr.modifiers & MapInhibitMask)
262            {
263                    DEBUG_KBD(("Inhibiting key\n"));
264                    tr.scancode = 0;
265                    return tr;
266          }          }
267    
268          /* not in keymap, try to interpret the raw scancode */          if (tr.modifiers & MapLocalStateMask)
269            {
270                    /* The modifiers to send for this key should be obtained
271                       from the local state. Currently, only shift is implemented. */
272                    if (state & ShiftMask)
273                    {
274                            tr.modifiers = MapLeftShiftMask;
275                    }
276            }
277    
278          if ((keycode >= min_keycode) && (keycode <= 0x60))          if (tr.scancode != 0)
279                  return (uint8)(keycode - min_keycode);          {
280                    DEBUG_KBD
281                            (("Found key translation, scancode=0x%x, modifiers=0x%x\n",
282                              tr.scancode, tr.modifiers));
283                    return tr;
284            }
285    
286          *flags |= KBD_FLAG_EXT;          fprintf(stderr, "No translation for (keysym 0x%lx, %s)\n", keysym, get_ksname(keysym));
287    
288          switch (keycode)          /* not in keymap, try to interpret the raw scancode */
289            if ((keycode >= min_keycode) && (keycode <= 0x60))
290            {
291                    tr.scancode = keycode - min_keycode;
292                    fprintf(stderr, "Sending guessed scancode 0x%x\n", tr.scancode);
293            }
294            else
295          {          {
296                  case 0x61:      /* home */                  fprintf(stderr, "No good guess for keycode 0x%x found\n", keycode);
                         return 0x47;  
                 case 0x62:      /* up arrow */  
                         return 0x48;  
                 case 0x63:      /* page up */  
                         return 0x49;  
                 case 0x64:      /* left arrow */  
                         return 0x4b;  
                 case 0x66:      /* right arrow */  
                         return 0x4d;  
                 case 0x67:      /* end */  
                         return 0x4f;  
                 case 0x68:      /* down arrow */  
                         return 0x50;  
                 case 0x69:      /* page down */  
                         return 0x51;  
                 case 0x6a:      /* insert */  
                         return 0x52;  
                 case 0x6b:      /* delete */  
                         return 0x53;  
                 case 0x6c:      /* keypad enter */  
                         return 0x1c;  
                 case 0x6d:      /* right ctrl */  
                         return 0x1d;  
                 case 0x6f:      /* ctrl - print screen */  
                         return 0x37;  
                 case 0x70:      /* keypad '/' */  
                         return 0x35;  
                 case 0x71:      /* right alt */  
                         return 0x38;  
                 case 0x72:      /* ctrl break */  
                         return 0x46;  
                 case 0x73:      /* left window key */  
                         return 0x5b;  
                 case 0x74:      /* right window key */  
                         return 0x5c;  
                 case 0x75:      /* menu key */  
                         return 0x5d;  
297          }          }
298    
299          return 0;          return tr;
300  }  }
301    
302  uint16 xkeymap_translate_button(unsigned int button)  uint16
303    xkeymap_translate_button(unsigned int button)
304  {  {
305          switch (button)          switch (button)
306          {          {
307                  case Button1:   /* left */                  case Button1:   /* left */
308                          return MOUSE_FLAG_BUTTON1;                          return MOUSE_FLAG_BUTTON1;
309                  case Button2:   /* middle */                  case Button2:   /* middle */
310                          return MOUSE_FLAG_BUTTON3;                          return MOUSE_FLAG_BUTTON3;
311                  case Button3:   /* right */                  case Button3:   /* right */
312                          return MOUSE_FLAG_BUTTON2;                          return MOUSE_FLAG_BUTTON2;
313                    case Button4:   /* wheel up */
314                            return MOUSE_FLAG_BUTTON4;
315                    case Button5:   /* wheel down */
316                            return MOUSE_FLAG_BUTTON5;
317          }          }
318    
319          return 0;          return 0;
320  }  }
321    
322    char *
323    get_ksname(KeySym keysym)
324    {
325            char *ksname = NULL;
326    
327            if (keysym == NoSymbol)
328                    ksname = "NoSymbol";
329            else if (!(ksname = XKeysymToString(keysym)))
330                    ksname = "(no name)";
331    
332            return ksname;
333    }
334    
335    
336    void
337    ensure_remote_modifiers(uint32 ev_time, key_translation tr)
338    {
339            /* If this key is a modifier, do nothing */
340            switch (tr.scancode)
341            {
342                    case SCANCODE_CHAR_LSHIFT:
343                    case SCANCODE_CHAR_RSHIFT:
344                    case SCANCODE_CHAR_LCTRL:
345                    case SCANCODE_CHAR_RCTRL:
346                    case SCANCODE_CHAR_LALT:
347                    case SCANCODE_CHAR_RALT:
348                    case SCANCODE_CHAR_LWIN:
349                    case SCANCODE_CHAR_RWIN:
350                    case SCANCODE_CHAR_NUMLOCK:
351                            return;
352                    default:
353                            break;
354            }
355    
356            /* Shift */
357            if (MASK_HAS_BITS(tr.modifiers, MapShiftMask)
358                != MASK_HAS_BITS(remote_modifier_state, MapShiftMask))
359            {
360                    /* The remote modifier state is not correct */
361                    if (MASK_HAS_BITS(tr.modifiers, MapShiftMask))
362                    {
363                            /* Needs this modifier. Send down. */
364                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_LSHIFT);
365                    }
366                    else
367                    {
368                            /* Should not use this modifier. Send up. */
369                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_LSHIFT);
370                    }
371            }
372    
373            /* AltGr */
374            if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask)
375                != MASK_HAS_BITS(remote_modifier_state, MapAltGrMask))
376            {
377                    /* The remote modifier state is not correct */
378                    if (MASK_HAS_BITS(tr.modifiers, MapAltGrMask))
379                    {
380                            /* Needs this modifier. Send down. */
381                            rdp_send_scancode(ev_time, RDP_KEYPRESS, SCANCODE_CHAR_RALT);
382                    }
383                    else
384                    {
385                            /* Should not use this modifier. Send up. */
386                            rdp_send_scancode(ev_time, RDP_KEYRELEASE, SCANCODE_CHAR_RALT);
387                    }
388            }
389    
390            /* NumLock */
391            if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask)
392                != MASK_HAS_BITS(remote_modifier_state, MapNumLockMask))
393            {
394                    /* The remote modifier state is not correct */
395                    uint16 new_remote_state = 0;
396    
397                    if (MASK_HAS_BITS(tr.modifiers, MapNumLockMask))
398                    {
399                            DEBUG_KBD(("Remote NumLock state is incorrect, activating NumLock.\n"));
400                            new_remote_state |= KBD_FLAG_NUMLOCK;
401                    }
402                    else
403                    {
404                            DEBUG_KBD(("Remote NumLock state is incorrect, deactivating NumLock.\n"));
405                    }
406    
407                    rdp_send_input(0, RDP_INPUT_SYNCHRONIZE, 0, new_remote_state, 0);
408                    update_modifier_state(SCANCODE_CHAR_NUMLOCK, True);
409            }
410    }
411    
412    
413    static void
414    update_modifier_state(uint16 modifiers, BOOL pressed)
415    {
416    #ifdef WITH_DEBUG_KBD
417            uint16 old_modifier_state;
418    
419            old_modifier_state = remote_modifier_state;
420    #endif
421    
422            switch (modifiers)
423            {
424                    case SCANCODE_CHAR_LSHIFT:
425                            MASK_CHANGE_BIT(remote_modifier_state, MapLeftShiftMask, pressed);
426                            break;
427                    case SCANCODE_CHAR_RSHIFT:
428                            MASK_CHANGE_BIT(remote_modifier_state, MapRightShiftMask, pressed);
429                            break;
430                    case SCANCODE_CHAR_LCTRL:
431                            MASK_CHANGE_BIT(remote_modifier_state, MapLeftCtrlMask, pressed);
432                            break;
433                    case SCANCODE_CHAR_RCTRL:
434                            MASK_CHANGE_BIT(remote_modifier_state, MapRightCtrlMask, pressed);
435                            break;
436                    case SCANCODE_CHAR_LALT:
437                            MASK_CHANGE_BIT(remote_modifier_state, MapLeftAltMask, pressed);
438                            break;
439                    case SCANCODE_CHAR_RALT:
440                            MASK_CHANGE_BIT(remote_modifier_state, MapRightAltMask, pressed);
441                            break;
442                    case SCANCODE_CHAR_LWIN:
443                            MASK_CHANGE_BIT(remote_modifier_state, MapLeftWinMask, pressed);
444                            break;
445                    case SCANCODE_CHAR_RWIN:
446                            MASK_CHANGE_BIT(remote_modifier_state, MapRightWinMask, pressed);
447                            break;
448                    case SCANCODE_CHAR_NUMLOCK:
449                            /* KeyReleases for NumLocks are sent immediately. Toggle the
450                               modifier state only on Keypress */
451                            if (pressed)
452                            {
453                                    BOOL newNumLockState;
454                                    newNumLockState =
455                                            (MASK_HAS_BITS
456                                             (remote_modifier_state, MapNumLockMask) == False);
457                                    MASK_CHANGE_BIT(remote_modifier_state,
458                                                    MapNumLockMask, newNumLockState);
459                            }
460                            break;
461            }
462    
463    #ifdef WITH_DEBUG_KBD
464            if (old_modifier_state != remote_modifier_state)
465            {
466                    DEBUG_KBD(("Before updating modifier_state:0x%x, pressed=0x%x\n",
467                               old_modifier_state, pressed));
468                    DEBUG_KBD(("After updating modifier_state:0x%x\n", remote_modifier_state));
469            }
470    #endif
471    
472    }
473    
474    /* Send keyboard input */
475    void
476    rdp_send_scancode(uint32 time, uint16 flags, uint16 scancode)
477    {
478            update_modifier_state(scancode, !(flags & RDP_KEYRELEASE));
479    
480            if (scancode & SCANCODE_EXTENDED)
481            {
482                    DEBUG_KBD(("Sending extended scancode=0x%x, flags=0x%x\n",
483                               scancode & ~SCANCODE_EXTENDED, flags));
484                    rdp_send_input(time, RDP_INPUT_SCANCODE, flags | KBD_FLAG_EXT,
485                                   scancode & ~SCANCODE_EXTENDED, 0);
486            }
487            else
488            {
489                    DEBUG_KBD(("Sending scancode=0x%x, flags=0x%x\n", scancode, flags));
490                    rdp_send_input(time, RDP_INPUT_SCANCODE, flags, scancode, 0);
491            }
492    }

Legend:
Removed from v.50  
changed lines
  Added in v.123

  ViewVC Help
Powered by ViewVC 1.1.26