Rename plugin to HarmonyLinkUE
This commit is contained in:
parent
8ba9caeb27
commit
9a5194dc3a
26 changed files with 190 additions and 107 deletions
|
@ -2,7 +2,7 @@
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"VersionName": "1.0",
|
"VersionName": "1.0",
|
||||||
"FriendlyName": "HarmonyLink",
|
"FriendlyName": "HarmonyLinkUE",
|
||||||
"Description": "Revolutionize handheld gaming with adaptive game settings. Optimize graphics and gameplay experience based on real-time system metrics. Open-source project empowering developers to enhance games on portable devices",
|
"Description": "Revolutionize handheld gaming with adaptive game settings. Optimize graphics and gameplay experience based on real-time system metrics. Open-source project empowering developers to enhance games on portable devices",
|
||||||
"Category": "Handheld",
|
"Category": "Handheld",
|
||||||
"CreatedBy": "Jordon Brooks",
|
"CreatedBy": "Jordon Brooks",
|
||||||
|
@ -16,10 +16,18 @@
|
||||||
"Installed": false,
|
"Installed": false,
|
||||||
"Modules": [
|
"Modules": [
|
||||||
{
|
{
|
||||||
"Name": "HarmonyLink",
|
"Name": "HarmonyLinkUE",
|
||||||
"Type": "Runtime",
|
"Type": "Runtime",
|
||||||
"LoadingPhase": "PreDefault",
|
"LoadingPhase": "PreDefault",
|
||||||
"WhitelistPlatforms": ["Win64", "Linux"]
|
"WhitelistPlatforms": [
|
||||||
|
"Win64",
|
||||||
|
"Linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "HarmonyLinkSettings",
|
||||||
|
"Type": "Runtime",
|
||||||
|
"LoadingPhase": "Default"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,24 +0,0 @@
|
||||||
// Copyright (C) 2024 Jordon Brooks
|
|
||||||
|
|
||||||
#include "HarmonyLink.h"
|
|
||||||
#include "Modules/ModuleManager.h"
|
|
||||||
#include "Objects/HarmonyLinkGraphics.h"
|
|
||||||
|
|
||||||
#define LOCTEXT_NAMESPACE "FHarmonyLinkModule"
|
|
||||||
|
|
||||||
DEFINE_LOG_CATEGORY(LogHarmonyLink);
|
|
||||||
|
|
||||||
void FHarmonyLinkModule::StartupModule()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void FHarmonyLinkModule::ShutdownModule()
|
|
||||||
{
|
|
||||||
// Ensure we safely destroy our singleton instance
|
|
||||||
UHarmonyLinkGraphics::DestroySettings();
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef LOCTEXT_NAMESPACE
|
|
||||||
|
|
||||||
IMPLEMENT_MODULE(FHarmonyLinkModule, HarmonyLink)
|
|
28
Source/HarmonyLinkSettings/HarmonyLinkSettings.Build.cs
Normal file
28
Source/HarmonyLinkSettings/HarmonyLinkSettings.Build.cs
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
using UnrealBuildTool;
|
||||||
|
|
||||||
|
public class HarmonyLinkSettings : ModuleRules
|
||||||
|
{
|
||||||
|
public HarmonyLinkSettings(ReadOnlyTargetRules Target) : base(Target)
|
||||||
|
{
|
||||||
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||||
|
|
||||||
|
PublicDependencyModuleNames.AddRange(
|
||||||
|
new string[]
|
||||||
|
{
|
||||||
|
"Core",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
PrivateDependencyModuleNames.AddRange(
|
||||||
|
new string[]
|
||||||
|
{
|
||||||
|
"CoreUObject",
|
||||||
|
"Engine",
|
||||||
|
"Slate",
|
||||||
|
"SlateCore",
|
||||||
|
|
||||||
|
"HarmonyLinkUE"
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
22
Source/HarmonyLinkSettings/Private/HarmonyLinkSettings.cpp
Normal file
22
Source/HarmonyLinkSettings/Private/HarmonyLinkSettings.cpp
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#include "HarmonyLinkSettings.h"
|
||||||
|
|
||||||
|
#include "Objects/HarmonyLinkGraphics.h"
|
||||||
|
|
||||||
|
#define LOCTEXT_NAMESPACE "FHarmonyLinkSettingsModule"
|
||||||
|
|
||||||
|
DEFINE_LOG_CATEGORY(LogHarmonyLinkSettings);
|
||||||
|
|
||||||
|
void FHarmonyLinkSettingsModule::StartupModule()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void FHarmonyLinkSettingsModule::ShutdownModule()
|
||||||
|
{
|
||||||
|
// Ensure we safely destroy our singleton instance
|
||||||
|
UHarmonyLinkGraphics::DestroySettings();
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef LOCTEXT_NAMESPACE
|
||||||
|
|
||||||
|
IMPLEMENT_MODULE(FHarmonyLinkSettingsModule, HarmonyLinkSettings)
|
|
@ -3,11 +3,10 @@
|
||||||
|
|
||||||
#include "Objects/HarmonyLinkGraphics.h"
|
#include "Objects/HarmonyLinkGraphics.h"
|
||||||
#include "ComponentRecreateRenderStateContext.h"
|
#include "ComponentRecreateRenderStateContext.h"
|
||||||
#include "HarmonyLink.h"
|
#include "HarmonyLinkSettings.h"
|
||||||
#include "HarmonyLinkLibrary.h"
|
#include "HarmonyLinkLibrary.h"
|
||||||
#include "GameFramework/GameUserSettings.h"
|
#include "GameFramework/GameUserSettings.h"
|
||||||
#include "Kismet/GameplayStatics.h"
|
#include "Kismet/GameplayStatics.h"
|
||||||
#include "HarmonyLinkLib.h"
|
|
||||||
|
|
||||||
UHarmonyLinkGraphics* UHarmonyLinkGraphics::_INSTANCE = nullptr;
|
UHarmonyLinkGraphics* UHarmonyLinkGraphics::_INSTANCE = nullptr;
|
||||||
int32 UHarmonyLinkGraphics::_TickRate = 1;
|
int32 UHarmonyLinkGraphics::_TickRate = 1;
|
||||||
|
@ -60,14 +59,14 @@ TMap<FName, TMap<FName, FHLConfigValue>> UHarmonyLinkGraphics::_DefaultSettings
|
||||||
|
|
||||||
UHarmonyLinkGraphics::~UHarmonyLinkGraphics()
|
UHarmonyLinkGraphics::~UHarmonyLinkGraphics()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("~UHarmonyLinkGraphics called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("~UHarmonyLinkGraphics called."));
|
||||||
FWorldDelegates::OnPostWorldInitialization.RemoveAll(this);
|
FWorldDelegates::OnPostWorldInitialization.RemoveAll(this);
|
||||||
FWorldDelegates::OnPreWorldFinishDestroy.RemoveAll(this);
|
FWorldDelegates::OnPreWorldFinishDestroy.RemoveAll(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::LoadConfig(const bool bForceReload)
|
void UHarmonyLinkGraphics::LoadConfig(const bool bForceReload)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("LoadConfig called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("LoadConfig called."));
|
||||||
QUICK_SCOPE_CYCLE_COUNTER(HarmonyLinkGraphics_LoadSettings);
|
QUICK_SCOPE_CYCLE_COUNTER(HarmonyLinkGraphics_LoadSettings);
|
||||||
|
|
||||||
// Load the settings into the map
|
// Load the settings into the map
|
||||||
|
@ -78,7 +77,7 @@ void UHarmonyLinkGraphics::LoadConfig(const bool bForceReload)
|
||||||
|
|
||||||
bool UHarmonyLinkGraphics::LoadSettingsFromConfig(FConfigFile* ConfigFile) const
|
bool UHarmonyLinkGraphics::LoadSettingsFromConfig(FConfigFile* ConfigFile) const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("LoadSettingsFromConfig called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("LoadSettingsFromConfig called."));
|
||||||
//const FString Filename = "HarmonyLink"; //GetConfigDirectoryFile(bLoadDefaults);
|
//const FString Filename = "HarmonyLink"; //GetConfigDirectoryFile(bLoadDefaults);
|
||||||
|
|
||||||
// Load each profile section
|
// Load each profile section
|
||||||
|
@ -90,19 +89,19 @@ bool UHarmonyLinkGraphics::LoadSettingsFromConfig(FConfigFile* ConfigFile) const
|
||||||
|
|
||||||
if (!ConfigFile->GetBool(*SectionName, *KeyName, _bAutomaticSwitch))
|
if (!ConfigFile->GetBool(*SectionName, *KeyName, _bAutomaticSwitch))
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed to load bAutomaticSwitch from config"));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed to load bAutomaticSwitch from config"));
|
||||||
bLoaded = false;
|
bLoaded = false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Loaded bAutomaticSwitch: %s"), _bAutomaticSwitch ? TEXT("true") : TEXT("false"));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Loaded bAutomaticSwitch: %s"), _bAutomaticSwitch ? TEXT("true") : TEXT("false"));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const TPair<EProfile, FName>& Profile : _ProfileNames)
|
for (const TPair<EProfile, FName>& Profile : _ProfileNames)
|
||||||
{
|
{
|
||||||
if (!LoadSection(ConfigFile, Profile))
|
if (!LoadSection(ConfigFile, Profile))
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed to load section: '%s'"), *Profile.Value.ToString());
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed to load section: '%s'"), *Profile.Value.ToString());
|
||||||
bLoaded = false;
|
bLoaded = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -110,17 +109,17 @@ bool UHarmonyLinkGraphics::LoadSettingsFromConfig(FConfigFile* ConfigFile) const
|
||||||
// Check if all profiles and settings were loaded successfully
|
// Check if all profiles and settings were loaded successfully
|
||||||
if (bLoaded)
|
if (bLoaded)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Successfully loaded config."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Successfully loaded config."));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed to load config file."));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed to load config file."));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UHarmonyLinkGraphics::LoadSection(FConfigFile* ConfigFile, const TPair<EProfile, FName> Profile)
|
bool UHarmonyLinkGraphics::LoadSection(FConfigFile* ConfigFile, const TPair<EProfile, FName> Profile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("LoadSection called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("LoadSection called."));
|
||||||
if (!ensureMsgf(ConfigFile, TEXT("ConfigFile is nullptr!"))) return false;
|
if (!ensureMsgf(ConfigFile, TEXT("ConfigFile is nullptr!"))) return false;
|
||||||
|
|
||||||
const FName& SectionName = Profile.Value;
|
const FName& SectionName = Profile.Value;
|
||||||
|
@ -184,13 +183,13 @@ bool UHarmonyLinkGraphics::LoadSection(FConfigFile* ConfigFile, const TPair<EPro
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::SaveConfig() const
|
void UHarmonyLinkGraphics::SaveConfig() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("SaveConfig called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("SaveConfig called."));
|
||||||
Intermal_SaveConfig(false);
|
Intermal_SaveConfig(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::SetSetting(const EProfile Profile, const FName Setting, const FHLConfigValue Value)
|
void UHarmonyLinkGraphics::SetSetting(const EProfile Profile, const FName Setting, const FHLConfigValue& Value)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("SetSetting called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("SetSetting called."));
|
||||||
// Ignore if HarmonyLinkSettings is disabled
|
// Ignore if HarmonyLinkSettings is disabled
|
||||||
if (Profile == EProfile::NONE)
|
if (Profile == EProfile::NONE)
|
||||||
{
|
{
|
||||||
|
@ -202,7 +201,7 @@ void UHarmonyLinkGraphics::SetSetting(const EProfile Profile, const FName Settin
|
||||||
|
|
||||||
if (!ProfileName)
|
if (!ProfileName)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Profile not found."));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Profile not found."));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,14 +228,14 @@ void UHarmonyLinkGraphics::SetSetting(const EProfile Profile, const FName Settin
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Applying '%s': Value='%s', Type='%s' to profile '%s'."), *Setting.ToString(), *TypeString, *ValueString, *ProfileName->ToString());
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Applying '%s': Value='%s', Type='%s' to profile '%s'."), *Setting.ToString(), *TypeString, *ValueString, *ProfileName->ToString());
|
||||||
|
|
||||||
// Find the settings associated with the profile
|
// Find the settings associated with the profile
|
||||||
FSettingsProfile* SettingsProfile = _Profiles.Find(Profile);
|
FSettingsProfile* SettingsProfile = _Profiles.Find(Profile);
|
||||||
|
|
||||||
if (!SettingsProfile)
|
if (!SettingsProfile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -246,7 +245,7 @@ void UHarmonyLinkGraphics::SetSetting(const EProfile Profile, const FName Settin
|
||||||
|
|
||||||
UHarmonyLinkGraphics* UHarmonyLinkGraphics::GetSettings()
|
UHarmonyLinkGraphics* UHarmonyLinkGraphics::GetSettings()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, VeryVerbose, TEXT("GetSettings called."));
|
UE_LOG(LogHarmonyLinkSettings, VeryVerbose, TEXT("GetSettings called."));
|
||||||
// Check if we already initialised
|
// Check if we already initialised
|
||||||
if (_INSTANCE)
|
if (_INSTANCE)
|
||||||
{
|
{
|
||||||
|
@ -262,7 +261,7 @@ UHarmonyLinkGraphics* UHarmonyLinkGraphics::GetSettings()
|
||||||
|
|
||||||
FSettingsProfile UHarmonyLinkGraphics::GetSettingProfile(const EProfile Profile)
|
FSettingsProfile UHarmonyLinkGraphics::GetSettingProfile(const EProfile Profile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("GetSettingProfile called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("GetSettingProfile called."));
|
||||||
// Ignore if HarmonyLinkSettings is disabled
|
// Ignore if HarmonyLinkSettings is disabled
|
||||||
if (Profile == EProfile::NONE)
|
if (Profile == EProfile::NONE)
|
||||||
{
|
{
|
||||||
|
@ -274,7 +273,7 @@ FSettingsProfile UHarmonyLinkGraphics::GetSettingProfile(const EProfile Profile)
|
||||||
|
|
||||||
if (!ProfileName)
|
if (!ProfileName)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Profile not found."));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Profile not found."));
|
||||||
return FSettingsProfile();
|
return FSettingsProfile();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -283,7 +282,7 @@ FSettingsProfile UHarmonyLinkGraphics::GetSettingProfile(const EProfile Profile)
|
||||||
|
|
||||||
if (!SettingsProfile)
|
if (!SettingsProfile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
||||||
return FSettingsProfile();
|
return FSettingsProfile();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -292,29 +291,29 @@ FSettingsProfile UHarmonyLinkGraphics::GetSettingProfile(const EProfile Profile)
|
||||||
|
|
||||||
EProfile UHarmonyLinkGraphics::GetActiveProfile() const
|
EProfile UHarmonyLinkGraphics::GetActiveProfile() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("GetActiveProfile called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("GetActiveProfile called."));
|
||||||
return _ActiveProfile;
|
return _ActiveProfile;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::SetAutomaticSwitching(const bool bAutomaticSwitch)
|
void UHarmonyLinkGraphics::SetAutomaticSwitching(const bool bAutomaticSwitch)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("SetAutomaticSwitching called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("SetAutomaticSwitching called."));
|
||||||
_bAutomaticSwitch = bAutomaticSwitch;
|
_bAutomaticSwitch = bAutomaticSwitch;
|
||||||
OnAutomaticSwitchChanged.Broadcast(_bAutomaticSwitch);
|
OnAutomaticSwitchChanged.Broadcast(_bAutomaticSwitch);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UHarmonyLinkGraphics::GetAutomaticSwitching() const
|
bool UHarmonyLinkGraphics::GetAutomaticSwitching() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("GetAutomaticSwitching called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("GetAutomaticSwitching called."));
|
||||||
return _bAutomaticSwitch;
|
return _bAutomaticSwitch;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::DestroySettings()
|
void UHarmonyLinkGraphics::DestroySettings()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("DestroySettings called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("DestroySettings called."));
|
||||||
if (_INSTANCE)
|
if (_INSTANCE)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Destroying UHarmonyLinkGraphics."))
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Destroying UHarmonyLinkGraphics."))
|
||||||
FWorldDelegates::OnPostWorldInitialization.RemoveAll(_INSTANCE);
|
FWorldDelegates::OnPostWorldInitialization.RemoveAll(_INSTANCE);
|
||||||
FWorldDelegates::OnPreWorldFinishDestroy.RemoveAll(_INSTANCE);
|
FWorldDelegates::OnPreWorldFinishDestroy.RemoveAll(_INSTANCE);
|
||||||
_INSTANCE->RemoveFromRoot();
|
_INSTANCE->RemoveFromRoot();
|
||||||
|
@ -333,7 +332,7 @@ void UHarmonyLinkGraphics::DestroySettings()
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::Init()
|
void UHarmonyLinkGraphics::Init()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("HarmonyLinkGraphics initialized."));
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("HarmonyLinkGraphics initialized."));
|
||||||
if (_INSTANCE != this)
|
if (_INSTANCE != this)
|
||||||
{
|
{
|
||||||
if (_INSTANCE)
|
if (_INSTANCE)
|
||||||
|
@ -349,11 +348,11 @@ void UHarmonyLinkGraphics::Init()
|
||||||
FWorldDelegates::OnPostWorldInitialization.AddStatic(&UHarmonyLinkGraphics::OnPostWorldInitialization);
|
FWorldDelegates::OnPostWorldInitialization.AddStatic(&UHarmonyLinkGraphics::OnPostWorldInitialization);
|
||||||
FWorldDelegates::OnPreWorldFinishDestroy.AddStatic(&UHarmonyLinkGraphics::OnWorldEnd);
|
FWorldDelegates::OnPreWorldFinishDestroy.AddStatic(&UHarmonyLinkGraphics::OnWorldEnd);
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Init called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Init called."));
|
||||||
|
|
||||||
if (!HarmonyLinkLib::HL_Init())
|
if (!UHarmonyLinkLibrary::IsInitialised())
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Fatal, TEXT("Failed to initialise HarmonyLinkLib!"));
|
UE_LOG(LogHarmonyLinkSettings, Fatal, TEXT("Failed to initialise HarmonyLinkLib!"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -376,7 +375,7 @@ void UHarmonyLinkGraphics::Init()
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::Intermal_SaveConfig(const bool bDefaultConfig) const
|
void UHarmonyLinkGraphics::Intermal_SaveConfig(const bool bDefaultConfig) const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Intermal_SaveConfig called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Intermal_SaveConfig called."));
|
||||||
QUICK_SCOPE_CYCLE_COUNTER(HarmonyLinkGraphics_SaveConfig);
|
QUICK_SCOPE_CYCLE_COUNTER(HarmonyLinkGraphics_SaveConfig);
|
||||||
|
|
||||||
const FString Filename = GetConfigDirectoryFile(bDefaultConfig);
|
const FString Filename = GetConfigDirectoryFile(bDefaultConfig);
|
||||||
|
@ -386,14 +385,14 @@ void UHarmonyLinkGraphics::Intermal_SaveConfig(const bool bDefaultConfig) const
|
||||||
// Save the _bAutomaticSwitch variable
|
// Save the _bAutomaticSwitch variable
|
||||||
GConfig->SetBool(*SectionName, *KeyName, _bAutomaticSwitch, Filename);
|
GConfig->SetBool(*SectionName, *KeyName, _bAutomaticSwitch, Filename);
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Saving bAutomaticSwitch: %s"), _bAutomaticSwitch ? TEXT("true") : TEXT("false"));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Saving bAutomaticSwitch: %s"), _bAutomaticSwitch ? TEXT("true") : TEXT("false"));
|
||||||
|
|
||||||
for (const TPair<EProfile, FSettingsProfile>& Profile : _Profiles)
|
for (const TPair<EProfile, FSettingsProfile>& Profile : _Profiles)
|
||||||
{
|
{
|
||||||
SaveSection(Profile.Value, bDefaultConfig);
|
SaveSection(Profile.Value, bDefaultConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Flushing file: '%s'"), *Filename);
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Flushing file: '%s'"), *Filename);
|
||||||
GetConfig()->Dirty = true;
|
GetConfig()->Dirty = true;
|
||||||
// You'd think that Write would actually write something but for some
|
// You'd think that Write would actually write something but for some
|
||||||
// reason even if it outputs a success the file doesn't actually get created.
|
// reason even if it outputs a success the file doesn't actually get created.
|
||||||
|
@ -404,7 +403,7 @@ void UHarmonyLinkGraphics::Intermal_SaveConfig(const bool bDefaultConfig) const
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::Tick()
|
void UHarmonyLinkGraphics::Tick()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, VeryVerbose, TEXT("Tick called."));
|
UE_LOG(LogHarmonyLinkSettings, VeryVerbose, TEXT("Tick called."));
|
||||||
const FBattery BatteryStatus = UHarmonyLinkLibrary::GetBatteryStatus();
|
const FBattery BatteryStatus = UHarmonyLinkLibrary::GetBatteryStatus();
|
||||||
|
|
||||||
if (BatteryStatus.BatteryPercent != _LastBatteryPercentage)
|
if (BatteryStatus.BatteryPercent != _LastBatteryPercentage)
|
||||||
|
@ -439,18 +438,18 @@ void UHarmonyLinkGraphics::Tick()
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::CreateDefaultConfigFile() const
|
void UHarmonyLinkGraphics::CreateDefaultConfigFile() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("CreateDefaultConfigFile called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("CreateDefaultConfigFile called."));
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Creating default config file."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Creating default config file."));
|
||||||
|
|
||||||
LoadDefaults();
|
LoadDefaults();
|
||||||
Intermal_SaveConfig(true);
|
Intermal_SaveConfig(true);
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Default config file created."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Default config file created."));
|
||||||
}
|
}
|
||||||
|
|
||||||
FString UHarmonyLinkGraphics::GetConfigDirectoryFile(const bool bDefaultFolder)
|
FString UHarmonyLinkGraphics::GetConfigDirectoryFile(const bool bDefaultFolder)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("GetConfigDirectoryFile called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("GetConfigDirectoryFile called."));
|
||||||
FString ConfigFileName = bDefaultFolder ? TEXT("DefaultHarmonyLink.ini") : TEXT("HarmonyLink.ini");
|
FString ConfigFileName = bDefaultFolder ? TEXT("DefaultHarmonyLink.ini") : TEXT("HarmonyLink.ini");
|
||||||
|
|
||||||
FString ConfigDirectory = bDefaultFolder ? FPaths::ProjectConfigDir() : FPaths::Combine(FPaths::GeneratedConfigDir(), UGameplayStatics::GetPlatformName());
|
FString ConfigDirectory = bDefaultFolder ? FPaths::ProjectConfigDir() : FPaths::Combine(FPaths::GeneratedConfigDir(), UGameplayStatics::GetPlatformName());
|
||||||
|
@ -460,7 +459,7 @@ FString UHarmonyLinkGraphics::GetConfigDirectoryFile(const bool bDefaultFolder)
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::SaveSection(const FSettingsProfile& SettingsProfile, const bool bDefaultConfig, const bool bFlush) const
|
void UHarmonyLinkGraphics::SaveSection(const FSettingsProfile& SettingsProfile, const bool bDefaultConfig, const bool bFlush) const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("SaveSection called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("SaveSection called."));
|
||||||
if (GConfig)
|
if (GConfig)
|
||||||
{
|
{
|
||||||
const FString Filename = GetConfigDirectoryFile(bDefaultConfig);
|
const FString Filename = GetConfigDirectoryFile(bDefaultConfig);
|
||||||
|
@ -493,10 +492,10 @@ void UHarmonyLinkGraphics::SaveSection(const FSettingsProfile& SettingsProfile,
|
||||||
GConfig->SetString(*SettingsProfile.SectionName.ToString(), *Setting.Key.ToString(), *ConfigValue, Filename);
|
GConfig->SetString(*SettingsProfile.SectionName.ToString(), *Setting.Key.ToString(), *ConfigValue, Filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Saving config file: '%s'"), *Filename);
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Saving config file: '%s'"), *Filename);
|
||||||
if (bFlush)
|
if (bFlush)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Flushing file: '%s'"), *Filename);
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Flushing file: '%s'"), *Filename);
|
||||||
GConfig->Flush(false, Filename);
|
GConfig->Flush(false, Filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -504,7 +503,7 @@ void UHarmonyLinkGraphics::SaveSection(const FSettingsProfile& SettingsProfile,
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::LoadDefaults() const
|
void UHarmonyLinkGraphics::LoadDefaults() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("LoadDefaults called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("LoadDefaults called."));
|
||||||
|
|
||||||
_Profiles.Reset();
|
_Profiles.Reset();
|
||||||
|
|
||||||
|
@ -525,11 +524,11 @@ void UHarmonyLinkGraphics::LoadDefaults() const
|
||||||
|
|
||||||
bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("ApplyProfileInternal called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("ApplyProfileInternal called."));
|
||||||
// If the profile is None, revert to the original user game settings
|
// If the profile is None, revert to the original user game settings
|
||||||
if (Profile == EProfile::NONE)
|
if (Profile == EProfile::NONE)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Reverting to original user game settings."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Reverting to original user game settings."));
|
||||||
|
|
||||||
if (UGameUserSettings* UserSettings = GEngine->GetGameUserSettings())
|
if (UGameUserSettings* UserSettings = GEngine->GetGameUserSettings())
|
||||||
{
|
{
|
||||||
|
@ -537,11 +536,11 @@ bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
||||||
UserSettings->ApplySettings(true);
|
UserSettings->ApplySettings(true);
|
||||||
_ActiveProfile = EProfile::NONE;
|
_ActiveProfile = EProfile::NONE;
|
||||||
OnProfileChanged.Broadcast(_ActiveProfile);
|
OnProfileChanged.Broadcast(_ActiveProfile);
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Original user game settings applied."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Original user game settings applied."));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("Failed to get user game settings."));
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("Failed to get user game settings."));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -551,18 +550,18 @@ bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
||||||
|
|
||||||
if (!ProfileName)
|
if (!ProfileName)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Profile not found."));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Profile not found."));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Applying profile %s."), *ProfileName->ToString());
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Applying profile %s."), *ProfileName->ToString());
|
||||||
|
|
||||||
// Find the settings associated with the profile
|
// Find the settings associated with the profile
|
||||||
FSettingsProfile* SettingsProfile = _Profiles.Find(Profile);
|
FSettingsProfile* SettingsProfile = _Profiles.Find(Profile);
|
||||||
|
|
||||||
if (!SettingsProfile)
|
if (!SettingsProfile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("No settings found for profile %s."), *ProfileName->ToString());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -573,7 +572,7 @@ bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
||||||
for (const TPair<FName, FHLConfigValue>& Setting : SettingsProfile->Settings)
|
for (const TPair<FName, FHLConfigValue>& Setting : SettingsProfile->Settings)
|
||||||
{
|
{
|
||||||
// Example of logging each setting being applied
|
// Example of logging each setting being applied
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Patching CVar override: %s = %s"),
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Patching CVar override: %s = %s"),
|
||||||
*Setting.Key.ToString(), *Setting.Value.ToString());
|
*Setting.Key.ToString(), *Setting.Value.ToString());
|
||||||
|
|
||||||
ApplySetting(Setting);
|
ApplySetting(Setting);
|
||||||
|
@ -587,10 +586,10 @@ bool UHarmonyLinkGraphics::ApplyProfileInternal(const EProfile Profile)
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::InitializationValues IVS)
|
void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::InitializationValues IVS)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("OnPostWorldInitialization called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("OnPostWorldInitialization called."));
|
||||||
if (!World || !World->IsValidLowLevel())
|
if (!World || !World->IsValidLowLevel())
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed to Hook into World Initialisation!"))
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed to Hook into World Initialisation!"))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -601,7 +600,7 @@ void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::Init
|
||||||
FTimerManager* TimerManager = &World->GetTimerManager();
|
FTimerManager* TimerManager = &World->GetTimerManager();
|
||||||
if (!TimerManager)
|
if (!TimerManager)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed get TimerManager!"))
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed get TimerManager!"))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -612,7 +611,7 @@ void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::Init
|
||||||
{
|
{
|
||||||
if (!GetSettings())
|
if (!GetSettings())
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("'This' is destroyed, Clearing timer."))
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("'This' is destroyed, Clearing timer."))
|
||||||
if (TimerManager)
|
if (TimerManager)
|
||||||
{
|
{
|
||||||
TimerManager->ClearTimer(_TickTimerHandle);
|
TimerManager->ClearTimer(_TickTimerHandle);
|
||||||
|
@ -624,12 +623,12 @@ void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::Init
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Error: Timer already exists."));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Error: Timer already exists."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("'This' is nullptr!"));
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("'This' is nullptr!"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -640,10 +639,10 @@ void UHarmonyLinkGraphics::OnPostWorldInitialization(UWorld* World, UWorld::Init
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::OnWorldEnd(UWorld* World)
|
void UHarmonyLinkGraphics::OnWorldEnd(UWorld* World)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("OnWorldEnd(UWorld* World) called."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("OnWorldEnd(UWorld* World) called."));
|
||||||
if (!World)
|
if (!World)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("World Already destroyed"))
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("World Already destroyed"))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -663,7 +662,7 @@ void UHarmonyLinkGraphics::OnWorldEnd(UWorld* World)
|
||||||
|
|
||||||
bool UHarmonyLinkGraphics::ApplyProfile(const EProfile Profile, const bool bDisableAutomaticSwitch)
|
bool UHarmonyLinkGraphics::ApplyProfile(const EProfile Profile, const bool bDisableAutomaticSwitch)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Applying Profile."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Applying Profile."));
|
||||||
// Manual profile change, turn off automatic switching
|
// Manual profile change, turn off automatic switching
|
||||||
if (bDisableAutomaticSwitch)
|
if (bDisableAutomaticSwitch)
|
||||||
{
|
{
|
||||||
|
@ -675,7 +674,7 @@ bool UHarmonyLinkGraphics::ApplyProfile(const EProfile Profile, const bool bDisa
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::ApplySetting(const TPair<FName, FHLConfigValue>& Setting)
|
void UHarmonyLinkGraphics::ApplySetting(const TPair<FName, FHLConfigValue>& Setting)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Applying settings."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Applying settings."));
|
||||||
// Apply the setting based on the key (CVar)
|
// Apply the setting based on the key (CVar)
|
||||||
IConsoleManager& ConsoleManager = IConsoleManager::Get();
|
IConsoleManager& ConsoleManager = IConsoleManager::Get();
|
||||||
IConsoleVariable* CVar = ConsoleManager.FindConsoleVariable(*Setting.Key.ToString());
|
IConsoleVariable* CVar = ConsoleManager.FindConsoleVariable(*Setting.Key.ToString());
|
||||||
|
@ -697,31 +696,31 @@ void UHarmonyLinkGraphics::ApplySetting(const TPair<FName, FHLConfigValue>& Sett
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("Unsupported value type for setting: %s"), *Setting.Key.ToString());
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("Unsupported value type for setting: %s"), *Setting.Key.ToString());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("Console variable not found: %s"), *Setting.Key.ToString());
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("Console variable not found: %s"), *Setting.Key.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::DebugPrintProfiles() const
|
void UHarmonyLinkGraphics::DebugPrintProfiles() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("DebugPrintProfiles started."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("DebugPrintProfiles started."));
|
||||||
|
|
||||||
for (TPair<EProfile, FSettingsProfile> Profile : _Profiles)
|
for (TPair<EProfile, FSettingsProfile> Profile : _Profiles)
|
||||||
{
|
{
|
||||||
PrintDebugSection(Profile.Value);
|
PrintDebugSection(Profile.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("DebugPrintProfiles completed."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("DebugPrintProfiles completed."));
|
||||||
}
|
}
|
||||||
|
|
||||||
FConfigFile* UHarmonyLinkGraphics::GetConfig() const
|
FConfigFile* UHarmonyLinkGraphics::GetConfig() const
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("GetConfig Called."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("GetConfig Called."));
|
||||||
if (_ConfigFile)
|
if (_ConfigFile)
|
||||||
{
|
{
|
||||||
return _ConfigFile.Get();
|
return _ConfigFile.Get();
|
||||||
|
@ -731,7 +730,7 @@ FConfigFile* UHarmonyLinkGraphics::GetConfig() const
|
||||||
|
|
||||||
if (!ConfigFile)
|
if (!ConfigFile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("Config file not found, attempting to read DefaultHarmonyLink.ini."));
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("Config file not found, attempting to read DefaultHarmonyLink.ini."));
|
||||||
// Look in ProjectFolder->Config->DefaultHarmonyLink.ini
|
// Look in ProjectFolder->Config->DefaultHarmonyLink.ini
|
||||||
ConfigFile = GConfig->Find(GetConfigDirectoryFile(true), true);
|
ConfigFile = GConfig->Find(GetConfigDirectoryFile(true), true);
|
||||||
}
|
}
|
||||||
|
@ -744,14 +743,14 @@ FConfigFile* UHarmonyLinkGraphics::GetConfig() const
|
||||||
|
|
||||||
if (ConfigFile)
|
if (ConfigFile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Verbose, TEXT("Setting up config."));
|
UE_LOG(LogHarmonyLinkSettings, Verbose, TEXT("Setting up config."));
|
||||||
ConfigFile->Name = "HarmonyLink";
|
ConfigFile->Name = "HarmonyLink";
|
||||||
LoadSettingsFromConfig(ConfigFile);
|
LoadSettingsFromConfig(ConfigFile);
|
||||||
_ConfigFile = MakeShareable(ConfigFile);
|
_ConfigFile = MakeShareable(ConfigFile);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Error, TEXT("Failed to make config variable!"))
|
UE_LOG(LogHarmonyLinkSettings, Error, TEXT("Failed to make config variable!"))
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -760,7 +759,7 @@ FConfigFile* UHarmonyLinkGraphics::GetConfig() const
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::PrintDebugSection(FSettingsProfile& SettingsProfile)
|
void UHarmonyLinkGraphics::PrintDebugSection(FSettingsProfile& SettingsProfile)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("[%s]"), *SettingsProfile.SectionName.ToString());
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("[%s]"), *SettingsProfile.SectionName.ToString());
|
||||||
|
|
||||||
for (const auto& Setting : SettingsProfile.Settings)
|
for (const auto& Setting : SettingsProfile.Settings)
|
||||||
{
|
{
|
||||||
|
@ -787,13 +786,13 @@ void UHarmonyLinkGraphics::PrintDebugSection(FSettingsProfile& SettingsProfile)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
UE_LOG(LogHarmonyLink, Warning, TEXT("Key: %s = V=%s, T=%s "), *Setting.Key.ToString(), *ValueString, *TypeString);
|
UE_LOG(LogHarmonyLinkSettings, Warning, TEXT("Key: %s = V=%s, T=%s "), *Setting.Key.ToString(), *ValueString, *TypeString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UHarmonyLinkGraphics::ResetInstance()
|
void UHarmonyLinkGraphics::ResetInstance()
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("Resetting instance."));
|
UE_LOG(LogHarmonyLinkSettings, Log, TEXT("Resetting instance."));
|
||||||
_INSTANCE->DestroySettings();
|
_INSTANCE->DestroySettings();
|
||||||
GetSettings();
|
GetSettings();
|
||||||
}
|
}
|
13
Source/HarmonyLinkSettings/Public/HarmonyLinkSettings.h
Normal file
13
Source/HarmonyLinkSettings/Public/HarmonyLinkSettings.h
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
|
DECLARE_LOG_CATEGORY_EXTERN(LogHarmonyLinkSettings, Log, All);
|
||||||
|
|
||||||
|
class FHarmonyLinkSettingsModule : public IModuleInterface
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual void StartupModule() override;
|
||||||
|
virtual void ShutdownModule() override;
|
||||||
|
};
|
|
@ -17,7 +17,7 @@ DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnBatteryLevelChanged, int32, Batte
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
UCLASS(Blueprintable, config="HarmonyLink")
|
UCLASS(Blueprintable, config="HarmonyLink")
|
||||||
class HARMONYLINK_API UHarmonyLinkGraphics : public UBlueprintFunctionLibrary
|
class HARMONYLINKSETTINGS_API UHarmonyLinkGraphics : public UBlueprintFunctionLibrary
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ public:
|
||||||
* @note Uses UE_LOG for logging the update process and any errors.
|
* @note Uses UE_LOG for logging the update process and any errors.
|
||||||
*/
|
*/
|
||||||
UFUNCTION(BlueprintCallable, Category="HarmonyLink Settings")
|
UFUNCTION(BlueprintCallable, Category="HarmonyLink Settings")
|
||||||
void SetSetting(EProfile Profile, FName Setting, FHLConfigValue Value);
|
void SetSetting(EProfile Profile, FName Setting, const FHLConfigValue& Value);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Applies the specified graphics profile.
|
* @brief Applies the specified graphics profile.
|
|
@ -3,9 +3,9 @@
|
||||||
using UnrealBuildTool;
|
using UnrealBuildTool;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
public class HarmonyLink : ModuleRules
|
public class HarmonyLinkUE : ModuleRules
|
||||||
{
|
{
|
||||||
public HarmonyLink(ReadOnlyTargetRules Target) : base(Target)
|
public HarmonyLinkUE(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// Copyright (C) 2024 Jordon Brooks
|
// Copyright (C) 2024 Jordon Brooks
|
||||||
|
|
||||||
#include "HarmonyLinkLibrary.h"
|
#include "HarmonyLinkLibrary.h"
|
||||||
#include "HarmonyLink.h"
|
#include "HarmonyLinkUE.h"
|
||||||
|
|
||||||
#include "HarmonyLinkLib.h"
|
#include "HarmonyLinkLib.h"
|
||||||
|
|
||||||
|
@ -20,9 +20,13 @@ FCPUInfo UHarmonyLinkLibrary::CachedCPUInfo = FCPUInfo();
|
||||||
FDevice UHarmonyLinkLibrary::CachedDeviceInfo = FDevice();
|
FDevice UHarmonyLinkLibrary::CachedDeviceInfo = FDevice();
|
||||||
FOSVerInfo UHarmonyLinkLibrary::CachedOSInfo = FOSVerInfo();
|
FOSVerInfo UHarmonyLinkLibrary::CachedOSInfo = FOSVerInfo();
|
||||||
|
|
||||||
|
bool UHarmonyLinkLibrary::bIsInitialised = false;
|
||||||
|
|
||||||
UHarmonyLinkLibrary::UHarmonyLinkLibrary()
|
UHarmonyLinkLibrary::UHarmonyLinkLibrary()
|
||||||
{
|
{
|
||||||
if (!HarmonyLinkLib::HL_Init())
|
bIsInitialised = HarmonyLinkLib::HL_Init();
|
||||||
|
|
||||||
|
if (!bIsInitialised)
|
||||||
{
|
{
|
||||||
UE_LOG(LogHarmonyLink, Fatal, TEXT("Failed to initialise HarmonyLinkLib!"));
|
UE_LOG(LogHarmonyLink, Fatal, TEXT("Failed to initialise HarmonyLinkLib!"));
|
||||||
return;
|
return;
|
||||||
|
@ -31,6 +35,11 @@ UHarmonyLinkLibrary::UHarmonyLinkLibrary()
|
||||||
UE_LOG(LogHarmonyLink, Log, TEXT("HarmonyLinkLib Initialised!"));
|
UE_LOG(LogHarmonyLink, Log, TEXT("HarmonyLinkLib Initialised!"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool UHarmonyLinkLibrary::IsInitialised()
|
||||||
|
{
|
||||||
|
return bIsInitialised;
|
||||||
|
}
|
||||||
|
|
||||||
bool UHarmonyLinkLibrary::IsWine(bool bForce)
|
bool UHarmonyLinkLibrary::IsWine(bool bForce)
|
||||||
{
|
{
|
||||||
if (!bIsWineCached || bForce)
|
if (!bIsWineCached || bForce)
|
22
Source/HarmonyLinkUE/Private/HarmonyLinkUE.cpp
Normal file
22
Source/HarmonyLinkUE/Private/HarmonyLinkUE.cpp
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
// Copyright (C) 2024 Jordon Brooks
|
||||||
|
|
||||||
|
#include "HarmonyLinkUE.h"
|
||||||
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
|
#define LOCTEXT_NAMESPACE "FHarmonyLinkUEModule"
|
||||||
|
|
||||||
|
DEFINE_LOG_CATEGORY(LogHarmonyLink);
|
||||||
|
|
||||||
|
void FHarmonyLinkUEModule::StartupModule()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void FHarmonyLinkUEModule::ShutdownModule()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef LOCTEXT_NAMESPACE
|
||||||
|
|
||||||
|
IMPLEMENT_MODULE(FHarmonyLinkUEModule, HarmonyLinkUE)
|
|
@ -16,13 +16,17 @@
|
||||||
* Library of static functions for accessing various system information, particularly for the HarmonyLink project.
|
* Library of static functions for accessing various system information, particularly for the HarmonyLink project.
|
||||||
*/
|
*/
|
||||||
UCLASS()
|
UCLASS()
|
||||||
class HARMONYLINK_API UHarmonyLinkLibrary : public UBlueprintFunctionLibrary
|
class HARMONYLINKUE_API UHarmonyLinkLibrary : public UBlueprintFunctionLibrary
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UHarmonyLinkLibrary();
|
UHarmonyLinkLibrary();
|
||||||
|
|
||||||
|
// IsInitialised
|
||||||
|
UFUNCTION(BlueprintCallable, BlueprintPure, Category="HarmonyLink")
|
||||||
|
static bool IsInitialised();
|
||||||
|
|
||||||
// Checks if the game is running under Wine.
|
// Checks if the game is running under Wine.
|
||||||
UFUNCTION(BlueprintCallable, BlueprintPure, Category="HarmonyLink")
|
UFUNCTION(BlueprintCallable, BlueprintPure, Category="HarmonyLink")
|
||||||
static bool IsWine(bool bForce = false);
|
static bool IsWine(bool bForce = false);
|
||||||
|
@ -66,4 +70,6 @@ private:
|
||||||
static FCPUInfo CachedCPUInfo;
|
static FCPUInfo CachedCPUInfo;
|
||||||
static FDevice CachedDeviceInfo;
|
static FDevice CachedDeviceInfo;
|
||||||
static FOSVerInfo CachedOSInfo;
|
static FOSVerInfo CachedOSInfo;
|
||||||
|
|
||||||
|
static bool bIsInitialised;
|
||||||
};
|
};
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
DECLARE_LOG_CATEGORY_EXTERN(LogHarmonyLink, All, All);
|
DECLARE_LOG_CATEGORY_EXTERN(LogHarmonyLink, All, All);
|
||||||
|
|
||||||
class FHarmonyLinkModule : public IModuleInterface
|
class FHarmonyLinkUEModule : public IModuleInterface
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue