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
|
|
|
|
2001-10-28 04:23:37 +00:00
|
|
|
#include "QF/keys.h"
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
typedef struct in_buttoninfo_s {
|
|
|
|
int deviceid;
|
|
|
|
int button;
|
|
|
|
int state;
|
|
|
|
} in_buttoninfo_t;
|
|
|
|
|
|
|
|
#ifndef __QFCC__
|
2021-09-26 06:11:07 +00:00
|
|
|
|
|
|
|
#include <sys/select.h>
|
|
|
|
|
2001-10-23 16:55:23 +00:00
|
|
|
typedef struct {
|
2001-04-11 07:57:08 +00:00
|
|
|
vec3_t angles;
|
|
|
|
vec3_t position;
|
2001-10-23 16:55:23 +00:00
|
|
|
} viewdelta_t;
|
|
|
|
|
2021-08-30 05:40:19 +00:00
|
|
|
typedef struct in_driver_s {
|
2021-08-30 00:54:36 +00:00
|
|
|
void (*init) (void *data);
|
|
|
|
void (*shutdown) (void *data);
|
2021-09-26 06:11:07 +00:00
|
|
|
|
|
|
|
// The driver must provide either both or none of add_select and
|
|
|
|
// chec_select.
|
|
|
|
void (*add_select) (fd_set *fdset, int *maxfd, void *data);
|
|
|
|
void (*check_select) (fd_set *fdset, void *data);
|
|
|
|
// 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-08-27 00:10:21 +00:00
|
|
|
} in_driver_t;
|
|
|
|
|
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-08-30 05:40:19 +00:00
|
|
|
} in_device_t;
|
|
|
|
|
2001-10-23 16:55:23 +00:00
|
|
|
extern viewdelta_t viewdelta;
|
2001-04-11 07:57:08 +00:00
|
|
|
|
2001-05-19 23:24:20 +00:00
|
|
|
#define freelook (in_mlook.state & 1 || in_freelook->int_val)
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2012-02-01 11:07:21 +00:00
|
|
|
struct cvar_s;
|
2001-09-18 04:53:01 +00:00
|
|
|
|
2021-08-30 00:54:36 +00:00
|
|
|
int IN_RegisterDriver (in_driver_t *driver, void *data);
|
|
|
|
void IN_DriverData (int handlle, void *data);
|
2012-02-01 12:52:47 +00:00
|
|
|
void IN_Init (struct cbuf_s *cbuf);
|
2001-04-10 21:01:29 +00:00
|
|
|
void IN_Init_Cvars (void);
|
|
|
|
|
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);
|
|
|
|
const char *IN_GetDeviceName (int devid);
|
|
|
|
const char *IN_GetDeviceId (int devid);
|
|
|
|
int IN_AxisInfo (int devid, in_axisinfo_t *axes, int *numaxes);
|
|
|
|
int IN_ButtonInfo (int devid, in_buttoninfo_t *button, int *numbuttons);
|
|
|
|
|
2003-04-08 18:45:12 +00:00
|
|
|
void IN_ProcessEvents (void);
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2003-04-08 18:45:12 +00:00
|
|
|
void IN_UpdateGrab (struct cvar_s *);
|
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
|
|
|
|
2001-04-11 07:57:08 +00:00
|
|
|
void IN_Move (void); // FIXME: was cmduser_t?
|
2001-04-10 21:01:29 +00:00
|
|
|
// add additional movement on top of the keyboard move cmd
|
|
|
|
|
2001-08-30 20:04:13 +00:00
|
|
|
extern struct cvar_s *in_grab;
|
2001-10-28 04:23:37 +00:00
|
|
|
extern struct cvar_s *in_amp;
|
|
|
|
extern struct cvar_s *in_pre_amp;
|
2001-05-31 03:41:35 +00:00
|
|
|
extern struct cvar_s *m_filter;
|
2003-09-04 22:29:40 +00:00
|
|
|
extern struct cvar_s *in_mouse_accel;
|
2001-05-31 03:41:35 +00:00
|
|
|
extern struct cvar_s *in_freelook;
|
|
|
|
extern struct cvar_s *lookstrafe;
|
2001-04-10 21:01:29 +00:00
|
|
|
|
2001-05-19 23:24:20 +00:00
|
|
|
extern qboolean in_mouse_avail;
|
|
|
|
extern float in_mouse_x, in_mouse_y;
|
2001-04-15 07:18:04 +00:00
|
|
|
|
|
|
|
|
2001-10-28 04:23:37 +00:00
|
|
|
extern kbutton_t in_strafe, in_klook, in_speed, in_mlook;
|
2021-09-20 06:21:11 +00:00
|
|
|
#endif
|
2001-10-28 04:23:37 +00:00
|
|
|
|
2020-02-24 03:21:20 +00:00
|
|
|
#endif//__QF_input_h
|