-
Notifications
You must be signed in to change notification settings - Fork 0
/
OMF_Data.java
253 lines (233 loc) · 6.04 KB
/
OMF_Data.java
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
import omf.*;
import omf.io.__OMF_Writer;
/*
* Created on Feb 16, 2006
* Feb 16, 2006 8:40:30 PM
*
* This class extends OMF_Const to allow
* resizing the data array
* appending data
* modifying data.
*
*/
public class OMF_Data extends OMF_Const
{
private int fAlloc;
public OMF_Data()
{
super();
fAlloc = 0;
}
public OMF_Data(byte[] data)
{
this(data, data.length);
}
public OMF_Data(byte[] data, int length)
{
super();
fAlloc = 0;
ResizeTo(length);
AppendData(data, length);
}
public void AppendData(byte[] data)
{
AppendData(data, data.length);
}
public void AppendData(byte[] data, int size)
{
ResizeBy(size);
System.arraycopy(data, 0, fData, fLength, size);
fLength += size;
}
public void AppendData(byte b)
{
ResizeBy(1);
fData[fLength++] = b;
}
public void AppendData(OMF_Const data)
{
AppendData(data.Data(), data.CodeSize());
}
public void AppendData(OMF_DS ds)
{
AppendData(ds.CodeSize(), (byte)0);
}
public void AppendData(OMF_Opcode op)
{
if (op instanceof OMF_Const)
{
AppendData((OMF_Const)op);
}
else
{
int size = op.CodeSize();
if (size > 0)
{
AppendData(size, (byte)0);
}
}
}
public void AppendData(int count, byte b)
{
ResizeBy(count);
for (int i = 0; i < count; i++)
{
fData[fLength++] = b;
}
}
private void ResizeBy(int add)
{
if (fLength + add > fAlloc)
{
fAlloc = (fLength + add + 4095) & (~4095);
byte[] tmp = new byte[fAlloc];
if (fData != null && fLength != 0)
{
System.arraycopy(fData, 0, tmp, 0, fLength);
}
fData = tmp;
}
}
private void ResizeTo(int size)
{
if (fAlloc <= size)
{
fAlloc = (size + 4095) & (~4095);
byte[] tmp = new byte[fAlloc];
if (fData != null && fLength != 0)
{
System.arraycopy(fData, 0, tmp, 0, fLength);
}
fData = tmp;
}
}
public void Modify(int location, int value, int count, int numsex)
{
int i;
if (numsex == 0)
{
for (i = 0; i < count; i++)
{
fData[location + i] = (byte)(value & 0xff);
value = value >> 8;
}
}
else
{
location += count - 1;
for (i = 0; i < count; i++)
{
fData[location - i] = (byte)(value & 0xff);
value = value >> 8;
}
}
}
public void AppendString(String s, int lablen)
{
int length = s.length();
byte[] data = s.getBytes();
if (lablen == 0)
{
ResizeBy(1 + length);
fData[fLength++] = (byte)length;
for (int i = 0; i < length; i++)
fData[fLength++] = data[i];
}
else
{
ResizeBy(lablen);
int i;
for (i = 0; i < length; i++)
{
if (i == lablen) break;
fData[fLength++] = data[i];
}
for (; i < lablen; i++)
fData[fLength] = ' ';
}
}
public void AppendInt8(int num, int numsex)
{
ResizeBy(1);
fData[fLength++] = (byte)(num & 0xff);
}
public void AppendInt16(int num, int numsex)
{
ResizeBy(2);
if (numsex == 0)
{
fData[fLength++] = (byte)(num & 0xff);
fData[fLength++] = (byte)((num >> 8) & 0xff);
}
else
{
fData[fLength++] = (byte)((num >> 8) & 0xff);
fData[fLength++] = (byte)(num & 0xff);
}
}
public void AppendInt24(int num, int numsex)
{
ResizeBy(3);
if (numsex == 0)
{
fData[fLength++] = (byte)(num & 0xff);
fData[fLength++] = (byte)((num >> 8) & 0xff);
fData[fLength++] = (byte)((num >> 16) & 0xff);
}
else
{
fData[fLength++] = (byte)((num >> 16) & 0xff);
fData[fLength++] = (byte)((num >> 8) & 0xff);
fData[fLength++] = (byte)(num & 0xff);
}
}
public void AppendInt32(int num, int numsex)
{
ResizeBy(4);
if (numsex == 0)
{
fData[fLength++] = (byte)(num & 0xff);
fData[fLength++] = (byte)((num >> 8) & 0xff);
fData[fLength++] = (byte)((num >> 16) & 0xff);
fData[fLength++] = (byte)((num >> 24) & 0xff);
}
else
{
fData[fLength++] = (byte)((num >> 24) & 0xff);
fData[fLength++] = (byte)((num >> 16) & 0xff);
fData[fLength++] = (byte)((num >> 8) & 0xff);
fData[fLength++] = (byte)(num & 0xff);
}
}
public int ByteAt(int location)
{
if (location <0 || location >= fLength) return 0;
return fData[location];
}
public void Reset()
{
fAlloc = 0;
fLength = 0;
fData = null;
}
/*
public byte[] Data()
{
return fData;
}
*/
public void Save(__OMF_Writer out)
{
if (fLength == 0) return;
//if (fSize < 0xe0)
//{
// out.Write8(fSize);
//}
//else
//{
out.Write8(0xf2);
out.Write32(fLength);
//}
out.WriteBytes(fData, fLength);
}
}