You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/LmbrCentral/Code/Source/Ai/EditorNavigationSeedCompone...

47 lines
1.4 KiB
C++

/*
* 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 <AzToolsFramework/ToolsComponents/EditorComponentBase.h>
#include <AzCore/Component/TransformBus.h>
#include <LmbrCentral/Ai/NavigationSeedBus.h>
namespace LmbrCentral
{
class EditorNavigationSeedComponent
: public AzToolsFramework::Components::EditorComponentBase
, private NavigationSeedRequestsBus::Handler
, private AZ::TransformNotificationBus::Handler
{
using Base = AzToolsFramework::Components::EditorComponentBase;
public:
AZ_EDITOR_COMPONENT(EditorNavigationSeedComponent, "{A836E9F7-0C5A-4397-AD01-523EBC1E41A5}");
EditorNavigationSeedComponent() = default;
protected:
void Activate() override;
void Deactivate() override;
static void Reflect(AZ::ReflectContext* context);
private:
AZStd::string m_agentType;
void TriggerReachaibilityRecalculation() const;
AZ::u32 OnAgentTypeChanged() const;
// NavigationSeedRequestBus
void RecalculateReachabilityAroundSelf() override;
// TransformNotificationBus
void OnTransformChanged(const AZ::Transform& local, const AZ::Transform& world) override;
};
} // namespace LmbrCentral