-
Notifications
You must be signed in to change notification settings - Fork 5
/
Util.cs
447 lines (397 loc) · 15.7 KB
/
Util.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace NSFW.TimingEditor
{
/// <summary>
/// Random bits of code that have no other home.
/// </summary>
public static class Util
{
public static string DoubleFormat = "0.00";
public static int RowHeaderWidth = 60;
public static int ColumnWidth = 40;
/// <summary>
/// Get a cells's value as a double.
/// </summary>
public static double ValueAsDouble(this DataGridViewCell cell)
{
if (cell.Value is double)
{
return (double)cell.Value;
}
if (cell.Value is string)
{
return double.Parse(cell.Value as string);
}
throw new FormatException("Can't parse " + cell.Value.ToString());
}
/// <summary>
/// Load a table from the given string (table data copied from RomRaider).
/// </summary>
public static void LoadTable(string tableText, ITable table)
{
/*using (FileStream file = new FileStream("c:\\temp\\paste.txt", FileMode.Create))
{
StreamWriter writer = new StreamWriter(file);
writer.Write(tableText);
writer.Flush();
}*/
StringReader reader = new StringReader(tableText);
string line = reader.ReadLine();
if (!line.StartsWith("[Table3D]"))
{
throw new ApplicationException("Doesn't start with [Table3D].");
}
string columnHeaders = reader.ReadLine();
if (string.IsNullOrEmpty(columnHeaders))
{
throw new ApplicationException("Doesn't contain column headers.");
}
string[] columnHeaderValueStrings = columnHeaders.Split('\t');
double[] columnHeaderValues = GetValues(columnHeaderValueStrings);
List<double> rowHeaderValues = new List<double>();
List<List<double>> tableData = new List<List<double>>();
while (true)
{
string rowText = reader.ReadLine();
if (string.IsNullOrEmpty(rowText))
{
break;
}
string[] columnStrings = rowText.Split('\t');
double[] columnValues = GetValues(columnStrings);
rowHeaderValues.Add(columnValues[0]);
List<double> data = new List<double>();
for (int i = 1; i < columnValues.Length; i++)
{
data.Add(columnValues[i]);
}
tableData.Add(data);
}
table.Reset();
for (int i = 0; i < columnHeaderValues.Length; i++)
{
table.ColumnHeaders.Add(columnHeaderValues[i]);
}
for (int i = 0; i < rowHeaderValues.Count; i++)
{
table.RowHeaders.Add(rowHeaderValues[i]);
}
for (int x = 0; x < columnHeaderValues.Length; x++)
{
for (int y = 0; y < rowHeaderValues.Count; y++)
{
List<double> row = tableData[y];
double value = row[x];
table.SetCell(x, y, value);
}
}
table.Populated();
}
/// <summary>
/// Copy a table into a string (suitable for pasting into RomRaider).
/// </summary>
public static string CopyTable(ITable table)
{
StringWriter writer = new StringWriter();
writer.WriteLine("[Table3D]");
for (int i = 0; i < table.ColumnHeaders.Count; i++)
{
if (i != 0)
{
writer.Write('\t');
}
writer.Write(table.ColumnHeaders[i].ToString(DoubleFormat));
}
writer.WriteLine();
for (int row = 0; row < table.RowHeaders.Count; row++)
{
for (int column = 0; column < table.ColumnHeaders.Count; column++)
{
if (column == 0)
{
writer.Write((int)table.RowHeaders[row]);
}
writer.Write('\t');
writer.Write(table.GetCell(column, row).ToString(DoubleFormat));
}
writer.WriteLine();
}
writer.WriteLine();
writer.Flush();
return writer.ToString();
}
/// <summary>
/// Pad a dynamic-advance table so that it will align with a base timing table.
/// </summary>
public static Table PadLeft(Table source, int desiredColumns)
{
Table result = new Table();
result.Reset();
int newColumnCount = desiredColumns - source.ColumnHeaders.Count;
for (int i = 0; i < newColumnCount; i++)
{
result.ColumnHeaders.Add(0);
}
for (int i = newColumnCount; i < newColumnCount + source.ColumnHeaders.Count; i++)
{
result.ColumnHeaders.Add(source.ColumnHeaders[i - newColumnCount]);
}
for (int i = 0; i < source.RowHeaders.Count; i++)
{
result.RowHeaders.Add(source.RowHeaders[i]);
}
for (int x = 0; x < source.ColumnHeaders.Count; x++)
{
for (int y = 0; y < source.RowHeaders.Count; y++)
{
double value = source.GetCell(x, y);
result.SetCell(x + newColumnCount, y, value);
}
}
for (int x = 0; x < newColumnCount; x++)
{
for (int y = 0; y < source.RowHeaders.Count; y++)
{
double value = source.GetCell(0, y);
result.SetCell(x, y, value);
}
}
result.Populated();
return result;
}
/// <summary>
/// Trim padding from a dynamic advance table.
/// </summary>
public static Table TrimLeft(ITable source, int columnsToRemove)
{
Table result = new Table();
result.Reset();
for (int i = columnsToRemove; i < source.ColumnHeaders.Count; i++)
{
result.ColumnHeaders.Add(source.ColumnHeaders[i]);
}
for (int i = 0; i < source.RowHeaders.Count; i++)
{
result.RowHeaders.Add(source.RowHeaders[i]);
}
for (int x = columnsToRemove; x < source.ColumnHeaders.Count; x++)
{
for (int y = 0; y < source.RowHeaders.Count; y++)
{
double value = source.GetCell(x, y);
result.SetCell(x - columnsToRemove, y, value);
}
}
result.Populated();
return result;
}
private static DataGridViewCellStyle defaultStyle;
//private static DataGridViewCellStyle selectedStyle;
public static DataGridViewCellStyle DefaultStyle
{
get
{
if (defaultStyle == null)
{
defaultStyle = new DataGridViewCellStyle();
defaultStyle.Alignment = DataGridViewContentAlignment.MiddleRight;
defaultStyle.BackColor = System.Drawing.Color.White;
defaultStyle.SelectionBackColor = Color.Black;
defaultStyle.SelectionForeColor = Color.White;
}
return defaultStyle;
}
}
/* public static DataGridViewCellStyle SelectedStyle
{
get
{
if (selectedStyle == null)
{
selectedStyle = new DataGridViewCellStyle();
selectedStyle.Alignment = DataGridViewContentAlignment.MiddleRight;
selectedStyle.BackColor = System.Drawing.Color.LightGray;
}
return selectedStyle;
}
}*/
/// <summary>
/// Get the min and max values from a table.
/// </summary>
private static void GetMinMax(ITable table, out double min, out double max)
{
min = double.MaxValue;
max = double.MinValue;
if ((table.ColumnHeaders == null) || (table.RowHeaders == null))
{
return;
}
for (int x = 0; x < table.ColumnHeaders.Count; x++)
{
for (int y = 0; y < table.RowHeaders.Count; y++)
{
double cell = table.GetCell(x, y);
min = Math.Min(cell, min);
max = Math.Max(cell, max);
}
}
}
/// <summary>
/// Set the coloring for table cells.
/// </summary>
public static void ColorTable(DataGridView dataGridView, ITable table, int selectedX, int selectedY)
{
double min, max;
Util.GetMinMax(table, out min, out max);
double middle = (max + min) / 2;
for (int x = 0; x < dataGridView.Columns.Count; x++)
{
for (int y = 0; y < dataGridView.Rows.Count; y++)
{
double value = table.GetCell(x, y);
Color color;
if ((x == selectedX) || (y == selectedY))
{
color = Color.Gray;
}
else
{
if (max - middle == 0 || middle - min == 0)
{
color = Color.White;
}
else
{
double brightness;
double unbrightness;
if (value > middle)
{
brightness = (value - middle) / (max - middle);
unbrightness = 1 - brightness;
color = Color.FromArgb(255, 255, (int)(255 * unbrightness));
}
else
{
brightness = (middle - value) / (middle - min);
unbrightness = ((1 - brightness) + 1) / 2;
color = Color.FromArgb((int)(255 * unbrightness), (int)(255 * unbrightness), 255);
}
}
}
DataGridViewCellStyle style = DefaultStyle.Clone();
style.BackColor = color;
dataGridView.Rows[y].Cells[x].Value = value.ToString(DoubleFormat);
dataGridView.Rows[y].Cells[x].Style = style;
}
}
}
/// <summary>
/// Update the Form to show a table.
/// </summary>
public static void ShowTable(Form form, ITable table, DataGridView dataGridView)
{
DataGridViewCell template = new DataGridViewTextBoxCell();
//template.Style.BackColor = Color.Wheat;
dataGridView.Columns.Clear();
dataGridView.RowHeadersWidth = RowHeaderWidth;
for (int i = 0; i < table.ColumnHeaders.Count; i++)
{
DataGridViewColumn column = new DataGridViewColumn(template);
column.HeaderCell.Value = table.ColumnHeaders[i];
column.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
column.Width = ColumnWidth;
column.HeaderText = table.ColumnHeaders[i].ToString(DoubleFormat);
column.HeaderCell.Style = DefaultStyle;
dataGridView.Columns.Add(column);
}
dataGridView.Rows.Clear();
for (int i = 0; i < table.RowHeaders.Count; i++)
{
DataGridViewRow row = new DataGridViewRow();
row.HeaderCell.Value = table.RowHeaders[i].ToString();
row.HeaderCell.Style = DefaultStyle;
dataGridView.Rows.Add(row);
}
for (int x = 0; x < dataGridView.Columns.Count; x++)
{
for (int y = 0; y < dataGridView.Rows.Count; y++)
{
double value = table.GetCell(x, y);
DataGridViewCellStyle style = DefaultStyle.Clone();
dataGridView.Rows[y].Cells[x].Value = value.ToString(DoubleFormat);
dataGridView.Rows[y].Cells[x].Style = DefaultStyle;
}
}
int oldWidth = dataGridView.Width;
int newWidth = dataGridView.RowHeadersWidth + 2;
for (int i = 0; i < dataGridView.Columns.Count; i++)
{
newWidth += dataGridView.Columns[i].Width;
}
int delta = newWidth - oldWidth;
//dataGridView.Width += delta;
form.Width += delta;
int oldHeight = dataGridView.Height;
int newHeight = dataGridView.ColumnHeadersHeight + 2;
for (int i = 0; i < dataGridView.Rows.Count; i++)
{
newHeight += dataGridView.Rows[i].Height;
}
delta = newHeight - oldHeight;
//dataGridView.Height += delta;
form.Height += delta;
}
/* public static void Highlight(DataGridView grid, int selectedColumn, int selectedRow)
{
for (int row = 0; row < grid.Rows.Count; row++)
{
for (int column = 0; column < grid.Columns.Count; column++)
{
DataGridViewCellStyle style =
(row == selectedRow || column == selectedColumn) ?
SelectedStyle : DefaultStyle;
grid.Rows[row].Cells[column].Style = style;
}
}
}
*/
/// <summary>
/// Convert an array of strings to an array of double values.
/// </summary>
public static double[] GetValues(string[] valueStrings)
{
double[] result = new double[valueStrings.Length];
for (int i = 0; i < result.Length; i++)
{
Exception exception = null;
try
{
result[i] = double.Parse(valueStrings[i]);
}
catch (ArgumentNullException ex)
{
exception = ex;
}
catch (FormatException ex)
{
exception = ex;
}
catch (OverflowException ex)
{
exception = ex;
}
if (exception != null)
{
throw new ApplicationException(exception.Message);
}
}
return result;
}
}
}