X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2F16_in.h;h=c2b4b622ca1ef45acaf9477ac8dff43c6ccdbdcf;hb=a9fe632397649ac62b1d7febda9a62bc517c5c53;hp=eb8048bcef255ad9b2fe285e58828e6702f56869;hpb=f0b6c48c11e40833eb68fa127bcd4ab41d805951;p=16.git diff --git a/src/lib/16_in.h b/src/lib/16_in.h index eb8048bc..c2b4b622 100755 --- a/src/lib/16_in.h +++ b/src/lib/16_in.h @@ -138,6 +138,10 @@ #define key_LSuper 0x5b #define key_RSuper 0x5c #define key_Menu 0x5d +#define sc_LBrkt 0x1a // [ +#define sc_RBrkt 0x1b // ] +#define sc_BackSlash 0x2b // | +#define sc_ForeSlash 0x35 // / ? // Stuff for the mouse #define MReset 0 @@ -213,34 +217,34 @@ typedef struct { #endif // Internal routines -extern void IN_Startup(void),IN_Shutdown(void), - IN_Default(boolean gotit,player_t *player,ControlType nt), +extern void IN_Startup(global_game_variables_t *gvar),IN_Shutdown(global_game_variables_t *gvar), + IN_Default(boolean gotit,player_t *player,ControlType nt, global_game_variables_t *gvar), IN_SetKeyHook(void (*)()), IN_ClearKeysDown(void), - IN_ReadCursor(CursorInfo *), - IN_ReadControl(player_t *player), + IN_ReadCursor(CursorInfo *, global_game_variables_t *gvar), + IN_ReadControl(player_t *player, global_game_variables_t *gvar), IN_SetControlType(player_t *player,ControlType type), IN_GetJoyAbs(word joy,word *xp,word *yp), IN_SetupJoy(word joy,word minx,word maxx, - word miny,word maxy), + word miny,word maxy, global_game_variables_t *gvar), #if DEMO0 IN_StopDemo(void),IN_FreeDemoBuffer(void), #endif - IN_Ack(void),IN_AckBack(void); -extern boolean IN_UserInput(word delay); + IN_Ack(global_game_variables_t *gvar),IN_AckBack(void); +extern boolean IN_UserInput(word delay, global_game_variables_t *gvar); extern char IN_WaitForASCII(void); extern ScanCode IN_WaitForKey(void); extern word IN_GetJoyButtonsDB(word joy); extern byte *IN_GetScanName(ScanCode); -byte IN_MouseButtons (void); +byte IN_MouseButtons (global_game_variables_t *gvar); byte IN_JoyButtons (void); -void INL_GetJoyDelta(word joy,int *dx,int *dy/*,boolean adaptive*/); -void IN_StartAck(void); -boolean IN_CheckAck (void); -boolean IN_IsUserInput(); +void INL_GetJoyDelta(word joy,int *dx,int *dy/*,boolean adaptive*/, global_game_variables_t *gvar); +void IN_StartAck(global_game_variables_t *gvar); +boolean IN_CheckAck (global_game_variables_t *gvar); +boolean IN_IsUserInput(global_game_variables_t *gvar); #define Mouse(x) INL_Mouse(x) //void IN_SetKeyHook(void (*hook)()); #if DEMO0 @@ -250,8 +254,8 @@ void IN_StopDemo(void); void IN_FreeDemoBuffer(void); #endif -boolean IN_KeyDown(byte code), - IN_qb(byte kee); +//boolean IN_KeyDown(byte code), +// IN_qb(byte kee); void IN_ClearKey(byte code), IN_KbdLED(); ScanCode IN_GetLastScan(),