| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- * 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 "AppleDetectionGroundTruth.h"
- #include "ApplePickingNotifications.h"
- #include "ApplePickingRequests.h"
- #include <AzCore/Component/Component.h>
- #include <AzCore/Component/TickBus.h>
- #include <rclcpp/rclcpp.hpp>
- #include <std_srvs/srv/trigger.hpp>
- #include <std_srvs/srv/empty.hpp>
- #include <std_msgs/msg/float32.hpp>
- #include <std_msgs/msg/string.hpp>
- namespace AppleKraken
- {
- using TriggerRequestPtr = std::shared_ptr<std_srvs::srv::Trigger::Request>;
- using TriggerResponsePtr = std::shared_ptr<std_srvs::srv::Trigger::Response>;
- //! Demo component handling orchestration of apple picking
- class ApplePickerComponent
- : public AZ::Component
- , public ApplePickingNotificationBus::Handler
- , public AZ::TickBus::Handler
- {
- public:
- AZ_COMPONENT(ApplePickerComponent, "{E9E83A4A-31A4-4E7A-AF88-7565AC8B9F27}", AZ::Component);
- ApplePickerComponent() = default;
- static void Reflect(AZ::ReflectContext* context);
- static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
- //! Detect and pick all apples in manipulator range.
- void StartAutomatedOperation();
- //! Report overall progress of gathering task.
- //! @returns how much of the task is complete (0: nothing, 1: all of it). The task is completed when all reachable apples are
- //! gathered (or had a failure) and the effector is in IDLE state.
- float ReportProgress();
- private:
- void Activate() override;
- void Deactivate() override;
- void OnTick(float deltaTime, AZ::ScriptTimePoint time) override;
- void EffectorReadyForPicking() override;
- void ApplePicked() override;
- void AppleRetrieved() override;
- void PickingFailed(const AZStd::string& reason) override;
- bool IsBusy() const;
- void PickNextApple();
- void QueryEnvironmentForAllApplesInBox(const AZ::Obb& globalBox);
- void ProcessTriggerServiceCall(const TriggerRequestPtr req, TriggerResponsePtr resp);
- void ProcessCancelServiceCall(const TriggerRequestPtr req, TriggerResponsePtr resp);
- AZStd::string m_triggerServiceTopic = "trigger_apple_gathering";
- AZStd::string m_cancelServiceTopic = "cancel_apple_gathering";
- AZStd::string m_orchestratorStatusTopic = "orchestration_status";
- AZStd::string m_doneServiceTopic = "done_apple_gathering";
- AZStd::string m_progressTopic = "progress_apple_gathering";
- AZ::EntityId m_effectorEntityId;
- AZ::EntityId m_fruitStorageEntityId;
- // TODO - actually use this entity for retrieval position
- AZ::EntityId m_retrievalPointEntityId; //!< used to sort apples by distance to retrieval chute
- AZ::EntityId m_entryAnimationEntityId; //!< used to animate apple going into chute
- rclcpp::Service<std_srvs::srv::Trigger>::SharedPtr m_triggerService;
- rclcpp::Service<std_srvs::srv::Trigger>::SharedPtr m_cancelService;
- rclcpp::Client<std_srvs::srv::Empty>::SharedPtr m_doneServiceClient;
- rclcpp::Subscription<std_msgs::msg::String>::SharedPtr m_orchestrationStatusSubscriber;
- rclcpp::Publisher<std_msgs::msg::Float32>::SharedPtr m_progressPublisher;
- size_t m_initialTasksSize = 0;
- AZStd::queue<PickAppleTask> m_currentAppleTasks;
- AZStd::unique_ptr<AppleDetectionGroundTruth> m_appleGroundTruthDetector;
- };
- } // namespace AppleKraken
|