1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include "SimulationClock.h"
- #include <AzCore/Time/ITime.h>
- #include <ROS2/ROS2Bus.h>
- #include <rclcpp/qos.hpp>
- namespace ROS2
- {
- builtin_interfaces::msg::Time SimulationClock::GetROSTimestamp() const
- {
- const auto elapsedTime = GetElapsedTimeMicroseconds();
- builtin_interfaces::msg::Time timeStamp;
- timeStamp.sec = static_cast<int32_t>(elapsedTime / 1000000);
- timeStamp.nanosec = static_cast<uint32_t>((elapsedTime % 1000000) * 1000);
- return timeStamp;
- }
- int64_t SimulationClock::GetElapsedTimeMicroseconds() const
- {
- if (auto* timeSystem = AZ::Interface<AZ::ITime>::Get())
- {
- return static_cast<int64_t>(timeSystem->GetElapsedTimeUs());
- }
- else
- {
- AZ_Error("SimulationClock", false, "No ITime interface available for ROS2 Gem simulation clock");
- return 0;
- }
- }
- void SimulationClock::Tick()
- {
- if (!m_clockPublisher)
- { // Lazy construct
- auto ros2Node = ROS2Interface::Get()->GetNode();
- rclcpp::ClockQoS qos;
- m_clockPublisher = ros2Node->create_publisher<rosgraph_msgs::msg::Clock>("/clock", qos);
- }
- rosgraph_msgs::msg::Clock msg;
- msg.clock = GetROSTimestamp();
- m_clockPublisher->publish(msg);
- }
- } // namespace ROS2
|