mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Moved a few things in mact around while I stared at it thinking about what to do with it
git-svn-id: https://svn.eduke32.com/eduke32@7214 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
022eb02c5e
commit
b3195ad6b4
1 changed files with 23 additions and 24 deletions
|
@ -6,15 +6,13 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "_control.h"
|
||||||
|
#include "baselayer.h"
|
||||||
#include "compat.h"
|
#include "compat.h"
|
||||||
|
#include "control.h"
|
||||||
|
#include "joystick.h"
|
||||||
#include "keyboard.h"
|
#include "keyboard.h"
|
||||||
#include "mouse.h"
|
#include "mouse.h"
|
||||||
#include "joystick.h"
|
|
||||||
#include "control.h"
|
|
||||||
#include "_control.h"
|
|
||||||
|
|
||||||
#include "baselayer.h"
|
|
||||||
#include "osd.h"
|
#include "osd.h"
|
||||||
#include "pragmas.h"
|
#include "pragmas.h"
|
||||||
|
|
||||||
|
@ -23,15 +21,14 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool CONTROL_Started = false;
|
bool CONTROL_Started = false;
|
||||||
|
bool CONTROL_MouseEnabled = false;
|
||||||
|
bool CONTROL_MousePresent = false;
|
||||||
bool CONTROL_JoyPresent = false;
|
bool CONTROL_JoyPresent = false;
|
||||||
bool CONTROL_JoystickEnabled = false;
|
bool CONTROL_JoystickEnabled = false;
|
||||||
bool CONTROL_MousePresent = false;
|
|
||||||
bool CONTROL_MouseEnabled = false;
|
|
||||||
|
|
||||||
uint64_t CONTROL_ButtonState = 0;
|
uint64_t CONTROL_ButtonState = 0;
|
||||||
uint64_t CONTROL_ButtonHeldState = 0;
|
uint64_t CONTROL_ButtonHeldState = 0;
|
||||||
|
|
||||||
// static int32_t CONTROL_UserInputDelay = -1;
|
|
||||||
float CONTROL_MouseSensitivity = DEFAULTMOUSESENSITIVITY;
|
float CONTROL_MouseSensitivity = DEFAULTMOUSESENSITIVITY;
|
||||||
static int32_t CONTROL_NumMouseButtons = 0;
|
static int32_t CONTROL_NumMouseButtons = 0;
|
||||||
static int32_t CONTROL_NumMouseAxes = 0;
|
static int32_t CONTROL_NumMouseAxes = 0;
|
||||||
|
@ -39,31 +36,33 @@ static int32_t CONTROL_NumJoyButtons = 0;
|
||||||
static int32_t CONTROL_NumJoyAxes = 0;
|
static int32_t CONTROL_NumJoyAxes = 0;
|
||||||
|
|
||||||
static controlflags CONTROL_Flags[CONTROL_NUM_FLAGS];
|
static controlflags CONTROL_Flags[CONTROL_NUM_FLAGS];
|
||||||
static controlbuttontype CONTROL_MouseButtonMapping[MAXMOUSEBUTTONS];
|
|
||||||
static controlbuttontype CONTROL_JoyButtonMapping[MAXJOYBUTTONS];
|
|
||||||
|
|
||||||
// static controlkeymaptype CONTROL_KeyMapping[CONTROL_NUM_FLAGS];
|
// static controlkeymaptype CONTROL_KeyMapping[CONTROL_NUM_FLAGS];
|
||||||
|
|
||||||
static controlaxismaptype CONTROL_MouseAxesMap[MAXMOUSEAXES]; // maps physical axes onto virtual ones
|
static controlaxismaptype CONTROL_MouseAxesMap[MAXMOUSEAXES]; // maps physical axes onto virtual ones
|
||||||
static controlaxismaptype CONTROL_JoyAxesMap[MAXJOYAXES];
|
|
||||||
|
|
||||||
static controlaxistype CONTROL_MouseAxes[MAXMOUSEAXES]; // physical axes
|
static controlaxistype CONTROL_MouseAxes[MAXMOUSEAXES]; // physical axes
|
||||||
static controlaxistype CONTROL_JoyAxes[MAXJOYAXES];
|
|
||||||
static controlaxistype CONTROL_LastMouseAxes[MAXMOUSEAXES];
|
static controlaxistype CONTROL_LastMouseAxes[MAXMOUSEAXES];
|
||||||
static controlaxistype CONTROL_LastJoyAxes[MAXJOYAXES];
|
|
||||||
|
|
||||||
static int32_t CONTROL_MouseAxesScale[MAXMOUSEAXES];
|
static int32_t CONTROL_MouseAxesScale[MAXMOUSEAXES];
|
||||||
|
|
||||||
|
static controlaxismaptype CONTROL_JoyAxesMap[MAXJOYAXES];
|
||||||
|
static controlaxistype CONTROL_JoyAxes[MAXJOYAXES];
|
||||||
|
static controlaxistype CONTROL_LastJoyAxes[MAXJOYAXES];
|
||||||
static int32_t CONTROL_JoyAxesScale[MAXJOYAXES];
|
static int32_t CONTROL_JoyAxesScale[MAXJOYAXES];
|
||||||
|
|
||||||
static int32_t CONTROL_MouseButtonState[MAXMOUSEBUTTONS];
|
static controlbuttontype CONTROL_MouseButtonMapping[MAXMOUSEBUTTONS];
|
||||||
static int32_t CONTROL_MouseButtonClickedTime[MAXMOUSEBUTTONS];
|
|
||||||
static int32_t CONTROL_MouseButtonClickedState[MAXMOUSEBUTTONS];
|
|
||||||
static int32_t CONTROL_MouseButtonClicked[MAXMOUSEBUTTONS];
|
static int32_t CONTROL_MouseButtonClicked[MAXMOUSEBUTTONS];
|
||||||
|
static int32_t CONTROL_MouseButtonClickedState[MAXMOUSEBUTTONS];
|
||||||
|
static int32_t CONTROL_MouseButtonClickedTime[MAXMOUSEBUTTONS];
|
||||||
|
static int32_t CONTROL_MouseButtonState[MAXMOUSEBUTTONS];
|
||||||
static uint8_t CONTROL_MouseButtonClickedCount[MAXMOUSEBUTTONS];
|
static uint8_t CONTROL_MouseButtonClickedCount[MAXMOUSEBUTTONS];
|
||||||
|
|
||||||
static int32_t CONTROL_JoyButtonState[MAXJOYBUTTONS];
|
static controlbuttontype CONTROL_JoyButtonMapping[MAXJOYBUTTONS];
|
||||||
static int32_t CONTROL_JoyButtonClickedTime[MAXJOYBUTTONS];
|
|
||||||
static int32_t CONTROL_JoyButtonClickedState[MAXJOYBUTTONS];
|
|
||||||
static int32_t CONTROL_JoyButtonClicked[MAXJOYBUTTONS];
|
static int32_t CONTROL_JoyButtonClicked[MAXJOYBUTTONS];
|
||||||
|
static int32_t CONTROL_JoyButtonClickedState[MAXJOYBUTTONS];
|
||||||
|
static int32_t CONTROL_JoyButtonClickedTime[MAXJOYBUTTONS];
|
||||||
|
static int32_t CONTROL_JoyButtonState[MAXJOYBUTTONS];
|
||||||
static uint8_t CONTROL_JoyButtonClickedCount[MAXJOYBUTTONS];
|
static uint8_t CONTROL_JoyButtonClickedCount[MAXJOYBUTTONS];
|
||||||
|
|
||||||
static int32_t(*ExtGetTime)(void);
|
static int32_t(*ExtGetTime)(void);
|
||||||
|
|
Loading…
Reference in a new issue