forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBitFieldNode.cs
More file actions
411 lines (363 loc) · 9.68 KB
/
Copy pathBitFieldNode.cs
File metadata and controls
411 lines (363 loc) · 9.68 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Drawing;
using System.Linq;
using System.Web.UI.Design;
using System.Windows.Forms;
using System.Xml.Linq;
using ReClassNET.Controls;
using ReClassNET.Extensions;
using ReClassNET.Forms;
using ReClassNET.Memory;
using ReClassNET.UI;
using ReClassNET.Util;
namespace ReClassNET.Nodes
{
public class BitFieldNode : BaseContainerNode
{
private int size;
private int bits;
public BaseNode InnerNode;
/// <summary>Gets or sets the bit count.</summary>
/// <value>Possible values: 64, 32, 16, 8</value>
public int Bits
{
get => bits;
set
{
Contract.Ensures(bits > 0);
Contract.Ensures(size > 0);
if (value >= 64)
{
bits = 64;
}
else if (value >= 32)
{
bits = 32;
}
else if (value >= 16)
{
bits = 16;
}
else
{
bits = 8;
}
size = bits / 8;
}
}
public override int MemorySize => size;
protected override bool ShouldCompensateSizeChanges => false;
public BitFieldNode()
{
Bits = IntPtr.Size * 8;
LevelsOpen.DefaultValue = true;
}
public override void Initialize()
{
if (InnerNode == null)
{
var boolnode = new BoolNode();
boolnode.Initialize();
CopyFromNode(boolnode);
}
}
public override bool CanHandleChildNode(BaseNode node)
{
if (node.MemorySize <= InnerNode.MemorySize)
return bChildNodeChangeAllowed;
return false;
}
public override void GetUserInterfaceInfo(out string name, out Image icon)
{
name = "Bitfield";
icon = Properties.Resources.B16x16_Button_Bits;
}
public override void CopyFromNode(BaseNode node)
{
base.CopyFromNode(node);
if (CanChangeInnerNodeTo(node))
InnerNode = node;
else
InnerNode = new BoolNode(); //Default to bool
Bits = InnerNode.MemorySize * 8;
for (int i = 0; i < Bits; i++)
{
var bitfield = new SingleBitNode();
bitfield.BitCap = Bits;
bitfield.bParentIsBoolean = node is BoolNode;
AddNode(bitfield);
bitfield.Name = $"_{Offset:X}_bit{bitfield.Offset}b{bitfield.BitStart}";
}
}
public override void UpdateOffsets()
{
int count = 0;
foreach (var subnode in Nodes)
{
subnode.Offset = count / 8;
if (subnode is SingleBitNode singlebitnode)
{
singlebitnode.BitStart = count;
}
count+= subnode.MemorySize;
}
}
public void UpdateChildNodes()
{
int count = 0;
foreach (var subnode in Nodes)
{
subnode.Offset = count / 8;
if (subnode is SingleBitNode singlebitnode)
{
singlebitnode.BitStart = count;
singlebitnode.bParentIsBoolean = InnerNode is BoolNode;
singlebitnode.BitCap = Bits;
}
count+= subnode.MemorySize;
}
}
public override void AddBytes(int newsize)
{
if (Nodes.Count < Bits)
{
newsize = Math.Min(newsize, Bits - Nodes.Count);
for (int i = 0; i < newsize; i++)
{
var bitfield = new SingleBitNode();
bitfield.BitCap = Bits;
bitfield.bParentIsBoolean = InnerNode is BoolNode;
AddNode(bitfield);
bitfield.Name = $"_{Offset:X}_bit{bitfield.Offset}b{bitfield.BitStart}";
}
}
}
public void ResizeInternals()
{
if (InnerNode == null)
throw new InvalidOperationException("Inner Type cannot be null");
if (Bits != Nodes.Count)
{
Bits = InnerNode.MemorySize * 8;
ClearNodes();
AddBytes(Bits);
return;
}
Bits = InnerNode.MemorySize * 8;
if (Nodes.Count > Bits)
{
//delete extra bits
foreach(BaseNode node in Nodes.Reverse())
{
if (Nodes.Count == Bits)
break;
RemoveNode(node);
}
}
else
AddBytes(Bits - Nodes.Count);
UpdateChildNodes();
}
/// <summary>
/// Gets the underlaying node for the bit field.
/// </summary>
/// <returns></returns>
public BaseNode GetUnderlayingNode()
{
return InnerNode;
}
/// <summary>Converts the memory value to a bit string.</summary>
/// <param name="memory">The process memory.</param>
/// <returns>The value converted to a bit string.</returns>
private string ConvertValueToBitString(MemoryBuffer memory)
{
Contract.Requires(memory != null);
Contract.Ensures(Contract.Result<string>() != null);
switch(bits)
{
case 64:
return BitString.ToString(memory.ReadInt64(Offset));
case 32:
return BitString.ToString(memory.ReadInt32(Offset));
case 16:
return BitString.ToString(memory.ReadInt16(Offset));
default:
return BitString.ToString(memory.ReadUInt8(Offset));
}
}
public override Size Draw(DrawContext context, int x, int y)
{
const int BitsPerBlock = 4;
if (IsHidden && !IsWrapped)
{
return DrawHidden(context, x, y);
}
var origX = x;
var origY = y;
AddSelection(context, x, y, context.Font.Height);
x = AddOpenCloseIcon(context, x, y);
x = AddIconPadding(context, x);
//x = AddIconPadding(context, x);
var subx = x;
x = AddAddressOffset(context, x, y);
x = AddText(context, x, y, context.Settings.TypeColor, HotSpot.NoneId, "Bits") + context.Font.Width;
if (!IsWrapped)
{
x = AddText(context, x, y, context.Settings.NameColor, HotSpot.NameId, Name) + context.Font.Width;
}
var tx = subx - 3;
for (var i = 0; i < bits; ++i)
{
var rect = new Rectangle(x + (i + i / BitsPerBlock) * context.Font.Width, y, context.Font.Width, context.Font.Height);
AddHotSpot(context, rect, string.Empty, i, HotSpotType.Edit);
}
var value = ConvertValueToBitString(context.Memory);
x = AddText(context, x, y, context.Settings.ValueColor, HotSpot.NoneId, value) + context.Font.Width;
x = AddIcon(context, x + 2, y, context.IconProvider.Change, 1, HotSpotType.Click);
x += context.Font.Width;
x = AddComment(context, x, y);
DrawInvalidMemoryIndicatorIcon(context, y);
AddContextDropDownIcon(context, y);
AddDeleteIcon(context, y);
if (LevelsOpen[context.Level])
{
y += context.Font.Height;
var size = new Size(subx - origX, y - origY);
var childOffset = tx - origX;
var innerContext = context.Clone();
innerContext.Level++;
innerContext.Address = context.Address + Offset;
innerContext.Memory = context.Memory.Clone();
innerContext.Memory.Offset += Offset;
int doneBits = 0;
foreach (var node in Nodes)
{
if (node is SingleBitNode sbn)
{
sbn.BitStart = doneBits;
doneBits += sbn.BitCount;
if (doneBits > Bits)
continue;
}
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 (context.ClientArea.Contains(tx, y))
{
var innerSize = node.Draw(innerContext, tx, y);
size = AggregateNodeSizes(size, ExtendWidth(innerSize, childOffset));
y += innerSize.Height;
}
else
{
// Otherwise calculate the height...
var calculatedHeight = node.CalculateDrawnHeight(innerContext);
// and check if the node area overlaps with the visible area...
if (new Rectangle(tx, y, 9999999, calculatedHeight).IntersectsWith(context.ClientArea))
{
// then draw the node...
var innerSize = node.Draw(innerContext, 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;
}
}
}
y -= 8;
}
return new Size(x - origX, y - origY + context.Font.Height);
}
public override int CalculateDrawnHeight(DrawContext context)
{
if (IsHidden && !IsWrapped)
{
return HiddenHeight;
}
var height = context.Font.Height;
if (LevelsOpen[context.Level])
{
var nv = context.Clone();
height += context.Font.Height + 8;
height += Nodes.Sum(n => n.CalculateDrawnHeight(nv));
}
return height;
}
private bool CanChangeInnerNodeTo(BaseNode node)
{
switch (node)
{
case FloatNode:
case DoubleNode:
return false;
case BaseNumericNode:
case BaseHexNode:
return true;
}
return false;
}
private bool CanChangeInnerNodeTo(Type nodetype)
{
if (nodetype == typeof(FloatNode) || nodetype == typeof(DoubleNode) || nodetype == typeof(SingleBitNode))
return false;
else if (nodetype.IsSubclassOf(typeof(BaseNumericNode)) || nodetype.IsSubclassOf(typeof(BaseHexNode)))
return true;
return false;
}
private void ChangeInnerNode(BaseNode node)
{
if (!CanChangeInnerNodeTo(node))
{
throw new InvalidOperationException($"Can't change inner node to '{node?.GetType().ToString() ?? "null"}'");
}
if (InnerNode != node)
{
InnerNode = node;
if (node != null)
{
node.ParentNode = this;
}
GetParentContainer()?.ChildHasChanged(this);
}
}
public override void Update(HotSpot spot)
{
base.Update(spot);
if (spot.Id == 1)
{
var items = NodeTypesBuilder.CreateToolStripMenuItems(t =>
{
var node = BaseNode.CreateInstanceFromType(t);
if (CanChangeInnerNodeTo(node))
{
ChangeInnerNode(node);
ResizeInternals();
}
}, false);
var menu = new ContextMenuStrip();
List<ToolStripItem> list = new List<ToolStripItem>();
foreach (var item in items)
{
if ((item is TypeToolStripMenuItem typeitem && CanChangeInnerNodeTo(typeitem.Value)))
{
list.Add(item);
}
}
menu.Items.AddRange(list.ToArray());
menu.Show(MainForm.MousePosition);
}
}
}
}