3 * copyright (C) 2003 Sascha Sommer
5 * This file is part of MPlayer.
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 // See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/UserInput/VirtualKeyCodes.asp
23 // for additional virtual keycodes
31 #include "input/input.h"
33 // HACK, stdin is used as something else below
36 int mp_input_slave_cmd_func(int fd
,char* dest
,int size
){
38 HANDLE stdin
= GetStdHandle(STD_INPUT_HANDLE
);
39 if(!PeekNamedPipe(stdin
, NULL
, size
, &retval
, NULL
, NULL
) || !retval
){
40 return MP_INPUT_NOTHING
;
42 if(retval
>size
)retval
=size
;
43 ReadFile(stdin
, dest
, retval
, &retval
, NULL
);
44 if(retval
)return retval
;
45 return MP_INPUT_NOTHING
;
50 char * erase_to_end_of_line
= NULL
;
52 void get_screen_size(void){
56 static int getch2_status
=0;
58 static int getch2_internal(void)
60 INPUT_RECORD eventbuffer
[128];
63 if(!getch2_status
)return -1;
64 /*check if there are input events*/
65 if(!GetNumberOfConsoleInputEvents(stdin
,&retval
))
67 printf("getch2: can't get number of input events: %i\n",GetLastError());
70 if(retval
<=0)return -1;
73 if(!ReadConsoleInput(stdin
,eventbuffer
,128,&retval
))
75 printf("getch: can't read input events\n");
79 /*filter out keyevents*/
80 for (i
= 0; i
< retval
; i
++)
82 switch(eventbuffer
[i
].EventType
)
85 /*only a pressed key is interresting for us*/
86 if(eventbuffer
[i
].Event
.KeyEvent
.bKeyDown
== TRUE
)
88 /*check for special keys*/
89 switch(eventbuffer
[i
].Event
.KeyEvent
.wVirtualKeyCode
)
120 /*check for function keys*/
121 if(0x87 >= eventbuffer
[i
].Event
.KeyEvent
.wVirtualKeyCode
&& eventbuffer
[i
].Event
.KeyEvent
.wVirtualKeyCode
>= 0x70)
122 return KEY_F
+ 1 + eventbuffer
[i
].Event
.KeyEvent
.wVirtualKeyCode
- 0x70;
124 /*only characters should be remaining*/
125 //printf("getch2: YOU PRESSED \"%c\" \n",eventbuffer[i].Event.KeyEvent.uChar.AsciiChar);
126 return eventbuffer
[i
].Event
.KeyEvent
.uChar
.AsciiChar
;
131 case WINDOW_BUFFER_SIZE_EVENT
:
135 //printf("getch2: unsupported event type");
144 int r
= getch2_internal();
149 void getch2_enable(void)
152 stdin
= GetStdHandle(STD_INPUT_HANDLE
);
153 if(!GetNumberOfConsoleInputEvents(stdin
,&retval
))
155 printf("getch2: %i can't get number of input events [disabling console input]\n",GetLastError());
158 else getch2_status
=1;
161 void getch2_disable(void)
163 if(!getch2_status
) return; // already disabled / never enabled
168 static const struct {
174 { 21866, "KOI8-RU" },
175 { 28591, "ISO-8859-1" },
176 { 28592, "ISO-8859-2" },
177 { 28593, "ISO-8859-3" },
178 { 28594, "ISO-8859-4" },
179 { 28595, "ISO-8859-5" },
180 { 28596, "ISO-8859-6" },
181 { 28597, "ISO-8859-7" },
182 { 28598, "ISO-8859-8" },
183 { 28599, "ISO-8859-9" },
184 { 28605, "ISO-8859-15" },
189 char* get_term_charset(void)
192 unsigned i
, cpno
= GetConsoleOutputCP();
198 for (i
= 0; cp_alias
[i
].cp
; i
++)
199 if (cpno
== cp_alias
[i
].cp
)
200 return strdup(cp_alias
[i
].alias
);
202 snprintf(codepage
, sizeof(codepage
), "CP%u", cpno
);
203 return strdup(codepage
);