Simplify check for Alt-Numpad
Create two new inline functions is_alt_numpad_key(PINPUT_RECORD) and is_alt_numpad_event(PINPUT_RECORD) which contain the actual checks. Call these functions from fhandler_console::read and peek_console for better readability. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
		| @@ -7,7 +7,6 @@ Cygwin license.  Please consult the file "CYGWIN_LICENSE" for | |||||||
| details. */ | details. */ | ||||||
|  |  | ||||||
| #include "winsup.h" | #include "winsup.h" | ||||||
| #include <dinput.h> |  | ||||||
| #include "miscfuncs.h" | #include "miscfuncs.h" | ||||||
| #include <stdio.h> | #include <stdio.h> | ||||||
| #include <stdlib.h> | #include <stdlib.h> | ||||||
| @@ -399,33 +398,16 @@ fhandler_console::read (void *pv, size_t& buflen) | |||||||
| 	      break; | 	      break; | ||||||
| 	    } | 	    } | ||||||
|  |  | ||||||
| #define ich (input_rec.Event.KeyEvent.uChar.AsciiChar) |  | ||||||
| #define wch (input_rec.Event.KeyEvent.uChar.UnicodeChar) | #define wch (input_rec.Event.KeyEvent.uChar.UnicodeChar) | ||||||
|  |  | ||||||
| 	  /* Ignore key up events, except for left alt events with non-zero character | 	  /* Ignore key up events, except for Alt+Numpad events. */ | ||||||
| 	   */ |  | ||||||
| 	  if (!input_rec.Event.KeyEvent.bKeyDown && | 	  if (!input_rec.Event.KeyEvent.bKeyDown && | ||||||
| 	      /* | 	      !is_alt_numpad_event (&input_rec)) | ||||||
| 		Event for left alt, with a non-zero character, comes from |  | ||||||
| 		"alt + numerics" key sequence. |  | ||||||
| 		e.g. <left-alt> 0233 => é |  | ||||||
| 	      */ |  | ||||||
| 	      !(wch != 0 |  | ||||||
| 		// ?? experimentally determined on an XP system |  | ||||||
| 		&& virtual_key_code == VK_MENU |  | ||||||
| 		// left alt -- see http://www.microsoft.com/hwdev/tech/input/Scancode.asp |  | ||||||
| 		&& input_rec.Event.KeyEvent.wVirtualScanCode == 0x38)) |  | ||||||
| 	    continue; | 	    continue; | ||||||
| 	  /* Ignore Alt+Numpad keys.  These are used to enter codepoints not | 	  /* Ignore Alt+Numpad keys.  They are eventually handled below after | ||||||
| 	     available in the current keyboard layout.  They are eventually | 	     releasing the Alt key. */ | ||||||
| 	     handled below after releasing the Alt key.  For details see |  | ||||||
| 	     http://www.fileformat.info/tip/microsoft/enter_unicode.htm */ |  | ||||||
| 	  if (input_rec.Event.KeyEvent.bKeyDown | 	  if (input_rec.Event.KeyEvent.bKeyDown | ||||||
| 	      && wch == 0 | 	      && is_alt_numpad_key (&input_rec)) | ||||||
| 	      && input_rec.Event.KeyEvent.dwControlKeyState == LEFT_ALT_PRESSED |  | ||||||
| 	      && input_rec.Event.KeyEvent.wVirtualScanCode >= DIK_NUMPAD7 |  | ||||||
| 	      && input_rec.Event.KeyEvent.wVirtualScanCode <= DIK_NUMPAD0 |  | ||||||
| 	      && input_rec.Event.KeyEvent.wVirtualScanCode != DIK_SUBTRACT) |  | ||||||
| 	    continue; | 	    continue; | ||||||
|  |  | ||||||
| 	  if (control_key_state & SHIFT_PRESSED) | 	  if (control_key_state & SHIFT_PRESSED) | ||||||
| @@ -510,7 +492,6 @@ fhandler_console::read (void *pv, size_t& buflen) | |||||||
| 		  con.nModifiers &= ~4; | 		  con.nModifiers &= ~4; | ||||||
| 		} | 		} | ||||||
| 	    } | 	    } | ||||||
| #undef ich |  | ||||||
| #undef wch | #undef wch | ||||||
| 	  break; | 	  break; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -9,9 +9,34 @@ details. */ | |||||||
| #ifndef _MISCFUNCS_H | #ifndef _MISCFUNCS_H | ||||||
| #define _MISCFUNCS_H | #define _MISCFUNCS_H | ||||||
|  |  | ||||||
|  | #include <dinput.h> | ||||||
|  |  | ||||||
| #define likely(X) __builtin_expect (!!(X), 1) | #define likely(X) __builtin_expect (!!(X), 1) | ||||||
| #define unlikely(X) __builtin_expect (!!(X), 0) | #define unlikely(X) __builtin_expect (!!(X), 0) | ||||||
|  |  | ||||||
|  | /* Check for Alt+Numpad keys in a console input record.  These are used to | ||||||
|  |    enter codepoints not available in the current keyboard layout  For details | ||||||
|  |    see http://www.fileformat.info/tip/microsoft/enter_unicode.htm */ | ||||||
|  | static inline bool | ||||||
|  | is_alt_numpad_key (PINPUT_RECORD pirec) | ||||||
|  | { | ||||||
|  |   return pirec->Event.KeyEvent.uChar.UnicodeChar == 0 | ||||||
|  | 	 && pirec->Event.KeyEvent.dwControlKeyState == LEFT_ALT_PRESSED | ||||||
|  | 	 && pirec->Event.KeyEvent.wVirtualScanCode >= DIK_NUMPAD7 | ||||||
|  | 	 && pirec->Event.KeyEvent.wVirtualScanCode <= DIK_NUMPAD0 | ||||||
|  | 	 && pirec->Event.KeyEvent.wVirtualScanCode != DIK_SUBTRACT; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /* Event for left Alt, with a non-zero character, comes from Alt+Numpad | ||||||
|  |    key sequence. e.g. <left-alt> 233 => é  This is typically handled | ||||||
|  |    as the key up event after releasing the Alt key. */ | ||||||
|  | static inline bool | ||||||
|  | is_alt_numpad_event (PINPUT_RECORD pirec) | ||||||
|  | { | ||||||
|  |   return pirec->Event.KeyEvent.uChar.UnicodeChar != 0 | ||||||
|  | 	 && pirec->Event.KeyEvent.wVirtualKeyCode == VK_MENU | ||||||
|  | 	 && pirec->Event.KeyEvent.wVirtualScanCode == 0x38; | ||||||
|  | } | ||||||
|  |  | ||||||
| int __reg1 winprio_to_nice (DWORD); | int __reg1 winprio_to_nice (DWORD); | ||||||
| DWORD __reg1 nice_to_winprio (int &); | DWORD __reg1 nice_to_winprio (int &); | ||||||
|   | |||||||
| @@ -12,7 +12,6 @@ details. */ | |||||||
| #define  __INSIDE_CYGWIN_NET__ | #define  __INSIDE_CYGWIN_NET__ | ||||||
|  |  | ||||||
| #include "winsup.h" | #include "winsup.h" | ||||||
| #include <dinput.h> |  | ||||||
| #include <stdlib.h> | #include <stdlib.h> | ||||||
| #include <sys/param.h> | #include <sys/param.h> | ||||||
| #include "ntdll.h" | #include "ntdll.h" | ||||||
| @@ -896,26 +895,17 @@ peek_console (select_record *me, bool) | |||||||
| 	  { | 	  { | ||||||
| 	    if (irec.Event.KeyEvent.bKeyDown) | 	    if (irec.Event.KeyEvent.bKeyDown) | ||||||
| 	      { | 	      { | ||||||
| 		/* Ignore Alt+Numpad keys.  These are used to enter codepoints | 		/* Ignore Alt+Numpad keys. They are eventually handled in the | ||||||
| 		   not available in the current keyboard layout.  They are | 		   key-up case below. */ | ||||||
| 		   eventually handled in the key-up case below.  For details see | 		if (is_alt_numpad_key (&irec)) | ||||||
| 		   http://www.fileformat.info/tip/microsoft/enter_unicode.htm */ |  | ||||||
| 		if (irec.Event.KeyEvent.uChar.UnicodeChar == 0 |  | ||||||
| 		    && irec.Event.KeyEvent.dwControlKeyState == LEFT_ALT_PRESSED |  | ||||||
| 		    && irec.Event.KeyEvent.wVirtualScanCode >= DIK_NUMPAD7 |  | ||||||
| 		    && irec.Event.KeyEvent.wVirtualScanCode <= DIK_NUMPAD0 |  | ||||||
| 		    && irec.Event.KeyEvent.wVirtualScanCode != DIK_SUBTRACT) |  | ||||||
| 		   ; | 		   ; | ||||||
| 		/* Handle normal input. */ | 		/* Handle normal input. */ | ||||||
| 		else if (irec.Event.KeyEvent.uChar.UnicodeChar | 		else if (irec.Event.KeyEvent.uChar.UnicodeChar | ||||||
| 			 || fhandler_console::get_nonascii_key (irec, tmpbuf)) | 			 || fhandler_console::get_nonascii_key (irec, tmpbuf)) | ||||||
| 		  return me->read_ready = true; | 		  return me->read_ready = true; | ||||||
| 	      } | 	      } | ||||||
| 	    /* Ignore key up events, except for left alt events with | 	    /* Ignore key up events, except for Alt+Numpad events. */ | ||||||
| 	       non-zero character */ | 	    else if (is_alt_numpad_event (&irec)) | ||||||
| 	    else if (irec.Event.KeyEvent.uChar.UnicodeChar != 0 |  | ||||||
| 		     && irec.Event.KeyEvent.wVirtualKeyCode == VK_MENU |  | ||||||
| 		     && irec.Event.KeyEvent.wVirtualScanCode == 0x38) |  | ||||||
| 	      return me->read_ready = true; | 	      return me->read_ready = true; | ||||||
| 	  } | 	  } | ||||||
| 	else | 	else | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user