source: oup/current/Global/RawList.pas@ 197

Last change on this file since 197 was 178, checked in by alloc, 18 years ago
File size: 12.9 KB
RevLine 
[97]1unit RawList;
2interface
[101]3uses TypeDefs;
[97]4
5type
6 THandler = function(ConnectionID, FileID: Integer): TRawDataList;
[101]7 TRawListHandler = record
[97]8 Ext: String[4];
9 needed: Boolean;
10 Handler: THandler;
11 end;
[101]12 TRawListHandlers = array of TRawListHandler;
[97]13
14 TRawLists = class
15 private
16 FRawListHandlers: TRawListHandlers;
17 public
[105]18 property RawListHandlers: TRawListHandlers read FRawListHandlers;
[97]19 procedure InsertRawListHandler(ext: String; needed: Boolean; handler: THandler);
20 function GetRawList(ConnectionID, FileID: Integer): TRawDataList;
21 function GetRawInfo(ConnectionID, FileID, DatOffset: Integer): TRawDataInfo;
22 end;
23
24
25var
26 RawLists: TRawLists;
27
[101]28
[97]29implementation
30
31uses
[128]32 Template, ConnectionManager, Access_OniArchive, Classes, SysUtils, Math;
[97]33
34
35function AGDB(ConnectionID, FileID: Integer): TRawDataList;
36var
37 link: Integer;
38 links: Integer;
39 i: Integer;
40begin
[101]41 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $1C, 4, @links);
42 links := links * 2;
43 SetLength(Result, links);
44 for i := 0 to links - 1 do
[97]45 begin
[101]46 Result[i].SrcOffset := $20 + i * 4;
47 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $20 + i * 4, 4, @link);
48 Result[i].RawAddr := link;
49 Result[i].RawSize := 32;
50 Result[i].LocSep := False;
[97]51 end;
52end;
53
54
55
56
57function AKVA(ConnectionID, FileID: Integer): TRawDataList;
58var
59 link: Integer;
60 links: Integer;
61 i: Integer;
62begin
[101]63 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $1C, 4, @links);
64 SetLength(Result, links);
65 for i := 0 to links - 1 do
[97]66 begin
[101]67 Result[i].SrcOffset := $20 + i * $74 + $24;
68 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $20 + i * $74 + $24, 4, @link);
69 Result[i].RawAddr := link;
70 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $20 + i * $74 + $28, 4, @link);
71 Result[i].RawSize := link;
72 Result[i].LocSep := False;
[97]73 end;
74end;
75
76
77
78
79function BINA(ConnectionID, FileID: Integer): TRawDataList;
80var
81 link: Integer;
82 datasize: Integer;
83begin
84 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $0C, 4, @link);
85 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $08, 4, @datasize);
86 SetLength(Result, 1);
[101]87 Result[0].SrcOffset := $0C;
88 Result[0].RawAddr := link;
89 Result[0].RawSize := datasize;
90 Result[0].LocSep := not (ConManager.Connection[ConnectionID].DataOS = DOS_WIN);
[97]91end;
92
93
94
95
96function OSBD(ConnectionID, FileID: Integer): TRawDataList;
97var
98 link: Integer;
99 datasize: Integer;
100begin
101 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $08, 4, @datasize);
102 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $0C, 4, @link);
103 SetLength(Result, 1);
[101]104 Result[0].SrcOffset := $0C;
105 Result[0].RawAddr := link;
106 Result[0].RawSize := datasize;
107 Result[0].LocSep := not (ConManager.Connection[ConnectionID].DataOS = DOS_WIN);
[97]108end;
109
110
111
112
113function SNDD(ConnectionID, FileID: Integer): TRawDataList;
114var
115 link: Integer;
116 datasize: Integer;
117begin
118 SetLength(Result, 1);
[173]119 if ConManager.Connection[ConnectionID].DataOS in [DOS_MACBETA, DOS_MAC] then
[97]120 begin
[101]121 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $10, 4, @datasize);
122 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $14, 4, @link);
123 Result[0].SrcOffset := $14;
[97]124 end
125 else
126 begin
[101]127 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $40, 4, @datasize);
128 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $44, 4, @link);
129 Result[0].SrcOffset := $44;
[97]130 end;
[101]131 Result[0].RawAddr := link;
132 Result[0].RawSize := datasize;
133 Result[0].LocSep := False;
[97]134end;
135
136
137
138
139function SUBT(ConnectionID, FileID: Integer): TRawDataList;
140var
141 baselink, lastlink: Integer;
142 links: Integer;
[101]143 Data: TStream;
[147]144 read: Integer;
145 char: Byte;
146 foundzeros: Byte;
[97]147begin
[147]148 SetLength(Result, 0);
149
[97]150 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $18, 4, @baselink);
151 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $1C, 4, @links);
152 if links > 0 then
153 begin
154 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $20 + (links - 1) * 4, 4, @lastlink);
[101]155 Data := nil;
156 TAccess_OniArchive(ConManager.Connection[ConnectionID]).LoadRawOffset(
157 False, baselink, lastlink + 1024, Data);
[149]158 Data.Seek(lastlink, soFromBeginning);
[147]159
160 foundzeros := 0;
161 repeat
162 read := Data.Read(char, 1);
163 if (read > 0) and (char = 0) then
[97]164 begin
[147]165 Inc(foundzeros);
[97]166 end;
[147]167 until (read = 0) or (foundzeros = 2);
168
169 if foundzeros = 2 then
170 begin
171 SetLength(Result, 1);
172 Result[0].SrcID := FileID;
173 Result[0].SrcOffset := $18;
174 Result[0].RawAddr := baselink;
175 Result[0].RawSize := Data.Position;
176 Result[0].LocSep := False;
[97]177 end;
178 end;
179end;
180
181
182
183
184function TRAM(ConnectionID, FileID: Integer): TRawDataList;
185var
186 i: Integer;
187 link: Integer;
188 frames: Word;
189 tempb: Byte;
190 tempw: Word;
191 templ: Integer;
192 Data: TByteData;
193 offset: Word;
[168]194 frame_count: Integer;
[97]195begin
196 SetLength(Result, 13);
197 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $16C, 2, @frames);
[171]198 {x-z-pos}
[97]199 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $0C, 4, @link);
[101]200 Result[0].SrcOffset := $0C;
201 Result[0].RawAddr := link;
[171]202 if link > 0 then
203 Result[0].RawSize := frames * 4
204 else
205 Result[0].RawSize := 0;
206 {y-pos}
[97]207 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $10, 4, @link);
[101]208 Result[1].SrcOffset := $10;
209 Result[1].RawAddr := link;
[169]210 if link > 0 then
211 Result[1].RawSize := frames * 8
212 else
213 Result[1].RawSize := 0;
[97]214 {attacks}
215 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $182, 1, @tempb);
216 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $14, 4, @link);
[101]217 Result[2].SrcOffset := $14;
218 Result[2].RawAddr := link;
219 Result[2].RawSize := tempb * 32;
[97]220 {damage}
221 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $183, 1, @tempb);
222 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $18, 4, @link);
[101]223 Result[3].SrcOffset := $18;
224 Result[3].RawAddr := link;
225 Result[3].RawSize := tempb * 8;
[97]226 {motionblur}
227 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $184, 1, @tempb);
228 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $1C, 4, @link);
[101]229 Result[4].SrcOffset := $1C;
230 Result[4].RawAddr := link;
[161]231 Result[4].RawSize := tempb * 12;
[97]232 {shortcut}
233 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $185, 1, @tempb);
234 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $20, 4, @link);
[101]235 Result[5].SrcOffset := $20;
236 Result[5].RawAddr := link;
237 Result[5].RawSize := tempb * 8;
[97]238 {throw}
239 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $24, 4, @link);
[101]240 Result[6].SrcOffset := $24;
241 Result[6].RawAddr := link;
[97]242 if link > 0 then
[101]243 Result[6].RawSize := 24
[97]244 else
[101]245 Result[6].RawSize := 0;
[97]246 {footstep}
247 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $186, 1, @tempb);
248 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $28, 4, @link);
[101]249 Result[7].SrcOffset := $28;
250 Result[7].RawAddr := link;
251 Result[7].RawSize := tempb * 4;
[97]252 {particle}
253 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $187, 1, @tempb);
254 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $2C, 4, @link);
[101]255 Result[8].SrcOffset := $2C;
256 Result[8].RawAddr := link;
257 Result[8].RawSize := tempb * 24;
[97]258 {position}
259 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $30, 4, @link);
[101]260 Result[9].SrcOffset := $30;
261 Result[9].RawAddr := link;
262 Result[9].RawSize := frames * 8;
[97]263 {particle}
264 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $154, 2, @tempw);
265 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $38, 4, @link);
[101]266 Result[11].SrcOffset := $38;
267 Result[11].RawAddr := link;
268 Result[11].RawSize := tempw * 34;
[97]269 {extent}
270 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $138, 4, @templ);
271 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $13C, 4, @link);
[101]272 Result[12].SrcOffset := $13C;
273 Result[12].RawAddr := link;
274 Result[12].RawSize := templ * 12;
[97]275
276 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $34, 4, @link);
277 if link > 0 then
278 begin
279 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $160, 2, @tempw);
280 frame_count := 0;
281 i := 0;
282 SetLength(Data, $FFFF);
[101]283 TAccess_OniArchive(ConManager.Connection[ConnectionID]).LoadRawOffset(
284 False, link, $FFFF, Data);
[97]285 offset := Data[$24] + Data[$25] * 256;
286 while (offset + i < Length(Data)) and (frame_count < frames - 1) do
287 begin
288 Inc(i, tempw);
289 frame_count := frame_count + Data[offset + i];
290 Inc(i);
291 end;
292 if offset + i < Length(Data) then
293 begin
294 Inc(i, tempw);
[101]295 Result[10].RawSize := offset + i;
[97]296 end
297 else
298 begin
[101]299 Result[10].RawSize := 0;
[97]300 end;
301 end;
[101]302 Result[10].SrcOffset := $34;
303 Result[10].RawAddr := link;
[97]304end;
305
306
307
308
309function TXMP(ConnectionID, FileID: Integer): TRawDataList;
310var
311 link_pc: Integer;
312 link_mac: Integer;
313 x, y: Word;
314 storetype: Byte;
315 datasize: Integer;
[118]316 mipmap: Byte;
[128]317
318 function GetImgSize(w,h, storetype: Integer): Integer;
319 begin
320 case storetype of
321 0, 1, 2:
322 Result := w*h*2;
323 8:
324 Result := w*h*4;
325 9:
326 Result := Max(1, w div 4) * Max(1, h div 4) * 8;
327 else
328 Result := -1;
329 end;
330 end;
331
[97]332begin
[118]333 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $88, SizeOf(mipmap), @mipmap);
[97]334 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $8C, SizeOf(x), @x);
335 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $8E, SizeOf(y), @y);
336 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $90, SizeOf(storetype), @storetype);
337 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $9C, 4, @link_pc);
338 ConManager.Connection[ConnectionID].LoadDatFilePart(fileid, $A0, 4, @link_mac);
[118]339
340
[128]341 datasize := GetImgSize(x, y, storetype);
[118]342 if (mipmap and $01) > 0 then
343 begin
344 repeat
[128]345 x := Max(x div 2, 1);
346 y := Max(y div 2, 1);
347 datasize := datasize + GetImgSize(x, y, storetype);
348 until (x = 1) and (y = 1);
[118]349 end;
350
[97]351 SetLength(Result, 1);
[101]352 if ConManager.Connection[ConnectionID].DataOS = DOS_WIN then
[97]353 begin
[101]354 Result[0].SrcOffset := $9C;
355 Result[0].RawAddr := link_pc;
[97]356 end
357 else
358 begin
[101]359 Result[0].SrcOffset := $A0;
360 Result[0].RawAddr := link_mac;
[97]361 end;
[101]362 Result[0].RawSize := datasize;
363 Result[0].LocSep := not (ConManager.Connection[ConnectionID].DataOS = DOS_WIN);
[97]364end;
365
366
367
368
369function TRawLists.GetRawInfo(ConnectionID, FileID,
370 DatOffset: Integer): TRawDataInfo;
371var
372 i: Integer;
373 RawList: TRawDataList;
374begin
375 RawList := GetRawList(ConnectionID, FileID);
376 Result.SrcID := -1;
377 Result.SrcOffset := -1;
378 Result.RawAddr := -1;
379 Result.RawSize := -1;
380 if Length(RawList) > 0 then
381 begin
382 for i := 0 to High(RawList) do
383 begin
384 if RawList[i].SrcOffset = DatOffset then
385 begin
386 Result.SrcID := FileID;
387 Result.SrcOffset := RawList[i].SrcOffset;
388 Result.RawAddr := RawList[i].RawAddr;
389 Result.RawSize := RawList[i].RawSize;
390 Result.LocSep := RawList[i].LocSep;
391 Break;
392 end;
393 end;
394 end;
395end;
396
397
398function TRawLists.GetRawList(ConnectionID, FileID: Integer): TRawDataList;
399var
400 i: Integer;
401 fileinfo: TFileInfo;
402begin
403 SetLength(Result, 0);
404 fileinfo := ConManager.Connection[ConnectionID].GetFileInfo(FileID);
405 for i := 0 to High(FRawListHandlers) do
406 if UpperCase(FRawListHandlers[i].Ext) = UpperCase(fileinfo.extension) then
407 begin
408 if FRawListHandlers[i].needed then
409 Result := FRawListHandlers[i].Handler(ConnectionID, FileID);
410 Break;
411 end;
412end;
413
414procedure TRawLists.InsertRawListHandler(ext: String; needed: Boolean; handler: THandler);
415begin
416 SetLength(FRawListHandlers, Length(FRawListHandlers) + 1);
417 FRawListHandlers[High(FRawListHandlers)].Ext := ext;
418 FRawListHandlers[High(FRawListHandlers)].needed := needed;
419 FRawListHandlers[High(FRawListHandlers)].handler := handler;
420// Raws := Raws + ext;
421 AddToolListEntry('rawedit', '', ext);
422end;
423
424
425
426
427initialization
428 RawLists := TRawLists.Create;
[178]429 RawLists.InsertRawListHandler('AGDB', False, AGDB);
[97]430 RawLists.InsertRawListHandler('AKVA', True, AKVA);
431 RawLists.InsertRawListHandler('BINA', True, BINA);
432 RawLists.InsertRawListHandler('OSBD', True, OSBD);
433 RawLists.InsertRawListHandler('SNDD', True, SNDD);
434 RawLists.InsertRawListHandler('SUBT', True, SUBT);
435 RawLists.InsertRawListHandler('TRAM', True, TRAM);
436 RawLists.InsertRawListHandler('TXMP', True, TXMP);
437end.
Note: See TracBrowser for help on using the repository browser.