forked from bippity/AdvancedWarpplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPacketFactory.cs
86 lines (76 loc) · 2.17 KB
/
PacketFactory.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.Text;
using System.IO;
namespace AdvancedWarpplates
{
/// <summary>
/// A friendly class that allows easy writing of packets
/// </summary>
public class PacketFactory
{
private readonly MemoryStream memoryStream;
private readonly BinaryWriter writer;
public PacketFactory()
{
memoryStream = new MemoryStream();
writer = new BinaryWriter(memoryStream);
writer.BaseStream.Position = 3L;
}
public PacketFactory SetType(short type)
{
long currentPosition = writer.BaseStream.Position;
writer.BaseStream.Position = 2L;
writer.Write(type);
writer.BaseStream.Position = currentPosition;
return this;
}
public PacketFactory PackByte(byte num)
{
writer.Write(num);
return this;
}
public PacketFactory PackInt16(short num)
{
writer.Write(num);
return this;
}
public PacketFactory PackInt32(int num)
{
writer.Write(num);
return this;
}
public PacketFactory PackUInt64(ulong num)
{
writer.Write(num);
return this;
}
public PacketFactory PackSingle(float num)
{
writer.Write(num);
return this;
}
public PacketFactory PackString(string str)
{
writer.Write(str);
return this;
}
private void UpdateLength()
{
long currentPosition = writer.BaseStream.Position;
writer.BaseStream.Position = 0L;
writer.Write((short)currentPosition);
writer.BaseStream.Position = currentPosition;
}
public static string ByteArrayToString(byte[] ba)
{
StringBuilder hex = new StringBuilder(ba.Length * 2);
foreach (byte b in ba)
hex.AppendFormat("{0:x2}", b);
return hex.ToString();
}
public byte[] GetByteData()
{
UpdateLength();
return memoryStream.ToArray();
}
}
}