Compare commits

...

7 Commits

Author SHA1 Message Date
5a30872e5b graphics settings code 2025-01-09 18:17:39 +01:00
c0db86099d graphic settings wip 2 2025-01-09 13:04:51 +01:00
593bba370c graphic settings wip 2025-01-06 18:50:12 +01:00
6c1f21d501 Main menu animations 2025-01-06 18:50:11 +01:00
3d6aa526e7 Main, Options, Audio, Game menu and settings 2025-01-06 18:50:10 +01:00
cb61032e00 Fix Main menu 2025-01-06 18:50:09 +01:00
90ed878b6d shorten widgets names 2025-01-06 18:49:29 +01:00
85 changed files with 1112 additions and 200 deletions

View File

@ -3,6 +3,11 @@ bUseMotionBlur=False
bShowFps=False bShowFps=False
bMouseInverted=False bMouseInverted=False
fMouseSensetivity=1.000000 fMouseSensetivity=1.000000
fMasterVolume=0.500000
fMusicVolume=1.000000
fEffectsVolume=1.000000
fVoicesVolume=1.000000
fMenuVolume=1.000000
bUseVSync=False bUseVSync=False
bUseDynamicResolution=False bUseDynamicResolution=False
ResolutionSizeX=1920 ResolutionSizeX=1920

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -2,14 +2,16 @@
using UnrealBuildTool; using UnrealBuildTool;
public class Lost_Edge : ModuleRules { public class Lost_Edge : ModuleRules
public Lost_Edge(ReadOnlyTargetRules Target) : base(Target) { {
public Lost_Edge(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "OpenCV" }); PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "OpenCV" });
PrivateDependencyModuleNames.AddRange(new string[] { "EnhancedInput", "UMG", "RHI", "RenderCore", "Lost_EdgeShaders", "PakFile", //"TextureCompressor", PrivateDependencyModuleNames.AddRange(new string[] { "EnhancedInput", "UMG", "RHI", "RenderCore", "Lost_EdgeShaders", "PakFile", //"TextureCompressor",
"LevelSequence", "MovieScene", "HTTP", "Json" }); // "Slate", "SlateCore" "LevelSequence", "MovieScene", "HTTP", "Json", "ApplicationCore" }); // "Slate", "SlateCore"
// UE_LOG(LogTemp, Log, TEXT("capture: %s"), (capture ? TEXT("true") : TEXT("false"))); // UE_LOG(LogTemp, Log, TEXT("capture: %s"), (capture ? TEXT("true") : TEXT("false")));
// GEngine->AddOnScreenDebugMessage(-1, 5.0f, FColor::Yellow, TEXT("1")); // GEngine->AddOnScreenDebugMessage(-1, 5.0f, FColor::Yellow, TEXT("1"));

View File

@ -27,14 +27,6 @@ void ACameraModeBase::BeginPlay()
Super::BeginPlay(); Super::BeginPlay();
auto world = GetWorld(); auto world = GetWorld();
if(auto gameSettings = UCustomGameSettings::Get())
{
if(auto camera = FindComponentByClass<UCameraComponent>())
{
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
}
}
} }
void ACameraModeBase::Tick(float DeltaTime) void ACameraModeBase::Tick(float DeltaTime)

View File

