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>
113 lines
2.8 KiB
C++
113 lines
2.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.
|
|
|
|
#include "frc/smartdashboard/FieldObject2d.h"
|
|
|
|
#include <vector>
|
|
|
|
#include "frc/trajectory/Trajectory.h"
|
|
|
|
using namespace frc;
|
|
|
|
FieldObject2d::FieldObject2d(FieldObject2d&& rhs) {
|
|
std::swap(m_name, rhs.m_name);
|
|
std::swap(m_entry, rhs.m_entry);
|
|
std::swap(m_poses, rhs.m_poses);
|
|
}
|
|
|
|
FieldObject2d& FieldObject2d::operator=(FieldObject2d&& rhs) {
|
|
std::swap(m_name, rhs.m_name);
|
|
std::swap(m_entry, rhs.m_entry);
|
|
std::swap(m_poses, rhs.m_poses);
|
|
|
|
return *this;
|
|
}
|
|
|
|
void FieldObject2d::SetPose(const Pose2d& pose) {
|
|
SetPoses({pose});
|
|
}
|
|
|
|
void FieldObject2d::SetPose(units::meter_t x, units::meter_t y,
|
|
Rotation2d rotation) {
|
|
SetPoses({{x, y, rotation}});
|
|
}
|
|
|
|
Pose2d FieldObject2d::GetPose() const {
|
|
std::scoped_lock lock(m_mutex);
|
|
UpdateFromEntry();
|
|
if (m_poses.empty()) {
|
|
return {};
|
|
}
|
|
return m_poses[0];
|
|
}
|
|
|
|
void FieldObject2d::SetPoses(std::span<const Pose2d> poses) {
|
|
std::scoped_lock lock(m_mutex);
|
|
m_poses.assign(poses.begin(), poses.end());
|
|
UpdateEntry();
|
|
}
|
|
|
|
void FieldObject2d::SetPoses(std::initializer_list<Pose2d> poses) {
|
|
SetPoses({poses.begin(), poses.end()});
|
|
}
|
|
|
|
void FieldObject2d::SetTrajectory(const Trajectory& trajectory) {
|
|
std::scoped_lock lock(m_mutex);
|
|
m_poses.clear();
|
|
m_poses.reserve(trajectory.States().size());
|
|
for (auto&& state : trajectory.States()) {
|
|
m_poses.push_back(state.pose);
|
|
}
|
|
UpdateEntry();
|
|
}
|
|
|
|
std::vector<Pose2d> FieldObject2d::GetPoses() const {
|
|
std::scoped_lock lock(m_mutex);
|
|
UpdateFromEntry();
|
|
return std::vector<Pose2d>(m_poses.begin(), m_poses.end());
|
|
}
|
|
|
|
std::span<const Pose2d> FieldObject2d::GetPoses(
|
|
wpi::SmallVectorImpl<Pose2d>& out) const {
|
|
std::scoped_lock lock(m_mutex);
|
|
UpdateFromEntry();
|
|
out.assign(m_poses.begin(), m_poses.end());
|
|
return out;
|
|
}
|
|
|
|
void FieldObject2d::UpdateEntry(bool setDefault) {
|
|
if (!m_entry) {
|
|
return;
|
|
}
|
|
wpi::SmallVector<double, 9> arr;
|
|
for (auto&& pose : m_poses) {
|
|
auto& translation = pose.Translation();
|
|
arr.push_back(translation.X().value());
|
|
arr.push_back(translation.Y().value());
|
|
arr.push_back(pose.Rotation().Degrees().value());
|
|
}
|
|
if (setDefault) {
|
|
m_entry.SetDefault(arr);
|
|
} else {
|
|
m_entry.Set(arr);
|
|
}
|
|
}
|
|
|
|
void FieldObject2d::UpdateFromEntry() const {
|
|
if (!m_entry) {
|
|
return;
|
|
}
|
|
auto arr = m_entry.Get();
|
|
auto size = arr.size();
|
|
if ((size % 3) != 0) {
|
|
return;
|
|
}
|
|
m_poses.resize(size / 3);
|
|
for (size_t i = 0; i < size / 3; ++i) {
|
|
m_poses[i] =
|
|
Pose2d{units::meter_t{arr[i * 3 + 0]}, units::meter_t{arr[i * 3 + 1]},
|
|
units::degree_t{arr[i * 3 + 2]}};
|
|
}
|
|
}
|