hedgewars/uUtils.pas
author unC0Rr
Fri, 19 Apr 2024 17:45:05 +0200
changeset 16011 52b51d92e88d
parent 15968 91c487e7d11d
child 15975 2146cb7be36f
permissions -rw-r--r--
Fix build
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     1
(*
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10690
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     4
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     8
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    12
 * GNU General Public License for more details.
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    13
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    14
 * You should have received a copy of the GNU General Public License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10104
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    17
 *)
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    18
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    20
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    21
unit uUtils;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    22
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    23
interface
9295
f8819c3dde54 Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents: 9080
diff changeset
    24
uses uTypes, uFloat;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    25
11824
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
    26
// returns s with whitespaces (chars <= #32) removed form both ends
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
    27
function Trim(s: shortstring) : shortstring;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
    28
15875
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
    29
function CountChar(s : shortstring; c: char) : LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    30
procedure SplitBySpace(var a, b: shortstring);
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
    31
procedure SplitByChar(var a, b: shortstring; c: char);
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
    32
procedure SplitByCharA(var a, b: ansistring; c: char);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    33
13980
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
    34
procedure EscapeCharA(var a: ansistring; e: char);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
    35
procedure UnEscapeCharA(var a: ansistring; e: char);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
    36
15961
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
    37
procedure ReplaceChars(var a: shortstring; c1, c2: char);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
    38
procedure ReplaceCharsA(var a: ansistring; c1, c2: char);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
    39
11826
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
    40
function ExtractFileDir(s: shortstring) : shortstring;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
    41
function ExtractFileName(s: shortstring) : shortstring;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
    42
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    43
function  EnumToStr(const en : TGearType) : shortstring; overload;
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
    44
function  EnumToStr(const en : TVisualGearType) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    45
function  EnumToStr(const en : TSound) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    46
function  EnumToStr(const en : TAmmoType) : shortstring; overload;
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
    47
function  EnumToStr(const en : TStatInfoType) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    48
function  EnumToStr(const en : THogEffect) : shortstring; overload;
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
    49
function  EnumToStr(const en : TCapGroup) : shortstring; overload;
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
    50
function  EnumToStr(const en : TSprite) : shortstring; overload;
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
    51
function  EnumToStr(const en : TMapGen) : shortstring; overload;
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
    52
function  EnumToStr(const en : TWorldEdge) : shortstring; overload;
15968
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
    53
function  EnumToStr(const en : TMsgStrId) : shortstring; overload;
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
    54
function  EnumToStr(const en : TGoalStrId) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    55
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    56
function  Min(a, b: LongInt): LongInt; inline;
10562
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
    57
function  MinD(a, b: double) : double; inline;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    58
function  Max(a, b: LongInt): LongInt; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    59
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    60
function  IntToStr(n: LongInt): shortstring;
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    61
function  StrToInt(s: shortstring): LongInt;
13879
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
    62
//function  StrToInt(s: shortstring; var success: boolean): LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    63
function  FloatToStr(n: hwFloat): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    64
9295
f8819c3dde54 Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents: 9080
diff changeset
    65
function  DxDy2Angle(const _dY, _dX: hwFloat): real; inline;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    66
function  DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    67
function  DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
    68
function  DxDy2AttackAnglef(const _dY, _dX: extended): LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    69
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    70
procedure SetLittle(var r: hwFloat);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    71
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    72
function  Str2PChar(const s: shortstring): PChar;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    73
function  DecodeBase64(s: shortstring): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    74
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    75
function  isPowerOf2(i: Longword): boolean;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    76
function  toPowerOf2(i: Longword): Longword; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    77
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    78
function  endian(independent: LongWord): LongWord; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    79
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
    80
function  CheckCJKFont(s: ansistring; font: THWFont): THWFont;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
    81
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    82
procedure AddFileLog(s: shortstring);
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
    83
procedure AddFileLogRaw(s: pchar); cdecl;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    84
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
    85
function  CheckNoTeamOrHH: boolean; inline;
4398
36d7e4b6ca81 Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents: 4385
diff changeset
    86
4403
unc0rr
parents: 4398
diff changeset
    87
function  GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt;
unc0rr
parents: 4398
diff changeset
    88
function  GetLaunchY(at: TAmmoType; angle: LongInt): LongInt;
unc0rr
parents: 4398
diff changeset
    89
12735
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
    90
function CalcWorldWrap(X, radius: LongInt): LongInt;
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
    91
14895
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
    92
procedure updateVolumeDelta(precise: boolean);
14896
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
    93
procedure updateCursorMovementDelta(precise: boolean; dir: LongInt; var cursorVar: LongInt);
14895
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
    94
11770
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
    95
function read1stLn(filePath: shortstring): shortstring;
11775
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
    96
