aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ui.Common/Helper/CommandLineState.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.Ui.Common/Helper/CommandLineState.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Ryujinx.Ui.Common/Helper/CommandLineState.cs')
-rw-r--r--Ryujinx.Ui.Common/Helper/CommandLineState.cs88
1 files changed, 0 insertions, 88 deletions
diff --git a/Ryujinx.Ui.Common/Helper/CommandLineState.cs b/Ryujinx.Ui.Common/Helper/CommandLineState.cs
deleted file mode 100644
index 8ca7fba1..00000000
--- a/Ryujinx.Ui.Common/Helper/CommandLineState.cs
+++ /dev/null
@@ -1,88 +0,0 @@
-using Ryujinx.Common.Logging;
-using System.Collections.Generic;
-
-namespace Ryujinx.Ui.Common.Helper
-{
- public static class CommandLineState
- {
- public static string[] Arguments { get; private set; }
-
- public static bool? OverrideDockedMode { get; private set; }
- public static string OverrideGraphicsBackend { get; private set; }
- public static string BaseDirPathArg { get; private set; }
- public static string Profile { get; private set; }
- public static string LaunchPathArg { get; private set; }
- public static bool StartFullscreenArg { get; private set; }
-
- public static void ParseArguments(string[] args)
- {
- List<string> arguments = new();
-
- // Parse Arguments.
- for (int i = 0; i < args.Length; ++i)
- {
- string arg = args[i];
-
- switch (arg)
- {
- case "-r":
- case "--root-data-dir":
- if (i + 1 >= args.Length)
- {
- Logger.Error?.Print(LogClass.Application, $"Invalid option '{arg}'");
-
- continue;
- }
-
- BaseDirPathArg = args[++i];
-
- arguments.Add(arg);
- arguments.Add(args[i]);
- break;
- case "-p":
- case "--profile":
- if (i + 1 >= args.Length)
- {
- Logger.Error?.Print(LogClass.Application, $"Invalid option '{arg}'");
-
- continue;
- }
-
- Profile = args[++i];
-
- arguments.Add(arg);
- arguments.Add(args[i]);
- break;
- case "-f":
- case "--fullscreen":
- StartFullscreenArg = true;
-
- arguments.Add(arg);
- break;
- case "-g":
- case "--graphics-backend":
- if (i + 1 >= args.Length)
- {
- Logger.Error?.Print(LogClass.Application, $"Invalid option '{arg}'");
-
- continue;
- }
-
- OverrideGraphicsBackend = args[++i];
- break;
- case "--docked-mode":
- OverrideDockedMode = true;
- break;
- case "--handheld-mode":
- OverrideDockedMode = false;
- break;
- default:
- LaunchPathArg = arg;
- break;
- }
- }
-
- Arguments = arguments.ToArray();
- }
- }
-} \ No newline at end of file