-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMyBlueprintFunctionLibrary.cpp
94 lines (77 loc) · 3.22 KB
/
MyBlueprintFunctionLibrary.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Fill out your copyright notice in the Description page of Project Settings.
#include "FPSRogueLike/BlueprintLibrary/MyBlueprintFunctionLibrary.h"
#include "GameModes/LyraGameMode.h"
#include "Components/GameStateComponent.h"
#include "Components/ActorComponent.h"
#include "FPSRogueLike/Gameplay/FPSGameMode.h"
#include "Engine/World.h"
#include "GameModes/LyraExperienceDefinition.h"
#include "Character/LyraPawnExtensionComponent.h"
#include "GameModes/LyraExperienceManagerComponent.h"
#include "GameFramework/PlayerState.h"
#include "Kismet/GameplayStatics.h"
#include "GameFramework/PlayerController.h"
#include "AIController.h"
#include "Character/LyraPawnExtensionComponent.h"
void UMyBlueprintFunctionLibrary::GiveActorAbilityWithInputTag(AActor* TargetActor,
UAbilitySystemComponent* AbilitySystemComponent, FMyBlueprintFunctionLibrary_GameplayAbilityStruct AbilityStruct)
{
check(AbilitySystemComponent);
TArray<FGameplayAbilitySpecHandle> AbilityHandles;
AbilitySystemComponent->GetAllAbilities(AbilityHandles);
TArray<FString> AbilityHandleStrings;
if(AbilityHandles.Num() > 0)
{
for (int i = 0; i < AbilityHandles.Num(); i++)
{
FString AbilityString = AbilitySystemComponent->FindAbilitySpecFromHandle(AbilityHandles[i])->Ability->GetName();
AbilityHandleStrings.Add(AbilityString);
}
}
if (!AbilitySystemComponent->IsOwnerActorAuthoritative())
{
// Must be authoritative to give or take ability sets.
return;
}
if (!AbilityStruct.bAllowStacking && AbilityHandleStrings.Contains("Default__" + AbilityStruct.Ability->GetName()))
{
return;
}
if (!IsValid(AbilityStruct.Ability))
{
return;
}
ULyraGameplayAbility* AbilityCDO = AbilityStruct.Ability->GetDefaultObject<ULyraGameplayAbility>();
FGameplayAbilitySpec AbilitySpec(AbilityCDO, AbilityStruct.AbilityLevel);
AbilitySpec.SourceObject = TargetActor;
AbilitySpec.DynamicAbilityTags.AddTag(AbilityStruct.InputTag);
AbilitySystemComponent->GiveAbility(AbilitySpec);
}
void UMyBlueprintFunctionLibrary::SpawnEnemy(UGameStateComponent* GameStateComponent, AFPSGameMode* GameMode, TSubclassOf<AAIController> BotControllerClass)
{
FActorSpawnParameters SpawnInfo;
SpawnInfo.SpawnCollisionHandlingOverride = ESpawnActorCollisionHandlingMethod::AdjustIfPossibleButDontSpawnIfColliding;
SpawnInfo.OverrideLevel = GameStateComponent->GetComponentLevel();
SpawnInfo.ObjectFlags |= RF_Transient;
AAIController* NewController = GameStateComponent->GetWorld()->SpawnActor<AAIController>(BotControllerClass,
FVector::ZeroVector, FRotator::ZeroRotator, SpawnInfo);
if (NewController != nullptr)
{
check(GameMode);
if (NewController->PlayerState != nullptr)
{
const int32 RandomBotNumber = FMath::RandRange(10000, 99999);
const FString BotName = FString::Printf(TEXT("Enemy %d"), RandomBotNumber);
NewController->PlayerState->SetPlayerName(BotName);
}
GameMode->DispatchPostLogin(NewController);
GameMode->RestartPlayer(NewController);
if (NewController->GetPawn() != nullptr)
{
if (ULyraPawnExtensionComponent* PawnExtComponent = NewController->GetPawn()->FindComponentByClass<ULyraPawnExtensionComponent>())
{
PawnExtComponent->CheckDefaultInitialization();
}
}
}
}