2006-04-13 20:47:06 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
|
|
|
|
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D 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, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Original Source: 1996 - Todd Replogle
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
Modifications for JonoF's port by Jonathon Fowler (jonof@edgenetwk.com)
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// Public header for CONTROL.C.
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
#ifndef _control_public
|
|
|
|
#define _control_public
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// DEFINES
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
#define MAXGAMEBUTTONS 64
|
|
|
|
|
2008-11-21 12:14:05 +00:00
|
|
|
#define BUTTON(x) ((CONTROL_ButtonState>> ((uint64)(x)) ) & 1)
|
|
|
|
#define BUTTONHELD(x) ((CONTROL_ButtonHeldState>> ((uint64)(x)) ) & 1)
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#define BUTTONJUSTPRESSED(x) \
|
|
|
|
( BUTTON( x ) && !BUTTONHELD( x ) )
|
|
|
|
#define BUTTONRELEASED(x) \
|
|
|
|
( !BUTTON( x ) && BUTTONHELD( x ) )
|
|
|
|
#define BUTTONSTATECHANGED(x) \
|
|
|
|
( BUTTON( x ) != BUTTONHELD( x ) )
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// TYPEDEFS
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
axis_up,
|
|
|
|
axis_down,
|
|
|
|
axis_left,
|
|
|
|
axis_right
|
|
|
|
} axisdirection;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
analog_turning=0,
|
|
|
|
analog_strafing=1,
|
|
|
|
analog_lookingupanddown=2,
|
|
|
|
analog_elevation=3,
|
|
|
|
analog_rolling=4,
|
|
|
|
analog_moving=5,
|
|
|
|
analog_maxtype
|
|
|
|
} analogcontrol;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
dir_North,
|
|
|
|
dir_NorthEast,
|
|
|
|
dir_East,
|
|
|
|
dir_SouthEast,
|
|
|
|
dir_South,
|
|
|
|
dir_SouthWest,
|
|
|
|
dir_West,
|
|
|
|
dir_NorthWest,
|
|
|
|
dir_None
|
|
|
|
} direction;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t button0;
|
|
|
|
int32_t button1;
|
2006-04-13 20:47:06 +00:00
|
|
|
direction dir;
|
|
|
|
} UserInput;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t dx;
|
|
|
|
int32_t dy;
|
|
|
|
int32_t dz;
|
|
|
|
int32_t dyaw;
|
|
|
|
int32_t dpitch;
|
|
|
|
int32_t droll;
|
2006-04-13 20:47:06 +00:00
|
|
|
} ControlInfo;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
controltype_keyboard,
|
|
|
|
controltype_keyboardandmouse,
|
|
|
|
controltype_keyboardandjoystick
|
|
|
|
} controltype;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
controldevice_keyboard,
|
|
|
|
controldevice_mouse,
|
|
|
|
controldevice_joystick
|
|
|
|
} controldevice;
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// GLOBALS
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
extern int32_t CONTROL_MousePresent;
|
|
|
|
extern int32_t CONTROL_JoyPresent;
|
|
|
|
extern int32_t CONTROL_MouseEnabled;
|
|
|
|
extern int32_t CONTROL_JoystickEnabled;
|
2008-11-21 12:14:05 +00:00
|
|
|
extern uint64 CONTROL_ButtonState;
|
|
|
|
extern uint64 CONTROL_ButtonHeldState;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// PROTOTYPES
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
void CONTROL_MapKey( int32_t which, kb_scancode key1, kb_scancode key2 );
|
2006-04-13 20:47:06 +00:00
|
|
|
void CONTROL_MapButton
|
|
|
|
(
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t whichfunction,
|
|
|
|
int32_t whichbutton,
|
|
|
|
int32_t doubleclicked,
|
2006-04-13 20:47:06 +00:00
|
|
|
controldevice device
|
|
|
|
);
|
2009-04-26 05:57:42 +00:00
|
|
|
void CONTROL_DefineFlag( int32_t which, int32_t toggle );
|
|
|
|
int32_t CONTROL_FlagActive( int32_t which );
|
2006-04-13 20:47:06 +00:00
|
|
|
void CONTROL_ClearAssignments( void );
|
|
|
|
void CONTROL_GetUserInput( UserInput *info );
|
|
|
|
void CONTROL_GetInput( ControlInfo *info );
|
2009-04-26 05:57:42 +00:00
|
|
|
void CONTROL_ClearButton( int32_t whichbutton );
|
2006-04-13 20:47:06 +00:00
|
|
|
void CONTROL_ClearUserInput( UserInput *info );
|
|
|
|
void CONTROL_WaitRelease( void );
|
|
|
|
void CONTROL_Ack( void );
|
2009-04-29 19:43:51 +00:00
|
|
|
float CONTROL_MouseSensitivity;
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t CONTROL_Startup
|
2006-04-13 20:47:06 +00:00
|
|
|
(
|
|
|
|
controltype which,
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t ( *TimeFunction )( void ),
|
|
|
|
int32_t ticspersecond
|
2006-04-13 20:47:06 +00:00
|
|
|
);
|
|
|
|
void CONTROL_Shutdown( void );
|
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
void CONTROL_SetDoubleClickDelay(int32_t delay);
|
|
|
|
int32_t CONTROL_GetDoubleClickDelay(void);
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
void CONTROL_MapAnalogAxis
|
|
|
|
(
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t whichaxis,
|
|
|
|
int32_t whichanalog,
|
2006-04-13 20:47:06 +00:00
|
|
|
controldevice device
|
|
|
|
);
|
|
|
|
|
|
|
|
void CONTROL_MapDigitalAxis
|
|
|
|
(
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t whichaxis,
|
|
|
|
int32_t whichfunction,
|
|
|
|
int32_t direction,
|
2006-04-13 20:47:06 +00:00
|
|
|
controldevice device
|
|
|
|
);
|
|
|
|
void CONTROL_SetAnalogAxisScale
|
|
|
|
(
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t whichaxis,
|
|
|
|
int32_t axisscale,
|
2006-04-13 20:47:06 +00:00
|
|
|
controldevice device
|
|
|
|
);
|
|
|
|
|
|
|
|
void CONTROL_PrintKeyMap(void);
|
2009-04-26 05:57:42 +00:00
|
|
|
void CONTROL_PrintControlFlag(int32_t which);
|
2006-04-13 20:47:06 +00:00
|
|
|
void CONTROL_PrintAxes( void );
|
|
|
|
|
2008-06-29 10:40:37 +00:00
|
|
|
#define MAXBINDSTRINGLENGTH 128
|
|
|
|
#define MAXBOUNDKEYS 256
|
|
|
|
|
|
|
|
typedef struct binding {
|
|
|
|
char *key;
|
2008-07-03 07:37:41 +00:00
|
|
|
char cmd[MAXBINDSTRINGLENGTH];
|
2008-06-29 10:40:37 +00:00
|
|
|
char repeat;
|
|
|
|
char laststate;
|
|
|
|
} keybind;
|
|
|
|
|
2008-10-05 09:23:55 +00:00
|
|
|
#define MAXMOUSEBUTTONS 10
|
2008-07-03 07:37:41 +00:00
|
|
|
|
2009-01-10 07:38:50 +00:00
|
|
|
extern keybind KeyBindings[MAXBOUNDKEYS], MouseBindings[MAXMOUSEBUTTONS];
|
2009-01-09 09:29:17 +00:00
|
|
|
extern int32_t bindsenabled;
|
2008-06-29 10:40:37 +00:00
|
|
|
|
|
|
|
void CONTROL_ProcessBinds(void);
|
|
|
|
|
2008-06-29 12:29:42 +00:00
|
|
|
#define CONTROL_NUM_FLAGS 64
|
2009-01-09 09:29:17 +00:00
|
|
|
extern int32_t extinput[CONTROL_NUM_FLAGS];
|
|
|
|
extern int32_t control_smoothmouse;
|
2008-06-29 12:29:42 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|