mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
- Remove use of std::set. The only place std::set was actually used was in ParallelRaceGroup, but this was of minimal utility as ParallelRaceGroup checked for duplicate subsystem requirements, so it would be very unusual to end up with duplicate commands in any case; replaced it with a vector. - Remove use of std::unordered_map except for SelectCommand. Replaced with vector. - Use pImpl idiom for CommandScheduler - Minimize include files (remove unnecessary ones) - Reformat include file order for consistency
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
|
|
/* 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. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <frc2/Timer.h>
|
|
#include <units/units.h>
|
|
|
|
#include "frc2/command/CommandBase.h"
|
|
#include "frc2/command/CommandHelper.h"
|
|
|
|
namespace frc2 {
|
|
/**
|
|
* A command that does nothing but takes a specified amount of time to finish.
|
|
* Useful for CommandGroups. Can also be subclassed to make a command with an
|
|
* internal timer.
|
|
*/
|
|
class WaitCommand : public CommandHelper<CommandBase, WaitCommand> {
|
|
public:
|
|
/**
|
|
* Creates a new WaitCommand. This command will do nothing, and end after the
|
|
* specified duration.
|
|
*
|
|
* @param duration the time to wait
|
|
*/
|
|
explicit WaitCommand(units::second_t duration);
|
|
|
|
WaitCommand(WaitCommand&& other) = default;
|
|
|
|
WaitCommand(const WaitCommand& other) = default;
|
|
|
|
void Initialize() override;
|
|
|
|
void End(bool interrupted) override;
|
|
|
|
bool IsFinished() override;
|
|
|
|
bool RunsWhenDisabled() const override;
|
|
|
|
protected:
|
|
Timer m_timer;
|
|
|
|
private:
|
|
units::second_t m_duration;
|
|
};
|
|
} // namespace frc2
|