28 public override bool OpenApplication(
string applicationPath,
string[] argumentKeys,
string[] argumentValues)
30 if (!
string.IsNullOrEmpty(applicationPath))
32 UDebug.Log(
"Application is empty.");
36 if (!File.Exists(applicationPath))
38 UDebug.Log($
"Application does not exist at {applicationPath}");
42 int argumentCount = Mathf.Max(argumentKeys.Length, argumentValues.Length);
43 if (argumentKeys.Length != argumentValues.Length)
45 UDebug.LogWarning(
"The number of argument keys and values are not equal. Extra arguments will not be provided and mapping could be messed up.");
48 string arguments =
"";
49 for (
int argumentIndex = 0; argumentIndex < argumentCount; argumentIndex++)
51 if (argumentIndex > 0)
56 arguments += $
"-{argumentKeys[argumentIndex]} \"{argumentValues[argumentIndex]}\"";
59 using (Process process =
new Process())
61 process.StartInfo.WorkingDirectory = applicationPath;
62 process.StartInfo.Arguments = arguments;
63 process.StartInfo.FileName = applicationPath;
74 return new Dictionary<string, string>();
76 string[] args = System.Environment.GetCommandLineArgs();
78 UDebug.Log($
"First argument: {args[0]}");
82 string urlData = args[1];
83 UDebug.Log(
"[PixoWindowsPlatformUtilities] Parse from URL.");
87 UDebug.Log(
"[PixoWindowsPlatformUtilities] Parsing arguments from commandline.");
88 Dictionary<string, string> parameters =
new Dictionary<string, string>();
91 for(
int argumentIndex = 1; argumentIndex < args.Length; argumentIndex++)
93 if (args[argumentIndex].StartsWith(
'-') && ((argumentIndex + 1) < args.Length))
95 parameters.Add(args[argumentIndex].Remove(0), args[argumentIndex + 1]);