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