mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
* Use explicit this capture required by C++20 * Use C++20 span * Replace wpi::numbers with std::numbers * Fix C++20 clang-tidy warning false positive in fmt * Remove ciso646 include since C++20 removed that header * Fix global-buffer-overflow asan warnings in ntcore tests * Add DIOSetProxy constructor to HAL * Upgrade MSVC compiler to 2022 * Bump native-utils to 2023.2.7 (changes to std=c++20) Co-authored-by: Peter Johnson <johnson.peter@gmail.com>
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <span>
|
|
|
|
#include <wpi/SmallVector.h>
|
|
|
|
#include "frc2/command/CommandBase.h"
|
|
#include "frc2/command/CommandHelper.h"
|
|
#include "frc2/command/SetUtilities.h"
|
|
|
|
namespace frc2 {
|
|
/**
|
|
* Schedules the given commands when this command is initialized, and ends when
|
|
* all the commands are no longer scheduled. Useful for forking off from
|
|
* CommandGroups. If this command is interrupted, it will cancel all of the
|
|
* commands.
|
|
*
|
|
* This class is provided by the NewCommands VendorDep
|
|
*/
|
|
class ProxyScheduleCommand
|
|
: public CommandHelper<CommandBase, ProxyScheduleCommand> {
|
|
public:
|
|
/**
|
|
* Creates a new ProxyScheduleCommand that schedules the given commands when
|
|
* initialized, and ends when they are all no longer scheduled.
|
|
*
|
|
* @param toSchedule the commands to schedule
|
|
*/
|
|
explicit ProxyScheduleCommand(std::span<Command* const> toSchedule);
|
|
|
|
explicit ProxyScheduleCommand(Command* toSchedule);
|
|
|
|
/**
|
|
* Creates a new ProxyScheduleCommand that schedules the given command when
|
|
* initialized, and ends when it is no longer scheduled.
|
|
*
|
|
* <p>Note that this constructor passes ownership of the given command to the
|
|
* returned ProxyScheduleCommand.
|
|
*
|
|
* @param toSchedule the command to schedule
|
|
*/
|
|
explicit ProxyScheduleCommand(std::unique_ptr<Command>&& toSchedule);
|
|
|
|
ProxyScheduleCommand(ProxyScheduleCommand&& other) = default;
|
|
|
|
void Initialize() override;
|
|
|
|
void End(bool interrupted) override;
|
|
|
|
void Execute() override;
|
|
|
|
bool IsFinished() override;
|
|
|
|
private:
|
|
wpi::SmallVector<Command*, 4> m_toSchedule;
|
|
std::unique_ptr<Command> m_owning;
|
|
bool m_finished{false};
|
|
};
|
|
} // namespace frc2
|