quakeforge/include/QF/input.h

118 lines
2.9 KiB
C
Raw Normal View History

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
*/
#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"
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__
typedef struct {
vec3_t angles;
vec3_t position;
} viewdelta_t;
typedef struct in_driver_s {
void (*init) (void *data);
void (*shutdown) (void *data);
void (*process_events) (void *data);
void (*clear_states) (void *data);
void (*grab_input) (void *data, int grab);
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);
} in_driver_t;
typedef struct in_device_s {
int driverid;
void *device;
const char *name;
const char *id;
} in_device_t;
extern viewdelta_t viewdelta;
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
struct cvar_s;
int IN_RegisterDriver (in_driver_t *driver, void *data);
void IN_DriverData (int handlle, void *data);
void IN_Init (struct cbuf_s *cbuf);
2001-04-10 21:01:29 +00:00
void IN_Init_Cvars (void);
int IN_AddDevice (int driver, void *device, const char *name, const char *id);
void IN_RemoveDevice (int devid);
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);
void IN_ProcessEvents (void);
2001-04-10 21:01:29 +00:00
void IN_UpdateGrab (struct cvar_s *);
2002-01-17 22:04:58 +00:00
void IN_ClearStates (void);
2001-04-10 21:01:29 +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
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-10-28 04:23:37 +00:00
extern kbutton_t in_strafe, in_klook, in_speed, in_mlook;
#endif
2001-10-28 04:23:37 +00:00
#endif//__QF_input_h