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++)
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]}");
80 if(!
string.IsNullOrEmpty(Application.absoluteURL))
82 string urlData = Application.absoluteURL;
83 UDebug.Log($
"[PixoOSXPlatformUtilities] Parse from URL {urlData}");
87 UDebug.Log(
"[PixoOSXPlatformUtilities] Parsing arguments from commandline.");
90 Dictionary<string, string> parameters =
new Dictionary<string, string>();
93 for(
int argumentIndex = 1; argumentIndex < args.Length; argumentIndex++)
95 if (args[argumentIndex].StartsWith(
'-') && ((argumentIndex + 1) < args.Length))
97 parameters.Add(args[argumentIndex].Remove(0), args[argumentIndex + 1]);