forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrix3x3Node.cs
More file actions
90 lines (81 loc) · 3.16 KB
/
Matrix3x3Node.cs
File metadata and controls
90 lines (81 loc) · 3.16 KB
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 System;
using System.Runtime.InteropServices;
using ReClassNET.UI;
namespace ReClassNET.Nodes
{
public class Matrix3x3Node : BaseMatrixNode
{
[StructLayout(LayoutKind.Explicit)]
struct Matrix3x3Data
{
[FieldOffset(0)]
public float _11;
[FieldOffset(4)]
public float _12;
[FieldOffset(8)]
public float _13;
[FieldOffset(12)]
public float _21;
[FieldOffset(16)]
public float _22;
[FieldOffset(20)]
public float _23;
[FieldOffset(24)]
public float _31;
[FieldOffset(28)]
public float _32;
[FieldOffset(32)]
public float _33;
}
/// <summary>Size of the node in bytes.</summary>
public override int MemorySize => 9 * 4;
/// <summary>Draws this node.</summary>
/// <param name="view">The view information.</param>
/// <param name="x">The x coordinate.</param>
/// <param name="y">The y coordinate.</param>
/// <returns>The height the node occupies.</returns>
public override int Draw(ViewInfo view, int x2, int y2)
{
return DrawMatrixType(view, x2, y2, "Matrix (3x3)", (ref int x, ref int y, int defaultX) =>
{
var value = view.Memory.ReadObject<Matrix3x3Data>(Offset);
y += view.Font.Height;
x = defaultX;
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
x = AddText(view, x, y, Program.Settings.ValueColor, 0, $"{value._11,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 1, $"{value._12,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 2, $"{value._13,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
y += view.Font.Height;
x = defaultX;
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
x = AddText(view, x, y, Program.Settings.ValueColor, 3, $"{value._21,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 4, $"{value._22,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 5, $"{value._23,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
y += view.Font.Height;
x = defaultX;
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
x = AddText(view, x, y, Program.Settings.ValueColor, 6, $"{value._31,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 7, $"{value._32,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, ",");
x = AddText(view, x, y, Program.Settings.ValueColor, 8, $"{value._33,14:0.000}");
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NoneId, "|");
});
}
protected override int CalculateValuesHeight(ViewInfo view)
{
return 3 * view.Font.Height;
}
public override void Update(HotSpot spot)
{
base.Update(spot);
Update(spot, 9);
}
}
}