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"
|
|
|
|
|
|
2021-05-26 17:44:18 -07:00
|
|
|
#include <fmt/format.h>
|
2021-06-19 09:30:01 -07:00
|
|
|
#include <frc/fmt/Units.h>
|
2021-05-26 17:44:18 -07:00
|
|
|
|
2019-08-25 23:55:59 -04:00
|
|
|
using namespace frc2;
|
|
|
|
|
|
2019-09-02 23:39:51 -07:00
|
|
|
WaitCommand::WaitCommand(units::second_t duration) : m_duration{duration} {
|
2021-06-19 09:30:01 -07:00
|
|
|
SetName(fmt::format("{}: {}", GetName(), duration));
|
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
|
|
|
}
|
|
|
|
|
|
2020-12-28 12:58:06 -08:00
|
|
|
void WaitCommand::End(bool interrupted) {
|
|
|
|
|
m_timer.Stop();
|
|
|
|
|
}
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2020-12-28 12:58:06 -08:00
|
|
|
bool WaitCommand::IsFinished() {
|
|
|
|
|
return m_timer.HasElapsed(m_duration);
|
|
|
|
|
}
|
2019-08-25 23:55:59 -04:00
|
|
|
|
2020-12-28 12:58:06 -08:00
|
|
|
bool WaitCommand::RunsWhenDisabled() const {
|
|
|
|
|
return true;
|
|
|
|
|
}
|