forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHex64Node.cs
More file actions
55 lines (42 loc) · 1.41 KB
/
Hex64Node.cs
File metadata and controls
55 lines (42 loc) · 1.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
using System;
using System.Drawing;
using ReClassNET.Memory;
using ReClassNET.UI;
namespace ReClassNET.Nodes
{
public class Hex64Node : BaseHexCommentNode
{
public override int MemorySize => 8;
public override void GetUserInterfaceInfo(out string name, out Image icon)
{
name = "Hex64";
icon = Properties.Resources.B16x16_Button_Hex_64;
}
public override bool UseMemoryPreviewToolTip(HotSpot spot, out IntPtr address)
{
var value = spot.Memory.ReadObject<UInt64FloatDoubleData>(Offset);
address = value.IntPtr;
return spot.Process.GetSectionToPointer(value.IntPtr) != null;
}
public override string GetToolTipText(HotSpot spot)
{
var value = spot.Memory.ReadObject<UInt64FloatDoubleData>(Offset);
return $"Int64: {value.LongValue}\nUInt64: 0x{value.ULongValue:X016}\nFloat: {value.FloatValue:0.000}\nDouble: {value.DoubleValue:0.000}";
}
public override Size Draw(ViewInfo view, int x, int y)
{
return Draw(view, x, y, view.Settings.ShowNodeText ? view.Memory.ReadString(view.Settings.RawDataEncoding, Offset, 8) + " " : null, 8);
}
public override void Update(HotSpot spot)
{
Update(spot, 8);
}
protected override int AddComment(ViewInfo view, int x, int y)
{
x = base.AddComment(view, x, y);
var value = view.Memory.ReadObject<UInt64FloatDoubleData>(Offset);
x = AddComment(view, x, y, value.FloatValue, value.IntPtr, value.UIntPtr);
return x;
}
}
}