-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGraphLogger.cs
350 lines (313 loc) · 9.11 KB
/
GraphLogger.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.IO;
public class GraphLogger : MonoBehaviour
{
// A List to track a property with min and max properties
class Line
{
public bool isNumber; // Tracked parameter is number or string
public SortedDictionary<int, string> strings; // Strings with frame number for key
public SortedDictionary<int, float> points; // Numbers with frame number for key
int minTime; // Smalled frame number
int maxTime; // Largest frame number
float minPoint; // Smallest number in points
float maxPoint; // Largest number in points
float xSize; // Scale factor for x-axis
float ySize; // Scale factor for y-axis
List<int> keys = new List<int> (); // List of the keys
public Line (int t, float x) // Constructor for number tracker
{
isNumber = true;
minPoint = x;
maxPoint = x;
minTime = t;
maxTime = t;
xSize = graphLogger.size.x;
ySize = graphLogger.size.y;
points = new SortedDictionary<int, float> ();
AddFloat (t, x);
}
public Line (int t, string s) // Constructor for string tracker
{
isNumber = false;
strings = new SortedDictionary<int, string> ();
AddString (t, s);
}
public void AddFloat (int t, float x)
{
if (points.ContainsKey (t))
points.Remove (t);
else
keys.Add (t);
points.Add (t, x);
// Limit capacity
if (keys.Count > graphLogger.maxCount) {
// Update min and max
minTime = keys [keys.Count - graphLogger.maxCount];
float old = points [keys [keys.Count - graphLogger.maxCount]];
if (minPoint == old) {
minPoint = maxPoint;
for (int i = keys.Count - graphLogger.maxCount + 1; i < keys.Count; i++) {
if (points [keys [i]] < minPoint) {
minPoint = points [keys [i]];
}
}
if (minPoint != maxPoint) {
ySize = graphLogger.size.y / (maxPoint - minPoint);
}
} else if (maxPoint == old) {
maxPoint = minPoint;
for (int i = keys.Count - graphLogger.maxCount + 1; i < keys.Count; i++) {
if (points [keys [i]] > maxPoint)
maxPoint = points [keys [i]];
}
if (minPoint != maxPoint) {
ySize = graphLogger.size.y / (maxPoint - minPoint);
}
}
}
// Update min, max, and size
maxTime = t;
if (maxTime != minTime)
xSize = graphLogger.size.x / (maxTime - minTime);
if (x < minPoint) {
minPoint = x;
if (minPoint != maxPoint)
ySize = graphLogger.size.y / (maxPoint - minPoint);
} else if (x > maxPoint) {
maxPoint = x;
if (minPoint != maxPoint)
ySize = graphLogger.size.y / (maxPoint - minPoint);
}
}
public void AddString (int t, string s)
{
strings.Add (t, s);
keys.Add (t);
}
public float GetX (int i)
{
// Stretch points so that min is at offset and max is at offset+size
// Then convert to viewport space
if (keys.Count > graphLogger.maxCount)
i += keys.Count - graphLogger.maxCount;
return ((keys [i] - minTime) * xSize + graphLogger.offset.x) * graphLogger.xScale;
}
public float GetY (int i)
{
// Stretch points so that min is at offset and max is at offset+size
// Then convert to viewport space
if (keys.Count > graphLogger.maxCount)
i += keys.Count - graphLogger.maxCount;
return ((points [keys [i]] - minPoint) * ySize + graphLogger.offset.y) * graphLogger.yScale;
}
}
// Static instance of the class
public static GraphLogger graphLogger;
// Settings
public enum Format {Column, Table};
public bool appendLogFile = false; // Append or overwrite log file
public Format format = Format.Table; // Format for saved log file
public bool graphOn = true; // Display a graph on screen
public int maxCount = 6000; // Number of points logged per property
public Color[] colors = new Color[6] { // Colors of lines for graph
Color.cyan,
Color.green,
Color.magenta,
Color.red,
Color.yellow,
Color.blue,
};
public Vector2 size = new Vector2 (300, 150); // Area of graph (px)
public Vector2 offset = new Vector2 (10, 10); // Distance from bottom left corner (px)
// Saved information
Material mat; // Material for lines (Default-Diffuse)
Dictionary<string, Line> lines // Dictionary of properties being debugged
= new Dictionary<string, Line> ();
float xScale; // Conversion factor for screen to viewport space
float yScale;
void Awake ()
{
// Only have one instance of graphLogger
if (graphLogger == null) {
graphLogger = this;
} else {
Destroy (this);
}
xScale = 1 / (float)Screen.width;
yScale = 1 / (float)Screen.height;
mat = new Material ("Shader \"Lines/Colored Blended\" {" +
"SubShader { Pass { " +
" Blend SrcAlpha OneMinusSrcAlpha " +
" ZWrite Off Cull Off Fog { Mode Off } " +
" BindChannels {" +
" Bind \"vertex\", vertex Bind \"color\", color }" +
"} } }");
mat.hideFlags = HideFlags.HideAndDontSave;
mat.shader.hideFlags = HideFlags.HideAndDontSave;
}
public static void AddPoint (int point)
{
AddPoint ((float)point, "default");
}
public static void AddPoint (int point, string name)
{
AddPoint ((float)point, name);
}
public static void AddPoint (float point)
{
AddPoint (point, "default");
}
public static void AddPoint (float point, string name)
{
int time = Time.frameCount;
if (!graphLogger.lines.ContainsKey (name))
graphLogger.lines.Add (name, new Line (time, point));
else
graphLogger.lines [name].AddFloat (time, point);
}
public static void AddPoint (string point)
{
AddPoint (point, "default");
}
public static void AddPoint (string point, string name)
{
int time = Time.frameCount;
if (!graphLogger.lines.ContainsKey (name))
graphLogger.lines.Add (name, new Line (time, point));
else
graphLogger.lines [name].AddString (time, point);
}
// Save then quit
void OnApplicationQuit ()
{
Application.CancelQuit ();
DestroyImmediate (mat);
SaveLog ();
Application.Quit ();
}
void OnApplicationPause (bool paused)
{
if (paused)
SaveLog ();
}
void OnApplicationFocus (bool paused)
{
if (paused)
SaveLog ();
}
public static void SaveLog ()
{
if (graphLogger.lines.Count == 0)
return;
try {
using (StreamWriter file = new StreamWriter(Application.persistentDataPath + "/log.csv", graphLogger.appendLogFile)) {
if (graphLogger.format == Format.Column)
graphLogger.writeColumn (file);
else if (graphLogger.format == Format.Table)
graphLogger.writeTable (file);
Debug.Log ("Log file saved: " + Application.persistentDataPath + "/log.csv");
}
} catch {
Debug.LogError ("Could not save to path: " + Application.persistentDataPath + "/log.csv");
}
}
void writeColumn (StreamWriter file)
{
foreach (KeyValuePair<string,Line> element in lines) {
file.WriteLine ("Frame," + element.Key);
Line line = element.Value;
if (line.isNumber) {
foreach (KeyValuePair<int, float> kvp in line.points) {
file.WriteLine (kvp.Key + "," + kvp.Value);
}
} else {
foreach (KeyValuePair<int, string> kvp in line.strings) {
file.WriteLine (kvp.Key + "," + kvp.Value);
}
}
file.WriteLine ();
}
}
void writeTable (StreamWriter file)
{
// Get all framecounts
SortedDictionary<int, string> rows = new SortedDictionary<int, string> ();
foreach (KeyValuePair<string, Line> element in lines) {
Line line = element.Value;
if (line.isNumber) {
foreach (int key in line.points.Keys) {
if (!rows.ContainsKey (key))
rows.Add (key, "");
}
} else {
foreach (int key in line.strings.Keys) {
if (!rows.ContainsKey (key))
rows.Add (key, "");
}
}
}
// Add data if framecount exists
List<int> keys = new List<int> (rows.Keys);
foreach (KeyValuePair<string,Line> element in lines) {
foreach (int key in keys) {
rows [key] += ",";
}
Line line = element.Value;
if (line.isNumber) {
foreach (KeyValuePair<int, float> kvp in line.points) {
if (rows.ContainsKey (kvp.Key))
rows [kvp.Key] += kvp.Value.ToString ();
}
} else {
foreach (KeyValuePair<int, string> kvp in line.strings) {
if (rows.ContainsKey (kvp.Key))
rows [kvp.Key] += kvp.Value.ToString ();
}
}
}
// Write first row
file.Write ("Frame");
foreach (KeyValuePair<string,Line> element in lines) {
file.Write ("," + element.Key);
}
file.WriteLine ();
// Write data
foreach (KeyValuePair<int,string> element in rows) {
file.WriteLine (element.Key + element.Value);
}
file.WriteLine ();
}
// Draw graph
void OnPostRender ()
{
if (!graphOn)
return;
GL.PushMatrix ();
mat.SetPass (0);
GL.LoadOrtho ();
GL.Begin (GL.LINES);
int i = 0;
foreach (KeyValuePair<string,Line> element in lines) {
Line line = element.Value;
if (!line.isNumber)
break;
float prevX = line.GetX (0);
float prevY = line.GetY (0);
GL.Color (colors [i % 6]);
for (int j = 1; j < line.points.Count && j < maxCount; j++) {
float x = line.GetX (j);
float y = line.GetY (j);
GL.Vertex3 (prevX, prevY, 0);
GL.Vertex3 (x, y, 0);
prevX = x;
prevY = y;
}
i++;
}
GL.End ();
GL.PopMatrix ();
}
}