/* DE1: $Id: dd_input.h 3141 2006-05-13 20:03:13Z skyjake $ * Copyright (C) 2003, 2004 Jaakko Keränen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not: http://www.opensource.org/ */ /* * dd_input.h: Input Subsystem */ #ifndef __DOOMSDAY_BASEINPUT_H__ #define __DOOMSDAY_BASEINPUT_H__ #include "dd_share.h" // For event_t. #include "con_decl.h" extern int repWait1, repWait2; extern int keyRepeatDelay1, keyRepeatDelay2; // milliseconds extern int mouseFilter; extern int mouseDisableX, mouseDisableY; extern int mouseInverseY; extern int mouseWheelSensi; extern int joySensitivity; extern int joyDeadZone; extern byte showScanCodes; extern boolean shiftDown, altDown; void DD_RegisterInput(void); void DD_InitInput(void); void DD_ShutdownInput(void); void DD_StartInput(void); void DD_StopInput(void); void DD_ReadKeyboard(void); void DD_ReadMouse(void); void DD_ReadJoystick(void); void DD_PostEvent(event_t *ev); void DD_ProcessEvents(void); void DD_ClearEvents(void); void DD_ClearKeyRepeaters(void); byte DD_ScanToKey(byte scan); byte DD_KeyToScan(byte key); byte DD_ModKey(byte key); int DD_IsKeyDown(int code); int DD_IsMouseBDown(int code); int DD_IsJoyBDown(int code); D_CMD(KeyMap); D_CMD(DumpKeyMap); #endif