Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PixoWindowsPlatformUtilities.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Diagnostics;
3using System.IO;
4using UnityEngine;
5using UDebug = UnityEngine.Debug;
6
7namespace PixoVR.Apex
8{
10 {
12 {
13
14 }
15
16 public override bool OpenURL(string url)
17 {
18 if (string.IsNullOrEmpty(url))
19 {
20 UDebug.Log("Url is empty or null.");
21 return false;
22 }
23
24 Application.OpenURL(url);
25 return true;
26 }
27
28 public override bool OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)
29 {
30 if (!string.IsNullOrEmpty(applicationPath))
31 {
32 UDebug.Log("Application is empty.");
33 return false;
34 }
35
36 if (!File.Exists(applicationPath))
37 {
38 UDebug.Log($"Application does not exist at {applicationPath}");
39 return false;
40 }
41
42 int argumentCount = Mathf.Max(argumentKeys.Length, argumentValues.Length);
43 if (argumentKeys.Length != argumentValues.Length)
44 {
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.");
46 }
47
48 string arguments = "";
49 for (int argumentIndex = 0; argumentIndex < argumentCount; argumentIndex++)
50 {
51 if (argumentIndex > 0)
52 arguments += " ";
53
54 // We use space here between the key and value as most OS's that are launched with arguments separate by spaces.
55 // We also escape our values to ensure that strings containing spaces get captured.
56 arguments += $"-{argumentKeys[argumentIndex]} \"{argumentValues[argumentIndex]}\"";
57 }
58
59 using (Process process = new Process())
60 {
61 process.StartInfo.WorkingDirectory = applicationPath;
62 process.StartInfo.Arguments = arguments;
63 process.StartInfo.FileName = applicationPath;
64 process.Start();
65 }
66
67 return true;
68 }
69
70 public override Dictionary<string, string> ParseApplicationArguments()
71 {
72#if UNITY_EDITOR
73 // We don't want to parse any parameters in the editor as it has its own list of arguments.
74 return new Dictionary<string, string>();
75#else
76 string[] args = System.Environment.GetCommandLineArgs();
77
78 UDebug.Log($"First argument: {args[0]}");
79
80 if(args.Length == 2)
81 {
82 string urlData = args[1];
83 UDebug.Log("[PixoWindowsPlatformUtilities] Parse from URL.");
84 return ParseURLArguments(urlData);
85 }
86
87 UDebug.Log("[PixoWindowsPlatformUtilities] Parsing arguments from commandline.");
88 Dictionary<string, string> parameters = new Dictionary<string, string>();
89
90 // We skip the first argument, as it's the executables name.
91 for(int argumentIndex = 1; argumentIndex < args.Length; argumentIndex++)
92 {
93 if (args[argumentIndex].StartsWith('-') && ((argumentIndex + 1) < args.Length))
94 {
95 parameters.Add(args[argumentIndex].Remove(0), args[argumentIndex + 1]);
96 argumentIndex++;
97 }
98 }
99
100 return parameters;
101#endif
102 }
103 }
104}
UnityEngine.Debug UDebug
virtual Dictionary< string, string > ParseURLArguments(string url)
override Dictionary< string, string > ParseApplicationArguments()
override bool OpenApplication(string applicationPath, string[] argumentKeys, string[] argumentValues)