mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
This removes the name and subsystem from individual objects, and instead puts this data into a new singleton class, SendableRegistry. Much of LiveWindow has been refactored into SendableRegistry. In C++, a new CRTP helper class, SendableHelper, has been added to provide move and destruction functionality. Shims for GetName, SetName, GetSubsystem, and SetSubsystem have been added to Command and Subsystem (both old and new), and also to SendableHelper to prevent code breakage. This deprecates SendableBase in preparation for future removal.
49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2016-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 <functional>
|
|
#include <vector>
|
|
|
|
#include "frc/SpeedController.h"
|
|
#include "frc/smartdashboard/Sendable.h"
|
|
#include "frc/smartdashboard/SendableHelper.h"
|
|
|
|
namespace frc {
|
|
|
|
class SpeedControllerGroup : public Sendable,
|
|
public SpeedController,
|
|
public SendableHelper<SpeedControllerGroup> {
|
|
public:
|
|
template <class... SpeedControllers>
|
|
explicit SpeedControllerGroup(SpeedController& speedController,
|
|
SpeedControllers&... speedControllers);
|
|
~SpeedControllerGroup() override = default;
|
|
|
|
SpeedControllerGroup(SpeedControllerGroup&&) = default;
|
|
SpeedControllerGroup& operator=(SpeedControllerGroup&&) = default;
|
|
|
|
void Set(double speed) override;
|
|
double Get() const override;
|
|
void SetInverted(bool isInverted) override;
|
|
bool GetInverted() const override;
|
|
void Disable() override;
|
|
void StopMotor() override;
|
|
void PIDWrite(double output) override;
|
|
|
|
void InitSendable(SendableBuilder& builder) override;
|
|
|
|
private:
|
|
bool m_isInverted = false;
|
|
std::vector<std::reference_wrapper<SpeedController>> m_speedControllers;
|
|
};
|
|
|
|
} // namespace frc
|
|
|
|
#include "frc/SpeedControllerGroup.inc"
|