You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Moved SmartObjects out of restricted folder Moved StateTree out of restricted folder Moved ZoneGraph out of restricted folder Moved ZoneGraphAnnotations out of restricted folder #jira UE-115297 #ROBOMERGE-OWNER: mieszko.zielinski #ROBOMERGE-AUTHOR: mieszko.zielinski #ROBOMERGE-SOURCE: CL 17648223 via CL 17648246 via CL 17648261 via CL 17648385 via CL 17648390 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v875-17642767) #ROBOMERGE-CONFLICT from-shelf #ROBOMERGE[STARSHIP]: UE5-Main [CL 17648742 by mieszko zielinski in ue5-release-engine-test branch]
71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Components/ActorComponent.h"
|
|
#include "GameplayTagAssetInterface.h"
|
|
#include "GameplayTagContainer.h"
|
|
#include "BrainComponent.h"
|
|
#include "StateTreeInstance.h"
|
|
#include "Tasks/AITask.h"
|
|
#include "StateTreeComponent.generated.h"
|
|
|
|
class UStateTree;
|
|
|
|
UCLASS(ClassGroup = AI, HideCategories = (Activation, Collision), meta = (BlueprintSpawnableComponent))
|
|
class STATETREEMODULE_API UStateTreeComponent : public UBrainComponent, public IGameplayTaskOwnerInterface
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
UStateTreeComponent(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
|
|
|
|
// BEGIN UActorComponent overrides
|
|
virtual void InitializeComponent() override;
|
|
virtual void UninitializeComponent() override;
|
|
virtual void TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction *ThisTickFunction) override;
|
|
// END UActorComponent overrides
|
|
|
|
// BEGIN UBrainComponent overrides
|
|
virtual void StartLogic() override;
|
|
virtual void RestartLogic() override;
|
|
virtual void StopLogic(const FString& Reason) override;
|
|
virtual void Cleanup() override;
|
|
virtual void PauseLogic(const FString& Reason) override;
|
|
virtual EAILogicResuming::Type ResumeLogic(const FString& Reason) override;
|
|
virtual bool IsRunning() const override;
|
|
virtual bool IsPaused() const override;
|
|
// END UBrainComponent overrides
|
|
|
|
// BEGIN IGameplayTaskOwnerInterface
|
|
virtual UGameplayTasksComponent* GetGameplayTasksComponent(const UGameplayTask& Task) const override;
|
|
virtual AActor* GetGameplayTaskOwner(const UGameplayTask* Task) const override;
|
|
virtual AActor* GetGameplayTaskAvatar(const UGameplayTask* Task) const override;
|
|
virtual uint8 GetGameplayTaskDefaultPriority() const override;
|
|
virtual void OnGameplayTaskInitialized(UGameplayTask& Task) override;
|
|
// END IGameplayTaskOwnerInterface
|
|
|
|
#if ENABLE_VISUAL_LOG
|
|
virtual void DescribeSelfToVisLog(struct FVisualLogEntry* Snapshot) const;
|
|
#endif // ENABLE_VISUAL_LOG
|
|
|
|
#if WITH_GAMEPLAY_DEBUGGER
|
|
virtual FString GetDebugInfoString() const override;
|
|
#endif // WITH_GAMEPLAY_DEBUGGER
|
|
|
|
private:
|
|
|
|
protected:
|
|
|
|
UPROPERTY(EditDefaultsOnly, Category = AI)
|
|
UStateTree* StateTree;
|
|
|
|
UPROPERTY()
|
|
FStateTreeInstance StateTreeInstance;
|
|
|
|
/** if set, state tree execution is allowed */
|
|
uint8 bIsRunning : 1;
|
|
|
|
/** if set, execution requests will be postponed */
|
|
uint8 bIsPaused : 1;
|
|
};
|