mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
This is a major restructuring of the WPILib repository to simply build procedures and remove the remnants of Maven from everything except the eclipse plugins. Gradle files have been largely simplified or rewritten, taking advantage of splitting up parts of the build into separate build files for ease of reading. The eclipse plugins are now in a separate project, as is ntcore. All dependencies are resolved via Maven dependencies, with the Jenkins-maintained WPILib repo. Project structures have also been simplified: we no longer have separate subprojects inside wpilibc and wpilibj. Where possible, these changes hav been done with git renames, to make sure we still have full history for all repositories. Other unrelated subprojects have also been broken out: OutlineViewer is now a separate project. Change-Id: Ib4e2a6e1a2f66427a14f16612b0e0d69ed661878
117 lines
4.0 KiB
C++
117 lines
4.0 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2008. 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 $(WIND_BASE)/WPILib. */
|
|
/*----------------------------------------------------------------------------*/
|
|
#pragma once
|
|
|
|
#include "SensorBase.h"
|
|
#include "RobotState.h"
|
|
#include "Task.h"
|
|
#include "HAL/HAL.hpp"
|
|
#include "HAL/cpp/Semaphore.hpp"
|
|
#include "HAL/cpp/priority_mutex.h"
|
|
#include "HAL/cpp/priority_condition_variable.h"
|
|
#include <condition_variable>
|
|
#include <atomic>
|
|
|
|
struct HALControlWord;
|
|
class AnalogInput;
|
|
|
|
/**
|
|
* Provide access to the network communication data to / from the Driver
|
|
* Station.
|
|
*/
|
|
class DriverStation : public SensorBase, public RobotStateInterface {
|
|
public:
|
|
enum Alliance { kRed, kBlue, kInvalid };
|
|
|
|
virtual ~DriverStation();
|
|
static DriverStation &GetInstance();
|
|
static void ReportError(std::string error);
|
|
|
|
static const uint32_t kJoystickPorts = 6;
|
|
|
|
float GetStickAxis(uint32_t stick, uint32_t axis);
|
|
int GetStickPOV(uint32_t stick, uint32_t pov);
|
|
uint32_t GetStickButtons(uint32_t stick) const;
|
|
bool GetStickButton(uint32_t stick, uint8_t button);
|
|
|
|
int GetStickAxisCount(uint32_t stick) const;
|
|
int GetStickPOVCount(uint32_t stick) const;
|
|
int GetStickButtonCount(uint32_t stick) const;
|
|
|
|
bool GetJoystickIsXbox(uint32_t stick) const;
|
|
int GetJoystickType(uint32_t stick) const;
|
|
std::string GetJoystickName(uint32_t stick) const;
|
|
int GetJoystickAxisType(uint32_t stick, uint8_t axis) const;
|
|
|
|
bool IsEnabled() const override;
|
|
bool IsDisabled() const override;
|
|
bool IsAutonomous() const override;
|
|
bool IsOperatorControl() const override;
|
|
bool IsTest() const override;
|
|
bool IsDSAttached() const;
|
|
bool IsNewControlData() const;
|
|
bool IsFMSAttached() const;
|
|
bool IsSysActive() const;
|
|
bool IsSysBrownedOut() const;
|
|
|
|
Alliance GetAlliance() const;
|
|
uint32_t GetLocation() const;
|
|
void WaitForData();
|
|
double GetMatchTime() const;
|
|
float GetBatteryVoltage() const;
|
|
|
|
/** Only to be used to tell the Driver Station what code you claim to be
|
|
* executing
|
|
* for diagnostic purposes only
|
|
* @param entering If true, starting disabled code; if false, leaving disabled
|
|
* code */
|
|
void InDisabled(bool entering) { m_userInDisabled = entering; }
|
|
/** Only to be used to tell the Driver Station what code you claim to be
|
|
* executing
|
|
* for diagnostic purposes only
|
|
* @param entering If true, starting autonomous code; if false, leaving
|
|
* autonomous code */
|
|
void InAutonomous(bool entering) { m_userInAutonomous = entering; }
|
|
/** Only to be used to tell the Driver Station what code you claim to be
|
|
* executing
|
|
* for diagnostic purposes only
|
|
* @param entering If true, starting teleop code; if false, leaving teleop
|
|
* code */
|
|
void InOperatorControl(bool entering) { m_userInTeleop = entering; }
|
|
/** Only to be used to tell the Driver Station what code you claim to be
|
|
* executing
|
|
* for diagnostic purposes only
|
|
* @param entering If true, starting test code; if false, leaving test code */
|
|
void InTest(bool entering) { m_userInTest = entering; }
|
|
|
|
protected:
|
|
DriverStation();
|
|
|
|
void GetData();
|
|
|
|
private:
|
|
static DriverStation *m_instance;
|
|
void ReportJoystickUnpluggedError(std::string message);
|
|
void Run();
|
|
|
|
HALJoystickAxes m_joystickAxes[kJoystickPorts];
|
|
HALJoystickPOVs m_joystickPOVs[kJoystickPorts];
|
|
HALJoystickButtons m_joystickButtons[kJoystickPorts];
|
|
HALJoystickDescriptor m_joystickDescriptor[kJoystickPorts];
|
|
Task m_task;
|
|
std::atomic<bool> m_isRunning{false};
|
|
mutable Semaphore m_newControlData{Semaphore::kEmpty};
|
|
mutable priority_condition_variable m_packetDataAvailableCond;
|
|
priority_mutex m_packetDataAvailableMutex;
|
|
std::condition_variable_any m_waitForDataCond;
|
|
priority_mutex m_waitForDataMutex;
|
|
bool m_userInDisabled = false;
|
|
bool m_userInAutonomous = false;
|
|
bool m_userInTeleop = false;
|
|
bool m_userInTest = false;
|
|
double m_nextMessageTime = 0;
|
|
};
|