-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathClassNode.cs
More file actions
254 lines (202 loc) · 5.41 KB
/
ClassNode.cs
File metadata and controls
254 lines (202 loc) · 5.41 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
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
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Linq;
using ReClassNET.AddressParser;
using ReClassNET.Extensions;
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;
#if RECLASSNET64
public static IntPtr DefaultAddress { get; } = (IntPtr)0x140000000;
#else
public static IntPtr DefaultAddress { get; } = (IntPtr)0x400000;
#endif
/// <summary>Size of the node in bytes.</summary>
public override int MemorySize => Nodes.Sum(n => n.MemorySize);
private NodeUuid uuid;
public NodeUuid Uuid
{
get => uuid;
set
{
Contract.Requires(value != 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);
Address = DefaultAddress;
if (notifyClassCreated)
{
ClassCreated?.Invoke(this);
}
}
public static ClassNode Create()
{
Contract.Ensures(Contract.Result<ClassNode>() != null);
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 pixel size the node occupies.</returns>
public override Size Draw(ViewInfo view, int x, int y)
{
AddSelection(view, 0, y, view.Font.Height);
var origX = x;
var origY = y;
x = AddOpenClose(view, x, y);
var tx = x;
x = AddIcon(view, x, y, Icons.Class, -1, HotSpotType.None);
x = AddText(view, x, y, view.Settings.OffsetColor, 0, AddressFormula) + view.Font.Width;
x = AddText(view, x, y, view.Settings.TypeColor, HotSpot.NoneId, "Class") + view.Font.Width;
x = AddText(view, x, y, view.Settings.NameColor, HotSpot.NameId, Name) + view.Font.Width;
x = AddText(view, x, y, view.Settings.ValueColor, HotSpot.NoneId, $"[{MemorySize}]") + view.Font.Width;
x = AddComment(view, x, y);
y += view.Font.Height;
var size = new Size(x - origX, y - origY);
if (levelsOpen[view.Level])
{
var childOffset = tx - origX;
var nv = view.Clone();
nv.Level++;
foreach (var node in Nodes)
{
// Draw the node if it is in the visible area.
if (view.ClientArea.Contains(tx, y))
{
var innerSize = node.Draw(nv, tx, y);
size = Utils.AggregateNodeSizes(size, innerSize.Extend(childOffset, 0));
y += innerSize.Height;
}
else
{
// Otherwise calculate the height...
var calculatedHeight = node.CalculateDrawnHeight(nv);
// and check if the node area overlaps with the visible area...
if (new Rectangle(tx, y, 9999999, calculatedHeight).IntersectsWith(view.ClientArea))
{
// then draw the node...
var innerSize = node.Draw(nv, tx, y);
size = Utils.AggregateNodeSizes(size, innerSize.Extend(childOffset, 0));
y += innerSize.Height;
}
else
{
// or skip drawing and just use the calculated height.
size = Utils.AggregateNodeSizes(size, new Size(0, calculatedHeight));
y += calculatedHeight;
}
}
}
}
return size;
}
public override int CalculateDrawnHeight(ViewInfo view)
{
if (IsHidden)
{
return HiddenHeight;
}
var height = view.Font.Height;
if (levelsOpen[view.Level])
{
var nv = view.Clone();
nv.Level++;
height += Nodes.Sum(n => n.CalculateDrawnHeight(nv));
}
return height;
}
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(RemoteProcess process)
{
Contract.Requires(process != null);
try
{
Offset = process.ParseAddress(AddressFormula);
}
catch (ParseException)
{
Offset = IntPtr.Zero;
}
}
public override void InsertBytes(int index, int size, ref List<BaseNode> createdNodes)
{
base.InsertBytes(index, size, ref createdNodes);
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, Type nodeType, ref List<BaseNode> createdNodes)
{
var replaced = base.ReplaceChildNode(index, nodeType, ref createdNodes);
if (replaced)
{
ChildHasChanged(null); //TODO
}
return replaced;
}
protected internal override void ChildHasChanged(BaseNode child)
{
NodesChanged?.Invoke(this);
}
}
}