forked from tarekwiz/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointerNode.cs
More file actions
133 lines (104 loc) · 3.03 KB
/
Copy pathPointerNode.cs
File metadata and controls
133 lines (104 loc) · 3.03 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
using System;
using System.Drawing;
using ReClassNET.Memory;
using ReClassNET.UI;
namespace ReClassNET.Nodes
{
public class PointerNode : BaseWrapperNode
{
private readonly MemoryBuffer memory = new MemoryBuffer();
public override int MemorySize => IntPtr.Size;
protected override bool PerformCycleCheck => false;
public PointerNode()
{
LevelsOpen.DefaultValue = true;
}
public override void GetUserInterfaceInfo(out string name, out Image icon)
{
name = "Pointer";
icon = Properties.Resources.B16x16_Button_Pointer;
}
public override bool UseMemoryPreviewToolTip(HotSpot spot, MemoryBuffer memory, out IntPtr address)
{
// TODO Should the preview be disabled if an inner node is set?
address = memory.ReadIntPtr(Offset);
return memory.Process?.GetNamedAddress(address) != null;
}
public override bool CanChangeInnerNodeTo(BaseNode node)
{
switch (node)
{
case ClassNode _:
case VirtualMethodNode _:
return false;
}
return true;
}
public override Size Draw(ViewInfo view, int x, int y)
{
if (IsHidden && !IsWrapped)
{
return DrawHidden(view, x, y);
}
var origX = x;
var origY = y;
AddSelection(view, x, y, view.Font.Height);
if (InnerNode != null)
{
x = AddOpenClose(view, x, y);
}
else
{
x += TextPadding;
}
x = AddIcon(view, x, y, Icons.Pointer, -1, HotSpotType.None);
var tx = x;
x = AddAddressOffset(view, x, y);
x = AddText(view, x, y, view.Settings.TypeColor, HotSpot.NoneId, "Ptr") + view.Font.Width;
if (!IsWrapped)
{
x = AddText(view, x, y, view.Settings.NameColor, HotSpot.NameId, Name) + view.Font.Width;
}
if (InnerNode == null)
{
x = AddText(view, x, y, view.Settings.ValueColor, HotSpot.NoneId, "<void>") + view.Font.Width;
}
x = AddIcon(view, x, y, Icons.Change, 4, HotSpotType.ChangeWrappedType) + view.Font.Width;
var ptr = view.Memory.ReadIntPtr(Offset);
x = AddText(view, x, y, view.Settings.OffsetColor, HotSpot.NoneId, "->") + view.Font.Width;
x = AddText(view, x, y, view.Settings.ValueColor, 0, "0x" + ptr.ToString(Constants.AddressHexFormat)) + view.Font.Width;
x = AddComment(view, x, y);
DrawInvalidMemoryIndicator(view, y);
AddTypeDrop(view, y);
AddDelete(view, y);
y += view.Font.Height;
var size = new Size(x - origX, y - origY);
if (LevelsOpen[view.Level] && InnerNode != null)
{
memory.Size = InnerNode.MemorySize;
memory.Process = view.Memory.Process;
memory.Update(ptr);
var v = view.Clone();
v.Address = ptr;
v.Memory = memory;
var innerSize = InnerNode.Draw(v, tx, y);
size.Width = Math.Max(size.Width, innerSize.Width + tx - origX);
size.Height += innerSize.Height;
}
return size;
}
public override int CalculateDrawnHeight(ViewInfo view)
{
if (IsHidden && !IsWrapped)
{
return HiddenHeight;
}
var height = view.Font.Height;
if (LevelsOpen[view.Level] && InnerNode != null)
{
height += InnerNode.CalculateDrawnHeight(view);
}
return height;
}
}
}