2023-02-03 01:29:14 +00:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "NakatomiCharacter.h"
|
|
|
|
#include "BehaviorTree/BehaviorTreeComponent.h"
|
2023-02-09 23:22:41 +00:00
|
|
|
#include "RandomWeaponParameters.h"
|
2023-02-03 01:29:14 +00:00
|
|
|
#include "EnemyCharacter.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class NAKATOMI_API AEnemyCharacter : public ANakatomiCharacter
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
2023-02-09 23:22:41 +00:00
|
|
|
|
2023-02-03 01:29:14 +00:00
|
|
|
private:
|
|
|
|
UPROPERTY(EditDefaultsOnly, Meta = (AllowPrivateAccess = "true"))
|
|
|
|
UBehaviorTree* BehaviourTree;
|
2023-06-23 21:06:18 +01:00
|
|
|
|
2023-02-09 23:22:41 +00:00
|
|
|
UPROPERTY(VisibleAnywhere)
|
|
|
|
URandomWeaponParameters* RandomWeaponParameters;
|
2023-02-03 01:29:14 +00:00
|
|
|
|
2023-06-29 21:55:43 +01:00
|
|
|
FTimerHandle CooldownTimerHandle;
|
|
|
|
|
2023-02-03 01:29:14 +00:00
|
|
|
public:
|
|
|
|
AEnemyCharacter();
|
|
|
|
|
|
|
|
UBehaviorTree* GetBehaviourTree();
|
|
|
|
|
2023-03-13 22:22:56 +00:00
|
|
|
virtual void OnFire() override;
|
|
|
|
|
2023-06-29 21:55:43 +01:00
|
|
|
void WeaponCooldownHandler();
|
|
|
|
|
2023-02-03 01:29:14 +00:00
|
|
|
protected:
|
|
|
|
virtual void BeginPlay() override;
|
2023-03-13 22:22:56 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void CalculateHits(TArray<FHitResult>* hits) override;
|
|
|
|
|
|
|
|
virtual void ProcessHits(TArray<FHitResult> hits) override;
|
2023-02-03 01:29:14 +00:00
|
|
|
};
|