Liberi
An exergame built for kids with CP!
UJeli.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.IO;
5 using UnityEngine;
6 
10 public class UJeli
11 {
12  public string Name
13  {
14  get { return _name; }
15  set { _name = value ?? ""; }
16  }
17 
18  public int IntName
19  {
20  get { return int.Parse(_name); }
21  set { _name = value.ToString(); }
22  }
23 
24  public short ShortName
25  {
26  get { return short.Parse(_name); }
27  set { _name = value.ToString(); }
28  }
29 
30  public long LongName
31  {
32  get { return long.Parse(_name); }
33  set { _name = value.ToString(); }
34  }
35 
36  public byte ByteName
37  {
38  get { return byte.Parse(_name); }
39  set { _name = value.ToString(); }
40  }
41 
42  public sbyte SByteName
43  {
44  get { return sbyte.Parse(_name); }
45  set { _name = value.ToString(); }
46  }
47 
48  public char CharName
49  {
50  get { return char.Parse(_name); }
51  set { _name = value.ToString(); }
52  }
53 
54  public uint UIntName
55  {
56  get { return uint.Parse(_name); }
57  set { _name = value.ToString(); }
58  }
59 
60  public ushort UShortName
61  {
62  get { return ushort.Parse(_name); }
63  set { _name = value.ToString(); }
64  }
65 
66  public ulong ULongName
67  {
68  get { return ulong.Parse(_name); }
69  set { _name = value.ToString(); }
70  }
71 
72  public float FloatName
73  {
74  get { return float.Parse(_name); }
75  set { _name = value.ToString(); }
76  }
77 
78  public double DoubleName
79  {
80  get { return double.Parse(_name); }
81  set { _name = value.ToString(); }
82  }
83 
84  public bool BoolName
85  {
86  get { return bool.Parse(_name); }
87  set { _name = value.ToString(); }
88  }
89 
90  public DateTime TimeName
91  {
92  get { return DateTime.Parse(_name); }
93  set { _name = value.ToString(); }
94  }
95 
96  public Vector2 Vector2Name
97  {
98  get
99  {
100  string[] tokens = _name.Split();
101 
102  return new Vector2(float.Parse(tokens[0]), float.Parse(tokens[1]));
103  }
104  set { _name = value.x + " " + value.y; }
105  }
106 
107  public Vector3 Vector3Name
108  {
109  get
110  {
111  string[] tokens = _name.Split();
112 
113  return new Vector3(float.Parse(tokens[0]), float.Parse(tokens[1]), float.Parse(tokens[2]));
114  }
115  set { _name = value.x + " " + value.y + " " + value.z; }
116  }
117 
118  public Vector4 Vector4Name
119  {
120  get
121  {
122  string[] tokens = _name.Split();
123 
124  return new Vector4(float.Parse(tokens[0]), float.Parse(tokens[1]),
125  float.Parse(tokens[2]), float.Parse(tokens[3]));
126  }
127  set { _name = value.x + " " + value.y + " " + value.z + " " + value.w; }
128  }
129 
130  public Quaternion QuaternionName
131  {
132  get
133  {
134  string[] tokens = _name.Split();
135 
136  return new Quaternion(float.Parse(tokens[0]), float.Parse(tokens[1]),
137  float.Parse(tokens[2]), float.Parse(tokens[3]));
138  }
139  set { _name = value.x + " " + value.y + " " + value.z + " " + value.w; }
140  }
141 
142  public Ray RayName
143  {
144  get
145  {
146  string[] tokens = _name.Split();
147 
148  return new Ray(
149  new Vector3(float.Parse(tokens[0]), float.Parse(tokens[0]), float.Parse(tokens[0])),
150  new Vector3(float.Parse(tokens[0]), float.Parse(tokens[0]), float.Parse(tokens[0])));
151  }
152  set
153  {
154  _name = value.origin.x + " " + value.origin.y + " " + value.origin.z + " "
155  + value.direction.x + " " + value.direction.y + " " + value.direction.z;
156  }
157  }
158 
159  public Matrix4x4 MatrixName
160  {
161  get
162  {
163  string[] tokens = _name.Split();
164 
165  var mat = new Matrix4x4();
166  mat.m00 = float.Parse(tokens[0]);
167  mat.m01 = float.Parse(tokens[1]);
168  mat.m02 = float.Parse(tokens[2]);
169  mat.m03 = float.Parse(tokens[3]);
170  mat.m10 = float.Parse(tokens[4]);
171  mat.m11 = float.Parse(tokens[5]);
172  mat.m12 = float.Parse(tokens[6]);
173  mat.m13 = float.Parse(tokens[7]);
174  mat.m20 = float.Parse(tokens[8]);
175  mat.m21 = float.Parse(tokens[9]);
176  mat.m22 = float.Parse(tokens[10]);
177  mat.m23 = float.Parse(tokens[11]);
178  mat.m30 = float.Parse(tokens[12]);
179  mat.m31 = float.Parse(tokens[13]);
180  mat.m32 = float.Parse(tokens[14]);
181  mat.m33 = float.Parse(tokens[15]);
182 
183  return mat;
184  }
185  set
186  {
187  _name = string.Join(" ", new string[] {
188  value.m00.ToString(),
189  value.m01.ToString(),
190  value.m02.ToString(),
191  value.m03.ToString(),
192  value.m10.ToString(),
193  value.m11.ToString(),
194  value.m12.ToString(),
195  value.m13.ToString(),
196  value.m20.ToString(),
197  value.m21.ToString(),
198  value.m22.ToString(),
199  value.m23.ToString(),
200  value.m30.ToString(),
201  value.m31.ToString(),
202  value.m32.ToString(),
203  value.m33.ToString()
204  });
205  }
206  }
207 
208  public Color ColorName
209  {
210  get
211  {
212  string[] tokens = _name.Split();
213 
214  if (tokens.Length < 4)
215  return new Color(float.Parse(tokens[0]), float.Parse(tokens[1]),
216  float.Parse(tokens[2]));
217  else return new Color(float.Parse(tokens[0]), float.Parse(tokens[1]),
218  float.Parse(tokens[2]), float.Parse(tokens[3]));
219  }
220  set { _name = value.r + " " + value.g + " " + value.b + " " + value.a; }
221  }
222 
223  public GameObject GameObjectName
224  {
225  get { return Sync.GetObject(int.Parse(Name)); }
226  set { _name = Sync.GetObjectIndex(value).ToString(); }
227  }
228 
229  public string Value
230  {
231  get { return _value; }
232  set { _value = value ?? ""; }
233  }
234 
235  public int IntValue
236  {
237  get { return int.Parse(_value); }
238  set { _value = value.ToString(); }
239  }
240 
241  public short ShortValue
242  {
243  get { return short.Parse(_value); }
244  set { _value = value.ToString(); }
245  }
246 
247  public long LongValue
248  {
249  get { return long.Parse(_value); }
250  set { _value = value.ToString(); }
251  }
252 
253  public byte ByteValue
254  {
255  get { return byte.Parse(_value); }
256  set { _value = value.ToString(); }
257  }
258 
259  public sbyte SByteValue
260  {
261  get { return sbyte.Parse(_value); }
262  set { _value = value.ToString(); }
263  }
264 
265  public char CharValue
266  {
267  get { return char.Parse(_value); }
268  set { _value = value.ToString(); }
269  }
270 
271  public uint UIntValue
272  {
273  get { return uint.Parse(_value); }
274  set { _value = value.ToString(); }
275  }
276 
277  public ushort UShortValue
278  {
279  get { return ushort.Parse(_value); }
280  set { _value = value.ToString(); }
281  }
282 
283  public ulong ULongValue
284  {
285  get { return ulong.Parse(_value); }
286  set { _value = value.ToString(); }
287  }
288 
289  public float FloatValue
290  {
291  get { return float.Parse(_value); }
292  set { _value = value.ToString(); }
293  }
294 
295  public double DoubleValue
296  {
297  get { return double.Parse(_value); }
298  set { _value = value.ToString(); }
299  }
300 
301  public bool BoolValue
302  {
303  get { return bool.Parse(_value); }
304  set { _value = value.ToString(); }
305  }
306 
307  public DateTime TimeValue
308  {
309  get { return DateTime.Parse(_value); }
310  set { _value = value.ToString(); }
311  }
312 
313  public Vector2 Vector2Value
314  {
315  get
316  {
317  string[] tokens = _value.Split();
318 
319  return new Vector2(float.Parse(tokens[0]), float.Parse(tokens[1]));
320  }
321  set { _value = value.x + " " + value.y; }
322  }
323 
324  public Vector3 Vector3Value
325  {
326  get
327  {
328  string[] tokens = _value.Split();
329 
330  return new Vector3(float.Parse(tokens[0]), float.Parse(tokens[1]), float.Parse(tokens[2]));
331  }
332  set { _value = value.x + " " + value.y + " " + value.z; }
333  }
334 
335  public Vector4 Vector4Value
336  {
337  get
338  {
339  string[] tokens = _value.Split();
340 
341  return new Vector4(float.Parse(tokens[0]), float.Parse(tokens[1]),
342  float.Parse(tokens[2]), float.Parse(tokens[3]));
343  }
344  set { _value = value.x + " " + value.y + " " + value.z + " " + value.w; }
345  }
346 
347  public Quaternion QuaternionValue
348  {
349  get
350  {
351  string[] tokens = _value.Split();
352 
353  return new Quaternion(float.Parse(tokens[0]), float.Parse(tokens[1]),
354  float.Parse(tokens[2]), float.Parse(tokens[3]));
355  }
356  set { _value = value.x + " " + value.y + " " + value.z + " " + value.w; }
357  }
358 
359  public Ray RayValue
360  {
361  get
362  {
363  string[] tokens = _value.Split();
364 
365  return new Ray(
366  new Vector3(float.Parse(tokens[0]), float.Parse(tokens[0]), float.Parse(tokens[0])),
367  new Vector3(float.Parse(tokens[0]), float.Parse(tokens[0]), float.Parse(tokens[0])));
368  }
369  set
370  {
371  _value = value.origin.x + " " + value.origin.y + " " + value.origin.z + " "
372  + value.direction.x + " " + value.direction.y + " " + value.direction.z;
373  }
374  }
375 
376  public Matrix4x4 MatrixValue
377  {
378  get
379  {
380  string[] tokens = _value.Split();
381 
382  var mat = new Matrix4x4();
383  mat.m00 = float.Parse(tokens[0]);
384  mat.m01 = float.Parse(tokens[1]);
385  mat.m02 = float.Parse(tokens[2]);
386  mat.m03 = float.Parse(tokens[3]);
387  mat.m10 = float.Parse(tokens[4]);
388  mat.m11 = float.Parse(tokens[5]);
389  mat.m12 = float.Parse(tokens[6]);
390  mat.m13 = float.Parse(tokens[7]);
391  mat.m20 = float.Parse(tokens[8]);
392  mat.m21 = float.Parse(tokens[9]);
393  mat.m22 = float.Parse(tokens[10]);
394  mat.m23 = float.Parse(tokens[11]);
395  mat.m30 = float.Parse(tokens[12]);
396  mat.m31 = float.Parse(tokens[13]);
397  mat.m32 = float.Parse(tokens[14]);
398  mat.m33 = float.Parse(tokens[15]);
399 
400  return mat;
401  }
402  set
403  {
404  _value = string.Join(" ", new string[] {
405  value.m00.ToString(),
406  value.m01.ToString(),
407  value.m02.ToString(),
408  value.m03.ToString(),
409  value.m10.ToString(),
410  value.m11.ToString(),
411  value.m12.ToString(),
412  value.m13.ToString(),
413  value.m20.ToString(),
414  value.m21.ToString(),
415  value.m22.ToString(),
416  value.m23.ToString(),
417  value.m30.ToString(),
418  value.m31.ToString(),
419  value.m32.ToString(),
420  value.m33.ToString()
421  });
422  }
423  }
424 
425  public Color ColorValue
426  {
427  get
428  {
429  string[] tokens = _value.Split();
430 
431  if (tokens.Length < 4)
432  return new Color(float.Parse(tokens[0]), float.Parse(tokens[1]),
433  float.Parse(tokens[2]));
434  else return new Color(float.Parse(tokens[0]), float.Parse(tokens[1]),
435  float.Parse(tokens[2]), float.Parse(tokens[3]));
436  }
437  set { _value = value.r + " " + value.g + " " + value.b + " " + value.a; }
438  }
439 
440  public GameObject GameObjectValue
441  {
442  get { return Sync.GetObject(int.Parse(Value)); }
443  set { _value = Sync.GetObjectIndex(value).ToString(); }
444  }
445 
446  public UJeli[] Children
447  {
448  get { return GetChildren(); }
449  }
450 
451  public string[] ChildNames
452  {
453  get { return (from child in _children select child.Name).ToArray(); }
454  }
455 
456  public string[] ChildValues
457  {
458  get { return (from child in _children select child.Value).ToArray(); }
459  }
460 
461  public UJeli Parent
462  {
463  get { return _parent; }
464  }
465 
466  private static string[] newLines =
467  new string[] { "\r\n", "\r", "\n", "\n\r" };
468 
469  string _name;
470  string _value;
471  UJeli _parent;
472  List<UJeli> _children;
473 
474  public static UJeli Parse (string text)
475  {
476  UJeli node = new UJeli();
477  int tabs = -1;
478 
479  foreach (string line in text.Split(newLines, StringSplitOptions.RemoveEmptyEntries))
480  {
481  if (line.TrimStart().StartsWith("//"))
482  continue;
483 
484  int newTabs = CountTabs(line);
485 
486  if (newTabs > tabs)
487  {
488  node = node.AddChild();
489  }
490  else if (newTabs < tabs)
491  {
492  UJeli sibling = node;
493 
494  while (newTabs < tabs)
495  {
496  sibling = sibling.Parent;
497  tabs--;
498  }
499 
500  if (sibling.Parent != null)
501  node = sibling.Parent.AddChild();
502  else return node;
503  }
504  else
505  {
506  if (node.Parent != null)
507  node = node.Parent.AddChild();
508  else if (node._name != "")
509  return node;
510  }
511 
512  tabs = newTabs;
513 
514  string rest = line.Substring(tabs);
515  int space = rest.IndexOf("=");
516 
517  if (space != -1)
518  {
519  node._name = rest.Substring(0, space).Trim();
520  node._value = rest.Substring(space + 1).Trim();
521  }
522  else node._name = rest;
523  }
524 
525  while (node.Parent != null)
526  {
527  node = node.Parent;
528  }
529 
530  return node;
531  }
532 
533  public static UJeli Load (string fileName)
534  {
535  string fullFileName = fileName;
536 
537  if (File.Exists(fullFileName))
538  return Parse(File.ReadAllText(fullFileName));
539  else return null;
540  }
541 
542  static string WriteNode (UJeli node, int tabs)
543  {
544  string text = "";
545 
546  for (int i = 0; i < tabs; i++)
547  {
548  text += "\t";
549  }
550 
551  if (tabs != -1)
552  {
553  text += node._name;
554 
555  if (node._value != "")
556  text += " = " + node._value;
557 
558  text += "\n";
559  }
560 
561  foreach (UJeli c in node.GetChildren())
562  {
563  text += WriteNode(c, tabs + 1);
564  }
565 
566  return text;
567  }
568 
569  static int CountTabs (string text)
570  {
571  int numTabs = 0;
572 
573  while (numTabs < text.Length && text[numTabs] == '\t')
574  {
575  numTabs++;
576  }
577 
578  return numTabs;
579  }
580 
581  public UJeli () : this("") { }
582 
583  public UJeli (object name) : this(name, "") { }
584 
585  public UJeli (object name, object value)
586  {
587  _children = new List<UJeli>();
588 
589  if (name != null)
590  {
591  if (name is Vector2)
592  Vector2Name = (Vector2)name;
593  else if (name is Vector3)
594  Vector3Name = (Vector3)name;
595  else if (name is Quaternion)
596  QuaternionName = (Quaternion)name;
597  else if (name is Color)
598  ColorName = (Color)name;
599  else if (name is GameObject)
600  IntName = Sync.GetObjectIndex((GameObject)name);
601  else _name = name.ToString();
602  }
603  else _name = "";
604 
605  if (value != null)
606  {
607  if (value is Vector2)
608  Vector2Value = (Vector2)value;
609  else if (value is Vector3)
610  Vector3Value = (Vector3)value;
611  else if (value is Quaternion)
612  QuaternionValue = (Quaternion)value;
613  else if (value is Color)
614  ColorValue = (Color)value;
615  else if (value is GameObject)
616  IntValue = Sync.GetObjectIndex((GameObject)value);
617  else _value = value.ToString();
618  }
619  else _value = "";
620  }
621 
622  public UJeli this[string name]
623  {
624  get { return GetChild(name, 0); }
625  }
626 
627  public UJeli this[string name, int index]
628  {
629  get { return GetChild(name, index); }
630  }
631 
632  public UJeli this[int index]
633  {
634  get { return GetChild(index); }
635  }
636 
637  public UJeli Clone ()
638  {
639  UJeli clone = Parse(ToString());
640  clone._name = _name;
641  clone._value = _value;
642  return clone;
643  }
644 
645  public T GetEnumName<T> ()
646  {
647  return GetEnumName<T>(false);
648  }
649 
650  public T GetEnumName<T> (bool ignoreCase)
651  {
652  return (T)Enum.Parse(typeof(T), _name, ignoreCase);
653  }
654 
655  public T GetEnumValue<T> ()
656  {
657  return GetEnumValue<T>(false);
658  }
659 
660  public T GetEnumValue<T> (bool ignoreCase)
661  {
662  return (T)Enum.Parse(typeof(T), _value, ignoreCase);
663  }
664 
665  public T[] GetChildNames<T> (Func<string, T> convert)
666  {
667  return (from child in _children select convert(child.Name)).ToArray();
668  }
669 
670  public T[] GetChildValues<T> (Func<string, T> convert)
671  {
672  return (from child in _children select convert(child.Value)).ToArray();
673  }
674 
675  public Dictionary<string, string> GetChildDictionary ()
676  {
677  return GetChildDictionary<string, string>(x => x, x => x);
678  }
679 
680  public Dictionary<string, T> GetChildDictionaryStringNames<T> (Func<string, T> convertValue)
681  {
682  return GetChildDictionary<string, T>(x => x, convertValue);
683  }
684 
685  public Dictionary<T, string> GetChildDictionaryStringValues<T> (Func<string, T> convertName)
686  {
687  return GetChildDictionary<T, string>(convertName, x => x);
688  }
689 
690  public Dictionary<T1, T2> GetChildDictionary<T1, T2> (
691  Func<string, T1> convertName, Func<string, T2> convertValue)
692  {
693  Dictionary<T1, T2> dict = new Dictionary<T1, T2>();
694 
695  foreach (UJeli child in _children)
696  {
697  dict[convertName(child.Name)] = convertValue(child.Value);
698  }
699 
700  return dict;
701  }
702 
703  public void GenerateChildren<T> (IEnumerable<T> nameObjects)
704  {
705  GenerateChildren<T>(nameObjects, null);
706  }
707 
708  public void GenerateChildren<T> (IEnumerable<T> nameObjects, Func<T, string> convert)
709  {
710  if (convert == null)
711  convert = o => o.ToString();
712 
713  foreach (T nameObject in nameObjects)
714  {
715  AddChild(convert(nameObject));
716  }
717  }
718 
719  public void GenerateChildren<T1, T2> (IDictionary<T1, T2> childDict)
720  {
721  GenerateChildren<T1, T2>(childDict, null, null);
722  }
723 
724  public void GenerateChildrenSimpleNames<T1, T2> (IDictionary<T1, T2> childDict,
725  Func<T2, string> convertValue)
726  {
727  GenerateChildren<T1, T2>(childDict, null, convertValue);
728  }
729 
730  public void GenerateChildrenSimpleValues<T1, T2> (IDictionary<T1, T2> childDict,
731  Func<T1, string> convertName)
732  {
733  GenerateChildren<T1, T2>(childDict, convertName, null);
734  }
735 
736  public void GenerateChildren<T1, T2> (IDictionary<T1, T2> childDict,
737  Func<T1, string> convertName, Func<T2, string> convertValue)
738  {
739  if (convertName == null)
740  convertName = o => o.ToString();
741 
742  if (convertValue == null)
743  convertValue = o => o.ToString();
744 
745  foreach (var pair in childDict)
746  {
747  AddChild(convertName(pair.Key), convertValue(pair.Value));
748  }
749  }
750 
751  public UJeli AddChild ()
752  {
753  return AddChild(new UJeli());
754  }
755 
756  public UJeli AddChild (string name)
757  {
758  return AddChild(new UJeli(name));
759  }
760 
761  public UJeli AddChild (string name, object value)
762  {
763  return AddChild(new UJeli(name, value));
764  }
765 
766  public UJeli AddChild (UJeli child)
767  {
768  _children.Add(child);
769  child._parent = this;
770  return child;
771  }
772 
773  public bool HasChild (string name)
774  {
775  return GetChild(name) != null;
776  }
777 
778  public UJeli GetChild (string name, int index)
779  {
780  int i = 0;
781 
782  foreach (UJeli c in _children)
783  {
784  if (c._name.Equals(name) && i++ == index)
785  return c;
786  }
787 
788  return null;
789  }
790 
791  public UJeli GetChild (string name)
792  {
793  return GetChild(name, 0);
794  }
795 
796  public UJeli GetChild (int index)
797  {
798  if (index < _children.Count)
799  return _children[index];
800 
801  return null;
802  }
803 
804  public UJeli[] GetChildren ()
805  {
806  return _children.ToArray();
807  }
808 
809  public UJeli[] GetChildren (string name)
810  {
811  List<UJeli> matches = new List<UJeli>();
812 
813  foreach (UJeli c in _children)
814  {
815  if (c._name == name)
816  matches.Add(c);
817  }
818 
819  return matches.ToArray();
820  }
821 
822  public int CountChildren ()
823  {
824  return _children.Count;
825  }
826 
827  public int CountChildren (string name)
828  {
829  return GetChildren(name).Length;
830  }
831 
832  public void RemoveChild (string name, int index)
833  {
834  RemoveChild(GetChild(name, index));
835  }
836 
837  public void RemoveChild (string name)
838  {
839  RemoveChild(GetChild(name));
840  }
841 
842  public void RemoveChild (int index)
843  {
844  RemoveChild(GetChild(index));
845  }
846 
847  public void RemoveChild (UJeli child)
848  {
849  _children.Remove(child);
850  }
851 
852  public void RemoveChildren (string name)
853  {
854  foreach (UJeli c in GetChildren(name))
855  {
856  RemoveChild(c);
857  }
858  }
859 
860  public void ClearChildren ()
861  {
862  _children.Clear();
863  }
864 
865  public void Save (string fileName)
866  {
867  string folder = Directory.GetParent(fileName).FullName;
868 
869  if (!Directory.Exists(folder))
870  Directory.CreateDirectory(folder);
871 
872  File.WriteAllText(fileName, ToString());
873  }
874 
875  public override string ToString ()
876  {
877  return WriteNode(this, -1);
878  }
879 }
static int GetObjectIndex(GameObject go)
Gets the object index of a given object.
Definition: Sync.Static.cs:190
static GameObject GetObject(int objectIndex)
Get an object by its object index.
Definition: Sync.Static.cs:143
Unity version of Jeli markup class.
Definition: UJeli.cs:10
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13