-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryReaderExtension.cs
69 lines (56 loc) · 1.7 KB
/
BinaryReaderExtension.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
using System;
using System.IO;
namespace SupSubtitleParser
{
public static class BigEndianBinaryReaderExtension
{
public static UInt16 ReadTwoBytes(this BinaryReader reader)
{
byte[] buffer = reader.ReadBytes(2);
if (buffer.Length < 2)
{
return 0;
}
return (UInt16)((buffer[0] << 8) + buffer[1]);
}
public static UInt32 ReadThreeBytes(this BinaryReader reader)
{
byte[] buffer = reader.ReadBytes(3);
if (buffer.Length < 3)
{
return 0;
}
return (uint)((buffer[0] << 16) + (buffer[1] << 8) + buffer[2]);
}
public static UInt32 ReadFourBytes(this BinaryReader reader)
{
byte[] buffer = reader.ReadBytes(4);
if (buffer.Length < 4)
{
return 0;
}
return (uint)((buffer[0] << 24) + (buffer[1] << 16) + (buffer[2] << 8) + (buffer[3]));
}
public static bool EOF(this BinaryReader binaryReader)
{
var bs = binaryReader.BaseStream;
return (bs.Position == bs.Length);
}
public static bool Back(this BinaryReader binaryReader, int Count)
{
if (!binaryReader.BaseStream.CanSeek)
{
return false;
}
if (binaryReader.BaseStream.Position <= Count)
{
binaryReader.BaseStream.Seek(0, SeekOrigin.Begin);
}
else
{
binaryReader.BaseStream.Seek(Count * -1, SeekOrigin.Current);
}
return true;
}
}
}