@ -29,6 +29,16 @@ FText UCommonFunctions::GetKeyDisplayName(FKey key)
return key.GetDisplayName(false); return key.GetDisplayName(false);
} }
int32 UCommonFunctions::StringIndexInTextArray(const TArray<FText>& array, const FString& value)
{
FString v = value.ToLower();
for(int32 i = 0; i < array.Num(); ++i)
if(FTextInspector::GetSourceString(array[i])->ToLower().Equals(v))
return i;
return -1;
}
void UCommonFunctions::DestroyActorRecursively(AActor* actor) void UCommonFunctions::DestroyActorRecursively(AActor* actor)
{ {
TArray<AActor*> childs; TArray<AActor*> childs;
@ -95,6 +105,38 @@ FWorldDilationChangedDelegate& UCommonFunctions::GetWorldDilationChangedDelegate
return SlowMotion::worldDilationChangedDelegate; return SlowMotion::worldDilationChangedDelegate;
} }
FString UCommonFunctions::IntPointToString(const FIntPoint& in)
{
FString result = FString::Printf(TEXT("%sx%s"), *FString::FromInt(in.X), *FString::FromInt(in.Y));
return MoveTemp(result);
}
FIntPoint UCommonFunctions::StringToIntPoint(const FString& in)
{
FIntPoint result;
const FRegexPattern rgxP(FRegexPattern(TEXT("[0-9]+")));
FRegexMatcher rgx = FRegexMatcher(rgxP, in);
if(rgx.FindNext())
result.X = FCString::Atoi(*in.Mid(rgx.GetMatchBeginning(), rgx.GetMatchEnding() - rgx.GetMatchBeginning()));
if(rgx.FindNext())
result.Y = FCString::Atoi(*in.Mid(rgx.GetMatchBeginning(), rgx.GetMatchEnding() - rgx.GetMatchBeginning()));
return MoveTemp(result);
}
int32 UCommonFunctions::GreatestCommonDivisor(int32 a, int32 b)
{
int32 temp;
while(b != 0)
{
temp = b;
b = a % b;
a = temp;
}
return a;
}
void UCommonFunctions::SlowMotionTick() void UCommonFunctions::SlowMotionTick()
{ {
const UWorld* world = UCustomGameInstance::Get()->GetWorld(); const UWorld* world = UCustomGameInstance::Get()->GetWorld();

View File

@ -25,6 +25,9 @@ public:
UFUNCTION(BlueprintPure) UFUNCTION(BlueprintPure)
static FText GetKeyDisplayName(struct FKey key); static FText GetKeyDisplayName(struct FKey key);
UFUNCTION(BlueprintPure)
static int32 StringIndexInTextArray(const TArray<FText>& array, const FString& value);
/** Recursively destroy actor and all its childs (the default Destroy doesn't have consistent behavior) */ /** Recursively destroy actor and all its childs (the default Destroy doesn't have consistent behavior) */
UFUNCTION(BlueprintCallable, Category = Actor) UFUNCTION(BlueprintCallable, Category = Actor)
static void DestroyActorRecursively(class AActor* actor); static void DestroyActorRecursively(class AActor* actor);
@ -41,6 +44,18 @@ public:
UFUNCTION(BlueprintPure, Category = TypeCasts)
static FString IntPointToString(const FIntPoint& in);
UFUNCTION(BlueprintPure, Category = TypeCasts)
static FIntPoint StringToIntPoint(const FString& in);
UFUNCTION(BlueprintPure, Category = Math)
static int32 GreatestCommonDivisor(int32 a, int32 b);
UFUNCTION(BlueprintPure) UFUNCTION(BlueprintPure)
static TArray<int32> GetRandomIntArray(int32 size = 16, int32 min = 0, int32 max = 16); static TArray<int32> GetRandomIntArray(int32 size = 16, int32 min = 0, int32 max = 16);

View File

@ -0,0 +1,10 @@
// Oleg Petruny proprietary.
#pragma once
#include "CoreMinimal.h"
namespace CommonTexts
{
const FText Default = NSLOCTEXT("CommonTexts", "Default", "Default");
}

View File

@ -6,10 +6,17 @@
#include "Kismet/KismetSystemLibrary.h" #include "Kismet/KismetSystemLibrary.h"
#include "ContentLoader.h" #include "ContentLoader.h"
#include "CustomGameSettings.h"
#include "Levels/LevelBase.h" #include "Levels/LevelBase.h"
#include "PlayerBase.h" #include "PlayerBase.h"
#include "SaveData.h" #include "SaveData.h"
namespace
{
constexpr auto saveName = TEXT("Save");
constexpr int32 saveIndex = 0;
}
UCustomGameInstance* UCustomGameInstance::instance = nullptr; UCustomGameInstance* UCustomGameInstance::instance = nullptr;
void UCustomGameInstance::Init() void UCustomGameInstance::Init()
@ -17,8 +24,28 @@ void UCustomGameInstance::Init()
UGameInstance::Init(); UGameInstance::Init();
instance = this; instance = this;
contentLoader = NewObject<UContentLoader>(this); contentLoader = NewObject<UContentLoader>(this);
saveData = Cast<USaveData>(UGameplayStatics::CreateSaveGameObject(USaveData::StaticClass())); for(auto& _class : globalInstancesClasses)
{
UObject* gi = NewObject<UObject>(_class);
gi->AddToRoot();
globalInstances.Add(_class.Get(), gi);
}
globalInstancesClasses.Empty();
if(auto save = UGameplayStatics::LoadGameFromSlot(saveName, saveIndex))
saveData = Cast<USaveData>(save);
else
saveData = Cast<USaveData>(UGameplayStatics::CreateSaveGameObject(USaveData::StaticClass()));
}
void UCustomGameInstance::Shutdown()
{
if(auto settings = UCustomGameSettings::Get())
settings->SaveSettings();
Super::Shutdown();
} }
UCustomGameInstance* UCustomGameInstance::Get() UCustomGameInstance* UCustomGameInstance::Get()
@ -34,6 +61,22 @@ UContentLoader* UCustomGameInstance::GetContentLoader()
return nullptr; return nullptr;
} }
UObject* UCustomGameInstance::GetGlobalInstance(UClass* _class)
{
if(auto GI = Get())
return *(GI->globalInstances.Find(_class));
return nullptr;
}
bool UCustomGameInstance::IsGameSaved()
{
if(auto GI = Get())
return GI->saveData != nullptr;
return false;
}
void UCustomGameInstance::SaveGame(FName checkpointName) void UCustomGameInstance::SaveGame(FName checkpointName)
{ {
auto levelScript = ALevelBase::Get(); auto levelScript = ALevelBase::Get();
@ -56,12 +99,12 @@ void UCustomGameInstance::SaveGame(FName checkpointName)
else else
saveData->playerRightPocketItem = FName(TEXT("")); saveData->playerRightPocketItem = FName(TEXT(""));
UGameplayStatics::SaveGameToSlot(saveData, TEXT("Save"), 0); UGameplayStatics::SaveGameToSlot(saveData, saveName, saveIndex);
} }
void UCustomGameInstance::LoadGame() void UCustomGameInstance::LoadGame()
{ {
saveData = Cast<USaveData>(UGameplayStatics::LoadGameFromSlot(TEXT("Save"), 0)); saveData = Cast<USaveData>(UGameplayStatics::LoadGameFromSlot(saveName, saveIndex));
if(!saveData) if(!saveData)
return; return;

View File

@ -20,17 +20,24 @@ class UCustomGameInstance : public UGameInstance
public: public:
/** Instantiates content loader, dummy save data and applies settings */ /** Instantiates content loader, dummy save data and applies settings */
virtual void Init() override; virtual void Init() override;
/** Saves settings */
virtual void Shutdown() override;
UFUNCTION(BlueprintPure, meta = (DisplayName = "Get Custom Game Instance")) UFUNCTION(BlueprintPure, meta = (DisplayName = "Get Custom Game Instance"))
static UCustomGameInstance* Get(); static UCustomGameInstance* Get();
UFUNCTION(BlueprintPure) UFUNCTION(BlueprintPure)
static class UContentLoader* GetContentLoader(); static class UContentLoader* GetContentLoader();
UFUNCTION(BlueprintPure)
static UObject* GetGlobalInstance(UClass* _class);
/** Return true is save data are present and valid */
UFUNCTION(BlueprintPure)
static bool IsGameSaved();
UFUNCTION(BlueprintCallable, Category = Save) UFUNCTION(BlueprintCallable, Category = Save)
void SaveGame(FName checkpointName); void SaveGame(FName checkpointName);
UFUNCTION(BlueprintCallable, Category = Save) UFUNCTION(BlueprintCallable, Category = Save)
void LoadGame(); void LoadGame();
UFUNCTION(BlueprintCallable) UFUNCTION(BlueprintCallable)
void ExitGame(); void ExitGame();
@ -46,4 +53,7 @@ protected:
UPROPERTY() UPROPERTY()
class UContentLoader* contentLoader; class UContentLoader* contentLoader;
UPROPERTY(EditDefaultsOnly)
TSet<TSubclassOf<UObject>> globalInstancesClasses;
TMap<UClass*, UObject*> globalInstances;
}; };

View File

@ -4,12 +4,41 @@
#include "Kismet/GameplayStatics.h" #include "Kismet/GameplayStatics.h"
#include "GraphicsSettingsHelper.h"
namespace
{
/** Graphics */
constexpr bool bDefaultShowFps = false;
/** Audio */
constexpr float fDefaultMasterVolume = 0.4f;
constexpr float fDefaultMusicVolume = 1.0f;
constexpr float fDefaultEffectsVolume = 1.0f;
constexpr float fDefaultVoicesVolume = 1.0f;
constexpr float fDefaultMenuVolume = 1.0f;
/** Game */
constexpr float fDefaultMouseSensetivity = 0.5f;
constexpr bool bDefaultMouseInverted = false;
}
UCustomGameSettings::UCustomGameSettings(const FObjectInitializer& ObjectInitializer) :Super(ObjectInitializer) UCustomGameSettings::UCustomGameSettings(const FObjectInitializer& ObjectInitializer) :Super(ObjectInitializer)
{ {
bUseMotionBlur = false; /** Graphics */
bShowFps = false; bShowFps = GetDefaultShowFps();
bMouseInverted = false; UGraphicsSettingsHelper::SetDefaults(this);
fMouseSensetivity = 1.0f;
/** Audio */
fMasterVolume = GetDefaultMasterVolume();
fMusicVolume = GetDefaultMusicVolume();
fEffectsVolume = GetDefaultEffectsVolume();
fVoicesVolume = GetDefaultVoicesVolume();
fMenuVolume = GetDefaultMenuVolume();
/** Game */
fMouseSensetivity = GetDefaultMouseSensetivity();
bMouseInverted = GetDefaultMouseInverted();
} }
UCustomGameSettings* UCustomGameSettings::Get() UCustomGameSettings* UCustomGameSettings::Get()
@ -17,12 +46,92 @@ UCustomGameSettings* UCustomGameSettings::Get()
return Cast<UCustomGameSettings>(UGameUserSettings::GetGameUserSettings()); return Cast<UCustomGameSettings>(UGameUserSettings::GetGameUserSettings());
} }
LOST_EDGE_API bool UCustomGameSettings::GetDefaultShowFps() const
{
return bDefaultShowFps;
}
/** Audio */
inline float UCustomGameSettings::GetDefaultMasterVolume() const
{
return fDefaultMasterVolume;
}
inline float UCustomGameSettings::GetDefaultMusicVolume() const
{
return fDefaultMusicVolume;
}
inline float UCustomGameSettings::GetDefaultEffectsVolume() const
{
return fDefaultEffectsVolume;
}
inline float UCustomGameSettings::GetDefaultVoicesVolume() const
{
return fDefaultVoicesVolume;
}
inline float UCustomGameSettings::GetDefaultMenuVolume() const
{
return fDefaultMenuVolume;
}
float UCustomGameSettings::GetMasterVolume() const
{
return fMasterVolume;
}
float UCustomGameSettings::GetMusicVolume() const
{
return fMusicVolume;
}
float UCustomGameSettings::GetEffectsVolume() const
{
return fEffectsVolume;
}
float UCustomGameSettings::GetVoicesVolume() const
{
return fVoicesVolume;
}
float UCustomGameSettings::GetMenuVolume() const
{
return fMenuVolume;
}
void UCustomGameSettings::SetMasterVolume(float value)
{
fMasterVolume = FMath::Clamp(value, 0.0f, 1.0f);
}
void UCustomGameSettings::SetMusicVolume(float value)
{
fMusicVolume = FMath::Clamp(value, 0.0f, 1.0f);
}
void UCustomGameSettings::SetEffectsVolume(float value)
{
fEffectsVolume = FMath::Clamp(value, 0.0f, 1.0f);
}
void UCustomGameSettings::SetVoicesVolume(float value)
{
fVoicesVolume = FMath::Clamp(value, 0.0f, 1.0f);
}
void UCustomGameSettings::SetMenuVolume(float value)
{
fMenuVolume = FMath::Clamp(value, 0.0f, 1.0f);
}
/** Game */
inline float UCustomGameSettings::GetDefaultMouseSensetivity() const
{
return fDefaultMouseSensetivity;
}
float UCustomGameSettings::GetMouseSensetivity() const
{
return fMouseSensetivity;
}
void UCustomGameSettings::SetMouseSensetivity(float value) void UCustomGameSettings::SetMouseSensetivity(float value)
{ {
fMouseSensetivity = FMath::Clamp(value, 0.1f, 2.0f); fMouseSensetivity = FMath::Clamp(value, 0.1f, 2.0f);
} }
float UCustomGameSettings::GetMouseSensetivity() const inline bool UCustomGameSettings::GetDefaultMouseInverted() const
{ {
return fMouseSensetivity; return bDefaultMouseInverted;
} }

