mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
52 lines
1.6 KiB
C++
52 lines
1.6 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.
|
|
|
|
#include "wpi/glass/networktables/NTCommandScheduler.hpp"
|
|
|
|
#include <utility>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "wpi/util/StringExtras.hpp"
|
|
|
|
using namespace wpi::glass;
|
|
|
|
NTCommandSchedulerModel::NTCommandSchedulerModel(std::string_view path)
|
|
: NTCommandSchedulerModel(wpi::nt::NetworkTableInstance::GetDefault(),
|
|
path) {}
|
|
|
|
NTCommandSchedulerModel::NTCommandSchedulerModel(
|
|
wpi::nt::NetworkTableInstance inst, std::string_view path)
|
|
: m_inst{inst},
|
|
m_name{inst.GetStringTopic(fmt::format("{}/.name", path)).Subscribe("")},
|
|
m_commands{inst.GetStringArrayTopic(fmt::format("{}/Names", path))
|
|
.Subscribe({})},
|
|
m_ids{
|
|
inst.GetIntegerArrayTopic(fmt::format("{}/Ids", path)).Subscribe({})},
|
|
m_cancel{
|
|
inst.GetIntegerArrayTopic(fmt::format("{}/Cancel", path)).Publish()},
|
|
m_nameValue{wpi::util::rsplit(path, '/').second} {}
|
|
|
|
void NTCommandSchedulerModel::CancelCommand(size_t index) {
|
|
if (index < m_idsValue.size()) {
|
|
m_cancel.Set({{m_idsValue[index]}});
|
|
}
|
|
}
|
|
|
|
void NTCommandSchedulerModel::Update() {
|
|
for (auto&& v : m_name.ReadQueue()) {
|
|
m_nameValue = std::move(v.value);
|
|
}
|
|
for (auto&& v : m_commands.ReadQueue()) {
|
|
m_commandsValue = std::move(v.value);
|
|
}
|
|
for (auto&& v : m_ids.ReadQueue()) {
|
|
m_idsValue = std::move(v.value);
|
|
}
|
|
}
|
|
|
|
bool NTCommandSchedulerModel::Exists() {
|
|
return m_commands.Exists();
|
|
}
|