mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Rename the following folders: hal/lib/Athena -> hal/lib/athena hal/lib/Desktop -> hal/lib/sim hal/lib/Shared -> hal/lib/shared wpilibc/Athena -> wpilibc/athena wpilibc/simulation -> wpilibc/sim Windows users may need to run gradlew clean after updating.
369 lines
12 KiB
C++
369 lines
12 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#include "DriverStation.h"
|
|
#include "Timer.h"
|
|
#include "simulation/MainNode.h"
|
|
//#include "MotorSafetyHelper.h"
|
|
#include <string.h>
|
|
#include "Log.hpp"
|
|
#include "Utility.h"
|
|
#include "WPIErrors.h"
|
|
#include "boost/mem_fn.hpp"
|
|
|
|
// set the logging level
|
|
TLogLevel dsLogLevel = logDEBUG;
|
|
|
|
#define DS_LOG(level) \
|
|
if (level > dsLogLevel) \
|
|
; \
|
|
else \
|
|
Log().Get(level)
|
|
|
|
const uint32_t DriverStation::kBatteryChannel;
|
|
const uint32_t DriverStation::kJoystickPorts;
|
|
const uint32_t DriverStation::kJoystickAxes;
|
|
const float DriverStation::kUpdatePeriod = 0.02;
|
|
uint8_t DriverStation::m_updateNumber = 0;
|
|
|
|
/**
|
|
* DriverStation contructor.
|
|
*
|
|
* This is only called once the first time GetInstance() is called
|
|
*/
|
|
DriverStation::DriverStation() {
|
|
state = msgs::DriverStationPtr(new msgs::DriverStation());
|
|
stateSub =
|
|
MainNode::Subscribe("~/ds/state", &DriverStation::stateCallback, this);
|
|
// TODO: for loop + boost bind
|
|
joysticks[0] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[0] = MainNode::Subscribe(
|
|
"~/ds/joysticks/0", &DriverStation::joystickCallback0, this);
|
|
joysticks[1] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[1] = MainNode::Subscribe(
|
|
"~/ds/joysticks/1", &DriverStation::joystickCallback1, this);
|
|
joysticks[2] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[2] = MainNode::Subscribe(
|
|
"~/ds/joysticks/2", &DriverStation::joystickCallback2, this);
|
|
joysticks[3] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[3] = MainNode::Subscribe(
|
|
"~/ds/joysticks/5", &DriverStation::joystickCallback3, this);
|
|
joysticks[4] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[4] = MainNode::Subscribe(
|
|
"~/ds/joysticks/4", &DriverStation::joystickCallback4, this);
|
|
joysticks[5] = msgs::FRCJoystickPtr(new msgs::FRCJoystick());
|
|
joysticksSub[5] = MainNode::Subscribe(
|
|
"~/ds/joysticks/5", &DriverStation::joystickCallback5, this);
|
|
|
|
AddToSingletonList();
|
|
}
|
|
|
|
/**
|
|
* Return a pointer to the singleton DriverStation.
|
|
*/
|
|
DriverStation& DriverStation::GetInstance() {
|
|
static DriverStation instance;
|
|
return instance;
|
|
}
|
|
|
|
/**
|
|
* Read the battery voltage. Hardcoded to 12 volts for Simulation.
|
|
*
|
|
* @return The battery voltage.
|
|
*/
|
|
float DriverStation::GetBatteryVoltage() const {
|
|
return 12.0; // 12 volts all the time!
|
|
}
|
|
|
|
/**
|
|
* Get the value of the axis on a joystick.
|
|
* This depends on the mapping of the joystick connected to the specified port.
|
|
*
|
|
* @param stick The joystick to read.
|
|
* @param axis The analog axis value to read from the joystick.
|
|
* @return The value of the axis on the joystick.
|
|
*/
|
|
float DriverStation::GetStickAxis(uint32_t stick, uint32_t axis) {
|
|
if (axis < 0 || axis > (kJoystickAxes - 1)) {
|
|
wpi_setWPIError(BadJoystickAxis);
|
|
return 0.0;
|
|
}
|
|
if (stick < 0 || stick > 5) {
|
|
wpi_setWPIError(BadJoystickIndex);
|
|
return 0.0;
|
|
}
|
|
|
|
std::unique_lock<std::recursive_mutex> lock(m_joystickMutex);
|
|
if (joysticks[stick] == nullptr || axis >= joysticks[stick]->axes().size()) {
|
|
return 0.0;
|
|
}
|
|
return joysticks[stick]->axes(axis);
|
|
}
|
|
|
|
/**
|
|
* The state of a specific button (1 - 12) on the joystick.
|
|
*
|
|
* This method only works in simulation, but is more efficient than
|
|
* GetStickButtons.
|
|
*
|
|
* @param stick The joystick to read.
|
|
* @param button The button number to check.
|
|
* @return If the button is pressed.
|
|
*/
|
|
bool DriverStation::GetStickButton(uint32_t stick, uint32_t button) {
|
|
if (stick < 0 || stick >= 6) {
|
|
wpi_setWPIErrorWithContext(ParameterOutOfRange,
|
|
"stick must be between 0 and 5");
|
|
return false;
|
|
}
|
|
|
|
std::unique_lock<std::recursive_mutex> lock(m_joystickMutex);
|
|
if (joysticks[stick] == nullptr ||
|
|
button >= joysticks[stick]->buttons().size()) {
|
|
return false;
|
|
}
|
|
return joysticks[stick]->buttons(button - 1);
|
|
}
|
|
|
|
/**
|
|
* The state of the buttons on the joystick.
|
|
*
|
|
* 12 buttons (4 msb are unused) from the joystick.
|
|
*
|
|
* @param stick The joystick to read.
|
|
* @return The state of the buttons on the joystick.
|
|
*/
|
|
short DriverStation::GetStickButtons(uint32_t stick) {
|
|
if (stick < 0 || stick >= 6) {
|
|
wpi_setWPIErrorWithContext(ParameterOutOfRange,
|
|
"stick must be between 0 and 5");
|
|
return false;
|
|
}
|
|
short btns = 0, btnid;
|
|
|
|
std::unique_lock<std::recursive_mutex> lock(m_joystickMutex);
|
|
msgs::FRCJoystickPtr joy = joysticks[stick];
|
|
for (btnid = 0; btnid < joy->buttons().size() && btnid < 12; btnid++) {
|
|
if (joysticks[stick]->buttons(btnid)) {
|
|
btns |= (1 << btnid);
|
|
}
|
|
}
|
|
return btns;
|
|
}
|
|
|
|
// 5V divided by 10 bits
|
|
#define kDSAnalogInScaling ((float)(5.0 / 1023.0))
|
|
|
|
/**
|
|
* Get an analog voltage from the Driver Station.
|
|
*
|
|
* The analog values are returned as voltage values for the Driver Station
|
|
* analog inputs. These inputs are typically used for advanced operator
|
|
* interfaces consisting of potentiometers or resistor networks representing
|
|
* values on a rotary switch.
|
|
*
|
|
* @param channel The analog input channel on the driver station to read from.
|
|
* Valid range is 1 - 4.
|
|
* @return The analog voltage on the input.
|
|
*/
|
|
float DriverStation::GetAnalogIn(uint32_t channel) {
|
|
wpi_setWPIErrorWithContext(UnsupportedInSimulation, "GetAnalogIn");
|
|
return 0.0;
|
|
}
|
|
|
|
/**
|
|
* Get values from the digital inputs on the Driver Station.
|
|
*
|
|
* Return digital values from the Drivers Station. These values are typically
|
|
* used for buttons and switches on advanced operator interfaces.
|
|
*
|
|
* @param channel The digital input to get. Valid range is 1 - 8.
|
|
*/
|
|
bool DriverStation::GetDigitalIn(uint32_t channel) {
|
|
wpi_setWPIErrorWithContext(UnsupportedInSimulation, "GetDigitalIn");
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Set a value for the digital outputs on the Driver Station.
|
|
*
|
|
* Control digital outputs on the Drivers Station. These values are typically
|
|
* used for giving feedback on a custom operator station such as LEDs.
|
|
*
|
|
* @param channel The digital output to set. Valid range is 1 - 8.
|
|
* @param value The state to set the digital output.
|
|
*/
|
|
void DriverStation::SetDigitalOut(uint32_t channel, bool value) {
|
|
wpi_setWPIErrorWithContext(UnsupportedInSimulation, "SetDigitalOut");
|
|
}
|
|
|
|
/**
|
|
* Get a value that was set for the digital outputs on the Driver Station.
|
|
*
|
|
* @param channel The digital ouput to monitor. Valid range is 1 through 8.
|
|
* @return A digital value being output on the Drivers Station.
|
|
*/
|
|
bool DriverStation::GetDigitalOut(uint32_t channel) {
|
|
wpi_setWPIErrorWithContext(UnsupportedInSimulation, "GetDigitalOut");
|
|
return false;
|
|
}
|
|
|
|
bool DriverStation::IsEnabled() const {
|
|
std::unique_lock<std::recursive_mutex> lock(m_stateMutex);
|
|
return state != nullptr ? state->enabled() : false;
|
|
}
|
|
|
|
bool DriverStation::IsDisabled() const { return !IsEnabled(); }
|
|
|
|
bool DriverStation::IsAutonomous() const {
|
|
std::unique_lock<std::recursive_mutex> lock(m_stateMutex);
|
|
return state != nullptr ? state->state() == msgs::DriverStation_State_AUTO
|
|
: false;
|
|
}
|
|
|
|
bool DriverStation::IsOperatorControl() const {
|
|
return !(IsAutonomous() || IsTest());
|
|
}
|
|
|
|
bool DriverStation::IsTest() const {
|
|
std::unique_lock<std::recursive_mutex> lock(m_stateMutex);
|
|
return state != nullptr ? state->state() == msgs::DriverStation_State_TEST
|
|
: false;
|
|
}
|
|
|
|
/**
|
|
* Is the driver station attached to a Field Management System?
|
|
* Note: This does not work with the Blue DS.
|
|
* @return True if the robot is competing on a field being controlled by a Field
|
|
* Management System
|
|
*/
|
|
bool DriverStation::IsFMSAttached() const {
|
|
return false; // No FMS in simulation
|
|
}
|
|
|
|
/**
|
|
* Return the alliance that the driver station says it is on.
|
|
* This could return kRed or kBlue.
|
|
* @return The Alliance enum
|
|
*/
|
|
DriverStation::Alliance DriverStation::GetAlliance() const {
|
|
// if (m_controlData->dsID_Alliance == 'R') return kRed;
|
|
// if (m_controlData->dsID_Alliance == 'B') return kBlue;
|
|
// wpi_assert(false);
|
|
return kInvalid; // TODO: Support alliance colors
|
|
}
|
|
|
|
/**
|
|
* Return the driver station location on the field.
|
|
* This could return 1, 2, or 3.
|
|
* @return The location of the driver station
|
|
*/
|
|
uint32_t DriverStation::GetLocation() const {
|
|
return -1; // TODO: Support locations
|
|
}
|
|
|
|
/**
|
|
* Wait until a new packet comes from the driver station.
|
|
* This blocks on a semaphore, so the waiting is efficient.
|
|
* This is a good way to delay processing until there is new driver station data
|
|
* to act on.
|
|
*/
|
|
void DriverStation::WaitForData() {
|
|
std::unique_lock<std::mutex> lock(m_waitForDataMutex);
|
|
m_waitForDataCond.wait(lock);
|
|
}
|
|
|
|
/**
|
|
* Return the approximate match time.
|
|
* The FMS does not currently send the official match time to the robots
|
|
* This returns the time since the enable signal sent from the Driver Station
|
|
* At the beginning of autonomous, the time is reset to 0.0 seconds
|
|
* At the beginning of teleop, the time is reset to +15.0 seconds
|
|
* If the robot is disabled, this returns 0.0 seconds
|
|
* Warning: This is not an official time (so it cannot be used to argue with
|
|
* referees)
|
|
* @return Match time in seconds since the beginning of autonomous
|
|
*/
|
|
double DriverStation::GetMatchTime() const {
|
|
if (m_approxMatchTimeOffset < 0.0) return 0.0;
|
|
return Timer::GetFPGATimestamp() - m_approxMatchTimeOffset;
|
|
}
|
|
|
|
/**
|
|
* Report an error to the DriverStation messages window.
|
|
* The error is also printed to the program console.
|
|
*/
|
|
void DriverStation::ReportError(std::string error) {
|
|
std::cout << error << std::endl;
|
|
}
|
|
|
|
/**
|
|
* Report a warning to the DriverStation messages window.
|
|
* The warning is also printed to the program console.
|
|
*/
|
|
void DriverStation::ReportWarning(std::string error) {
|
|
std::cout << error << std::endl;
|
|
}
|
|
|
|
/**
|
|
* Report an error to the DriverStation messages window.
|
|
* The error is also printed to the program console.
|
|
*/
|
|
void DriverStation::ReportError(bool is_error, int32_t code,
|
|
const std::string& error,
|
|
const std::string& location,
|
|
const std::string& stack) {
|
|
if (!location.empty())
|
|
std::cout << (is_error ? "Error" : "Warning") << " at " << location << ": ";
|
|
std::cout << error << std::endl;
|
|
if (!stack.empty()) std::cout << stack << std::endl;
|
|
}
|
|
|
|
/**
|
|
* Return the team number that the Driver Station is configured for.
|
|
* @return The team number
|
|
*/
|
|
uint16_t DriverStation::GetTeamNumber() const { return 348; }
|
|
|
|
void DriverStation::stateCallback(const msgs::ConstDriverStationPtr& msg) {
|
|
{
|
|
std::unique_lock<std::recursive_mutex> lock(m_stateMutex);
|
|
*state = *msg;
|
|
}
|
|
m_waitForDataCond.notify_all();
|
|
}
|
|
|
|
void DriverStation::joystickCallback(const msgs::ConstFRCJoystickPtr& msg,
|
|
int i) {
|
|
std::unique_lock<std::recursive_mutex> lock(m_joystickMutex);
|
|
*(joysticks[i]) = *msg;
|
|
}
|
|
|
|
void DriverStation::joystickCallback0(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 0);
|
|
}
|
|
|
|
void DriverStation::joystickCallback1(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 1);
|
|
}
|
|
|
|
void DriverStation::joystickCallback2(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 2);
|
|
}
|
|
|
|
void DriverStation::joystickCallback3(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 3);
|
|
}
|
|
|
|
void DriverStation::joystickCallback4(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 4);
|
|
}
|
|
|
|
void DriverStation::joystickCallback5(const msgs::ConstFRCJoystickPtr& msg) {
|
|
joystickCallback(msg, 5);
|
|
}
|