diff --git a/UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset b/UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset index a739c60..ff43b04 100644 --- a/UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset +++ b/UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53714df617d1ecb0b9257403206fc18aafcd3b961d5c17af8386c16b790a32e5 -size 430359 +oid sha256:edce730484d91942f257ae29265f7a5fc69f2ff5c0f0a40d9c6fec1ae2437658 +size 439607 diff --git a/UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset b/UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset index 0e7c00f..1c9ec45 100644 --- a/UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset +++ b/UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aaf3b39c39e428ded34ce2efac079e055fdf105a00a8a5e8a583a607f4eaadc9 -size 1760 +oid sha256:7307aa0e167c8675ff50adae812d1b3acec7323887089d4e3056e70b97a4aab4 +size 1956 diff --git a/UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset b/UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset index a7a917f..7f34987 100644 --- a/UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset +++ b/UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9313d9630c641cbc49cb64f35aa1d0618e5275cd4f67cc19a1974ec165891475 -size 12332 +oid sha256:edb11121467c4cdfcdcb1c91fe1c1acd50769c28a3ea7185ce66b0821435f863 +size 12644 diff --git a/UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap b/UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap index bed5edb..3201971 100644 --- a/UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap +++ b/UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01f4b4c10dc7d86c3a2baf8db940665f9467d6eb0b89c9c99ad66f80e58619c0 -size 43685628 +oid sha256:ab19e2efd469fc9ba1ce0d9285fc6bc84fdf2ce3d6d04f314428339b31251707 +size 43693759 diff --git a/UnrealProject/Lost_Edge/Content/MaterialsLibrary/M_InvisibleBarrier.uasset b/UnrealProject/Lost_Edge/Content/MaterialsLibrary/M_InvisibleBarrier.uasset new file mode 100644 index 0000000..9b65d5f --- /dev/null +++ b/UnrealProject/Lost_Edge/Content/MaterialsLibrary/M_InvisibleBarrier.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20d10d872664511609544d040f0c7d294fe2b4980bd379a8379043336c6ae7d +size 24594 diff --git a/UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset b/UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset index ecaeb54..d6cc9f0 100644 --- a/UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset +++ b/UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0d1ab4322892e42ca4e2998d6887415a81d6ed99ad7a65ef4611e75a57a72001 -size 132734 +oid sha256:3b32af64f58e111f0510ad254359fabc311a3b658325d9a67e5681fd08ce757f +size 130008 diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.cpp index b4a9ca4..ee18efe 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.cpp @@ -19,6 +19,15 @@ bool UCommonFunctions::IsNonGameObject(UObject* object) return false; } +bool UCommonFunctions::InEditor() +{ +#if WITH_EDITOR + return true; +#else + return false; +#endif +} + FText UCommonFunctions::GetKeyDisplayName(FKey key) { if(key == EKeys::MouseWheelAxis) @@ -186,6 +195,11 @@ bool UCommonFunctions::ColorEquals(const FColor a, const FColor b) return a == b; } +bool UCommonFunctions::FloatIsZero(const float a) +{ + return a > -UE_KINDA_SMALL_NUMBER && a < UE_KINDA_SMALL_NUMBER; +} + uint8& UCommonFunctions::ByteIncerement(uint8& var) { return ++var; diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.h b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.h index 4dce753..01cc6a5 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.h +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CommonFunctions.h @@ -40,6 +40,9 @@ public: /** Returns true if the object is UE class template (used for copy/archetype/meta system but not on the level) */ UFUNCTION(BlueprintPure) static bool IsNonGameObject(class UObject* object); + /** Returns true if the game is in the editor */ + UFUNCTION(BlueprintPure) + static bool InEditor(); /** "Overload" of the built-in keys translator (to not build own engine copy) */ UFUNCTION(BlueprintPure) @@ -97,6 +100,8 @@ public: UFUNCTION(BlueprintCallable, Category = "Byte|Operators", meta = (DisplayName = "Increment", CompactNodeTitle = "++")) static UPARAM(ref) uint8& ByteIncerement(UPARAM(ref) uint8& var); + UFUNCTION(BlueprintPure, Category = "Float|Operators", meta = (DisplayName = "IsZero", CompactNodeTitle = "== 0")) + static bool FloatIsZero(const float a); UFUNCTION(BlueprintPure, Category = String) diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CustomPlayerController.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CustomPlayerController.cpp index eb39127..0516539 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CustomPlayerController.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CustomPlayerController.cpp @@ -18,7 +18,7 @@ TSet> ACustomPlayerController::contextsBefo void ACustomPlayerController::AppendInputContext(TSoftObjectPtr context) { - if(!context.IsValid() || contexts.Contains(context) || contextsBeforeInit.Contains(context)) + if(context.IsNull() || contexts.Contains(context) || contextsBeforeInit.Contains(context)) return; if(!UCustomGameInstance::Get()) //game settings not initialized yet diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.cpp index 469ce13..effbed2 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.cpp @@ -67,14 +67,17 @@ void UCutsceneManager::SkipSequence() sequencePlayer->GoToEndAndStop(); } -void UCutsceneManager::ClearQueue() +void UCutsceneManager::Clear() { FScopeLock lock1(&sequencesLock); FScopeLock lock2(&callbacksLock); + if(sequencePlayer) + sequencePlayer->OnStop.Clear(); if(!nextSequences.IsEmpty()) nextSequences.Empty(); if(!endCallbacks.IsEmpty()) endCallbacks.Empty(); + holding = false; } void UCutsceneManager::LockCallback(bool lock) diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.h b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.h index 6b9f4e8..aedd7fa 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.h +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/CutsceneManager.h @@ -23,7 +23,7 @@ public: void SkipSequence(); UFUNCTION(BlueprintCallable) - void ClearQueue(); + void Clear(); UFUNCTION(BlueprintCallable) void LockCallback(bool lock); diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/GraphicsSettingsHelper.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/GraphicsSettingsHelper.cpp index 6db30fa..082f62c 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/GraphicsSettingsHelper.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/GraphicsSettingsHelper.cpp @@ -303,8 +303,12 @@ TArray UGraphicsSettingsHelper::FilterResolutionsViaAspectRatio(const TArray result; for(FIntPoint i : resolutions) - if(i.X % aspectRatio.X == 0 && i.Y % aspectRatio.Y == 0) + { + float resRatio = static_cast(i.X) / i.Y; + float aspRatio = static_cast(aspectRatio.X) / aspectRatio.Y; + if(UCommonFunctions::FloatIsZero(resRatio - aspRatio)) result.Add(i); + } return MoveTemp(result); } @@ -395,10 +399,7 @@ TArray UGraphicsSettingsHelper::GetAvailableAspectRatiousOfMonitor(co TSet aspects; for(auto& i : resolutions) - { aspects.Add(GetAspectRatioFromResolution(i)); - UE_LOG(LogTemp, Log, TEXT("%dx%d = %dx%d"), i.X, i.Y, GetAspectRatioFromResolution(i).X, GetAspectRatioFromResolution(i).Y); - } aspects.Add(GetAspectRatioFromResolution(GetResolution(nullptr))); TArray result = aspects.Array(); diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/MainGameModeBase.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/MainGameModeBase.cpp index e736024..b54c1ae 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/MainGameModeBase.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/MainGameModeBase.cpp @@ -37,7 +37,7 @@ void AMainGameModeBase::StartPlay() void AMainGameModeBase::EndPlay(const EEndPlayReason::Type EndPlayReason) { cutsceneManager->LockCallback(true); - //cutsceneManager->ClearQueue(); // condition race segfault? + cutsceneManager->Clear(); leadLevel.Reset(); widgetsManager.Reset(); cutsceneManager.Reset(); diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.cpp new file mode 100644 index 0000000..5e36fbb --- /dev/null +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.cpp @@ -0,0 +1,8 @@ +#include "CutsceneSkipWidget.h" + +void UCutsceneSkipWidget::SetVisibility(ESlateVisibility InVisibility) +{ + if(InVisibility == ESlateVisibility::Hidden) + RunAnimation(EInputAnimatedWidgetAnimation::Reset); + Super::SetVisibility(InVisibility); +} diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.h b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.h index 5fe62cc..57725b5 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.h +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/CutsceneSkipWidget.h @@ -15,6 +15,8 @@ class UCutsceneSkipWidget : public UResolutionResponsiveWidget, public IInputAni GENERATED_BODY() public: + virtual void SetVisibility(ESlateVisibility InVisibility) override; + FSkipCutsceneDelegate skipCutsceneDelegate; UPROPERTY(meta = (BindWidget)) diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InputAnimatedWidgetInterface.h b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InputAnimatedWidgetInterface.h index f886a64..aace34d 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InputAnimatedWidgetInterface.h +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InputAnimatedWidgetInterface.h @@ -9,6 +9,7 @@ UENUM(BlueprintType) enum class EInputAnimatedWidgetAnimation : uint8 { + Reset, Click, Hold, Unhold, @@ -27,6 +28,8 @@ class IInputAnimatedWidgetInterface GENERATED_BODY() public: + UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget") + void OnReset(); UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget") void OnClick(); UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget") @@ -43,6 +46,9 @@ public: { switch(animation) { + case EInputAnimatedWidgetAnimation::Reset: + Execute_OnReset(this->_getUObject()); + break; case EInputAnimatedWidgetAnimation::Click: Execute_OnClick(this->_getUObject()); break; diff --git a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InteractableHintWidgetManager.cpp b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InteractableHintWidgetManager.cpp index 56b8351..e807a83 100644 --- a/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InteractableHintWidgetManager.cpp +++ b/UnrealProject/Lost_Edge/Source/Lost_Edge/Private/Widgets/InteractableHintWidgetManager.cpp @@ -22,7 +22,7 @@ void UInteractableHintWidgetManager::Append(const UInteractableModificator* modi return; } - if(hintsMap.Contains(modificator) || !modificator->GetMappingContext().IsValid()) + if(hintsMap.Contains(modificator) || modificator->GetMappingContext().IsNull()) return; const auto& mappings = modificator->GetMappingContext().LoadSynchronous()->GetMappings();