Files
allwpilib/wpilibc/src/main/native/cpp/IterativeRobotBase.cpp

195 lines
5.8 KiB
C++
Raw Normal View History

2017-07-08 10:50:56 -04:00
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2020 FIRST. All Rights Reserved. */
2017-07-08 10:50:56 -04:00
/* 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 "frc/IterativeRobotBase.h"
2017-07-08 10:50:56 -04:00
#include <hal/DriverStation.h>
2019-05-19 12:24:40 -07:00
#include <wpi/Format.h>
#include <wpi/SmallString.h>
#include <wpi/raw_ostream.h>
#include "frc/DriverStation.h"
#include "frc/livewindow/LiveWindow.h"
#include "frc/shuffleboard/Shuffleboard.h"
#include "frc/smartdashboard/SmartDashboard.h"
2017-07-08 10:50:56 -04:00
using namespace frc;
IterativeRobotBase::IterativeRobotBase(double period)
: IterativeRobotBase(units::second_t(period)) {}
IterativeRobotBase::IterativeRobotBase(units::second_t period)
: m_period(period),
m_watchdog(period, [this] { PrintLoopOverrunMessage(); }) {}
2017-07-08 10:50:56 -04:00
void IterativeRobotBase::RobotInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
}
void IterativeRobotBase::SimulationInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
}
2017-07-08 10:50:56 -04:00
void IterativeRobotBase::DisabledInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
}
void IterativeRobotBase::AutonomousInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
}
void IterativeRobotBase::TeleopInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
}
void IterativeRobotBase::TestInit() {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
}
void IterativeRobotBase::RobotPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
firstRun = false;
}
}
void IterativeRobotBase::SimulationPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
firstRun = false;
}
}
2017-07-08 10:50:56 -04:00
void IterativeRobotBase::DisabledPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
firstRun = false;
}
}
void IterativeRobotBase::AutonomousPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
firstRun = false;
}
}
void IterativeRobotBase::TeleopPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
firstRun = false;
}
}
void IterativeRobotBase::TestPeriodic() {
static bool firstRun = true;
if (firstRun) {
wpi::outs() << "Default " << __FUNCTION__ << "() method... Override me!\n";
2017-07-08 10:50:56 -04:00
firstRun = false;
}
}
void IterativeRobotBase::LoopFunc() {
m_watchdog.Reset();
2017-07-08 10:50:56 -04:00
// Call the appropriate function depending upon the current robot mode
if (IsDisabled()) {
// Call DisabledInit() if we are now just entering disabled mode from
// either a different mode or from power-on.
2017-07-08 10:50:56 -04:00
if (m_lastMode != Mode::kDisabled) {
LiveWindow::GetInstance()->SetEnabled(false);
Shuffleboard::DisableActuatorWidgets();
2017-07-08 10:50:56 -04:00
DisabledInit();
m_watchdog.AddEpoch("DisabledInit()");
2017-07-08 10:50:56 -04:00
m_lastMode = Mode::kDisabled;
}
2017-07-08 10:50:56 -04:00
HAL_ObserveUserProgramDisabled();
DisabledPeriodic();
m_watchdog.AddEpoch("DisabledPeriodic()");
2017-07-08 10:50:56 -04:00
} else if (IsAutonomous()) {
// Call AutonomousInit() if we are now just entering autonomous mode from
// either a different mode or from power-on.
2017-07-08 10:50:56 -04:00
if (m_lastMode != Mode::kAutonomous) {
LiveWindow::GetInstance()->SetEnabled(false);
Shuffleboard::DisableActuatorWidgets();
2017-07-08 10:50:56 -04:00
AutonomousInit();
m_watchdog.AddEpoch("AutonomousInit()");
2017-07-08 10:50:56 -04:00
m_lastMode = Mode::kAutonomous;
}
2017-07-08 10:50:56 -04:00
HAL_ObserveUserProgramAutonomous();
AutonomousPeriodic();
m_watchdog.AddEpoch("AutonomousPeriodic()");
2017-07-08 10:50:56 -04:00
} else if (IsOperatorControl()) {
// Call TeleopInit() if we are now just entering teleop mode from
// either a different mode or from power-on.
2017-07-08 10:50:56 -04:00
if (m_lastMode != Mode::kTeleop) {
LiveWindow::GetInstance()->SetEnabled(false);
Shuffleboard::DisableActuatorWidgets();
2017-07-08 10:50:56 -04:00
TeleopInit();
m_watchdog.AddEpoch("TeleopInit()");
2017-07-08 10:50:56 -04:00
m_lastMode = Mode::kTeleop;
}
2017-07-08 10:50:56 -04:00
HAL_ObserveUserProgramTeleop();
TeleopPeriodic();
m_watchdog.AddEpoch("TeleopPeriodic()");
2017-07-08 10:50:56 -04:00
} else {
// Call TestInit() if we are now just entering test mode from
// either a different mode or from power-on.
2017-07-08 10:50:56 -04:00
if (m_lastMode != Mode::kTest) {
LiveWindow::GetInstance()->SetEnabled(true);
Shuffleboard::EnableActuatorWidgets();
2017-07-08 10:50:56 -04:00
TestInit();
m_watchdog.AddEpoch("TestInit()");
2017-07-08 10:50:56 -04:00
m_lastMode = Mode::kTest;
}
2017-07-08 10:50:56 -04:00
HAL_ObserveUserProgramTest();
TestPeriodic();
m_watchdog.AddEpoch("TestPeriodic()");
2017-07-08 10:50:56 -04:00
}
2017-07-08 10:50:56 -04:00
RobotPeriodic();
m_watchdog.AddEpoch("RobotPeriodic()");
SmartDashboard::UpdateValues();
m_watchdog.AddEpoch("SmartDashboard::UpdateValues()");
LiveWindow::GetInstance()->UpdateValues();
m_watchdog.AddEpoch("LiveWindow::UpdateValues()");
Shuffleboard::Update();
m_watchdog.AddEpoch("Shuffleboard::Update()");
if (IsSimulation()) {
SimulationPeriodic();
m_watchdog.AddEpoch("SimulationPeriodic()");
}
m_watchdog.Disable();
// Warn on loop time overruns
if (m_watchdog.IsExpired()) {
m_watchdog.PrintEpochs();
}
}
void IterativeRobotBase::PrintLoopOverrunMessage() {
wpi::SmallString<128> str;
wpi::raw_svector_ostream buf(str);
buf << "Loop time of " << wpi::format("%.6f", m_period.to<double>())
<< "s overrun\n";
DriverStation::ReportWarning(str);
2017-07-08 10:50:56 -04:00
}