forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBaseArrayNode.cs
More file actions
134 lines (112 loc) · 3.05 KB
/
BaseArrayNode.cs
File metadata and controls
134 lines (112 loc) · 3.05 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
using System;
using System.Diagnostics.Contracts;
using ReClassNET.UI;
namespace ReClassNET.Nodes
{
[ContractClass(typeof(BaseArrayNodeContract))]
public abstract class BaseArrayNode : BaseReferenceNode
{
public int CurrentIndex { get; set; }
public int Count { get; set; } = 1;
protected int Draw(ViewInfo view, int x, int y, string type, HotSpotType exchange)
{
Contract.Requires(view != null);
Contract.Requires(type != null);
if (IsHidden)
{
return DrawHidden(view, x, y);
}
AddSelection(view, x, y, view.Font.Height);
AddDelete(view, x, y);
AddTypeDrop(view, x, y);
x = AddOpenClose(view, x, y);
x = AddIcon(view, x, y, Icons.Array, -1, HotSpotType.None);
var tx = x;
x = AddAddressOffset(view, x, y);
x = AddText(view, x, y, view.Settings.TypeColor, HotSpot.NoneId, type) + view.Font.Width;
x = AddText(view, x, y, view.Settings.NameColor, HotSpot.NameId, Name);
x = AddText(view, x, y, view.Settings.IndexColor, HotSpot.NoneId, "[");
x = AddText(view, x, y, view.Settings.IndexColor, 0, Count.ToString());
x = AddText(view, x, y, view.Settings.IndexColor, HotSpot.NoneId, "]");
x = AddIcon(view, x, y, Icons.LeftArrow, 2, HotSpotType.Click);
x = AddText(view, x, y, view.Settings.IndexColor, HotSpot.NoneId, "(");
x = AddText(view, x, y, view.Settings.IndexColor, 1, CurrentIndex.ToString());
x = AddText(view, x, y, view.Settings.IndexColor, HotSpot.NoneId, ")");
x = AddIcon(view, x, y, Icons.RightArrow, 3, HotSpotType.Click);
x = AddText(view, x, y, view.Settings.ValueColor, HotSpot.NoneId, $"<{InnerNode.Name} Size={MemorySize}>");
x = AddIcon(view, x + 2, y, Icons.Change, 4, exchange);
x += view.Font.Width;
AddComment(view, x, y);
y += view.Font.Height;
if (levelsOpen[view.Level])
{
y = DrawChild(view, tx, y);
}
return y;
}
protected abstract int DrawChild(ViewInfo view, int x, int y);
public override int CalculateHeight(ViewInfo view)
{
if (IsHidden)
{
return HiddenHeight;
}
var h = view.Font.Height;
if (levelsOpen[view.Level])
{
h += CalculateChildHeight(view);
}
return h;
}
protected abstract int CalculateChildHeight(ViewInfo view);
public override void Update(HotSpot spot)
{
base.Update(spot);
if (spot.Id == 0 || spot.Id == 1)
{
int value;
if (int.TryParse(spot.Text, out value))
{
if (spot.Id == 0)
{
if (value != 0)
{
Count = value;
ParentNode.ChildHasChanged(this);
}
}
else
{
if (value < Count)
{
CurrentIndex = value;
}
}
}
}
else if (spot.Id == 2)
{
if (CurrentIndex > 0)
{
--CurrentIndex;
}
}
else if (spot.Id == 3)
{
if (CurrentIndex < Count - 1)
{
++CurrentIndex;
}
}
}
}
[ContractClassFor(typeof(BaseArrayNode))]
internal abstract class BaseArrayNodeContract : BaseArrayNode
{
protected override int DrawChild(ViewInfo view, int x, int y)
{
Contract.Requires(view != null);
throw new NotImplementedException();
}
}
}