// 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/math/geometry/proto/Transform3dProto.hpp" #include "wpi/util/protobuf/ProtobufCallbacks.hpp" #include "wpimath/protobuf/geometry3d.npb.h" std::optional wpi::util::Protobuf::Unpack(InputStream& stream) { wpi::util::UnpackCallback tsln; wpi::util::UnpackCallback rot; wpi_proto_ProtobufTransform3d msg{ .translation = tsln.Callback(), .rotation = rot.Callback(), }; if (!stream.Decode(msg)) { return {}; } auto itsln = tsln.Items(); auto irot = rot.Items(); if (itsln.empty() || irot.empty()) { return {}; } return wpi::math::Transform3d{ itsln[0], irot[0], }; } bool wpi::util::Protobuf::Pack( OutputStream& stream, const wpi::math::Transform3d& value) { wpi::util::PackCallback tsln{&value.Translation()}; wpi::util::PackCallback rot{&value.Rotation()}; wpi_proto_ProtobufTransform3d msg{ .translation = tsln.Callback(), .rotation = rot.Callback(), }; return stream.Encode(msg); }