forked from LitJSON/litjson
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLitJSONTest.cs
90 lines (75 loc) · 2.36 KB
/
LitJSONTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using UnityEngine;
using System.Collections.Generic;
using System.IO;
using System.Text;
public class SerialInfo
{
public Vector2 vector2 = Random.onUnitSphere;
public Vector3 vector3 = Random.onUnitSphere;
public Vector4 vector4 = Random.onUnitSphere;
public Bounds bounds = new Bounds(Random.onUnitSphere, Random.onUnitSphere);
public Color color = new Color(Random.value, Random.value, Random.value);
public Color32 color32 = new Color32();
public Rect rect = new Rect(Random.value, Random.value, Random.value, Random.value);
public Ray ray = new Ray(Random.onUnitSphere, Random.onUnitSphere);
public Quaternion quaternion = new Quaternion(Random.value, Random.value, Random.value, Random.value);
public List<float> listFloat = new List<float>(){1,2,3,4,5,6};
public Dictionary<string, float> dictStr = new Dictionary<string, float>(){ {"hello", 1}, {"world", 2}};
}
public class LitJSONTest : MonoBehaviour {
private string m_str1 = "";
private LitJson.JsonWriter m_PrettyWriter;
private Vector2 m_ScrollPos;
private enum Format{ Pretty, Plain };
private Format m_Format = Format.Pretty;
// Use this for initialization
void Start () {
m_PrettyWriter = new LitJson.JsonWriter();
m_PrettyWriter.PrettyPrint = true;
}
// Update is called once per frame
void Update () {
}
void OnGUI()
{
GUILayout.BeginHorizontal();
GUI.enabled = m_Format != Format.Pretty;
if( GUILayout.Button ("PrettyFormat") )
{
m_Format = Format.Pretty;
}
GUI.enabled = m_Format != Format.Plain;
if( GUILayout.Button ("Plain Format") )
{
m_Format = Format.Plain;
}
GUILayout.EndHorizontal();
GUI.enabled = true;
if( GUILayout.Button("Serialize", GUILayout.Height (100)) )
{
_TestSerialInfo();
}
m_ScrollPos = GUILayout.BeginScrollView(m_ScrollPos, GUILayout.Width (Screen.width-200));
if( m_str1.Length > 0)
{
GUILayout.TextArea(m_str1);
}
GUILayout.EndScrollView();
}
void _TestSerialInfo()
{
SerialInfo v1 = new SerialInfo();
v1.vector2 = new Vector2(0.5f, 0.5f);
if (m_Format == Format.Pretty)
{
m_PrettyWriter.Reset();
LitJson.JsonMapper.ToJson(v1, m_PrettyWriter);
m_str1 = m_PrettyWriter.ToString();
}
else
{
m_str1 = LitJson.JsonMapper.ToJson(v1); //serialize object to string
}
LitJson.JsonMapper.ToObject<SerialInfo>(m_str1); //de-serialize string back to object
}
}