ReactOS 0.4.16-dev-937-g7afcd2a
getwch.cpp File Reference
#include <conio.h>
#include <corecrt_internal_lowio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
Include dependency graph for getwch.cpp:

Go to the source code of this file.

Classes

struct  anonymous_namespace{getwch.cpp}::CharPair
 

Namespaces

namespace  anonymous_namespace{getwch.cpp}
 

Functions

CharPair const *__cdecl _getextendedkeycode (KEY_EVENT_RECORD *)
 
wint_t __cdecl _getwch ()
 
wint_t __cdecl _getwche ()
 
wint_t __cdecl _getwch_nolock ()
 
wint_t __cdecl _getwche_nolock ()
 
wint_t __cdecl _ungetwch (wint_t const c)
 
wint_t __cdecl _ungetwch_nolock (wint_t const c)
 

Variables

static wint_t wchbuf = WEOF
 
intptr_t __dcrt_lowio_console_input_handle
 

Function Documentation

◆ _getextendedkeycode()

CharPair const *__cdecl _getextendedkeycode ( KEY_EVENT_RECORD pKE)

Definition at line 506 of file getch.cpp.

507{
508 DWORD const CKS = pKE->dwControlKeyState;
509
510 if (CKS & ENHANCED_KEY)
511 {
512 // Find the appropriate entry in EnhancedKeys[]:
513 for (int i = 0 ; i < NUM_EKA_ELTS; ++i)
514 {
516 {
517 continue;
518 }
519
520 // We found a match! Determine which pair to return:
522 {
523 return &EnhancedKeys[i].AltChars;
524 }
525 else if (CKS & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED))
526 {
527 return &EnhancedKeys[i].CtrlChars;
528 }
529 else if (CKS & SHIFT_PRESSED)
530 {
531 return &EnhancedKeys[i].ShiftChars;
532 }
533 else
534 {
535 return &EnhancedKeys[i].RegChars;
536 }
537 }
538
539 return nullptr;
540 }
541 else
542 {
543 // Regular key or keyboard event which shouldn't be recognized.
544 // Determine which by getting the proper field of the proper entry in
545 // NormalKeys[] and examining the extended code.
546 CharPair const* pCP;
547
549 {
550 pCP = &NormalKeys[pKE->wVirtualScanCode].AltChars;
551 }
552 else if (CKS & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED))
553 {
554 pCP = &NormalKeys[pKE->wVirtualScanCode].CtrlChars;
555 }
556 else if (CKS & SHIFT_PRESSED)
557 {
558 pCP = &NormalKeys[pKE->wVirtualScanCode].ShiftChars;
559 }
560 else
561 {
562 pCP = &NormalKeys[pKE->wVirtualScanCode].RegChars;
563 }
564
565 // Make sure it wasn't a keyboard event which should not be recognized
566 // (e.g. the shift key was pressed):
567 if ((pCP->LeadChar != 0 && pCP->LeadChar != 224) || pCP->SecondChar == 0)
568 {
569 return nullptr;
570 }
571
572 return pCP;
573 }
574}
UINT ScanCode
Definition: VirtualKey.c:24
unsigned long DWORD
Definition: ntddk_ex.h:95
static EnhKeyVals const EnhancedKeys[]
Definition: getch.cpp:46
static NormKeyVals const NormalKeys[]
Definition: getch.cpp:69
#define NUM_EKA_ELTS
Definition: getch.cpp:63
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
WORD wVirtualScanCode
Definition: wincon.h:243
DWORD dwControlKeyState
Definition: wincon.h:248
#define LEFT_CTRL_PRESSED
Definition: wincon.h:140
#define SHIFT_PRESSED
Definition: wincon.h:141
#define RIGHT_CTRL_PRESSED
Definition: wincon.h:139
#define RIGHT_ALT_PRESSED
Definition: wincon.h:137
#define ENHANCED_KEY
Definition: wincon.h:145
#define LEFT_ALT_PRESSED
Definition: wincon.h:138

Referenced by _getch_nolock(), _getwch_nolock(), and _kbhit_nolock().

◆ _getwch()

wint_t __cdecl _getwch ( void  )

Definition at line 42 of file getwch.cpp.

43{
45 wint_t result = 0;
46 __try
47 {
49 }
51 {
53 }
55 return result;
56}
int wint_t
Definition: _apple.h:38
void __cdecl __acrt_unlock(_In_ __acrt_lock_id lock)
Definition: locks.cpp:57
@ __acrt_conio_lock
__acrt_lock(__acrt_heap_lock)
wint_t __cdecl _getwch_nolock()
Definition: getwch.cpp:77
GLuint64EXT * result
Definition: glext.h:11304
#define __try
Definition: pseh2_64.h:188
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190

◆ _getwch_nolock()

wint_t __cdecl _getwch_nolock ( void  )

Definition at line 77 of file getwch.cpp.

