-
Notifications
You must be signed in to change notification settings - Fork 3
/
PyIntegerVar.cs
86 lines (72 loc) · 2.18 KB
/
PyIntegerVar.cs
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
using System;
using System.IO;
namespace eveMarshal
{
public class PyIntegerVar : PyObject
{
public byte[] Raw { get; private set; }
public PyIntegerVar()
: base (PyObjectType.IntegerVar)
{
}
public PyIntegerVar(byte[] data)
: base(PyObjectType.IntegerVar)
{
Raw = data;
}
public PyIntegerVar(int data)
: base(PyObjectType.IntegerVar)
{
Raw = GetData(data);
}
public PyIntegerVar(long data)
: base(PyObjectType.IntegerVar)
{
Raw = GetData(data);
}
public PyIntegerVar(short data)
: base(PyObjectType.IntegerVar)
{
Raw = GetData(data);
}
public PyIntegerVar(byte data)
: base(PyObjectType.IntegerVar)
{
Raw = new []{data};
}
private static byte[] GetData(long value)
{
if (value < 128)
return new[]{(byte)value};
if (value < Math.Pow(2, 15))
return BitConverter.GetBytes((short)value);
if (value < Math.Pow(2, 31))
return BitConverter.GetBytes((int)value);
return BitConverter.GetBytes(value);
}
public int Value
{
get
{
if (Raw.Length == 1)
return Raw[0];
if (Raw.Length == 2)
return BitConverter.ToInt16(Raw, 0);
if (Raw.Length == 4)
return BitConverter.ToInt32(Raw, 0);
return -1;
}
}
public override void Decode(Unmarshal context, MarshalOpcode op, BinaryReader source)
{
var len = source.ReadSizeEx();
Raw = source.ReadBytes((int) len);
}
protected override void EncodeInternal(BinaryWriter output)
{
output.WriteOpcode(MarshalOpcode.IntegerVar);
output.WriteSizeEx(Raw.Length);
output.Write(Raw);
}
}
}