12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * 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
- *
- */
- #pragma once
- #include <AzCore/Component/Component.h>
- #include <ROS2/RobotControl/Twist/TwistBus.h>
- namespace ROS2
- {
- //! A component with a simple handler for Twist type of control (linear and angular velocities).
- //! Velocities are directly applied to a selected body.
- class RigidBodyTwistControlComponent
- : public AZ::Component
- , private TwistNotificationBus::Handler
- {
- public:
- AZ_COMPONENT(RigidBodyTwistControlComponent, "{D994FE1A-AA6A-42B9-8B8E-B3B375891F5B}", AZ::Component);
- RigidBodyTwistControlComponent() = default;
- //////////////////////////////////////////////////////////////////////////
- // Component overrides
- void Activate() override;
- void Deactivate() override;
- //////////////////////////////////////////////////////////////////////////
- static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
- static void Reflect(AZ::ReflectContext* context);
- private:
- //////////////////////////////////////////////////////////////////////////
- // TwistNotificationBus::Handler overrides
- void TwistReceived(const AZ::Vector3& linear, const AZ::Vector3& angular) override;
- //////////////////////////////////////////////////////////////////////////
- };
- } // namespace ROS2
|