2019-09-02 16:03:57 +00:00
|
|
|
using System.Collections.Generic;
|
2019-02-11 12:00:32 +00:00
|
|
|
using System.IO;
|
2020-08-02 14:41:24 +00:00
|
|
|
using Ryujinx.Common.Configuration;
|
2020-04-30 12:07:41 +00:00
|
|
|
using Ryujinx.Common.Configuration.Hid;
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.Common.Utilities;
|
2019-12-21 19:52:31 +00:00
|
|
|
using Ryujinx.Configuration.System;
|
|
|
|
using Ryujinx.Configuration.Ui;
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2019-12-21 19:52:31 +00:00
|
|
|
namespace Ryujinx.Configuration
|
2019-02-11 12:00:32 +00:00
|
|
|
{
|
2019-12-21 19:52:31 +00:00
|
|
|
public class ConfigurationFileFormat
|
2019-02-11 12:00:32 +00:00
|
|
|
{
|
2020-03-25 22:23:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The current version of the file format
|
|
|
|
/// </summary>
|
2021-01-14 22:30:52 +00:00
|
|
|
public const int CurrentVersion = 20;
|
2020-03-25 22:23:21 +00:00
|
|
|
|
2019-12-21 19:52:31 +00:00
|
|
|
public int Version { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-07-07 02:41:07 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Resolution Scale. An integer scale applied to applicable render targets. Values 1-4, or -1 to use a custom floating point scale instead.
|
|
|
|
/// </summary>
|
|
|
|
public int ResScale { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Custom Resolution Scale. A custom floating point scale applied to applicable render targets. Only active when Resolution Scale is -1.
|
|
|
|
/// </summary>
|
|
|
|
public float ResScaleCustom { get; set; }
|
|
|
|
|
2020-03-30 21:38:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.
|
|
|
|
/// </summary>
|
|
|
|
public float MaxAnisotropy { get; set; }
|
2020-12-16 02:19:07 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Aspect Ratio applied to the renderer window.
|
|
|
|
/// </summary>
|
|
|
|
public AspectRatio AspectRatio { get; set; }
|
2020-03-30 21:38:52 +00:00
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Dumps shaders in this local directory
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public string GraphicsShadersDumpPath { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing debug log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableDebug { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing stub log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableStub { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing info log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableInfo { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing warning log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableWarn { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing error log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableError { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2019-06-16 01:31:18 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables printing guest log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableGuest { get; set; }
|
2019-06-16 01:31:18 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing FS access log messages
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool LoggingEnableFsAccessLog { get; set; }
|
2019-06-16 01:31:18 +00:00
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Controls which log messages are written to the log targets
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public LogClass[] LoggingFilteredClasses { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-08-02 14:41:24 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Change Graphics API debug log level
|
|
|
|
/// </summary>
|
|
|
|
public GraphicsDebugLevel LoggingGraphicsDebugLevel { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables logging to a file on disk
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableFileLog { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Change System Language
|
|
|
|
/// </summary>
|
2019-12-21 19:52:31 +00:00
|
|
|
public Language SystemLanguage { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-03-19 22:37:55 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Change System Region
|
|
|
|
/// </summary>
|
|
|
|
public Region SystemRegion { get; set; }
|
|
|
|
|
2020-03-25 22:23:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Change System TimeZone
|
|
|
|
/// </summary>
|
|
|
|
public string SystemTimeZone { get; set; }
|
|
|
|
|
2020-04-16 23:18:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Change System Time Offset in seconds
|
|
|
|
/// </summary>
|
|
|
|
public long SystemTimeOffset { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables Docked Mode
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool DockedMode { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2019-05-30 20:27:43 +00:00
|
|
|
/// <summary>
|
2019-07-02 02:39:22 +00:00
|
|
|
/// Enables or disables Discord Rich Presence
|
2019-05-30 20:27:43 +00:00
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableDiscordIntegration { get; set; }
|
2019-05-30 20:27:43 +00:00
|
|
|
|
2020-09-29 20:05:25 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Checks for updates when Ryujinx starts when enabled
|
|
|
|
/// </summary>
|
|
|
|
public bool CheckUpdatesOnStart { get; set; }
|
|
|
|
|
2021-01-14 22:30:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Show "Confirm Exit" Dialog
|
|
|
|
/// </summary>
|
|
|
|
public bool ShowConfirmExit { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables Vertical Sync
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableVsync { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-11-12 23:15:34 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables Shader cache
|
|
|
|
/// </summary>
|
|
|
|
public bool EnableShaderCache { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables multi-core scheduling of threads
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableMulticoreScheduling { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-06-16 18:28:02 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables profiled translation cache persistency
|
|
|
|
/// </summary>
|
|
|
|
public bool EnablePtc { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables integrity checks on Game content files
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableFsIntegrityChecks { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2019-06-16 01:31:18 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enables FS access log output to the console. Possible modes are 0-3
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public int FsGlobalAccessLogMode { get; set; }
|
2019-06-16 01:31:18 +00:00
|
|
|
|
2020-07-03 23:16:49 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The selected audio backend
|
|
|
|
/// </summary>
|
|
|
|
public AudioBackend AudioBackend { get; set; }
|
|
|
|
|
2019-04-15 23:22:55 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enable or disable ignoring missing services
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool IgnoreMissingServices { get; set; }
|
2019-04-15 23:22:55 +00:00
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Used to toggle columns in the GUI
|
|
|
|
/// </summary>
|
2019-11-29 04:32:51 +00:00
|
|
|
public GuiColumns GuiColumns { get; set; }
|
2019-09-02 16:03:57 +00:00
|
|
|
|
2020-06-26 10:30:16 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Used to configure column sort settings in the GUI
|
|
|
|
/// </summary>
|
|
|
|
public ColumnSort ColumnSort { get; set; }
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A list of directories containing games to be used to load games into the games list
|
|
|
|
/// </summary>
|
|
|
|
public List<string> GameDirs { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enable or disable custom themes in the GUI
|
|
|
|
/// </summary>
|
|
|
|
public bool EnableCustomTheme { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Path to custom GUI theme
|
|
|
|
/// </summary>
|
|
|
|
public string CustomThemePath { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
2020-12-01 22:02:27 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Start games in fullscreen mode
|
|
|
|
/// </summary>
|
|
|
|
public bool StartFullscreen { get; set; }
|
|
|
|
|
2019-05-02 23:29:01 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enable or disable keyboard support (Independent from controllers binding)
|
|
|
|
/// </summary>
|
2019-09-02 16:03:57 +00:00
|
|
|
public bool EnableKeyboard { get; set; }
|
2019-05-02 23:29:01 +00:00
|
|
|
|
2020-06-26 10:30:16 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Hotkey Keyboard Bindings
|
|
|
|
/// </summary>
|
|
|
|
public KeyboardHotkeys Hotkeys { get; set; }
|
|
|
|
|
2019-02-11 12:00:32 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Keyboard control bindings
|
|
|
|
/// </summary>
|
2020-05-03 02:00:53 +00:00
|
|
|
public List<KeyboardConfig> KeyboardConfig { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Controller control bindings
|
|
|
|
/// </summary>
|
2020-05-03 02:00:53 +00:00
|
|
|
public List<ControllerConfig> ControllerConfig { get; set; }
|
2019-02-11 12:00:32 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Loads a configuration file from disk
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path to the JSON configuration file</param>
|
2019-12-21 19:52:31 +00:00
|
|
|
public static ConfigurationFileFormat Load(string path)
|
2019-02-11 12:00:32 +00:00
|
|
|
{
|
2020-04-30 12:07:41 +00:00
|
|
|
return JsonHelper.DeserializeFromFile<ConfigurationFileFormat>(path);
|
2019-02-11 12:00:32 +00:00
|
|
|
}
|
|
|
|
|
2019-09-02 16:03:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Save a configuration file to disk
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path to the JSON configuration file</param>
|
2019-12-21 19:52:31 +00:00
|
|
|
public void SaveConfig(string path)
|
2019-09-02 16:03:57 +00:00
|
|
|
{
|
2020-04-30 12:07:41 +00:00
|
|
|
File.WriteAllText(path, JsonHelper.Serialize(this, true));
|
2019-02-11 12:00:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|