forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClassNode.cs
More file actions
229 lines (189 loc) · 4.6 KB
/
Copy pathClassNode.cs
File metadata and controls
229 lines (189 loc) · 4.6 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
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
using System;
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Linq;
using ReClassNET.AddressParser;
using ReClassNET.Memory;
using ReClassNET.UI;
using ReClassNET.Util;
namespace ReClassNET.Nodes
{
public delegate void ClassCreatedEventHandler(ClassNode node);
public class ClassNode : BaseContainerNode
{
public static event ClassCreatedEventHandler ClassCreated;
/// <summary>Size of the node in bytes.</summary>
public override int MemorySize => Nodes.Sum(n => n.MemorySize);
private NodeUuid uuid;
public NodeUuid Uuid
{
get { return uuid; }
set
{
Contract.Requires(uuid != null);
uuid = value;
}
}
public IntPtr Address
{
set
{
Contract.Ensures(AddressFormula != null);
AddressFormula = value.ToString("X");
}
}
public string AddressFormula { get; set; }
public event NodeEventHandler NodesChanged;
internal ClassNode(bool notifyClassCreated)
{
Contract.Ensures(AddressFormula != null);
Uuid = new NodeUuid(true);
#if WIN64
Address = (IntPtr)0x140000000;
#else
Address = (IntPtr)0x400000;
#endif
if (notifyClassCreated)
{
ClassCreated?.Invoke(this);
}
}
public static ClassNode Create()
{
return new ClassNode(true);
}
public override void Intialize()
{
AddBytes(IntPtr.Size);
}
public override void ClearSelection()
{
base.ClearSelection();
foreach (var node in Nodes)
{
node.ClearSelection();
}
}
/// <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 x, int y)
{
AddSelection(view, 0, y, view.Font.Height);
x = AddOpenClose(view, x, y);
var tx = x;
x = AddIcon(view, x, y, Icons.Class, -1, HotSpotType.None);
x = AddText(view, x, y, Program.Settings.OffsetColor, 0, AddressFormula) + view.Font.Width;
x = AddText(view, x, y, Program.Settings.TypeColor, HotSpot.NoneId, "Class") + view.Font.Width;
x = AddText(view, x, y, Program.Settings.NameColor, HotSpot.NameId, Name) + view.Font.Width;
x = AddText(view, x, y, Program.Settings.ValueColor, HotSpot.NoneId, $"[{MemorySize}]") + view.Font.Width;
x = AddComment(view, x, y);
y += view.Font.Height;
if (levelsOpen[view.Level])
{
var nv = view.Clone();
nv.Level++;
foreach (var node in Nodes)
{
// If the node is in the visible area draw it.
if (view.ClientArea.Contains(tx, y))
{
y = node.Draw(nv, tx, y);
}
else
{
// Otherwise calculate the height...
var height = node.CalculateHeight(nv);
// and check if the nodes area overlaps with the visible area...
if (new Rectangle(tx, y, view.ClientArea.Width, height).IntersectsWith(view.ClientArea))
{
// then draw the node...
y = node.Draw(nv, tx, y);
}
else
{
// or skip drawing and just add the height.
y += height;
}
}
}
}
return y;
}
public override int CalculateHeight(ViewInfo view)
{
if (IsHidden)
{
return HiddenHeight;
}
var h = view.Font.Height;
if (levelsOpen[view.Level])
{
var nv = view.Clone();
nv.Level++;
h += Nodes.Sum(n => n.CalculateHeight(nv));
}
return h;
}
public override void Update(HotSpot spot)
{
base.Update(spot);
if (spot.Id == 0)
{
Offset = spot.Memory.Process.ParseAddress(spot.Text);
AddressFormula = spot.Text;
}
}
public void UpdateAddress(MemoryBuffer memory)
{
Contract.Requires(memory != null);
try
{
Offset = memory.Process.ParseAddress(AddressFormula);
}
catch (ParseException)
{
Offset = IntPtr.Zero;
}
}
public override void InsertBytes(int index, int size)
{
base.InsertBytes(index, size);
ChildHasChanged(null);
}
public override void InsertNode(int index, BaseNode node)
{
if (node is ClassNode || node is VMethodNode)
{
return;
}
base.InsertNode(index, node);
ChildHasChanged(node);
}
public override bool RemoveNode(BaseNode node)
{
var removed = base.RemoveNode(node);
if (removed)
{
UpdateOffsets();
ChildHasChanged(node);
}
return removed;
}
public override bool ReplaceChildNode(int index, BaseNode node)
{
var replaced = base.ReplaceChildNode(index, node);
if (replaced)
{
ChildHasChanged(node);
}
return replaced;
}
protected internal override void ChildHasChanged(BaseNode child)
{
NodesChanged?.Invoke(this);
}
}
}