View File

@ -10,40 +10,101 @@
* Manages custom game settings. * Manages custom game settings.
* Mouse sensetivity and inversion, motion blur usage, fps show. * Mouse sensetivity and inversion, motion blur usage, fps show.
*/ */
UCLASS(Config = Game, defaultconfig) UCLASS(defaultconfig)
class UCustomGameSettings : public UGameUserSettings class UCustomGameSettings : public UGameUserSettings
{ {
GENERATED_UCLASS_BODY() GENERATED_BODY()
friend class UGraphicsSettingsHelper;
public: public:
// Is auto defined by UE but implementation is in cpp // Is auto defined by UE but implementation is in cpp
//UCustomGameSettings(const FObjectInitializer& ObjectInitializer); UCustomGameSettings(const FObjectInitializer& ObjectInitializer);
UFUNCTION(BlueprintPure, Category = Settings, meta = (DisplayName = "Get Custom Game Settings")) UFUNCTION(BlueprintPure, Category = "Settings", meta = (DisplayName = "Get Custom Game Settings"))
static UCustomGameSettings* Get(); static UCustomGameSettings* Get();
/** Graphics */
UFUNCTION(BlueprintPure, Category = "Settings|Graphics")
LOST_EDGE_API inline bool GetDefaultShowFps() const;
UPROPERTY(Config, BlueprintReadWrite, Category = "Settings|Graphics")
bool bShowFps;
/**
* Audio
* All values are clamped in [0.0 - 1.0]
*/
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
LOST_EDGE_API inline float GetDefaultMasterVolume() const; // UFUNCTION doesn't support constexpr functions
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
LOST_EDGE_API inline float GetDefaultMusicVolume() const; // UFUNCTION doesn't support constexpr functions
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
LOST_EDGE_API inline float GetDefaultEffectsVolume() const; // UFUNCTION doesn't support constexpr functions
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
LOST_EDGE_API inline float GetDefaultVoicesVolume() const; // UFUNCTION doesn't support constexpr functions
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
LOST_EDGE_API inline float GetDefaultMenuVolume() const; // UFUNCTION doesn't support constexpr functions
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
float GetMasterVolume() const;
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
float GetMusicVolume() const;
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
float GetEffectsVolume() const;
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
float GetVoicesVolume() const;
UFUNCTION(BlueprintPure, Category = "Settings|Audio")
float GetMenuVolume() const;
UFUNCTION(BlueprintCallable, Category = "Settings|Audio")
void SetMasterVolume(float value);
UFUNCTION(BlueprintCallable, Category = "Settings|Audio")
void SetMusicVolume(float value);
UFUNCTION(BlueprintCallable, Category = "Settings|Audio")
void SetEffectsVolume(float value);
UFUNCTION(BlueprintCallable, Category = "Settings|Audio")
void SetVoicesVolume(float value);
UFUNCTION(BlueprintCallable, Category = "Settings|Audio")
void SetMenuVolume(float value);
/** Game */
UFUNCTION(BlueprintPure, Category = "Settings|Game")
LOST_EDGE_API inline float GetDefaultMouseSensetivity() const;
/** Returns mouse sensetivity multiplier in [0.1 - 2.0] */
UFUNCTION(BlueprintPure, Category = "Settings|Game")
float GetMouseSensetivity() const;
/** /**
* Sets mouse sensetivity multiplier * Sets mouse sensetivity multiplier
* @param value [0.1 - 2.0] * @param value [0.1 - 2.0]
*/ */
UFUNCTION(BlueprintCallable, Category = Settings) UFUNCTION(BlueprintCallable, Category = "Settings|Game")
void SetMouseSensetivity(float value); void SetMouseSensetivity(float value);
/** Returns mouse sensetivity multiplier in [0.1 - 2.0] */ UFUNCTION(BlueprintPure, Category = "Settings|Game")
UFUNCTION(BlueprintCallable, Category = Settings) LOST_EDGE_API inline bool GetDefaultMouseInverted() const;
float GetMouseSensetivity() const; UPROPERTY(Config, BlueprintReadWrite, Category = "Settings|Game")
UPROPERTY(Config, BlueprintReadWrite)
bool bUseMotionBlur;
UPROPERTY(Config, BlueprintReadWrite)
bool bShowFps;
UPROPERTY(Config, BlueprintReadWrite)
bool bMouseInverted; bool bMouseInverted;
protected: protected:
UPROPERTY(Config) UPROPERTY(Config)
float fMouseSensetivity; float fMouseSensetivity;
/** Audio */
UPROPERTY(Config)
float fMasterVolume;
UPROPERTY(Config)
float fMusicVolume;
UPROPERTY(Config)
float fEffectsVolume;
UPROPERTY(Config)
float fVoicesVolume;
UPROPERTY(Config)
float fMenuVolume;
}; };

View File

