Descent3/linux/lnxcontroller.h
2024-08-15 11:47:43 +03:00

192 lines
6.4 KiB
C++

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __LNXCONTROLLER_H_
#define __LNXCONTROLLER_H_
#include "Controller.h"
#include "joystick.h"
#define NULL_LNXCONTROLLER ((int8_t)NULL_CONTROLLER)
const int CTF_POV = 64, // POV control
CTF_POV2 = 128, // POV 2
CTF_POV3 = 256, // POV 3
CTF_POV4 = 512; // POV 4
const unsigned CTF_X_AXIS = (1 << (CT_X_AXIS - 1)), // AXIS constants for ctAxis
CTF_Y_AXIS = (1 << (CT_Y_AXIS - 1)), CTF_Z_AXIS = (1 << (CT_Z_AXIS - 1)), CTF_R_AXIS = (1 << (CT_R_AXIS - 1)),
CTF_U_AXIS = (1 << (CT_U_AXIS - 1)), CTF_V_AXIS = (1 << (CT_V_AXIS - 1));
const int CT_MAX_CONTROLLERS = 32, CT_MAX_ELEMENTS = 255, CT_MAX_EXTCTLS = 16, CT_MAX_BUTTONS = 32;
// rules for adding controllers
// any nonstandard special controllers should be added to the below list starting at
// CTID_MOUSE-1 (meaning a value of -3, -4 and so on)
const int CTID_KEYBOARD = -1, // always -1 for keyboards
CTID_MOUSE = -2, // always -2 for mice
CTID_INVALID = -3; // invalid controller
// External controls
// these are standard controllers handled through DDIO interface
// like joysticks, etc.
const int CTID_EXTCONTROL0 = 0;
class lnxgameController : public gameController {
public:
lnxgameController(int num_funcs, ct_function *funcs);
~lnxgameController();
// these functions suspend or resume any controller reading. this is really only useful for
// preemptive controller polling, but they should be used to activate and deactivate controller
// reading.
virtual void suspend();
virtual void resume();
// this functions polls the controllers if needed. some systems may not need to implement
// this function.
virtual void poll();
// flushes all controller information
virtual void flush();
// returns the value of a requested controller type. make sure you flush the controller before polling.
virtual ct_config_data get_controller_value(ct_type type_req);
// sets the configuration of a function (type must be of an array == CTLBINDS_PER_FUNC)
virtual void set_controller_function(int id, const ct_type *type, ct_config_data value, const uint8_t *flags);
// returns information about a requested function (type must be of an array == CTLBINDS_PER_FUNC)
virtual void get_controller_function(int id, ct_type *type, ct_config_data *value, uint8_t *flags);
// temporarily enables or disables a function
virtual void enable_function(int id, bool enable);
// all systems need to implement this function. this returns information about the controller
virtual bool get_packet(int id, ct_packet *packet, ct_format alt_format = ctNoFormat);
// gets sensitivity of axis item
virtual float get_axis_sensitivity(ct_type axis_type, uint8_t axis);
// sets sensitivity of axis item
virtual void set_axis_sensitivity(ct_type axis_type, uint8_t axis, float val);
// assigns an individual function
virtual int assign_function(ct_function *fn);
// activates or deactivates mouse and or controller
virtual void mask_controllers(bool joystick, bool mouse);
// get raw values for the controllers
virtual int get_mouse_raw_values(int *x, int *y);
virtual unsigned get_joy_raw_values(int *x, int *y);
// retrieves binding text for desired function, binding, etc.
virtual const char *get_binding_text(ct_type type, uint8_t ctrl, uint8_t bind);
// toggles use of deadzone for controllers
void set_controller_deadzone(int ctl, float deadzone);
private:
int m_NumControls; // number of controllers available
int m_Suspended; // is controller polling suspended?
bool m_JoyActive, m_MouseActive; // enables or disables mouse, joystick control
struct t_controller {
int id;
uint16_t flags;
uint16_t buttons;
unsigned btnmask;
float normalizer[CT_NUM_AXES];
float sens[CT_NUM_AXES];
float sensmod[CT_NUM_AXES];
float deadzone;
} m_ControlList[CT_MAX_CONTROLLERS]; // the control list.
struct ct_element {
ct_format format;
int8_t ctl[CTLBINDS_PER_FUNC];
uint8_t value[CTLBINDS_PER_FUNC];
ct_type ctype[CTLBINDS_PER_FUNC];
uint8_t flags[2];
bool enabled;
} m_ElementList[CT_MAX_ELEMENTS];
bool enum_controllers();
// sets up an elements information structure
void assign_element(int id, ct_element *elem);
// this returns an index into the control list.
int8_t get_axis_controller(uint8_t axis);
// returns controller with specified button
int8_t get_button_controller(uint8_t btn);
// returns the controller with a pov hat
int8_t get_pov_controller(uint8_t pov);
// note controller is index into ControlList.
float get_axis_value(int8_t controller, uint8_t axis, ct_format format, bool invert = false);
// get value of button in seconds, presses, etc.
float get_button_value(int8_t controller, ct_format format, uint8_t button);
// get value of pov (using JOYPOV values)
float get_pov_value(int8_t controller, ct_format format, uint8_t pov_number, uint8_t pov);
// get keyboard info
float get_key_value(int key, ct_format format);
void parse_ctl_file(int devnum, const char *ctlname);
private:
struct t_msestate {
int x, y, z;
int mx, my;
unsigned btnmask;
} m_MseState;
struct t_extctlstate {
int x, y, z, r, u, v;
int pov[JOYPOV_NUM];
int last_pov[JOYPOV_NUM];
float povstarts[JOYPOV_NUM][JOYPOV_DIR];
float povtimes[JOYPOV_NUM][JOYPOV_DIR];
uint8_t povpresses[JOYPOV_NUM][JOYPOV_DIR];
unsigned buttons;
uint8_t btnpresses[CT_MAX_BUTTONS];
float btnstarts[CT_MAX_BUTTONS];
float btntimes[CT_MAX_BUTTONS];
} m_ExtCtlStates[CT_MAX_EXTCTLS];
// thread info.
int64_t m_frame_timer_ms;
float m_frame_time;
// note id is id value from controller in control list.
void extctl_getpos(int id);
// this gets timings for mouse buttons
void mouse_geteval();
};
#endif