ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/oup/current/Helper/LevelDB.pas
(Generate patch)

Comparing:
oup/rewrite/Helper/Helper_LevelDB.pas (file contents), Revision 97 by alloc, Mon Jan 22 23:05:45 2007 UTC vs.
oup/current/Helper/LevelDB.pas (file contents), Revision 173 by alloc, Wed May 2 13:19:40 2007 UTC

# Line 1 | Line 1
1 < unit Helper_LevelDB;
2 <
1 > unit LevelDB;
2   interface
4
3   uses
4    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
5    Dialogs, ComCtrls, StdCtrls, StrUtils;
# Line 14 | Line 12 | type
12      btn_abortok:  TButton;
13      lbl_estimation: TLabel;
14      procedure btn_abortokClick(Sender: TObject);
17  private
18    procedure HandleFile(ext: String; fileid: Integer; dir_dat2db: Boolean);
19    procedure stop_convert;
15    public
16      procedure CreateDatabase(Source, Target: String);
17      procedure CreateLevel(Source, Target: String);
# Line 27 | Line 22 | var
22    Form_LevelDB: TForm_LevelDB;
23  
24   implementation
30
25   {$R *.dfm}
26 + uses ABSMain, ABSDecUtil, Main,
27 +    ConnectionManager, TypeDefs, DataAccess, OniImgClass, Data, RawList,
28 +  Access_OniArchive;
29  
30 < uses ABSMain, ABSDecUtil, Main, Functions, Data, OniImgClass, DataStructures, ConnectionManager;
30 > var
31 >  Converting:  Boolean = False;
32 >  Abort:       Boolean = False;
33  
35 type
36  THandler = procedure(fileid: LongWord; dir_dat2db: Boolean);
34  
35 <  TConvertHandlers = record
36 <    Ext:     String[4];
37 <    needed:  Boolean;
38 <    Handler: THandler;
35 > function GetOpenMsg(msg: TStatusMessages): String;
36 > begin
37 >  case msg of
38 >    SM_AlreadyOpened:    Result := 'File already opened.';
39 >    SM_FileNotFound:     Result := 'File not found.';
40 >    SM_UnknownExtension: Result := 'Unknown extension.';
41 >    SM_IncompatibleFile: Result := 'Incompatible file format.';
42 >    SM_UnknownError:     Result := 'Unknown error.';
43    end;
44 + end;
45  
44 var
45  ConvertHandlers: array of TConvertHandlers;
46  loaded_filename: String;
47  converting: Boolean = False;
48  abort:     Boolean = False;
49  DataBase:  TABSDatabase;
50  Query:     TABSQuery;
51  MimeCoder: TStringFormat_MIME64;
46  
47 + procedure TForm_LevelDB.CreateLevel(Source, Target: String);
48 + const
49 +  EmptyBytes: Array[0..31] of Byte = (
50 +      0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 );
51   var
52 <  DatHeader:   THeader;
53 <  FilesHeader: TFilesMap;
52 >  DatHeader:        THeader;
53 >  FilesHeader:      TFilesMap;
54    NamedFilesHeader: TNamedFilesMap;
55    ExtensionsHeader: TExtensionsMap;
58  Stream_Body, Stream_Names: TMemoryStream;
59  Stream_Dat, Stream_Raw, Stream_Sep: TFileStream;
60  OniDataConnection: TOniData;
61
56  
57 +  Stream_Body, Stream_Names:          TMemoryStream;
58 +  Stream_Dat, Stream_Raw, Stream_Sep: TFileStream;
59  
60 +  BeginTime, FileTime: Double;
61 +  Step:     Integer;
62 +  LevelID:    Integer;
63 +  TimeFormat: TFormatSettings;
64 +
65 +  ConID:      Integer;
66 +  Connection: TDataAccess;
67 +  ConRepMsg:  TStatusMessages;
68 +
69 +  FileID:     Integer;
70 +
71 +  Strings:    TStrings;
72 +  i, j:       Integer;
73 +  temps:      String;
74 +  tempi:      Integer;
75 +  tempb:      Byte;
76 +  FileInfo:   TFileInfo;
77 +  DatLinks:   TDatLinkList;
78 +  RawLinks:   TRawDataList;
79  
80 < procedure TForm_LevelDB.CreateLevel(Source, target: String);
66 < var
67 <  files: LongWord;
68 <
69 <  i, j:     LongWord;
70 <  temps, temps2: String;
71 <  Data, rawdata: Tdata;
72 <  absolutebegintime, begintime: Double;
73 <  step:     Byte;
74 <  rawlist:  TRawList;
75 <  extlist:  TExtensionsMap;
76 <  fileinfo: TFileInfo;
77 <  datlinks: TDatLinks;
78 <  OniImage: TOniImage;
79 <  levelid:  LongWord;
80 <  timeformat: TFormatSettings;
81 <
82 <  conIndex: Integer;
83 <  connection: TOniData;
80 >  DatFileStream, RawFileStream: TMemoryStream;
81   const
82 <  steps: Byte = 3;
82 >  Steps: Byte = 3;
83  
84  
85 <
89 <
90 <  procedure DoStep(stepname: String);
85 >  procedure DoStep(StepName: String);
86    begin
87 <    Inc(step);
88 <    if stepname <> 'FIN' then
87 >    Inc(Step);
88 >    if StepName <> 'FIN' then
89        group_progress.Caption :=
90 <        'Creating Dat (Step ' + IntToStr(step) + '/' + IntToStr(steps) + ': ' + stepname + ')'
90 >        'Creating Dat (Step ' + IntToStr(Step) + '/' + IntToStr(Steps) + ': ' + StepName + ')'
91      else
92        group_progress.Caption := 'Creating Dat (FINISHED)';
93    end;
94  
95 +  procedure StopConvert;
96 +  begin
97 +    btn_abortok.Caption := '&Close';
98 +    btn_abortok.Default := True;
99 +    converting := False;
100 +    lbl_estimation.Caption := 'ABORTED';
101 +    group_progress.Caption := 'Creating Level (ABORTED)';
102 +
103 +    Stream_Body.Free;
104 +    Stream_Names.Free;
105 +    DatFileStream.Free;
106 +    RawFileStream.Free;
107 +    
108 +    Stream_Dat.Free;
109 +    Stream_Raw.Free;
110 +    if Connection.DataOS in [DOS_WINDEMO, DOS_MAC, DOS_MACBETA] then
111 +      Stream_Sep.Free;
112 +    
113 +    if MessageBox(Self.Handle, PChar('Delete the unfinished level-files?'),
114 +      PChar('Delete files?'), MB_YESNO) = idYes then
115 +    begin
116 +      DeleteFile(target);
117 +      DeleteFile(AnsiReplaceStr(Target, '.dat', '.raw'));
118 +      if Connection.DataOS in [DOS_WINDEMO, DOS_MAC, DOS_MACBETA] then
119 +        DeleteFile(AnsiReplaceStr(Target, '.dat', '.sep'));
120 +    end;
121 +  end;
122 +
123   begin
124  
125    //
126    // FILE EXISTS CHECK FÜR DAT/RAW/SEP!!!
127    //
128  
129 <  timeformat.ShortTimeFormat := 'hh:nn:ss';
130 <  timeformat.LongTimeFormat := 'hh:nn:ss';
131 <  timeformat.TimeSeparator := ':';
129 >  TimeFormat.ShortTimeFormat := 'hh:nn:ss';
130 >  TimeFormat.LongTimeFormat  := 'hh:nn:ss';
131 >  TimeFormat.TimeSeparator   := ':';
132  
133 <  connection := ConnectionExists(target);
134 <  if connection <> nil then
133 >  ConID := ConManager.OpenConnection(Source, ConRepMsg);
134 >  if not (ConRepMsg in [SM_OK, SM_AlreadyOpened]) then
135    begin
136 <    ShowMessage('Destination-file is opened, close it in order to proceed conversion?');
136 >    ShowMessage('Source-file couldn''t be opened! Aborting' + CrLf + GetOpenMsg(ConRepMsg));
137      Exit;
138 <  end;
138 >  end else
139 >    Connection := ConManager.Connection[ConID];
140  
141 <  connection := ConnectionExists(source);
142 <  if connection <> nil then
141 >  ConID := ConManager.FileOpened(Target);
142 >  if ConID >= 0 then
143    begin
144 <    ShowMessage('Source-file is opened, close it in order to proceed conversion?');
145 <    Exit;
144 >    if MessageBox(Self.Handle, PChar('Destination-file is opened, close it in ' +
145 >          'order to proceed conversion?'), PChar('Destination-file opened'),
146 >          MB_YESNO + MB_ICONQUESTION) = ID_YES then
147 >    begin
148 >      if Form_Main.CheckConnectionCloseable(ConID) then
149 >        if not ConManager.CloseConnection(ConID, ConRepMsg) then
150 >        begin
151 >          ShowMessage('Couldn''t close destination-file. Aborting');
152 >          Exit;
153 >        end;
154 >    end else begin
155 >      ShowMessage('Aborting');
156 >      Exit;
157 >    end;
158    end;
159  
160 <
125 <  if CreateDataConnection(Source, ODB_ADB) = nil then
160 >  if FileExists(Target) then
161    begin
162 <    ShowMessage('Could not connect to .oldb-file');
163 <    Exit;
162 >    if MessageBox(Self.Handle, PChar('Destination-file exists. ' +
163 >          'Overwrite it?'), PChar('Destination-file exists'),
164 >          MB_YESNO + MB_ICONWARNING) = ID_YES then
165 >    begin
166 >      if not DeleteFile(Target) then
167 >      begin
168 >        ShowMessage('Couldn''t delete file. Aborting');
169 >        Exit;
170 >      end;
171 >      if FileExists(AnsiReplaceStr(Target, '.dat', '.raw')) then
172 >        if not DeleteFile(AnsiReplaceStr(Target, '.dat', '.raw')) then
173 >        begin
174 >          ShowMessage('Couldn''t delete file. Aborting');
175 >          Exit;
176 >        end;
177 >      if FileExists(AnsiReplaceStr(Target, '.dat', '.sep')) then
178 >        if Connection.DataOS in [DOS_WINDEMO, DOS_MAC, DOS_MACBETA] then
179 >          if not DeleteFile(AnsiReplaceStr(Target, '.dat', '.sep')) then
180 >          begin
181 >            ShowMessage('Couldn''t delete file. Aborting');
182 >            Exit;
183 >          end;
184 >    end else begin
185 >      ShowMessage('Aborting');
186 >      Exit;
187 >    end;
188    end;
130  levelid  := OniDataConnection.LevelInfo.LevelNumber;
131  levelid  := (levelid * 2) * 256 * 256 * 256 + $01;
132  OniImage := TOniImage.Create;
189  
190 <  absolutebegintime := Time;
190 >  LevelID  := Connection.LevelNumber;
191 >  LevelID  := (LevelID * 2) * 256 * 256 * 256 + $01;
192  
193    Self.Visible := True;
194    Form_Main.Visible := False;
195 <  step  := 0;
196 <  converting := True;
197 <  abort := False;
195 >  Step := 0;
196 >  Converting := True;
197 >  Abort := False;
198    btn_abortok.Caption := '&Abort...';
199    btn_abortok.Default := False;
200 <  absolutebegintime := Time;
200 >  BeginTime := Time;
201  
202    Stream_Body  := TMemoryStream.Create;
203    Stream_Names := TMemoryStream.Create;
204 <  Stream_Dat   := TFileStream.Create(target, fmCreate);
205 <  Stream_Raw   := TFileStream.Create(AnsiReplaceStr(target, '.dat', '.raw'), fmCreate);
206 <  if OniDataConnection.OSisMac then
207 <    Stream_Sep := TFileStream.Create(AnsiReplaceStr(target, '.dat', '.sep'), fmCreate);
204 >  Stream_Dat   := TFileStream.Create(Target, fmCreate);
205 >  Stream_Raw   := TFileStream.Create(AnsiReplaceStr(Target, '.dat', '.raw'), fmCreate);
206 >  Stream_Raw.Write(EmptyBytes[0], 32);
207 >  if Connection.DataOS in [DOS_WINDEMO, DOS_MAC, DOS_MACBETA] then
208 >  begin
209 >    Stream_Sep := TFileStream.Create(AnsiReplaceStr(Target, '.dat', '.sep'), fmCreate);
210 >    Stream_Sep.Write(EmptyBytes[0], 32);
211 >  end;
212 >
213  
214    DoStep('Creating header');
215    progress.Position      := 0;
# Line 155 | Line 217 | begin
217    lbl_estimation.Caption := 'Estimated finishing time: unknown';
218    Application.ProcessMessages;
219  
220 <  NamedFilesHeader := TOniDataADB(OniDataConnection).GetNamedFilesMap;
221 <  extlist := OniDataConnection.GetExtendedExtensionsList;
222 <  for i := 0 to High(DatHeader.Ident) do
223 <    DatHeader.Ident[i] := OniDataConnection.LevelInfo.Ident[i];
224 <  DatHeader.Files := OniDataConnection.GetFilesCount;
220 >  SetLength(NamedFilesHeader, 0);
221 >  Strings := TStringList.Create;
222 >  Strings := Connection.GetFilesList('', '', False, ST_ExtNameAsc);
223 >  for i := 0 to Strings.Count - 1 do
224 >  begin
225 >    if MidStr(Strings.Strings[i],
226 >          Pos('-', Strings.Strings[i]) + 1,
227 >          Length(Strings.Strings[i]) -
228 >            Pos('.', ReverseString(Strings.Strings[i])) -
229 >            Pos('-', Strings.Strings[i])
230 >        ) <> '' then
231 >    begin
232 >      SetLength(NamedFilesHeader, Length(NamedFilesHeader) + 1);
233 >      NamedFilesHeader[High(NamedFilesHeader)].FileNumber := StrToInt(MidStr(Strings.Strings[i], 1, 5));
234 >      NamedFilesHeader[High(NamedFilesHeader)].blubb := 0;
235 >    end;
236 >  end;
237 >
238 >  for i := 0 to High(DatHeader.OSIdent) do
239 >    case Connection.DataOS of
240 >      DOS_WIN: DatHeader.OSIdent[i] := HeaderOSIdentWin[i];
241 >      DOS_MAC, DOS_WINDEMO: DatHeader.OSIdent[i] := HeaderOSIdentMac[i];
242 >      DOS_MACBETA: DatHeader.OSIdent[i] := HeaderOSIdentMacBeta[i];
243 >    end;
244 >  for i := 0 to High(DatHeader.GlobalIdent) do
245 >    DatHeader.GlobalIdent[i] := HeaderGlobalIdent[i];
246 >  DatHeader.Files := Connection.GetFileCount;
247    DatHeader.NamedFiles := Length(NamedFilesHeader);
248 <  DatHeader.Extensions := Length(extlist);
248 >
249 >  Strings := Connection.GetExtensionsList(EF_ExtCount);
250 >
251 >  DatHeader.Extensions := Strings.Count;
252    DatHeader.DataAddr   := 0;
253    DatHeader.DataSize   := 0;
254    DatHeader.NamesAddr  := 0;
# Line 171 | Line 258 | begin
258    SetLength(FilesHeader, DatHeader.Files);
259    SetLength(ExtensionsHeader, DatHeader.Extensions);
260  
261 +
262    DoStep('Writing extensions-header');
263 <  progress.Max := Length(OniDataConnection.GetExtensionsList);
263 >  progress.Max := Strings.Count;
264    Application.ProcessMessages;
265 <
178 <  for i := 0 to High(ExtensionsHeader) do
265 >  for i := 0 to Strings.Count - 1 do
266    begin
267 <    ExtensionsHeader[i].Ident     := extlist[i].Ident;
268 <    ExtensionsHeader[i].Extension := extlist[i].Extension;
269 <    SetLength(temps, 4);
267 >    temps := Strings.Strings[i];
268 >    ExtensionsHeader[i].ExtCount := StrToInt( MidStr(
269 >            temps,
270 >            Pos('(', temps) + 1,
271 >            Pos(')', temps) - Pos('(', temps) - 1 ) );
272 >    temps := MidStr(temps, 1, 4);
273      for j := 0 to 3 do
274 <      temps[j + 1] := ExtensionsHeader[i].Extension[3 - j];
275 <    ExtensionsHeader[i].ExtCount :=
276 <      Length(OniDataConnection.GetFilesList(temps, '', False, stIDAsc));
274 >      ExtensionsHeader[i].Extension[j] := temps[4-j];
275 >    for j := 0 to High(FileTypes) do
276 >      if FileTypes[j].Extension = temps then
277 >        Break;
278 >    if j < Length(FileTypes) then
279 >    begin
280 >      case Connection.DataOS of
281 >        DOS_WIN:     ExtensionsHeader[i].Ident := FileTypes[j].IdentWin;
282 >        DOS_WINDEMO:
283 >            if FileTypes[j].Extension = 'SNDD' then
284 >              ExtensionsHeader[i].Ident := FileTypes[j].IdentWin
285 >            else
286 >              ExtensionsHeader[i].Ident := FileTypes[j].IdentMac;
287 >        DOS_MAC:     ExtensionsHeader[i].Ident := FileTypes[j].IdentMac;
288 >        DOS_MACBETA: ExtensionsHeader[i].Ident := FileTypes[j].IdentMac;
289 >      end;
290 >    end else begin
291 >      ShowMessage('Unknown Extension: ' + Strings.Strings[i]);
292 >      Exit;
293 >    end;
294      progress.Position    := i + 1;
295      lbl_progress.Caption := 'Extensions done: ' + IntToStr(i + 1) + '/' +
296 <      IntToStr(Length(extlist));
296 >      IntToStr(Strings.Count);
297      Application.ProcessMessages;
298    end;
299  
# Line 197 | Line 304 | begin
304    lbl_estimation.Caption := 'Estimated finishing time: unknown';
305    Application.ProcessMessages;
306  
307 <  begintime := Time;
308 <  for i := 0 to DatHeader.Files - 1 do
307 >  FileTime := Time;
308 >  for FileID := 0 to DatHeader.Files - 1 do
309    begin
310 <    fileinfo := OniDataConnection.GetFileInfo(i);
310 >    FileInfo := Connection.GetFileInfo(FileID);
311      for j := 0 to 3 do
312 <      FilesHeader[i].Extension[j] := fileinfo.Extension[4 - j];
313 <    if fileinfo.Size > 0 then
312 >      FilesHeader[FileID].Extension[j] := FileInfo.Extension[4 - j];
313 >    if FileInfo.Size > 0 then
314      begin
315 <      //        DatLinks:=;
316 <      FilesHeader[i].DataAddr := Stream_Body.Size + 8;
317 <      Data    := OniDataConnection.LoadDatFile(i);
318 <      Data[4] := (levelid) and $FF;
319 <      Data[5] := (levelid shr 8) and $FF;
320 <      Data[6] := (levelid shr 16) and $FF;
321 <      Data[7] := (levelid shr 24) and $FF;
315 >      FilesHeader[FileID].DataAddr := Stream_Body.Size + 8;
316 >      DatFileStream := TMemoryStream.Create;
317 >      Connection.LoadDatFile(FileID, TStream(DatFileStream));
318 >      DatFileStream.Seek(0, soFromBeginning);
319 >      tempi := FileID * 256 + 1;
320 >      DatFileStream.Write(tempi, 4);
321 >      DatFileStream.Write(LevelID, 4);
322  
323 <      if (Pos(UpperCase(fileinfo.Extension), UpperCase(raws)) mod 4) = 1 then
323 >      DatLinks := Connection.GetDatLinks(FileID);
324 >      if Length(DatLinks) > 0 then
325        begin
326 <        rawlist := OniDataConnection.GetRawList(i);
219 <        if Length(rawlist) > 0 then
326 >        for i := 0 to High(DatLinks) do
327          begin
328 <          for j := 0 to High(rawlist) do
328 >          DatFileStream.Seek(DatLinks[i].SrcOffset, soFromBeginning);
329 >          if DatLinks[i].DestID < 0 then
330 >            tempi := 0
331 >          else
332 >            tempi := DatLinks[i].DestID * 256 + 1;
333 >          DatFileStream.Write(tempi, 4);
334 >        end;
335 >      end;
336 >
337 >      RawLinks := Connection.GetRawList(FileID);
338 >      if Length(RawLinks) > 0 then
339 >      begin
340 >        for i := 0 to High(RawLinks) do
341 >        begin
342 >          if RawLinks[i].RawSize > 0 then
343            begin
344 <            if rawlist[j].raw_size > 0 then
344 >            RawFileStream := TMemoryStream.Create;
345 >            Connection.LoadRawFile(FileID, RawLinks[i].SrcOffset, TStream(RawFileStream));
346 >            RawFileStream.Seek(0, soFromBeginning);
347 >            if RawLinks[i].LocSep then
348              begin
349 <              if (UpperCase(fileinfo.Extension) = 'TXMP') and
350 <                ((Data[$88] and $01) > 0) then
351 <              begin
352 <                OniImage.LoadFromTXMP(Connection, i);
353 <                OniImage.GetMipMappedImage(rawdata);
354 <                rawlist[j].raw_size := OniImage.GetImageDataSize(True);
355 <                Data[$90] := $08;
356 <                Data[$89] := 32;
357 < {                  if data[$90]<>OniImage.StoreType then begin
358 <                    data[$90]:=OniImage.StoreType;
359 <                    data[$89]:=(data[$89] and $CF) or $20;
360 <                  end;
361 < }                end
362 <              else
239 <              begin
240 <                SetLength(rawdata, rawlist[j].raw_size);
241 <                OniDataConnection.LoadRawFile(i, rawlist[j].src_offset, @rawdata[0]);
242 <              end;
243 <              //                data[$88]:=data[$88] and $FE;
244 <
245 <              if rawlist[j].loc_sep then
246 <              begin
247 <                rawlist[j].raw_addr := Stream_Sep.Size;
248 <                Stream_Sep.Write(rawdata[0], Length(rawdata));
249 <              end
250 <              else
251 <              begin
252 <                rawlist[j].raw_addr := Stream_Raw.Size;
253 <                Stream_Raw.Write(rawdata[0], Length(rawdata));
254 <              end;
255 <            end
256 <            else
257 <              rawlist[j].raw_addr := 0;
258 <            Data[rawlist[j].src_offset + 0] := (rawlist[j].raw_addr) and $FF;
259 <            Data[rawlist[j].src_offset + 1] := (rawlist[j].raw_addr shr 8) and $FF;
260 <            Data[rawlist[j].src_offset + 2] := (rawlist[j].raw_addr shr 16) and $FF;
261 <            Data[rawlist[j].src_offset + 3] := (rawlist[j].raw_addr shr 24) and $FF;
262 <          end;
349 >              RawLinks[i].RawAddr := Stream_Sep.Size;
350 >              Stream_sep.CopyFrom(RawFileStream, RawFileStream.Size);
351 >              if (Stream_Sep.Size mod 32) > 0 then
352 >                Stream_Sep.Write(EmptyBytes[0], 32 - (Stream_Sep.Size mod 32));
353 >            end else begin
354 >              RawLinks[i].RawAddr := Stream_Raw.Size;
355 >              Stream_Raw.CopyFrom(RawFileStream, RawFileStream.Size);
356 >              if (Stream_Raw.Size mod 32) > 0 then
357 >                Stream_Raw.Write(EmptyBytes[0], 32 - (Stream_Raw.Size mod 32));
358 >            end;
359 >          end else
360 >            RawLinks[i].RawAddr := 0;
361 >          DatFileStream.Seek(RawLinks[i].SrcOffset, soFromBeginning);
362 >          DatFileStream.Write(RawLinks[i].RawAddr, 4);
363          end;
364        end;
365 <
366 <      Stream_Body.Write(Data[0], Length(Data));
367 <      //
365 >      DatFileStream.Seek(0, soFromBeginning);
366 >      Stream_Body.CopyFrom(DatFileStream, DatFileStream.Size);
367 >      if (Stream_Body.Size mod 32) > 0 then
368 >      begin
369 >        ShowMessage(
370 >            IntToStr(FileID) + '-' + FileInfo.Name + '.' + FileInfo.Extension + #13#10 +
371 >            IntToStr(FileInfo.Size) + ' - 0x' + IntToHex(FileInfo.Size, 6) + ' - real: ' + IntToStr(DatFileStream.Size) + ' - 0x' + IntToHex(DatFileStream.Size, 6) + #13#10 +
372 >            IntToStr(Stream_Body.Size) + ' - 0x' + IntToHex(Stream_Body.Size, 6) );
373 >        Stream_Body.Write(EmptyBytes[0], 32 - (Stream_Body.Size mod 32));
374 >      end;
375      end
376      else
377 <      FilesHeader[i].DataAddr := 0;
377 >      FilesHeader[FileID].DataAddr := 0;
378      if Length(fileinfo.Name) > 0 then
379      begin
380 <      FilesHeader[i].NameAddr := Stream_Names.Size;
380 >      FilesHeader[FileID].NameAddr := Stream_Names.Size;
381        temps := fileinfo.Extension + fileinfo.Name + Chr(0);
382        Stream_Names.Write(temps[1], Length(temps));
383      end
384      else
385 <      FilesHeader[i].NameAddr := 0;
386 <    FilesHeader[i].FileSize := fileinfo.Size;
387 <    FilesHeader[i].FileType := fileinfo.FileType;
385 >      FilesHeader[FileID].NameAddr := 0;
386 >    FilesHeader[FileID].FileSize := fileinfo.Size;
387 >    FilesHeader[FileID].FileType := fileinfo.FileType;
388  
389 <    if ((i mod 10) = 0) and (i >= 100) then
389 >    if ((FileID mod 10) = 0) and (FileID >= 100) then
390        lbl_estimation.Caption := 'Estimated time left: ' + TimeToStr(
391 <        (Time - begintime) / i * (progress.Max - i + 1) * 1.1, timeformat );
392 <    progress.Position := i + 1;
393 <    lbl_progress.Caption := 'Files done: ' + IntToStr(i + 1) + '/' + IntToStr(progress.Max);
391 >        (Time - FileTime) / FileID * (progress.Max - FileID + 1) * 1.1, TimeFormat );
392 >    progress.Position := FileID + 1;
393 >    lbl_progress.Caption := 'Files done: ' + IntToStr(FileID + 1) + '/' + IntToStr(progress.Max);
394      Application.ProcessMessages;
395    end;
396  
# Line 295 | Line 402 | begin
402    for i := 0 to High(ExtensionsHeader) do
403      Stream_Dat.Write(ExtensionsHeader[i], SizeOf(ExtensionsHeader[i]));
404  
405 +  if (Stream_Dat.Size mod 32) > 0 then
406 +    Stream_Dat.Write(EmptyBytes[0], 32 - (Stream_Dat.Size mod 32));
407 +
408    DatHeader.DataSize  := Stream_Body.Size;
409    DatHeader.NamesSize := Stream_Names.Size;
410    DatHeader.DataAddr  := Stream_Dat.Size;
411 +
412    Stream_Body.Seek(0, soFromBeginning);
413    Stream_Dat.CopyFrom(Stream_Body, Stream_Body.Size);
414 +
415 +  if (Stream_Dat.Size mod 32) > 0 then
416 +    Stream_Dat.Write(EmptyBytes[0], 32 - (Stream_Dat.Size mod 32));
417 +
418    DatHeader.NamesAddr := Stream_Dat.Size;
419    Stream_Names.Seek(0, soFromBeginning);
420    Stream_Dat.CopyFrom(Stream_Names, Stream_Names.Size);
# Line 311 | Line 426 | begin
426    Stream_Body.Free;
427    Stream_Names.Free;
428    Stream_Raw.Free;
429 <  if OniDataConnection.OSisMac then
429 >
430 >  if Connection.DataOS in [DOS_WINDEMO, DOS_MAC, DOS_MACBETA] then
431      Stream_Sep.Free;
432  
433    progress.Position      := progress.Max;
434    lbl_progress.Caption   := 'Files done: ' + IntToStr(progress.Max) + '/' +
435      IntToStr(progress.Max);
436 <  lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime, timeformat) + ')';
436 >  lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - Begintime, TimeFormat) + ')';
437  
438    DoStep('FIN');
439    btn_abortok.Caption := '&OK';
440    btn_abortok.Default := True;
441  
326  OniImage.Free;
327
442    converting := False;
443  
444 <  CloseDataConnection(DataConnections[conIndex]);
331 < end;
332 <
333 <
334 <
335 <
336 < procedure TForm_LevelDB.HandleFile;
337 < var
338 <  i: Byte;
339 < begin
340 <  for i := 1 to Length(ConvertHandlers) do
341 <    if UpperCase(ConvertHandlers[i].Ext) = UpperCase(ext) then
342 <      if ConvertHandlers[i].needed then
343 <      begin
344 <        ConvertHandlers[i].Handler(fileid, dir_dat2db);
345 <        Break;
346 <      end
347 <      else
348 <        Break;
444 > //  CloseDataConnection(DataConnections[conIndex]);
445   end;
446  
447  
# Line 353 | Line 449 | end;
449  
450   procedure TForm_LevelDB.CreateDatabase(Source, target: String);
451   var
452 <  i, j:     LongWord;
453 <  temps, temps2: String;
454 <  Data:     Tdata;
359 <  absolutebegintime, begintime: Double;
360 <  step:     Byte;
361 <  rawlist:  TRawList;
362 <  extlist:  TExtensionsMap;
363 <  fileinfo: TFileInfo;
364 <  timeformat: TFormatSettings;
452 >  DataBase:  TABSDatabase;
453 >  Query:     TABSQuery;
454 >  MimeCoder: TStringFormat_MIME64;
455  
456 <  conIndex: Integer;
456 >  BeginTime, FileTime: Double;
457 >  Step:       Integer;
458 >  TimeFormat: TFormatSettings;
459 >
460 >  ConID:      Integer;
461 >  Connection: TDataAccess;
462 >  ConRepMsg:  TStatusMessages;
463 >
464 >  FileID:     Integer;
465 >
466 >  i:          Integer;
467 >  temps:      String;
468 >  tempdata:   TByteData;
469 >  FileInfo:   TFileInfo;
470 >  DatLinks:   TDatLinkList;
471 >  RawLinks:   TRawDataList;
472   const
473 <  steps: Byte = 4;
369 <
370 <
371 <
473 >  steps: Byte = 2;
474  
475    procedure DoStep(stepname: String);
476    begin
# Line 380 | Line 482 | const
482        group_progress.Caption := 'Creating DB (FINISHED)';
483    end;
484  
485 +  procedure StopConvert;
486 +  begin
487 +    btn_abortok.Caption := '&Close';
488 +    btn_abortok.Default := True;
489 +    converting := False;
490 +    lbl_estimation.Caption := 'ABORTED';
491 +    group_progress.Caption := 'Creating DB (ABORTED)';
492 +    DataBase.Close;
493 +    if MessageBox(Self.Handle, PChar('Delete the unfinished DB-file?'),
494 +      PChar('Delete file?'), MB_YESNO) = idYes then
495 +    begin
496 +      DeleteFile(target);
497 +    end;
498 +  end;
499 +
500 +
501 +
502   begin
503 <  if CreateDataConnection(Source, ODB_Dat) = nil then
503 >
504 >  //
505 >  // FILE EXISTS CHECK FÜR DAT/RAW/SEP!!!
506 >  //
507 >
508 >  TimeFormat.ShortTimeFormat := 'hh:nn:ss';
509 >  TimeFormat.LongTimeFormat  := 'hh:nn:ss';
510 >  TimeFormat.TimeSeparator   := ':';
511 >
512 >  ConID := ConManager.OpenConnection(Source, ConRepMsg);
513 >  if not (ConRepMsg in [SM_OK, SM_AlreadyOpened]) then
514    begin
515 <    ShowMessage('Could not connect to .dat-file');
515 >    ShowMessage('Source-file couldn''t be opened! Aborting' + CrLf + GetOpenMsg(ConRepMsg));
516      Exit;
517 <  end
518 <  else
517 >  end else
518 >    Connection := ConManager.Connection[ConID];
519 >
520 >  ConID := ConManager.FileOpened(Target);
521 >  if ConID >= 0 then
522    begin
523 <    TOniDataDat(OniDataConnection).UnloadWhenUnused := False;
523 >    if MessageBox(Self.Handle, PChar('Destination-file is opened, close it in ' +
524 >          'order to proceed conversion?'), PChar('Destination-file opened'),
525 >          MB_YESNO + MB_ICONQUESTION) = ID_YES then
526 >    begin
527 >      if Form_Main.CheckConnectionCloseable(ConID) then
528 >        if not ConManager.CloseConnection(ConID, ConRepMsg) then
529 >        begin
530 >          ShowMessage('Couldn''t close destination-file. Aborting');
531 >          Exit;
532 >        end;
533 >    end else begin
534 >      ShowMessage('Aborting');
535 >      Exit;
536 >    end;
537    end;
538  
539 <  timeformat.LongTimeFormat := 'hh:nn:ss';
540 <  timeformat.ShortTimeFormat := 'hh:nn:ss';
541 <  timeformat.TimeSeparator := ':';
539 >  if FileExists(Target) then
540 >  begin
541 >    if MessageBox(Self.Handle, PChar('Destination-file exists. ' +
542 >          'Overwrite it?'), PChar('Destination-file exists'),
543 >          MB_YESNO + MB_ICONWARNING) = ID_YES then
544 >    begin
545 >      if not DeleteFile(Target) then
546 >      begin
547 >        ShowMessage('Couldn''t delete file. Aborting');
548 >        Exit;
549 >      end;
550 >    end else begin
551 >      ShowMessage('Aborting');
552 >      Exit;
553 >    end;
554 >  end;
555  
556    Self.Visible := True;
557    Form_Main.Visible := False;
# Line 402 | Line 560 | begin
560    abort := False;
561    btn_abortok.Caption := '&Abort...';
562    btn_abortok.Default := False;
405  loaded_filename := target;
563  
564 <  absolutebegintime := Time;
564 >  BeginTime := Time;
565  
566    DataBase := TABSDatabase.Create(Self);
567 +  DataBase.MaxConnections := 1;
568 +  DataBase.PageSize := 8112;
569 +  DataBase.PageCountInExtent := 8;
570 +
571    DataBase.DatabaseName := 'OLDB';
572    DataBase.DatabaseFileName := target;
573    DataBase.CreateDatabase;
# Line 420 | Line 581 | begin
581    Query := TABSQuery.Create(Self);
582    Query.DatabaseName := 'OLDB';
583    Query.SQL.Text :=
584 <    'CREATE TABLE globals  ( id AUTOINC PRIMARY KEY, name STRING(128), value STRING(128) );';
584 >    'CREATE TABLE globals  ( id AUTOINC PRIMARY KEY, name STRING(128), ' +
585 >    'value STRING(128) );';
586    Query.ExecSQL;
587    Query.SQL.Text :=
588 <    'CREATE TABLE linkmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, src_link_offset INTEGER, target_id INTEGER );';
588 >    'CREATE TABLE linkmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, ' +
589 >    'src_link_offset INTEGER, target_id INTEGER);';
590 >  Query.ExecSQL;
591 >  Query.SQL.Text := 'CREATE INDEX idsrcid ON linkmap (src_id);';
592 >  Query.ExecSQL;
593 >  Query.SQL.Text := 'CREATE INDEX idtargetid ON linkmap (target_id);';
594    Query.ExecSQL;
595    Query.SQL.Text :=
596 <    'CREATE TABLE rawmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, src_link_offset INTEGER, sep BOOLEAN, size INTEGER, data BLOB BlobCompressionMode 9 BlobBlockSize 1024 BlobCompressionAlgorithm ZLib );';
596 >    'CREATE TABLE rawmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, ' +
597 >    'src_link_offset INTEGER, sep BOOLEAN, size INTEGER, ' +
598 >    'data BLOB BlobCompressionMode 9 BlobBlockSize 1024 BlobCompressionAlgorithm ZLib);';
599    //    Query.SQL.Text:='CREATE TABLE rawmap  ( id AUTOINC PRIMARY KEY, src_id INTEGER, src_link_offset INTEGER, size INTEGER, data BLOB BlobCompressionAlgorithm None );';
600    Query.ExecSQL;
601 <  Query.SQL.Text :=
433 <    'CREATE TABLE datfiles  ( id INTEGER PRIMARY KEY, extension CHAR(4), name STRING(128), contenttype INTEGER, size INTEGER, data BLOB BlobCompressionMode 9 BlobBlockSize 1024 BlobCompressionAlgorithm ZLib );';
434 <  //    Query.SQL.Text:='CREATE TABLE datfiles  ( id INTEGER PRIMARY KEY, extension CHAR(4), name STRING(128), contenttype INTEGER, size INTEGER, data BLOB BlobCompressionAlgorithm None );';
601 >  Query.SQL.Text := 'CREATE INDEX idsrcid ON rawmap (src_id);';
602    Query.ExecSQL;
603    Query.SQL.Text :=
604 <    'CREATE TABLE extlist  ( id AUTOINC PRIMARY KEY, ext CHAR(4), ident CHAR(16) );';
604 >    'CREATE TABLE datfiles  ( id INTEGER PRIMARY KEY, extension CHAR(4), ' +
605 >    'name STRING(128), contenttype INTEGER, size INTEGER, ' +
606 >    'data BLOB BlobCompressionMode 9 BlobBlockSize 1024 BlobCompressionAlgorithm ZLib );';
607 >  //    Query.SQL.Text:='CREATE TABLE datfiles  ( id INTEGER PRIMARY KEY, extension CHAR(4), name STRING(128), contenttype INTEGER, size INTEGER, data BLOB BlobCompressionAlgorithm None );';
608    Query.ExecSQL;
609 + //  Query.SQL.Text :=
610 + //    'CREATE TABLE extlist  ( id AUTOINC PRIMARY KEY, ext CHAR(4), ident CHAR(16) );';
611 + //  Query.ExecSQL;
612  
613    Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("dbversion","' +
614      dbversion + '");';
615    Query.ExecSQL;
616 <  SetLength(Data, Length(OniDataConnection.LevelInfo.Ident));
444 <  for i := 0 to High(OniDataConnection.LevelInfo.Ident) do
445 <    Data[i] := OniDataConnection.LevelInfo.Ident[i];
446 <  temps := CreateHexString(Data, True);
447 <  Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("ident","' + temps + '");';
448 <  Query.ExecSQL;
616 >
617    Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("lvl","' +
618 <    IntToStr(OniDataConnection.LevelInfo.LevelNumber) + '");';
618 >    IntToStr(Connection.LevelNumber) + '");';
619    Query.ExecSQL;
620 <  if OniDataConnection.OSisMAC then
621 <    Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("os","MAC");'
622 <  else
623 <    Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("os","PC");';
624 <  Query.ExecSQL;
457 <
458 <  DoStep('Writing extensionslist');
459 <  progress.Max := Length(OniDataConnection.GetExtensionsList);
460 <  Application.ProcessMessages;
461 <
462 <  extlist := OniDataConnection.GetExtendedExtensionsList;
463 <  for i := 0 to High(extlist) do
464 <  begin
465 <    SetLength(Data, Length(extlist[i].Ident));
466 <    for j := 0 to High(extlist[i].Ident) do
467 <      Data[j] := extlist[i].Ident[j];
468 <    temps := CreateHexString(Data, True);
469 <    temps2 := extlist[i].Extension[3] + extlist[i].Extension[2] +
470 <      extlist[i].Extension[1] + extlist[i].Extension[0];
471 <    Query.SQL.Text := 'INSERT INTO extlist (ext,ident) VALUES ("' +
472 <      temps2 + '","' + temps + '");';
473 <    Query.ExecSQL;
474 <    progress.Position    := i;
475 <    lbl_progress.Caption := 'Extensions done: ' + IntToStr(i) + '/' +
476 <      IntToStr(Length(extlist));
477 <    Application.ProcessMessages;
478 <    if abort then
479 <    begin
480 <      stop_convert;
481 <      Exit;
482 <    end;
620 >  case Connection.DataOS of
621 >    DOS_WIN: temps := 'WIN';
622 >    DOS_WINDEMO: temps := 'WINDEMO';
623 >    DOS_MAC: temps := 'MAC';
624 >    DOS_MACBETA: temps := 'MACBETA';
625    end;
626 <  lbl_progress.Caption := '';
626 >  Query.SQL.Text := 'INSERT INTO globals (name,value) VALUES ("os","' + temps + '");';
627 >  Query.ExecSQL;
628  
629    progress.Position      := 0;
630    lbl_progress.Caption   := 'Files done: ' + IntToStr(0) + '/' + IntToStr(
631 <    OniDataConnection.GetFilesCount);
631 >    Connection.GetFileCount);
632    lbl_estimation.Caption := 'Estimated finishing time: unknown';
633  
634 <  DoStep('Loading .dat into memory');
492 <  Application.ProcessMessages;
493 <
494 <  progress.Max := OniDataConnection.GetFilesCount;
634 >  progress.Max := Connection.GetFileCount;
635    begintime    := Time;
636    DoStep('Writing .dat-fileslist');
637    Application.ProcessMessages;
638  
639 +  TAccess_OniArchive(Connection).UnloadWhenUnused := False;
640 +
641 +  FileTime := Time;
642    Database.StartTransaction;
643 <  for i := 0 to OniDataConnection.GetFilesCount - 1 do
643 >  for FileID := 0 to Connection.GetFileCount - 1 do
644    begin
645 <    fileinfo := OniDataConnection.GetFileInfo(i);
645 >    fileinfo := Connection.GetFileInfo(FileID);
646      if (fileinfo.FileType and $02) = 0 then
647      begin
648        mimecoder := TStringFormat_MIME64.Create;
649 <      Data      := OniDataConnection.LoadDatFile(i);
649 >      Connection.LoadDatFile(FileID, tempdata);
650        Query.SQL.Text :=
651          'INSERT INTO datfiles (id,extension,name,contenttype,size,data) VALUES (' +
652 <        IntToStr(i) + ',"' + fileinfo.Extension + '","' + fileinfo.Name + '","' + IntToHex(
652 >        IntToStr(FileID) + ',"' + fileinfo.Extension + '","' + fileinfo.Name + '","' + IntToHex(
653          fileinfo.FileType, 8) + '",' + IntToStr(fileinfo.Size) + ',MimeToBin("' +
654 <        MimeCoder.StrTo(@Data[0], Length(Data)) + '") );';
654 >        MimeCoder.StrTo(@tempdata[0], Length(tempdata)) + '") );';
655        Query.ExecSQL;
656        mimecoder.Free;
657  
658 <      rawlist := OniDataConnection.GetRawList(i);
659 <      if Length(rawlist) > 0 then
658 >      RawLinks := Connection.GetRawList(FileID);
659 >      if Length(RawLinks) > 0 then
660        begin
661 <        for j := 0 to High(rawlist) do
661 >        for i := 0 to High(RawLinks) do
662          begin
663 <          if rawlist[j].raw_size > 0 then
663 >          if RawLinks[i].RawSize > 0 then
664            begin
665 <            SetLength(Data, rawlist[j].raw_size);
666 <            OniDataConnection.LoadRawFile(i, rawlist[j].src_offset, Data);
665 >            SetLength(tempdata, RawLinks[i].RawSize);
666 >            Connection.LoadRawFile(FileID, RawLinks[i].SrcOffset, tempdata);
667              mimecoder      := TStringFormat_MIME64.Create;
668              Query.SQL.Text :=
669                'INSERT INTO rawmap (src_id,src_link_offset,sep,size,data) VALUES (' +
670 <              IntToStr(i) + ',' + IntToStr(rawlist[j].src_offset) + ',' + BoolToStr(
671 <              rawlist[j].loc_sep) + ',' + IntToStr(rawlist[j].raw_size) + ',MimeToBin("' +
672 <              MimeCoder.StrTo(@Data[0], rawlist[j].raw_size) + '") );';
670 >              IntToStr(FileID) + ', ' + IntToStr(RawLinks[i].SrcOffset) + ',' +
671 >              BoolToStr(RawLinks[i].LocSep) + ', ' +
672 >              IntToStr(RawLinks[i].RawSize) + ', ' +
673 >              'MimeToBin("' + MimeCoder.StrTo(@tempdata[0], RawLinks[i].RawSize) + '") );';
674              Query.ExecSQL;
675              mimecoder.Free;
676            end
# Line 534 | Line 678 | begin
678            begin
679              Query.SQL.Text :=
680                'INSERT INTO rawmap (src_id,src_link_offset,sep,size) VALUES (' +
681 <              IntToStr(i) + ',' + IntToStr(rawlist[j].src_offset) + ',' + BoolToStr(rawlist[j].loc_sep) + ',0);';
681 >              IntToStr(FileID) + ', ' + IntToStr(RawLinks[i].SrcOffset) + ', ' +
682 >              BoolToStr(RawLinks[i].LocSep) + ', 0);';
683              Query.ExecSQL;
684            end;
685          end;
686        end;
687  
688 <      HandleFile(fileinfo.Extension, i, True);
688 >      DatLinks := Connection.GetDatLinks(FileID);
689 >      if Length(DatLinks) > 0 then
690 >      begin
691 >        for i := 0 to High(DatLinks) do
692 >        begin
693 >          Query.SQL.Text :=
694 >            'INSERT INTO linkmap (src_id, src_link_offset, target_id) VALUES (' +
695 >            IntToStr(FileID) + ', ' + IntToStr(DatLinks[i].SrcOffset) + ', ' +
696 >            IntToStr(DatLinks[i].DestID) + ');';
697 >          Query.ExecSQL;
698 >        end;
699 >      end;
700      end
701      else
702      begin
703        Query.SQL.Text :=
704          'INSERT INTO datfiles (id,extension,name,contenttype,size) VALUES (' +
705 <        IntToStr(i) + ',"' + fileinfo.Extension + '","' + fileinfo.Name + '","' + IntToHex(
706 <        fileinfo.FileType, 8) + '",0);';
705 >        IntToStr(FileID) + ', "' + fileinfo.Extension + '", ' +
706 >        '"' + fileinfo.Name + '", "' + IntToHex(fileinfo.FileType, 8) + '", 0);';
707        Query.ExecSQL;
708      end;
709 <    if ((i mod 100) = 0) and (i > 0) then
709 >    if ((FileID mod 100) = 0) and (FileID > 0) then
710      begin
711        Database.Commit(False);
712        Database.StartTransaction;
713      end;
714 <    if ((i mod 10) = 0) and (i >= 100) then
714 >    if ((FileID mod 10) = 0) and (FileID >= 100) then
715        lbl_estimation.Caption := 'Estimated time left: ' + TimeToStr(
716 <        (Time - begintime) / i * (progress.Max - i + 1) * 1.1, timeformat );
717 <    progress.Position := i;
718 <    lbl_progress.Caption := 'Files done: ' + IntToStr(i) + '/' + IntToStr(progress.Max);
716 >        (Time - FileTime) / FileID * (progress.Max - FileID + 1) * 1.1, timeformat );
717 >    progress.Position := FileID;
718 >    lbl_progress.Caption := 'Files done: ' + IntToStr(FileID) + '/' + IntToStr(progress.Max);
719      Application.ProcessMessages;
720      if abort then
721      begin
722 <      stop_convert;
722 >      StopConvert;
723        Exit;
724      end;
725    end;
# Line 572 | Line 728 | begin
728    lbl_progress.Caption   := 'Files done: ' + IntToStr(progress.Max) + '/' +
729      IntToStr(progress.Max);
730  
731 <  lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime, timeformat) + ')';
731 >  lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - BeginTime, timeformat) + ')';
732  
733    DoStep('FIN');
734    btn_abortok.Caption := '&OK';
735    btn_abortok.Default := True;
736  
737    converting := False;
738 +  TAccess_OniArchive(Connection).UnloadWhenUnused := True;
739  
740 <  database.Close;
741 <  database.Free;
585 <
586 <  CloseDataConnection(DataConnections[conIndex]);
587 < end;
588 <
589 <
590 <
591 <
592 < procedure TForm_LevelDB.stop_convert;
593 < begin
594 <  btn_abortok.Caption := '&Close';
595 <  btn_abortok.Default := True;
596 <  converting := False;
597 <  lbl_estimation.Caption := 'ABORTED';
598 <  group_progress.Caption := 'Creating DB (ABORTED)';
740 >  Query.Close;
741 >  Query.Free;
742    DataBase.Close;
743 <  if MessageBox(Self.Handle, PChar('Delete the unfinished DB-file?'),
601 <    PChar('Delete file?'), MB_YESNO) = idYes then
602 <  begin
603 <    DeleteFile(loaded_filename);
604 <  end;
743 >  DataBase.Free;
744   end;
745  
746  
# Line 624 | Line 763 | begin
763   end;
764  
765  
627
628
629 procedure InsertDatLinkToDB(fileid: LongWord; offset: LongWord);
630 var
631  link: LongWord;
632 begin
633  OniDataConnection.LoadDatFilePart(fileid, offset, 4, @link);
634  if link = 0 then
635    link := $FFFFFFFF
636  else
637    link := link div 256;
638  Query.SQL.Text := 'INSERT INTO linkmap (src_id,src_link_offset,target_id) VALUES (' +
639    IntToStr(fileid) + ',' + IntToStr(offset) + ',' + IntToStr(link) + ');';
640  Query.ExecSQL;
641 end;
642
643
644
645
646 procedure AISA(fileid: LongWord; dir_dat2db: Boolean);
647 var
648  packages: Word;
649  i: LongWord;
650 begin
651  if dir_dat2db then
652  begin
653    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
654    if packages > 0 then
655    begin
656      for i := 0 to packages - 1 do
657        InsertDatLinkToDB(fileid, $20 + i * $160 + $28);
658      for i := 0 to packages - 1 do
659        InsertDatLinkToDB(fileid, $20 + i * $160 + $150);
660    end;
661  end
662  else
663  begin
664  end;
665 end;
666
667
668
669
670 procedure AKEV(fileid: LongWord; dir_dat2db: Boolean);
671 var
672  i: LongWord;
673 begin
674  if dir_dat2db then
675  begin
676    for i := 0 to 16 do
677      InsertDatLinkToDB(fileid, $8 + i * 4);
678  end
679  else
680  begin
681  end;
682 end;
683
684
685
686
687 procedure AKOT(fileid: LongWord; dir_dat2db: Boolean);
688 var
689  i: LongWord;
690 begin
691  if dir_dat2db then
692  begin
693    for i := 0 to 4 do
694      InsertDatLinkToDB(fileid, $8 + i * 4);
695  end
696  else
697  begin
698  end;
699 end;
700
701
702
703
704 procedure CBPI(fileid: LongWord; dir_dat2db: Boolean);
705 var
706  i: LongWord;
707 begin
708  if dir_dat2db then
709  begin
710    for i := 0 to 56 do
711      InsertDatLinkToDB(fileid, $8 + i * 4);
712  end
713  else
714  begin
715  end;
716 end;
717
718
719
720
721 procedure CBPM(fileid: LongWord; dir_dat2db: Boolean);
722 var
723  i: LongWord;
724 begin
725  if dir_dat2db then
726  begin
727    for i := 0 to 18 do
728      InsertDatLinkToDB(fileid, $8 + i * 4);
729  end
730  else
731  begin
732  end;
733 end;
734
735
736
737
738 procedure CONS(fileid: LongWord; dir_dat2db: Boolean);
739 var
740  i: LongWord;
741 begin
742  if dir_dat2db then
743  begin
744    for i := 0 to 1 do
745      InsertDatLinkToDB(fileid, $24 + i * 4);
746  end
747  else
748  begin
749  end;
750 end;
751
752
753
754
755 procedure CRSA(fileid: LongWord; dir_dat2db: Boolean);
756 var
757  packages: LongWord;
758  i: LongWord;
759 begin
760  if dir_dat2db then
761  begin
762    OniDataConnection.LoadDatFilePart(fileid, $14, 4, @packages);
763    if packages > 0 then
764      for i := 0 to packages - 1 do
765        InsertDatLinkToDB(fileid, $20 + i * 1100 + $A0);
766  end
767  else
768  begin
769  end;
770 end;
771
772
773
774
775 procedure DOOR(fileid: LongWord; dir_dat2db: Boolean);
776 begin
777  if dir_dat2db then
778  begin
779    InsertDatLinkToDB(fileid, $08);
780    InsertDatLinkToDB(fileid, $10);
781  end
782  else
783  begin
784  end;
785 end;
786
787
788
789
790 procedure DPGE(fileid: LongWord; dir_dat2db: Boolean);
791 begin
792  if dir_dat2db then
793  begin
794    InsertDatLinkToDB(fileid, $40);
795  end
796  else
797  begin
798  end;
799 end;
800
801
802
803
804 procedure HPGE(fileid: LongWord; dir_dat2db: Boolean);
805 begin
806  if dir_dat2db then
807  begin
808    InsertDatLinkToDB(fileid, $0C);
809  end
810  else
811  begin
812  end;
813 end;
814
815
816
817
818 procedure IGHH(fileid: LongWord; dir_dat2db: Boolean);
819 begin
820  if dir_dat2db then
821  begin
822    InsertDatLinkToDB(fileid, $24);
823    InsertDatLinkToDB(fileid, $28);
824  end
825  else
826  begin
827  end;
828 end;
829
830
831
832
833 procedure IGPA(fileid: LongWord; dir_dat2db: Boolean);
834 var
835  links: LongWord;
836  i:     LongWord;
837 begin
838  if dir_dat2db then
839  begin
840    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @links);
841    if links > 0 then
842      for i := 0 to links - 1 do
843        InsertDatLinkToDB(fileid, $20 + i * 4);
844  end
845  else
846  begin
847  end;
848 end;
849
850
851
852
853 procedure IGPG(fileid: LongWord; dir_dat2db: Boolean);
854 var
855  i: LongWord;
856 begin
857  if dir_dat2db then
858  begin
859    for i := 0 to 1 do
860      InsertDatLinkToDB(fileid, $1C + i * 4);
861  end
862  else
863  begin
864  end;
865 end;
866
867
868
869
870 procedure IGSA(fileid: LongWord; dir_dat2db: Boolean);
871 var
872  links: LongWord;
873  i:     LongWord;
874 begin
875  if dir_dat2db then
876  begin
877    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @links);
878    if links > 0 then
879      for i := 0 to links - 1 do
880        InsertDatLinkToDB(fileid, $20 + i * 4);
881  end
882  else
883  begin
884  end;
885 end;
886
887
888
889
890 procedure IMPT(fileid: LongWord; dir_dat2db: Boolean);
891 begin
892  if dir_dat2db then
893  begin
894    InsertDatLinkToDB(fileid, $10);
895  end
896  else
897  begin
898  end;
899 end;
900
901
902
903
904 procedure IPGE(fileid: LongWord; dir_dat2db: Boolean);
905 begin
906  if dir_dat2db then
907  begin
908    InsertDatLinkToDB(fileid, $0C);
909  end
910  else
911  begin
912  end;
913 end;
914
915
916
917
918 procedure KEYI(fileid: LongWord; dir_dat2db: Boolean);
919 var
920  i: LongWord;
921 begin
922  if dir_dat2db then
923  begin
924    for i := 0 to 9 do
925      InsertDatLinkToDB(fileid, $08 + i * 4);
926  end
927  else
928  begin
929  end;
930 end;
931
932
933
934
935 procedure M3GA(fileid: LongWord; dir_dat2db: Boolean);
936 var
937  links: LongWord;
938  i:     LongWord;
939 begin
940  if dir_dat2db then
941  begin
942    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @links);
943    if links > 0 then
944      for i := 0 to links - 1 do
945        InsertDatLinkToDB(fileid, $20 + i * 4);
946  end
947  else
948  begin
949  end;
950 end;
951
952
953
954
955 procedure M3GM(fileid: LongWord; dir_dat2db: Boolean);
956 var
957  i: LongWord;
958 begin
959  if dir_dat2db then
960  begin
961    for i := 0 to 6 do
962      InsertDatLinkToDB(fileid, $0C + i * 4);
963  end
964  else
965  begin
966  end;
967 end;
968
969
970
971
972 procedure MTRL(fileid: LongWord; dir_dat2db: Boolean);
973 begin
974  if dir_dat2db then
975  begin
976    InsertDatLinkToDB(fileid, $10);
977  end
978  else
979  begin
980  end;
981 end;
982
983
984
985
986 procedure OBDC(fileid: LongWord; dir_dat2db: Boolean);
987 var
988  packages: Word;
989  i: LongWord;
990 begin
991  if dir_dat2db then
992  begin
993    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
994    if packages > 0 then
995      for i := 0 to packages - 1 do
996        InsertDatLinkToDB(fileid, $20 + i * $18 + $4);
997  end
998  else
999  begin
1000  end;
1001 end;
1002
1003
1004
1005
1006 procedure OBOA(fileid: LongWord; dir_dat2db: Boolean);
1007 var
1008  packages: Word;
1009  i: LongWord;
1010 begin
1011  if dir_dat2db then
1012  begin
1013    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1014    if packages > 0 then
1015      for i := 0 to packages - 1 do
1016      begin
1017        InsertDatLinkToDB(fileid, $20 + i * 240 + $0);
1018        InsertDatLinkToDB(fileid, $20 + i * 240 + $4);
1019        InsertDatLinkToDB(fileid, $20 + i * 240 + $8);
1020      end;
1021  end
1022  else
1023  begin
1024  end;
1025 end;
1026
1027
1028
1029
1030 procedure OFGA(fileid: LongWord; dir_dat2db: Boolean);
1031 var
1032  packages: LongWord;
1033  i: LongWord;
1034 begin
1035  if dir_dat2db then
1036  begin
1037    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1038    if packages > 0 then
1039      for i := 0 to packages - 1 do
1040        InsertDatLinkToDB(fileid, $20 + i * 12 + $04);
1041  end
1042  else
1043  begin
1044  end;
1045 end;
1046
1047
1048
1049
1050 procedure ONCC(fileid: LongWord; dir_dat2db: Boolean);
1051 var
1052  i: LongWord;
1053 begin
1054  if dir_dat2db then
1055  begin
1056    InsertDatLinkToDB(fileid, $28);
1057    InsertDatLinkToDB(fileid, $434);
1058    InsertDatLinkToDB(fileid, $438);
1059    InsertDatLinkToDB(fileid, $43C);
1060    InsertDatLinkToDB(fileid, $C3C);
1061    InsertDatLinkToDB(fileid, $C40);
1062    InsertDatLinkToDB(fileid, $C44);
1063    InsertDatLinkToDB(fileid, $C48);
1064    InsertDatLinkToDB(fileid, $C88);
1065    InsertDatLinkToDB(fileid, $C8C);
1066  end
1067  else
1068  begin
1069  end;
1070 end;
1071
1072
1073
1074
1075 procedure ONCV(fileid: LongWord; dir_dat2db: Boolean);
1076 begin
1077  if dir_dat2db then
1078  begin
1079    InsertDatLinkToDB(fileid, $08);
1080  end
1081  else
1082  begin
1083  end;
1084 end;
1085
1086
1087
1088
1089 procedure ONLV(fileid: LongWord; dir_dat2db: Boolean);
1090 var
1091  i: LongWord;
1092 begin
1093  if dir_dat2db then
1094  begin
1095    for i := 0 to 5 do
1096      InsertDatLinkToDB(fileid, $48 + i * 4);
1097    for i := 0 to 5 do
1098      InsertDatLinkToDB(fileid, $64 + i * 4);
1099    InsertDatLinkToDB(fileid, $300);
1100  end
1101  else
1102  begin
1103  end;
1104 end;
1105
1106
1107
1108
1109 procedure ONOA(fileid: LongWord; dir_dat2db: Boolean);
1110 var
1111  packages: LongWord;
1112  i: LongWord;
1113 begin
1114  if dir_dat2db then
1115  begin
1116    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1117    if packages > 0 then
1118      for i := 0 to packages - 1 do
1119        InsertDatLinkToDB(fileid, $20 + i * 8 + $04);
1120  end
1121  else
1122  begin
1123  end;
1124 end;
1125
1126
1127
1128
1129 procedure ONSK(fileid: LongWord; dir_dat2db: Boolean);
1130 begin
1131  if dir_dat2db then
1132  begin
1133    InsertDatLinkToDB(fileid, $08);
1134    InsertDatLinkToDB(fileid, $0C);
1135    InsertDatLinkToDB(fileid, $10);
1136    InsertDatLinkToDB(fileid, $14);
1137    InsertDatLinkToDB(fileid, $18);
1138    InsertDatLinkToDB(fileid, $20);
1139    InsertDatLinkToDB(fileid, $44);
1140  end
1141  else
1142  begin
1143  end;
1144 end;
1145
1146
1147
1148
1149 procedure ONVL(fileid: LongWord; dir_dat2db: Boolean);
1150 var
1151  packages: LongWord;
1152  i: LongWord;
1153 begin
1154  if dir_dat2db then
1155  begin
1156    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1157    if packages > 0 then
1158      for i := 0 to packages - 1 do
1159        InsertDatLinkToDB(fileid, $20 + i * 4);
1160  end
1161  else
1162  begin
1163  end;
1164 end;
1165
1166
1167
1168
1169 procedure ONWC(fileid: LongWord; dir_dat2db: Boolean);
1170 begin
1171  if dir_dat2db then
1172  begin
1173    InsertDatLinkToDB(fileid, $28);
1174    InsertDatLinkToDB(fileid, $34);
1175    InsertDatLinkToDB(fileid, $40);
1176    InsertDatLinkToDB(fileid, $54);
1177    InsertDatLinkToDB(fileid, $58);
1178    InsertDatLinkToDB(fileid, $5C);
1179    InsertDatLinkToDB(fileid, $60);
1180    InsertDatLinkToDB(fileid, $6FC);
1181    InsertDatLinkToDB(fileid, $700);
1182  end
1183  else
1184  begin
1185  end;
1186 end;
1187
1188
1189
1190
1191 procedure OPGE(fileid: LongWord; dir_dat2db: Boolean);
1192 begin
1193  if dir_dat2db then
1194  begin
1195    InsertDatLinkToDB(fileid, $0C);
1196  end
1197  else
1198  begin
1199  end;
1200 end;
1201
1202
1203
1204
1205 procedure PSPC(fileid: LongWord; dir_dat2db: Boolean);
1206 begin
1207  if dir_dat2db then
1208  begin
1209    InsertDatLinkToDB(fileid, $50);
1210  end
1211  else
1212  begin
1213  end;
1214 end;
1215
1216
1217
1218
1219 procedure PSPL(fileid: LongWord; dir_dat2db: Boolean);
1220 var
1221  packages: LongWord;
1222  i: LongWord;
1223 begin
1224  if dir_dat2db then
1225  begin
1226    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1227    if packages > 0 then
1228      for i := 0 to packages - 1 do
1229        InsertDatLinkToDB(fileid, $20 + i * 8 + $4);
1230  end
1231  else
1232  begin
1233  end;
1234 end;
1235
1236
1237
1238
1239 procedure PSUI(fileid: LongWord; dir_dat2db: Boolean);
1240 var
1241  i: LongWord;
1242 begin
1243  if dir_dat2db then
1244  begin
1245    for i := 0 to 43 do
1246      InsertDatLinkToDB(fileid, $08 + i * 4);
1247  end
1248  else
1249  begin
1250  end;
1251 end;
1252
1253
1254
1255
1256 procedure STNA(fileid: LongWord; dir_dat2db: Boolean);
1257 var
1258  packages: Word;
1259  i: LongWord;
1260 begin
1261  if dir_dat2db then
1262  begin
1263    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1264    if packages > 0 then
1265      for i := 0 to packages - 1 do
1266        InsertDatLinkToDB(fileid, $20 + i * 4);
1267  end
1268  else
1269  begin
1270  end;
1271 end;
1272
1273
1274
1275
1276 procedure TRAC(fileid: LongWord; dir_dat2db: Boolean);
1277 var
1278  packages: Word;
1279  i: LongWord;
1280 begin
1281  if dir_dat2db then
1282  begin
1283    InsertDatLinkToDB(fileid, $18);
1284    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1285    if packages > 0 then
1286      for i := 0 to packages - 1 do
1287        InsertDatLinkToDB(fileid, $20 + i * 12 + 8);
1288  end
1289  else
1290  begin
1291  end;
1292 end;
1293
1294
1295
1296
1297 procedure TRAM(fileid: LongWord; dir_dat2db: Boolean);
1298 begin
1299  if dir_dat2db then
1300  begin
1301    InsertDatLinkToDB(fileid, $40);
1302    InsertDatLinkToDB(fileid, $44);
1303  end
1304  else
1305  begin
1306  end;
1307 end;
1308
1309
1310
1311
1312 procedure TRAS(fileid: LongWord; dir_dat2db: Boolean);
1313 begin
1314  if dir_dat2db then
1315  begin
1316    InsertDatLinkToDB(fileid, $08);
1317  end
1318  else
1319  begin
1320  end;
1321 end;
1322
1323
1324
1325
1326 procedure TRBS(fileid: LongWord; dir_dat2db: Boolean);
1327 var
1328  i: LongWord;
1329 begin
1330  if dir_dat2db then
1331  begin
1332    for i := 0 to 4 do
1333      InsertDatLinkToDB(fileid, $08 + i * 4);
1334  end
1335  else
1336  begin
1337  end;
1338 end;
1339
1340
1341
1342
1343 procedure TRCM(fileid: LongWord; dir_dat2db: Boolean);
1344 var
1345  i: LongWord;
1346 begin
1347  if dir_dat2db then
1348  begin
1349    for i := 0 to 2 do
1350      InsertDatLinkToDB(fileid, $5C + i * 4);
1351  end
1352  else
1353  begin
1354  end;
1355 end;
1356
1357
1358
1359
1360 procedure TRGA(fileid: LongWord; dir_dat2db: Boolean);
1361 var
1362  i: LongWord;
1363  packages: Word;
1364 begin
1365  if dir_dat2db then
1366  begin
1367    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1368    if packages > 0 then
1369      for i := 0 to packages - 1 do
1370        InsertDatLinkToDB(fileid, $20 + i * 4);
1371  end
1372  else
1373  begin
1374  end;
1375 end;
1376
1377
1378
1379
1380 procedure TRGE(fileid: LongWord; dir_dat2db: Boolean);
1381 begin
1382  if dir_dat2db then
1383  begin
1384    InsertDatLinkToDB(fileid, $20);
1385  end
1386  else
1387  begin
1388  end;
1389 end;
1390
1391
1392
1393
1394 procedure TRIG(fileid: LongWord; dir_dat2db: Boolean);
1395 begin
1396  if dir_dat2db then
1397  begin
1398    InsertDatLinkToDB(fileid, $18);
1399    InsertDatLinkToDB(fileid, $24);
1400    InsertDatLinkToDB(fileid, $28);
1401  end
1402  else
1403  begin
1404  end;
1405 end;
1406
1407
1408
1409
1410 procedure TRMA(fileid: LongWord; dir_dat2db: Boolean);
1411 var
1412  i: LongWord;
1413  packages: Word;
1414 begin
1415  if dir_dat2db then
1416  begin
1417    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1418    if packages > 0 then
1419      for i := 0 to packages - 1 do
1420        InsertDatLinkToDB(fileid, $20 + i * 4);
1421  end
1422  else
1423  begin
1424  end;
1425 end;
1426
1427
1428
1429
1430 procedure TRSC(fileid: LongWord; dir_dat2db: Boolean);
1431 var
1432  i: LongWord;
1433  packages: Word;
1434 begin
1435  if dir_dat2db then
1436  begin
1437    OniDataConnection.LoadDatFilePart(fileid, $1E, 2, @packages);
1438    if packages > 0 then
1439      for i := 0 to packages - 1 do
1440        InsertDatLinkToDB(fileid, $20 + i * 4);
1441  end
1442  else
1443  begin
1444  end;
1445 end;
1446
1447
1448
1449
1450 procedure TSFF(fileid: LongWord; dir_dat2db: Boolean);
1451 var
1452  i: LongWord;
1453  packages: LongWord;
1454 begin
1455  if dir_dat2db then
1456  begin
1457    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1458    if packages > 0 then
1459      for i := 0 to packages - 1 do
1460        InsertDatLinkToDB(fileid, $20 + i * 4);
1461  end
1462  else
1463  begin
1464  end;
1465 end;
1466
1467
1468
1469
1470 procedure TSFT(fileid: LongWord; dir_dat2db: Boolean);
1471 begin
1472  if dir_dat2db then
1473  begin
1474    InsertDatLinkToDB(fileid, $1C);
1475  end
1476  else
1477  begin
1478  end;
1479 end;
1480
1481
1482
1483
1484 procedure TURR(fileid: LongWord; dir_dat2db: Boolean);
1485 begin
1486  if dir_dat2db then
1487  begin
1488    InsertDatLinkToDB(fileid, $60);
1489    InsertDatLinkToDB(fileid, $6C);
1490    InsertDatLinkToDB(fileid, $74);
1491  end
1492  else
1493  begin
1494  end;
1495 end;
1496
1497
1498
1499
1500 procedure TXAN(fileid: LongWord; dir_dat2db: Boolean);
1501 var
1502  i: LongWord;
1503  packages: LongWord;
1504 begin
1505  if dir_dat2db then
1506  begin
1507    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1508    if packages > 0 then
1509      for i := 0 to packages - 1 do
1510        InsertDatLinkToDB(fileid, $20 + i * 4);
1511  end
1512  else
1513  begin
1514  end;
1515 end;
1516
1517
1518
1519
1520 procedure TXMA(fileid: LongWord; dir_dat2db: Boolean);
1521 var
1522  i: LongWord;
1523  packages: LongWord;
1524 begin
1525  if dir_dat2db then
1526  begin
1527    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1528    if packages > 0 then
1529      for i := 0 to packages - 1 do
1530        InsertDatLinkToDB(fileid, $20 + i * 4);
1531  end
1532  else
1533  begin
1534  end;
1535 end;
1536
1537
1538
1539
1540 procedure TXMB(fileid: LongWord; dir_dat2db: Boolean);
1541 var
1542  i: LongWord;
1543  packages: LongWord;
1544 begin
1545  if dir_dat2db then
1546  begin
1547    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1548    if packages > 0 then
1549      for i := 0 to packages - 1 do
1550        InsertDatLinkToDB(fileid, $20 + i * 4);
1551  end
1552  else
1553  begin
1554  end;
1555 end;
1556
1557
1558
1559
1560 procedure TXMP(fileid: LongWord; dir_dat2db: Boolean);
1561 begin
1562  if dir_dat2db then
1563  begin
1564    InsertDatLinkToDB(fileid, $94);
1565    InsertDatLinkToDB(fileid, $98);
1566  end
1567  else
1568  begin
1569  end;
1570 end;
1571
1572
1573
1574
1575 procedure TXTC(fileid: LongWord; dir_dat2db: Boolean);
1576 begin
1577  if dir_dat2db then
1578  begin
1579    InsertDatLinkToDB(fileid, $08);
1580  end
1581  else
1582  begin
1583  end;
1584 end;
1585
1586
1587
1588
1589 procedure WMCL(fileid: LongWord; dir_dat2db: Boolean);
1590 var
1591  i: LongWord;
1592  packages: LongWord;
1593 begin
1594  if dir_dat2db then
1595  begin
1596    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1597    if packages > 0 then
1598      for i := 0 to packages - 1 do
1599        InsertDatLinkToDB(fileid, $20 + i * 8 + $4);
1600  end
1601  else
1602  begin
1603  end;
1604 end;
1605
1606
1607
1608
1609 procedure WMDD(fileid: LongWord; dir_dat2db: Boolean);
1610 var
1611  i: LongWord;
1612  packages: LongWord;
1613 begin
1614  if dir_dat2db then
1615  begin
1616    OniDataConnection.LoadDatFilePart(fileid, $11C, 4, @packages);
1617    if packages > 0 then
1618      for i := 0 to packages - 1 do
1619        InsertDatLinkToDB(fileid, $120 + i * $124 + $114);
1620  end
1621  else
1622  begin
1623  end;
1624 end;
1625
1626
1627
1628
1629 procedure WMMB(fileid: LongWord; dir_dat2db: Boolean);
1630 var
1631  i: LongWord;
1632  packages: LongWord;
1633 begin
1634  if dir_dat2db then
1635  begin
1636    OniDataConnection.LoadDatFilePart(fileid, $1C, 4, @packages);
1637    if packages > 0 then
1638      for i := 0 to packages - 1 do
1639        InsertDatLinkToDB(fileid, $20 + i * 4);
1640  end
1641  else
1642  begin
1643  end;
1644 end;
1645
1646
1647
1648
1649 procedure WPGE(fileid: LongWord; dir_dat2db: Boolean);
1650 begin
1651  if dir_dat2db then
1652  begin
1653    InsertDatLinkToDB(fileid, $08);
1654    InsertDatLinkToDB(fileid, $0C);
1655  end
1656  else
1657  begin
1658  end;
1659 end;
1660
1661
1662
1663
1664 procedure InsertHandler(ext: String; needed: Boolean; handler: THandler);
1665 begin
1666  SetLength(ConvertHandlers, Length(ConvertHandlers) + 1);
1667  ConvertHandlers[High(ConvertHandlers)].Ext     := ext;
1668  ConvertHandlers[High(ConvertHandlers)].needed  := needed;
1669  ConvertHandlers[High(ConvertHandlers)].handler := handler;
1670 end;
1671
1672 begin
1673  InsertHandler('ABNA', False, nil);
1674  //  InsertHandler('AGDB',True,AGDB);
1675  InsertHandler('AGDB', False, nil);
1676  InsertHandler('AGQC', False, nil);
1677  InsertHandler('AGQG', False, nil);
1678  InsertHandler('AGQR', False, nil);
1679  InsertHandler('AISA', True, AISA);
1680  InsertHandler('AITR', False, nil);
1681  InsertHandler('AKAA', False, nil);
1682  InsertHandler('AKBA', False, nil);
1683  InsertHandler('AKBP', False, nil);
1684  InsertHandler('AKDA', False, nil);
1685  InsertHandler('AKEV', True, AKEV);
1686  InsertHandler('AKOT', True, AKOT);
1687  InsertHandler('AKVA', False, nil);
1688  InsertHandler('BINA', False, nil);
1689  InsertHandler('CBPI', True, CBPI);
1690  InsertHandler('CBPM', True, CBPM);
1691  InsertHandler('CONS', True, CONS);
1692  InsertHandler('CRSA', True, CRSA);
1693  InsertHandler('DOOR', True, DOOR);
1694  InsertHandler('DPGE', True, DPGE);
1695  InsertHandler('ENVP', False, nil);
1696  InsertHandler('FILM', False, nil);
1697  InsertHandler('HPGE', True, HPGE);
1698  InsertHandler('IDXA', False, nil);
1699  InsertHandler('IGHH', True, IGHH);
1700  InsertHandler('IGPA', True, IGPA);
1701  InsertHandler('IGPG', True, IGPG);
1702  InsertHandler('IGSA', True, IGSA);
1703  InsertHandler('IMPT', True, IMPT);
1704  InsertHandler('IPGE', True, IPGE);
1705  InsertHandler('KEYI', True, KEYI);
1706  InsertHandler('M3GA', True, M3GA);
1707  InsertHandler('M3GM', True, M3GM);
1708  InsertHandler('MTRL', True, MTRL);
1709  InsertHandler('OBAN', False, nil);
1710  InsertHandler('OBDC', True, OBDC);
1711  InsertHandler('OBOA', True, OBOA);
1712  InsertHandler('OFGA', True, OFGA);
1713  InsertHandler('ONCC', True, ONCC);
1714  InsertHandler('ONCP', False, nil);
1715  InsertHandler('ONCV', True, ONCV);
1716  InsertHandler('ONFA', False, nil);
1717  InsertHandler('ONGS', False, nil);
1718  InsertHandler('ONIA', False, nil);
1719  InsertHandler('ONLD', False, nil);
1720  InsertHandler('ONLV', True, ONLV);
1721  InsertHandler('ONMA', False, nil);
1722  InsertHandler('ONOA', True, ONOA);
1723  InsertHandler('ONSA', False, nil);
1724  InsertHandler('ONSK', True, ONSK);
1725  InsertHandler('ONTA', False, nil);
1726  InsertHandler('ONVL', True, ONVL);
1727  InsertHandler('ONWC', True, ONWC);
1728  InsertHandler('OPGE', True, OPGE);
1729  InsertHandler('OSBD', False, nil);
1730  InsertHandler('OTIT', False, nil);
1731  InsertHandler('OTLF', False, nil);
1732  InsertHandler('PLEA', False, nil);
1733  InsertHandler('PNTA', False, nil);
1734  InsertHandler('PSPC', True, PSPC);
1735  InsertHandler('PSPL', True, PSPL);
1736  InsertHandler('PSUI', True, PSUI);
1737  InsertHandler('QTNA', False, nil);
1738  InsertHandler('SNDD', False, nil);
1739  InsertHandler('STNA', True, STNA);
1740  InsertHandler('SUBT', False, nil);
1741  InsertHandler('TRAC', True, TRAC);
1742  InsertHandler('TRAM', True, TRAM);
1743  InsertHandler('TRAS', True, TRAS);
1744  InsertHandler('TRBS', True, TRBS);
1745  InsertHandler('TRCM', True, TRCM);
1746  InsertHandler('TRGA', True, TRGA);
1747  InsertHandler('TRGE', True, TRGE);
1748  InsertHandler('TRIA', False, nil);
1749  InsertHandler('TRIG', True, TRIG);
1750  InsertHandler('TRMA', True, TRMA);
1751  InsertHandler('TRSC', True, TRSC);
1752  InsertHandler('TRTA', False, nil);
1753  InsertHandler('TSFF', True, TSFF);
1754  InsertHandler('TSFL', False, nil);
1755  InsertHandler('TSFT', True, TSFT);
1756  InsertHandler('TSGA', False, nil);
1757  InsertHandler('TSTR', False, nil);
1758  InsertHandler('TURR', True, TURR);
1759  InsertHandler('TXAN', True, TXAN);
1760  InsertHandler('TXCA', False, nil);
1761  InsertHandler('TXMA', True, TXMA);
1762  InsertHandler('TXMB', True, TXMB);
1763  InsertHandler('TXMP', True, TXMP);
1764  InsertHandler('TXTC', True, TXTC);
1765  InsertHandler('VCRA', False, nil);
1766  InsertHandler('WMCL', True, WMCL);
1767  InsertHandler('WMDD', True, WMDD);
1768  InsertHandler('WMM_', False, nil);
1769  InsertHandler('WMMB', True, WMMB);
1770  InsertHandler('WPGE', True, WPGE);
766   end.

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)