2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-08-25 23:55:59 -04:00
|
|
|
|
|
|
|
|
#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; }
|