2019-08-25 23:55:59 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-02-08 13:23:29 -05:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-08-25 23:55:59 -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 "frc2/command/WaitCommand.h"
|
|
|
|
|
|
|
|
|
|
using namespace frc2;
|
|
|
|
|
|
2019-09-02 23:39:51 -07:00
|
|
|
WaitCommand::WaitCommand(units::second_t duration) : m_duration{duration} {
|
|
|
|
|
auto durationStr = std::to_string(duration.to<double>());
|
2019-09-14 15:22:54 -05:00
|
|
|
SetName(wpi::Twine(GetName()) + ": " + wpi::Twine(durationStr) + " seconds");
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WaitCommand::Initialize() {
|
2019-09-02 23:39:51 -07:00
|
|
|
m_timer.Reset();
|
|
|
|
|
m_timer.Start();
|
2019-08-25 23:55:59 -04:00
|
|
|
}
|
|
|
|
|
|
2019-09-02 23:39:51 -07:00
|
|
|
void WaitCommand::End(bool interrupted) { m_timer.Stop(); }
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2020-02-08 13:23:29 -05:00
|
|
|
bool WaitCommand::IsFinished() { return m_timer.HasElapsed(m_duration); }
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
bool WaitCommand::RunsWhenDisabled() const { return true; }
|