Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PixoGenericPlatformUtilities.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using UnityEngine;
3
4namespace PixoVR.Apex
5{
7 {
9
10 public virtual bool OpenURL(string url)
11 {
12 return false;
13 }
14
15 public virtual bool OpenApplication(string applicationName, string[] argumentKeys, string[] argumentValues)
16 {
17 return false;
18 }
19
20 public virtual Dictionary<string, string> ParseApplicationArguments()
21 {
22 return null;
23 }
24
25 public virtual Dictionary<string, string> ParseURLArguments(string url)
26 {
27 Debug.Log($"Parsing URL Arguments {url}");
28 string urlData = url.Substring(url.IndexOf('?') + 1);
29
30 if (urlData.Length <= 0)
31 {
32 Debug.Log("No ? found in the url.");
33 return null;
34 }
35
36 string[] dataArray = urlData.Split('&');
37
38 if (dataArray.Length <= 0)
39 {
40 Debug.Log("No arguments found on the url.");
41 return null;
42 }
43
44 Dictionary<string, string> parameters = new Dictionary<string, string>();
45
46 foreach (string dataElement in dataArray)
47 {
48 Debug.Log($"Parsing: {dataElement}");
49 string[] dataParts = dataElement.Split('=', 2);
50
51 if (dataParts.Length <= 1)
52 {
53 Debug.Log($"No named argument.");
54 continue;
55 }
56
57 Debug.Log($"Found argument {dataParts[0]} - {dataParts[1]}");
58 parameters.Add(dataParts[0], dataParts[1]);
59 }
60
61 return parameters;
62 }
63 }
64}
virtual Dictionary< string, string > ParseApplicationArguments()
virtual bool OpenApplication(string applicationName, string[] argumentKeys, string[] argumentValues)
virtual Dictionary< string, string > ParseURLArguments(string url)