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
198 lines (155 loc) · 4.51 KB
/
ClassNode.cs
File metadata and controls
198 lines (155 loc) · 4.51 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
using System;
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Linq;
using ReClassNET.UI;
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;
public static string DefaultAddressFormula { get; } = "140000000";
#else
public static IntPtr DefaultAddress { get; } = (IntPtr)0x400000;
public static string DefaultAddressFormula { get; } = "400000";
#endif
public override int MemorySize => Nodes.Sum(n => n.MemorySize);
protected override bool ShouldCompensateSizeChanges => true;
private NodeUuid uuid;
public NodeUuid Uuid
{
get => uuid;
set
{
Contract.Requires(value != null);
uuid = value;
}
}
public string AddressFormula { get; set; } = DefaultAddressFormula;
public event NodeEventHandler NodesChanged;
internal ClassNode(bool notifyClassCreated)
{
Contract.Ensures(AddressFormula != null);
LevelsOpen.DefaultValue = true;
Uuid = new NodeUuid(true);
if (notifyClassCreated)
{
ClassCreated?.Invoke(this);
}
}
public static ClassNode Create()
{
Contract.Ensures(Contract.Result<ClassNode>() != null);
return new ClassNode(true);
}
public override void GetUserInterfaceInfo(out string name, out Image icon)
{
throw new InvalidOperationException($"The '{nameof(ClassNode)}' node should not be accessible from the ui.");
}
public override bool CanHandleChildNode(BaseNode node)
{
switch (node)
{
case null:
case ClassNode _:
case VirtualMethodNode _:
return false;
}
return true;
}
public override void Initialize()
{
AddBytes(IntPtr.Size);
}
public override Size Draw(ViewInfo view, int x, int y)
{
AddSelection(view, 0, y, view.Font.Height);
var origX = x;
var origY = y;
x = AddOpenCloseIcon(view, x, y);
var tx = x;
x = AddIcon(view, x, y, Icons.Class, HotSpot.NoneId, 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)
{
Size AggregateNodeSizes(Size baseSize, Size newSize)
{
return new Size(Math.Max(baseSize.Width, newSize.Width), baseSize.Height + newSize.Height);
}
Size ExtendWidth(Size baseSize, int width)
{
return new Size(baseSize.Width + width, baseSize.Height);
}
// Draw the node if it is in the visible area.
if (view.ClientArea.Contains(tx, y))
{
var innerSize = node.Draw(nv, tx, y);
size = AggregateNodeSizes(size, ExtendWidth(innerSize, childOffset));
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 = AggregateNodeSizes(size, ExtendWidth(innerSize, childOffset));
y += innerSize.Height;
}
else
{
// or skip drawing and just use the calculated height.
size = 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)
{
AddressFormula = spot.Text;
}
}
protected internal override void ChildHasChanged(BaseNode child)
{
NodesChanged?.Invoke(this);
}
}
}