Files
FlaxEngine/Source/Engine/Platform/Linux/LinuxPlatformSettings.h
2020-12-07 23:40:54 +01:00

90 lines
2.3 KiB
C++

// Copyright (c) 2012-2020 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_LINUX || USE_EDITOR
#include "Engine/Core/Config/PlatformSettingsBase.h"
/// <summary>
/// Linux platform settings.
/// </summary>
/// <seealso cref="Settings{LinuxPlatformSettings}" />
class LinuxPlatformSettings : public Settings<LinuxPlatformSettings>
{
public:
/// <summary>
/// The default game window mode.
/// </summary>
GameWindowMode WindowMode = GameWindowMode::Windowed;
/// <summary>
/// The default game window width (in pixels).
/// </summary>
int32 ScreenWidth = 1280;
/// <summary>
/// The default game window height (in pixels).
/// </summary>
int32 ScreenHeight = 720;
/// <summary>
/// Enables game running when application window loses focus.
/// </summary>
bool RunInBackground = false;
/// <summary>
/// Enables resizing the game window by the user.
/// </summary>
bool ResizableWindow = false;
/// <summary>
/// Limits maximum amount of concurrent game instances running to one, otherwise user may launch application more than once.
/// </summary>
bool ForceSingleInstance = false;
/// <summary>
/// Custom icon texture (asset id) to use for the application (overrides the default one).
/// </summary>
Guid OverrideIcon = Guid::Empty;
/// <summary>
/// Enables support for Vulkan. Disabling it reduces compiled shaders count.
/// </summary>
bool SupportVulkan = true;
public:
// [Settings]
void RestoreDefault() final override
{
WindowMode = GameWindowMode::Windowed;
ScreenWidth = 1280;
ScreenHeight = 720;
RunInBackground = false;
ResizableWindow = false;
ForceSingleInstance = false;
OverrideIcon = Guid::Empty;
SupportVulkan = true;
}
void Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) final override
{
DESERIALIZE(WindowMode);
DESERIALIZE(ScreenWidth);
DESERIALIZE(ScreenHeight);
DESERIALIZE(RunInBackground);
DESERIALIZE(ResizableWindow);
DESERIALIZE(ForceSingleInstance);
DESERIALIZE(OverrideIcon);
DESERIALIZE(SupportVulkan);
}
};
#if PLATFORM_LINUX
typedef LinuxPlatformSettings PlatformSettings;
#endif
#endif