1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE a_modes.inc}
24 // ////////////////////////////////////////////////////////////////////////// //
26 SSArray
= array of ShortString;
29 // ////////////////////////////////////////////////////////////////////////// //
31 TUtf8DecoderFast
= packed record
33 const Replacement
= $FFFD; // replacement char for invalid unicode
41 codepoint
: LongWord; // decoded codepoint (valid only when decoder is in "complete" state)
44 constructor Create (v
: Boolean{fuck you, fpc});
46 procedure reset (); inline;
48 function complete (): Boolean; inline; // is current character complete? take `codepoint` then
49 function invalid (): Boolean; inline;
50 function completeOrInvalid (): Boolean; inline;
52 // process one byte, return `true` if codepoint is ready
53 function decode (b
: Byte): Boolean; inline; overload
;
54 function decode (c
: AnsiChar): Boolean; inline; overload
;
58 // ////////////////////////////////////////////////////////////////////////// //
59 function getFilenameExt (const fn
: AnsiString): AnsiString;
60 function setFilenameExt (const fn
, ext
: AnsiString): AnsiString;
61 function forceFilenameExt (const fn
, ext
: AnsiString): AnsiString;
63 // strips out name from `fn`, leaving trailing slash
64 function getFilenamePath (const fn
: AnsiString): AnsiString;
66 // ends with '/' or '\'?
67 function isFilenamePath (const fn
: AnsiString): Boolean;
69 // strips extra trailing slashes in `path, and extra leading slashes in `fn`
70 // will add slash to `path`, even if `fn` is empty!
71 function filenameConcat (const path
, fn
: AnsiString): AnsiString;
73 // does filename have one of ".wad", ".pk3", ".zip" extensions?
74 function hasWadExtension (const fn
: AnsiString): Boolean;
76 // does filepath have ".XXX:\" in it?
77 function isWadPath (const fn
: AnsiString): Boolean;
79 // adds ".wad" extension if filename doesn't have one of ".wad", ".pk3", ".zip"
80 function addWadExtension (const fn
: AnsiString): AnsiString;
82 // check wad signature
83 function isWadData (data
: Pointer; len
: LongWord): Boolean;
85 // convert number to strig with nice commas
86 function int64ToStrComma (i
: Int64): AnsiString;
88 function upcase1251 (ch
: AnsiChar): AnsiChar; inline;
89 function locase1251 (ch
: AnsiChar): AnsiChar; inline;
91 function toLowerCase1251 (const s
: AnsiString): AnsiString;
93 // `true` if strings are equal; ignoring case for cp1251
94 function strEquCI1251 (const s0
, s1
: AnsiString): Boolean;
96 function utf8Valid (const s
: AnsiString): Boolean;
98 function utf8to1251 (s
: AnsiString): AnsiString;
100 // `pathname` will be modified if path is valid
101 // `lastIsDir` should be `true` if we are searching for directory
102 // nobody cares about shitdoze, so i'll use the same code path for it
103 function findFileCI (var pathname
: AnsiString; lastIsDir
: Boolean=false): Boolean;
105 // return fixed AnsiString or empty AnsiString
106 function findDiskWad (fname
: AnsiString): AnsiString;
107 // slashes must be normalized!
108 function isWadNamesEqu (wna
, wnb
: AnsiString): Boolean;
111 function openDiskFileRO (pathname
: AnsiString): TStream
;
112 function createDiskFile (pathname
: AnsiString): TStream
;
115 procedure writeSign (st
: TStream
; const sign
: AnsiString);
116 function checkSign (st
: TStream
; const sign
: AnsiString): Boolean;
118 procedure writeBool (st
: TStream
; b
: Boolean);
119 function readBool (st
: TStream
): Boolean;
121 procedure writeStr (st
: TStream
; const str
: AnsiString; maxlen
: LongWord=65535);
122 function readStr (st
: TStream
; maxlen
: LongWord=65535): AnsiString;
124 procedure writeInt (st
: TStream
; v
: Byte); overload
;
125 procedure writeInt (st
: TStream
; v
: ShortInt); overload
;
126 procedure writeInt (st
: TStream
; v
: Word); overload
;
127 procedure writeInt (st
: TStream
; v
: SmallInt); overload
;
128 procedure writeInt (st
: TStream
; v
: LongWord); overload
;
129 procedure writeInt (st
: TStream
; v
: LongInt); overload
;
130 procedure writeInt (st
: TStream
; v
: Int64); overload
;
131 procedure writeInt (st
: TStream
; v
: UInt64); overload
;
133 function readByte (st
: TStream
): Byte;
134 function readShortInt (st
: TStream
): ShortInt;
135 function readWord (st
: TStream
): Word;
136 function readSmallInt (st
: TStream
): SmallInt;
137 function readLongWord (st
: TStream
): LongWord;
138 function readLongInt (st
: TStream
): LongInt;
139 function readInt64 (st
: TStream
): Int64;
140 function readUInt64 (st
: TStream
): UInt64;
143 procedure writeIntBE (st
: TStream
; v
: Byte); overload
;
144 procedure writeIntBE (st
: TStream
; v
: ShortInt); overload
;
145 procedure writeIntBE (st
: TStream
; v
: Word); overload
;
146 procedure writeIntBE (st
: TStream
; v
: SmallInt); overload
;
147 procedure writeIntBE (st
: TStream
; v
: LongWord); overload
;
148 procedure writeIntBE (st
: TStream
; v
: LongInt); overload
;
149 procedure writeIntBE (st
: TStream
; v
: Int64); overload
;
150 procedure writeIntBE (st
: TStream
; v
: UInt64); overload
;
152 function readByteBE (st
: TStream
): Byte;
153 function readShortIntBE (st
: TStream
): ShortInt;
154 function readWordBE (st
: TStream
): Word;
155 function readSmallIntBE (st
: TStream
): SmallInt;
156 function readLongWordBE (st
: TStream
): LongWord;
157 function readLongIntBE (st
: TStream
): LongInt;
158 function readInt64BE (st
: TStream
): Int64;
159 function readUInt64BE (st
: TStream
): UInt64;
162 function nmin (a
, b
: Byte): Byte; inline; overload
;
163 function nmin (a
, b
: ShortInt): ShortInt; inline; overload
;
164 function nmin (a
, b
: Word): Word; inline; overload
;
165 function nmin (a
, b
: SmallInt): SmallInt; inline; overload
;
166 function nmin (a
, b
: LongWord): LongWord; inline; overload
;
167 function nmin (a
, b
: LongInt): LongInt; inline; overload
;
168 function nmin (a
, b
: Int64): Int64; inline; overload
;
169 function nmin (a
, b
: UInt64): UInt64; inline; overload
;
170 function nmin (a
, b
: Single): Single; inline; overload
;
171 function nmin (a
, b
: Double): Double; inline; overload
;
172 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
173 function nmin (a
, b
: Extended
): Extended
; inline; overload
;
176 function nmax (a
, b
: Byte): Byte; inline; overload
;
177 function nmax (a
, b
: ShortInt): ShortInt; inline; overload
;
178 function nmax (a
, b
: Word): Word; inline; overload
;
179 function nmax (a
, b
: SmallInt): SmallInt; inline; overload
;
180 function nmax (a
, b
: LongWord): LongWord; inline; overload
;
181 function nmax (a
, b
: LongInt): LongInt; inline; overload
;
182 function nmax (a
, b
: Int64): Int64; inline; overload
;
183 function nmax (a
, b
: UInt64): UInt64; inline; overload
;
184 function nmax (a
, b
: Single): Single; inline; overload
;
185 function nmax (a
, b
: Double): Double; inline; overload
;
186 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
187 function nmax (a
, b
: Extended
): Extended
; inline; overload
;
189 function nclamp (v
, a
, b
: Byte): Byte; inline; overload
;
190 function nclamp (v
, a
, b
: ShortInt): ShortInt; inline; overload
;
191 function nclamp (v
, a
, b
: Word): Word; inline; overload
;
192 function nclamp (v
, a
, b
: SmallInt): SmallInt; inline; overload
;
193 function nclamp (v
, a
, b
: LongWord): LongWord; inline; overload
;
194 function nclamp (v
, a
, b
: LongInt): LongInt; inline; overload
;
195 function nclamp (v
, a
, b
: Int64): Int64; inline; overload
;
196 function nclamp (v
, a
, b
: UInt64): UInt64; inline; overload
;
197 function nclamp (v
, a
, b
: Single): Single; inline; overload
;
198 function nclamp (v
, a
, b
: Double): Double; inline; overload
;
199 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
200 function nclamp (v
, a
, b
: Extended
): Extended
; inline; overload
;
204 TFormatStrFCallback
= procedure (constref buf
; len
: SizeUInt
);
206 // returns formatted string if `writerCB` is `nil`, empty string otherwise
207 function formatstrf (const fmt
: AnsiString; const args
: array of const; writerCB
: TFormatStrFCallback
=nil): AnsiString;
209 function wchar2win (wc
: WideChar): AnsiChar; inline;
210 function utf2win (const s
: AnsiString): AnsiString;
211 function win2utf (const s
: AnsiString): AnsiString;
212 function digitInBase (ch
: AnsiChar; base
: Integer): Integer;
214 // returns string in single or double quotes
215 // single quotes supports only pascal-style '' for single quote char
216 // double quotes supports c-style escapes
217 // function will select quote mode automatically
218 function quoteStr (const s
: AnsiString): AnsiString;
222 generic TSimpleList
<ItemT
> = class
224 //type PItemT = ^ItemT;
225 type TItemArr
= array of ItemT
;
235 constructor Create (const aitems
: TItemArr
; acount
: Integer);
236 function MoveNext
: Boolean;
237 function getCurrent (): ItemT
;
238 property Current
: ItemT read getCurrent
;
243 mCount
: Integer; // can be less than `mItems` size
246 function getAt (idx
: Integer): ItemT
; inline;
247 procedure setAt (idx
: Integer; const it
: ItemT
); inline;
249 function getCapacity (): Integer; inline;
250 procedure setCapacity (v
: Integer); inline;
253 constructor Create (acapacity
: Integer=-1);
254 destructor Destroy (); override;
256 //WARNING! don't change list contents in `for ... in`!
257 function GetEnumerator (): TEnumerator
;
259 procedure reset (); inline; // won't resize `mItems`
260 procedure clear (); inline;
262 procedure append (constref it
: ItemT
); inline;
263 procedure delete (idx
: Integer); inline;
264 function remove (idx
: Integer): ItemT
; inline;
267 property count
: Integer read mCount
;
268 property capacity
: Integer read getCapacity write setCapacity
;
269 property at
[idx
: Integer]: ItemT read getAt write setAt
; default
;
273 procedure FillMemory (Dest
: Pointer; Len
: LongWord; Ch
: Byte); inline;
274 procedure CopyMemory (Dest
: Pointer; Src
: Pointer; Len
: LongWord); inline;
275 procedure ZeroMemory (Dest
: Pointer; Len
: LongWord); inline;
284 // ////////////////////////////////////////////////////////////////////////// //
285 procedure CopyMemory (Dest
: Pointer; Src
: Pointer; Len
: LongWord); inline;
287 Move(Src
^, Dest
^, Len
);
290 procedure FillMemory (Dest
: Pointer; Len
: LongWord; Ch
: Byte); inline;
292 FillChar(Dest
^, Len
, Ch
);
295 procedure ZeroMemory (Dest
: Pointer; Len
: LongWord); inline;
297 FillChar(Dest
^, Len
, 0);
301 // ////////////////////////////////////////////////////////////////////////// //
302 constructor TSimpleList
.TEnumerator
.Create (const aitems
: TItemArr
; acount
: Integer);
309 function TSimpleList
.TEnumerator
.MoveNext
: Boolean;
312 result
:= (mCurrent
< mCount
);
315 function TSimpleList
.TEnumerator
.getCurrent (): ItemT
;
317 result
:= mItems
[mCurrent
];
321 // ////////////////////////////////////////////////////////////////////////// //
322 constructor TSimpleList
.Create (acapacity
: Integer=-1);
325 if (acapacity
> 0) then SetLength(mItems
, acapacity
);
330 destructor TSimpleList
.Destroy ();
337 function TSimpleList
.getCapacity (): Integer; inline;
339 result
:= Length(mItems
);
343 procedure TSimpleList
.setCapacity (v
: Integer); inline;
345 if (v
< mCount
) then v
:= mCount
;
346 if (v
<> Length(mItems
)) then SetLength(mItems
, v
);
350 function TSimpleList
.GetEnumerator (): TEnumerator
;
352 if (Length(mItems
) > 0) then result
:= TEnumerator
.Create(mItems
, mCount
)
353 else result
:= TEnumerator
.Create(nil, -1);
357 procedure TSimpleList
.reset (); inline;
363 procedure TSimpleList
.clear (); inline;
370 function TSimpleList
.getAt (idx
: Integer): ItemT
; inline;
372 if (idx
>= 0) and (idx
< mCount
) then result
:= mItems
[idx
] else result
:= Default(ItemT
);
376 procedure TSimpleList
.setAt (idx
: Integer; const it
: ItemT
); inline;
378 if (idx
>= 0) and (idx
< mCount
) then mItems
[idx
] := it
;
382 procedure TSimpleList
.append (constref it
: ItemT
); inline;
386 if (mCount
>= Length(mItems
)) then
388 newsz
:= mCount
+(mCount
div 3)+128;
389 SetLength(mItems
, newsz
);
391 mItems
[mCount
] := it
;
396 procedure TSimpleList
.delete (idx
: Integer); inline;
400 if (idx
>= 0) and (idx
< mCount
) then
402 for f
:= idx
+1 to mCount
-1 do mItems
[f
-1] := mItems
[f
];
407 function TSimpleList
.remove (idx
: Integer): ItemT
; inline;
411 if (idx
>= 0) and (idx
< mCount
) then
413 result
:= mItems
[idx
];
414 for f
:= idx
+1 to mCount
-1 do mItems
[f
-1] := mItems
[f
];
418 result
:= Default(ItemT
);
423 // ////////////////////////////////////////////////////////////////////////// //
425 wc2shitmap
: array[0..65535] of AnsiChar;
426 wc2shitmapInited
: Boolean = false;
429 // ////////////////////////////////////////////////////////////////////////// //
431 cp1251
: array[0..127] of Word = (
432 $0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
433 $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
434 $00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
435 $00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
436 $0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
437 $0420,$0421,$0422,$0423,$0424,$0425,$0426,$0427,$0428,$0429,$042A,$042B,$042C,$042D,$042E,$042F,
438 $0430,$0431,$0432,$0433,$0434,$0435,$0436,$0437,$0438,$0439,$043A,$043B,$043C,$043D,$043E,$043F,
439 $0440,$0441,$0442,$0443,$0444,$0445,$0446,$0447,$0448,$0449,$044A,$044B,$044C,$044D,$044E,$044F
443 procedure initShitMap ();
447 for f
:= 0 to High(wc2shitmap
) do wc2shitmap
[f
] := '?';
448 for f
:= 0 to 127 do wc2shitmap
[f
] := AnsiChar(f
);
449 for f
:= 0 to 127 do wc2shitmap
[cp1251
[f
]] := AnsiChar(f
+128);
450 wc2shitmapInited
:= true;
454 // ////////////////////////////////////////////////////////////////////////// //
455 // fast state-machine based UTF-8 decoder; using 8 bytes of memory
456 // code points from invalid range will never be valid, this is the property of the state machine
458 // see http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
459 utf8dfa
: array[0..$16c-1] of Byte = (
460 // maps bytes to character classes
461 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 00-0f
462 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 10-1f
463 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 20-2f
464 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 30-3f
465 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 40-4f
466 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 50-5f
467 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 60-6f
468 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00, // 70-7f
469 $01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$01, // 80-8f
470 $09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09,$09, // 90-9f
471 $07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07, // a0-af
472 $07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07,$07, // b0-bf
473 $08,$08,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02, // c0-cf
474 $02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02,$02, // d0-df
475 $0a,$03,$03,$03,$03,$03,$03,$03,$03,$03,$03,$03,$03,$04,$03,$03, // e0-ef
476 $0b,$06,$06,$06,$05,$08,$08,$08,$08,$08,$08,$08,$08,$08,$08,$08, // f0-ff
477 // maps a combination of a state of the automaton and a character class to a state
478 $00,$0c,$18,$24,$3c,$60,$54,$0c,$0c,$0c,$30,$48,$0c,$0c,$0c,$0c, // 100-10f
479 $0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$00,$0c,$0c,$0c,$0c,$0c,$00, // 110-11f
480 $0c,$00,$0c,$0c,$0c,$18,$0c,$0c,$0c,$0c,$0c,$18,$0c,$18,$0c,$0c, // 120-12f
481 $0c,$0c,$0c,$0c,$0c,$0c,$0c,$18,$0c,$0c,$0c,$0c,$0c,$18,$0c,$0c, // 130-13f
482 $0c,$0c,$0c,$0c,$0c,$18,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$24, // 140-14f
483 $0c,$24,$0c,$0c,$0c,$24,$0c,$0c,$0c,$0c,$0c,$24,$0c,$24,$0c,$0c, // 150-15f
484 $0c,$24,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c,$0c);
487 // ////////////////////////////////////////////////////////////////////////// //
488 constructor TUtf8DecoderFast
.Create (v
: Boolean{fuck you, fpc}); begin state
:= Accept
; codepoint
:= 0; end;
490 procedure TUtf8DecoderFast
.reset (); inline; begin state
:= Accept
; codepoint
:= 0; end;
492 function TUtf8DecoderFast
.complete (): Boolean; inline; begin result
:= (state
= Accept
); end;
493 function TUtf8DecoderFast
.invalid (): Boolean; inline; begin result
:= (state
= Reject
); end;
494 function TUtf8DecoderFast
.completeOrInvalid (): Boolean; inline; begin result
:= (state
= Accept
) or (state
= Reject
); end;
496 function TUtf8DecoderFast
.decode (c
: AnsiChar): Boolean; inline; overload
; begin result
:= decode(Byte(c
)); end;
498 function TUtf8DecoderFast
.decode (b
: Byte): Boolean; inline; overload
;
502 if (state
= Reject
) then begin state
:= Accept
; codepoint
:= 0; end;
504 if (state
<> Accept
) then codepoint
:= (b
and $3f) or (codepoint
shl 6) else codepoint
:= ($ff shr tp
) and b
;
505 state
:= utf8dfa
[256+state
+tp
];
506 if (state
= Reject
) then begin codepoint
:= Replacement
; state
:= Accept
; end;
507 result
:= (state
= Accept
);
511 // ////////////////////////////////////////////////////////////////////////// //
512 function wchar2win (wc
: WideChar): AnsiChar; inline;
514 if not wc2shitmapInited
then initShitMap();
515 if (LongWord(wc
) > 65535) then result
:= '?' else result
:= wc2shitmap
[LongWord(wc
)];
519 // ////////////////////////////////////////////////////////////////////////// //
520 function utf2win (const s
: AnsiString): AnsiString;
523 ud
: TUtf8DecoderFast
;
525 for f
:= 1 to Length(s
) do
527 if (Byte(s
[f
]) > 127) then
529 ud
:= TUtf8DecoderFast
.Create(true);
531 for c
:= 1 to Length(s
) do
533 if ud
.decode(s
[c
]) then result
+= wchar2win(WideChar(ud
.codepoint
));
542 function win2utf (const s
: AnsiString): AnsiString;
546 function utf8Encode (code
: Integer): AnsiString;
548 if (code
< 0) or (code
> $10FFFF) then begin result
:= '?'; exit
; end;
549 if (code
<= $7f) then
551 result
:= AnsiChar(code
and $ff);
553 else if (code
<= $7FF) then
555 result
:= AnsiChar($C0 or (code
shr 6));
556 result
+= AnsiChar($80 or (code
and $3F));
558 else if (code
<= $FFFF) then
560 result
:= AnsiChar($E0 or (code
shr 12));
561 result
+= AnsiChar($80 or ((code
shr 6) and $3F));
562 result
+= AnsiChar($80 or (code
and $3F));
564 else if (code
<= $10FFFF) then
566 result
:= AnsiChar($F0 or (code
shr 18));
567 result
+= AnsiChar($80 or ((code
shr 12) and $3F));
568 result
+= AnsiChar($80 or ((code
shr 6) and $3F));
569 result
+= AnsiChar($80 or (code
and $3F));
578 for f
:= 1 to Length(s
) do
580 if (Byte(s
[f
]) > 127) then
583 for c
:= 1 to Length(s
) do
585 if (Byte(s
[c
]) < 128) then
591 result
+= utf8Encode(cp1251
[Byte(s
[c
])-128])
601 // ////////////////////////////////////////////////////////////////////////// //
602 function digitInBase (ch
: AnsiChar; base
: Integer): Integer;
605 if (base
< 1) or (base
> 36) then exit
;
606 if (ch
< '0') then exit
;
609 if (Integer(ch
) >= 48+base
) then exit
;
610 result
:= Integer(ch
)-48;
614 if (ch
>= '0') and (ch
<= '9') then begin result
:= Integer(ch
)-48; exit
; end;
615 if (ch
>= 'a') and (ch
<= 'z') then Dec(ch
, 32); // poor man's tolower()
616 if (ch
< 'A') or (Integer(ch
) >= 65+(base
-10)) then exit
;
617 result
:= Integer(ch
)-65+10;
622 // ////////////////////////////////////////////////////////////////////////// //
623 function quoteStr (const s
: AnsiString): AnsiString;
625 function squote (const s
: AnsiString): AnsiString;
630 for f
:= 1 to Length(s
) do
632 if (s
[f
] = '''') then result
+= '''';
638 function dquote (const s
: AnsiString): AnsiString;
644 for f
:= 1 to Length(s
) do
647 if (ch
= #0) then result
+= '\z'
648 else if (ch
= #9) then result
+= '\t'
649 else if (ch
= #10) then result
+= '\n'
650 else if (ch
= #13) then result
+= '\r'
651 else if (ch
= #27) then result
+= '\e'
652 else if (ch
< ' ') or (ch
= #127) then
655 result
+= LowerCase(IntToHex(Integer(ch
), 2));
657 else if (ch
= '"') or (ch
= '\') then
671 needSingle
: Boolean = false;
674 for f
:= 1 to Length(s
) do
676 if (s
[f
] = '''') then begin needSingle
:= true; continue
; end;
677 if (s
[f
] < ' ') or (s
[f
] = #127) then begin result
:= dquote(s
); exit
; end;
679 if needSingle
then result
:= squote(s
) else result
:= ''''+s
+'''';
683 // ////////////////////////////////////////////////////////////////////////// //
684 function getFilenameExt (const fn
: AnsiString): AnsiString;
695 if (pos
= Length(fn
)) then result
:= '' else result
:= Copy(fn
, pos
, Length(fn
)-pos
+1);
698 if (ch
= '/') or (ch
= '\') then break
;
701 result
:= ''; // no extension
705 function setFilenameExt (const fn
, ext
: AnsiString): AnsiString;
711 if (Length(ext
) = 0) or (ext
= '.') then exit
;
716 if (ch
= '.') then exit
;
717 if (ch
= '/') or (ch
= '\') then break
;
720 if (ext
[1] <> '.') then result
+= '.';
725 function forceFilenameExt (const fn
, ext
: AnsiString): AnsiString;
737 if (Length(ext
) = 0) or (ext
= '.') then
739 result
:= Copy(fn
, 1, pos
-1);
743 if (ext
[1] = '.') then result
:= Copy(fn
, 1, pos
-1) else result
:= Copy(fn
, 1, pos
);
748 if (ch
= '/') or (ch
= '\') then break
;
751 if (Length(ext
) > 0) then
753 if (ext
[1] <> '.') then result
+= '.';
759 // strips out name from `fn`, leaving trailing slash
760 function getFilenamePath (const fn
: AnsiString): AnsiString;
765 if (Length(fn
) = 0) then begin result
:= './'; exit
; end;
766 if (fn
[Length(fn
)] = '/') or (fn
[Length(fn
)] = '\') then begin result
:= fn
; exit
; end;
771 if (ch
= '/') or (ch
= '\') then begin result
:= Copy(fn
, 1, pos
); exit
; end;
774 result
:= './'; // no path -> current dir
778 // ends with '/' or '\'?
779 function isFilenamePath (const fn
: AnsiString): Boolean;
781 if (Length(fn
) = 0) then
787 result
:= (fn
[Length(fn
)] = '/') or (fn
[Length(fn
)] = '\');
792 // strips extra trailing slashes in `path, and extra leading slashes in `fn`
793 // will add slash to `path`, even if `fn` is empty!
794 function filenameConcat (const path
, fn
: AnsiString): AnsiString;
799 while (pos
<= Length(fn
)) and ((fn
[pos
] = '/') or (fn
[pos
] = '\')) do Inc(pos
);
801 if (Length(result
) > 0) and ((result
[Length(result
)] <> '/') and (result
[Length(result
)] <> '\')) then result
+= '/';
802 if (pos
<= Length(fn
)) then
804 result
+= Copy(fn
, pos
, Length(fn
)-pos
+1);
805 //FIXME: make this faster!
806 while (Length(result
) > 0) and ((result
[Length(result
)] = '/') or (result
[Length(result
)] = '\')) do
808 Delete(result
, Length(result
), 1);
810 if (fn
[Length(fn
)] = '/') or (fn
[Length(fn
)] = '\') then result
+= '/';
815 function hasWadExtension (const fn
: AnsiString): Boolean;
819 ext
:= getFilenameExt(fn
);
820 result
:= StrEquCI1251(ext
, '.wad') or StrEquCI1251(ext
, '.pk3') or StrEquCI1251(ext
, '.zip') or StrEquCI1251(ext
, '.dfz');
824 function addWadExtension (const fn
: AnsiString): AnsiString;
827 if not hasWadExtension(result
) then result
:= result
+'.wad';
830 function isWadData (data
: Pointer; len
: LongWord): Boolean;
836 ((len
> 3) and (p
[0] = 'P') and (p
[1] = 'K') and (p
[2] = #03) and (p
[3] = #04)) or
837 ((len
> 3) and (p
[0] = 'P') and (p
[1] = 'K') and (p
[2] = #05) and (p
[3] = #06)) or
839 ((len
> 3) and (p
[0] = 'P') and (p
[1] = 'A') and (p
[2] = 'C') and (p
[3] = 'K')) or
840 ((len
> 3) and (p
[0] = 'S') and (p
[1] = 'P') and (p
[2] = 'A') and (p
[3] = 'K')) or
842 ((len
> 5) and (p
[0] = 'D') and (p
[1] = 'F') and (p
[2] = 'W') and (p
[3] = 'A') and (p
[4] = 'D') and (p
[5] = #01))
846 function isWadPath (const fn
: AnsiString): Boolean;
853 while (pos
<= Length(fn
)) do
855 if (fn
[pos
] = ':') then
857 if (Length(fn
)-pos
< 1) then break
;
858 if (pos
-4 > 1) and (fn
[pos
-4] = '.') and ((fn
[pos
+1] = '\') or (fn
[pos
+1] = '/')) then
860 s
:= Copy(fn
, pos
-4, 4);
861 if StrEquCI1251(s
, '.wad') or StrEquCI1251(s
, '.pk3') or StrEquCI1251(s
, '.zip') or StrEquCI1251(s
, '.dfz') then
873 function int64ToStrComma (i
: Int64): AnsiString;
878 f
:= Length(result
)+1;
881 Dec(f
, 3); Insert(',', result
, f
);
886 function upcase1251 (ch
: AnsiChar): AnsiChar; inline;
890 if (ch
>= 'a') and (ch
<= 'z') then Dec(ch
, 32);
894 if (ch
>= #224) and (ch
<= #255) then
901 #184, #186, #191: Dec(ch
, 16);
910 function locase1251 (ch
: AnsiChar): AnsiChar; inline;
914 if (ch
>= 'A') and (ch
<= 'Z') then Inc(ch
, 32);
918 if (ch
>= #192) and (ch
<= #223) then
925 #168, #170, #175: Inc(ch
, 16);
934 function strEquCI1251 (const s0
, s1
: AnsiString): Boolean;
939 if length(s0
) <> length(s1
) then exit
;
940 for i
:= 1 to length(s0
) do if UpCase1251(s0
[i
]) <> UpCase1251(s1
[i
]) then exit
;
945 function toLowerCase1251 (const s
: AnsiString): AnsiString;
952 if (ch
<> LoCase1251(ch
)) then
955 SetLength(result
, Length(s
));
956 for f
:= 1 to Length(s
) do result
[f
] := LoCase1251(s
[f
]);
965 // ////////////////////////////////////////////////////////////////////////// //
969 function utf8CodeLen (ch
: Word): Integer;
971 if ch
< $80 then begin result
:= 1; exit
; end;
972 if (ch
and $FE) = $FC then begin result
:= 6; exit
; end;
973 if (ch
and $FC) = $F8 then begin result
:= 5; exit
; end;
974 if (ch
and $F8) = $F0 then begin result
:= 4; exit
; end;
975 if (ch
and $F0) = $E0 then begin result
:= 3; exit
; end;
976 if (ch
and $E0) = $C0 then begin result
:= 2; exit
; end;
977 result
:= -1; // invalid
981 function utf8Valid (const s
: AnsiString): Boolean;
987 while pos
<= length(s
) do
989 len
:= utf8CodeLen(Byte(s
[pos
]));
990 if len
< 1 then exit
; // invalid sequence start
991 if pos
+len
-1 > length(s
) then exit
; // out of chars in string
994 // check other sequence bytes
997 if (Byte(s
[pos
]) and $C0) <> $80 then exit
;
1006 // ////////////////////////////////////////////////////////////////////////// //
1008 uni2wint
: array [128..255] of Word = (
1009 $0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
1010 $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
1011 $00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
1012 $00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
1013 $0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
1014 $0420,$0421,$0422,$0423,$0424,$0425,$0426,$0427,$0428,$0429,$042A,$042B,$042C,$042D,$042E,$042F,
1015 $0430,$0431,$0432,$0433,$0434,$0435,$0436,$0437,$0438,$0439,$043A,$043B,$043C,$043D,$043E,$043F,
1016 $0440,$0441,$0442,$0443,$0444,$0445,$0446,$0447,$0448,$0449,$044A,$044B,$044C,$044D,$044E,$044F
1020 function decodeUtf8Char (s
: AnsiString; var pos
: Integer): AnsiChar;
1024 (* The following encodings are valid, except for the 5 and 6 byte
1028 * 1110xxxx 10xxxxxx 10xxxxxx
1029 * 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
1030 * 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
1031 * 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
1034 if pos
> length(s
) then exit
;
1038 if b
< $80 then begin result
:= AnsiChar(b
); exit
; end;
1040 // mask out unused bits
1041 if (b
and $FE) = $FC then b
:= b
and $01
1042 else if (b
and $FC) = $F8 then b
:= b
and $03
1043 else if (b
and $F8) = $F0 then b
:= b
and $07
1044 else if (b
and $F0) = $E0 then b
:= b
and $0F
1045 else if (b
and $E0) = $C0 then b
:= b
and $1F
1046 else exit
; // invalid utf8
1049 while pos
<= length(s
) do
1052 if (c
and $C0) <> $80 then break
; // no more
1054 b
:= b
or (c
and $3F);
1059 for c
:= 128 to 255 do if uni2wint
[c
] = b
then begin result
:= AnsiChar(c
and $FF); exit
; end;
1064 function utf8to1251 (s
: AnsiString): AnsiString;
1068 if not utf8Valid(s
) then begin result
:= s
; exit
; end;
1070 while pos
<= length(s
) do
1072 if Byte(s
[pos
]) >= $80 then break
;
1075 if pos
> length(s
) then begin result
:= s
; exit
; end; // nothing to do here
1078 while pos
<= length(s
) do result
:= result
+decodeUtf8Char(s
, pos
);
1082 // ////////////////////////////////////////////////////////////////////////// //
1083 // `pathname` will be modified if path is valid
1084 // `lastIsDir` should be `true` if we are searching for directory
1085 // nobody cares about shitdoze, so i'll use the same code path for it
1086 function findFileCI (var pathname
: AnsiString; lastIsDir
: Boolean=false): Boolean;
1090 newname
: AnsiString = '';
1091 curname
: AnsiString;
1097 result
:= (length(npt
) > 0);
1098 if (length(npt
) > 0) and ((npt
[1] = '/') or (npt
[1] = '\')) then newname
:= '/';
1099 while length(npt
) > 0 do
1101 // remove trailing slashes
1102 while (length(npt
) > 0) and ((npt
[1] = '/') or (npt
[1] = '\')) do Delete(npt
, 1, 1);
1103 if length(npt
) = 0 then break
;
1106 while (length(npt
) > 0) and (npt
[1] <> '/') and (npt
[1] <> '\') do
1108 curname
:= curname
+npt
[1];
1111 // remove trailing slashes again
1112 while (length(npt
) > 0) and ((npt
[1] = '/') or (npt
[1] = '\')) do Delete(npt
, 1, 1);
1113 wantdir
:= lastIsDir
or (length(npt
) > 0); // do we want directory here?
1114 //writeln(Format('npt=[%s]; newname=[%s]; curname=[%s]; wantdir=%d', [npt, newname, curname, Integer(wantdir)]));
1115 // try the easiest case first
1116 attr
:= FileGetAttr(newname
+curname
);
1119 if wantdir
= ((attr
and faDirectory
) <> 0) then
1122 newname
:= newname
+curname
;
1123 if wantdir
then newname
:= newname
+'/';
1127 //writeln(Format('npt=[%s]; newname=[%s]; curname=[%s]; wantdir=%d', [npt, newname, curname, Integer(wantdir)]));
1128 // alas, either not found, or invalid attributes
1131 if FindFirst(newname
+'*', faAnyFile
, sr
) = 0 then
1133 if (wantdir
= ((sr
.attr
and faDirectory
) <> 0)) and StrEquCI1251(sr
.name
, curname
) then
1136 newname
:= newname
+sr
.name
;
1137 if wantdir
then newname
:= newname
+'/';
1141 until FindNext(sr
) <> 0;
1145 if not foundher
then begin newname
:= ''; result
:= false; break
; end;
1147 if result
then pathname
:= newname
;
1151 const fileExtensions
: array [0..6] of AnsiString = ('.dfz', '.wad', '.dfwad', '.pk3', '.pak', '.zip', '.dfzip');
1153 function isWadNamesEqu (wna
, wnb
: AnsiString): Boolean;
1155 ext
, newExt
: AnsiString;
1158 result
:= StrEquCI1251(wna
, wnb
);
1159 if result
then exit
;
1161 ext
:= getFilenameExt(wna
);
1163 for newExt
in fileExtensions
do if (StrEquCI1251(ext
, newExt
)) then begin found
:= true; break
; end;
1164 if not found
then exit
;
1166 ext
:= getFilenameExt(wnb
);
1168 for newExt
in fileExtensions
do if (StrEquCI1251(ext
, newExt
)) then begin found
:= true; break
; end;
1169 if not found
then exit
;
1170 wna
:= forceFilenameExt(wna
, '');
1171 wnb
:= forceFilenameExt(wnb
, '');
1172 result
:= StrEquCI1251(wna
, wnb
);
1175 function findDiskWad (fname
: AnsiString): AnsiString;
1177 origExt
: AnsiString = '';
1178 newExt
: AnsiString = '';
1181 //writeln('findDiskWad00: fname=<', fname, '>');
1182 if (findFileCI(fname
)) then begin result
:= fname
; exit
; end;
1183 origExt
:= getFilenameExt(fname
);
1184 fname
:= forceFilenameExt(fname
, '');
1185 //writeln(' findDiskWad01: fname=<', fname, '>; origExt=<', origExt, '>');
1186 for newExt
in fileExtensions
do
1188 //writeln(' findDiskWad02: fname=<', fname, '>; origExt=<', origExt, '>; newExt=<', newExt, '>');
1189 if (StrEquCI1251(newExt
, origExt
)) then
1194 result
:= fname
+newExt
;
1195 if (findFileCI(result
)) then exit
;
1201 function openDiskFileRO (pathname
: AnsiString): TStream
;
1203 if not findFileCI(pathname
) then raise EFileNotFoundException
.Create('can''t open file "'+pathname
+'"');
1204 result
:= TFileStream
.Create(pathname
, fmOpenRead
or {fmShareDenyWrite}fmShareDenyNone
);
1207 function createDiskFile (pathname
: AnsiString): TStream
;
1211 path
:= ExtractFilePath(pathname
);
1212 if length(path
) > 0 then
1214 if not findFileCI(path
, true) then raise Exception
.Create('can''t create file "'+pathname
+'"');
1216 result
:= TFileStream
.Create(path
+ExtractFileName(pathname
), fmCreate
);
1220 procedure writeIntegerLE (st
: TStream
; vp
: Pointer; size
: Integer);
1221 {$IFDEF ENDIAN_LITTLE}
1223 st
.writeBuffer(vp
^, size
);
1229 p
:= PByte(vp
)+size
-1;
1232 st
.writeBuffer(p
^, 1);
1239 procedure writeIntegerBE (st
: TStream
; vp
: Pointer; size
: Integer);
1240 {$IFDEF ENDIAN_LITTLE}
1244 p
:= PByte(vp
)+size
-1;
1247 st
.writeBuffer(p
^, 1);
1254 st
.writeBuffer(vp
^, size
);
1258 procedure writeSign (st
: TStream
; const sign
: AnsiString);
1260 if (Length(sign
) > 0) then st
.WriteBuffer(sign
[1], Length(sign
));
1263 function checkSign (st
: TStream
; const sign
: AnsiString): Boolean;
1265 buf
: packed array[0..7] of AnsiChar;
1269 if (Length(sign
) > 0) then
1271 if (Length(sign
) <= 8) then
1273 st
.ReadBuffer(buf
[0], Length(sign
));
1274 for f
:= 1 to Length(sign
) do if (buf
[f
-1] <> sign
[f
]) then exit
;
1278 for f
:= 1 to Length(sign
) do
1280 st
.ReadBuffer(buf
[0], 1);
1281 if (buf
[0] <> sign
[f
]) then exit
;
1288 procedure writeInt (st
: TStream
; v
: Byte); overload
; begin writeIntegerLE(st
, @v
, 1); end;
1289 procedure writeInt (st
: TStream
; v
: ShortInt); overload
; begin writeIntegerLE(st
, @v
, 1); end;
1290 procedure writeInt (st
: TStream
; v
: Word); overload
; begin writeIntegerLE(st
, @v
, 2); end;
1291 procedure writeInt (st
: TStream
; v
: SmallInt); overload
; begin writeIntegerLE(st
, @v
, 2); end;
1292 procedure writeInt (st
: TStream
; v
: LongWord); overload
; begin writeIntegerLE(st
, @v
, 4); end;
1293 procedure writeInt (st
: TStream
; v
: LongInt); overload
; begin writeIntegerLE(st
, @v
, 4); end;
1294 procedure writeInt (st
: TStream
; v
: Int64); overload
; begin writeIntegerLE(st
, @v
, 8); end;
1295 procedure writeInt (st
: TStream
; v
: UInt64); overload
; begin writeIntegerLE(st
, @v
, 8); end;
1297 procedure writeIntBE (st
: TStream
; v
: Byte); overload
; begin writeIntegerBE(st
, @v
, 1); end;
1298 procedure writeIntBE (st
: TStream
; v
: ShortInt); overload
; begin writeIntegerBE(st
, @v
, 1); end;
1299 procedure writeIntBE (st
: TStream
; v
: Word); overload
; begin writeIntegerBE(st
, @v
, 2); end;
1300 procedure writeIntBE (st
: TStream
; v
: SmallInt); overload
; begin writeIntegerBE(st
, @v
, 2); end;
1301 procedure writeIntBE (st
: TStream
; v
: LongWord); overload
; begin writeIntegerBE(st
, @v
, 4); end;
1302 procedure writeIntBE (st
: TStream
; v
: LongInt); overload
; begin writeIntegerBE(st
, @v
, 4); end;
1303 procedure writeIntBE (st
: TStream
; v
: Int64); overload
; begin writeIntegerBE(st
, @v
, 8); end;
1304 procedure writeIntBE (st
: TStream
; v
: UInt64); overload
; begin writeIntegerBE(st
, @v
, 8); end;
1306 procedure writeBool (st
: TStream
; b
: Boolean); begin writeInt(st
, Byte(b
)); end;
1307 function readBool (st
: TStream
): Boolean; begin result
:= (readByte(st
) <> 0); end;
1310 procedure writeStr (st
: TStream
; const str
: AnsiString; maxlen
: LongWord=65535);
1312 if (Length(str
) > maxlen
) then raise XStreamError
.Create('string too long');
1313 if (maxlen
<= 65535) then writeInt(st
, Word(Length(str
))) else writeInt(st
, LongWord(Length(str
)));
1314 if (Length(str
) > 0) then st
.WriteBuffer(str
[1], Length(str
));
1317 function readStr (st
: TStream
; maxlen
: LongWord=65535): AnsiString;
1322 if (maxlen
<= 65535) then len
:= readWord(st
) else len
:= Integer(readLongWord(st
));
1323 if (len
< 0) or (len
> maxlen
) then raise XStreamError
.Create('string too long');
1326 SetLength(result
, len
);
1327 st
.ReadBuffer(result
[1], len
);
1332 procedure readIntegerLE (st
: TStream
; vp
: Pointer; size
: Integer);
1333 {$IFDEF ENDIAN_LITTLE}
1335 st
.readBuffer(vp
^, size
);
1341 p
:= PByte(vp
)+size
-1;
1344 st
.readBuffer(p
^, 1);
1351 procedure readIntegerBE (st
: TStream
; vp
: Pointer; size
: Integer);
1352 {$IFDEF ENDIAN_LITTLE}
1356 p
:= PByte(vp
)+size
-1;
1359 st
.readBuffer(p
^, 1);
1366 st
.readBuffer(vp
^, size
);
1370 function readByte (st
: TStream
): Byte; begin readIntegerLE(st
, @result
, 1); end;
1371 function readShortInt (st
: TStream
): ShortInt; begin readIntegerLE(st
, @result
, 1); end;
1372 function readWord (st
: TStream
): Word; begin readIntegerLE(st
, @result
, 2); end;
1373 function readSmallInt (st
: TStream
): SmallInt; begin readIntegerLE(st
, @result
, 2); end;
1374 function readLongWord (st
: TStream
): LongWord; begin readIntegerLE(st
, @result
, 4); end;
1375 function readLongInt (st
: TStream
): LongInt; begin readIntegerLE(st
, @result
, 4); end;
1376 function readInt64 (st
: TStream
): Int64; begin readIntegerLE(st
, @result
, 8); end;
1377 function readUInt64 (st
: TStream
): UInt64; begin readIntegerLE(st
, @result
, 8); end;
1379 function readByteBE (st
: TStream
): Byte; begin readIntegerBE(st
, @result
, 1); end;
1380 function readShortIntBE (st
: TStream
): ShortInt; begin readIntegerBE(st
, @result
, 1); end;
1381 function readWordBE (st
: TStream
): Word; begin readIntegerBE(st
, @result
, 2); end;
1382 function readSmallIntBE (st
: TStream
): SmallInt; begin readIntegerBE(st
, @result
, 2); end;
1383 function readLongWordBE (st
: TStream
): LongWord; begin readIntegerBE(st
, @result
, 4); end;
1384 function readLongIntBE (st
: TStream
): LongInt; begin readIntegerBE(st
, @result
, 4); end;
1385 function readInt64BE (st
: TStream
): Int64; begin readIntegerBE(st
, @result
, 8); end;
1386 function readUInt64BE (st
: TStream
): UInt64; begin readIntegerBE(st
, @result
, 8); end;
1389 // ////////////////////////////////////////////////////////////////////////// //
1390 function nmin (a
, b
: Byte): Byte; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1391 function nmin (a
, b
: ShortInt): ShortInt; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1392 function nmin (a
, b
: Word): Word; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1393 function nmin (a
, b
: SmallInt): SmallInt; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1394 function nmin (a
, b
: LongWord): LongWord; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1395 function nmin (a
, b
: LongInt): LongInt; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1396 function nmin (a
, b
: Int64): Int64; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1397 function nmin (a
, b
: UInt64): UInt64; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1398 function nmin (a
, b
: Single): Single; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1399 function nmin (a
, b
: Double): Double; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1400 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
1401 function nmin (a
, b
: Extended
): Extended
; inline; overload
; begin if (a
< b
) then result
:= a
else result
:= b
; end;
1404 function nmax (a
, b
: Byte): Byte; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1405 function nmax (a
, b
: ShortInt): ShortInt; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1406 function nmax (a
, b
: Word): Word; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1407 function nmax (a
, b
: SmallInt): SmallInt; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1408 function nmax (a
, b
: LongWord): LongWord; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1409 function nmax (a
, b
: LongInt): LongInt; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1410 function nmax (a
, b
: Int64): Int64; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1411 function nmax (a
, b
: UInt64): UInt64; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1412 function nmax (a
, b
: Single): Single; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1413 function nmax (a
, b
: Double): Double; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1414 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
1415 function nmax (a
, b
: Extended
): Extended
; inline; overload
; begin if (a
> b
) then result
:= a
else result
:= b
; end;
1418 function nclamp (v
, a
, b
: Byte): Byte; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1419 function nclamp (v
, a
, b
: ShortInt): ShortInt; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1420 function nclamp (v
, a
, b
: Word): Word; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1421 function nclamp (v
, a
, b
: SmallInt): SmallInt; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1422 function nclamp (v
, a
, b
: LongWord): LongWord; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1423 function nclamp (v
, a
, b
: LongInt): LongInt; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1424 function nclamp (v
, a
, b
: Int64): Int64; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1425 function nclamp (v
, a
, b
: UInt64): UInt64; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1426 function nclamp (v
, a
, b
: Single): Single; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1427 function nclamp (v
, a
, b
: Double): Double; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1428 {$IF DEFINED(CPU386) OR DEFINED(CPUAMD64)}
1429 function nclamp (v
, a
, b
: Extended
): Extended
; inline; overload
; begin if (v
< a
) then result
:= a
else if (v
> b
) then result
:= b
else result
:= v
; end;
1432 // ////////////////////////////////////////////////////////////////////////// //
1434 function snprintf (buf
: PAnsiChar; bufsize
: SizeUInt
; const fmt
: PAnsiChar): SizeUInt
; cdecl; varargs
; external 'msvcrt.dll' name
'_snprintf';
1436 function snprintf (buf
: PAnsiChar; bufsize
: SizeUInt
; const fmt
: PAnsiChar): SizeUInt
; cdecl; varargs
; external 'libc' name
'snprintf';
1441 procedure conwriter (constref buf; len: SizeUInt);
1447 if (len < 1) then exit;
1451 if (len > 255) then slen := 255 else slen := Integer(len);
1452 Move(b^, ss[1], len);
1453 ss[0] := AnsiChar(slen);
1462 function formatstrf (const fmt
: AnsiString; const args
: array of const; writerCB
: TFormatStrFCallback
=nil): AnsiString;
1464 PadSpaces
: AnsiString = ' ';
1465 PadZeroes
: AnsiString = '00000000000000000000000000000000000000000000000000000000000000000000000';
1467 curarg
: Integer = 0; // current arg in `args`
1468 sign
, fmtch
: AnsiChar;
1470 width
, prec
: Integer; // width and precision
1471 spos
, epos
: Integer;
1473 strbuf
: array[0..256] of AnsiChar;
1475 fmtbuf
: array[0..256] of AnsiChar;
1479 ccname
: ShortString;
1481 procedure writer (constref buf
; len
: SizeUInt
);
1487 if (len
< 1) then exit
;
1489 if assigned(writerCB
) then
1497 if (len
> 255) then slen
:= 255 else slen
:= Integer(len
);
1498 Move(b
^, ss
[1], slen
);
1499 ss
[0] := AnsiChar(slen
);
1507 procedure xwrite (const s
: AnsiString);
1509 if (Length(s
) > 0) then writer(PAnsiChar(s
)^, Length(s
));
1512 procedure putFmtChar (ch
: AnsiChar);
1514 fmtbuf
[fmtblen
] := ch
;
1518 procedure putFmtInt (n
: Integer);
1522 len
:= snprintf(@fmtbuf
[fmtblen
], Length(fmtbuf
)-fmtblen
, '%d', n
);
1523 if (len
> 0) then Inc(fmtblen
, len
);
1526 procedure buildCFormat (const pfx
: AnsiString='');
1531 for f
:= 1 to Length(pfx
) do putFmtChar(pfx
[f
]);
1533 if (sign
<> ' ') then putFmtChar(sign
);
1534 if (width
>= 0) then
1536 if (zeropad
) then putFmtChar('0');
1545 fmtbuf
[fmtblen
] := #0;
1548 procedure writeStrBuf ();
1550 if (strblen
> 0) then writer(strbuf
, strblen
);
1553 function i642str (n
: Int64; hex
: Boolean; hexup
: Boolean): PAnsiChar;
1558 if (n
= $8000000000000000) then
1560 if hex
then snprintf(@strbuf
[0], Length(strbuf
), '-8000000000000000')
1561 else snprintf(@strbuf
[0], Length(strbuf
), '-9223372036854775808');
1562 result
:= @strbuf
[0];
1567 if neg
then n
:= -n
;
1568 xpos
:= High(strbuf
);
1569 strbuf
[xpos
] := #0; Dec(xpos
);
1573 strbuf
[xpos
] := AnsiChar((n
mod 10)+48);
1579 if (n
mod 16 > 9) then
1581 strbuf
[xpos
] := AnsiChar((n
mod 16)+48+7);
1582 if not hexup
then Inc(strbuf
[xpos
], 32);
1584 else strbuf
[xpos
] := AnsiChar((n
mod 16)+48);
1589 if neg
then begin strbuf
[xpos
] := '-'; Dec(xpos
); end;
1590 result
:= @strbuf
[xpos
+1];
1594 function ui642str (n
: UInt64; hex
: Boolean; hexup
: Boolean): PAnsiChar;
1598 xpos
:= High(strbuf
);
1599 strbuf
[xpos
] := #0; Dec(xpos
);
1603 strbuf
[xpos
] := AnsiChar((n
mod 10)+48);
1609 if (n
mod 16 > 9) then
1611 strbuf
[xpos
] := AnsiChar((n
mod 16)+48+7);
1612 if not hexup
then Inc(strbuf
[xpos
], 32);
1614 else strbuf
[xpos
] := AnsiChar((n
mod 16)+48);
1619 result
:= @strbuf
[xpos
+1];
1622 procedure indent (len
: Integer);
1628 if (len
> Length(PadSpaces
)) then ilen
:= Length(PadSpaces
) else ilen
:= len
;
1629 writer(PAnsiChar(PadSpaces
)^, ilen
);
1634 procedure indent0 (len
: Integer);
1640 if (len
> Length(PadZeroes
)) then ilen
:= Length(PadZeroes
) else ilen
:= len
;
1641 writer(PAnsiChar(PadZeroes
)^, ilen
);
1649 while (spos
<= Length(fmt
)) do
1651 // print literal part
1653 while (epos
<= Length(fmt
)) and (fmt
[epos
] <> '%') do Inc(epos
);
1654 // output literal part
1655 if (epos
> spos
) then
1657 if (epos
> Length(fmt
)) then
1659 writer((PAnsiChar(fmt
)+spos
-1)^, epos
-spos
);
1662 if (epos
+1 > Length(fmt
)) then Inc(epos
) // last percent, output literally
1663 else if (fmt
[epos
+1] = '%') then // special case
1666 writer((PAnsiChar(fmt
)+spos
-1)^, epos
-spos
);
1671 writer((PAnsiChar(fmt
)+spos
-1)^, epos
-spos
);
1676 // check if we have argument for this format string
1677 if (curarg
> High(args
)) then
1679 xwrite('<OUT OF ARGS>');
1680 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1684 if (spos
+1 > Length(fmt
)) then break
; // oops
1685 assert(fmt
[spos
] = '%');
1687 // parse format; check for sign
1688 if (fmt
[spos
] = '-') then begin sign
:= '-'; Inc(spos
); end
1689 else if (fmt
[spos
] = '+') then begin sign
:= '+'; Inc(spos
); end
1692 if (spos
> Length(fmt
)) then begin xwrite('<INVALID FORMAT>'); break
; end;
1693 if (sign
<> ' ') or ((fmt
[spos
] >= '0') and (fmt
[spos
] <= '9')) then
1695 if (fmt
[spos
] < '0') or (fmt
[spos
] > '9') then begin xwrite('<INVALID FORMAT>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1696 zeropad
:= (fmt
[spos
] = '0');
1698 while (spos
<= Length(fmt
)) do
1701 if (ch
< '0') or (ch
> '9') then break
;
1702 width
:= width
*10+Integer(ch
)-48;
1713 if (spos
<= Length(fmt
)) and (fmt
[spos
] = '.') then
1716 if (spos
> Length(fmt
)) then begin xwrite('<INVALID FORMAT>'); break
; end;
1717 if (fmt
[spos
] < '0') or (fmt
[spos
] > '9') then begin xwrite('<INVALID FORMAT>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1719 while (spos
<= Length(fmt
)) do
1722 if (ch
< '0') or (ch
> '9') then break
;
1723 prec
:= prec
*10+Integer(ch
)-48;
1728 if (spos
> Length(fmt
)) then begin xwrite('<INVALID FORMAT>'); break
; end;
1731 // done parsing format, check for valid format chars
1732 if not (fmtch
in ['s','u','d','x','X','p','f','g','c']) then begin xwrite('<INVALID FORMAT CHAR>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1733 // now write formatted string
1734 case args
[curarg
].VType
of
1735 vtInteger
: // args[curarg].VInteger
1737 if not (fmtch
in ['s','u','d','x','X']) then begin xwrite('<INVALID FORMAT CHAR>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1738 if (fmtch
= 's') then fmtch
:= 'd';
1740 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], args
[curarg
].VInteger
);
1743 vtBoolean
: // args[curarg].VBoolean
1748 if args
[curarg
].VBoolean
then strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], 'true')
1749 else strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], 'false');
1755 if args
[curarg
].VBoolean
then strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], AnsiChar('t'))
1756 else strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], AnsiChar('f'));
1762 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], Integer(args
[curarg
].VBoolean
));
1767 xwrite('<INVALID FORMAT CHAR>');
1768 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1772 vtChar
: // args[curarg].VChar
1778 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], args
[curarg
].VChar
);
1784 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], Integer(args
[curarg
].VChar
));
1789 xwrite('<INVALID FORMAT CHAR>');
1790 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1794 //vtWideChar: begin end; // args[curarg].VWideChar (WideChar)
1795 vtExtended
: // args[curarg].VExtended^
1801 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], Double(args
[curarg
].VExtended
^));
1807 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], Double(args
[curarg
].VExtended
^));
1813 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], Integer(trunc(args
[curarg
].VExtended
^)));
1819 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], LongWord(trunc(args
[curarg
].VExtended
^)));
1824 xwrite('<INVALID FORMAT CHAR>');
1825 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1829 vtString
: // args[curarg].VString^ (PShortString)
1831 if (sign
<> '-') then indent(width
-Length(args
[curarg
].VString
^));
1832 writer(args
[curarg
].VString
^[1], Length(args
[curarg
].VString
^));
1833 if (sign
= '-') then indent(width
-Length(args
[curarg
].VString
^));
1835 vtPointer
: // args[curarg].VPointer
1840 if (width
< 8) then width
:= 8;
1843 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], PtrUInt(args
[curarg
].VPointer
));
1846 'u', 'd', 'x', 'p', 'X':
1848 if (fmtch
= 'p') then fmtch
:= 'x';
1849 if (width
< 8) then width
:= 8;
1852 strblen
:= snprintf(@strbuf
[0], Length(strbuf
), @fmtbuf
[0], PtrUInt(args
[curarg
].VPointer
));
1857 xwrite('<INVALID FORMAT CHAR>');
1858 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1862 vtPChar
: // args[curarg].VPChar
1863 if (args
[curarg
].VPChar
= nil) then
1865 if (sign
<> '-') then indent(width
-3);
1867 if (sign
= '-') then indent(width
-3);
1872 while (args
[curarg
].VPChar
[pclen
] <> #0) do Inc(pclen
);
1873 if (sign
<> '-') then indent(width
-pclen
);
1874 writer(args
[curarg
].VPChar
^, pclen
);
1875 if (sign
= '-') then indent(width
-pclen
);
1877 vtObject
: // args[curarg].VObject.Classname (TObject)
1879 if (args
[curarg
].VObject
<> nil) then ccname
:= args
[curarg
].VObject
.Classname
else ccname
:= '<nil>';
1880 if (sign
<> '-') then indent(width
-Length(ccname
));
1882 if (sign
= '-') then indent(width
-Length(ccname
));
1884 vtClass
: // args[curarg].VClass.Classname (TClass)
1886 if (args
[curarg
].VClass
<> nil) then ccname
:= args
[curarg
].VClass
.Classname
else ccname
:= '<nil>';
1887 if (sign
<> '-') then indent(width
-Length(ccname
));
1889 if (sign
= '-') then indent(width
-Length(ccname
));
1891 //vtPWideChar: begin end; // args[curarg].VPWideChar (PWideChar)
1892 vtAnsiString
: // AnsiString(args[curarg].VAnsiString) (Pointer)
1894 if (sign
<> '-') then indent(width
-Length(AnsiString(args
[curarg
].VAnsiString
)));
1895 xwrite(AnsiString(args
[curarg
].VAnsiString
));
1896 if (sign
= '-') then indent(width
-Length(AnsiString(args
[curarg
].VAnsiString
)));
1898 //vtCurrency: begin end; // args[curarg].VCurrency (PCurrency)
1899 //vtVariant: begin end; // args[curarg].VVariant^ (PVariant)
1900 //vtInterface: begin end; // args[curarg].VInterface (Pointer);
1901 //vtWideString: begin end; // args[curarg].VWideString (Pointer);
1902 vtInt64
: // args[curarg].VInt64^ (PInt64)
1905 's','d','u': pc
:= i642str(args
[curarg
].VInt64
^, false, false);
1906 'x': pc
:= i642str(args
[curarg
].VInt64
^, true, false);
1907 'X': pc
:= i642str(args
[curarg
].VInt64
^, true, true);
1908 else begin xwrite('<INVALID FORMAT CHAR>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1911 while (pc
[pclen
] <> #0) do Inc(pclen
);
1912 if (sign
<> '-') and (width
> pclen
) then
1916 if (pc
[0] = '-') or (pc
[0] = '+') then
1919 indent0(width
-pclen
-1);
1925 indent0(width
-pclen
);
1930 indent(width
-pclen
);
1934 if (sign
= '-') then indent(width
-pclen
);
1936 vtQWord
: // args[curarg].VQWord^ (PQWord)
1939 's','d','u': pc
:= ui642str(args
[curarg
].VInt64
^, false, false);
1940 'x': pc
:= ui642str(args
[curarg
].VInt64
^, true, false);
1941 'X': pc
:= ui642str(args
[curarg
].VInt64
^, true, true);
1942 else begin xwrite('<INVALID FORMAT CHAR>'); writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1); break
; end;
1945 while (pc
[pclen
] <> #0) do Inc(pclen
);
1946 if (sign
<> '-') then begin if zeropad
then indent0(width
-pclen
) else indent(width
-pclen
); end;
1948 if (sign
= '-') then indent(width
-pclen
);
1952 xwrite('<INVALID TYPE>');
1953 writer((PAnsiChar(fmt
)+spos
-1)^, Length(fmt
)-spos
+1);
1966 i64: Int64 = -$A000000000;
1967 ui64: UInt64 = $A000000000;
1969 writef(conwriter, 'test int:<%s> bool:<%s:%02d:%c> bool:<%s:%02d:%c>; char:<%2s;%c;%d>!'#10, [42, true, true, true, false, false, false, 'A', 'A', 'A']);
1970 writef(conwriter, 'test float:<%s;%u;%f;%g>'#10, [666.6942, 666.6942, 666.6942, 666.6942]);
1973 writef(conwriter, 'test ss:<%5s;%040s>'#10, [ss, ss]);
1974 writef(conwriter, 'test ls:<%5s;%040s>'#10, [ls, ls]);
1975 writef(conwriter, 'test pointer:<%s;%x;%p>'#10, [@ss, @ss, @ss]);
1976 writef(conwriter, 'test i64:<%s;%x;%015d;%u;%X>'#10, [i64, i64, i64, i64, i64]);
1977 writef(conwriter, 'test ui64:<%s;%x;%15d;%015u;%X>'#10, [ui64, ui64, ui64, ui64, ui64]);