Add new joystick features

Axis counts other than six and POVs are both present in C++ and Java now

Add dynamic joystick axis counts, up to 12

Change-Id: Ieade5e61a89df822df8702cb32326e4635558778

Add support for POVs in C++

Change-Id: I12dc0fcaca605a256ddcf990eebde45767229171

Make POVs work in Java

Change-Id: Ie2d98adb416c1930f058bdd21c3e7d26289df503
This commit is contained in:
Thomas Clark
2014-10-17 14:46:25 -04:00
parent 08c8723174
commit 8a541a67ca
16 changed files with 199 additions and 74 deletions

View File

@@ -33,4 +33,6 @@ public:
virtual bool GetTop(JoystickHand hand = kRightHand) = 0;
virtual bool GetBumper(JoystickHand hand = kRightHand) = 0;
virtual bool GetRawButton(uint32_t button) = 0;
virtual int GetPOV(uint32_t pov = 1) = 0;
};

View File

@@ -65,8 +65,8 @@ S(CompressorTaskError, 3, "Compressor task won't start");
S(LoopTimingError, 4, "Digital module loop timing is not the expected value");
S(NonBinaryDigitalValue, 5, "Digital output value is not 0 or 1");
S(IncorrectBatteryChannel, 6, "Battery measurement channel is not correct value");
S(BadJoystickIndex, 7, "Joystick index is out of range, should be 1-4");
S(BadJoystickAxis, 8, "Joystick axis is out of range");
S(BadJoystickIndex, 7, "Joystick index is out of range, should be 0-3");
S(BadJoystickAxis, 8, "Joystick axis or POV is out of range");
S(InvalidMotorIndex, 9, "Motor index is out of range, should be 0-3");
S(DriverStationTaskError, 10, "Driver Station task won't start");
S(EnhancedIOPWMPeriodOutOfRange, 11, "Driver Station Enhanced IO PWM Output period out of range.");

View File

@@ -30,9 +30,9 @@ public:
static DriverStation *GetInstance();
static const uint32_t kJoystickPorts = 4;
static const uint32_t kJoystickAxes = 6;
float GetStickAxis(uint32_t stick, uint32_t axis);
int GetStickPOV(uint32_t stick, uint32_t pov);
short GetStickButtons(uint32_t stick);
bool IsEnabled();
@@ -98,6 +98,7 @@ private:
HALControlWord m_controlWord;
HALAllianceStationID m_allianceStationID;
HALJoystickAxes m_joystickAxes[kJoystickPorts];
HALJoystickPOVs m_joystickPOVs[kJoystickPorts];
HALJoystickButtons m_joystickButtons[kJoystickPorts];
MUTEX_ID m_statusDataSemaphore;

View File

@@ -42,7 +42,7 @@ public:
virtual ~Joystick();
uint32_t GetAxisChannel(AxisType axis);
void SetAxisChannel(AxisType axis, uint32_t channel);
void SetAxisChannel(AxisType axis, uint32_t channel);
virtual float GetX(JoystickHand hand = kRightHand);
virtual float GetY(JoystickHand hand = kRightHand);
@@ -55,10 +55,11 @@ public:
virtual bool GetTrigger(JoystickHand hand = kRightHand);
virtual bool GetTop(JoystickHand hand = kRightHand);
virtual bool GetBumper(JoystickHand hand = kRightHand);
virtual bool GetButton(ButtonType button);
bool GetRawButton(uint32_t button);
virtual bool GetRawButton(uint32_t button);
virtual int GetPOV(uint32_t pov = 1);
bool GetButton(ButtonType button);
static Joystick* GetStickForPort(uint32_t port);
virtual float GetMagnitude();
virtual float GetDirectionRadians();
virtual float GetDirectionDegrees();
@@ -74,4 +75,3 @@ private:
};
#endif

View File

