Documentation for the Unity C# Library
Loading...
Searching...
No Matches
ApexTypes.cs
Go to the documentation of this file.
1using Newtonsoft.Json;
2using Newtonsoft.Json.Linq;
3using System;
4using System.Collections.Generic;
5using System.Runtime.CompilerServices;
6using Unity.Properties;
7using UnityEngine;
8using UnityEngine.UIElements;
9
10
11
12namespace PixoVR.Apex
13{
14 public interface IPlatformErrorable
15 {
16 public abstract bool HasErrored();
17 }
18
19 public interface IFailure
20 {
21 // Empty so we can check all failure types against this
22 }
23
24 [Serializable]
26 {
27 public string Error;
28 public string HttpCode;
29 public string Message;
30
31 public bool HasErrored()
32 {
33 bool hasErrored = false;
34 bool hasErrorSetup = !(Error == null && Message == null && HttpCode == null);
36 if (hasErrorSetup == false)
37 {
38 if (Error != null)
39 {
40 if (Error.Equals("true", StringComparison.CurrentCultureIgnoreCase))
41 {
42 hasErrored = true;
43 }
44 else
45 {
46 hasErrored = !string.IsNullOrEmpty(Error);
47 }
48 }
49 }
50
51 return hasErrored;
52 }
53 }
54
55 [Serializable]
56 public class JoinSessionResponse : FailureResponse
57 {
58 public JObject Data;
59 public int SessionId;
60
61 public void ParseData()
62 {
63 IEnumerable<JProperty> dataPropertyEnumerator = Data.Properties();
64 foreach (JProperty property in dataPropertyEnumerator)
65 {
66 if (property.Name.Equals("SessionId", StringComparison.OrdinalIgnoreCase))
67 {
68 SessionId = JsonConvert.DeserializeObject<int>(property.Value.ToString());
69 }
70 }
71 }
72 }
74 [Serializable]
76 {
77 public string Error;
78 public string HttpCode;
79 public string Message;
80 public JObject Data;
81 public List<UserModulesData> ParsedData;
82 public bool HasErrored()
83 {
84 return (Error.Equals("true", StringComparison.CurrentCultureIgnoreCase));
85 }
86
87 public void ParseData()
88 {
89 ParsedData = new List<UserModulesData>();
90 IEnumerable<JProperty> dataPropertyEnumerator = Data.Properties();
91 UserModulesData currentUser;
92 foreach (JProperty currentProperty in dataPropertyEnumerator)
93 {
94 currentUser = new UserModulesData();
96 currentUser.UserId = currentProperty.Name;
97 currentUser.AvailableModules = JsonConvert.DeserializeObject<List<int>>(currentProperty.Value.ToString());
99 ParsedData.Add(currentUser);
101 }
102 }
103
104 [Serializable]
105 public class UserModulesData
106 {
107 public string UserId;
108 public List<int> AvailableModules;
109
110 public UserModulesData()
111 {
112 AvailableModules = new List<int>();
113 }
114 }
115
116 [Serializable]
117 public class UserModulesRequestData
118 {
119 [JsonProperty(PropertyName = "userIds")]
120 public List<int> UserIds = new List<int>();
121 }
122
123 [Serializable]
124 public class LoginData
125 {
126 public string Login;
127 public string Password;
128
129 public LoginData(string username, string password)
130 {
131 Login = username;
132 Password = password;
133 }
135
136 [Serializable]
138 {
139 public int ID;
140 public int OrgId;
141 public string First;
142 public string Last;
143 public string Email;
144 public string Token;
145 public Organization Org;
146 public int MinimumPassingScore;
148 public bool HasErrored()
149 {
150 return (Email == null || Token == null);
151 }
152 }
153
154 [Serializable]
155 public class UserLoginResponseContent : IPlatformErrorable
156 {
157 public LoginResponseContent User;
158
159 public bool HasErrored()
161 return User == null;
164
165 [Serializable]
167 {
168 public int UserId = -1;
169 public int ModuleId = -1;
170 public bool Access;
171 public int? PassingScore;
172
173 public bool HasErrored()
174 {
175 return (UserId == -1 || ModuleId == -1);
176 }
177 }
178
179 [Serializable]
180 public class Organization
182 public int ID;
183 public string Name;
184 public string Status;
185 public string DownloadRegion;
188 [Serializable]
191 public int ID;
192 public string First;
193 public string Last;
194 public string Email;
195 public string Username;
196
197 public bool HasErrored()
198 {
199 return (Email == null);
200 }
201 }
202
203 [Serializable]
208 public bool HasErrored()
209 {
210 return (AssistedLogin == null);
211 }
212 }
213
214 public class AssistedLoginCode
215 {
216 public string AuthCode;
217 public string Expires;
218 }
219
220 [Serializable]
221 public class SessionData
223 public float Score;
224 public float ScaledScore;
225 public float MinimumScore;
226 public float MaximumScore;
227 public int Duration;
228 public bool Complete;
229 public bool Success;
230
231 public SessionData() { }
232 public SessionData(float score, float scaled, float min, float max, int duration, bool completed, bool success)
233 {
234 Score = score;
235 ScaledScore = scaled;
236 MinimumScore = min;
237 MaximumScore = max;
238 Duration = duration;
239 Complete = completed;
240 Success = success;
241 }
244#if UNITY_6000_0_OR_NEWER
245 public class OrgModule : ScriptableObject, INotifyBindablePropertyChanged
246#else
247 public class OrgModule : ScriptableObject
248#endif
249 {
250 public int ID = -1;
251 public string Name = "";
252 public string Description = "";
253 public string ShortDescription = "";
254 public string LongDescription = "";
255 public string Industry = "";
256 public string Details = "";
257 public string IconURL = "";
258 public string AvailableLanguages = "";
259 public string Distributor = "";
260 public string UserGuideLink = "";
262 private Texture2D _thumbnail;
264 [CreateProperty]
265 public Texture2D Thumbnail
266 {
267 get
268 {
269 return _thumbnail;
270 }
271
272 set
273 {
274 _thumbnail = value;
275#if UNITY_6000_0_OR_NEWER
276 Notify();
277#endif
279 }
281 public List<OrgModuleDownload> Downloads = new List<OrgModuleDownload>();
282 public int? PassingScore = null;
283 public string Categories = "";
284 public string externalId = "";
285 public PlatformPlayer player = null;
287#if UNITY_6000_0_OR_NEWER
288 public event EventHandler<BindablePropertyChangedEventArgs> propertyChanged;
289#endif
290
291 public OrgModule()
292 {
293 Downloads = new List<OrgModuleDownload>();
294 }
295
296 public OrgModule(JToken token)
297 {
298 Downloads = new List<OrgModuleDownload>();
299 Parse(token);
300 }
302 public void Parse(JToken token)
304 ID = token.Value<int>("ID");
305 Name = token.Value<string>("Name");
306 Description = token.Value<string>("Description");
307 ShortDescription = token.Value<string>("ShortDescription");
308 LongDescription = token.Value<string>("LongDescription");
309 Details = token.Value<string>("Details");
310 IconURL = token.Value<string>("IconURL");
311 PassingScore = token.Value<int?>("PassingScore");
312 Categories = token.Value<string>("Categories");
313 externalId = token.Value<string>("externalId");
314 UserGuideLink = token.Value<string>("UserGuideLink");
315
316 var PlayerToken = token.Value<JObject>("player");
317
318 if (PlayerToken != null)
319 {
320 player = new PlatformPlayer(PlayerToken);
321 }
322
323 var DownloadTokens = token.Value<JArray>("Downloads");
324
325 if (DownloadTokens != null)
326 {
327 foreach (JToken DownloadToken in DownloadTokens)
329 var downloadData = ScriptableObject.CreateInstance<OrgModuleDownload>();
330 downloadData.Parse(DownloadToken);
331 Downloads.Add(downloadData);
335 var availableLanguages = GetValue<JArray>(token, "availableLanguages");
337 if (availableLanguages != null)
339 var availableLanguagesList = new List<string>();
341 foreach (JToken languageToken in availableLanguages)
342 {
343 string displayName = GetValue<string>(languageToken, "displayName");
344 if (!string.IsNullOrEmpty(displayName))
345 {
346 availableLanguagesList.Add(displayName);
347 }
348 }
349
350 AvailableLanguages = string.Join(", ", availableLanguagesList);
351 }
352
353 var industry = GetValue<string>(token, "Industry");
354 if (!string.IsNullOrEmpty(industry) && industry.Length > 0)
355 {
356 Industry = char.ToUpper(industry[0]) + (industry.Length > 1 ? industry[1..] : string.Empty);
357 }
358
360 var distributor = GetValue<JToken>(token, "distributor");
361 if (distributor != null)
363 Distributor = GetValue<string>(distributor, "name");
364 }
365 }
366
367 private T GetValue<T>(JToken token, string propertyName, T defaultValue = default)
368 {
369 return token[propertyName] != null ? token.Value<T>(propertyName) : defaultValue;
370 }
371
372
373#if UNITY_6000_0_OR_NEWER
374 void Notify([CallerMemberName] string property = "")
375 {
376 propertyChanged?.Invoke(this, new BindablePropertyChangedEventArgs(property));
377 }
378#endif
379 }
381 [Serializable]
383 {
384 public int ID;
385 public int VersionID;
386 public string FileLocation;
387 public string Version;
388 public string Platform;
389 public long DownloadSize;
390 public string ApkName;
391 public string URL;
392 public string Status;
393 public string externalId;
394
395 public OrgModuleDownload(JToken token)
396 {
397 Parse(token);
398 }
399
400 public void Parse(JToken token)
401 {
402 ID = token.Value<int>("ID");
403 VersionID = token.Value<int>("VersionID");
404 DownloadSize = token.Value<long>("DownloadSize");
405 externalId = token.Value<string>("externalId");
406 FileLocation = token.Value<string>("FileLocation");
407 Version = token.Value<string>("Version");
408 Platform = token.Value<string>("Platform");
409 ApkName = token.Value<string>("ApkName");
410 URL = token.Value<string>("URL");
411 Status = token.Value<string>("Status");
412 }
413 }
414
415 [Serializable]
416 public class PlatformPlayer
417 {
418 public int id;
419 public string name;
420 public string description;
421 public int distributorId;
422 public string launchProtocol;
423 public List<PlatformPlayerDownload> versions = new List<PlatformPlayerDownload>();
424
425 public PlatformPlayer(JObject tokenObject)
426 {
427 id = tokenObject.Value<int>("id");
428 distributorId = tokenObject.Value<int>("distributorId");
429 name = tokenObject.Value<string>("name");
430 description = tokenObject.Value<string>("description");
431 launchProtocol = tokenObject.Value<string>("launchProtocol");
432
433 var versionTokens = tokenObject.Value<JArray>("versions");
434 if (versionTokens == null)
435 {
436 versionTokens = new JArray();
437 }
438
439 foreach (JToken Version in versionTokens)
440 {
441 versions.Add(new PlatformPlayerDownload(Version));
442 }
443 }
444 }
446 [Serializable]
447 public class PlatformPlayerDownload
448 {
449 public int id;
450 public string version;
451 public int modulePlayerId;
452 public string status;
453 public string URL;
454 public string ApkName;
455 public string platform;
456
457 public PlatformPlayerDownload(JToken token)
458 {
459 id = token.Value<int>("id");
460 modulePlayerId = token.Value<int>("modulePlayerId");
461 version = token.Value<string>("version");
462 status = token.Value<string>("status");
463 URL = token.Value<string>("URL");
464 ApkName = token.Value<string>("ApkName");
465 platform = token.Value<string>("platform");
467 }
List< UserModulesData > ParsedData
Definition ApexTypes.cs:99
[Serializable]
Definition ApexTypes.cs:161
LoginData(string username, string password)
Definition ApexTypes.cs:165
void Parse(JToken token)
Definition ApexTypes.cs:484
OrgModuleDownload(JToken token)
Definition ApexTypes.cs:479
void Parse(JToken token)
Definition ApexTypes.cs:380
PlatformPlayer player
Definition ApexTypes.cs:363
List< OrgModuleDownload > Downloads
Definition ApexTypes.cs:359
OrgModule(JToken token)
Definition ApexTypes.cs:374
T GetValue< T >(JToken token, string propertyName, T defaultValue=default)
Definition ApexTypes.cs:445
List< PlatformPlayerDownload > versions
Definition ApexTypes.cs:513
PlatformPlayer(JObject tokenObject)
Definition ApexTypes.cs:515
SessionData(float score, float scaled, float min, float max, int duration, bool completed, bool success)
Definition ApexTypes.cs:310