forked from indomit/quice
-
Notifications
You must be signed in to change notification settings - Fork 3
/
DBCfile.pas
210 lines (182 loc) · 5.06 KB
/
DBCfile.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
unit DBCfile;
interface
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
const
FT_NA='x'; //not used or unknown, 4 byte size
FT_NA_BYTE='X'; //not used or unknown, byte
FT_STRING='s'; //char*
FT_FLOAT='f'; //float
FT_INT='i'; //uint32
FT_BYTE='b'; //uint8
FT_SORT='d'; //sorted by this field, field is not included
FT_IND='n'; //the same,but parsed to data
FT_LOGIC='l'; //Logical (boolean)
type
PCardinal = array of Cardinal;
PInteger = array of Integer;
PArray = array of Char;
PDBCFile = ^TDBCFile;
TDBCFile = class
public
recordSize: Cardinal;
recordCount: Cardinal;
fieldCount: Cardinal;
stringSize: Cardinal;
fieldsOffset: PCardinal;
data: PAnsiChar;
stringTable: PAnsiChar;
offset: PAnsiChar;
constructor Create;
destructor Destroy; override;
function Load(filename: WideString): boolean;
procedure setRecord(id: Cardinal);
function GetNumRows(): Cardinal;
function GetCols(): Cardinal;
function GetOffset(id: Cardinal): Cardinal;
function IsLoaded(): boolean;
function getFloat(field: Cardinal): Single;
function getUInt(field: Cardinal): Cardinal;
function getUInt8(field: Cardinal): Byte;
function getPChar(field: Cardinal; Localize : boolean = false): pansichar;
function getString(field: Cardinal; Localize : boolean = false): string;
end;
implementation
uses MyDataModule;
procedure assert(Expr: boolean);
begin
if not Expr then raise Exception.Create('Incorrect field number');
end;
{ TDBCFile }
constructor TDBCFile.Create;
begin
data := NIL;
fieldsOffset := NIL;
end;
destructor TDBCFile.Destroy;
begin
if Assigned(data) then FreeMem(data);
if Assigned(fieldsOffset) then SetLength(fieldsOffset,0);
inherited;
end;
function TDBCFile.GetCols: Cardinal;
begin
Result := fieldCount;
end;
function TDBCFile.GetNumRows: Cardinal;
begin
Result := recordCount;
end;
function TDBCFile.GetOffset(id: Cardinal): Cardinal;
begin
if (fieldsOffset <> nil) and (id<fieldCount) then
Result := fieldsOffset[id]
else
Result := 0;
end;
procedure TDBCFile.setRecord(id: Cardinal);
begin
offset := pansichar(Cardinal(data) + id * recordSize);
end;
function TDBCFile.IsLoaded: boolean;
begin
Result := data <> nil;
end;
function TDBCFile.Load(filename: WideString): boolean;
var
header, i: Cardinal;
f: Integer;
begin
if Assigned(data) then
begin
FreeMem(data);
data := nil;
end;
f := FileOpen(filename, fmOpenRead);
if f = -1 then
begin
Result := false;
Exit;
end;
FileRead(f, header, 4);
if header <> $43424457 then
begin
Result := false;
Exit;
end;
FileRead(F, recordCount, 4);
FileRead(F, fieldCount, 4);
FileRead(F, recordSize, 4);
FileRead(F, stringSize, 4);
SetLength(fieldsOffset, fieldCount);
fieldsOffset[0] := 0;
for i := 1 to fieldCount - 1 do
begin
fieldsOffset[i] := fieldsOffset[i-1];
inc(fieldsOffset[i],4);
end;
data := PansiChar(AllocMem(recordSize*recordCount + stringSize + 1));
stringTable := pointer( Cardinal(data) + recordSize*recordCount);
FileRead(F, data^, recordSize*recordCount+stringSize);
FileClose(F);
Result := True;
end;
{ TRecord }
function TDBCFile.getFloat(field: Cardinal): Single;
begin
assert(field < fieldCount);
CopyMemory(@Result, offset + GetOffset(field), SizeOf(Result));
end;
function TDBCFile.getPChar(field: Cardinal; Localize : boolean = false): PansiChar;
var
stringOffset : Cardinal;
fieldid: Cardinal;
i: Cardinal;
begin
if dmMain.DBCLocale < 16 then
begin
if Localize then
fieldid := field + dmMain.DBCLocale
else
fieldid := field;
assert(fieldid < fieldCount);
stringOffset := getUInt(fieldid);
assert(stringOffset < stringSize);
Result := stringTable + stringOffset;
end
else
begin
// Autodetect DBC Locale
for I := 0 to 15 do
begin
fieldid := field + I;
assert(fieldid < fieldCount);
stringOffset := getUInt(fieldid);
assert(stringOffset < stringSize);
Result := stringTable + stringOffset;
if Result<>'' then
begin
dmMain.DBCLocale := I;
Exit;
end;
end;
end;
end;
function TDBCFile.getString(field: Cardinal; Localize : boolean = false): string;
var
s: PansiChar;
begin
s := getPChar(field, Localize);
Result := UTF8ToString(s);
end;
function TDBCFile.getUInt(field: Cardinal): Cardinal;
begin
assert(field < fieldCount);
CopyMemory(@Result, offset + GetOffset(field), sizeof(Result));
end;
function TDBCFile.getUInt8(field: Cardinal): Byte;
begin
assert(field < fieldCount);
CopyMemory(@Result, offset + GetOffset(field), SizeOf(Result));
end;
end.