2022-04-08 08:02:08 +03: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.
|
|
|
|
|
|
|
|
|
|
#include "frc2/command/RepeatCommand.h"
|
|
|
|
|
|
2022-12-16 04:28:52 +02:00
|
|
|
#include <wpi/sendable/SendableBuilder.h>
|
|
|
|
|
|
2022-04-08 08:02:08 +03:00
|
|
|
using namespace frc2;
|
|
|
|
|
|
|
|
|
|
RepeatCommand::RepeatCommand(std::unique_ptr<Command>&& command) {
|
2022-12-07 07:13:31 +02:00
|
|
|
CommandScheduler::GetInstance().RequireUngrouped(command.get());
|
2022-04-08 08:02:08 +03:00
|
|
|
m_command = std::move(command);
|
2022-12-07 07:13:31 +02:00
|
|
|
m_command->SetComposed(true);
|
2022-04-08 08:02:08 +03:00
|
|
|
AddRequirements(m_command->GetRequirements());
|
2022-12-16 04:28:52 +02:00
|
|
|
SetName(std::string{"Repeat("}.append(m_command->GetName()).append(")"));
|
2022-04-08 08:02:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RepeatCommand::Initialize() {
|
2022-11-26 09:50:42 +02:00
|
|
|
m_ended = false;
|
2022-04-08 08:02:08 +03:00
|
|
|
m_command->Initialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RepeatCommand::Execute() {
|
2022-11-26 09:50:42 +02:00
|
|
|
if (m_ended) {
|
|
|
|
|
m_ended = false;
|
|
|
|
|
m_command->Initialize();
|
|
|
|
|
}
|
2022-04-08 08:02:08 +03:00
|
|
|
m_command->Execute();
|
|
|
|
|
if (m_command->IsFinished()) {
|
|
|
|
|
// restart command
|
|
|
|
|
m_command->End(false);
|
2022-11-26 09:50:42 +02:00
|
|
|
m_ended = true;
|
2022-04-08 08:02:08 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RepeatCommand::IsFinished() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RepeatCommand::End(bool interrupted) {
|
2023-04-28 20:57:33 -07:00
|
|
|
// Make sure we didn't already call end() (which would happen if the command
|
|
|
|
|
// finished in the last call to our execute())
|
|
|
|
|
if (!m_ended) {
|
|
|
|
|
m_command->End(interrupted);
|
|
|
|
|
m_ended = true;
|
|
|
|
|
}
|
2022-04-08 08:02:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RepeatCommand::RunsWhenDisabled() const {
|
|
|
|
|
return m_command->RunsWhenDisabled();
|
|
|
|
|
}
|
2022-11-26 09:50:42 +02:00
|
|
|
|
|
|
|
|
Command::InterruptionBehavior RepeatCommand::GetInterruptionBehavior() const {
|
|
|
|
|
return m_command->GetInterruptionBehavior();
|
|
|
|
|
}
|
2022-12-16 04:28:52 +02:00
|
|
|
|
|
|
|
|
void RepeatCommand::InitSendable(wpi::SendableBuilder& builder) {
|
2023-07-14 01:12:01 -04:00
|
|
|
Command::InitSendable(builder);
|
2022-12-16 04:28:52 +02:00
|
|
|
builder.AddStringProperty(
|
|
|
|
|
"command", [this] { return m_command->GetName(); }, nullptr);
|
|
|
|
|
}
|