1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * 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 "PickingStructs.h"
- #include <AzCore/EBus/EBus.h>
- namespace AppleKraken
- {
- //! Notifications related to apple picking.
- class ApplePickingNotifications : public AZ::EBusTraits
- {
- public:
- static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single;
- static const AZ::EBusAddressPolicy AddressPolicy = AZ::EBusAddressPolicy::ById;
- // Messages are addressed by EntityId.
- using BusIdType = AZ::EntityId;
- //! The effector is ready for picking
- virtual void EffectorReadyForPicking() = 0;
- //! An apple was successfully picked.
- virtual void ApplePicked() = 0;
- //! An apple was successfully retrieved to storage and can count as harvested.
- virtual void AppleRetrieved() = 0;
- //! Apple picking failed
- //! @param reason reason for failure, e.g. "out of reach", "apple not found", "approach obstructed", etc.
- virtual void PickingFailed(const AZStd::string& reason) = 0;
- };
- using ApplePickingNotificationBus = AZ::EBus<ApplePickingNotifications>;
- } // namespace AppleKraken
|