@ -33,6 +33,13 @@ void ACustomPlayerController::AppendInputContext(TSoftObjectPtr<class UInputMapp
subsystem->AddMappingContext(context.LoadSynchronous(), 0); subsystem->AddMappingContext(context.LoadSynchronous(), 0);
} }
void ACustomPlayerController::ApplyMouseSettings()
{
if(auto settings = UCustomGameSettings::Get())
for(auto& context : contexts)
ApplyMouseSettings(context, settings);
}
void ACustomPlayerController::BeginPlay() void ACustomPlayerController::BeginPlay()
{ {
Super::BeginPlay(); Super::BeginPlay();
@ -71,15 +78,19 @@ void ACustomPlayerController::EndPlay(const EEndPlayReason::Type EndPlayReason)
Super::EndPlay(EndPlayReason); Super::EndPlay(EndPlayReason);
} }
void ACustomPlayerController::ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context) void ACustomPlayerController::ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context, UCustomGameSettings* settings)
{ {
auto gameSettings = UCustomGameSettings::Get(); if(!settings)
if(!gameSettings) {
return; settings = UCustomGameSettings::Get();
if(!settings)
return;
}
if(!context.LoadSynchronous()) if(!context.LoadSynchronous())
return; return;
bool contextChanged = false;
for(auto& mapping : context.LoadSynchronous()->GetMappings()) for(auto& mapping : context.LoadSynchronous()->GetMappings())
{ {
if(mapping.Key != EKeys::Mouse2D) if(mapping.Key != EKeys::Mouse2D)
@ -87,20 +98,27 @@ void ACustomPlayerController::ApplyMouseSettings(TSoftObjectPtr<class UInputMapp
for(auto& modifier : mapping.Modifiers) for(auto& modifier : mapping.Modifiers)
{ {
if(gameSettings->bMouseInverted) if(auto negate_modifier = Cast<UInputModifierNegate>(modifier))
{ {
if(auto negate_modifier = Cast<UInputModifierNegate>(modifier)) negate_modifier->bY = !settings->bMouseInverted;
{ contextChanged = true;
negate_modifier->bY = !negate_modifier->bY; }
continue; else if(auto scalar_modifier = Cast<UInputModifierScalar>(modifier))
} {
scalar_modifier->Scalar = FVector{ settings->GetMouseSensetivity() };
contextChanged = true;
} }
if(auto scalar_modifier = Cast<UInputModifierScalar>(modifier))
scalar_modifier->Scalar = FVector{ gameSettings->GetMouseSensetivity() * 0.5 };
} }
} }
UEnhancedInputLibrary::RequestRebuildControlMappingsUsingContext(context.LoadSynchronous()); if(contextChanged)
{
if(subsystem)
{
FModifyContextOptions options;
subsystem->RequestRebuildControlMappings(options, EInputMappingRebuildType::RebuildWithFlush);
}
}
} }
void ACustomPlayerController::OnAnyKeyPressed(FKey key) void ACustomPlayerController::OnAnyKeyPressed(FKey key)

View File

@ -30,6 +30,10 @@ public:
UFUNCTION(BlueprintCallable) UFUNCTION(BlueprintCallable)
static void AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context); static void AppendInputContext(TSoftObjectPtr<class UInputMappingContext> context);
/** Applies mouse settings to all loaded contexts */
UFUNCTION(BlueprintCallable)
static void ApplyMouseSettings();
FPlayerAnyKeyPressedDelegate onAnyKeyPressed; FPlayerAnyKeyPressedDelegate onAnyKeyPressed;
FPlayerAnyKeyReleasedDelegate onAnyKeyReleased; FPlayerAnyKeyReleasedDelegate onAnyKeyReleased;
@ -38,7 +42,8 @@ protected:
virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override; virtual void EndPlay(const EEndPlayReason::Type EndPlayReason) override;
private: private:
static void ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context); /** Applies mouse settings to the specific context */
static void ApplyMouseSettings(TSoftObjectPtr<class UInputMappingContext>& context, class UCustomGameSettings* settings = nullptr);
void OnAnyKeyPressed(FKey key); void OnAnyKeyPressed(FKey key);
void OnAnyKeyReleased(FKey key); void OnAnyKeyReleased(FKey key);

View File

