summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3d692f4)
raw | patch | inline | side by side (parent: 3d692f4)
author | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Wed, 27 Sep 2023 06:33:16 +0000 (09:33 +0300) | ||
committer | DeaDDooMER <deaddoomer@deadsoftware.ru> | |
Wed, 27 Sep 2023 06:33:16 +0000 (09:33 +0300) |
src/flexui/sdlcarcass.pas | patch | blob | history | |
src/shared/envvars.pas | patch | blob | history | |
src/shared/utils.pas | patch | blob | history |
index 247229b88af696d43b157e587f0cdcf09410604d..0e2c91b30c7a089c7c7d66fb4e20c6fad4cef4b0 100644 (file)
implementation
uses
- SysUtils, Classes,
+ SysUtils, Classes, utils,
{$INCLUDE ../nogl/noGLuses.inc}
{$IF DEFINED(LINUX) OR DEFINED(ANDROID)}
unixtype, linux
end;
-// ////////////////////////////////////////////////////////////////////////// //
-var
- wc2shitmap: array[0..65535] of AnsiChar;
- wc2shitmapInited: Boolean = false;
-
-
-// ////////////////////////////////////////////////////////////////////////// //
-const
- cp1251: array[0..127] of Word = (
- $0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
- $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
- $00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
- $00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
- $0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
- $0420,$0421,$0422,$0423,$0424,$0425,$0426,$0427,$0428,$0429,$042A,$042B,$042C,$042D,$042E,$042F,
- $0430,$0431,$0432,$0433,$0434,$0435,$0436,$0437,$0438,$0439,$043A,$043B,$043C,$043D,$043E,$043F,
- $0440,$0441,$0442,$0443,$0444,$0445,$0446,$0447,$0448,$0449,$044A,$044B,$044C,$044D,$044E,$044F
- );
-
-
-procedure initShitMap ();
-var
- f: Integer;
-begin
- for f := 0 to High(wc2shitmap) do wc2shitmap[f] := '?';
- for f := 0 to 127 do wc2shitmap[f] := AnsiChar(f);
- for f := 0 to 127 do wc2shitmap[cp1251[f]] := AnsiChar(f+128);
- wc2shitmapInited := true;
-end;
-
-
-function wchar2win (wc: WideChar): AnsiChar; inline;
-begin
- if not wc2shitmapInited then initShitMap();
- if (LongWord(wc) > 65535) then result := '?' else result := wc2shitmap[LongWord(wc)];
-end;
-
-
// ////////////////////////////////////////////////////////////////////////// //
function fuiOnSDLEvent (var ev: TSDL_Event): Boolean;
var
diff --git a/src/shared/envvars.pas b/src/shared/envvars.pas
index a76315f42d40f9ddfc84f2d8ecead137bcd2cd2d..a15feef0e1dc37e4cddde1038c004a390d33a92b 100644 (file)
--- a/src/shared/envvars.pas
+++ b/src/shared/envvars.pas
{$ELSE}
Result := '';
{$ENDIF}
- (* invalidate username with non-cp1251 symbols *)
- i := Low(Result);
- while i <= High(Result) do
- begin
- if Result[i] = '?' then
- Result := '';
- Inc(i)
- end
+ // Remove non 1251 chars
+ Result := StringReplace(Result, Invalid1251Char, '', [rfReplaceAll]);
end;
end.
diff --git a/src/shared/utils.pas b/src/shared/utils.pas
index c0ba824a9615188a05e25f4b0ac835f22bef2ffd..4116c3fdd6c374433aab0ca37c506dab6a5a453e 100644 (file)
--- a/src/shared/utils.pas
+++ b/src/shared/utils.pas
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
+{$DEFINE D2DF_FORCE_OBJFPC}
{$INCLUDE a_modes.inc}
unit utils;
SSArray = array of ShortString;
+const
+ Invalid1251Char = #$98; // Undefined 1251 char, we use it as replacement for unknown chars
+ InvalidUnicodeCodepoint = $FFFD; // Unicode REPLACEMENT CHARACTER used to replace an unknown, unrecognised, or unrepresentable character
+
const wadExtensions: array [0..6] of AnsiString = (
'.dfz',
'.wad',
type
TUtf8DecoderFast = packed record
public
- const Replacement = $FFFD; // replacement char for invalid unicode
+ const Replacement = InvalidUnicodeCodepoint; // replacement char for invalid unicode
const Accept = 0;
const Reject = 12;
// necessarily cleared).
// last name assumed to be a file, not directory (unless `lastIsDir` flag is set).
function findFileCI (var pathname: AnsiString; lastIsDir: Boolean=false): Boolean;
+function findFileCIStr (pathname: AnsiString): AnsiString;
// findDiskWad tries to find the wad file using common wad extensions
// (see `wadExtensions` array).
implementation
-uses
- xstreams;
+//uses
+// xstreams;
// ////////////////////////////////////////////////////////////////////////// //
procedure CopyMemory (Dest: Pointer; Src: Pointer; Len: LongWord); inline;
const
cp1251: array[0..127] of Word = (
$0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
- $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$FFFD,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
+ $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,InvalidUnicodeCodepoint,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
$00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
$00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
$0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
var
f: Integer;
begin
- for f := 0 to High(wc2shitmap) do wc2shitmap[f] := '?';
+ for f := 0 to High(wc2shitmap) do wc2shitmap[f] := Invalid1251Char;
for f := 0 to 127 do wc2shitmap[f] := AnsiChar(f);
for f := 0 to 127 do wc2shitmap[cp1251[f]] := AnsiChar(f+128);
wc2shitmapInited := true;
function wchar2win (wc: WideChar): AnsiChar; inline;
begin
if not wc2shitmapInited then initShitMap();
- if (LongWord(wc) > 65535) then result := '?' else result := wc2shitmap[LongWord(wc)];
+ if (LongWord(wc) > 65535) then result := Invalid1251Char else result := wc2shitmap[LongWord(wc)];
end;
function utf8Encode (code: Integer): AnsiString;
begin
- if (code < 0) or (code > $10FFFF) then begin result := '?'; exit; end;
+ if (code < 0) or (code > $10FFFF) then
+ code := InvalidUnicodeCodepoint;
if (code <= $7f) then
begin
result := AnsiChar(code and $ff);
result += AnsiChar($80 or ((code shr 12) and $3F));
result += AnsiChar($80 or ((code shr 6) and $3F));
result += AnsiChar($80 or (code and $3F));
- end
- else
- begin
- result := '?';
end;
end;
function IsValid1251 (ch: Word): Boolean;
begin
- result := ((ch = Ord('?')) or (wc2shitmap[ch] <> '?')) and (wc2shitmap[ch] <> #$98)
+ result := wc2shitmap[ch] <> Invalid1251Char
end;
function IsPrintable1251 (ch: AnsiChar): Boolean;
begin
- result := (ch >= #32) and (ch <> #127) and (ch <> #$98)
+ result := (ch >= #32) and (ch <> #127) and (ch <> Invalid1251Char)
end;
const
uni2wint: array [128..255] of Word = (
$0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
- $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
+ $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,InvalidUnicodeCodepoint,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
$00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
$00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
$0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
* 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
* 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
*)
- result := '?';
+ result := Invalid1251Char;
if pos > length(s) then exit;
b := Byte(s[pos]);
end;
+function findFileCIStr (pathname: AnsiString): AnsiString;
+begin
+ Result := pathname;
+ if findFileCI(Result) = False then
+ Result := pathname;
+end;
+
+
function isWadNamesEqu (wna, wnb: AnsiString): Boolean;
var
ext, newExt: AnsiString;
@@ -1457,7 +1468,7 @@ function readBool (st: TStream): Boolean; begin result := (readByte(st) <> 0); e
procedure writeStr (st: TStream; const str: AnsiString; maxlen: LongWord=65535);
begin
- if (Length(str) > maxlen) then raise XStreamError.Create('string too long');
+ if (Length(str) > maxlen) then raise EStreamError.Create('string too long');
if (maxlen <= 65535) then writeInt(st, Word(Length(str))) else writeInt(st, LongWord(Length(str)));
if (Length(str) > 0) then st.WriteBuffer(str[1], Length(str));
end;
begin
result := '';
if (maxlen <= 65535) then len := readWord(st) else len := Integer(readLongWord(st));
- if (len < 0) or (len > maxlen) then raise XStreamError.Create('string too long');
+ if (len < 0) or (len > maxlen) then raise EStreamError.Create('string too long');
if (len > 0) then
begin
SetLength(result, len);