dxx-rebirth/main/kconfig.h

88 lines
2.7 KiB
C

/* $Id: kconfig.h,v 1.1.1.1 2006/03/17 19:57:17 zicodxx Exp $ */
/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Prototypes for reading controls
*
*/
#ifndef _KCONFIG_H
#define _KCONFIG_H
#include "config.h"
#include "gamestat.h"
#include "event.h"
#include "key.h"
#include "joy.h"
#include "mouse.h"
typedef struct _control_info {
fix joy_axis[JOY_MAX_AXES], raw_joy_axis[JOY_MAX_AXES], mouse_axis[3], raw_mouse_axis[3];
fix pitch_time;
fix vertical_thrust_time;
fix heading_time;
fix sideways_thrust_time;
fix bank_time;
fix forward_thrust_time;
ubyte pitch_forward_state, pitch_backward_state;
ubyte heading_left_state, heading_right_state;
ubyte slide_on_state, slide_left_state, slide_right_state, slide_up_state, slide_down_state;
ubyte bank_on_state, bank_left_state, bank_right_state;
ubyte accelerate_state, reverse_state;
ubyte cruise_plus_state, cruise_minus_state, cruise_off_count;
ubyte rear_view_state;
ubyte rear_view_count;
ubyte fire_primary_state;
ubyte fire_primary_count;
ubyte fire_secondary_state;
ubyte fire_secondary_count;
ubyte fire_flare_count;
ubyte drop_bomb_count;
ubyte toggle_bomb_count;
ubyte automap_state;
ubyte automap_count;
ubyte cycle_primary_count;
ubyte cycle_secondary_count;
ubyte select_weapon_count;
ubyte afterburner_state;
ubyte headlight_count;
ubyte energy_to_shield_state;
} control_info;
#define CONTROL_USING_JOYSTICK 1
#define CONTROL_USING_MOUSE 2
#define MOUSEFS_DELTA_RANGE 512
#define NUM_D2X_CONTROLS 30
#define MAX_D2X_CONTROLS 30
#define NUM_KEY_CONTROLS 57
#define NUM_JOYSTICK_CONTROLS 56
#define NUM_MOUSE_CONTROLS 30
#define MAX_CONTROLS 60 // there are actually 48, so this leaves room for more
extern control_info Controls;
extern void kconfig_read_controls(d_event *event, int automap_flag);
extern void kconfig(int n, char *title);
extern ubyte DefaultKeySettingsD2X[MAX_D2X_CONTROLS];
extern ubyte DefaultKeySettings[3][MAX_CONTROLS];
extern void kc_set_controls();
//set the cruise speed to zero
extern void reset_cruise(void);
#endif /* _KCONFIG_H */