@ -0,0 +1,438 @@
// Oleg Petruny proprietary.
#include "GraphicsSettingsHelper.h"
#include "GenericPlatform/GenericApplication.h"
#include "CommonFunctions.h"
#include "CommonTexts.h"
#include "CustomGameSettings.h"
#include <optional>
namespace
{
const FIntPoint ipDefaultWindowPosition = { 0, 0 };
std::optional<FIntPoint> ipPreviousWindowPosition;
constexpr int32 iDefaultMonitorId = 0;
const FIntPoint ipDefaultResolution = { 1920, 1080 };
std::optional<FIntPoint> ipPreviousResolution;
constexpr float fDefaultResolutionScale = 1.0f;
constexpr int32 iDefaultFrameRateLimit = 120;
constexpr EDisplayMode eDefaultDisplayMode = EDisplayMode::Fullscreen;
std::optional<EDisplayMode> ePreviousDisplayMode;
}
bool UGraphicsSettingsHelper::AreSettingsRestorable(UCustomGameSettings* settings)
{
return ipPreviousWindowPosition.has_value()
|| ipPreviousResolution.has_value()
|| ePreviousDisplayMode.has_value();
}
void UGraphicsSettingsHelper::SetDefaults(UCustomGameSettings* settings)
{
{
FIntPoint pos = GetDefaultWindowPosition(settings);
settings->WindowPosX = pos.X;
settings->WindowPosY = pos.Y;
}
{
FIntPoint res = GetDefaultResolution(settings);
settings->ResolutionSizeX = res.X;
settings->ResolutionSizeY = res.Y;
}
settings->FullscreenMode = DisplayToWindowMode(GetDefaultDisplayMode(settings));
}
FIntPoint UGraphicsSettingsHelper::GetDefaultWindowPosition([[maybe_unused]] UCustomGameSettings* settings)
{
return ipDefaultWindowPosition;
}
FIntPoint UGraphicsSettingsHelper::GetWindowPosition([[maybe_unused]] UCustomGameSettings* settings)
{
if(GEngine && GEngine->GameViewport)
{
if(auto window = GEngine->GameViewport->GetWindow())
{
auto pos = window->GetPositionInScreen();
return { (int32)pos.X, (int32)pos.Y };
}
}
return GetDefaultWindowPosition(settings);
}
void UGraphicsSettingsHelper::SetWindowPosition(UCustomGameSettings* settings, const FIntPoint& pos)
{
if(settings && GEngine && GEngine->GameViewport)
{
if(auto window = GEngine->GameViewport->GetWindow())
{
if(ipPreviousWindowPosition == pos)
ipPreviousWindowPosition.reset();
else
ipPreviousWindowPosition = GetWindowPosition(settings);
window->MoveWindowTo(pos);
settings->SetWindowPosition(pos.X, pos.Y);
}
}
}
void UGraphicsSettingsHelper::RestoreWindowPosition(UCustomGameSettings* settings)
{
if(!ipPreviousWindowPosition.has_value())
return;
SetWindowPosition(settings, ipPreviousWindowPosition.value());
}
int32 UGraphicsSettingsHelper::GetDefaultMonitorId([[maybe_unused]] UCustomGameSettings* settings)
{
return iDefaultMonitorId;
}
int32 UGraphicsSettingsHelper::GetMonitorId([[maybe_unused]] UCustomGameSettings* settings)
{
int32 currentWidth = 0;
if(GEngine && GEngine->GameViewport)
currentWidth = GEngine->GameViewport->GetWindow()->GetPositionInScreen().X;
auto monitors = GetAvailableMonitors();
int32 i = 0;
for(; i < monitors.Num(); ++i)
{
if(currentWidth <= monitors[i].NativeWidth)
return i;
else
currentWidth -= monitors[i].NativeWidth;
}
return GetDefaultMonitorId(settings);
}
int32 UGraphicsSettingsHelper::GetPrimaryMonitorId()
{
auto monitors = GetAvailableMonitors();
for(int32 i = 0; i < monitors.Num(); i++)
if(monitors[i].bIsPrimary)
return i;
return GetDefaultMonitorId(nullptr);
}
TArray<FString> UGraphicsSettingsHelper::GetAvailableMonitorsNames()
{
TArray<FString> names;
auto monitors = GetAvailableMonitors();
for(auto& m : monitors)
names.Add(m.ID);
return MoveTemp(names);
}
TArray<FMonitorInfo> UGraphicsSettingsHelper::GetAvailableMonitors()
{
FDisplayMetrics FDM;
FDisplayMetrics::RebuildDisplayMetrics(FDM);
return MoveTemp(FDM.MonitorInfo);
}
void UGraphicsSettingsHelper::SetMonitor(UCustomGameSettings* settings, const int32 id)
{
auto monitors = GetAvailableMonitors();
if(id >= monitors.Num())
return;
int32 windowNewX = 0.0f;
for(int32 i = 0; i < id; ++i)
windowNewX += monitors[i].NativeWidth;
FIntPoint currentRes = GEngine->GameViewport->Viewport->GetSizeXY();
FIntPoint nativeRes = FIntPoint{ monitors[id].NativeWidth, monitors[id].NativeHeight };
SetWindowPosition(settings, FIntPoint{
(nativeRes.X - currentRes.X) / 2 + windowNewX,
(nativeRes.Y - currentRes.Y) / 2
});
}
void UGraphicsSettingsHelper::RestoreMonitor(UCustomGameSettings* settings)
{
RestoreWindowPosition(settings);
}
FIntPoint UGraphicsSettingsHelper::GetDefaultResolution([[maybe_unused]] UCustomGameSettings* settings)
{
return ipDefaultResolution;
}
FIntPoint UGraphicsSettingsHelper::GetResolution([[maybe_unused]] UCustomGameSettings* settings)
{
if(GEngine
&& GEngine->GameViewport
&& GEngine->GameViewport->Viewport)
return GEngine->GameViewport->Viewport->GetSizeXY();
return GetNativeResolutionByMonitorId(GetMonitorId(settings));
}
FIntPoint UGraphicsSettingsHelper::GetNativeResolutionByMonitorId(const int32 id)
{
auto monitors = GetAvailableMonitors();
if(id < monitors.Num())
return { monitors[id].NativeWidth, monitors[id].NativeHeight };
return GetDefaultResolution(nullptr);
}
TArray<FResolutionAndRefreshRates> UGraphicsSettingsHelper::GetAllAvailableResolutionsAndRefreshRates()
{
TArray<FScreenResolutionRHI> buffer;
if(!RHIGetAvailableResolutions(buffer, false) || buffer.Num() == 0)
return { {GetResolution(nullptr), {GetDefaultFrameRateLimit(nullptr)}} };
TArray<FResolutionAndRefreshRates> result = {};
int32 lastWidth = 0;
int32 lastHeight = 0;
for(auto& i : buffer)
{
if(lastWidth != i.Width || lastHeight != i.Height)
{
result.Add({ {static_cast<int32>(i.Width), static_cast<int32>(i.Height)}, {static_cast<int32>(i.RefreshRate)} });
lastHeight = i.Height;
lastWidth = i.Width;
}
else
{
result[result.Num() - 1].refreshRates.Add(static_cast<int32>(i.RefreshRate));
}
}
return MoveTemp(result);
}
TArray<FIntPoint> UGraphicsSettingsHelper::GetAllAvailableResolutions()
{
TArray<FScreenResolutionRHI> buffer;
if(!RHIGetAvailableResolutions(buffer, false) || buffer.Num() == 0)
return { {GetResolution(nullptr), {GetDefaultFrameRateLimit(nullptr)}} };
TArray<FIntPoint> result;
int32 lastWidth = 0;
int32 lastHeight = 0;
for(auto& i : buffer)
{
if(lastWidth != i.Width || lastHeight != i.Height)
{
result.Add({ static_cast<int32>(i.Width), static_cast<int32>(i.Height) });
lastHeight = i.Height;
lastWidth = i.Width;
}
}
return MoveTemp(result);
}
TArray<FIntPoint> UGraphicsSettingsHelper::GetAvailableResolutionsByMonitorId(const int32 id)
{
TArray<FIntPoint> result;
FIntPoint nativeRes = GetNativeResolutionByMonitorId(id);
for(auto& i : GetAllAvailableResolutions())
{
if(i.X > nativeRes.X && i.Y > nativeRes.Y)
continue;
result.Add(i);
}
return MoveTemp(result);
}
TArray<FIntPoint> UGraphicsSettingsHelper::FilterResolutionsViaAspectRatio(const TArray<FIntPoint>& resolutions, const FIntPoint& aspectRatio)
{
TArray<FIntPoint> result;
for(FIntPoint i : resolutions)
if(i.X % aspectRatio.X == 0 && i.Y % aspectRatio.Y == 0)
result.Add(i);
return MoveTemp(result);
}
void UGraphicsSettingsHelper::SetResolution(UCustomGameSettings* settings, const FIntPoint& resolution)
{
if(!settings)
return;
settings->bUseDynamicResolution = true;
if(ipPreviousResolution.has_value() && ipPreviousResolution == resolution)
ipPreviousResolution.reset();
else
ipPreviousResolution = resolution;
settings->SetScreenResolution(resolution);
}
void UGraphicsSettingsHelper::RestoreResolution(UCustomGameSettings* settings)
{
if(!ipPreviousResolution.has_value())
return;
SetResolution(settings, ipPreviousResolution.value());
}
float UGraphicsSettingsHelper::GetDefaultResolutionScale([[maybe_unused]] UCustomGameSettings* settings)
{
return fDefaultResolutionScale;
}
float UGraphicsSettingsHelper::GetResolutionScale([[maybe_unused]] UCustomGameSettings* settings)
{
if(auto settings = UCustomGameSettings::Get())
return settings->GetResolutionScaleNormalized();
return 1.0f;
}
void UGraphicsSettingsHelper::SetResolutionScale(UCustomGameSettings* settings, const float resolutionScale)
{
if(!settings)
return;
settings->SetResolutionScaleNormalized(resolutionScale);
}
int32 UGraphicsSettingsHelper::GetDefaultFrameRateLimit([[maybe_unused]] UCustomGameSettings* settings)
{
return iDefaultFrameRateLimit;
}
TArray<int32> UGraphicsSettingsHelper::GetAvailableFrameRateLimitsForResolution(const FIntPoint& resolution)
{
auto resAndRates = GetAllAvailableResolutionsAndRefreshRates();
for(auto& i : resAndRates)
if(i.resolution == resolution)
return MoveTemp(i.refreshRates);
return { GetDefaultFrameRateLimit(nullptr) };
}
FIntPoint UGraphicsSettingsHelper::GetDefaultAspectRatio([[maybe_unused]] UCustomGameSettings* settings)
{
return GetAspectRatioFromResolution(GetDefaultResolution(settings));
}
FIntPoint UGraphicsSettingsHelper::GetAspectRatio([[maybe_unused]] UCustomGameSettings* settings)
{
return GetAspectRatioFromResolution(GetResolution(settings));
}
FIntPoint UGraphicsSettingsHelper::GetAspectRatioFromResolution(const FIntPoint& resolution)
{
int32 gcd = UCommonFunctions::GreatestCommonDivisor(resolution.X, resolution.Y);
return { resolution.X / gcd, resolution.Y / gcd };
}
FIntPoint UGraphicsSettingsHelper::GetAspectRatioOfMonitor(const int32 monitor)
{
return GetAspectRatioFromResolution(GetNativeResolutionByMonitorId(monitor));
}
TArray<FIntPoint> UGraphicsSettingsHelper::GetAvailableAspectRatiousOfMonitor(const int32 monitor)
{
TArray<FIntPoint> resolutions = GetAvailableResolutionsByMonitorId(monitor);
if(resolutions.Num() == 0)
return { GetAspectRatio(nullptr) };
TSet<FIntPoint> aspects;
for(auto& i : resolutions)
aspects.Add(GetAspectRatioFromResolution(i));
return aspects.Array();
}
EDisplayMode UGraphicsSettingsHelper::GetDefaultDisplayMode([[maybe_unused]] UCustomGameSettings* settings)
{
return eDefaultDisplayMode;
}
EDisplayMode UGraphicsSettingsHelper::GetDisplayMode(UCustomGameSettings* settings)
{
if(!settings)
return GetDefaultDisplayMode(settings);
return WindowToDisplayMode(settings->GetFullscreenMode());
}
EDisplayMode UGraphicsSettingsHelper::TextToDisplayMode(const FText& in)
{
static const UEnum* enumPtr = FindObject<UEnum>(ANY_PACKAGE, TEXT("EDisplayMode"), true);
if(!enumPtr)
return GetDefaultDisplayMode(nullptr);
return static_cast<EDisplayMode>(enumPtr->GetValueByName(FName{ *FTextInspector::GetSourceString(in) }));
}
FText UGraphicsSettingsHelper::DisplayModeToText(const EDisplayMode mode)
{
static const UEnum* enumPtr = FindObject<UEnum>(ANY_PACKAGE, TEXT("EDisplayMode"), true);
if(!enumPtr)
return CommonTexts::Default;
return enumPtr->GetDisplayNameTextByIndex(static_cast<int32>(mode));
}
void UGraphicsSettingsHelper::SetDisplayMode(UCustomGameSettings* settings, const EDisplayMode mode)
{
if(!settings)
return;
if(ePreviousDisplayMode.has_value() && ePreviousDisplayMode == mode)
ePreviousDisplayMode.reset();
else
ePreviousDisplayMode = mode;
settings->SetFullscreenMode(DisplayToWindowMode(mode));
}
void UGraphicsSettingsHelper::RestoreDisplayMode(UCustomGameSettings* settings)
{
if(!ePreviousDisplayMode.has_value())
return;
SetDisplayMode(settings, ePreviousDisplayMode.value());
}
inline constexpr EDisplayMode UGraphicsSettingsHelper::WindowToDisplayMode(const EWindowMode::Type mode)
{
switch(mode)
{
case EWindowMode::Type::WindowedFullscreen:
return EDisplayMode::Borderless;
case EWindowMode::Type::Windowed:
return EDisplayMode::Windowed;
case EWindowMode::Type::Fullscreen:
default:
return EDisplayMode::Fullscreen;
}
}
inline constexpr EWindowMode::Type UGraphicsSettingsHelper::DisplayToWindowMode(const EDisplayMode mode)
{
switch(mode)
{
case EDisplayMode::Borderless:
return EWindowMode::Type::WindowedFullscreen;
case EDisplayMode::Windowed:
return EWindowMode::Type::Windowed;
case EDisplayMode::Fullscreen:
default:
return EWindowMode::Type::Fullscreen;
}
}

