1 /* Catacomb Apocalypse Source Code
\r
2 * Copyright (C) 1993-2014 Flat Rock Software
\r
4 * This program is free software; you can redistribute it and/or modify
\r
5 * it under the terms of the GNU General Public License as published by
\r
6 * the Free Software Foundation; either version 2 of the License, or
\r
7 * (at your option) any later version.
\r
9 * This program is distributed in the hope that it will be useful,
\r
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
12 * GNU General Public License for more details.
\r
14 * You should have received a copy of the GNU General Public License along
\r
15 * with this program; if not, write to the Free Software Foundation, Inc.,
\r
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\r
21 // ID_IN.h - Header file for Input Manager
\r
23 // By Jason Blochowiak
\r
24 // Open Watcom port by sparky4
\r
31 #include "src/lib/16_head.h"
\r
32 #include "src/lib/timer.h"
\r
33 #include "src/lib/bitmap.h"
\r
34 #include "src/lib/planar.h"
\r
37 //#define __DEBUG_InputMgr__
\r
40 #ifdef __DEBUG_InputMgr__
\r
42 //#define TESTCONTROLNOISY
\r
45 const static word testkeyin=1,testcontrolnoisy=1;
\r
47 #define KeyInt 9 // The keyboard ISR number
\r
49 // Stuff for the joystick
\r
50 #define JoyScaleMax 32768
\r
51 #define JoyScaleShift 8
\r
52 #define MaxJoyValue 5000
\r
54 #define MaxPlayers 4
\r
58 #define NumCodes 128
\r
60 typedef byte ScanCode;
\r
63 #define sc_Return 0x1c
\r
64 #define sc_Enter sc_Return
\r
65 #define sc_Escape 0x01
\r
66 #define sc_Space 0x39
\r
67 #define sc_BackSpace 0x0e
\r
70 #define sc_Control 0x1d
\r
71 #define sc_CapsLock 0x3a
\r
72 #define sc_LShift 0x2a
\r
73 #define sc_RShift 0x36
\r
74 #define sc_UpArrow 0x48
\r
75 #define sc_DownArrow 0x50
\r
76 #define sc_LeftArrow 0x4b
\r
77 #define sc_RightArrow 0x4d
\r
78 #define sc_Insert 0x52
\r
79 #define sc_Delete 0x53
\r
80 #define sc_Home 0x47
\r
82 #define sc_PgUp 0x49
\r
83 #define sc_PgDn 0x51
\r
136 #define key_Return 0x0d
\r
137 #define key_Enter key_Return
\r
138 #define key_Escape 0x1b
\r
139 #define key_Space 0x20
\r
140 #define key_BackSpace 0x08
\r
141 #define key_Tab 0x09
\r
142 #define key_Delete 0x7f
\r
144 #define key_LSuper 0x5b
\r
145 #define key_RSuper 0x5c
\r
146 #define key_Menu 0x5d
\r
148 // Stuff for the mouse
\r
153 #define MouseInt 0x33
\r
156 demo_Off,demo_Record,demo_Playback,demo_PlayDone
\r
160 //ctrl_None, // MDM (GAMERS EDGE) - added
\r
162 ctrl_Keyboard1 = ctrl_Keyboard,ctrl_Keyboard2,
\r
164 ctrl_Joystick1 = ctrl_Joystick,ctrl_Joystick2,
\r
167 ctrl_Joypad1 = ctrl_Joypad,ctrl_Joypad2
\r
170 motion_Left = -1,motion_Up = -1,
\r
172 motion_Right = 1,motion_Down = 1
\r
175 dir_North,//dir_NorthEast,
\r
176 dir_West,//dir_Nortinest,
\r
178 dir_East,//,dir_SouthEast,
\r
179 dir_South,//dir_Soutinest,
\r
182 boolean near button0,button1,button2,button3;
\r
184 Motion near xaxis,yaxis;
\r
185 Direction near dir;
\r
189 ScanCode near button0,button1,
\r
201 word near joyMinX,joyMinY,
\r
202 threshMinX,threshMinY,
\r
203 threshMaxX,threshMaxY,
\r
205 joyMultXL,joyMultYL,
\r
206 joyMultXH,joyMultYH;
\r
215 int x; //player exact position on the viewable map
\r
216 int y; //player exact position on the viewable map
\r
217 int tx; //player tile position on the viewable map
\r
218 int ty; //player tile position on the viewable map
\r
219 int triggerx; //player's trigger box tile position on the viewable map
\r
220 int triggery; //player's trigger box tile position on the viewable map
\r
221 int sheetsetx; //NOT USED YET! player sprite sheet set on the image x
\r
222 int sheetsety; //NOT USED YET! player sprite sheet set on the image y
\r
223 byte d; //direction!! wwww
\r
224 byte q; //loop variable
\r
225 word speed; //player speed!
\r
226 //0000 planar_buf_t huge *data; //supposively the sprite sheet data
\r
227 // planar_buf_t data; //supposively the sprite sheet data
\r
229 bitmap_t huge *data; //supposively the sprite sheet data
\r
230 sword hp; //hitpoints of the player
\r
231 int persist_aniframe; /* gonna be increased to 1 before being used, so 0 is ok for default */
\r
233 ControlType Controls;
\r
237 =============================================================================
\r
241 =============================================================================
\r
243 /*extern struct inconfig
\r
245 boolean MousePresent;
\r
246 boolean JoysPresent[MaxJoys];
\r
247 boolean JoyPadPresent[MaxPads];
\r
248 boolean Keyboard[NumCodes];
\r
253 KeyboardDef KbdDefs[MaxKbds];
\r
254 JoystickDef JoyDefs[MaxJoys];
\r
255 JoypadDef JoypadDefs[MaxPads];
\r
259 static Demo DemoMode = demo_Off;
\r
260 static byte /*_seg*/ *DemoBuffer;
\r
261 static word DemoOffset,DemoSize;
\r
264 // Internal routines
\r
265 extern void interrupt INL_KeyService();
\r
266 extern void Mouse(int x);
\r
267 //static void INL_GetMouseDelta(int *x,int *y);
\r
268 //static word INL_GetMouseButtons(void);
\r
269 extern void IN_GetJoyAbs(word joy,word *xp,word *yp);
\r
270 //static void INL_GetJoyDelta(word joy,int *dx,int *dy,boolean adaptive);
\r
271 //static word INL_GetJoyButtons(word joy);
\r
272 extern word IN_GetJoyButtonsDB(word joy);
\r
273 //static void INL_StartKbd(void);
\r
274 //static void INL_ShutKbd(void);
\r
275 //static boolean INL_StartMouse(void);
\r
276 //static void INL_ShutMouse(void);
\r
277 //static void INL_SetJoyScale(word joy);
\r
278 extern void IN_SetupJoy(word joy,word minx,word maxx,word miny,word maxy);
\r
279 //static boolean INL_StartJoy(word joy);
\r
280 //static void INL_ShutJoy(word joy);
\r
281 extern void IN_Startup();
\r
282 extern void IN_Default(boolean gotit,player_t *player,ControlType nt);
\r
283 extern void IN_Shutdown();
\r
284 extern void IN_SetKeyHook(void (*hook)());
\r
285 extern void IN_ClearKeysDown();
\r
286 //static void INL_AdjustCursor(CursorInfo *info,word buttons,int dx,int dy);
\r
287 extern void IN_ReadCursor(CursorInfo *info);
\r
288 extern void near IN_ReadControl(int playnum,player_t *player);
\r
289 extern void IN_SetControlType(word playnum,player_t *player,ControlType type);
\r
291 extern boolean IN_StartDemoRecord(word bufsize);
\r
292 extern void IN_StartDemoPlayback(byte /*__segment*/ *buffer,word bufsize);
\r
293 extern void IN_StopDemo(void);
\r
294 extern void IN_FreeDemoBuffer(void);
\r
296 extern byte *IN_GetScanName(ScanCode scan);
\r
297 extern ScanCode IN_WaitForKey();
\r
298 extern char IN_WaitForASCII();
\r
299 extern void IN_AckBack();
\r
300 extern void IN_Ack();
\r
301 extern boolean IN_IsUserInput();
\r
302 extern boolean IN_UserInput(dword delay,boolean clear);
\r
303 extern boolean IN_KeyDown(byte code);
\r
304 extern void IN_ClearKey(byte code);
\r
305 extern boolean IN_qb(byte kee);
\r