2006-04-13 20:47:06 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
|
|
|
|
|
|
|
This file is NOT part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
However, it is either an older version of a file that is, or is
|
|
|
|
some test code written during the development of Duke Nukem 3D.
|
|
|
|
This file is provided purely for educational interest.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// Private header for CONTROL.C
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
|
|
|
#ifndef _control_private
|
|
|
|
#define _control_private
|
2012-11-05 02:49:08 +00:00
|
|
|
#ifdef EXTERNC
|
|
|
|
{
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// DEFINES
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
|
|
|
#define AXISUNDEFINED 0x7f
|
|
|
|
#define BUTTONUNDEFINED 0x7f
|
|
|
|
#define KEYUNDEFINED 0x7f
|
|
|
|
|
|
|
|
#define THRESHOLD 0x200
|
|
|
|
#define MINTHRESHOLD 0x80
|
|
|
|
|
2010-06-22 21:50:01 +00:00
|
|
|
#define DEFAULTMOUSESENSITIVITY 7 // 0x7000+MINIMUMMOUSESENSITIVITY
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#define INSTANT_ONOFF 0
|
|
|
|
#define TOGGLE_ONOFF 1
|
|
|
|
|
|
|
|
#define MAXCONTROLVALUE 0x7fff
|
|
|
|
|
|
|
|
// Number of Mouse buttons
|
|
|
|
|
2013-02-25 15:31:22 +00:00
|
|
|
//#define MAXMOUSEBUTTONS 10
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
// Number of Mouse Axes
|
2013-02-25 15:31:22 +00:00
|
|
|
// KEEPINSYNC gamedefs.h
|
2006-04-13 20:47:06 +00:00
|
|
|
#define MAXMOUSEAXES 2
|
|
|
|
|
|
|
|
// Number of JOY buttons
|
2013-02-25 15:31:22 +00:00
|
|
|
// XXX: out of sync with gamedefs.h
|
2006-04-13 20:47:06 +00:00
|
|
|
#define MAXJOYBUTTONS 32
|
|
|
|
|
|
|
|
// Number of JOY axes
|
2013-02-25 15:31:22 +00:00
|
|
|
// KEEPINSYNC gamedefs.h
|
2009-12-05 09:22:43 +00:00
|
|
|
#define MAXJOYAXES 8
|
2006-12-11 04:38:10 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
// NORMAL axis scale
|
2013-02-25 15:31:22 +00:00
|
|
|
#define NORMALAXISSCALE 65536
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2009-09-09 07:19:14 +00:00
|
|
|
#define BUTTONSET(x,value) (CONTROL_ButtonState |= ((uint64_t)value<<((uint64_t)(x))))
|
|
|
|
#define BUTTONCLEAR(x) (CONTROL_ButtonState &= ~((uint64_t)1<<((uint64_t)(x))))
|
2008-11-21 12:14:05 +00:00
|
|
|
|
2009-09-09 07:19:14 +00:00
|
|
|
#define BUTTONHELDSET(x,value) (CONTROL_ButtonHeldState |= (uint64_t)(value<<((uint64_t)(x))))
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
#define LIMITCONTROL(x)\
|
|
|
|
{\
|
|
|
|
if ((*x)>MAXCONTROLVALUE) \
|
|
|
|
{\
|
|
|
|
(*x) = MAXCONTROLVALUE;\
|
|
|
|
}\
|
|
|
|
if ((*x)<-MAXCONTROLVALUE) \
|
|
|
|
{\
|
|
|
|
(*x) = -MAXCONTROLVALUE;\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
#define SGN(x) \
|
|
|
|
( ( (x) > 0 ) ? 1 : ( (x) < 0 ) ? -1 : 0 )
|
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// TYPEDEFS
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
motion_Left = -1,
|
|
|
|
motion_Up = -1,
|
|
|
|
motion_None = 0,
|
|
|
|
motion_Right = 1,
|
|
|
|
motion_Down = 1
|
|
|
|
} motion;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t joyMinX;
|
|
|
|
int32_t joyMinY;
|
|
|
|
int32_t threshMinX;
|
|
|
|
int32_t threshMinY;
|
|
|
|
int32_t threshMaxX;
|
|
|
|
int32_t threshMaxY;
|
|
|
|
int32_t joyMaxX;
|
|
|
|
int32_t joyMaxY;
|
|
|
|
int32_t joyMultXL;
|
|
|
|
int32_t joyMultYL;
|
|
|
|
int32_t joyMultXH;
|
|
|
|
int32_t joyMultYH;
|
2006-04-13 20:47:06 +00:00
|
|
|
} JoystickDef;
|
|
|
|
|
2009-04-26 05:57:42 +00:00
|
|
|
// int32_t ThrottleMin;
|
|
|
|
// int32_t RudderMin;
|
|
|
|
// int32_t ThrottlethreshMin;
|
|
|
|
// int32_t RudderthreshMin;
|
|
|
|
// int32_t ThrottlethreshMax;
|
|
|
|
// int32_t RudderthreshMax;
|
|
|
|
// int32_t ThrottleMax;
|
|
|
|
// int32_t RudderMax;
|
|
|
|
// int32_t ThrottleMultL;
|
|
|
|
// int32_t RudderMultL;
|
|
|
|
// int32_t ThrottleMultH;
|
|
|
|
// int32_t RudderMultH;
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-08-20 21:24:54 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
uint8_t active ;
|
|
|
|
uint8_t used ;
|
|
|
|
uint8_t toggle ;
|
|
|
|
uint8_t buttonheld ;
|
|
|
|
int32_t cleared ;
|
2006-04-13 20:47:06 +00:00
|
|
|
} controlflags;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
kb_scancode key1;
|
|
|
|
kb_scancode key2;
|
|
|
|
} controlkeymaptype;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
uint8_t singleclicked;
|
|
|
|
uint8_t doubleclicked;
|
|
|
|
uint16_t extra;
|
2006-04-13 20:47:06 +00:00
|
|
|
} controlbuttontype;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
uint8_t analogmap;
|
|
|
|
uint8_t minmap;
|
|
|
|
uint8_t maxmap;
|
|
|
|
uint8_t extra;
|
2006-04-13 20:47:06 +00:00
|
|
|
} controlaxismaptype;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-26 05:57:42 +00:00
|
|
|
int32_t analog;
|
|
|
|
int32_t digital;
|
2006-04-13 20:47:06 +00:00
|
|
|
} controlaxistype;
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
//
|
|
|
|
// PROTOTYPES
|
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
2012-11-05 02:49:08 +00:00
|
|
|
#ifdef EXTERNC
|
2006-04-13 20:47:06 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|