function readValueFromINI(key, filePath: shortstring): shortstring;
11770
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
    97
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    98
{$IFNDEF PAS2C}
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    99
procedure Write(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   100
procedure WriteLn(var f: textfile; s: shortstring);
10080
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   101
function StrLength(s: PChar): Longword;
10690
c3b73dc33294 grmlgrml
sheepluva
parents: 10605
diff changeset
   102
procedure SetLengthA(var s: ansistring; len: Longword);
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   103
{$ENDIF}
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   104
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   105
function  isPhone: Boolean; inline;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   106
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   107
{$IFDEF IPHONEOS}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   108
procedure startLoadingIndicator; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   109
procedure stopLoadingIndicator; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   110
procedure saveFinishedSynching; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   111
function  isApplePhone: Boolean; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   112
procedure AudioServicesPlaySystemSound(num: LongInt); cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   113
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   114
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   115
function  sanitizeForLog(s: shortstring): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   116
function  sanitizeCharForLog(c: char): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   117
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
   118
procedure initModule(isNotPreview: boolean);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   119
procedure freeModule;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   120
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   121
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   122
implementation
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   123
uses {$IFNDEF PAS2C}typinfo, SDLh, {$ENDIF}Math, uConsts, uVariables, uPhysFSLayer, uDebug;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   124
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   125
{$IFDEF DEBUGFILE}
11632
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   126
var logFile: PFSFile;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   127
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   128
    logMutex: PSDL_mutex; // mutex for debug file
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   129
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   130
{$ENDIF}
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   131
var CharArray: array[0..255] of Char;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   132
11824
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   133
// All leading/tailing characters with ordinal values less than or equal to 32 (a space) are stripped.
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   134
function Trim(s: shortstring) : shortstring;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   135
var len, left, right: integer;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   136
begin
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   137
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   138
len:= Length(s);
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   139
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   140
if len = 0 then
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   141
    exit(s);
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   142
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   143
// find first non-whitespace
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   144
left:= 1;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   145
while left <= len do
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   146
    begin
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   147
    if s[left] > #32 then
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   148
        break;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   149
    inc(left);
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   150
    end;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   151
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   152
// find last non-whitespace
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   153
right:= len;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   154
while right >= 1 do
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   155
    begin
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   156
    if s[right] > #32 then
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   157
        break;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   158
    dec(right);
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   159
    end;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   160
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   161
// string is whitespace only
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   162
if left > right then
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   163
    exit('');
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   164
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   165
// get string without surrounding whitespace
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   166
len:= right - left + 1;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   167
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   168
Trim:= copy(s, left, len);
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   169
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   170
end;
3f1f8f79fcdb implement Trim() in uUtils
sheepluva
parents: 11788
diff changeset
   171
11826
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   172
function GetLastSlashPos(var s: shortString) : integer;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   173
var lslash: integer;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   174
    c: char;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   175
begin
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   176
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   177
// find last slash
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   178
lslash:= Length(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   179
while lslash >= 1 do
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   180
    begin
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   181
    c:= s[lslash];
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   182
    if (c = #47) or (c = #92) then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   183
        break;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   184
    dec(lslash); end;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   185
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   186
GetLastSlashPos:= lslash;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   187
end;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   188
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   189
function ExtractFileDir(s: shortstring) : shortstring;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   190
var lslash: byte;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   191
begin
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   192
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   193
if Length(s) = 0 then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   194
    exit(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   195
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   196
lslash:= GetLastSlashPos(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   197
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   198
if lslash <= 1 then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   199
    exit('');
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   200
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   201
s[0]:= char(lslash - 1);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   202
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   203
ExtractFileDir:= s;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   204
end;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   205
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   206
function ExtractFileName(s: shortstring) : shortstring;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   207
var lslash, len: byte;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   208
begin
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   209
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   210
len:= Length(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   211
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   212
if len = 0 then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   213
    exit(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   214
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   215
lslash:= GetLastSlashPos(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   216
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   217
if lslash < 1 then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   218
    exit(s);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   219
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   220
if lslash = len then
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   221
    exit('');
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   222
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   223
len:= len - lslash;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   224
ExtractFilename:= copy(s, lslash + 1, len);
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   225
end;
7654e2357934 implement ExtraftFileDir and ExtractFileName in uUtils
sheepluva
parents: 11824
diff changeset
   226
15875
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   227
function CountChar(s : shortstring; c: char): LongInt;
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   228
var i, res : LongInt;
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   229
begin
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   230
    res:= 0;
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   231
    for i:= 1 to Length(s) do
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   232
    begin
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   233
        if s[i] = c then
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   234
           Inc(res)
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   235
    end;
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   236
    CountChar:= res
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   237
end;
d7b53d08ad9c Add FastForward/StopFastForward (/ff hh:mm:ss, /sff) chat commands to fast forward to a specific timestamp in a demo
S.D.
parents: 14948
diff changeset
   238
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   239
procedure SplitBySpace(var a,b: shortstring);
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   240
begin
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   241
SplitByChar(a,b,' ');
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   242
end;
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   243
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   244
procedure SplitByChar(var a, b: shortstring; c : char);
13089
c9cdbf630447 Stop SplitByChar also lowercasing the entire string. Fixes bug 581.
Wuzzy <Wuzzy2@mail.ru>
parents: 12805
diff changeset
   245
var i: LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   246
begin
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   247
i:= Pos(c, a);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   248
if i > 0 then
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   249
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   250
    b:= copy(a, i + 1, Length(a) - i);
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   251
    a[0]:= char(Pred(i))
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   252
    {$IFDEF PAS2C}
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   253
       a[i] := 0;
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   254
    {$ENDIF}
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   255
    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   256
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   257
    b:= '';
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   258
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   259
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   260
{$IFNDEF PAS2C}
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   261
procedure SetLengthA(var s: ansistring; len: Longword);
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   262
begin
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   263
    SetLength(s, len)
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   264
end;
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   265
{$ENDIF}
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   266
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   267
procedure SplitByCharA(var a, b: ansistring; c: char);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   268
var i: LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   269
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   270
i:= Pos(c, a);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   271
if i > 0 then
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   272
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   273
    b:= copy(a, i + 1, Length(a) - i);
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   274
    SetLengthA(a, Pred(i));
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   275
    end else b:= '';
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   276
end; { SplitByCharA }
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   277
13980
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   278
// In the ansistring a, escapes all instances of
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   279
// '\e' with an ASCII ESC character, where e is
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   280
// a char chosen by you.
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   281
procedure EscapeCharA(var a: ansistring; e: char);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   282
var i: LongInt;
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   283
begin
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   284
repeat
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   285
    i:= Pos(e, a);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   286
    if (i > 1) and (a[i - 1] = '\') then
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   287
        begin
14080
af203fb307a7 Typecast the ASCII ESC char
Wuzzy <Wuzzy2@mail.ru>
parents: 14072
diff changeset
   288
        a[i]:= Char($1B); // ASCII ESC
13980
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   289
        Delete(a, i - 1, 1);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   290
        end
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   291
    else
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   292
        break;
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   293
until (i <= 0);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   294
end; { EscapeCharA }
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   295
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   296
// Unescapes a previously escaped string and inserts
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   297
// e back into the string. e is a char chosen by you.
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   298
procedure UnEscapeCharA(var a: ansistring; e: char);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   299
var i: LongInt;
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   300
begin
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   301
repeat
14080
af203fb307a7 Typecast the ASCII ESC char
Wuzzy <Wuzzy2@mail.ru>
parents: 14072
diff changeset
   302
    i:= Pos(Char($1B), a); // ASCII ESC
13980
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   303
    if (i > 0) then
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   304
        begin
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   305
        a[i]:= e;
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   306
        end
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   307
    else
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   308
        break;
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   309
until (i <= 0);
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   310
end; { UnEscapeCharA }
3183c4dc6e53 Allow to escape | and : character in engine translation files
Wuzzy <Wuzzy2@mail.ru>
parents: 13879
diff changeset
   311
15961
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   312
// Replace all characters c1 with c2 in shortstring a
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   313
procedure ReplaceChars(var a: shortstring; c1, c2: char);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   314
var i: LongInt;
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   315
begin
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   316
repeat
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   317
    i:= Pos(c1, a);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   318
    if (i > 0) then
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   319
        a[i]:= c2;
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   320
until (i <= 0);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   321
end; { ReplaceChars }
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   322
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   323
// Replace all characters c1 with c2 in antistring a
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   324
procedure ReplaceCharsA(var a: ansistring; c1, c2: char);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   325
var i: LongInt;
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   326
begin
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   327
repeat
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   328
    i:= Pos(c1, a);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   329
    if (i > 0) then
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   330
        a[i]:= c2;
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   331
until (i <= 0);
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   332
end; { ReplaceCharsA }
4ad8dd66d9d5 Fix pas2C build fail in uLocale
Wuzzy <Wuzzy@disroot.org>
parents: 15875
diff changeset
   333
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   334
function EnumToStr(const en : TGearType) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   335
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   336
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   337
end;
8838
aa2ffd427f6a strip PAS2C, old WEB symbols and outdated pas2c sources from default branch, all c-related development is done on the webgl branch
koda
parents: 8575
diff changeset
   338
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   339
function EnumToStr(const en : TVisualGearType) : shortstring; overload;
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   340
begin
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   341
EnumToStr:= GetEnumName(TypeInfo(TVisualGearType), ord(en))
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   342
end;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   343
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   344
function EnumToStr(const en : TSound) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   345
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   346
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   347
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   348
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   349
function EnumToStr(const en : TAmmoType) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   350
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   351
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   352
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   353
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   354
function EnumToStr(const en : TStatInfoType) : shortstring; overload;
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   355
begin
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   356
EnumToStr:= GetEnumName(TypeInfo(TStatInfoType), ord(en))
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   357
end;
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   358
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   359
function EnumToStr(const en: THogEffect) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   360
begin
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   361
EnumToStr := GetEnumName(TypeInfo(THogEffect), ord(en))
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   362
end;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   363
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   364
function EnumToStr(const en: TCapGroup) : shortstring; overload;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   365
begin
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   366
EnumToStr := GetEnumName(TypeInfo(TCapGroup), ord(en))
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   367
end;
8838
aa2ffd427f6a strip PAS2C, old WEB symbols and outdated pas2c sources from default branch, all c-related development is done on the webgl branch
koda
parents: 8575
diff changeset
   368
10280
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
   369
function EnumToStr(const en: TSprite) : shortstring; overload;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
   370
begin
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
   371
EnumToStr := GetEnumName(TypeInfo(TSprite), ord(en))
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
   372
end;
762c256552e9 WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents: 10131
diff changeset
   373
10603
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
   374
function EnumToStr(const en: TMapGen) : shortstring; overload;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
   375
begin
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
   376
EnumToStr := GetEnumName(TypeInfo(TMapGen), ord(en))
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
   377
end;
bda5c7caf396 switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents: 10595
diff changeset
   378
11879
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
   379
function EnumToStr(const en: TWorldEdge) : shortstring; overload;
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
   380
begin
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
   381
EnumToStr := GetEnumName(TypeInfo(TWorldEdge), ord(en))
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
   382
end;
c6eafb6f2735 Add WorldEdge to Lua API to expose/change world edge type
Wuzzy <almikes@aol.com>
parents: 11826
diff changeset
   383
15968
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   384
function EnumToStr(const en: TMsgStrId) : shortstring; overload;
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   385
begin
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   386
EnumToStr := GetEnumName(TypeInfo(TMsgStrId), ord(en))
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   387
end;
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   388
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   389
function EnumToStr(const en: TGoalStrId) : shortstring; overload;
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   390
begin
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   391
EnumToStr := GetEnumName(TypeInfo(TGoalStrId), ord(en))
91c487e7d11d Add GetEngineString function to expose some string IDs to Lua
Wuzzy <Wuzzy@disroot.org>
parents: 15961
diff changeset
   392
end;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   393
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   394
function Min(a, b: LongInt): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   395
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   396
if a < b then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   397
    Min:= a
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   398
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   399
    Min:= b
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   400
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   401
10562
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   402
function MinD(a, b: double): double;
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   403
begin
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   404
if a < b then
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   405
    MinD:= a
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   406
else
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   407
    MinD:= b
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   408
end;
3388822b3914 some more fixing
sheepluva
parents: 10560
diff changeset
   409
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   410
function Max(a, b: LongInt): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   411
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   412
if a > b then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   413
    Max:= a
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   414
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   415
    Max:= b
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   416
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   417
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   418
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   419
function IntToStr(n: LongInt): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   420
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   421
str(n, IntToStr)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   422
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   423
13821
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   424
// Convert string to longint, with error checking.
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   425
// Success will be set to false when conversion failed.
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   426
// See documentation on Val procedure for syntax of s
13879
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   427
//function StrToInt(s: shortstring; var success: boolean): LongInt;
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   428
//var Code: Word;
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   429
//begin
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   430
//val(s, StrToInt, Code);
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   431
//success:= Code = 0;
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   432
//end;
13821
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   433
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   434
// Convert string to longint, without error checking
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   435
function StrToInt(s: shortstring): LongInt;
94d0d1ab7a0e Rewrite StrToInt code in uStore; get rid of "try" and "except" keywords
Wuzzy <Wuzzy2@mail.ru>
parents: 13312
diff changeset
   436
begin
13879
6b2c87490f0a drop the error checked StrToInt as non-critical - pas2c did not implement it.
nemo
parents: 13877
diff changeset
   437
val(s, StrToInt);
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   438
end;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   439
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   440
function FloatToStr(n: hwFloat): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   441
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   442
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   443
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   444
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   445
9295
f8819c3dde54 Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents: 9080
diff changeset
   446
function DxDy2Angle(const _dY, _dX: hwFloat): real; inline;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   447
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   448
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   449
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   450
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   451
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   452
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   453
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   454
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   455
const _16divPI: Extended = 16/pi;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   456
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   457
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   458
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   459
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   460
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   461
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   462
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   463
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   464
const MaxAngleDivPI: Extended = cMaxAngle/pi;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   465
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   466
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   467
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   468
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   469
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   470
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   471
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
   472
function DxDy2AttackAnglef(const _dY, _dX: extended): LongInt; inline;
5151
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5130
diff changeset
   473
begin
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
   474
DxDy2AttackAnglef:= trunc(arctan2(_dY, _dX) * (cMaxAngle/pi))
5151
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5130
diff changeset
   475
end;
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5130
diff changeset
   476
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   477
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   478
procedure SetLittle(var r: hwFloat);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   479
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   480
r:= SignAs(cLittle, r)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   481
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   482
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   483
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   484
function isPowerOf2(i: Longword): boolean;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   485
begin
4981
0c60ade27a0a Optimize check (not like it is called much, just ffs; not tested)
unc0rr
parents: 4976
diff changeset
   486
isPowerOf2:= (i and (i - 1)) = 0
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   487
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   488
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   489
function toPowerOf2(i: Longword): Longword;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   490
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   491
toPowerOf2:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   492
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   493
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   494
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   495
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   496
function DecodeBase64(s: shortstring): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   497
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
10560
9f09196d92a6 fix some pas2c related issues
sheepluva
parents: 10505
diff changeset
   498
var i, t, c: LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   499
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   500
c:= 0;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   501
for i:= 1 to Length(s) do
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   502
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   503
    t:= Pos(s[i], table);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   504
    if s[i] = '=' then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   505
        inc(c);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   506
    if t > 0 then
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   507
        s[i]:= char(t - 1)
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   508
    else
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   509
        s[i]:= #0
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   510
    end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   511
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   512
i:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   513
t:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   514
while i <= length(s) do
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   515
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   516
    DecodeBase64[t    ]:= char((byte(s[i    ]) shl 2) or (byte(s[i + 1]) shr 4));
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   517
    DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2));
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   518
    DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3])      ));
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   519
    inc(t, 3);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   520
    inc(i, 4)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   521
    end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   522
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   523
if c < 3 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   524
    t:= t - c;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   525
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   526
DecodeBase64[0]:= char(t - 1)
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   527
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   528
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   529
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   530
function Str2PChar(const s: shortstring): PChar;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   531
var i :Integer ;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   532
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   533
   for i:= 1 to Length(s) do
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   534
      begin
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   535
      CharArray[i - 1] := s[i];
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   536
      end;
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   537
   CharArray[Length(s)]:= #0;
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   538
   Str2PChar:= @(CharArray[0]);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   539
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   540
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   541
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   542
function endian(independent: LongWord): LongWord; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   543
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   544
{$IFDEF ENDIAN_LITTLE}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   545
endian:= independent;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   546
{$ELSE}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   547
endian:= (((independent and $FF000000) shr 24) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   548
          ((independent and $00FF0000) shr 8) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   549
          ((independent and $0000FF00) shl 8) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   550
          ((independent and $000000FF) shl 24))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   551
{$ENDIF}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   552
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   553
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   554
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   555
procedure AddFileLog(s: shortstring);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   556
begin
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   557
// s:= s;
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
   558
{$IFDEF DEBUGFILE}
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   559
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   560
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   561
if SDL_LockMutex(logMutex) <> 0 then
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   562
    OutError('Logging mutex could not be locked!', true);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   563
{$ENDIF}
11743
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   564
if logFile <> nil then
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   565
    pfsWriteLn(logFile, inttostr(GameTicks)  + ': ' + s)
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   566
else
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   567
    WriteLn(stdout, inttostr(GameTicks)  + ': ' + s);
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   568
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   569
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   570
if SDL_UnlockMutex(logMutex) <> 0 then
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   571
    OutError('Logging mutex could not be unlocked!', true);
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
   572
{$ENDIF}
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7896
diff changeset
   573
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   574
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   575
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   576
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   577
procedure AddFileLogRaw(s: pchar); cdecl;
14948
f27f00fabc0d Don't use Str2PChar twice in a row
Wuzzy <Wuzzy2@mail.ru>
parents: 14946
diff changeset
   578
var msgLine: PChar;
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   579
begin
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   580
s:= s;
9966
01e198990211 pas2c engine now writes debug log
unc0rr
parents: 9950
diff changeset
   581
{$IFNDEF PAS2C}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   582
{$IFDEF DEBUGFILE}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   583
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   584
if SDL_LockMutex(logMutex) <> 0 then
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   585
    OutError('Logging mutex could not be locked!', true);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   586
{$ENDIF}
14948
f27f00fabc0d Don't use Str2PChar twice in a row
Wuzzy <Wuzzy2@mail.ru>
parents: 14946
diff changeset
   587
msgLine:= Str2PChar(IntToStr(GameTicks) + ': ');
14946
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   588
if (logFile <> nil) then
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   589
    begin
14948
f27f00fabc0d Don't use Str2PChar twice in a row
Wuzzy <Wuzzy2@mail.ru>
parents: 14946
diff changeset
   590
    pfsWriteRaw(logFile, msgLine, StrLen(msgLine));
14946
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   591
    pfsWriteRaw(logFile, s, StrLen(s));
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   592
    end
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   593
else
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   594
    begin
14948
f27f00fabc0d Don't use Str2PChar twice in a row
Wuzzy <Wuzzy2@mail.ru>
parents: 14946
diff changeset
   595
    Write(stdout, msgLine);
14946
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   596
    Flush(stdout);
23fc5022bdea Implement AddFileLogRaw
Wuzzy <Wuzzy2@mail.ru>
parents: 14896
diff changeset
   597
    end;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   598
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   599
if SDL_UnlockMutex(logMutex) <> 0 then
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   600
    OutError('Logging mutex could not be unlocked!', true);
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   601
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   602
{$ENDIF}
9966
01e198990211 pas2c engine now writes debug log
unc0rr
parents: 9950
diff changeset
   603
{$ENDIF}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   604
end;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   605
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   606
function CheckCJKFont(s: ansistring; font: THWFont): THWFont;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   607
var l, i : LongInt;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   608
    u: WideChar;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   609
    tmpstr: array[0..256] of WideChar;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   610
begin
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   611
CheckCJKFont:= font;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   612
5639
ebe9858eb6a3 Removed chinese font
Xeli
parents: 5299
diff changeset
   613
{$IFNDEF MOBILE}
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   614
// remove chinese fonts for now
10116
dd27562b6f21 rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents: 10108
diff changeset
   615
if (font >= CJKfnt16) or (length(s) = 0) then
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   616
{$ENDIF}
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   617
    exit;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   618
10131
4b4a043111f4 - pas2c recognizes typecasts in initialization expressions
unc0rr
parents: 10127
diff changeset
   619
l:= Utf8ToUnicode(PWideChar(@tmpstr), PChar(s), min(length(tmpstr), length(s)))-1;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   620
i:= 0;
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   621
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   622
while i < l do
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   623
    begin
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   624
    u:= tmpstr[i];
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   625
    if (#$1100  <= u) and  (
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   626
                           (u <= #$11FF )  or // Hangul Jamo
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   627
       ((#$2E80  <= u) and (u <= #$2FDF))  or // CJK Radicals Supplement / Kangxi Radicals
8575
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   628
       ((#$2FF0  <= u) and (u <= #$31FF))  or // Ideographic Description Characters / CJK Radicals Supplement / Hiragana / Hangul Compatibility Jamo / Katakana
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   629
       ((#$31C0  <= u) and (u <= #$31EF))  or // CJK Strokes
8575
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   630
       ((#$3200  <= u) and (u <= #$4DBF))  or // Enclosed CJK Letters and Months / CJK Compatibility / CJK Unified Ideographs Extension A / Circled Katakana
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   631
       ((#$4E00  <= u) and (u <= #$9FFF))  or // CJK Unified Ideographs
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   632
       ((#$AC00  <= u) and (u <= #$D7AF))  or // Hangul Syllables
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   633
       ((#$F900  <= u) and (u <= #$FAFF))  or // CJK Compatibility Ideographs
8575
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   634
       ((#$FE30  <= u) and (u <= #$FE4F))  or // CJK Compatibility Forms
14057
1a85afba813d Enable CJK font when using any full/halfwith char (U+FF00 to U+FFEF)
Wuzzy <Wuzzy2@mail.ru>
parents: 13980
diff changeset
   635
       ((#$FF00  <= u) and (u <= #$FFEF)))    // half- and fullwidth characters
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9966
diff changeset
   636
       then
6990
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   637
        begin
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   638
            CheckCJKFont:=  THWFont( ord(font) + ((ord(High(THWFont))+1) div 2) );
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   639
            exit;
40e5af28d026 change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents: 6978
diff changeset
   640
        end;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   641
    inc(i)
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   642
    end;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   643
(* two more to check. pascal WideChar is only 16 bit though
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   644
       ((#$20000 <= u) and (u >= #$2A6DF)) or // CJK Unified Ideographs Extension B
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   645
       ((#$2F800 <= u) and (u >= #$2FA1F)))   // CJK Compatibility Ideographs Supplement *)
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   646
end;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   647
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   648
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   649
function GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   650
begin
12621
d972b31f8881 fix some fpc hints
sheepluva
parents: 12317
diff changeset
   651
at:= at; dir:= dir; angle:= angle; // parameter hint suppression because code below is currently disabled
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   652
GetLaunchX:= 0
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   653
(*
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   654
    if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   655
        GetLaunchX:= sign(dir) * (8 + hwRound(AngleSin(angle) * Ammoz[at].ejectX) + hwRound(AngleCos(angle) * Ammoz[at].ejectY))
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   656
    else
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   657
        GetLaunchX:= 0 *)
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   658
end;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   659
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   660
function GetLaunchY(at: TAmmoType; angle: LongInt): LongInt;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   661
begin
12621
d972b31f8881 fix some fpc hints
sheepluva
parents: 12317
diff changeset
   662
at:= at; angle:= angle; // parameter hint suppression because code below is currently disabled
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   663
GetLaunchY:= 0
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   664
(*
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   665
    if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   666
        GetLaunchY:= hwRound(AngleSin(angle) * Ammoz[at].ejectY) - hwRound(AngleCos(angle) * Ammoz[at].ejectX) - 2
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   667
    else
12317
b81a1d1497c4 Backed out changeset 98824a464230 (disable GetLaunchX/Y again)
Wuzzy <almikes@aol.com>
parents: 12197
diff changeset
   668
        GetLaunchY:= 0*)
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   669
end;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   670
12735
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   671
// Takes an X coordinate and corrects if according to the world edge rules
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   672
// Wrap-around: X will be wrapped
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   673
// Bouncy: X will be kept inside the legal land (taking radius into account)
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   674
// Other world edges: Just returns X
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   675
// radius is a radius (gear radius) tolerance for an appropriate distance from bouncy world edges.
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   676
// Set radius to 0 if you don't care.
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   677
function CalcWorldWrap(X, radius: LongInt): LongInt;
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   678
begin
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   679
    if WorldEdge = weWrap then
12789
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   680
        begin
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   681
        if X < leftX then
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   682
             X:= X + (rightX - leftX)
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   683
        else if X > rightX then
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   684
             X:= X - (rightX - leftX);
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   685
        end
12735
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   686
    else if WorldEdge = weBounce then
12789
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   687
        begin
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   688
        if (X + radius) < leftX then
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   689
            X:= leftX + radius
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   690
        else if (X - radius) > rightX then
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   691
            X:= rightX - radius;
28782e03b8f0 Fix CheckWorldWrap not correctly checking for bounce edge. Also fix teleport @ bounce edge
Wuzzy <Wuzzy2@mail.ru>
parents: 12744
diff changeset
   692
        end;
12735
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   693
    CalcWorldWrap:= X;
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   694
end;
83d62800d215 Move CalcWorldWrap to uUtils.pas
Wuzzy <Wuzzy2@mail.ru>
parents: 12621
diff changeset
   695
4398
36d7e4b6ca81 Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents: 4385
diff changeset
   696
function CheckNoTeamOrHH: boolean;
36d7e4b6ca81 Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents: 4385
diff changeset
   697
begin
36d7e4b6ca81 Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents: 4385
diff changeset
   698
CheckNoTeamOrHH:= (CurrentTeam = nil) or (CurrentHedgehog^.Gear = nil);
36d7e4b6ca81 Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents: 4385
diff changeset
   699
end;
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   700
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   701
{$IFNDEF PAS2C}
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   702
procedure Write(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   703
begin
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   704
system.write(f, s)
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   705
end;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   706
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   707
procedure WriteLn(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   708
begin
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   709
system.writeln(f, s)
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   710
end;
10080
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   711
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   712
function StrLength(s: PChar): Longword;
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   713
begin
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   714
    StrLength:= length(s)
ac51bcb534ef Even more love to pas2c
unc0rr
parents: 10015
diff changeset
   715
end;
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   716
{$ENDIF}
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   717
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   718
// this function is just to determine whether we are running on a limited screen device
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   719
function isPhone: Boolean; inline;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   720
begin
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   721
    isPhone:= false;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   722
{$IFDEF IPHONEOS}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   723
    isPhone:= isApplePhone();
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   724
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   725
{$IFDEF ANDROID}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   726
    //nasty nasty hack. TODO: implement callback to java to have a unified way of determining if it is a tablet
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   727
    if (cScreenWidth < 1000) and (cScreenHeight < 500) then
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   728
        isPhone:= true;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   729
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   730
end;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   731
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   732
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   733
function  sanitizeForLog(s: shortstring): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   734
var i: byte;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   735
    r: shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   736
begin
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   737
    r[0]:= s[0];
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   738
    for i:= 1 to length(s) do
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   739
        if (s[i] < #32) or (s[i] > #127) then
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   740
            r[i]:= '?'
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   741
            else
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   742
            r[i]:= s[i];
10015
4feced261c68 partial merge of the webgl branch
koda
parents: 9998 9966
diff changeset
   743
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   744
    sanitizeForLog:= r
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   745
end;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   746
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   747
function  sanitizeCharForLog(c: char): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   748
var r: shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   749
begin
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   750
    if (c < #32) or (c > #127) then
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   751
        r:= '#' + inttostr(byte(c))
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   752
        else
8841
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   753
        begin
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   754
        // some magic for pas2c
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   755
        r[0]:= #1;
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   756
        r[1]:= c;
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   757
        end;
338f7c2bac2c Fix rendering errors now.
unc0rr
parents: 8833
diff changeset
   758
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   759
    sanitizeCharForLog:= r
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   760
end;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   761
14895
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   762
// helper function for volume change controls
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   763
procedure updateVolumeDelta(precise: boolean);
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   764
begin
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   765
if cVolumeUpKey and (not cVolumeDownKey) then
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   766
    if precise then
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   767
        cVolumeDelta:= 1
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   768
    else
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   769
        cVolumeDelta:= 3
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   770
else if cVolumeDownKey and (not cVolumeUpKey) then
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   771
    if precise then
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   772
        cVolumeDelta:= -1
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   773
    else
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   774
        cVolumeDelta:= -3
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   775
else
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   776
    cVolumeDelta:= 0;
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   777
end;
d4a19bf6687e Fix incorrect handling of slow/precise volume change when it's not your turn
Wuzzy <Wuzzy2@mail.ru>
parents: 14892
diff changeset
   778
14896
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   779
// helper function for cursor movement change controls
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   780
procedure updateCursorMovementDelta(precise: boolean; dir: LongInt; var cursorVar: LongInt);
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   781
begin
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   782
if dir > 0 then
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   783
    if precise then
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   784
        cursorVar:= cameraKeyboardSpeedSlow
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   785
    else
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   786
        cursorVar:= cameraKeyboardSpeed
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   787
else if dir < 0 then
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   788
    if precise then
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   789
        cursorVar:= - cameraKeyboardSpeedSlow
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   790
    else
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   791
        cursorVar:= - cameraKeyboardSpeed
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   792
else
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   793
    cursorVar:= 0;
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   794
end;
63357ed39886 Precise + camera movement keys = move camera at slower
Wuzzy <Wuzzy2@mail.ru>
parents: 14895
diff changeset
   795
11770
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   796
function read1stLn(filePath: shortstring): shortstring;
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   797
var f: pfsFile;
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   798
begin
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   799
    read1stLn:= '';
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   800
    if pfsExists(filePath) then
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   801
        begin
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   802
        f:= pfsOpenRead(filePath);
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   803
        if (not pfsEOF(f)) and allOK then
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   804
            pfsReadLn(f, read1stLn);
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   805
        pfsClose(f);
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   806
        f:= nil;
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   807
        end;
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   808
end;
68f26b6a3a7d move function
sheepluva
parents: 11743
diff changeset
   809
11775
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   810
function readValueFromINI(key, filePath: shortstring): shortstring;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   811
var f: pfsFile;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   812
	s: shortstring;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   813
	i: LongInt;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   814
begin
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   815
    s:= '';
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   816
	readValueFromINI:= '';
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   817
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   818
    if pfsExists(filePath) then
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   819
        begin
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   820
        f:= pfsOpenRead(filePath);
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   821
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   822
        while (not pfsEOF(f)) and allOK do
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   823
			begin pfsReadLn(f, s);
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   824
			if Length(s) = 0 then
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   825
				continue;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   826
			if s[1] = ';' then
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   827
				continue;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   828
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   829
			i:= Pos('=', s);
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   830
			if Trim(Copy(s, 1, Pred(i))) = key then
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   831
				begin
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   832
				Delete(s, 1, i);
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   833
				readValueFromINI:= s;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   834
				end;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   835
			end;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   836
        pfsClose(f);
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   837
        f:= nil;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   838
        end;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   839
end;
ee85798d6974 aggregate music credits into a single file (individual files can still be used to override. useful for .hwp etc.)
sheepluva
parents: 11770
diff changeset
   840
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
   841
procedure initModule(isNotPreview: boolean);
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   842
{$IFDEF DEBUGFILE}
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   843
var logfileBase: shortstring;
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   844
    i: LongInt;
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   845
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   846
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   847
{$IFDEF DEBUGFILE}
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
   848
    if isNotPreview then
7386
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   849
    begin
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   850
        if GameType = gmtRecord then
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   851
            logfileBase:= 'rec'
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   852
        else
10505
03894bfb8bf3 This helps too
unc0rr
parents: 10504
diff changeset
   853
        {$IFDEF PAS2C}
03894bfb8bf3 This helps too
unc0rr
parents: 10504
diff changeset
   854
        logfileBase:= 'game_pas2c';
03894bfb8bf3 This helps too
unc0rr
parents: 10504
diff changeset
   855
        {$ELSE}
03894bfb8bf3 This helps too
unc0rr
parents: 10504
diff changeset
   856
        logfileBase:= 'game';
03894bfb8bf3 This helps too
unc0rr
parents: 10504
diff changeset
   857
        {$ENDIF}
7386
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   858
    end
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   859
    else
10502
a888e649bea2 Fix difference in map generation between fpc and pas2c engine
unc0rr
parents: 10280
diff changeset
   860
        {$IFDEF PAS2C}
10503
unc0rr
parents: 10502
diff changeset
   861
        logfileBase:= 'preview_pas2c';
10502
a888e649bea2 Fix difference in map generation between fpc and pas2c engine
unc0rr
parents: 10280
diff changeset
   862
        {$ELSE}
10504
unc0rr
parents: 10503
diff changeset
   863
        logfileBase:= 'preview';
10502
a888e649bea2 Fix difference in map generation between fpc and pas2c engine
unc0rr
parents: 10280
diff changeset
   864
        {$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   865
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   866
    logMutex:= SDL_CreateMutex();
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   867
    if (logMutex = nil) then
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   868
        OutError('Could not create mutex for logging', true);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   869
{$ENDIF}
11788
0327d20fa4a1 [BUG 66] - Create '/Logs' folder if not exists
antonc27 <antonc27@mail.ru>
parents: 11775
diff changeset
   870
    if not pfsExists('/Logs') then
0327d20fa4a1 [BUG 66] - Create '/Logs' folder if not exists
antonc27 <antonc27@mail.ru>
parents: 11775
diff changeset
   871
        pfsMakeDir('/Logs');
11632
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   872
    // if log is locked, write to the next one
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   873
    i:= 0;
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   874
    while(i < 7) do
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   875
    begin
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   876
        logFile:= pfsOpenWrite('/Logs/' + logfileBase + inttostr(i) + '.log');
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   877
        if logFile <> nil then
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   878
            break;
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   879
        inc(i)
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   880
    end;
11743
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   881
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   882
    if logFile = nil then
eefa04b23c3b fallback to stdout if no writable logfile available
sheepluva
parents: 11632
diff changeset
   883
        WriteLn(stdout, '[WARNING] Could not open log file for writing. Log will be written to stdout!');
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   884
{$ENDIF}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   885
9300
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   886
    //mobile stuff
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   887
{$IFDEF IPHONEOS}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   888
    mobileRecord.PerformRumble:= @AudioServicesPlaySystemSound;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   889
    mobileRecord.GameLoading:= @startLoadingIndicator;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   890
    mobileRecord.GameLoaded:= @stopLoadingIndicator;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   891
    mobileRecord.SaveLoadingEnded:= @saveFinishedSynching;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   892
{$ELSE}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   893
    mobileRecord.PerformRumble:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   894
    mobileRecord.GameLoading:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   895
    mobileRecord.GameLoaded:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   896
    mobileRecord.SaveLoadingEnded:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   897
{$ENDIF}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   898
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   899
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   900
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   901
procedure freeModule;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   902
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   903
{$IFDEF DEBUGFILE}
13312
092adcf707c5 Fix segfault on game halt (if no logfile)
sheepluva
parents: 13089
diff changeset
   904
if logFile <> nil then
092adcf707c5 Fix segfault on game halt (if no logfile)
sheepluva
parents: 13089
diff changeset
   905
    begin
11632
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   906
    pfsWriteLn(logFile, 'halt at ' + inttostr(GameTicks) + ' ticks. TurnTimeLeft = ' + inttostr(TurnTimeLeft));
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   907
    pfsFlush(logFile);
cac74d9075be logging via physfs
unc0rr
parents: 11046
diff changeset
   908
    pfsClose(logFile);
13312
092adcf707c5 Fix segfault on game halt (if no logfile)
sheepluva
parents: 13089
diff changeset
   909
    end
092adcf707c5 Fix segfault on game halt (if no logfile)
sheepluva
parents: 13089
diff changeset
   910
else
092adcf707c5 Fix segfault on game halt (if no logfile)
sheepluva
parents: 13089
diff changeset
   911
    WriteLn(stdout, 'halt at ' + inttostr(GameTicks) + ' ticks. TurnTimeLeft = ' + inttostr(TurnTimeLeft));
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   912
{$IFDEF USE_VIDEO_RECORDING}
14892
444ed0622348 Switch to SDL's mutex for critical section handling
Wuzzy <Wuzzy2@mail.ru>
parents: 14080
diff changeset
   913
    SDL_DestroyMutex(logMutex);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   914
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   915
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   916
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   917
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   918
end.