View File

@ -0,0 +1,130 @@
// Oleg Petruny proprietary.
#pragma once
#include "Kismet/BlueprintFunctionLibrary.h"
#include "GraphicsSettingsHelper.generated.h"
USTRUCT(BlueprintType, Category = "Settings|Graphics|Structs")
struct FResolutionAndRefreshRates
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FIntPoint resolution;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TArray<int32> refreshRates;
};
/** Redefine of EWindowType, because it has duplicate without blueprint macro */
UENUM(BlueprintType, Category = "Settings|Graphics|Enums")
enum class EDisplayMode : uint8
{
Fullscreen = 0 UMETA(DisplayName = "Fullscreen"),
Borderless = 1 UMETA(DisplayName = "Borderless"),
Windowed = 2 UMETA(DisplayName = "Windowed")
};
/**
* Helper for trivial and complex graphic settings.
* Most of functions work without settings pointer. It is there just for Blueprint call convinience.
* Helps with window position, monitor selection, resolution, resolution scale, frame rate limit, aspect ratio, display mode.
*
*/
UCLASS()
class UGraphicsSettingsHelper : public UBlueprintFunctionLibrary
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintPure, Category = "Settings|Graphics", meta = (DisplayName = "AreGraphicsSettingsRestorable"))
static bool AreSettingsRestorable(class UCustomGameSettings* settings);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics", meta = (DisplayName = "SetGraphicsDefaults"))
static void SetDefaults(class UCustomGameSettings* settings);
protected: // Window position setting is on the thin edge of user safeness, therefore protected. Please use SetMonitor().
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Window")
static FIntPoint GetDefaultWindowPosition(class UCustomGameSettings* settings); // inline functions need API macro, but API macro with static inline function results in "no definition"
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Window")
static FIntPoint GetWindowPosition(class UCustomGameSettings* settings);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Window")
static void SetWindowPosition(class UCustomGameSettings* settings, const FIntPoint& pos);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Window")
static void RestoreWindowPosition(class UCustomGameSettings* settings);
public:
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Monitor")
static int32 GetDefaultMonitorId(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Monitor")
static int32 GetMonitorId(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Monitor")
static int32 GetPrimaryMonitorId();
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Monitor")
static TArray<FString> GetAvailableMonitorsNames();
static TArray<FMonitorInfo> GetAvailableMonitors();
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Monitor")
static void SetMonitor(class UCustomGameSettings* settings, const int32 id);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Monitor")
static void RestoreMonitor(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static FIntPoint GetDefaultResolution(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static FIntPoint GetResolution(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static FIntPoint GetNativeResolutionByMonitorId(const int32 id);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics")
static TArray<FResolutionAndRefreshRates> GetAllAvailableResolutionsAndRefreshRates();
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static TArray<FIntPoint> GetAllAvailableResolutions();
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static TArray<FIntPoint> GetAvailableResolutionsByMonitorId(const int32 id);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution")
static TArray<FIntPoint> FilterResolutionsViaAspectRatio(const TArray<FIntPoint>& resolutions, const FIntPoint& aspectRatio);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Resolution")
static void SetResolution(class UCustomGameSettings* settings, const FIntPoint& resolution);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Resolution")
static void RestoreResolution(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution Scale")
static float GetDefaultResolutionScale(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Resolution Scale")
static float GetResolutionScale(class UCustomGameSettings* settings);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Resolution Scale")
static void SetResolutionScale(class UCustomGameSettings* settings, const float resolutionScale);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Frame Rate Limit")
static int32 GetDefaultFrameRateLimit(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Frame Rate Limit")
static TArray<int32> GetAvailableFrameRateLimitsForResolution(const FIntPoint& resolution);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Aspect Ratio")
static FIntPoint GetDefaultAspectRatio(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Aspect Ratio")
static FIntPoint GetAspectRatio(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Aspect Ratio")
static FIntPoint GetAspectRatioFromResolution(const FIntPoint& resolution);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Aspect Ratio")
static FIntPoint GetAspectRatioOfMonitor(const int32 monitor);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Aspect Ratio")
static TArray<FIntPoint> GetAvailableAspectRatiousOfMonitor(const int32 monitor);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Display Mode")
static EDisplayMode GetDefaultDisplayMode(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Display Mode")
static EDisplayMode GetDisplayMode(class UCustomGameSettings* settings);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Display Mode")
static EDisplayMode TextToDisplayMode(const FText& in);
UFUNCTION(BlueprintPure, Category = "Settings|Graphics|Display Mode")
static FText DisplayModeToText(const EDisplayMode mode);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Display Mode")
static void SetDisplayMode(class UCustomGameSettings* settings, const EDisplayMode mode);
UFUNCTION(BlueprintCallable, Category = "Settings|Graphics|Display Mode")
static void RestoreDisplayMode(class UCustomGameSettings* settings);
private:
inline constexpr static EDisplayMode WindowToDisplayMode(const EWindowMode::Type mode);
inline constexpr static EWindowMode::Type DisplayToWindowMode(const EDisplayMode mode);
};

View File

@ -85,12 +85,6 @@ void APlayerBase::BeginPlay()
cameraManager->ViewPitchMax = maxPitch; cameraManager->ViewPitchMax = maxPitch;
} }
auto gameSettings = UCustomGameSettings::Get();
if(gameSettings && camera)
{
camera->PostProcessSettings.MotionBlurAmount = gameSettings->bUseMotionBlur ? 1.0f : 0.0f;
}
LoadInteractablesActivators(); LoadInteractablesActivators();
} }
@ -371,16 +365,22 @@ void APlayerBase::ShowMenu()
if(GetWorld()->IsPaused()) if(GetWorld()->IsPaused())
{ {
WM->HideMainMenu(); WM->HideMainMenu();
playerController->SetShowMouseCursor(false); if(auto PC = ACustomPlayerController::Get())
playerController->SetInputMode(FInputModeGameOnly{}); {
PC->SetShowMouseCursor(false);
PC->SetInputMode(FInputModeGameOnly{});
}
UnlockPlayer(FPlayerLock::All()); UnlockPlayer(FPlayerLock::All());
UGameplayStatics::SetGamePaused(GetWorld(), false); UGameplayStatics::SetGamePaused(GetWorld(), false);
} }
else else
{ {
WM->ShowMainMenu(); WM->ShowMainMenu();
playerController->SetShowMouseCursor(true); if(auto PC = ACustomPlayerController::Get())
playerController->SetInputMode(FInputModeGameAndUI{}); {
PC->SetShowMouseCursor(true);
PC->SetInputMode(FInputModeGameAndUI{});
}
LockPlayer(FPlayerLock::All()); LockPlayer(FPlayerLock::All());
UGameplayStatics::SetGamePaused(GetWorld(), true); UGameplayStatics::SetGamePaused(GetWorld(), true);
} }

View File

@ -113,7 +113,6 @@ protected:
UFUNCTION(BlueprintCallable, Category = Character) UFUNCTION(BlueprintCallable, Category = Character)
void ShowMenu(); void ShowMenu();
class APlayerController* playerController;
UPROPERTY(EditAnywhere) UPROPERTY(EditAnywhere)
float moveSpeed = 200; float moveSpeed = 200;
UPROPERTY(EditAnywhere) UPROPERTY(EditAnywhere)

View File

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "AutohideWidget.generated.h" #include "AutohideWidget.generated.h"
@ -10,7 +10,7 @@
* Automatically hides itself after some period * Automatically hides itself after some period
*/ */
UCLASS() UCLASS()
class UAutohideWidget : public UResolutionResponsiveUserWidget class UAutohideWidget : public UResolutionResponsiveWidget
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -0,0 +1,20 @@
// Oleg Petruny proprietary.
#include "ComboBoxText.h"
void UComboBoxText::PostInitProperties()
{
Super::PostInitProperties();
SetOptions(_DefaultOptions);
_DefaultOptions.Empty();
}
void UComboBoxText::SetOptions(const TArray<FText>& options)
{
ClearSelection();
Options.Empty();
for(auto& o : options)
Options.Add(MakeShareable(new FString(o.ToString())));
RefreshOptions();
}

View File

@ -0,0 +1,23 @@
// Oleg Petruny proprietary.
#pragma once
#include "Components/ComboBoxString.h"
#include "ComboBoxText.generated.h"
UCLASS(Blueprintable, meta = (DisplayName = "ComboBox (Text)"), MinimalAPI)
class UComboBoxText : public UComboBoxString
{
GENERATED_BODY()
public:
virtual void PostInitProperties() override;
UFUNCTION(BlueprintCallable)
void SetOptions(const TArray<FText>& options);
protected:
UPROPERTY(EditAnywhere, Category = ComboBoxTextDefault)
TArray<FText> _DefaultOptions;
};

View File

@ -3,14 +3,14 @@
#pragma once #pragma once
#include "InputAnimatedWidgetInterface.h" #include "InputAnimatedWidgetInterface.h"
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "CutsceneSkipWidget.generated.h" #include "CutsceneSkipWidget.generated.h"
DECLARE_DYNAMIC_DELEGATE(FSkipCutsceneDelegate); DECLARE_DYNAMIC_DELEGATE(FSkipCutsceneDelegate);
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UCutsceneSkipWidget : public UResolutionResponsiveUserWidget, public IInputAnimatedWidgetInterface class UCutsceneSkipWidget : public UResolutionResponsiveWidget, public IInputAnimatedWidgetInterface
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -2,14 +2,14 @@
#pragma once #pragma once
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "DialogueRowWidget.generated.h" #include "DialogueRowWidget.generated.h"
enum class EDialogueWaveType : uint8; enum class EDialogueWaveType : uint8;
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UDialogueRowWidget : public UResolutionResponsiveUserWidget class UDialogueRowWidget : public UResolutionResponsiveWidget
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -3,14 +3,14 @@
#pragma once #pragma once
#include "InputAnimatedWidgetInterface.h" #include "InputAnimatedWidgetInterface.h"
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "DialogueSkipWidget.generated.h" #include "DialogueSkipWidget.generated.h"
DECLARE_DYNAMIC_DELEGATE(FDialogueSkipDelegate); DECLARE_DYNAMIC_DELEGATE(FDialogueSkipDelegate);
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UDialogueSkipWidget : public UResolutionResponsiveUserWidget, public IInputAnimatedWidgetInterface class UDialogueSkipWidget : public UResolutionResponsiveWidget, public IInputAnimatedWidgetInterface
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -3,12 +3,12 @@
#pragma once #pragma once
#include "InputAnimatedWidgetInterface.h" #include "InputAnimatedWidgetInterface.h"
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "InteractableHintWidget.generated.h" #include "InteractableHintWidget.generated.h"
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UInteractableHintWidget : public UResolutionResponsiveUserWidget, public IInputAnimatedWidgetInterface class UInteractableHintWidget : public UResolutionResponsiveWidget, public IInputAnimatedWidgetInterface
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -3,7 +3,7 @@
#pragma once #pragma once
#include "AutohideWidget.h" #include "AutohideWidget.h"
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "JournalWidget.generated.h" #include "JournalWidget.generated.h"

View File

@ -11,16 +11,6 @@
bool UMainMenuWidget::Initialize() bool UMainMenuWidget::Initialize()
{ {
if(ButtonLoadLastSave)
{
auto GI = UCustomGameInstance::Get();
if(GI && GI->saveData)
{
ButtonLoadLastSave->SetIsEnabled(true);
ButtonLoadLastSave->SetRenderOpacity(1.0f);
}
}
//FWidgetAnimationDynamicEvent closeFinished; //FWidgetAnimationDynamicEvent closeFinished;
//closeFinished.BindDynamic(this, &UMainMenuWidget::Closed); //closeFinished.BindDynamic(this, &UMainMenuWidget::Closed);
//BindToAnimationFinished(closeAnimation, closeFinished); //BindToAnimationFinished(closeAnimation, closeFinished);

View File

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "Widgets/ResolutionResponsiveUserWidget.h" #include "Widgets/ResolutionResponsiveWidget.h"
#include "MainMenuWidget.generated.h" #include "MainMenuWidget.generated.h"
@ -30,24 +30,9 @@ public:
UPROPERTY(BlueprintAssignable) UPROPERTY(BlueprintAssignable)
FMainMenuClosedDelegate OnMainMenuClosedDelegate; FMainMenuClosedDelegate OnMainMenuClosedDelegate;
UPROPERTY(meta = (BindWidget)) UPROPERTY(BlueprintReadOnly, Transient, meta = (BindWidgetAnim))
class UMainMenuButtonWidget* ButtonContinue; class UWidgetAnimation* extendAnimation;
UPROPERTY(meta = (BindWidget)) UPROPERTY(BlueprintReadOnly, Transient, meta = (BindWidgetAnim))
class UMainMenuButtonWidget* ButtonLoadLastSave;
UPROPERTY(meta = (BindWidget))
class UMainMenuButtonWidget* ButtonNewGame;
UPROPERTY(meta = (BindWidget))
class UMainMenuButtonWidget* ButtonOptions;
UPROPERTY(meta = (BindWidget))
class UMainMenuButtonWidget* ButtonCredits;
UPROPERTY(meta = (BindWidget))
class UMainMenuButtonWidget* ButtonExit;
UPROPERTY(Transient, meta = (BindWidgetAnim))
class UWidgetAnimation* showFullAnimation;
UPROPERTY(Transient, meta = (BindWidgetAnim))
class UWidgetAnimation* showFastAnimation;
UPROPERTY(Transient, meta = (BindWidgetAnim))
class UWidgetAnimation* closeAnimation; class UWidgetAnimation* closeAnimation;
protected: protected:

View File

@ -3,14 +3,14 @@
#pragma once #pragma once
#include "QuickTimeEvent.h" // forward declaration of EQuickTimeEventResult is somehow insufficient on some machines #include "QuickTimeEvent.h" // forward declaration of EQuickTimeEventResult is somehow insufficient on some machines
#include "Widgets/ResolutionResponsiveUserWidget.h" #include "Widgets/ResolutionResponsiveWidget.h"
#include "QuickTimeEventWidget.generated.h" #include "QuickTimeEventWidget.generated.h"
enum class EQuickTimeEventResult : uint8; enum class EQuickTimeEventResult : uint8;
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UQuickTimeEventWidget : public UResolutionResponsiveUserWidget class UQuickTimeEventWidget : public UResolutionResponsiveWidget
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -2,7 +2,7 @@
#pragma once #pragma once
#include "Widgets/WorldDilationResponsiveUserWidget.h" #include "Widgets/WorldDilationResponsiveWidget.h"
#include "QuickTimeEventWidgetManager.generated.h" #include "QuickTimeEventWidgetManager.generated.h"
@ -12,7 +12,7 @@ enum class EQuickTimeEventResult : uint8;
class UQuickTimeEventWidget; class UQuickTimeEventWidget;
UCLASS(Blueprintable, Abstract) UCLASS(Blueprintable, Abstract)
class UQuickTimeEventWidgetManager : public UWorldDilationResponsiveUserWidget class UQuickTimeEventWidgetManager : public UWorldDilationResponsiveWidget
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -1,18 +1,18 @@
// Oleg Petruny proprietary. // Oleg Petruny proprietary.
#include "ResolutionResponsiveUserWidget.h" #include "ResolutionResponsiveWidget.h"
#include "Components/PanelSlot.h" #include "Components/PanelSlot.h"
#include "UnrealClient.h" #include "UnrealClient.h"
bool UResolutionResponsiveUserWidget::Initialize() bool UResolutionResponsiveWidget::Initialize()
{ {
_viewportResizedEventHandle = FViewport::ViewportResizedEvent.AddUObject(this, &UResolutionResponsiveUserWidget::Rescale); _viewportResizedEventHandle = FViewport::ViewportResizedEvent.AddUObject(this, &UResolutionResponsiveWidget::Rescale);
return UUserWidget::Initialize(); return UUserWidget::Initialize();
} }
void UResolutionResponsiveUserWidget::BeginDestroy() void UResolutionResponsiveWidget::BeginDestroy()
{ {
if(_viewportResizedEventHandle.IsValid()) if(_viewportResizedEventHandle.IsValid())
{ {
@ -22,18 +22,18 @@ void UResolutionResponsiveUserWidget::BeginDestroy()
UUserWidget::BeginDestroy(); UUserWidget::BeginDestroy();
} }
void UResolutionResponsiveUserWidget::Rescale(FViewport* ViewPort, uint32 val) void UResolutionResponsiveWidget::Rescale(FViewport* ViewPort, uint32 val)
{ {
_scale = (float)defaultResolution / ViewPort->GetSizeXY().GetMin(); _scale = (float)defaultResolution / ViewPort->GetSizeXY().GetMin();
Rescale(); Rescale();
} }
void UResolutionResponsiveUserWidget::Rescale_Implementation() void UResolutionResponsiveWidget::Rescale_Implementation()
{ {
SetRenderScale(FVector2D{ _scale }); SetRenderScale(FVector2D{ _scale });
} }
float UResolutionResponsiveUserWidget::GetScale() const float UResolutionResponsiveWidget::GetScale() const
{ {
return _scale; return _scale;
} }

View File

@ -4,13 +4,13 @@
#include "Blueprint/UserWidget.h" #include "Blueprint/UserWidget.h"
#include "ResolutionResponsiveUserWidget.generated.h" #include "ResolutionResponsiveWidget.generated.h"
/** /**
* Automatically scale itself for current resolution to keep UI sizes universal. * Automatically scale itself for current resolution to keep UI sizes universal.
*/ */
UCLASS() UCLASS()
class UResolutionResponsiveUserWidget : public UUserWidget class UResolutionResponsiveWidget : public UUserWidget
{ {
GENERATED_BODY() GENERATED_BODY()

View File

@ -1,6 +1,6 @@
// Oleg Petruny proprietary. // Oleg Petruny proprietary.
#include "WorldDilationResponsiveUserWidget.h" #include "WorldDilationResponsiveWidget.h"
#include "Animation/UMGSequencePlayer.h" #include "Animation/UMGSequencePlayer.h"
#include "Animation/WidgetAnimation.h" #include "Animation/WidgetAnimation.h"
@ -8,21 +8,21 @@
#include "CommonFunctions.h" #include "CommonFunctions.h"
bool UWorldDilationResponsiveUserWidget::Initialize() bool UWorldDilationResponsiveWidget::Initialize()
{ {
UCommonFunctions::GetWorldDilationChangedDelegate().AddDynamic(this, &UWorldDilationResponsiveUserWidget::UpdateAnimations); UCommonFunctions::GetWorldDilationChangedDelegate().AddDynamic(this, &UWorldDilationResponsiveWidget::UpdateAnimations);
return UUserWidget::Initialize(); return UUserWidget::Initialize();
} }
void UWorldDilationResponsiveUserWidget::BeginDestroy() void UWorldDilationResponsiveWidget::BeginDestroy()
{ {
UCommonFunctions::GetWorldDilationChangedDelegate().RemoveDynamic(this, &UWorldDilationResponsiveUserWidget::UpdateAnimations); UCommonFunctions::GetWorldDilationChangedDelegate().RemoveDynamic(this, &UWorldDilationResponsiveWidget::UpdateAnimations);
UUserWidget::BeginDestroy(); UUserWidget::BeginDestroy();
} }
void UWorldDilationResponsiveUserWidget::UpdateAnimations(float newSpeed) void UWorldDilationResponsiveWidget::UpdateAnimations(float newSpeed)
{ {
UpdateAnimation(GetRootWidget(), newSpeed); UpdateAnimation(GetRootWidget(), newSpeed);
@ -70,7 +70,7 @@ void UWorldDilationResponsiveUserWidget::UpdateAnimations(float newSpeed)
} }
} }
void UWorldDilationResponsiveUserWidget::UpdateAnimation(UWidget* widget, float newSpeed) void UWorldDilationResponsiveWidget::UpdateAnimation(UWidget* widget, float newSpeed)
{ {
if(auto userWidget = Cast<UUserWidget>(widget)) if(auto userWidget = Cast<UUserWidget>(widget))
{ {

View File

@ -4,13 +4,13 @@
#include "Blueprint/UserWidget.h" #include "Blueprint/UserWidget.h"
#include "WorldDilationResponsiveUserWidget.generated.h" #include "WorldDilationResponsiveWidget.generated.h"
/** /**
* Automatically update animations speed to sync with world time dilation * Automatically update animations speed to sync with world time dilation
*/ */
UCLASS() UCLASS()
class UWorldDilationResponsiveUserWidget : public UUserWidget class UWorldDilationResponsiveWidget : public UUserWidget
{ {
GENERATED_BODY() GENERATED_BODY()