bugfix2
This commit is contained in:
parent
14b4244237
commit
a7dcb72a2f
BIN
UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/Blueprints/Characters/BP_Player.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/Input/Actions/IA_OpenMenu.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/Input/IMC_Player.uasset
(Stored with Git LFS)
Binary file not shown.
BIN
UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/Levels/Level_2/L_Level2.umap
(Stored with Git LFS)
Binary file not shown.
BIN
UnrealProject/Lost_Edge/Content/MaterialsLibrary/M_InvisibleBarrier.uasset
(Stored with Git LFS)
Normal file
BIN
UnrealProject/Lost_Edge/Content/MaterialsLibrary/M_InvisibleBarrier.uasset
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset
(Stored with Git LFS)
BIN
UnrealProject/Lost_Edge/Content/UI/Blueprints/MainMenu/Pages/UI_MainMenu_Page_Home.uasset
(Stored with Git LFS)
Binary file not shown.
@ -19,6 +19,15 @@ bool UCommonFunctions::IsNonGameObject(UObject* object)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool UCommonFunctions::InEditor()
|
||||||
|
{
|
||||||
|
#if WITH_EDITOR
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
FText UCommonFunctions::GetKeyDisplayName(FKey key)
|
FText UCommonFunctions::GetKeyDisplayName(FKey key)
|
||||||
{
|
{
|
||||||
if(key == EKeys::MouseWheelAxis)
|
if(key == EKeys::MouseWheelAxis)
|
||||||
@ -186,6 +195,11 @@ bool UCommonFunctions::ColorEquals(const FColor a, const FColor b)
|
|||||||
return a == 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)
|
uint8& UCommonFunctions::ByteIncerement(uint8& var)
|
||||||
{
|
{
|
||||||
return ++var;
|
return ++var;
|
||||||
|
@ -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) */
|
/** Returns true if the object is UE class template (used for copy/archetype/meta system but not on the level) */
|
||||||
UFUNCTION(BlueprintPure)
|
UFUNCTION(BlueprintPure)
|
||||||
static bool IsNonGameObject(class UObject* object);
|
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) */
|
/** "Overload" of the built-in keys translator (to not build own engine copy) */
|
||||||
UFUNCTION(BlueprintPure)
|
UFUNCTION(BlueprintPure)
|
||||||
@ -97,6 +100,8 @@ public:
|
|||||||
UFUNCTION(BlueprintCallable, Category = "Byte|Operators", meta = (DisplayName = "Increment", CompactNodeTitle = "++"))
|
UFUNCTION(BlueprintCallable, Category = "Byte|Operators", meta = (DisplayName = "Increment", CompactNodeTitle = "++"))
|
||||||
static UPARAM(ref) uint8& ByteIncerement(UPARAM(ref) uint8& var);
|
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)
|
UFUNCTION(BlueprintPure, Category = String)
|
||||||
|
@ -18,7 +18,7 @@ TSet<TSoftObjectPtr<UInputMappingContext>> ACustomPlayerController::contextsBefo
|
|||||||
|
|
||||||
void ACustomPlayerController::AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context)
|
void ACustomPlayerController::AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context)
|
||||||
{
|
{
|
||||||
if(!context.IsValid() || contexts.Contains(context) || contextsBeforeInit.Contains(context))
|
if(context.IsNull() || contexts.Contains(context) || contextsBeforeInit.Contains(context))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(!UCustomGameInstance::Get()) //game settings not initialized yet
|
if(!UCustomGameInstance::Get()) //game settings not initialized yet
|
||||||
|
@ -67,14 +67,17 @@ void UCutsceneManager::SkipSequence()
|
|||||||
sequencePlayer->GoToEndAndStop();
|
sequencePlayer->GoToEndAndStop();
|
||||||
}
|
}
|
||||||
|
|
||||||
void UCutsceneManager::ClearQueue()
|
void UCutsceneManager::Clear()
|
||||||
{
|
{
|
||||||
FScopeLock lock1(&sequencesLock);
|
FScopeLock lock1(&sequencesLock);
|
||||||
FScopeLock lock2(&callbacksLock);
|
FScopeLock lock2(&callbacksLock);
|
||||||
|
if(sequencePlayer)
|
||||||
|
sequencePlayer->OnStop.Clear();
|
||||||
if(!nextSequences.IsEmpty())
|
if(!nextSequences.IsEmpty())
|
||||||
nextSequences.Empty();
|
nextSequences.Empty();
|
||||||
if(!endCallbacks.IsEmpty())
|
if(!endCallbacks.IsEmpty())
|
||||||
endCallbacks.Empty();
|
endCallbacks.Empty();
|
||||||
|
holding = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UCutsceneManager::LockCallback(bool lock)
|
void UCutsceneManager::LockCallback(bool lock)
|
||||||
|
@ -23,7 +23,7 @@ public:
|
|||||||
void SkipSequence();
|
void SkipSequence();
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void ClearQueue();
|
void Clear();
|
||||||
|
|
||||||
UFUNCTION(BlueprintCallable)
|
UFUNCTION(BlueprintCallable)
|
||||||
void LockCallback(bool lock);
|
void LockCallback(bool lock);
|
||||||
|
@ -303,8 +303,12 @@ TArray<FIntPoint> UGraphicsSettingsHelper::FilterResolutionsViaAspectRatio(const
|
|||||||
TArray<FIntPoint> result;
|
TArray<FIntPoint> result;
|
||||||
|
|
||||||
for(FIntPoint i : resolutions)
|
for(FIntPoint i : resolutions)
|
||||||
if(i.X % aspectRatio.X == 0 && i.Y % aspectRatio.Y == 0)
|
{
|
||||||
|
float resRatio = static_cast<float>(i.X) / i.Y;
|
||||||
|
float aspRatio = static_cast<float>(aspectRatio.X) / aspectRatio.Y;
|
||||||
|
if(UCommonFunctions::FloatIsZero(resRatio - aspRatio))
|
||||||
result.Add(i);
|
result.Add(i);
|
||||||
|
}
|
||||||
|
|
||||||
return MoveTemp(result);
|
return MoveTemp(result);
|
||||||
}
|
}
|
||||||
@ -395,10 +399,7 @@ TArray<FIntPoint> UGraphicsSettingsHelper::GetAvailableAspectRatiousOfMonitor(co
|
|||||||
|
|
||||||
TSet<FIntPoint> aspects;
|
TSet<FIntPoint> aspects;
|
||||||
for(auto& i : resolutions)
|
for(auto& i : resolutions)
|
||||||
{
|
|
||||||
aspects.Add(GetAspectRatioFromResolution(i));
|
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)));
|
aspects.Add(GetAspectRatioFromResolution(GetResolution(nullptr)));
|
||||||
|
|
||||||
TArray<FIntPoint> result = aspects.Array();
|
TArray<FIntPoint> result = aspects.Array();
|
||||||
|
@ -37,7 +37,7 @@ void AMainGameModeBase::StartPlay()
|
|||||||
void AMainGameModeBase::EndPlay(const EEndPlayReason::Type EndPlayReason)
|
void AMainGameModeBase::EndPlay(const EEndPlayReason::Type EndPlayReason)
|
||||||
{
|
{
|
||||||
cutsceneManager->LockCallback(true);
|
cutsceneManager->LockCallback(true);
|
||||||
//cutsceneManager->ClearQueue(); // condition race segfault?
|
cutsceneManager->Clear();
|
||||||
leadLevel.Reset();
|
leadLevel.Reset();
|
||||||
widgetsManager.Reset();
|
widgetsManager.Reset();
|
||||||
cutsceneManager.Reset();
|
cutsceneManager.Reset();
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
#include "CutsceneSkipWidget.h"
|
||||||
|
|
||||||
|
void UCutsceneSkipWidget::SetVisibility(ESlateVisibility InVisibility)
|
||||||
|
{
|
||||||
|
if(InVisibility == ESlateVisibility::Hidden)
|
||||||
|
RunAnimation(EInputAnimatedWidgetAnimation::Reset);
|
||||||
|
Super::SetVisibility(InVisibility);
|
||||||
|
}
|
@ -15,6 +15,8 @@ class UCutsceneSkipWidget : public UResolutionResponsiveWidget, public IInputAni
|
|||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
virtual void SetVisibility(ESlateVisibility InVisibility) override;
|
||||||
|
|
||||||
FSkipCutsceneDelegate skipCutsceneDelegate;
|
FSkipCutsceneDelegate skipCutsceneDelegate;
|
||||||
|
|
||||||
UPROPERTY(meta = (BindWidget))
|
UPROPERTY(meta = (BindWidget))
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
UENUM(BlueprintType)
|
UENUM(BlueprintType)
|
||||||
enum class EInputAnimatedWidgetAnimation : uint8
|
enum class EInputAnimatedWidgetAnimation : uint8
|
||||||
{
|
{
|
||||||
|
Reset,
|
||||||
Click,
|
Click,
|
||||||
Hold,
|
Hold,
|
||||||
Unhold,
|
Unhold,
|
||||||
@ -27,6 +28,8 @@ class IInputAnimatedWidgetInterface
|
|||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget")
|
||||||
|
void OnReset();
|
||||||
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget")
|
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget")
|
||||||
void OnClick();
|
void OnClick();
|
||||||
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget")
|
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable, Category = "InputAnimatedWidget")
|
||||||
@ -43,6 +46,9 @@ public:
|
|||||||
{
|
{
|
||||||
switch(animation)
|
switch(animation)
|
||||||
{
|
{
|
||||||
|
case EInputAnimatedWidgetAnimation::Reset:
|
||||||
|
Execute_OnReset(this->_getUObject());
|
||||||
|
break;
|
||||||
case EInputAnimatedWidgetAnimation::Click:
|
case EInputAnimatedWidgetAnimation::Click:
|
||||||
Execute_OnClick(this->_getUObject());
|
Execute_OnClick(this->_getUObject());
|
||||||
break;
|
break;
|
||||||
|
@ -22,7 +22,7 @@ void UInteractableHintWidgetManager::Append(const UInteractableModificator* modi
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(hintsMap.Contains(modificator) || !modificator->GetMappingContext().IsValid())
|
if(hintsMap.Contains(modificator) || modificator->GetMappingContext().IsNull())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const auto& mappings = modificator->GetMappingContext().LoadSynchronous()->GetMappings();
|
const auto& mappings = modificator->GetMappingContext().LoadSynchronous()->GetMappings();
|
||||||
|
Loading…
Reference in New Issue
Block a user