# HG changeset patch # User faust3 # Date 1064230311 0 # Node ID f2313bd91594db779249fb458959dd6ed077b273 # Parent 3037e30057bca246bad0a702c83c994e8098a553 add a read function for slave mode on mingw diff -r 3037e30057bc -r f2313bd91594 mplayer.c --- a/mplayer.c Mon Sep 22 09:19:41 2003 +0000 +++ b/mplayer.c Mon Sep 22 11:31:51 2003 +0000 @@ -13,6 +13,7 @@ #define SIGQUIT 3 /* quit */ #define SIGKILL 9 /* kill (cannot be caught or ignored) */ #define SIGBUS 10 /* bus error */ +extern int mp_input_win32_slave_cmd_func(int fd,char* dest,int size); #endif #include @@ -1121,7 +1122,11 @@ mp_input_add_key_fd(-1,0,mplayer_get_key,NULL); #endif if(slave_mode) +#ifndef __MINGW32__ mp_input_add_cmd_fd(0,1,NULL,NULL); +#else + mp_input_add_cmd_fd(0,0,mp_input_win32_slave_cmd_func,NULL); +#endif else if(!use_stdin) #ifndef HAVE_NO_POSIX_SELECT mp_input_add_key_fd(0,1,NULL,NULL); diff -r 3037e30057bc -r f2313bd91594 osdep/getch2-win.c --- a/osdep/getch2-win.c Mon Sep 22 09:19:41 2003 +0000 +++ b/osdep/getch2-win.c Mon Sep 22 11:31:51 2003 +0000 @@ -6,6 +6,25 @@ #include #include "keycodes.h" +#include "../input/input.h" + +int mp_input_win32_slave_cmd_func(int fd,char* dest,int size){ + DWORD i,retval; + int x=0; + HANDLE stdin = GetStdHandle(STD_INPUT_HANDLE); + INPUT_RECORD eventbuffer[250]; + if(!GetNumberOfConsoleInputEvents(stdin,&retval) || !retval)return MP_INPUT_NOTHING; + ReadConsoleInput(stdin,eventbuffer,250,&retval); + for(i = 0; i < retval; i++){ + if(eventbuffer[i].EventType==KEY_EVENT&&eventbuffer[i].Event.KeyEvent.bKeyDown== TRUE){ + if(eventbuffer[i].Event.KeyEvent.wVirtualKeyCode==VK_RETURN)dest[x]='\n'; + else dest[x]=eventbuffer[i].Event.KeyEvent.uChar.AsciiChar; + ++x; + } + } + if(x)return x; + return MP_INPUT_NOTHING; +} int screen_width=80; int screen_height=24;