2010-04-02 02:48:24 +00:00
|
|
|
#ifndef _DEVICEINTERFACE_H_
|
|
|
|
#define _DEVICEINTERFACE_H_
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
#include <map>
|
|
|
|
#include <algorithm>
|
2010-04-10 20:44:56 +00:00
|
|
|
#include "Common.h"
|
2010-04-02 02:48:24 +00:00
|
|
|
|
|
|
|
// enable disable sources
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define CIFACE_USE_XINPUT
|
|
|
|
#define CIFACE_USE_DIRECTINPUT_JOYSTICK
|
|
|
|
#define CIFACE_USE_DIRECTINPUT_KBM
|
|
|
|
#define CIFACE_USE_DIRECTINPUT
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
|
|
|
#define CIFACE_USE_XLIB
|
|
|
|
#endif
|
2010-06-05 05:30:23 +00:00
|
|
|
//#ifndef CIFACE_USE_DIRECTINPUT_JOYSTICK
|
|
|
|
// enable SDL 1.2 in addition to DirectInput on windows,
|
|
|
|
// to support a few gamepads that aren't behaving with DInput
|
2010-04-02 02:48:24 +00:00
|
|
|
#define CIFACE_USE_SDL
|
2010-06-05 05:30:23 +00:00
|
|
|
//#endif
|
2010-04-02 09:41:43 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#define CIFACE_USE_OSX
|
|
|
|
#endif
|
2010-04-02 02:48:24 +00:00
|
|
|
|
|
|
|
// idk in case i wanted to change it to double or somethin, idk what's best
|
|
|
|
typedef float ControlState;
|
|
|
|
|
|
|
|
//
|
|
|
|
// ControllerInterface
|
|
|
|
//
|
|
|
|
// some crazy shit i made to control different device inputs and outputs
|
|
|
|
// from lots of different sources, hopefully more easily
|
|
|
|
//
|
|
|
|
class ControllerInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//
|
|
|
|
// Device
|
|
|
|
//
|
|
|
|
// Pretty obviously, a device class
|
|
|
|
//
|
|
|
|
class Device
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//
|
|
|
|
// Control
|
|
|
|
//
|
|
|
|
// control includes inputs and outputs
|
|
|
|
//
|
|
|
|
class Control // input or output
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual std::string GetName() const = 0;
|
2010-04-24 00:44:10 +00:00
|
|
|
virtual ~Control() {}
|
2010-04-02 02:48:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Input
|
|
|
|
//
|
|
|
|
// an input on a device
|
|
|
|
//
|
|
|
|
class Input : public Control
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Input() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Output
|
|
|
|
//
|
2010-04-29 18:51:04 +00:00
|
|
|
// an output on a device
|
2010-04-02 02:48:24 +00:00
|
|
|
//
|
|
|
|
class Output : public Control
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Output() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual ~Device();
|
|
|
|
|
|
|
|
virtual std::string GetName() const = 0;
|
|
|
|
virtual int GetId() const = 0;
|
|
|
|
virtual std::string GetSource() const = 0;
|
|
|
|
|
|
|
|
virtual ControlState GetInputState( const Input* const input ) = 0;
|
|
|
|
virtual void SetOutputState( const Output* const output, const ControlState state ) = 0;
|
|
|
|
|
|
|
|
virtual bool UpdateInput() = 0;
|
|
|
|
virtual bool UpdateOutput() = 0;
|
|
|
|
|
|
|
|
virtual void ClearInputState();
|
|
|
|
|
|
|
|
const std::vector< Input* >& Inputs();
|
|
|
|
const std::vector< Output* >& Outputs();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::vector<Input*> inputs;
|
|
|
|
std::vector<Output*> outputs;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// DeviceQualifier
|
|
|
|
//
|
|
|
|
// device qualifier used to match devices
|
|
|
|
// currently has ( source, id, name ) properties which match a device
|
|
|
|
//
|
|
|
|
class DeviceQualifier
|
|
|
|
{
|
|
|
|
public:
|
2010-04-02 09:41:43 +00:00
|
|
|
DeviceQualifier() : cid(-1){}
|
2010-04-02 02:48:24 +00:00
|
|
|
DeviceQualifier( const std::string& _source, const int _id, const std::string& _name )
|
2010-04-02 09:41:43 +00:00
|
|
|
: source(_source), cid(_id), name(_name) {}
|
2010-04-02 02:48:24 +00:00
|
|
|
bool operator==(const Device* const dev) const;
|
|
|
|
void FromDevice(const Device* const dev);
|
|
|
|
void FromString(const std::string& str);
|
|
|
|
std::string ToString() const;
|
|
|
|
|
|
|
|
std::string source;
|
2010-04-02 09:41:43 +00:00
|
|
|
int cid;
|
2010-04-02 02:48:24 +00:00
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// ControlQualifier
|
|
|
|
//
|
|
|
|
// control qualifier includes input and output qualifiers
|
|
|
|
// used to match controls on devices, only has name property
|
|
|
|
// |input1|input2| form as well, || matches anything, might change this to * or something
|
|
|
|
//
|
|
|
|
class ControlQualifier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ControlQualifier() {};
|
|
|
|
ControlQualifier( const std::string& _name ) : name(_name) {}
|
2010-04-24 00:44:10 +00:00
|
|
|
virtual ~ControlQualifier() {}
|
|
|
|
|
2010-04-02 02:48:24 +00:00
|
|
|
virtual bool operator==(const Device::Control* const in) const;
|
|
|
|
void FromControl(const Device::Control* const in);
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// InputQualifier
|
|
|
|
//
|
|
|
|
// ControlQualifier for inputs
|
|
|
|
//
|
|
|
|
class InputQualifier : public ControlQualifier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InputQualifier() {};
|
|
|
|
InputQualifier( const std::string& _name ) : ControlQualifier(_name) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// OutputQualifier
|
|
|
|
//
|
|
|
|
// ControlQualifier for outputs
|
|
|
|
//
|
|
|
|
class OutputQualifier : public ControlQualifier
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OutputQualifier() {};
|
|
|
|
OutputQualifier( const std::string& _name ) : ControlQualifier(_name) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// ControlReference
|
|
|
|
//
|
|
|
|
// these are what you create to actually use the inputs, InputReference or OutputReference
|
2010-04-29 18:51:04 +00:00
|
|
|
// they have a DeviceQualifier and ControlQualifier used to match 1 or more inputs
|
2010-04-02 02:48:24 +00:00
|
|
|
//
|
|
|
|
// after being binded to devices and controls with ControllerInterface::UpdateReference,
|
|
|
|
// each one can binded to a devices, and 0+ controls the device
|
|
|
|
// ControlReference can update its own controls when you change its control qualifier
|
|
|
|
// using ControlReference::UpdateControls but when you change its device qualifer
|
|
|
|
// you must use ControllerInterface::UpdateReference
|
|
|
|
//
|
|
|
|
class ControlReference
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ControlReference( const bool _is_input ) : range(1), is_input(_is_input), device(NULL) {}
|
2010-04-24 00:44:10 +00:00
|
|
|
virtual ~ControlReference() {}
|
2010-04-02 02:48:24 +00:00
|
|
|
|
|
|
|
virtual ControlState State( const ControlState state = 0 ) = 0;
|
|
|
|
virtual bool Detect( const unsigned int ms, const unsigned int count = 1 ) = 0;
|
|
|
|
virtual void UpdateControls() = 0;
|
|
|
|
|
|
|
|
ControlState range;
|
|
|
|
|
|
|
|
DeviceQualifier device_qualifier;
|
|
|
|
ControlQualifier control_qualifier;
|
|
|
|
|
|
|
|
const bool is_input;
|
|
|
|
Device* device;
|
|
|
|
|
|
|
|
std::vector<Device::Control*> controls;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// InputReference
|
|
|
|
//
|
|
|
|
// control reference for inputs
|
|
|
|
//
|
|
|
|
class InputReference : public ControlReference
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InputReference() : ControlReference( true ) {}
|
|
|
|
ControlState State( const ControlState state );
|
|
|
|
bool Detect( const unsigned int ms, const unsigned int count );
|
|
|
|
void UpdateControls();
|
|
|
|
|
|
|
|
unsigned int mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// OutputReference
|
|
|
|
//
|
|
|
|
// control reference for outputs
|
|
|
|
//
|
|
|
|
class OutputReference : public ControlReference
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OutputReference() : ControlReference( false ) {}
|
|
|
|
ControlState State( const ControlState state );
|
|
|
|
bool Detect( const unsigned int ms, const unsigned int count );
|
|
|
|
void UpdateControls();
|
|
|
|
};
|
|
|
|
|
|
|
|
ControllerInterface() : m_is_init(false) {}
|
|
|
|
|
|
|
|
void SetHwnd( void* const hwnd );
|
|
|
|
void Init();
|
2010-06-06 03:52:11 +00:00
|
|
|
// TODO: remove this hack param
|
|
|
|
void DeInit(const bool hacks_no_sdl_quit = false);
|
2010-04-02 02:48:24 +00:00
|
|
|
bool IsInit();
|
|
|
|
|
|
|
|
void UpdateReference( ControlReference* control );
|
|
|
|
bool UpdateInput();
|
|
|
|
bool UpdateOutput();
|
|
|
|
|
|
|
|
const std::vector<Device*>& Devices();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_is_init;
|
|
|
|
std::vector<Device*> m_devices;
|
|
|
|
void* m_hwnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|