-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ByteMask.cs
58 lines (51 loc) · 1.65 KB
/
ByteMask.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
using System;
using System.Collections.Generic;
using System.Text;
namespace SciLor_s_Mashed_Runner {
public class ByteMask {
private byte[] pattern;
public byte[] Pattern {
get { return pattern; }
}
private bool[] mask;
public bool[] Mask {
get { return mask; }
}
private String maskString;
private string p;
public ByteMask(String maskString) {
this.maskString = maskString;
this.pattern = stringToPattern(maskString);
this.mask = stringToMask(maskString);
}
private byte[] stringToPattern(String pattern) {
String[] byteText = pattern.Split(' ');
byte[] bytes = new byte[byteText.Length];
for (int i = 0; i < byteText.Length; i++) {
String text = byteText[i];
if (text != "??") {
bytes[i] = byte.Parse(text, System.Globalization.NumberStyles.HexNumber);
} else {
bytes[i] = 0;
}
}
return bytes;
}
private bool[] stringToMask(String pattern) {
String[] byteText = pattern.Split(' ');
bool[] bytes = new bool[byteText.Length];
for (int i = 0; i < byteText.Length; i++) {
String text = byteText[i];
if (text != "??") {
bytes[i] = true;
} else {
bytes[i] = false;
}
}
return bytes;
}
public int Length() {
return this.pattern.Length;
}
}
}