@@ -24,7 +24,6 @@ TLogLevel dsLogLevel = logDEBUG;
else Log().Get(level)
const uint32_t DriverStation::kJoystickPorts;
const uint32_t DriverStation::kJoystickAxes;
DriverStation* DriverStation::m_instance = NULL;
/**
@@ -46,6 +45,13 @@ DriverStation::DriverStation()
{
memset(&m_controlWord, 0, sizeof(m_controlWord));
// All joysticks should default to having zero axes and povs, so
// uninitialized memory doesn't get sent to speed controllers.
for(unsigned int i = 0; i < kJoystickPorts; i++) {
m_joystickAxes[i].count = 0;
m_joystickPOVs[i].count = 0;
}
// Create a new semaphore
m_packetDataAvailableSem = initializeMutexNormal();
m_newControlData = initializeSemaphore(SEMAPHORE_EMPTY);
@@ -135,7 +141,8 @@ void DriverStation::GetData()
for(uint8_t stick = 0; stick < kJoystickPorts; stick++) {
uint8_t count;
HALGetJoystickAxes(stick, &m_joystickAxes[stick], kJoystickAxes);
HALGetJoystickAxes(stick, &m_joystickAxes[stick]);
HALGetJoystickPOVs(stick, &m_joystickPOVs[stick]);
HALGetJoystickButtons(stick, &m_joystickButtons[stick], &count);
}
@@ -185,7 +192,7 @@ float DriverStation::GetStickAxis(uint32_t stick, uint32_t axis)
return 0;
}
if (axis < 1 || axis > kJoystickAxes)
if (axis < 1 || axis > m_joystickAxes[stick].count)
{
wpi_setWPIError(BadJoystickAxis);
return 0.0f;
@@ -203,6 +210,27 @@ float DriverStation::GetStickAxis(uint32_t stick, uint32_t axis)
}
}
/**
* Get the state of a POV on the joystick.
*
* @return the angle of the POV in degrees, or -1 if the POV is not pressed.
*/
int DriverStation::GetStickPOV(uint32_t stick, uint32_t pov) {
if (stick >= kJoystickPorts)
{
wpi_setWPIError(BadJoystickIndex);
return 0;
}
if (pov < 1 || pov > m_joystickPOVs[stick].count)
{
wpi_setWPIError(BadJoystickAxis);
return 0;
}
return m_joystickPOVs[stick].povs[pov - 1];
}
/**
* The state of the buttons on the joystick.
* 12 buttons (4 msb are unused) from the joystick.

View File

@@ -23,7 +23,7 @@ static bool joySticksInitialized = false;
/**
* Construct an instance of a joystick.
* The joystick index is the usb port on the drivers station.
*
*
* @param port The port on the driver station that the joystick is plugged into.
*/
Joystick::Joystick(uint32_t port)
@@ -39,7 +39,7 @@ Joystick::Joystick(uint32_t port)
m_axes[kZAxis] = kDefaultZAxis;
m_axes[kTwistAxis] = kDefaultTwistAxis;
m_axes[kThrottleAxis] = kDefaultThrottleAxis;
m_buttons[kTriggerButton] = kDefaultTriggerButton;
m_buttons[kTopButton] = kDefaultTopButton;
@@ -48,10 +48,10 @@ Joystick::Joystick(uint32_t port)
/**
* Version of the constructor to be called by sub-classes.
*
*
* This constructor allows the subclass to configure the number of constants
* for axes and buttons.
*
*
* @param port The port on the driver station that the joystick is plugged into.
* @param numAxisTypes The number of axis types in the enum.
* @param numButtonTypes The number of button types in the enum.
@@ -148,7 +148,7 @@ float Joystick::GetThrottle()
/**
* Get the value of the axis.
*
*
* @param axis The axis to read [1-6].
* @return The value of the axis.
*/
@@ -159,10 +159,10 @@ float Joystick::GetRawAxis(uint32_t axis)
/**
* For the current joystick, return the axis determined by the argument.
*
*
* This is for cases where the joystick axis is returned programatically, otherwise one of the
* previous functions would be preferable (for example GetX()).
*
*
* @param axis The axis to read.
* @return The value of the axis.
*/
@@ -183,9 +183,9 @@ float Joystick::GetAxis(AxisType axis)
/**
* Read the state of the trigger on the joystick.
*
*
* Look up which button has been assigned to the trigger and read its state.
*
*
* @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
* @return The state of the trigger.
*/
@@ -196,9 +196,9 @@ bool Joystick::GetTrigger(JoystickHand hand)
/**
* Read the state of the top button on the joystick.
*
*
* Look up which button has been assigned to the top and read its state.
*
*
* @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
* @return The state of the top button.
*/
@@ -219,10 +219,10 @@ bool Joystick::GetBumper(JoystickHand hand)
/**
* Get the button value for buttons 1 through 12.
*
*
* The buttons are returned in a single 16 bit value with one bit representing the state
* of each button. The appropriate button is returned as a boolean value.
*
* of each button. The appropriate button is returned as a boolean value.
*
* @param button The button number to be read.
* @return The state of the button.
**/
@@ -231,11 +231,20 @@ bool Joystick::GetRawButton(uint32_t button)
return ((0x1 << (button-1)) & m_ds->GetStickButtons(m_port)) != 0;
}
/**
* Get the state of a POV on the joystick.
*
* @return the angle of the POV in degrees, or -1 if the POV is not pressed.
*/
int Joystick::GetPOV(uint32_t pov) {
return m_ds->GetStickPOV(m_port, pov);
}
/**
* Get buttons based on an enumerated type.
*
*
* The button type will be looked up in the list of buttons and then read.
*
*
* @param button The type of button to read.
* @return The state of the button.
*/
@@ -252,7 +261,7 @@ bool Joystick::GetButton(ButtonType button)
/**
* Get the channel currently associated with the specified axis.
*
*
* @param axis The axis to look up the channel for.
* @return The channel fr the axis.
*/
@@ -263,7 +272,7 @@ uint32_t Joystick::GetAxisChannel(AxisType axis)
/**
* Set the channel associated with a specified axis.
*
*
* @param axis The axis to set the channel for.
* @param channel The channel to set the axis to.
*/
@@ -275,7 +284,7 @@ void Joystick::SetAxisChannel(AxisType axis, uint32_t channel)
/**
* Get the magnitude of the direction vector formed by the joystick's
* current position relative to its origin
*
*
* @return The magnitude of the direction vector
*/
float Joystick::GetMagnitude(){
@@ -285,7 +294,7 @@ float Joystick::GetMagnitude(){
/**
* Get the direction of the vector formed by the joystick and its origin
* in radians
*
*
* @return The direction of the vector in radians
*/
float Joystick::GetDirectionRadians(){
@@ -295,10 +304,10 @@ float Joystick::GetDirectionRadians(){
/**
* Get the direction of the vector formed by the joystick and its origin
* in degrees
*
* uses acos(-1) to represent Pi due to absence of readily accessable Pi
*
* uses acos(-1) to represent Pi due to absence of readily accessable Pi
* constant in C++
*
*
* @return The direction of the vector in degrees
*/
float Joystick::GetDirectionDegrees(){

View File

@@ -42,7 +42,7 @@ public:
virtual ~Joystick();
uint32_t GetAxisChannel(AxisType axis);
void SetAxisChannel(AxisType axis, uint32_t channel);
void SetAxisChannel(AxisType axis, uint32_t channel);
virtual float GetX(JoystickHand hand = kRightHand);
virtual float GetY(JoystickHand hand = kRightHand);
@@ -55,10 +55,11 @@ public:
virtual bool GetTrigger(JoystickHand hand = kRightHand);
virtual bool GetTop(JoystickHand hand = kRightHand);
virtual bool GetBumper(JoystickHand hand = kRightHand);
virtual bool GetButton(ButtonType button);
bool GetRawButton(uint32_t button);
virtual bool GetRawButton(uint32_t button);
virtual int GetPOV(uint32_t pov = 1);
bool GetButton(ButtonType button);
static Joystick* GetStickForPort(uint32_t port);
virtual float GetMagnitude();
virtual float GetDirectionRadians();
virtual float GetDirectionDegrees();
@@ -74,4 +75,3 @@ private:
};
#endif

View File

@@ -22,7 +22,7 @@ static bool joySticksInitialized = false;
/**
* Construct an instance of a joystick.
* The joystick index is the usb port on the drivers station.
*
*
* @param port The port on the driver station that the joystick is plugged into.
*/
Joystick::Joystick(uint32_t port)
@@ -38,17 +38,17 @@ Joystick::Joystick(uint32_t port)
m_axes[kZAxis] = kDefaultZAxis;
m_axes[kTwistAxis] = kDefaultTwistAxis;
m_axes[kThrottleAxis] = kDefaultThrottleAxis;
m_buttons[kTriggerButton] = kDefaultTriggerButton;
m_buttons[kTopButton] = kDefaultTopButton;
}
/**
* Version of the constructor to be called by sub-classes.
*
*
* This constructor allows the subclass to configure the number of constants
* for axes and buttons.
*
*
* @param port The port on the driver station that the joystick is plugged into.
* @param numAxisTypes The number of axis types in the enum.
* @param numButtonTypes The number of button types in the enum.
@@ -71,7 +71,7 @@ void Joystick::InitJoystick(uint32_t numAxisTypes, uint32_t numButtonTypes)
joySticksInitialized = true;
}
joysticks[m_port - 1] = this;
m_ds = DriverStation::GetInstance();
m_axes = new uint32_t[numAxisTypes];
m_buttons = new uint32_t[numButtonTypes];
@@ -141,7 +141,7 @@ float Joystick::GetThrottle()
/**
* Get the value of the axis.
*
*
* @param axis The axis to read [1-6].
* @return The value of the axis.
*/
@@ -152,10 +152,10 @@ float Joystick::GetRawAxis(uint32_t axis)
/**
* For the current joystick, return the axis determined by the argument.
*
*
* This is for cases where the joystick axis is returned programatically, otherwise one of the
* previous functions would be preferable (for example GetX()).
*
*
* @param axis The axis to read.
* @return The value of the axis.
*/
@@ -176,9 +176,9 @@ float Joystick::GetAxis(AxisType axis)
/**
* Read the state of the trigger on the joystick.
*
*
* Look up which button has been assigned to the trigger and read its state.
*
*
* @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
* @return The state of the trigger.
*/
@@ -189,9 +189,9 @@ bool Joystick::GetTrigger(JoystickHand hand)
/**
* Read the state of the top button on the joystick.
*
*
* Look up which button has been assigned to the top and read its state.
*
*
* @param hand This parameter is ignored for the Joystick class and is only here to complete the GenericHID interface.
* @return The state of the top button.
*/
@@ -212,10 +212,10 @@ bool Joystick::GetBumper(JoystickHand hand)
/**
* Get the button value for buttons 1 through 12.
*
*
* The buttons are returned in a single 16 bit value with one bit representing the state
* of each button. The appropriate button is returned as a boolean value.
*
* of each button. The appropriate button is returned as a boolean value.
*
* @param button The button number to be read.
* @return The state of the button.
**/
@@ -224,11 +224,20 @@ bool Joystick::GetRawButton(uint32_t button)
return m_ds->GetStickButton(m_port, button);
}
/**
* Get the state of a POV on the joystick.
*
* @return the angle of the POV in degrees, or -1 if the POV is not pressed.
*/
int Joystick::GetPOV(uint32_t pov) {
return 0; // TODO
}
/**
* Get buttons based on an enumerated type.
*
*
* The button type will be looked up in the list of buttons and then read.
*
*
* @param button The type of button to read.
* @return The state of the button.
*/
@@ -245,7 +254,7 @@ bool Joystick::GetButton(ButtonType button)
/**
* Get the channel currently associated with the specified axis.
*
*
* @param axis The axis to look up the channel for.
* @return The channel fr the axis.
*/
@@ -256,7 +265,7 @@ uint32_t Joystick::GetAxisChannel(AxisType axis)
/**
* Set the channel associated with a specified axis.
*
*
* @param axis The axis to set the channel for.
* @param channel The channel to set the axis to.
*/
@@ -268,7 +277,7 @@ void Joystick::SetAxisChannel(AxisType axis, uint32_t channel)
/**
* Get the magnitude of the direction vector formed by the joystick's
* current position relative to its origin
*
*
* @return The magnitude of the direction vector
*/
float Joystick::GetMagnitude(){
@@ -278,7 +287,7 @@ float Joystick::GetMagnitude(){
/**
* Get the direction of the vector formed by the joystick and its origin
* in radians
*
*
* @return The direction of the vector in radians
*/
float Joystick::GetDirectionRadians(){
@@ -288,10 +297,10 @@ float Joystick::GetDirectionRadians(){
/**
* Get the direction of the vector formed by the joystick and its origin
* in degrees
*
* uses acos(-1) to represent Pi due to absence of readily accessable Pi
*
* uses acos(-1) to represent Pi due to absence of readily accessable Pi
* constant in C++
*
*
* @return The direction of the vector in degrees
*/
float Joystick::GetDirectionDegrees(){