2019-09-02 18:03:57 +02:00
|
|
|
using System.Collections.Generic;
|
2019-02-11 13:00:32 +01:00
|
|
|
using System.IO;
|
2020-04-30 14:07:41 +02:00
|
|
|
using Ryujinx.Common.Configuration.Hid;
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.Common.Utilities;
|
2019-12-21 20:52:31 +01:00
|
|
|
using Ryujinx.Configuration.System;
|
|
|
|
using Ryujinx.Configuration.Ui;
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2019-12-21 20:52:31 +01:00
|
|
|
namespace Ryujinx.Configuration
|
2019-02-11 13:00:32 +01:00
|
|
|
{
|
2019-12-21 20:52:31 +01:00
|
|
|
public class ConfigurationFileFormat
|
2019-02-11 13:00:32 +01:00
|
|
|
{
|
2020-03-25 23:23:21 +01:00
|
|
|
/// <summary>
|
|
|
|
/// The current version of the file format
|
|
|
|
/// </summary>
|
2020-05-03 04:00:53 +02:00
|
|
|
public const int CurrentVersion = 6;
|
2020-03-25 23:23:21 +01:00
|
|
|
|
2019-12-21 20:52:31 +01:00
|
|
|
public int Version { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2020-03-30 23:38:52 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.
|
|
|
|
/// </summary>
|
|
|
|
public float MaxAnisotropy { get; set; }
|
|
|
|
|
2019-02-11 13:00:32 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Dumps shaders in this local directory
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public string GraphicsShadersDumpPath { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing debug log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableDebug { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing stub log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableStub { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing info log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableInfo { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing warning log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableWarn { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing error log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableError { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2019-06-16 03:31:18 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Enables printing guest log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableGuest { get; set; }
|
2019-06-16 03:31:18 +02:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables printing FS access log messages
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool LoggingEnableFsAccessLog { get; set; }
|
2019-06-16 03:31:18 +02:00
|
|
|
|
2019-02-11 13:00:32 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Controls which log messages are written to the log targets
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public LogClass[] LoggingFilteredClasses { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables logging to a file on disk
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableFileLog { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Change System Language
|
|
|
|
/// </summary>
|
2019-12-21 20:52:31 +01:00
|
|
|
public Language SystemLanguage { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2020-03-19 23:37:55 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Change System Region
|
|
|
|
/// </summary>
|
|
|
|
public Region SystemRegion { get; set; }
|
|
|
|
|
2020-03-25 23:23:21 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Change System TimeZone
|
|
|
|
/// </summary>
|
|
|
|
public string SystemTimeZone { get; set; }
|
|
|
|
|
2020-04-17 01:18:54 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Change System Time Offset in seconds
|
|
|
|
/// </summary>
|
|
|
|
public long SystemTimeOffset { get; set; }
|
|
|
|
|
2019-02-11 13:00:32 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables Docked Mode
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool DockedMode { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2019-05-30 22:27:43 +02:00
|
|
|
/// <summary>
|
2019-07-02 04:39:22 +02:00
|
|
|
/// Enables or disables Discord Rich Presence
|
2019-05-30 22:27:43 +02:00
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableDiscordIntegration { get; set; }
|
2019-05-30 22:27:43 +02:00
|
|
|
|
2019-02-11 13:00:32 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables Vertical Sync
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableVsync { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables or disables multi-core scheduling of threads
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableMulticoreScheduling { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enables integrity checks on Game content files
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableFsIntegrityChecks { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
2019-06-16 03:31:18 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Enables FS access log output to the console. Possible modes are 0-3
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public int FsGlobalAccessLogMode { get; set; }
|
2019-06-16 03:31:18 +02:00
|
|
|
|
2019-04-16 01:22:55 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Enable or disable ignoring missing services
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool IgnoreMissingServices { get; set; }
|
2019-04-16 01:22:55 +02:00
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Used to toggle columns in the GUI
|
|
|
|
/// </summary>
|
2019-11-29 05:32:51 +01:00
|
|
|
public GuiColumns GuiColumns { get; set; }
|
2019-09-02 18:03:57 +02: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 13:00:32 +01:00
|
|
|
|
2019-05-03 01:29:01 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Enable or disable keyboard support (Independent from controllers binding)
|
|
|
|
/// </summary>
|
2019-09-02 18:03:57 +02:00
|
|
|
public bool EnableKeyboard { get; set; }
|
2019-05-03 01:29:01 +02:00
|
|
|
|
2019-02-11 13:00:32 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Keyboard control bindings
|
|
|
|
/// </summary>
|
2020-05-03 04:00:53 +02:00
|
|
|
public List<KeyboardConfig> KeyboardConfig { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Controller control bindings
|
|
|
|
/// </summary>
|
2020-05-03 04:00:53 +02:00
|
|
|
public List<ControllerConfig> ControllerConfig { get; set; }
|
2019-02-11 13:00:32 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Loads a configuration file from disk
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path to the JSON configuration file</param>
|
2019-12-21 20:52:31 +01:00
|
|
|
public static ConfigurationFileFormat Load(string path)
|
2019-02-11 13:00:32 +01:00
|
|
|
{
|
2020-04-30 14:07:41 +02:00
|
|
|
return JsonHelper.DeserializeFromFile<ConfigurationFileFormat>(path);
|
2019-02-11 13:00:32 +01:00
|
|
|
}
|
|
|
|
|
2019-09-02 18:03:57 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Save a configuration file to disk
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The path to the JSON configuration file</param>
|
2019-12-21 20:52:31 +01:00
|
|
|
public void SaveConfig(string path)
|
2019-09-02 18:03:57 +02:00
|
|
|
{
|
2020-04-30 14:07:41 +02:00
|
|
|
File.WriteAllText(path, JsonHelper.Serialize(this, true));
|
2019-02-11 13:00:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|