2001-04-10 21:01:29 +00:00
|
|
|
/*
|
|
|
|
input.h
|
|
|
|
|
|
|
|
External (non-keyboard) input devices
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#ifndef __QF_input_h
|
|
|
|
#define __QF_input_h
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2022-04-12 12:01:41 +00:00
|
|
|
/** \defgroup input Input Sub-system */
|
|
|
|
///@{
|
2022-05-15 02:59:50 +00:00
|
|
|
|
|
|
|
/// input axis info
|
2021-09-20 06:21:11 +00:00
|
|
|
typedef struct in_axisinfo_s {
|
|
|
|
int deviceid;
|
|
|
|
int axis;
|
|
|
|
int value;
|
|
|
|
int min;
|
|
|
|
int max;
|
|
|
|
} in_axisinfo_t;
|
|
|
|
|
2022-05-15 02:59:50 +00:00
|
|
|
/// input button info
|
2021-09-20 06:21:11 +00:00
|
|
|
typedef struct in_buttoninfo_s {
|
|
|
|
int deviceid;
|
|
|
|
int button;
|
|
|
|
int state;
|
|
|
|
} in_buttoninfo_t;
|
|
|
|
|
2021-11-01 04:05:05 +00:00
|
|
|
#include "QF/input/binding.h"
|
2021-11-03 10:02:39 +00:00
|
|
|
#include "QF/input/imt.h"
|
2021-11-01 04:05:05 +00:00
|
|
|
|
2021-09-20 06:21:11 +00:00
|
|
|
#ifndef __QFCC__
|
2021-09-26 06:11:07 +00:00
|
|
|
|
2021-09-28 01:53:51 +00:00
|
|
|
struct qf_fd_set;
|
|
|
|
|
2022-05-15 02:59:50 +00:00
|
|
|
/// driver interface
|
2021-08-30 05:40:19 +00:00
|
|
|
typedef struct in_driver_s {
|
2021-11-21 02:33:58 +00:00
|
|
|
void (*init_cvars) (void *data);
|
2021-08-30 00:54:36 +00:00
|
|
|
void (*init) (void *data);
|
|
|
|
void (*shutdown) (void *data);
|
2021-09-26 06:11:07 +00:00
|
|
|
|
2021-11-09 13:31:09 +00:00
|
|
|
void (*set_device_event_data) (void *device, void *event_data, void *data);
|
|
|
|
void *(*get_device_event_data) (void *device, void *data);
|
|
|
|
|
2021-09-26 06:11:07 +00:00
|
|
|
// The driver must provide either both or none of add_select and
|
|
|
|
// chec_select.
|
2021-09-28 01:53:51 +00:00
|
|
|
void (*add_select) (struct qf_fd_set *fdset, int *maxfd, void *data);
|
|
|
|
void (*check_select) (struct qf_fd_set *fdset, void *data);
|
2021-09-26 06:11:07 +00:00
|
|
|
// Generally musually exclusive with add_select/check_select
|
2021-08-30 00:54:36 +00:00
|
|
|
void (*process_events) (void *data);
|
2021-09-26 06:11:07 +00:00
|
|
|
|
2021-08-30 00:54:36 +00:00
|
|
|
void (*clear_states) (void *data);
|
|
|
|
void (*grab_input) (void *data, int grab);
|
2021-09-20 06:21:11 +00:00
|
|
|
|
|
|
|
void (*axis_info) (void *data, void *device, in_axisinfo_t *axes,
|
|
|
|
int *numaxes);
|
|
|
|
void (*button_info) (void *data, void *device, in_buttoninfo_t *buttons,
|
|
|
|
int *numbuttons);
|
2021-11-18 03:59:18 +00:00
|
|
|
// null means either invalid number or the name is not known
|
|
|
|
const char *(*get_axis_name) (void *data, void *device, int axis_num);
|
|
|
|
const char *(*get_button_name) (void *data, void *device, int button_num);
|
|
|
|
// -1 for invalid name
|
|
|
|
int (*get_axis_num) (void *data, void *device, const char *axis_name);
|
|
|
|
int (*get_button_num) (void *data, void *device, const char *button_name);
|
2021-12-21 08:42:38 +00:00
|
|
|
// null means invalid number
|
|
|
|
int (*get_axis_info) (void *data, void *device, int axis_num,
|
|
|
|
in_axisinfo_t *info);
|
|
|
|
int (*get_button_info) (void *data, void *device, int button_num,
|
|
|
|
in_buttoninfo_t *info);
|
2021-08-27 00:10:21 +00:00
|
|
|
} in_driver_t;
|
|
|
|
|
2022-05-15 02:59:50 +00:00
|
|
|
/// device info
|
2021-08-30 05:40:19 +00:00
|
|
|
typedef struct in_device_s {
|
|
|
|
int driverid;
|
|
|
|
void *device;
|
|
|
|
const char *name;
|
2021-09-20 06:21:11 +00:00
|
|
|
const char *id;
|
2021-11-09 13:31:09 +00:00
|
|
|
void *event_data;
|
2021-08-30 05:40:19 +00:00
|
|
|
} in_device_t;
|
|
|
|
|
2021-08-30 00:54:36 +00:00
|
|
|
int IN_RegisterDriver (in_driver_t *driver, void *data);
|
|
|
|
void IN_DriverData (int handlle, void *data);
|
2021-11-18 06:33:49 +00:00
|
|
|
void IN_Init (void);
|
2001-04-10 21:01:29 +00:00
|
|
|
void IN_Init_Cvars (void);
|
2021-11-14 01:17:05 +00:00
|
|
|
struct plitem_s;
|
|
|
|
void IN_SaveConfig (struct plitem_s *config);
|
|
|
|
void IN_LoadConfig (struct plitem_s *config);
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2021-09-20 06:21:11 +00:00
|
|
|
int IN_AddDevice (int driver, void *device, const char *name, const char *id);
|
2021-08-30 05:40:19 +00:00
|
|
|
void IN_RemoveDevice (int devid);
|
|
|
|
|
2021-09-20 06:21:11 +00:00
|
|
|
void IN_SendConnectedDevices (void);
|
2021-12-20 15:47:13 +00:00
|
|
|
int IN_FindDeviceId (const char *id) __attribute__((pure));
|
2021-09-28 01:53:51 +00:00
|
|
|
const char *IN_GetDeviceName (int devid) __attribute__((pure));
|
|
|
|
const char *IN_GetDeviceId (int devid) __attribute__((pure));
|
2021-11-09 13:31:09 +00:00
|
|
|
void IN_SetDeviceEventData (int devid, void *data);
|
|
|
|
void *IN_GetDeviceEventData (int devid);
|
2021-09-20 06:21:11 +00:00
|
|
|
int IN_AxisInfo (int devid, in_axisinfo_t *axes, int *numaxes);
|
|
|
|
int IN_ButtonInfo (int devid, in_buttoninfo_t *button, int *numbuttons);
|
2021-11-18 03:59:18 +00:00
|
|
|
const char *IN_GetAxisName (int devid, int axis_num);
|
|
|
|
const char *IN_GetButtonName (int devid, int button_num);
|
|
|
|
int IN_GetAxisNumber (int devid, const char *axis_name);
|
|
|
|
int IN_GetButtonNumber (int devid, const char *button_name);
|
2021-12-21 08:42:38 +00:00
|
|
|
int IN_GetAxisInfo (int devid, int axis_num, in_axisinfo_t *info);
|
|
|
|
int IN_GetButtonInfo (int devid, int button_num, in_buttoninfo_t *info);
|
2021-09-20 06:21:11 +00:00
|
|
|
|
2003-04-08 18:45:12 +00:00
|
|
|
void IN_ProcessEvents (void);
|
2001-04-10 21:01:29 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
void IN_UpdateGrab (int grab);
|
2002-01-17 22:04:58 +00:00
|
|
|
|
2003-04-08 18:45:12 +00:00
|
|
|
void IN_ClearStates (void);
|
2001-04-10 21:01:29 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
extern int in_grab;
|
|
|
|
extern float in_amp;
|
|
|
|
extern float in_pre_amp;
|
|
|
|
extern int in_mouse_accel;
|
|
|
|
extern int in_freelook;
|
2022-04-24 08:57:20 +00:00
|
|
|
extern int lookstrafe;
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2021-09-20 06:21:11 +00:00
|
|
|
#endif
|
2001-10-28 04:23:37 +00:00
|
|
|
|
2022-04-12 12:01:41 +00:00
|
|
|
///@}
|
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#endif//__QF_input_h
|