Compare commits
7 Commits
aaea6a8985
...
60ba66b249
Author | SHA1 | Date | |
---|---|---|---|
60ba66b249 | |||
5e8473f27f | |||
bb5ae58b06 | |||
39ab5e17a8 | |||
0226afe5ae | |||
33cbfe1a18 | |||
644083344e |
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -1,4 +0,0 @@
|
|||||||
ReleaseBuilds/** filter=lfs diff=lfs merge=lfs -text
|
|
||||||
Images/** filter=lfs diff=lfs merge=lfs -text
|
|
||||||
Fonts/** filter=lfs diff=lfs merge=lfs -text
|
|
||||||
Audio/** filter=lfs diff=lfs merge=lfs -text
|
|
1
Audio/.gitattributes
vendored
Normal file
1
Audio/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./** filter=lfs diff=lfs merge=lfs -text
|
1
Fonts/.gitattributes
vendored
Normal file
1
Fonts/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./** filter=lfs diff=lfs merge=lfs -text
|
1
Images/.gitattributes
vendored
Normal file
1
Images/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./** filter=lfs diff=lfs merge=lfs -text
|
0
.gitignore → Models/.gitignore
vendored
0
.gitignore → Models/.gitignore
vendored
1
ReleaseBuilds/.gitattributes
vendored
Normal file
1
ReleaseBuilds/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./** filter=lfs diff=lfs merge=lfs -text
|
BIN
UnrealProject/Lost_Edge/Content/Blueprints/BP_CustomGameInstance.uasset
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/Blueprints/BP_CustomGameInstance.uasset
(Stored with Git LFS)
Binary file not shown.
@ -10,8 +10,8 @@
|
|||||||
#include "InputMappingContext.h"
|
#include "InputMappingContext.h"
|
||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
|
||||||
#include "CustomGameUserSettings.h"
|
#include "CustomGameUserSettings.h"
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
|
|
||||||
ACameraModeBase::ACameraModeBase()
|
ACameraModeBase::ACameraModeBase()
|
||||||
@ -25,30 +25,12 @@ void ACameraModeBase::BeginPlay()
|
|||||||
|
|
||||||
auto world = GetWorld();
|
auto world = GetWorld();
|
||||||
|
|
||||||
//GetMovementComponent()->speed
|
|
||||||
// GetCharacterMovement()->MaxWalkSpeed = moveSpeed;
|
|
||||||
|
|
||||||
auto gameSettings = UCustomGameUserSettings::GetCustomGameUserSettings();
|
auto gameSettings = UCustomGameUserSettings::GetCustomGameUserSettings();
|
||||||
|
|
||||||
if(auto camera = FindComponentByClass<UCameraComponent>())
|
if(auto camera = FindComponentByClass<UCameraComponent>())
|
||||||
{
|
{
|
||||||
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
|
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(auto PC = Cast<APlayerController>(GetController()))
|
|
||||||
{
|
|
||||||
if(auto inputSubsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(PC->GetLocalPlayer()))
|
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
|
|
||||||
{
|
|
||||||
inputSubsystem->ClearAllMappings();
|
|
||||||
for(auto& inputContext : GI->inputContexts)
|
|
||||||
{
|
|
||||||
inputSubsystem->AddMappingContext(inputContext.LoadSynchronous(), 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ACameraModeBase::Tick(float DeltaTime)
|
void ACameraModeBase::Tick(float DeltaTime)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
#include "UObject/Object.h"
|
#include "UObject/Object.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
#include "Levels/LevelBase.h"
|
#include "Levels/LevelBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ void UCommonFunctions::EnterSlowMotion(float duration)
|
|||||||
|
|
||||||
SlowMotion::targetDilation = SlowMotion::slowDilation;
|
SlowMotion::targetDilation = SlowMotion::slowDilation;
|
||||||
|
|
||||||
auto GI = UCustomGameInstanceBase::GetGameInstance();
|
auto GI = UCustomGameInstance::GetGameInstance();
|
||||||
if(!GI)
|
if(!GI)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -101,7 +101,7 @@ void UCommonFunctions::ExitSlowMotion(float duration)
|
|||||||
|
|
||||||
SlowMotion::targetDilation = SlowMotion::normalDilation;
|
SlowMotion::targetDilation = SlowMotion::normalDilation;
|
||||||
|
|
||||||
auto GI = UCustomGameInstanceBase::GetGameInstance();
|
auto GI = UCustomGameInstance::GetGameInstance();
|
||||||
if(!GI)
|
if(!GI)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -116,7 +116,7 @@ FWorldDilationChangedDelegate& UCommonFunctions::GetWorldDilationChangedDelegate
|
|||||||
|
|
||||||
void UCommonFunctions::SlowMotionTick()
|
void UCommonFunctions::SlowMotionTick()
|
||||||
{
|
{
|
||||||
const UWorld* world = UCustomGameInstanceBase::GetGameInstance()->GetWorld();
|
const UWorld* world = UCustomGameInstance::GetGameInstance()->GetWorld();
|
||||||
const float currentDilation = UGameplayStatics::GetGlobalTimeDilation(world);
|
const float currentDilation = UGameplayStatics::GetGlobalTimeDilation(world);
|
||||||
float newDilation = FMath::FInterpTo(currentDilation, SlowMotion::targetDilation, 1, SlowMotion::interpolationSpeed);
|
float newDilation = FMath::FInterpTo(currentDilation, SlowMotion::targetDilation, 1, SlowMotion::interpolationSpeed);
|
||||||
|
|
||||||
|
@ -0,0 +1,74 @@
|
|||||||
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
#include "CustomGameInstance.h"
|
||||||
|
|
||||||
|
#include "Kismet/GameplayStatics.h"
|
||||||
|
#include "Kismet/KismetSystemLibrary.h"
|
||||||
|
|
||||||
|
#include "CommonFunctions.h"
|
||||||
|
#include "ContentLoader.h"
|
||||||
|
#include "Levels/LevelBase.h"
|
||||||
|
#include "PlayerBase.h"
|
||||||
|
#include "SaveData.h"
|
||||||
|
|
||||||
|
UCustomGameInstance* UCustomGameInstance::instance = nullptr;
|
||||||
|
|
||||||
|
void UCustomGameInstance::Init()
|
||||||
|
{
|
||||||
|
UGameInstance::Init();
|
||||||
|
|
||||||
|
instance = this;
|
||||||
|
contentLoader = NewObject<UContentLoader>(this);
|
||||||
|
saveData = Cast<USaveData>(UGameplayStatics::CreateSaveGameObject(USaveData::StaticClass()));
|
||||||
|
}
|
||||||
|
|
||||||
|
UCustomGameInstance* UCustomGameInstance::GetGameInstance()
|
||||||
|
{
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
UContentLoader* UCustomGameInstance::GetContentLoader()
|
||||||
|
{
|
||||||
|
if(auto GI = GetGameInstance())
|
||||||
|
return GI->contentLoader;
|
||||||
|
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void UCustomGameInstance::SaveGame(FName checkpointName)
|
||||||
|
{
|
||||||
|
auto levelScript = UCommonFunctions::GetCurrentLevelScript(this);
|
||||||
|
if(!levelScript)
|
||||||
|
return;
|
||||||
|
|
||||||
|
auto player = UCommonFunctions::GetPlayer(this);
|
||||||
|
if(!player)
|
||||||
|
return;
|
||||||
|
saveData->level = GetWorld()->GetFName();
|
||||||
|
saveData->state = levelScript->GetState();
|
||||||
|
saveData->checkpoint = checkpointName;
|
||||||
|
if(player->leftPocketItem)
|
||||||
|
saveData->playerLeftPocketItem = player->leftPocketItem->GetFName();
|
||||||
|
else
|
||||||
|
saveData->playerLeftPocketItem = FName(TEXT(""));
|
||||||
|
if(player->rightPocketItem)
|
||||||
|
saveData->playerRightPocketItem = player->rightPocketItem->GetFName();
|
||||||
|
else
|
||||||
|
saveData->playerRightPocketItem = FName(TEXT(""));
|
||||||
|
|
||||||
|
UGameplayStatics::SaveGameToSlot(saveData, TEXT("Save"), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UCustomGameInstance::LoadGame()
|
||||||
|
{
|
||||||
|
saveData = Cast<USaveData>(UGameplayStatics::LoadGameFromSlot(TEXT("Save"), 0));
|
||||||
|
if(!saveData)
|
||||||
|
return;
|
||||||
|
|
||||||
|
UGameplayStatics::OpenLevel(this, saveData->level);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UCustomGameInstance::ExitGame()
|
||||||
|
{
|
||||||
|
UKismetSystemLibrary::QuitGame(GetWorld(), nullptr, EQuitPreference::Quit, true);
|
||||||
|
}
|
@ -4,29 +4,29 @@
|
|||||||
|
|
||||||
#include "Engine/GameInstance.h"
|
#include "Engine/GameInstance.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.generated.h"
|
#include "CustomGameInstance.generated.h"
|
||||||
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FLevelBeginnedDelegate, FName, levelName);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FLevelBeginnedDelegate, FName, levelName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expands basic UE game instance.
|
||||||
|
* Manages saves, handles content loader and can shutdown the game.
|
||||||
|
*/
|
||||||
UCLASS()
|
UCLASS()
|
||||||
class UCustomGameInstanceBase : public UGameInstance
|
class UCustomGameInstance : public UGameInstance
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/** Instantiates content loader, dummy save data and applies settings */
|
||||||
virtual void Init() override;
|
virtual void Init() override;
|
||||||
|
|
||||||
UFUNCTION(BlueprintPure)
|
UFUNCTION(BlueprintPure)
|
||||||
static UCustomGameInstanceBase* GetGameInstance();
|
static UCustomGameInstance* GetGameInstance();
|
||||||
|
|
||||||
UFUNCTION(BlueprintPure)
|
UFUNCTION(BlueprintPure)
|
||||||
static class UContentLoader* GetContentLoader();
|
static class UContentLoader* GetContentLoader();
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable, Category = Settings)
|
|
||||||
void ApplyMouseSettings();
|
|
||||||
|
|
||||||
void AppendInteractableModificatorClass(TSubclassOf<class UInteractableModificator> modificator);
|
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable, Category = Save)
|
UFUNCTION(BlueprintCallable, Category = Save)
|
||||||
void SaveGame(FName checkpointName);
|
void SaveGame(FName checkpointName);
|
||||||
UFUNCTION(BlueprintCallable, Category = Save)
|
UFUNCTION(BlueprintCallable, Category = Save)
|
||||||
@ -34,17 +34,11 @@ public:
|
|||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void ExitGame();
|
void ExitGame();
|
||||||
|
|
||||||
static UCustomGameInstanceBase* instance;
|
static UCustomGameInstance* instance;
|
||||||
|
|
||||||
|
/** Public delegate called by ALevelBase instance on instantiation */
|
||||||
FLevelBeginnedDelegate OnLevelBeginned;
|
FLevelBeginnedDelegate OnLevelBeginned;
|
||||||
|
|
||||||
UPROPERTY(EditDefaultsOnly)
|
|
||||||
TSet<TSubclassOf<class UInteractableActivator>> interactionsActivators;
|
|
||||||
TSet<TSubclassOf<class UInteractableModificator>> interactionsModificators;
|
|
||||||
|
|
||||||
UPROPERTY(EditDefaultsOnly)
|
|
||||||
TSet<TSoftObjectPtr<class UInputMappingContext>> inputContexts;
|
|
||||||
|
|
||||||
UPROPERTY(VisibleAnywhere)
|
UPROPERTY(VisibleAnywhere)
|
||||||
class USaveData* saveData = nullptr;
|
class USaveData* saveData = nullptr;
|
||||||
|
|
@ -1,149 +0,0 @@
|
|||||||
// Oleg Petruny proprietary.
|
|
||||||
|
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
|
||||||
|
|
||||||
#include "EnhancedInputLibrary.h"
|
|
||||||
#include "EnhancedInputSubsystems.h"
|
|
||||||
#include "InputMappingContext.h"
|
|
||||||
#include "Kismet/GameplayStatics.h"
|
|
||||||
#include "Kismet/KismetSystemLibrary.h"
|
|
||||||
|
|
||||||
#include "CommonFunctions.h"
|
|
||||||
#include "ContentLoader.h"
|
|
||||||
#include "CustomGameUserSettings.h"
|
|
||||||
#include "Interactable/Activators/InCameraInteractableActivator.h"
|
|
||||||
#include "Interactable/Activators/RaycastInteractableActivator.h"
|
|
||||||
#include "Interactable/Modificators/ActivateInteractableModificator.h"
|
|
||||||
#include "Interactable/Modificators/SawInteractableModificator.h"
|
|
||||||
#include "Levels/LevelBase.h"
|
|
||||||
#include "PlayerBase.h"
|
|
||||||
#include "SaveData.h"
|
|
||||||
|
|
||||||
UCustomGameInstanceBase* UCustomGameInstanceBase::instance = nullptr;
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::Init()
|
|
||||||
{
|
|
||||||
UGameInstance::Init();
|
|
||||||
|
|
||||||
instance = this;
|
|
||||||
|
|
||||||
contentLoader = NewObject<UContentLoader>(this);
|
|
||||||
|
|
||||||
interactionsActivators.Add(URaycastInteractableActivator::StaticClass());
|
|
||||||
interactionsActivators.Add(UInCameraInteractableActivator::StaticClass());
|
|
||||||
|
|
||||||
for(auto& modificator : interactionsModificators)
|
|
||||||
{
|
|
||||||
if(modificator.GetDefaultObject()->GetMappingContext())
|
|
||||||
{
|
|
||||||
inputContexts.Add(modificator.GetDefaultObject()->GetMappingContext());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ApplyMouseSettings();
|
|
||||||
|
|
||||||
saveData = Cast<USaveData>(UGameplayStatics::CreateSaveGameObject(USaveData::StaticClass()));
|
|
||||||
}
|
|
||||||
|
|
||||||
UCustomGameInstanceBase* UCustomGameInstanceBase::GetGameInstance()
|
|
||||||
{
|
|
||||||
return instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
UContentLoader* UCustomGameInstanceBase::GetContentLoader()
|
|
||||||
{
|
|
||||||
if(auto GI = GetGameInstance())
|
|
||||||
return GI->contentLoader;
|
|
||||||
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::ApplyMouseSettings()
|
|
||||||
{
|
|
||||||
if(auto gameSettings = UCustomGameUserSettings::GetCustomGameUserSettings())
|
|
||||||
{
|
|
||||||
for(auto& context : inputContexts)
|
|
||||||
{
|
|
||||||
if(!context.LoadSynchronous())
|
|
||||||
continue;
|
|
||||||
|
|
||||||
for(auto& mapping : context.LoadSynchronous()->GetMappings())
|
|
||||||
{
|
|
||||||
if(mapping.Key == EKeys::Mouse2D)
|
|
||||||
{
|
|
||||||
for(auto& modifier : mapping.Modifiers)
|
|
||||||
{
|
|
||||||
if(auto negate_modifier = Cast<UInputModifierNegate>(modifier))
|
|
||||||
{
|
|
||||||
negate_modifier->bY = !gameSettings->bMouseInverted;
|
|
||||||
}
|
|
||||||
if(auto scalar_modifier = Cast<UInputModifierScalar>(modifier))
|
|
||||||
{
|
|
||||||
scalar_modifier->Scalar = FVector{ gameSettings->GetMouseSensetivity() * 0.5 };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
UEnhancedInputLibrary::RequestRebuildControlMappingsUsingContext(context.LoadSynchronous());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::AppendInteractableModificatorClass(TSubclassOf<class UInteractableModificator> modificator)
|
|
||||||
{
|
|
||||||
bool alreadyPresent = false;
|
|
||||||
interactionsModificators.Add(modificator, &alreadyPresent);
|
|
||||||
if(!alreadyPresent)
|
|
||||||
{
|
|
||||||
if(auto IC = modificator.GetDefaultObject()->GetMappingContext())
|
|
||||||
{
|
|
||||||
inputContexts.Add(IC);
|
|
||||||
if(auto PC = UGameplayStatics::GetPlayerController(GetWorld(), 0))
|
|
||||||
{
|
|
||||||
if(auto inputSubsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(PC->GetLocalPlayer()))
|
|
||||||
{
|
|
||||||
inputSubsystem->AddMappingContext(IC, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::SaveGame(FName checkpointName)
|
|
||||||
{
|
|
||||||
auto levelScript = UCommonFunctions::GetCurrentLevelScript(this);
|
|
||||||
if(!levelScript)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto player = UCommonFunctions::GetPlayer(this);
|
|
||||||
if(!player)
|
|
||||||
return;
|
|
||||||
saveData->level = GetWorld()->GetFName();
|
|
||||||
saveData->state = levelScript->GetState();
|
|
||||||
saveData->checkpoint = checkpointName;
|
|
||||||
if(player->leftPocketItem)
|
|
||||||
saveData->playerLeftPocketItem = player->leftPocketItem->GetFName();
|
|
||||||
else
|
|
||||||
saveData->playerLeftPocketItem = FName(TEXT(""));
|
|
||||||
if(player->rightPocketItem)
|
|
||||||
saveData->playerRightPocketItem = player->rightPocketItem->GetFName();
|
|
||||||
else
|
|
||||||
saveData->playerRightPocketItem = FName(TEXT(""));
|
|
||||||
|
|
||||||
UGameplayStatics::SaveGameToSlot(saveData, TEXT("Save"), 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::LoadGame()
|
|
||||||
{
|
|
||||||
saveData = Cast<USaveData>(UGameplayStatics::LoadGameFromSlot(TEXT("Save"), 0));
|
|
||||||
if(!saveData)
|
|
||||||
return;
|
|
||||||
|
|
||||||
UGameplayStatics::OpenLevel(this, saveData->level);
|
|
||||||
}
|
|
||||||
|
|
||||||
void UCustomGameInstanceBase::ExitGame()
|
|
||||||
{
|
|
||||||
UKismetSystemLibrary::QuitGame(GetWorld(), nullptr, EQuitPreference::Quit, true);
|
|
||||||
}
|
|
@ -0,0 +1,92 @@
|
|||||||
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
|
|
||||||
|
#include "EnhancedInputComponent.h"
|
||||||
|
#include "EnhancedInputLibrary.h"
|
||||||
|
#include "EnhancedInputSubsystems.h"
|
||||||
|
#include "InputMappingContext.h"
|
||||||
|
|
||||||
|
#include "CustomGameUserSettings.h"
|
||||||
|
|
||||||
|
ACustomPlayerController* ACustomPlayerController::instance = nullptr;
|
||||||
|
UEnhancedInputLocalPlayerSubsystem* ACustomPlayerController::subsystem = nullptr;
|
||||||
|
UEnhancedInputComponent* ACustomPlayerController::input = nullptr;
|
||||||
|
TSet<TSoftObjectPtr<UInputMappingContext>> ACustomPlayerController::contexts = {};
|
||||||
|
|
||||||
|
void ACustomPlayerController::AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context)
|
||||||
|
{
|
||||||
|
if(!context.IsValid())
|
||||||
|
return;
|
||||||
|
|
||||||
|
ApplyMouseSettings(context);
|
||||||
|
contexts.Add(context);
|
||||||
|
if(subsystem)
|
||||||
|
subsystem->AddMappingContext(context.LoadSynchronous(), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ACustomPlayerController::BeginPlay()
|
||||||
|
{
|
||||||
|
Super::BeginPlay();
|
||||||
|
|
||||||
|
instance = this;
|
||||||
|
|
||||||
|
subsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(GetLocalPlayer());
|
||||||
|
if(subsystem)
|
||||||
|
{
|
||||||
|
subsystem->ClearAllMappings();
|
||||||
|
for(auto& inputContext : contexts)
|
||||||
|
subsystem->AddMappingContext(inputContext.LoadSynchronous(), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
input = Cast<UEnhancedInputComponent>(InputComponent);
|
||||||
|
if(input)
|
||||||
|
{
|
||||||
|
((UInputComponent*)input)->BindAction(TEXT("AnyKey"), IE_Pressed, this, &ACustomPlayerController::OnAnyKeyPressed);
|
||||||
|
((UInputComponent*)input)->BindAction(TEXT("AnyKey"), IE_Released, this, &ACustomPlayerController::OnAnyKeyReleased);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ACustomPlayerController::ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context)
|
||||||
|
{
|
||||||
|
auto gameSettings = UCustomGameUserSettings::GetCustomGameUserSettings();
|
||||||
|
if(!gameSettings)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if(!context.LoadSynchronous())
|
||||||
|
return;
|
||||||
|
|
||||||
|
for(auto& mapping : context.LoadSynchronous()->GetMappings())
|
||||||
|
{
|
||||||
|
if(mapping.Key != EKeys::Mouse2D)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
for(auto& modifier : mapping.Modifiers)
|
||||||
|
{
|
||||||
|
if(gameSettings->bMouseInverted)
|
||||||
|
{
|
||||||
|
if(auto negate_modifier = Cast<UInputModifierNegate>(modifier))
|
||||||
|
{
|
||||||
|
negate_modifier->bY = !negate_modifier->bY;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(auto scalar_modifier = Cast<UInputModifierScalar>(modifier))
|
||||||
|
scalar_modifier->Scalar = FVector{ gameSettings->GetMouseSensetivity() * 0.5 };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
UEnhancedInputLibrary::RequestRebuildControlMappingsUsingContext(context.LoadSynchronous());
|
||||||
|
}
|
||||||
|
|
||||||
|
void ACustomPlayerController::OnAnyKeyPressed(FKey key)
|
||||||
|
{
|
||||||
|
if(onAnyKeyPressed.IsBound())
|
||||||
|
onAnyKeyPressed.Broadcast(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ACustomPlayerController::OnAnyKeyReleased(FKey key)
|
||||||
|
{
|
||||||
|
if(onAnyKeyReleased.IsBound())
|
||||||
|
onAnyKeyReleased.Broadcast(key);
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "GameFramework/PlayerController.h"
|
||||||
|
|
||||||
|
#include "CustomPlayerController.generated.h"
|
||||||
|
|
||||||
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FPlayerAnyKeyPressedDelegate, FKey, key);
|
||||||
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FPlayerAnyKeyReleasedDelegate, FKey, key);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* De-facto wrapper/interface of all usefull shortcuts and automatization around input system.
|
||||||
|
* Append new input context here for auto init on BeginPlay and apply user input settings.
|
||||||
|
* Also, has delegates onAnyKeyPressed/Released.
|
||||||
|
*/
|
||||||
|
UCLASS()
|
||||||
|
class ACustomPlayerController : public APlayerController
|
||||||
|
{
|
||||||
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
public:
|
||||||
|
UFUNCTION(BlueprintPure, meta = (DisplayName = "GetCustomPlayerController"))
|
||||||
|
static ACustomPlayerController* Get() { return instance; }
|
||||||
|
UFUNCTION(BlueprintPure)
|
||||||
|
static class UEnhancedInputComponent* GetInput() { return input; }
|
||||||
|
UFUNCTION(BlueprintPure)
|
||||||
|
static class UEnhancedInputLocalPlayerSubsystem* GetInputSubsystem() { return subsystem; }
|
||||||
|
|
||||||
|
UFUNCTION(BlueprintCallable)
|
||||||
|
static void AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context);
|
||||||
|
|
||||||
|
FPlayerAnyKeyPressedDelegate onAnyKeyPressed;
|
||||||
|
FPlayerAnyKeyReleasedDelegate onAnyKeyReleased;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual void BeginPlay() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
static void ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context);
|
||||||
|
|
||||||
|
void OnAnyKeyPressed(FKey key);
|
||||||
|
void OnAnyKeyReleased(FKey key);
|
||||||
|
|
||||||
|
static ACustomPlayerController* instance;
|
||||||
|
static class UEnhancedInputLocalPlayerSubsystem* subsystem;
|
||||||
|
static class UEnhancedInputComponent* input;
|
||||||
|
static TSet<TSoftObjectPtr<class UInputMappingContext>> contexts;
|
||||||
|
};
|
@ -9,7 +9,7 @@
|
|||||||
#include "LevelSequence.h"
|
#include "LevelSequence.h"
|
||||||
#include "LevelSequencePlayer.h"
|
#include "LevelSequencePlayer.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "Widgets/CutsceneSkipWidget.h"
|
#include "Widgets/CutsceneSkipWidget.h"
|
||||||
@ -20,13 +20,7 @@ UCutsceneManager::UCutsceneManager()
|
|||||||
{
|
{
|
||||||
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/IMC_Cutscene.IMC_Cutscene'") };
|
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/IMC_Cutscene.IMC_Cutscene'") };
|
||||||
_inputContext = asset.Object;
|
_inputContext = asset.Object;
|
||||||
if(auto world = GetWorld())
|
ACustomPlayerController::AppendInputContext(_inputContext);
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(world->GetGameInstance()))
|
|
||||||
{
|
|
||||||
GI->inputContexts.Add(_inputContext);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void UCutsceneManager::EnqueueSequence(ULevelSequence* sequence, FCutsceneEndCallback endCallback)
|
void UCutsceneManager::EnqueueSequence(ULevelSequence* sequence, FCutsceneEndCallback endCallback)
|
||||||
@ -47,8 +41,9 @@ void UCutsceneManager::EnqueueSequence(ULevelSequence* sequence, FCutsceneEndCal
|
|||||||
_lastPlayer->LockPlayer({ .walk = true, .jump = true, .run = true, .interaction = true, .camera = true });
|
_lastPlayer->LockPlayer({ .walk = true, .jump = true, .run = true, .interaction = true, .camera = true });
|
||||||
|
|
||||||
auto& mapping = _inputContext.LoadSynchronous()->GetMapping(0);
|
auto& mapping = _inputContext.LoadSynchronous()->GetMapping(0);
|
||||||
int32 handler1 = _lastPlayer->inputComponent->BindAction(mapping.Action, ETriggerEvent::Started, this, &UCutsceneManager::OnInputHold).GetHandle();
|
auto input = ACustomPlayerController::GetInput();
|
||||||
int32 handler2 = _lastPlayer->inputComponent->BindAction(mapping.Action, ETriggerEvent::Completed, this, &UCutsceneManager::OnInputUnhold).GetHandle();
|
int32 handler1 = input->BindAction(mapping.Action, ETriggerEvent::Started, this, &UCutsceneManager::OnInputHold).GetHandle();
|
||||||
|
int32 handler2 = input->BindAction(mapping.Action, ETriggerEvent::Completed, this, &UCutsceneManager::OnInputUnhold).GetHandle();
|
||||||
_handlers = { handler1, handler2 };
|
_handlers = { handler1, handler2 };
|
||||||
|
|
||||||
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
||||||
@ -151,8 +146,9 @@ void UCutsceneManager::OnSequenceEnd()
|
|||||||
{
|
{
|
||||||
_lastPlayer->UnlockPlayer({ .walk = true, .jump = true, .run = true, .interaction = true, .camera = true });
|
_lastPlayer->UnlockPlayer({ .walk = true, .jump = true, .run = true, .interaction = true, .camera = true });
|
||||||
|
|
||||||
_lastPlayer->inputComponent->RemoveBindingByHandle(_handlers.Key);
|
auto input = ACustomPlayerController::GetInput();
|
||||||
_lastPlayer->inputComponent->RemoveBindingByHandle(_handlers.Value);
|
input->RemoveBindingByHandle(_handlers.Key);
|
||||||
|
input->RemoveBindingByHandle(_handlers.Value);
|
||||||
|
|
||||||
_lastPlayer = nullptr;
|
_lastPlayer = nullptr;
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "Kismet/KismetMathLibrary.h"
|
#include "Kismet/KismetMathLibrary.h"
|
||||||
#include "Sound/SoundWave.h"
|
#include "Sound/SoundWave.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "Widgets/DialogueSkipWidget.h"
|
#include "Widgets/DialogueSkipWidget.h"
|
||||||
@ -22,13 +22,7 @@ UDialogueManager::UDialogueManager()
|
|||||||
{
|
{
|
||||||
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/IMC_Dialogue.IMC_Dialogue'") };
|
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/IMC_Dialogue.IMC_Dialogue'") };
|
||||||
_inputContext = asset.Object;
|
_inputContext = asset.Object;
|
||||||
if(auto world = GetWorld())
|
ACustomPlayerController::AppendInputContext(_inputContext);
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(world->GetGameInstance()))
|
|
||||||
{
|
|
||||||
GI->inputContexts.Add(_inputContext);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void UDialogueManager::PlayDialogue(FDialogueEnqueProperties properties, FDialogueEndCallback endCallback)
|
void UDialogueManager::PlayDialogue(FDialogueEnqueProperties properties, FDialogueEndCallback endCallback)
|
||||||
@ -99,7 +93,7 @@ void UDialogueManager::EnqueDialogue(FDialogueEnqueProperties properties, FDialo
|
|||||||
if(_lastPlayer)
|
if(_lastPlayer)
|
||||||
{
|
{
|
||||||
auto& mapping = _inputContext.LoadSynchronous()->GetMapping(0);
|
auto& mapping = _inputContext.LoadSynchronous()->GetMapping(0);
|
||||||
_inputHandler = _lastPlayer->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &UDialogueManager::OnInputPress).GetHandle();
|
_inputHandler = ACustomPlayerController::GetInput()->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &UDialogueManager::OnInputPress).GetHandle();
|
||||||
|
|
||||||
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
||||||
{
|
{
|
||||||
@ -261,7 +255,7 @@ void UDialogueManager::OnDialogueEnd()
|
|||||||
_dialoguesLock.Lock();
|
_dialoguesLock.Lock();
|
||||||
if(_endCallbacks.IsEmpty() && _lastPlayer)
|
if(_endCallbacks.IsEmpty() && _lastPlayer)
|
||||||
{
|
{
|
||||||
_lastPlayer->inputComponent->RemoveBindingByHandle(_inputHandler);
|
ACustomPlayerController::GetInput()->RemoveBindingByHandle(_inputHandler);
|
||||||
_lastPlayer = nullptr;
|
_lastPlayer = nullptr;
|
||||||
}
|
}
|
||||||
_dialoguesLock.Unlock();
|
_dialoguesLock.Unlock();
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InCameraInteractableActivator.h"
|
#include "InCameraInteractableActivator.h"
|
||||||
|
|
||||||
#include "CommonFunctions.h"
|
#include "CommonFunctions.h"
|
||||||
@ -20,10 +19,10 @@ UInCameraInteractableActivator::UInCameraInteractableActivator(const FObjectInit
|
|||||||
activatorType = EActivatorType::Saw;
|
activatorType = EActivatorType::Saw;
|
||||||
scanDistance = 7000;
|
scanDistance = 7000;
|
||||||
|
|
||||||
_capturer = CreateDefaultSubobject<UInteractableScreenCapturer>(TEXT("UInCameraInteractableActivator_UInteractableScreenCapturer"));
|
capturer = CreateDefaultSubobject<UInteractableScreenCapturer>(TEXT("UInCameraInteractableActivator_UInteractableScreenCapturer"));
|
||||||
_capturer->interactableInScreenDelegate.BindUObject(this, &UInCameraInteractableActivator::NewSeenInteractable_Implementation);
|
capturer->interactableInScreenDelegate.BindUObject(this, &UInCameraInteractableActivator::NewSeenInteractable);
|
||||||
_capturer->SetupAttachment(this);
|
capturer->SetupAttachment(this);
|
||||||
_capturer->scanDistance = scanDistance;
|
capturer->scanDistance = scanDistance;
|
||||||
|
|
||||||
PrimaryComponentTick.bCanEverTick = true;
|
PrimaryComponentTick.bCanEverTick = true;
|
||||||
PrimaryComponentTick.bStartWithTickEnabled = false;
|
PrimaryComponentTick.bStartWithTickEnabled = false;
|
||||||
@ -31,27 +30,28 @@ UInCameraInteractableActivator::UInCameraInteractableActivator(const FObjectInit
|
|||||||
|
|
||||||
void UInCameraInteractableActivator::OnRegister()
|
void UInCameraInteractableActivator::OnRegister()
|
||||||
{
|
{
|
||||||
UInteractableActivator::OnRegister();
|
Super::OnRegister();
|
||||||
_capturer->RegisterComponent();
|
capturer->RegisterComponent();
|
||||||
_capturer->Activate();
|
capturer->Activate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void UInCameraInteractableActivator::NewSeenInteractable_Implementation(AInteractable* interactable)
|
void UInCameraInteractableActivator::NewSeenInteractable(AInteractable* interactable)
|
||||||
{
|
{
|
||||||
_interactablesToActivate.Enqueue(interactable);
|
interactablesToActivate.Enqueue(interactable);
|
||||||
SetComponentTickEnabled(true);
|
SetComponentTickEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UInCameraInteractableActivator::Scan_Implementation()
|
void UInCameraInteractableActivator::Scan_Implementation()
|
||||||
{
|
{
|
||||||
SetComponentTickEnabled(false);
|
SetComponentTickEnabled(false);
|
||||||
while(!_interactablesToActivate.IsEmpty())
|
while(!interactablesToActivate.IsEmpty())
|
||||||
{
|
{
|
||||||
AInteractable* interactable;
|
AInteractable* interactable;
|
||||||
_interactablesToActivate.Dequeue(interactable);
|
interactablesToActivate.Dequeue(interactable);
|
||||||
if(interactableActivatedDelegate.IsBound())
|
if(interactableActivatedDelegate.IsBound())
|
||||||
{
|
{
|
||||||
interactableActivatedDelegate.Execute(interactable, activatorType);
|
interactableActivatedDelegate.Execute(interactable, activatorType);
|
||||||
|
OnNewSeenInteractable(interactable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,13 +2,14 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
|
|
||||||
#include "InteractableActivator.h"
|
#include "InteractableActivator.h"
|
||||||
|
|
||||||
#include "InCameraInteractableActivator.generated.h"
|
#include "InCameraInteractableActivator.generated.h"
|
||||||
|
|
||||||
UCLASS(Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Activates interactable only once if is in a camera view
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableActivator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Activates interactable only once if is in a camera view"), MinimalAPI)
|
||||||
class UInCameraInteractableActivator : public UInteractableActivator
|
class UInCameraInteractableActivator : public UInteractableActivator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
@ -19,14 +20,30 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual void OnRegister() override;
|
virtual void OnRegister() override;
|
||||||
|
|
||||||
|
virtual bool AutoInstantiateInPlayer() override { return true; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scan is performed independently by _capturer member object.
|
||||||
|
* This implementation just activates interactables in the game thread.
|
||||||
|
*/
|
||||||
virtual void Scan_Implementation() override;
|
virtual void Scan_Implementation() override;
|
||||||
|
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
/**
|
||||||
LOST_EDGE_API void NewSeenInteractable(class AInteractable* interactable);
|
* Thread safe enques interactable for activation in the next game tick
|
||||||
virtual void NewSeenInteractable_Implementation(class AInteractable* interactable);
|
* @param interactable .. interactable to activate
|
||||||
|
*/
|
||||||
|
UFUNCTION(BlueprintCallable)
|
||||||
|
void NewSeenInteractable(class AInteractable* interactable);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called after interactable activation
|
||||||
|
* @param interactable .. interactable activated
|
||||||
|
*/
|
||||||
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
|
void OnNewSeenInteractable(class AInteractable* interactable);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
UPROPERTY()
|
UPROPERTY()
|
||||||
class UInteractableScreenCapturer* _capturer;
|
class UInteractableScreenCapturer* capturer;
|
||||||
TQueue<class AInteractable*> _interactablesToActivate;
|
TQueue<class AInteractable*> interactablesToActivate;
|
||||||
};
|
};
|
||||||
|
@ -1,12 +1,19 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InteractableActivator.h"
|
#include "InteractableActivator.h"
|
||||||
|
|
||||||
#include "Engine/CollisionProfile.h"
|
#include "Engine/CollisionProfile.h"
|
||||||
|
|
||||||
|
#include "Interactable/Interactable.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
|
|
||||||
|
void UInteractableActivator::OnRegister()
|
||||||
|
{
|
||||||
|
Super::OnRegister();
|
||||||
|
|
||||||
|
AInteractable::AppendInteractableActivatorClass(GetClass());
|
||||||
|
}
|
||||||
|
|
||||||
UInteractableActivator::UInteractableActivator(const FObjectInitializer& ObjectInitializer)
|
UInteractableActivator::UInteractableActivator(const FObjectInitializer& ObjectInitializer)
|
||||||
: USceneComponent(ObjectInitializer)
|
: USceneComponent(ObjectInitializer)
|
||||||
{
|
{
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Components/SceneComponent.h"
|
#include "Components/SceneComponent.h"
|
||||||
#include "CoreMinimal.h"
|
|
||||||
|
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
|
|
||||||
@ -12,23 +11,33 @@
|
|||||||
DECLARE_DELEGATE_TwoParams(FInteractableActivated, AInteractable*, EActivatorType);
|
DECLARE_DELEGATE_TwoParams(FInteractableActivated, AInteractable*, EActivatorType);
|
||||||
DECLARE_DELEGATE_TwoParams(FInteractableDeactivated, AInteractable*, EActivatorType);
|
DECLARE_DELEGATE_TwoParams(FInteractableDeactivated, AInteractable*, EActivatorType);
|
||||||
|
|
||||||
UCLASS(Abstract, Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Activates interactable based on type
|
||||||
|
*/
|
||||||
|
UCLASS(Abstract, Blueprintable, BlueprintType, ClassGroup = InteractableActivator, meta = (ShortTooltip = "Activates interactable based on type"), MinimalAPI)
|
||||||
class UInteractableActivator : public USceneComponent
|
class UInteractableActivator : public USceneComponent
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/** Append itself to CustomGameInstance modificators registry */
|
||||||
|
virtual void OnRegister() override;
|
||||||
|
|
||||||
UInteractableActivator(const FObjectInitializer& ObjectInitializer);
|
UInteractableActivator(const FObjectInitializer& ObjectInitializer);
|
||||||
virtual void TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
virtual void TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
||||||
|
|
||||||
|
virtual bool AutoInstantiateInPlayer() { return false; }
|
||||||
|
|
||||||
|
/** Resets activator state forcing to rescan */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
||||||
LOST_EDGE_API void Rescan();
|
LOST_EDGE_API void Rescan();
|
||||||
virtual void Rescan_Implementation() {}
|
virtual void Rescan_Implementation() PURE_VIRTUAL(UInteractableActivator::Scan_Implementation, );
|
||||||
|
|
||||||
FInteractableActivated interactableActivatedDelegate;
|
FInteractableActivated interactableActivatedDelegate;
|
||||||
FInteractableActivated interactableDeactivatedDelegate;
|
FInteractableActivated interactableDeactivatedDelegate;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
/** Activator scan function in game thread tick */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
||||||
LOST_EDGE_API void Scan();
|
LOST_EDGE_API void Scan();
|
||||||
virtual void Scan_Implementation() PURE_VIRTUAL(UInteractableActivator::Scan_Implementation, );
|
virtual void Scan_Implementation() PURE_VIRTUAL(UInteractableActivator::Scan_Implementation, );
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InteractableScreenCapturer.h"
|
#include "InteractableScreenCapturer.h"
|
||||||
|
|
||||||
#include "Engine/Texture.h"
|
#include "Engine/Texture.h"
|
||||||
@ -16,9 +15,12 @@
|
|||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
#include "InteractableScreenCapturerBitMapCS.h"
|
#include "InteractableScreenCapturerBitMapCS.h"
|
||||||
|
|
||||||
constexpr float tickInterval = 1.0f / 5;
|
namespace
|
||||||
constexpr float textureWidth = 1280 / 2;
|
{
|
||||||
constexpr float textureHeight = 720 / 2;
|
constexpr float tickInterval = 1.0f / 5;
|
||||||
|
constexpr float textureWidth = 1280 / 2;
|
||||||
|
constexpr float textureHeight = 720 / 2;
|
||||||
|
}
|
||||||
|
|
||||||
UInteractableScreenCapturer::UInteractableScreenCapturer(const FObjectInitializer& ObjectInitializer)
|
UInteractableScreenCapturer::UInteractableScreenCapturer(const FObjectInitializer& ObjectInitializer)
|
||||||
: USceneCaptureComponent2D(ObjectInitializer)
|
: USceneCaptureComponent2D(ObjectInitializer)
|
||||||
@ -85,7 +87,7 @@ void UInteractableScreenCapturer::TickComponent(float DeltaTime, enum ELevelTick
|
|||||||
{
|
{
|
||||||
USceneCaptureComponent2D::TickComponent(DeltaTime, TickType, ThisTickFunction);
|
USceneCaptureComponent2D::TickComponent(DeltaTime, TickType, ThisTickFunction);
|
||||||
CaptureScene();
|
CaptureScene();
|
||||||
GetCameraView(DeltaTime, _view);
|
GetCameraView(DeltaTime, view);
|
||||||
Process();
|
Process();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -104,7 +106,7 @@ void UInteractableScreenCapturer::Process()
|
|||||||
[
|
[
|
||||||
capture = TextureTarget->GetResource()->TextureRHI,
|
capture = TextureTarget->GetResource()->TextureRHI,
|
||||||
world = GetWorld(),
|
world = GetWorld(),
|
||||||
view = _view,
|
view = view,
|
||||||
//output = _output->GetResource()->TextureRHI,
|
//output = _output->GetResource()->TextureRHI,
|
||||||
this
|
this
|
||||||
]
|
]
|
||||||
@ -262,6 +264,7 @@ void UInteractableScreenCapturer::Process()
|
|||||||
AsyncTask(ENamedThreads::GameThread, [=, this]()
|
AsyncTask(ENamedThreads::GameThread, [=, this]()
|
||||||
{
|
{
|
||||||
interactableInScreenDelegate.Execute(interactable);
|
interactableInScreenDelegate.Execute(interactable);
|
||||||
|
OnInteractableInScreen(interactable);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,10 @@
|
|||||||
|
|
||||||
DECLARE_DELEGATE_OneParam(FInteractableInScreen, class AInteractable*);
|
DECLARE_DELEGATE_OneParam(FInteractableInScreen, class AInteractable*);
|
||||||
|
|
||||||
UCLASS(hidecategories = (Collision, Object, Physics, SceneComponent), ClassGroup = Rendering, editinlinenew, meta = (BlueprintSpawnableComponent), MinimalAPI)
|
/**
|
||||||
|
* Notifies only once about interactable is in a camera view
|
||||||
|
*/
|
||||||
|
UCLASS(BlueprintType, hidecategories = (Collision, Object, Physics, SceneComponent), ClassGroup = Rendering, editinlinenew, meta = (BlueprintSpawnableComponent, ShortTooltip = "Notifies only once about interactable is in a camera view"), MinimalAPI)
|
||||||
class UInteractableScreenCapturer : public USceneCaptureComponent2D
|
class UInteractableScreenCapturer : public USceneCaptureComponent2D
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
@ -19,15 +22,18 @@ public:
|
|||||||
virtual void TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
virtual void TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
||||||
|
|
||||||
FInteractableInScreen interactableInScreenDelegate;
|
FInteractableInScreen interactableInScreenDelegate;
|
||||||
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
|
void OnInteractableInScreen(class AInteractable* interactable);
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere)
|
UPROPERTY(EditAnywhere)
|
||||||
float scanDistance = 7000;
|
float scanDistance = 7000;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
/** Enques render thread task to find obect on screen */
|
||||||
void Process();
|
void Process();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
FMinimalViewInfo _view;
|
FMinimalViewInfo view; //!< Camera view cache
|
||||||
TSet<class AInteractable*> _sawInteractables;
|
TSet<class AInteractable*> _sawInteractables;
|
||||||
//class UTextureRenderTarget2D* _output;
|
//class UTextureRenderTarget2D* _output;
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "RaycastInteractableActivator.h"
|
#include "RaycastInteractableActivator.h"
|
||||||
|
|
||||||
#include "DrawDebugHelpers.h"
|
#include "DrawDebugHelpers.h"
|
||||||
@ -14,12 +13,12 @@ URaycastInteractableActivator::URaycastInteractableActivator(const FObjectInitia
|
|||||||
|
|
||||||
void URaycastInteractableActivator::Rescan_Implementation()
|
void URaycastInteractableActivator::Rescan_Implementation()
|
||||||
{
|
{
|
||||||
_last = nullptr;
|
lastInteractable = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void URaycastInteractableActivator::Scan_Implementation()
|
void URaycastInteractableActivator::Scan_Implementation()
|
||||||
{
|
{
|
||||||
FHitResult result{};
|
FHitResult result;
|
||||||
FVector startLocation = GetComponentLocation();
|
FVector startLocation = GetComponentLocation();
|
||||||
FVector endLocation = startLocation + (GetComponentRotation().Vector() * scanDistance);
|
FVector endLocation = startLocation + (GetComponentRotation().Vector() * scanDistance);
|
||||||
|
|
||||||
@ -32,17 +31,17 @@ void URaycastInteractableActivator::Scan_Implementation()
|
|||||||
|
|
||||||
if(result.bBlockingHit)
|
if(result.bBlockingHit)
|
||||||
{
|
{
|
||||||
if(_last != result.GetActor())
|
if(lastInteractable != result.GetActor())
|
||||||
{
|
{
|
||||||
if(_last)
|
if(lastInteractable)
|
||||||
{
|
{
|
||||||
interactableDeactivatedDelegate.Execute(_last, activatorType);
|
interactableDeactivatedDelegate.Execute(lastInteractable, activatorType);
|
||||||
_last = nullptr;
|
lastInteractable = nullptr;
|
||||||
}
|
}
|
||||||
_activated = true;
|
activated = true;
|
||||||
if(auto interactable = Cast<AInteractable>(result.GetActor()))
|
if(auto interactable = Cast<AInteractable>(result.GetActor()))
|
||||||
{
|
{
|
||||||
_last = interactable;
|
lastInteractable = interactable;
|
||||||
if(interactableActivatedDelegate.IsBound())
|
if(interactableActivatedDelegate.IsBound())
|
||||||
{
|
{
|
||||||
interactableActivatedDelegate.Execute(interactable, activatorType);
|
interactableActivatedDelegate.Execute(interactable, activatorType);
|
||||||
@ -53,21 +52,21 @@ void URaycastInteractableActivator::Scan_Implementation()
|
|||||||
#ifdef INTERACTABLE_ACTIVATOR_DEBUG
|
#ifdef INTERACTABLE_ACTIVATOR_DEBUG
|
||||||
DrawDebugLine(GetWorld(), startLocation, endLocation, FColor::Green, false, PrimaryComponentTick.TickInterval, 0, 0.1f);
|
DrawDebugLine(GetWorld(), startLocation, endLocation, FColor::Green, false, PrimaryComponentTick.TickInterval, 0, 0.1f);
|
||||||
#endif // INTERACTABLE_ACTIVATOR_DEBUG
|
#endif // INTERACTABLE_ACTIVATOR_DEBUG
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(_activated)
|
if(activated)
|
||||||
{
|
{
|
||||||
if(interactableDeactivatedDelegate.IsBound())
|
if(interactableDeactivatedDelegate.IsBound())
|
||||||
{
|
{
|
||||||
interactableDeactivatedDelegate.Execute(_last, activatorType);
|
interactableDeactivatedDelegate.Execute(lastInteractable, activatorType);
|
||||||
}
|
}
|
||||||
_activated = false;
|
activated = false;
|
||||||
_last = nullptr;
|
lastInteractable = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef INTERACTABLE_ACTIVATOR_DEBUG
|
#ifdef INTERACTABLE_ACTIVATOR_DEBUG
|
||||||
DrawDebugLine(GetWorld(), startLocation, endLocation, FColor::Red, false, PrimaryComponentTick.TickInterval, 10, 0.1f);
|
DrawDebugLine(GetWorld(), startLocation, endLocation, FColor::Red, false, PrimaryComponentTick.TickInterval, 10, 0.1f);
|
||||||
#endif // INTERACTABLE_ACTIVATOR_DEBUG
|
#endif // INTERACTABLE_ACTIVATOR_DEBUG
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,12 +2,14 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InteractableActivator.h"
|
#include "InteractableActivator.h"
|
||||||
|
|
||||||
#include "RaycastInteractableActivator.generated.h"
|
#include "RaycastInteractableActivator.generated.h"
|
||||||
|
|
||||||
UCLASS(Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Activates interactable with a single raycast from a camera center
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableActivator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Activates interactable with a single raycast from a camera center"), MinimalAPI)
|
||||||
class URaycastInteractableActivator : public UInteractableActivator
|
class URaycastInteractableActivator : public UInteractableActivator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
@ -15,12 +17,14 @@ class URaycastInteractableActivator : public UInteractableActivator
|
|||||||
public:
|
public:
|
||||||
URaycastInteractableActivator(const FObjectInitializer& ObjectInitializer);
|
URaycastInteractableActivator(const FObjectInitializer& ObjectInitializer);
|
||||||
|
|
||||||
|
virtual bool AutoInstantiateInPlayer() override { return true; }
|
||||||
|
|
||||||
virtual void Rescan_Implementation() override;
|
virtual void Rescan_Implementation() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void Scan_Implementation() override;
|
virtual void Scan_Implementation() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class AInteractable* _last = nullptr;
|
class AInteractable* lastInteractable = nullptr;
|
||||||
bool _activated = false;
|
bool activated = false;
|
||||||
};
|
};
|
||||||
|
@ -1,15 +1,35 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Interactable.h"
|
#include "Interactable.h"
|
||||||
|
|
||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
|
|
||||||
|
#include "Activators/InteractableActivator.h"
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "Modificators/InteractableModificator.h"
|
#include "Modificators/InteractableModificator.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "Widgets/WidgetsManager.h"
|
#include "Widgets/WidgetsManager.h"
|
||||||
|
|
||||||
|
TSet<TSubclassOf<class UInteractableActivator>> AInteractable::interactionActivators = {};
|
||||||
|
TSet<TSubclassOf<class UInteractableModificator>> AInteractable::interactionModificators = {};
|
||||||
|
|
||||||
|
void AInteractable::AppendInteractableActivatorClass(TSubclassOf<class UInteractableActivator> activator)
|
||||||
|
{
|
||||||
|
interactionActivators.Add(activator);
|
||||||
|
}
|
||||||
|
|
||||||
|
void AInteractable::AppendInteractableModificatorClass(TSubclassOf<class UInteractableModificator> modificator)
|
||||||
|
{
|
||||||
|
bool alreadyPresent = false;
|
||||||
|
interactionModificators.Add(modificator, &alreadyPresent);
|
||||||
|
if(alreadyPresent)
|
||||||
|
return;
|
||||||
|
|
||||||
|
auto IC = modificator.GetDefaultObject()->GetMappingContext();
|
||||||
|
ACustomPlayerController::AppendInputContext(IC);
|
||||||
|
}
|
||||||
|
|
||||||
int32 AInteractable::GetActivatedFlags()
|
int32 AInteractable::GetActivatedFlags()
|
||||||
{
|
{
|
||||||
return activated;
|
return activated;
|
||||||
@ -86,13 +106,13 @@ void AInteractable::EndPlay(const EEndPlayReason::Type EndPlayReason)
|
|||||||
if(activated)
|
if(activated)
|
||||||
{
|
{
|
||||||
activationLockers.Empty();
|
activationLockers.Empty();
|
||||||
_Deactivate(static_cast<EActivatorType>(activated));
|
Deactivate(static_cast<EActivatorType>(activated));
|
||||||
}
|
}
|
||||||
|
|
||||||
Super::EndPlay(EndPlayReason);
|
Super::EndPlay(EndPlayReason);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AInteractable::_Activate(EActivatorType type)
|
void AInteractable::Activate(EActivatorType type)
|
||||||
{
|
{
|
||||||
#ifdef INTERACTABLE_DEBUG
|
#ifdef INTERACTABLE_DEBUG
|
||||||
GEngine->AddOnScreenDebugMessage(30 + (int)type, 5.0f, FColor::Cyan, TEXT("Player activate: ") + this->GetName()
|
GEngine->AddOnScreenDebugMessage(30 + (int)type, 5.0f, FColor::Cyan, TEXT("Player activate: ") + this->GetName()
|
||||||
@ -113,7 +133,7 @@ void AInteractable::_Activate(EActivatorType type)
|
|||||||
if(static_cast<uint8>(modificator.Value->GetActivatorTypes()) & static_cast<uint8>(type))
|
if(static_cast<uint8>(modificator.Value->GetActivatorTypes()) & static_cast<uint8>(type))
|
||||||
{
|
{
|
||||||
WM->ShowInteractionHints(modificator.Value);
|
WM->ShowInteractionHints(modificator.Value);
|
||||||
modificator.Value->Bind(player->inputComponent);
|
modificator.Value->Bind(ACustomPlayerController::GetInput());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -127,7 +147,7 @@ void AInteractable::_Activate(EActivatorType type)
|
|||||||
Activate(type);
|
Activate(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AInteractable::_Deactivate(EActivatorType type)
|
void AInteractable::Deactivate(EActivatorType type)
|
||||||
{
|
{
|
||||||
#ifdef INTERACTABLE_DEBUG
|
#ifdef INTERACTABLE_DEBUG
|
||||||
GEngine->AddOnScreenDebugMessage(30 + (int)type, 5.0f, FColor::Magenta, TEXT("Player deactivate: ") + this->GetName()
|
GEngine->AddOnScreenDebugMessage(30 + (int)type, 5.0f, FColor::Magenta, TEXT("Player deactivate: ") + this->GetName()
|
||||||
|
@ -2,15 +2,18 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "GameFramework/Actor.h"
|
#include "GameFramework/Actor.h"
|
||||||
|
|
||||||
#include "Interactable.generated.h"
|
#include "Interactable.generated.h"
|
||||||
|
|
||||||
|
/** Turns on debug of interactable objects */
|
||||||
//#define INTERACTABLE_DEBUG
|
//#define INTERACTABLE_DEBUG
|
||||||
|
/** Turns on debug of interactable activator components */
|
||||||
//#define INTERACTABLE_ACTIVATOR_DEBUG
|
//#define INTERACTABLE_ACTIVATOR_DEBUG
|
||||||
|
/** Turns on debug of interactable modificator components */
|
||||||
//#define INTERACTABLE_MODIFICATOR_DEBUG
|
//#define INTERACTABLE_MODIFICATOR_DEBUG
|
||||||
|
|
||||||
|
/** Defines activation types */
|
||||||
UENUM(BlueprintType, meta = (Bitflags, UseEnumValuesAsMaskValuesInEditor = "true"))
|
UENUM(BlueprintType, meta = (Bitflags, UseEnumValuesAsMaskValuesInEditor = "true"))
|
||||||
enum class EActivatorType : uint8
|
enum class EActivatorType : uint8
|
||||||
{
|
{
|
||||||
@ -27,38 +30,61 @@ enum class EActivatorType : uint8
|
|||||||
};
|
};
|
||||||
ENUM_CLASS_FLAGS(EActivatorType);
|
ENUM_CLASS_FLAGS(EActivatorType);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Object capable of reacting to activators and execute modificators.
|
||||||
|
* Sets all needed settings as collision layers on begin play.
|
||||||
|
*/
|
||||||
UCLASS(Blueprintable, BlueprintType, MinimalAPI)
|
UCLASS(Blueprintable, BlueprintType, MinimalAPI)
|
||||||
class AInteractable : public AActor
|
class AInteractable : public AActor
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
static void AppendInteractableActivatorClass(TSubclassOf<class UInteractableActivator> activator);
|
||||||
|
static void AppendInteractableModificatorClass(TSubclassOf<class UInteractableModificator> modificator);
|
||||||
|
|
||||||
|
/** Interactables shared cache */
|
||||||
|
static TSet<TSubclassOf<class UInteractableActivator>> interactionActivators;
|
||||||
|
static TSet<TSubclassOf<class UInteractableModificator>> interactionModificators;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
/** Returns flags mask of activated types */
|
||||||
int32 GetActivatedFlags();
|
int32 GetActivatedFlags();
|
||||||
|
|
||||||
void _Activate(EActivatorType type);
|
/** Receives activate signal from activator of specific type and activates all modificators of that type */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void Activate(EActivatorType type);
|
void Activate(EActivatorType type);
|
||||||
virtual void Activate_Implementation(EActivatorType type) {}
|
|
||||||
|
|
||||||
void _Deactivate(EActivatorType type);
|
/** Receives deactivate signal from activator of specific type and deactivates all modificators of that type */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void Deactivate(EActivatorType type);
|
void Deactivate(EActivatorType type);
|
||||||
virtual void Deactivate_Implementation(EActivatorType type) {}
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* All modificators that requires (de)activation lock for current interactable.
|
||||||
|
* Used manually by modificators to handle operations which can be continued after physical deactivation.
|
||||||
|
* Eg. MoveModificator movement while mouse buttons are down even if player don't activating interactable anymore.
|
||||||
|
*/
|
||||||
TSet<class UInteractableModificator*> activationLockers;
|
TSet<class UInteractableModificator*> activationLockers;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void BeginPlay() override;
|
virtual void BeginPlay() override;
|
||||||
virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
|
virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
|
||||||
|
|
||||||
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
|
void OnActivate(EActivatorType type);
|
||||||
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
|
void OnDeactivate(EActivatorType type);
|
||||||
|
|
||||||
|
/** Mask of active activator types */
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (Bitmask, BitmaskEnum = "EActivatorType"))
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (Bitmask, BitmaskEnum = "EActivatorType"))
|
||||||
int32 activated = 0;
|
int32 activated = 0;
|
||||||
|
|
||||||
|
/** Map of modificators to activator types initialized on BeginPlay */
|
||||||
UPROPERTY()
|
UPROPERTY()
|
||||||
TMap<EActivatorType, class UInteractableModificator*> modificators;
|
TMap<EActivatorType, class UInteractableModificator*> modificators;
|
||||||
|
|
||||||
class APlayerBase* player = nullptr;
|
|
||||||
TArray<UPrimitiveComponent*> collisions;
|
TArray<UPrimitiveComponent*> collisions;
|
||||||
|
class APlayerBase* player = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "ActivateInteractableModificator.h"
|
#include "ActivateInteractableModificator.h"
|
||||||
|
|
||||||
#include "EnhancedInputComponent.h"
|
#include "EnhancedInputComponent.h"
|
||||||
|
@ -2,14 +2,16 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
#include "ActivateInteractableModificator.generated.h"
|
#include "ActivateInteractableModificator.generated.h"
|
||||||
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FActivateInteractableModificatorActivatedDelegate);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FActivateInteractableModificatorActivatedDelegate);
|
||||||
|
|
||||||
UCLASS(ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent), Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Basic modificator for type Use
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Basic modificator for type Use"), MinimalAPI)
|
||||||
class UActivateInteractableModificator : public UInteractableModificator
|
class UActivateInteractableModificator : public UInteractableModificator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "EditInteractableModificator.h"
|
#include "EditInteractableModificator.h"
|
||||||
|
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
|
|
||||||
UEditInteractableModificator::UEditInteractableModificator(const FObjectInitializer& ObjectInitializer)
|
//UEditInteractableModificator::UEditInteractableModificator(const FObjectInitializer& ObjectInitializer)
|
||||||
: UInteractableModificator(ObjectInitializer)
|
// : UInteractableModificator(ObjectInitializer)
|
||||||
{
|
//{
|
||||||
activatorTypes |= static_cast<uint8>(EActivatorType::Collide);
|
// activatorTypes |= static_cast<uint8>(EActivatorType::Collide);
|
||||||
|
//}
|
||||||
|
|
||||||
}
|
|
||||||
|
@ -2,17 +2,20 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
#include "EditInteractableModificator.generated.h"
|
//#include "EditInteractableModificator.generated.h"
|
||||||
|
|
||||||
UCLASS(ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent), Blueprintable, BlueprintType)
|
/**
|
||||||
class UEditInteractableModificator : public UInteractableModificator
|
* <WIP>
|
||||||
{
|
* Edits object topology on collision
|
||||||
GENERATED_BODY()
|
*/
|
||||||
|
//UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Edits object topology on collision"), MinimalAPI)
|
||||||
public:
|
//class UEditInteractableModificator : public UInteractableModificator
|
||||||
UEditInteractableModificator(const FObjectInitializer& ObjectInitializer);
|
//{
|
||||||
|
// GENERATED_BODY()
|
||||||
};
|
//
|
||||||
|
//public:
|
||||||
|
// UEditInteractableModificator(const FObjectInitializer& ObjectInitializer);
|
||||||
|
//
|
||||||
|
//};
|
||||||
|
@ -1,29 +1,20 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
#include "InputMappingContext.h"
|
#include "Interactable/Interactable.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
|
||||||
#include "Widgets/InteractableHintWidget.h"
|
#include "Widgets/InteractableHintWidget.h"
|
||||||
|
|
||||||
void UInteractableModificator::OnRegister()
|
void UInteractableModificator::OnRegister()
|
||||||
{
|
{
|
||||||
UActorComponent::OnRegister();
|
UActorComponent::OnRegister();
|
||||||
|
|
||||||
if(auto world = GetWorld())
|
AInteractable::AppendInteractableModificatorClass(GetClass());
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(world->GetGameInstance()))
|
|
||||||
{
|
|
||||||
GI->AppendInteractableModificatorClass(this->GetClass());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const UInputMappingContext* UInteractableModificator::GetMappingContext() const
|
const TSoftObjectPtr<class UInputMappingContext> UInteractableModificator::GetMappingContext() const
|
||||||
{
|
{
|
||||||
return inputMapping.LoadSynchronous();
|
return inputMapping;
|
||||||
}
|
}
|
||||||
|
|
||||||
EActivatorType UInteractableModificator::GetActivatorTypes() const
|
EActivatorType UInteractableModificator::GetActivatorTypes() const
|
||||||
|
@ -3,29 +3,37 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Components/ActorComponent.h"
|
#include "Components/ActorComponent.h"
|
||||||
#include "CoreMinimal.h"
|
|
||||||
|
|
||||||
#include "InteractableModificator.generated.h"
|
#include "InteractableModificator.generated.h"
|
||||||
|
|
||||||
enum class EActivatorType : uint8;
|
enum class EActivatorType : uint8;
|
||||||
|
|
||||||
UCLASS(Abstract, Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Do something on activation by specified activator types
|
||||||
|
*/
|
||||||
|
UCLASS(Abstract, Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Do something on activation by specified activator types"), MinimalAPI)
|
||||||
class UInteractableModificator : public UActorComponent
|
class UInteractableModificator : public UActorComponent
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void OnRegister() override;
|
/** Append itself to CustomGameInstance modificators registry */
|
||||||
|
virtual void OnRegister() override;
|
||||||
|
|
||||||
|
/** Returns input mappings assigned in constructor */
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
const class UInputMappingContext* GetMappingContext() const;
|
const TSoftObjectPtr<class UInputMappingContext> GetMappingContext() const;
|
||||||
|
|
||||||
|
/** Filters activation type in interractable */
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
EActivatorType GetActivatorTypes() const;
|
EActivatorType GetActivatorTypes() const;
|
||||||
|
|
||||||
|
/** Called from interactable on activation (mostly used to bind input context to internal modificator functions) */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
||||||
void Bind(class UEnhancedInputComponent* input);
|
void Bind(class UEnhancedInputComponent* input);
|
||||||
virtual void Bind_Implementation(class UEnhancedInputComponent* input) {}
|
virtual void Bind_Implementation(class UEnhancedInputComponent* input) {}
|
||||||
|
|
||||||
|
/** Called from interactable on deactivation (mostly used to unbind input context from internal functions) */
|
||||||
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
||||||
void Unbind();
|
void Unbind();
|
||||||
virtual void Unbind_Implementation() {}
|
virtual void Unbind_Implementation() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InventoryInteractableModificator.h"
|
#include "InventoryInteractableModificator.h"
|
||||||
|
|
||||||
#include "EnhancedInputComponent.h"
|
#include "EnhancedInputComponent.h"
|
||||||
|
@ -2,12 +2,14 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
#include "InventoryInteractableModificator.generated.h"
|
#include "InventoryInteractableModificator.generated.h"
|
||||||
|
|
||||||
UCLASS(ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent), Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Modificator of type Use for storing items in a APlayerBase
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Modificator of type Use for storing items in a APlayerBase"), MinimalAPI)
|
||||||
class UInventoryInteractableModificator : public UInteractableModificator
|
class UInventoryInteractableModificator : public UInteractableModificator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "MoveInteractableModificator.h"
|
#include "MoveInteractableModificator.h"
|
||||||
|
|
||||||
#include "EnhancedInputComponent.h"
|
#include "EnhancedInputComponent.h"
|
||||||
@ -90,7 +89,7 @@ void UMoveInteractableModificator::Unbind_Implementation()
|
|||||||
bindindingHandlers.Empty();
|
bindindingHandlers.Empty();
|
||||||
|
|
||||||
SetComponentTickEnabled(false);
|
SetComponentTickEnabled(false);
|
||||||
actor->_Deactivate(GetActivatorTypes());
|
actor->Deactivate(GetActivatorTypes());
|
||||||
|
|
||||||
OnMoveDeactivated.Broadcast();
|
OnMoveDeactivated.Broadcast();
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InputActionValue.h"
|
#include "InputActionValue.h"
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
@ -13,7 +12,10 @@ DECLARE_DYNAMIC_MULTICAST_DELEGATE(FDeactivateMoveInteractableModificatorActivat
|
|||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FHoldingMoveInteractableModificatorActivatedDelegate);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FHoldingMoveInteractableModificatorActivatedDelegate);
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FRotatingMoveInteractableModificatorActivatedDelegate);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FRotatingMoveInteractableModificatorActivatedDelegate);
|
||||||
|
|
||||||
UCLASS(ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent), Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Basic modificator for Move type activator
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Basic modificator for Move type activator"), MinimalAPI)
|
||||||
class UMoveInteractableModificator : public UInteractableModificator
|
class UMoveInteractableModificator : public UInteractableModificator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "SawInteractableModificator.h"
|
#include "SawInteractableModificator.h"
|
||||||
|
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
|
@ -2,14 +2,16 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CoreMinimal.h"
|
|
||||||
#include "InteractableModificator.h"
|
#include "InteractableModificator.h"
|
||||||
|
|
||||||
#include "SawInteractableModificator.generated.h"
|
#include "SawInteractableModificator.generated.h"
|
||||||
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FSawInteractableModificatorActivatedDelegate);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FSawInteractableModificatorActivatedDelegate);
|
||||||
|
|
||||||
UCLASS(ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent), Blueprintable, BlueprintType)
|
/**
|
||||||
|
* Basic modificator for Saw type activator
|
||||||
|
*/
|
||||||
|
UCLASS(Blueprintable, BlueprintType, ClassGroup = InteractableModificator, meta = (BlueprintSpawnableComponent, ShortTooltip = "Basic modificator for Saw type activator"), MinimalAPI)
|
||||||
class USawInteractableModificator : public UInteractableModificator
|
class USawInteractableModificator : public UInteractableModificator
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Checkpoint.h"
|
#include "Checkpoint.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
|
|
||||||
void ACheckpoint::SaveGame()
|
void ACheckpoint::SaveGame()
|
||||||
{
|
{
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
|
if(auto GI = UCustomGameInstance::GetGameInstance())
|
||||||
GI->SaveGame(GetFName());
|
GI->SaveGame(GetFName());
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
#include "Checkpoint.generated.h"
|
#include "Checkpoint.generated.h"
|
||||||
|
|
||||||
|
/** Simple actor for game save */
|
||||||
UCLASS(Blueprintable, BlueprintType, MinimalAPI)
|
UCLASS(Blueprintable, BlueprintType, MinimalAPI)
|
||||||
class ACheckpoint : public AActor
|
class ACheckpoint : public AActor
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Level1.h"
|
#include "Level1.h"
|
||||||
|
|
||||||
#include "Atmosphere/AtmosphericFog.h"
|
#include "Atmosphere/AtmosphericFog.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Level2.h"
|
#include "Level2.h"
|
||||||
|
|
||||||
void ALevel2::BeginPlay()
|
void ALevel2::BeginPlay()
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Level3.h"
|
#include "Level3.h"
|
||||||
|
|
||||||
#include "Atmosphere/AtmosphericFog.h"
|
#include "Atmosphere/AtmosphericFog.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Level4.h"
|
#include "Level4.h"
|
||||||
|
|
||||||
#include "Atmosphere/AtmosphericFog.h"
|
#include "Atmosphere/AtmosphericFog.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Level5.h"
|
#include "Level5.h"
|
||||||
|
|
||||||
#include "Atmosphere/AtmosphericFog.h"
|
#include "Atmosphere/AtmosphericFog.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "LevelBase.h"
|
#include "LevelBase.h"
|
||||||
|
|
||||||
#include "Engine/StaticMesh.h"
|
#include "Engine/StaticMesh.h"
|
||||||
@ -11,7 +10,8 @@
|
|||||||
#include "LevelSequencePlayer.h"
|
#include "LevelSequencePlayer.h"
|
||||||
|
|
||||||
#include "CommonFunctions.h"
|
#include "CommonFunctions.h"
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
#include "Levels/Checkpoint.h"
|
#include "Levels/Checkpoint.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
@ -23,17 +23,6 @@ void ALevelBase::BeginPlay()
|
|||||||
{
|
{
|
||||||
AMainGameModeBase::leadLevel = TStrongObjectPtr<ALevelBase>{ this };
|
AMainGameModeBase::leadLevel = TStrongObjectPtr<ALevelBase>{ this };
|
||||||
|
|
||||||
if(auto world = GetWorld())
|
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(world->GetGameInstance()))
|
|
||||||
{
|
|
||||||
for(TActorIterator<AMinigame> it(GetWorld()); it; ++it)
|
|
||||||
{
|
|
||||||
GI->inputContexts.Add(it->GetInputMappings());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ALevelScriptActor::BeginPlay();
|
ALevelScriptActor::BeginPlay();
|
||||||
|
|
||||||
BroadcastNewLevelBeginPlay();
|
BroadcastNewLevelBeginPlay();
|
||||||
@ -62,7 +51,7 @@ void ALevelBase::IterateToState(int32 to)
|
|||||||
|
|
||||||
void ALevelBase::BroadcastNewLevelBeginPlay()
|
void ALevelBase::BroadcastNewLevelBeginPlay()
|
||||||
{
|
{
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
|
if(auto GI = UCustomGameInstance::GetGameInstance())
|
||||||
GI->OnLevelBeginned.Broadcast(GetFName());
|
GI->OnLevelBeginned.Broadcast(GetFName());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,7 +72,7 @@ void ALevelBase::StartLevelAnimations()
|
|||||||
|
|
||||||
void ALevelBase::ApplySaveData()
|
void ALevelBase::ApplySaveData()
|
||||||
{
|
{
|
||||||
auto GI = UCustomGameInstanceBase::GetGameInstance();
|
auto GI = UCustomGameInstance::GetGameInstance();
|
||||||
if(!GI || !GI->saveData || GI->saveData->level != GetWorld()->GetFName())
|
if(!GI || !GI->saveData || GI->saveData->level != GetWorld()->GetFName())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -6,15 +6,24 @@
|
|||||||
|
|
||||||
#include "LevelBase.generated.h"
|
#include "LevelBase.generated.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expands basic UE level script actor.
|
||||||
|
* Has int type level states and events.
|
||||||
|
* Brodcasts level instantiation by CustomGameInstance::OnLevelBeginned(FName).
|
||||||
|
* On BeginPlay applies last save data if valid,
|
||||||
|
* and instantiate all sequencers from array onBeginPlaySequences.
|
||||||
|
*/
|
||||||
UCLASS(BlueprintType)
|
UCLASS(BlueprintType)
|
||||||
class ALevelBase : public ALevelScriptActor
|
class ALevelBase : public ALevelScriptActor
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/** Iterates throught level states */
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
inline void CallNextState() { ++state; NextState(); }
|
inline void CallNextState() { ++state; NextState(); }
|
||||||
|
|
||||||
|
/** Calls specific event id in level */
|
||||||
UFUNCTION(BlueprintImplementableEvent)
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
void CallEvent(int32 id);
|
void CallEvent(int32 id);
|
||||||
|
|
||||||
@ -23,9 +32,11 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual void BeginPlay() override;
|
virtual void BeginPlay() override;
|
||||||
|
|
||||||
|
/** Notifies level to process current state */
|
||||||
UFUNCTION(BlueprintImplementableEvent)
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
void NextState();
|
void NextState();
|
||||||
|
|
||||||
|
/** Shortcut for iterating from current to expected state */
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void IterateToState(int32 to);
|
void IterateToState(int32 to);
|
||||||
|
|
||||||
@ -33,12 +44,13 @@ protected:
|
|||||||
void StartLevelAnimations();
|
void StartLevelAnimations();
|
||||||
void ApplySaveData();
|
void ApplySaveData();
|
||||||
|
|
||||||
|
/** List of level animations for instantiation on level BeginPlay */
|
||||||
UPROPERTY(EditDefaultsOnly)
|
UPROPERTY(EditDefaultsOnly)
|
||||||
TArray<TSoftObjectPtr<class ULevelSequence>> onBeginPlaySequences;
|
TArray<TSoftObjectPtr<class ULevelSequence>> onBeginPlaySequences;
|
||||||
|
/** Cache of actors that hold instantiated animations on BeginPlay */
|
||||||
TArray<class ALevelSequenceActor*> onBeginPlaySequencesActors;
|
TArray<class ALevelSequenceActor*> onBeginPlaySequencesActors;
|
||||||
|
|
||||||
|
/** Current state of level */
|
||||||
UPROPERTY(BlueprintReadOnly)
|
UPROPERTY(BlueprintReadOnly)
|
||||||
int32 state = -1;
|
int32 state = -1;
|
||||||
UPROPERTY(EditDefaultsOnly)
|
|
||||||
TArray<TSoftObjectPtr<class ULevelSequence>> stateSequences;
|
|
||||||
};
|
};
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
#include "UObject/ScriptInterface.h"
|
#include "UObject/ScriptInterface.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
#include "CutsceneManager.h"
|
#include "CutsceneManager.h"
|
||||||
#include "DialogueManager.h"
|
#include "DialogueManager.h"
|
||||||
#include "Levels/LevelBase.h"
|
#include "Levels/LevelBase.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "AgeOfWarManager.h"
|
#include "AgeOfWarManager.h"
|
||||||
|
|
||||||
#include "Camera/CameraComponent.h"
|
#include "Camera/CameraComponent.h"
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "AgeOfWarUnit.h"
|
#include "AgeOfWarUnit.h"
|
||||||
|
|
||||||
|
#include "Components/BoxComponent.h"
|
||||||
#include "Components/StaticMeshComponent.h"
|
#include "Components/StaticMeshComponent.h"
|
||||||
|
|
||||||
#include "AgeOfWarManager.h"
|
#include "AgeOfWarManager.h"
|
||||||
#include <Components/BoxComponent.h>
|
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "CrossyRoadManager.h"
|
#include "CrossyRoadManager.h"
|
||||||
|
|
||||||
#include "Camera/CameraComponent.h"
|
#include "Camera/CameraComponent.h"
|
||||||
@ -10,7 +9,7 @@
|
|||||||
#include "InputMappingContext.h"
|
#include "InputMappingContext.h"
|
||||||
|
|
||||||
#include "CrossyRoadObstacle.h"
|
#include "CrossyRoadObstacle.h"
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "Widgets/WidgetsManager.h"
|
#include "Widgets/WidgetsManager.h"
|
||||||
@ -19,7 +18,7 @@ ACrossyRoadManager::ACrossyRoadManager()
|
|||||||
: AMinigame()
|
: AMinigame()
|
||||||
{
|
{
|
||||||
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_CrossyRoad.IMC_Minigame_CrossyRoad'") };
|
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_CrossyRoad.IMC_Minigame_CrossyRoad'") };
|
||||||
input = asset.Object;
|
context = asset.Object;
|
||||||
|
|
||||||
auto root = CreateDefaultSubobject<USceneComponent>(TEXT("Scene"));
|
auto root = CreateDefaultSubobject<USceneComponent>(TEXT("Scene"));
|
||||||
|
|
||||||
@ -43,16 +42,17 @@ void ACrossyRoadManager::Start(APlayerBase* playerPawn, FMinigameEndCallback del
|
|||||||
player->LockPlayer(FPlayerLock::All());
|
player->LockPlayer(FPlayerLock::All());
|
||||||
player->SwitchToView(this);
|
player->SwitchToView(this);
|
||||||
|
|
||||||
for(auto& mapping : input.LoadSynchronous()->GetMappings())
|
auto input = ACustomPlayerController::GetInput();
|
||||||
|
for(auto& mapping : context.LoadSynchronous()->GetMappings())
|
||||||
{
|
{
|
||||||
if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Up"))))
|
if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Up"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Up).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Up).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Down"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Down"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Down).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Down).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Left"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Left"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Left).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Left).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Right"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Right"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Right).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ACrossyRoadManager::Right).GetHandle());
|
||||||
}
|
}
|
||||||
|
|
||||||
playerPos->SetWorldLocation(lines[0]->GetLocationAtTime(lines[0]->Duration * playerLineTime, ESplineCoordinateSpace::World));
|
playerPos->SetWorldLocation(lines[0]->GetLocationAtTime(lines[0]->Duration * playerLineTime, ESplineCoordinateSpace::World));
|
||||||
@ -70,7 +70,7 @@ void ACrossyRoadManager::End()
|
|||||||
PrimaryActorTick.SetTickFunctionEnable(false);
|
PrimaryActorTick.SetTickFunctionEnable(false);
|
||||||
|
|
||||||
for(int32 handler : inputHandlers)
|
for(int32 handler : inputHandlers)
|
||||||
player->inputComponent->RemoveBindingByHandle(handler);
|
ACustomPlayerController::GetInput()->RemoveBindingByHandle(handler);
|
||||||
|
|
||||||
player->UnlockPlayer(FPlayerLock::All());
|
player->UnlockPlayer(FPlayerLock::All());
|
||||||
player->ReturnPlayerView();
|
player->ReturnPlayerView();
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "CrossyRoadObstacle.h"
|
#include "CrossyRoadObstacle.h"
|
||||||
|
|
||||||
#include "CrossyRoadManager.h"
|
#include "CrossyRoadManager.h"
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "FishingManager.h"
|
#include "FishingManager.h"
|
||||||
|
|
||||||
#include "EnhancedInputComponent.h"
|
#include "EnhancedInputComponent.h"
|
||||||
#include "InputMappingContext.h"
|
#include "InputMappingContext.h"
|
||||||
|
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
|
|
||||||
AFishingManager::AFishingManager()
|
AFishingManager::AFishingManager()
|
||||||
{
|
{
|
||||||
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_Fishing.IMC_Minigame_Fishing'") };
|
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_Fishing.IMC_Minigame_Fishing'") };
|
||||||
input = asset.Object;
|
context = asset.Object;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AFishingManager::Start(APlayerBase* playerPawn, FMinigameEndCallback delegate)
|
void AFishingManager::Start(APlayerBase* playerPawn, FMinigameEndCallback delegate)
|
||||||
@ -24,15 +24,17 @@ void AFishingManager::Start(APlayerBase* playerPawn, FMinigameEndCallback delega
|
|||||||
|
|
||||||
player->LockPlayer(FPlayerLock::All());
|
player->LockPlayer(FPlayerLock::All());
|
||||||
|
|
||||||
auto& mapping = input.LoadSynchronous()->GetMapping(0);
|
auto input = ACustomPlayerController::GetInput();
|
||||||
handler1 = player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Started, this, &AFishingManager::OnInputHold).GetHandle();
|
auto& mapping = context.LoadSynchronous()->GetMapping(0);
|
||||||
handler2 = player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Completed, this, &AFishingManager::OnInputUnhold).GetHandle();
|
handler1 = input->BindAction(mapping.Action, ETriggerEvent::Started, this, &AFishingManager::OnInputHold).GetHandle();
|
||||||
|
handler2 = input->BindAction(mapping.Action, ETriggerEvent::Completed, this, &AFishingManager::OnInputUnhold).GetHandle();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AFishingManager::End()
|
void AFishingManager::End()
|
||||||
{
|
{
|
||||||
player->inputComponent->RemoveBindingByHandle(handler1);
|
auto input = ACustomPlayerController::GetInput();
|
||||||
player->inputComponent->RemoveBindingByHandle(handler2);
|
input->RemoveBindingByHandle(handler1);
|
||||||
|
input->RemoveBindingByHandle(handler2);
|
||||||
|
|
||||||
player->UnlockPlayer(FPlayerLock::All());
|
player->UnlockPlayer(FPlayerLock::All());
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "Minigame.h"
|
#include "Minigame.h"
|
||||||
|
|
||||||
#include "EnhancedInputSubsystems.h"
|
#include "CustomPlayerController.h"
|
||||||
#include "InputMappingContext.h"
|
|
||||||
|
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
|
|
||||||
AMinigame::AMinigame()
|
AMinigame::AMinigame()
|
||||||
@ -22,23 +19,13 @@ void AMinigame::End()
|
|||||||
OnEnd();
|
OnEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AMinigame::Restart()
|
|
||||||
{}
|
|
||||||
|
|
||||||
UInputMappingContext* AMinigame::GetInputMappings()
|
|
||||||
{
|
|
||||||
return input.LoadSynchronous();
|
|
||||||
}
|
|
||||||
|
|
||||||
void AMinigame::Start(APlayerBase* playerPawn, FMinigameEndCallback delegate)
|
void AMinigame::Start(APlayerBase* playerPawn, FMinigameEndCallback delegate)
|
||||||
{
|
{
|
||||||
player = playerPawn;
|
player = playerPawn;
|
||||||
callback = delegate;
|
callback = delegate;
|
||||||
|
|
||||||
if(input)
|
if(context.IsValid())
|
||||||
if(auto PC = Cast<APlayerController>(playerPawn->GetController()))
|
ACustomPlayerController::AppendInputContext(context);
|
||||||
if(auto inputSubsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(PC->GetLocalPlayer()))
|
|
||||||
inputSubsystem->AddMappingContext(input.LoadSynchronous(), 0);
|
|
||||||
|
|
||||||
OnStart();
|
OnStart();
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,14 @@ enum class EMinigameResult : uint8
|
|||||||
|
|
||||||
DECLARE_DYNAMIC_DELEGATE_TwoParams(FMinigameEndCallback, EMinigameResult, result, int32, score);
|
DECLARE_DYNAMIC_DELEGATE_TwoParams(FMinigameEndCallback, EMinigameResult, result, int32, score);
|
||||||
|
|
||||||
UCLASS(Blueprintable, BlueprintType, MinimalAPI, Abstract)
|
/**
|
||||||
|
* Interface for all minigame classes.
|
||||||
|
* Any minigame is started/ended/restarted by executing Start()/End()/Restart() on specific instance.
|
||||||
|
* Each call is after broadcasted into a blueprint event also.
|
||||||
|
* On start the caller can pass a OnEndCallback delegate to receive result and score on a minigame end.
|
||||||
|
* Each minigame can have its own contextInput
|
||||||
|
*/
|
||||||
|
UCLASS(Abstract, Blueprintable, BlueprintType, MinimalAPI)
|
||||||
class AMinigame : public AActor
|
class AMinigame : public AActor
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
@ -25,21 +32,21 @@ public:
|
|||||||
|
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
virtual void Start(class APlayerBase* playerPawn, FMinigameEndCallback delegate);
|
virtual void Start(class APlayerBase* playerPawn, FMinigameEndCallback delegate);
|
||||||
|
|
||||||
UFUNCTION(BlueprintImplementableEvent)
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
void OnStart();
|
void OnStart();
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
virtual void End();
|
virtual void End();
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable)
|
|
||||||
virtual void Restart();
|
|
||||||
|
|
||||||
UFUNCTION(BlueprintImplementableEvent)
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
void OnEnd();
|
void OnEnd();
|
||||||
|
|
||||||
|
UFUNCTION(BlueprintCallable)
|
||||||
|
virtual void Restart() {}
|
||||||
|
UFUNCTION(BlueprintImplementableEvent)
|
||||||
|
void OnRestart();
|
||||||
|
|
||||||
UFUNCTION(BlueprintPure)
|
UFUNCTION(BlueprintPure)
|
||||||
class UInputMappingContext* GetInputMappings();
|
TSoftObjectPtr<class UInputMappingContext> GetInputMappings() { return context; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
FMinigameEndCallback callback;
|
FMinigameEndCallback callback;
|
||||||
@ -55,6 +62,6 @@ protected:
|
|||||||
bool ended = false;
|
bool ended = false;
|
||||||
|
|
||||||
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
|
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
|
||||||
TSoftObjectPtr<class UInputMappingContext> input = nullptr;
|
TSoftObjectPtr<class UInputMappingContext> context = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "RythmClickManager.h"
|
#include "RythmClickManager.h"
|
||||||
|
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "SubwaySurfManager.h"
|
#include "SubwaySurfManager.h"
|
||||||
|
|
||||||
#include "Camera/CameraComponent.h"
|
#include "Camera/CameraComponent.h"
|
||||||
@ -9,7 +8,7 @@
|
|||||||
#include "EnhancedInputComponent.h"
|
#include "EnhancedInputComponent.h"
|
||||||
#include "InputMappingContext.h"
|
#include "InputMappingContext.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "SubwaySurfObstacle.h"
|
#include "SubwaySurfObstacle.h"
|
||||||
@ -19,7 +18,7 @@ ASubwaySurfManager::ASubwaySurfManager()
|
|||||||
: AMinigame()
|
: AMinigame()
|
||||||
{
|
{
|
||||||
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_SubwaySurf.IMC_Minigame_SubwaySurf'") };
|
static ConstructorHelpers::FObjectFinder<UInputMappingContext> asset{ TEXT("/Script/EnhancedInput.InputMappingContext'/Game/Input/Minigame/IMC_Minigame_SubwaySurf.IMC_Minigame_SubwaySurf'") };
|
||||||
input = asset.Object;
|
context = asset.Object;
|
||||||
|
|
||||||
auto root = CreateDefaultSubobject<USceneComponent>(TEXT("Scene"));
|
auto root = CreateDefaultSubobject<USceneComponent>(TEXT("Scene"));
|
||||||
|
|
||||||
@ -43,16 +42,17 @@ void ASubwaySurfManager::Start(APlayerBase* playerPawn, FMinigameEndCallback del
|
|||||||
player->LockPlayer(FPlayerLock::All());
|
player->LockPlayer(FPlayerLock::All());
|
||||||
player->SwitchToView(this);
|
player->SwitchToView(this);
|
||||||
|
|
||||||
for(auto& mapping : input.LoadSynchronous()->GetMappings())
|
auto input = ACustomPlayerController::GetInput();
|
||||||
|
for(auto& mapping : context.LoadSynchronous()->GetMappings())
|
||||||
{
|
{
|
||||||
if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Up"))))
|
if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Up"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Up).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Up).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Down"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Down"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Down).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Down).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Left"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Left"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Left).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Left).GetHandle());
|
||||||
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Right"))))
|
else if(mapping.Action->ActionDescription.EqualTo(FText::AsCultureInvariant(TEXT("Right"))))
|
||||||
inputHandlers.Add(player->inputComponent->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Right).GetHandle());
|
inputHandlers.Add(input->BindAction(mapping.Action, ETriggerEvent::Triggered, this, &ASubwaySurfManager::Right).GetHandle());
|
||||||
}
|
}
|
||||||
|
|
||||||
playerPos->SetRelativeLocation(lines[1]->GetLocationAtTime(lines[1]->Duration * 0.01f, ESplineCoordinateSpace::Local));
|
playerPos->SetRelativeLocation(lines[1]->GetLocationAtTime(lines[1]->Duration * 0.01f, ESplineCoordinateSpace::Local));
|
||||||
@ -66,7 +66,7 @@ void ASubwaySurfManager::End()
|
|||||||
PrimaryActorTick.SetTickFunctionEnable(false);
|
PrimaryActorTick.SetTickFunctionEnable(false);
|
||||||
|
|
||||||
for(int32 handler : inputHandlers)
|
for(int32 handler : inputHandlers)
|
||||||
player->inputComponent->RemoveBindingByHandle(handler);
|
ACustomPlayerController::GetInput()->RemoveBindingByHandle(handler);
|
||||||
|
|
||||||
player->UnlockPlayer(FPlayerLock::All());
|
player->UnlockPlayer(FPlayerLock::All());
|
||||||
player->ReturnPlayerView();
|
player->ReturnPlayerView();
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "SubwaySurfObstacle.h"
|
#include "SubwaySurfObstacle.h"
|
||||||
|
|
||||||
#include "SubwaySurfManager.h"
|
#include "SubwaySurfManager.h"
|
||||||
|
@ -4,16 +4,14 @@
|
|||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
|
|
||||||
#include "Camera/CameraComponent.h"
|
#include "Camera/CameraComponent.h"
|
||||||
#include "EnhancedInputComponent.h"
|
|
||||||
#include "EnhancedInputSubsystems.h"
|
|
||||||
#include "GameFramework/CharacterMovementComponent.h"
|
#include "GameFramework/CharacterMovementComponent.h"
|
||||||
#include "GameFramework/SpringArmComponent.h"
|
#include "GameFramework/SpringArmComponent.h"
|
||||||
#include "InputMappingContext.h"
|
#include "InputMappingContext.h"
|
||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
#include "Kismet/KismetMathLibrary.h"
|
#include "Kismet/KismetMathLibrary.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
|
||||||
#include "CustomGameUserSettings.h"
|
#include "CustomGameUserSettings.h"
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "Interactable/Activators/InteractableActivator.h"
|
#include "Interactable/Activators/InteractableActivator.h"
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
#include "Interactable/Modificators/InteractableModificator.h"
|
#include "Interactable/Modificators/InteractableModificator.h"
|
||||||
@ -84,44 +82,9 @@ void APlayerBase::BeginPlay()
|
|||||||
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
|
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
playerController = Cast<APlayerController>(GetController());
|
|
||||||
if(playerController)
|
|
||||||
{
|
|
||||||
if(auto inputSubsystem = ULocalPlayer::GetSubsystem<UEnhancedInputLocalPlayerSubsystem>(playerController->GetLocalPlayer()))
|
|
||||||
{
|
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
|
|
||||||
{
|
|
||||||
inputSubsystem->ClearAllMappings();
|
|
||||||
for(auto& inputContext : GI->inputContexts)
|
|
||||||
{
|
|
||||||
inputSubsystem->AddMappingContext(inputContext.LoadSynchronous(), 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inputComponent = Cast<UEnhancedInputComponent>(playerController->InputComponent);
|
|
||||||
if(inputComponent)
|
|
||||||
{
|
|
||||||
((UInputComponent*)inputComponent)->BindAction(TEXT("AnyKey"), IE_Pressed, this, &APlayerBase::OnAnyKeyPressed);
|
|
||||||
((UInputComponent*)inputComponent)->BindAction(TEXT("AnyKey"), IE_Released, this, &APlayerBase::OnAnyKeyReleased);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LoadInteractablesActivators();
|
LoadInteractablesActivators();
|
||||||
}
|
}
|
||||||
|
|
||||||
void APlayerBase::OnAnyKeyPressed(FKey key)
|
|
||||||
{
|
|
||||||
if(onAnyKeyPressedDelegate.IsBound())
|
|
||||||
onAnyKeyPressedDelegate.Broadcast(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
void APlayerBase::OnAnyKeyReleased(FKey key)
|
|
||||||
{
|
|
||||||
if(onAnyKeyReleasedDelegate.IsBound())
|
|
||||||
onAnyKeyReleasedDelegate.Broadcast(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool APlayerBase::IsMoving()
|
bool APlayerBase::IsMoving()
|
||||||
{
|
{
|
||||||
return bIsMoving;
|
return bIsMoving;
|
||||||
@ -257,22 +220,19 @@ void APlayerBase::UpdatePitch(float min, float max)
|
|||||||
|
|
||||||
void APlayerBase::LoadInteractablesActivators()
|
void APlayerBase::LoadInteractablesActivators()
|
||||||
{
|
{
|
||||||
if(auto GI = Cast<UCustomGameInstanceBase>(GetWorld()->GetGameInstance()))
|
TSet<UClass*> instancedActivators;
|
||||||
|
for(auto& act : AInteractable::interactionActivators)
|
||||||
{
|
{
|
||||||
TSet<UClass*> instancedActivators;
|
if(instancedActivators.Contains(act))
|
||||||
for(auto& act : GI->interactionsActivators)
|
continue;
|
||||||
{
|
instancedActivators.Add(act);
|
||||||
if(instancedActivators.Contains(act))
|
|
||||||
continue;
|
|
||||||
instancedActivators.Add(act);
|
|
||||||
|
|
||||||
auto component = NewObject<UInteractableActivator>(this, act);
|
auto component = NewObject<UInteractableActivator>(this, act);
|
||||||
component->interactableActivatedDelegate.BindUObject(this, &APlayerBase::InteractableActivated);
|
component->interactableActivatedDelegate.BindUObject(this, &APlayerBase::InteractableActivated);
|
||||||
component->interactableDeactivatedDelegate.BindUObject(this, &APlayerBase::InteractableDeactivated);
|
component->interactableDeactivatedDelegate.BindUObject(this, &APlayerBase::InteractableDeactivated);
|
||||||
component->SetupAttachment(camera);
|
component->SetupAttachment(camera);
|
||||||
component->RegisterComponent();
|
component->RegisterComponent();
|
||||||
interactableActivators.Add(component);
|
interactableActivators.Add(component);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +244,7 @@ void APlayerBase::InteractableActivated(AInteractable* interactable, EActivatorT
|
|||||||
if(interactionLocked || interactable->IsHidden())
|
if(interactionLocked || interactable->IsHidden())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
interactable->_Activate(type);
|
interactable->Activate(type);
|
||||||
|
|
||||||
if(interactable != lastInteractable)
|
if(interactable != lastInteractable)
|
||||||
lastInteractable = interactable;
|
lastInteractable = interactable;
|
||||||
@ -295,7 +255,7 @@ void APlayerBase::InteractableDeactivated(AInteractable* interactable, EActivato
|
|||||||
if(!interactable)
|
if(!interactable)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
interactable->_Deactivate(type);
|
interactable->Deactivate(type);
|
||||||
|
|
||||||
if(interactable->GetActivatedFlags() == 0)
|
if(interactable->GetActivatedFlags() == 0)
|
||||||
lastInteractable = nullptr;
|
lastInteractable = nullptr;
|
||||||
|
@ -8,8 +8,6 @@
|
|||||||
|
|
||||||
enum class EActivatorType : uint8;
|
enum class EActivatorType : uint8;
|
||||||
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FPlayerAnyKeyPressedDelegate, FKey, key);
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FPlayerAnyKeyReleasedDelegate, FKey, key);
|
|
||||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FPlayerMovedDelegate);
|
DECLARE_DYNAMIC_MULTICAST_DELEGATE(FPlayerMovedDelegate);
|
||||||
|
|
||||||
USTRUCT(BlueprintType)
|
USTRUCT(BlueprintType)
|
||||||
@ -66,20 +64,12 @@ public:
|
|||||||
FPlayerMovedDelegate OnPlayerMoved;
|
FPlayerMovedDelegate OnPlayerMoved;
|
||||||
FVector moveVector;
|
FVector moveVector;
|
||||||
|
|
||||||
FPlayerAnyKeyPressedDelegate onAnyKeyPressedDelegate;
|
|
||||||
FPlayerAnyKeyReleasedDelegate onAnyKeyReleasedDelegate;
|
|
||||||
|
|
||||||
class UEnhancedInputComponent* inputComponent = nullptr;
|
|
||||||
|
|
||||||
class AActor* leftPocketItem = nullptr;
|
class AActor* leftPocketItem = nullptr;
|
||||||
class AActor* rightPocketItem = nullptr;
|
class AActor* rightPocketItem = nullptr;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void BeginPlay() override;
|
virtual void BeginPlay() override;
|
||||||
|
|
||||||
void OnAnyKeyPressed(FKey key);
|
|
||||||
void OnAnyKeyReleased(FKey key);
|
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable, Category = CameraMode)
|
UFUNCTION(BlueprintCallable, Category = CameraMode)
|
||||||
void SwitchToCameraPawn();
|
void SwitchToCameraPawn();
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
|
|
||||||
#include "CommonFunctions.h"
|
#include "CommonFunctions.h"
|
||||||
|
#include "CustomPlayerController.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "PlayerBase.h"
|
#include "PlayerBase.h"
|
||||||
#include "Widgets/WidgetsManager.h"
|
#include "Widgets/WidgetsManager.h"
|
||||||
@ -84,10 +85,10 @@ void UQuickTimeEventManager::OnEventEnd(int32 id, EQuickTimeEventResult result)
|
|||||||
|
|
||||||
if(_events.IsEmpty())
|
if(_events.IsEmpty())
|
||||||
{
|
{
|
||||||
if(auto player = UCommonFunctions::GetPlayer(this))
|
if(auto PC = ACustomPlayerController::Get())
|
||||||
{
|
{
|
||||||
player->onAnyKeyPressedDelegate.RemoveDynamic(this, &UQuickTimeEventManager::OnInputPressed);
|
PC->onAnyKeyPressed.RemoveDynamic(this, &UQuickTimeEventManager::OnInputPressed);
|
||||||
player->onAnyKeyReleasedDelegate.RemoveDynamic(this, &UQuickTimeEventManager::OnInputReleased);
|
PC->onAnyKeyReleased.RemoveDynamic(this, &UQuickTimeEventManager::OnInputReleased);
|
||||||
}
|
}
|
||||||
UCommonFunctions::ExitSlowMotion();
|
UCommonFunctions::ExitSlowMotion();
|
||||||
}
|
}
|
||||||
@ -153,12 +154,12 @@ void UQuickTimeEventManager::OnFirstEventInit()
|
|||||||
{
|
{
|
||||||
if(_events.IsEmpty())
|
if(_events.IsEmpty())
|
||||||
{
|
{
|
||||||
if(auto player = UCommonFunctions::GetPlayer(this))
|
if(auto PC = ACustomPlayerController::Get())
|
||||||
{
|
{
|
||||||
GetWorld()->GetTimerManager().SetTimerForNextTick([manager = this, player = player]()
|
GetWorld()->GetTimerManager().SetTimerForNextTick([=, this]()
|
||||||
{
|
{
|
||||||
player->onAnyKeyPressedDelegate.AddDynamic(manager, &UQuickTimeEventManager::OnInputPressed);
|
PC->onAnyKeyPressed.AddDynamic(this, &UQuickTimeEventManager::OnInputPressed);
|
||||||
player->onAnyKeyReleasedDelegate.AddDynamic(manager, &UQuickTimeEventManager::OnInputReleased);
|
PC->onAnyKeyReleased.AddDynamic(this, &UQuickTimeEventManager::OnInputReleased);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
UCommonFunctions::EnterSlowMotion();
|
UCommonFunctions::EnterSlowMotion();
|
||||||
@ -168,12 +169,12 @@ void UQuickTimeEventManager::OnFirstEventInit()
|
|||||||
void UQuickTimeEventManager::CreateEvent(FQuickTimeEventEnqueProperties& properties, bool sequence)
|
void UQuickTimeEventManager::CreateEvent(FQuickTimeEventEnqueProperties& properties, bool sequence)
|
||||||
{
|
{
|
||||||
Event event{ properties.type, properties.key, properties.callback, sequence };
|
Event event{ properties.type, properties.key, properties.callback, sequence };
|
||||||
GetWorld()->GetTimerManager().SetTimer(event.timer, [id = event.GetId(), manager = this]()
|
GetWorld()->GetTimerManager().SetTimer(event.timer, [id = event.GetId(), this]()
|
||||||
{
|
{
|
||||||
EQuickTimeEventResult result = EQuickTimeEventResult::FailedTime;
|
EQuickTimeEventResult result = EQuickTimeEventResult::FailedTime;
|
||||||
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
if(auto WM = AMainGameModeBase::GetWidgetsManager())
|
||||||
result = WM->RemoveQuickTimeEvent(id);
|
result = WM->RemoveQuickTimeEvent(id);
|
||||||
manager->OnEventEnd(id, result);
|
this->OnEventEnd(id, result);
|
||||||
}, properties.duration, false);
|
}, properties.duration, false);
|
||||||
_events.Add(event.GetId(), event);
|
_events.Add(event.GetId(), event);
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "AutohideWidget.h"
|
#include "AutohideWidget.h"
|
||||||
|
|
||||||
#include "Animation/WidgetAnimation.h"
|
#include "Animation/WidgetAnimation.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "DialogueRowWidgetManager.h"
|
#include "DialogueRowWidgetManager.h"
|
||||||
|
|
||||||
#include "Blueprint/WidgetTree.h"
|
#include "Blueprint/WidgetTree.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "InteractableHintWidgetManager.h"
|
#include "InteractableHintWidgetManager.h"
|
||||||
|
|
||||||
#include "Blueprint/WidgetTree.h"
|
#include "Blueprint/WidgetTree.h"
|
||||||
@ -23,10 +22,10 @@ void UInteractableHintWidgetManager::Append(const UInteractableModificator* modi
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(hintsMap.Contains(modificator) || !modificator->GetMappingContext())
|
if(hintsMap.Contains(modificator) || !modificator->GetMappingContext().IsValid())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const auto& mappings = modificator->GetMappingContext()->GetMappings();
|
const auto& mappings = modificator->GetMappingContext().LoadSynchronous()->GetMappings();
|
||||||
|
|
||||||
for(int32 i = hints->GetChildrenCount() - count - mappings.Num(); i < 0; ++i)
|
for(int32 i = hints->GetChildrenCount() - count - mappings.Num(); i < 0; ++i)
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "JournalWidget.h"
|
#include "JournalWidget.h"
|
||||||
|
|
||||||
#include "Blueprint/WidgetTree.h"
|
#include "Blueprint/WidgetTree.h"
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "MainMenuButtonWidget.h"
|
#include "MainMenuButtonWidget.h"
|
||||||
|
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "MainMenuWidget.h"
|
#include "MainMenuWidget.h"
|
||||||
|
|
||||||
#include "Animation/WidgetAnimation.h"
|
#include "Animation/WidgetAnimation.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
#include "MainGameModeBase.h"
|
#include "MainGameModeBase.h"
|
||||||
#include "MainMenuButtonWidget.h"
|
#include "MainMenuButtonWidget.h"
|
||||||
#include "Widgets/WidgetsManager.h"
|
#include "Widgets/WidgetsManager.h"
|
||||||
@ -14,13 +13,11 @@ bool UMainMenuWidget::Initialize()
|
|||||||
{
|
{
|
||||||
if(ButtonLoadLastSave)
|
if(ButtonLoadLastSave)
|
||||||
{
|
{
|
||||||
if(auto GI = UCustomGameInstanceBase::GetGameInstance())
|
auto GI = UCustomGameInstance::GetGameInstance();
|
||||||
|
if(GI && GI->saveData)
|
||||||
{
|
{
|
||||||
if(GI->saveData)
|
ButtonLoadLastSave->SetIsEnabled(true);
|
||||||
{
|
ButtonLoadLastSave->SetRenderOpacity(1.0f);
|
||||||
ButtonLoadLastSave->SetIsEnabled(true);
|
|
||||||
ButtonLoadLastSave->SetRenderOpacity(1.0f);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "QuickTimeEventWidget.h"
|
#include "QuickTimeEventWidget.h"
|
||||||
|
|
||||||
#include "Animation/WidgetAnimation.h"
|
#include "Animation/WidgetAnimation.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "QuickTimeEventWidgetManager.h"
|
#include "QuickTimeEventWidgetManager.h"
|
||||||
|
|
||||||
#include "Animation/UMGSequencePlayer.h"
|
#include "Animation/UMGSequencePlayer.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "ResolutionResponsiveUserWidget.h"
|
#include "ResolutionResponsiveUserWidget.h"
|
||||||
|
|
||||||
#include "Components/PanelSlot.h"
|
#include "Components/PanelSlot.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "WidgetsManager.h"
|
#include "WidgetsManager.h"
|
||||||
|
|
||||||
#include "Blueprint/UserWidget.h"
|
#include "Blueprint/UserWidget.h"
|
||||||
@ -10,7 +9,7 @@
|
|||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
#include "UObject/ScriptInterface.h"
|
#include "UObject/ScriptInterface.h"
|
||||||
|
|
||||||
#include "CustomGameInstanceBase.h"
|
#include "CustomGameInstance.h"
|
||||||
#include "Interactable/Interactable.h"
|
#include "Interactable/Interactable.h"
|
||||||
#include "Interactable/Modificators/InteractableModificator.h"
|
#include "Interactable/Modificators/InteractableModificator.h"
|
||||||
#include "Interactable/Modificators/InventoryInteractableModificator.h"
|
#include "Interactable/Modificators/InventoryInteractableModificator.h"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
// Oleg Petruny proprietary.
|
// Oleg Petruny proprietary.
|
||||||
|
|
||||||
|
|
||||||
#include "WorldDilationResponsiveUserWidget.h"
|
#include "WorldDilationResponsiveUserWidget.h"
|
||||||
|
|
||||||
#include "Animation/UMGSequencePlayer.h"
|
#include "Animation/UMGSequencePlayer.h"
|
||||||
|
1
VoiceGenerator/.gitattributes
vendored
Normal file
1
VoiceGenerator/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
voices/** filter=lfs diff=lfs merge=lfs -text
|
7
VoiceGenerator/.gitignore
vendored
Normal file
7
VoiceGenerator/.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
|
!.gitattributes
|
||||||
|
!GenerateDialogue.py
|
||||||
|
!install.ps1
|
||||||
|
!voices/
|
||||||
|
!voices/**
|
12
VoiceGenerator/GenerateDialogue.py
Normal file
12
VoiceGenerator/GenerateDialogue.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import torch
|
||||||
|
from TTS.api import TTS
|
||||||
|
|
||||||
|
# Get device
|
||||||
|
device = "cuda" if torch.cuda.is_available() else "cpu"
|
||||||
|
tts = TTS("tts_models/multilingual/multi-dataset/bark").to(device)
|
||||||
|
|
||||||
|
tts.tts_to_file(text="Greetings Martin. This is a synthesized speech for future dialogues. \
|
||||||
|
As you can see [cough] I mean hear... Yes, hear with your own ears, the speech trained from 2min audio is indeed impressive.",
|
||||||
|
voice_dir=".\\voices\\",
|
||||||
|
speaker="Test",
|
||||||
|
file_path=".\\output\\Test.wav")
|
111
VoiceGenerator/Install.ps1
Normal file
111
VoiceGenerator/Install.ps1
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
$pythonVersion = "3.11.9"
|
||||||
|
$pythonVersionShort = "3.11"
|
||||||
|
$pythonInstallerUrl = "https://www.python.org/ftp/python/${pythonVersion}/python-${pythonVersion}-amd64.exe"
|
||||||
|
$pythonInstallerPath = "$env:TEMP\python-${pythonVersion}.exe"
|
||||||
|
$pyActivate = Join-Path . "Scripts\Activate.ps1"
|
||||||
|
|
||||||
|
$espeakngVersion = "1.51"
|
||||||
|
$espeakngInstallerUrl = "https://github.com/espeak-ng/espeak-ng/releases/download/${espeakngVersion}/espeak-ng-X64.msi"
|
||||||
|
$espeakngInstallerPath = "$env:TEMP\espeak-ng-${espeakngVersion}.msi"
|
||||||
|
|
||||||
|
$msBuildToolsVersion = "17"
|
||||||
|
$msBuildToolsInstallerUrl = "https://aka.ms/vs/${msBuildToolsVersion}/release/vs_BuildTools.exe"
|
||||||
|
$msBuildToolsInstallerPath = "$env:TEMP\vs_BuildTools${msBuildToolsVersion}.exe"
|
||||||
|
|
||||||
|
$cudaToolkitVersion = "12.4.1_551.78"
|
||||||
|
$cudaToolkitInstallerUrl = "https://developer.download.nvidia.com/compute/cuda/12.4.1/local_installers/cuda_${cudaToolkitVersion}_windows.exe"
|
||||||
|
$cudaToolkitInstallerPath = "$env:TEMP\cudaToolkit_${cudaToolkitVersion}.exe"
|
||||||
|
|
||||||
|
$pytorchVersion = "CUDA 12.4"
|
||||||
|
$pytorchInstallCommand = "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
|
||||||
|
|
||||||
|
$coquiVersion = "0.25.1"
|
||||||
|
$coquiZipUrl = "https://github.com/idiap/coqui-ai-TTS/archive/refs/tags/v$coquiVersion.zip"
|
||||||
|
$coquiZipPath = "$env:TEMP\coqui_v$coquiVersion.zip"
|
||||||
|
|
||||||
|
function Is-PythonInstalled {
|
||||||
|
try {
|
||||||
|
$pythonVersionOutput = python --version 2>&1
|
||||||
|
if ($pythonVersionOutput -match "Python ($pythonVersion)") {
|
||||||
|
Write-Output "Python $($matches[1]) is already installed."
|
||||||
|
return $true
|
||||||
|
} else {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-Python {
|
||||||
|
Write-Output "Installing Python $pythonVersion..."
|
||||||
|
Invoke-WebRequest -Uri $pythonInstallerUrl -OutFile $pythonInstallerPath
|
||||||
|
Start-Process -FilePath $pythonInstallerPath -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1" -Wait
|
||||||
|
Remove-Item $pythonInstallerPath -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
function Setup-Python-Environment {
|
||||||
|
py -$pythonVersionShort -m venv .
|
||||||
|
& $pyActivate
|
||||||
|
python -m pip install --upgrade pip setuptools wheel
|
||||||
|
deactivate
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-Espeakng {
|
||||||
|
Write-Output "Installing eSpeak-ng $espeakngVersion..."
|
||||||
|
Invoke-WebRequest -Uri $espeakngInstallerUrl -OutFile $espeakngInstallerPath
|
||||||
|
Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$espeakngInstallerPath`" /passive" -Wait
|
||||||
|
Remove-Item $espeakngInstallerPath -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-MsBuildTools {
|
||||||
|
Write-Output "Installing MS Build Tools $msBuildToolsVersion..."
|
||||||
|
Invoke-WebRequest -Uri $msBuildToolsInstallerUrl -OutFile $msBuildToolsInstallerPath
|
||||||
|
Start-Process -FilePath $msBuildToolsInstallerPath -ArgumentList `
|
||||||
|
"--passive --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended" -Wait
|
||||||
|
Remove-Item $msBuildToolsInstallerPath -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-CUDA {
|
||||||
|
Write-Output "Installing CUDA Toolkit $cudaToolkitVersion..."
|
||||||
|
Invoke-WebRequest -Uri $cudaToolkitInstallerUrl -OutFile $cudaToolkitInstallerPath
|
||||||
|
Start-Process -FilePath $cudaToolkitInstallerPath -ArgumentList "-s -n" -Wait
|
||||||
|
Remove-Item $cudaToolkitInstallerPath -Force
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-PyTorch {
|
||||||
|
Write-Output "Installing PyTorch $pytorchVersion..."
|
||||||
|
& $pyActivate
|
||||||
|
Invoke-Expression "$pytorchInstallCommand --quiet"
|
||||||
|
deactivate
|
||||||
|
}
|
||||||
|
|
||||||
|
function Install-Coqui {
|
||||||
|
Write-Output "Installing Coqui $coquiVersion..."
|
||||||
|
Invoke-WebRequest -Uri $coquiZipUrl -OutFile $coquiZipPath
|
||||||
|
Expand-Archive -Path $coquiZipPath -DestinationPath . -Force
|
||||||
|
Remove-Item $coquiZipPath -Force
|
||||||
|
|
||||||
|
& $pyActivate
|
||||||
|
cd coqui-ai-TTS-$coquiVersion
|
||||||
|
pip install -e . --quiet
|
||||||
|
deactivate
|
||||||
|
cd ..
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Write-Output "Starting voice environment installation."
|
||||||
|
Set-ExecutionPolicy Unrestricted
|
||||||
|
if (-not (Is-PythonInstalled)) {
|
||||||
|
Install-Python
|
||||||
|
}
|
||||||
|
Setup-Python-Environment
|
||||||
|
Install-Espeakng
|
||||||
|
Install-MsBuildTools
|
||||||
|
Install-CUDA
|
||||||
|
Install-PyTorch
|
||||||
|
Install-Coqui
|
||||||
|
mkdir output
|
||||||
|
Write-Output "Setup finished. Please restart your machine before first startup."
|
||||||
|
Write-Output "To generate dialogue type in PS terminal in VoiceGenerator directory:`n 1] .\Scripts\Activate.ps1`n 2] py GenerateDialogue.py."
|
BIN
VoiceGenerator/voices/Test/Test.npz
(Stored with Git LFS)
Normal file
BIN
VoiceGenerator/voices/Test/Test.npz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
VoiceGenerator/voices/Test/Test.wav
(Stored with Git LFS)
Normal file
BIN
VoiceGenerator/voices/Test/Test.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user