78{
79 // First check the pushback buffer for a character. If it has one, return
80 // it without echoing and reset the buffer:
81 if (wchbuf != WEOF)
82 {
83 wchar_t const buffered_wchar = static_cast<wchar_t>(wchbuf & 0xFFFF);
84 wchbuf = WEOF;
85 return buffered_wchar;
86 }
87
88 // The console input handle is created the first time that _getwch(),
89 // _cgetws(), or _kbhit() is called:
91 return WEOF;
92
93 // Switch to raw mode (no line input, no echo input):
94 DWORD old_console_mode;
95 __dcrt_get_input_console_mode(&old_console_mode);
97 wint_t result = 0;
98 __try
99 {
100 for ( ; ; )
101 {
102 // Get a console input event:
103 INPUT_RECORD input_record;
104 DWORD num_read;
105 if (__dcrt_read_console_input(&input_record, 1, &num_read) == FALSE)
106 {
107 result = WEOF;
108 __leave;
109 }
110
111 if (num_read == 0)
112 {
113 result = WEOF;
114 __leave;
115 }
116
117 // Look for, and decipher, key events.
118 if (input_record.EventType == KEY_EVENT && input_record.Event.KeyEvent.bKeyDown)
119 {
120 // Easy case: if UnicodeChar is non-zero, we can just return it:
121 wchar_t const c = static_cast<wchar_t>(input_record.Event.KeyEvent.uChar.UnicodeChar);
122 if (c != 0)
123 {
124 result = c;
125 __leave;
126 }
127
128 // Hard case: either it is an extended code or an event which
129 // should not be recognized. Let _getextendedkeycode do the work:
130 CharPair const* const cp = _getextendedkeycode(&input_record.Event.KeyEvent);
131 if (cp != nullptr)
132 {
133 wchbuf = cp->SecondChar;
134 result = cp->LeadChar;
135 __leave;
136 }
137 }
138 }
139 }
141 {
142 // Restore the previous console mode:
143 __dcrt_set_input_console_mode(old_console_mode);
144 }
146 return result;
147}
#define FALSE
Definition: types.h:117
static wint_t wchbuf
Definition: getwch.cpp:28
CharPair const *__cdecl _getextendedkeycode(KEY_EVENT_RECORD *)
Definition: getch.cpp:506
const GLubyte * c
Definition: glext.h:8905
BOOL __cdecl __dcrt_read_console_input(_Out_ PINPUT_RECORD lpBuffer, _In_ DWORD nLength, _Out_ LPDWORD lpNumberOfEventsRead)
Definition: initconin.cpp:67
BOOL __cdecl __dcrt_get_input_console_mode(_Out_ LPDWORD lpMode)
Definition: initconin.cpp:136
BOOL __cdecl __dcrt_lowio_ensure_console_input_initialized()
Definition: initconin.cpp:31
BOOL __cdecl __dcrt_set_input_console_mode(_In_ DWORD dwMode)
Definition: initconin.cpp:150
#define c
Definition: ke_i.h:80
POINT cp
Definition: magnifier.c:59
#define __leave
Definition: pseh2_64.h:192
#define WEOF
Definition: conio.h:185
union _INPUT_RECORD::@3376 Event
WORD EventType
Definition: wincon.h:273
KEY_EVENT_RECORD KeyEvent
Definition: wincon.h:275
union _KEY_EVENT_RECORD::@3375 uChar
WCHAR UnicodeChar
Definition: wincon.h:245
#define KEY_EVENT
Definition: wincon.h:128

Referenced by _getwch(), and _getwche_nolock().

◆ _getwche()

wint_t __cdecl _getwche ( void  )

Definition at line 59 of file getwch.cpp.

60{
62 wint_t result = 0;
63 __try
64 {
66 }
68 {
70 }
72 return result;
73}
wint_t __cdecl _getwche_nolock()
Definition: getwch.cpp:151

◆ _getwche_nolock()

wint_t __cdecl _getwche_nolock ( void  )

Definition at line 151 of file getwch.cpp.

152{
153 // First check the pushback buffer for a character. If it has one, return
154 // it without echoing and reset the buffer:
155 if (wchbuf != WEOF)
156 {
157 wchar_t const buffered_wchar = static_cast<wchar_t>(wchbuf & 0xFFFF);
158 wchbuf = WEOF;
159 return buffered_wchar;
160 }
161
162 // Othwrwise, read the character, echo it, and return it. If anything fails,
163 // we immediately return WEOF.
164 wchar_t const gotten_wchar = _getwch_nolock();
165 if (gotten_wchar == WEOF)
166 return WEOF;
167
168 if (_putwch_nolock(gotten_wchar) == WEOF)
169 return WEOF;
170
171 return gotten_wchar;
172}
_Check_return_opt_ _CRTIMP wint_t __cdecl _putwch_nolock(wchar_t _WCh)
Definition: putwch.cpp:22

Referenced by _getwche().

◆ _ungetwch()

wint_t __cdecl _ungetwch ( wint_t const  c)

Definition at line 179 of file getwch.cpp.

180{
182 wint_t result = 0;
183 __try
184 {
186 }
188 {
190 }
192 return result;
193}
wint_t __cdecl _ungetwch_nolock(wint_t const c)
Definition: getwch.cpp:197

◆ _ungetwch_nolock()

wint_t __cdecl _ungetwch_nolock ( wint_t const  c)

Definition at line 197 of file getwch.cpp.

198{
199 // Fail if the char is EOF or the pushback buffer is non-empty:
200 if (c == WEOF || wchbuf != WEOF)
201 return static_cast<wint_t>(EOF);
202
203 wchbuf = (c & 0xFF);
204 return wchbuf;
205}
#define EOF
Definition: stdio.h:24

Referenced by _ungetwch().

Variable Documentation

◆ __dcrt_lowio_console_input_handle

intptr_t __dcrt_lowio_console_input_handle

Definition at line 30 of file getwch.cpp.

◆ wchbuf

wint_t wchbuf = WEOF
static

Definition at line 28 of file getwch.cpp.

Referenced by _getwch_nolock(), _getwche_nolock(), and _ungetwch_nolock().