hedgewars/uUtils.pas
author Periklis Ntanasis <pntanasis@gmail.com>
Thu, 19 Sep 2013 03:49:29 +0300
branchspacecampaign
changeset 9642 8a691e0f117a
parent 9377 48ab6dea8d2f
child 9950 2759212a27de
child 9998 736015b847e3
permissions -rw-r--r--
use consts for TStatInfo enum
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
9080
9b42757d7e71 bump copyright year for Andrey entries
unc0rr
parents: 8838
diff changeset
     3
 * Copyright (c) 2004-2013 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
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
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
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    26
procedure SplitBySpace(var a, b: shortstring);
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
    27
procedure SplitByChar(var a, b: shortstring; c: char);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    28
procedure SplitByChar(var a, b: ansistring; c: char);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    29
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    30
function  EnumToStr(const en : TGearType) : shortstring; overload;
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
    31
function  EnumToStr(const en : TVisualGearType) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    32
function  EnumToStr(const en : TSound) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    33
function  EnumToStr(const en : TAmmoType) : shortstring; overload;
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
    34
function  EnumToStr(const en : TStatInfoType) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    35
function  EnumToStr(const en : THogEffect) : shortstring; overload;
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
    36
function  EnumToStr(const en : TCapGroup) : shortstring; overload;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    37
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    38
function  Min(a, b: LongInt): LongInt; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    39
function  Max(a, b: LongInt): LongInt; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    40
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    41
function  IntToStr(n: LongInt): shortstring;
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    42
function  StrToInt(s: shortstring): LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    43
function  FloatToStr(n: hwFloat): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    44
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
    45
function  DxDy2Angle(const _dY, _dX: hwFloat): real; inline;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    46
function  DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    47
function  DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
    48
function  DxDy2AttackAnglef(const _dY, _dX: extended): LongInt;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    49
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    50
procedure SetLittle(var r: hwFloat);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    51
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    52
function  Str2PChar(const s: shortstring): PChar;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    53
function  DecodeBase64(s: shortstring): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    54
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    55
function  isPowerOf2(i: Longword): boolean;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    56
function  toPowerOf2(i: Longword): Longword; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    57
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    58
function  endian(independent: LongWord): LongWord; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    59
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
    60
function  CheckCJKFont(s: ansistring; font: THWFont): THWFont;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
    61
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    62
procedure AddFileLog(s: shortstring);
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
    63
procedure AddFileLogRaw(s: pchar); cdecl;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    64
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
    65
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
    66
4403
unc0rr
parents: 4398
diff changeset
    67
function  GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt;
unc0rr
parents: 4398
diff changeset
    68
function  GetLaunchY(at: TAmmoType; angle: LongInt): LongInt;
unc0rr
parents: 4398
diff changeset
    69
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    70
procedure Write(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    71
procedure WriteLn(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
    72
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    73
function  isPhone: Boolean; inline;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    74
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    75
{$IFDEF IPHONEOS}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    76
procedure startLoadingIndicator; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    77
procedure stopLoadingIndicator; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    78
procedure saveFinishedSynching; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    79
function  isApplePhone: Boolean; cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    80
procedure AudioServicesPlaySystemSound(num: LongInt); cdecl; external;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    81
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
    82
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
    83
function  sanitizeForLog(s: shortstring): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
    84
function  sanitizeCharForLog(c: char): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
    85
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
    86
procedure initModule(isNotPreview: boolean);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    87
procedure freeModule;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    88
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
    89
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    90
implementation
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
    91
uses typinfo, Math, uConsts, uVariables, SysUtils;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    92
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    93
{$IFDEF DEBUGFILE}
4437
05192cdbce9b un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents: 4403
diff changeset
    94
var f: textfile;
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
    95
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
    96
    logMutex: TRTLCriticalSection; // mutex for debug file
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
    97
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
    98
{$ENDIF}
7028
0f60591f3a16 old typed const moved to their proper unit
koda
parents: 7027
diff changeset
    99
var CharArray: array[byte] of Char;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   100
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   101
procedure SplitBySpace(var a,b: shortstring);
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   102
begin
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   103
SplitByChar(a,b,' ');
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   104
end;
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   105
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   106
// should this include "strtolower()" for the split string?
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   107
procedure SplitByChar(var a, b: shortstring; c : char);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   108
var i, t: LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   109
begin
7191
9419294e5f33 first attempt at implementing support for keys with modifiers
Xeli
parents: 7151
diff changeset
   110
i:= Pos(c, a);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   111
if i > 0 then
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   112
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   113
    for t:= 1 to Pred(i) do
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   114
        if (a[t] >= 'A')and(a[t] <= 'Z') then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   115
            Inc(a[t], 32);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   116
    b:= copy(a, i + 1, Length(a) - i);
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   117
    a[0]:= char(Pred(i))
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   118
    end
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   119
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   120
    b:= '';
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   121
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   122
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   123
procedure SplitByChar(var a, b: ansistring; c: char);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   124
var i: LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   125
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   126
i:= Pos(c, a);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   127
if i > 0 then
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   128
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   129
    b:= copy(a, i + 1, Length(a) - i);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   130
    setlength(a, Pred(i));
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   131
    end else b:= '';
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   132
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   133
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   134
function EnumToStr(const en : TGearType) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   135
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   136
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   137
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
   138
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   139
function EnumToStr(const en : TVisualGearType) : shortstring; overload;
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   140
begin
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   141
EnumToStr:= GetEnumName(TypeInfo(TVisualGearType), ord(en))
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   142
end;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   143
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   144
function EnumToStr(const en : TSound) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   145
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   146
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   147
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   148
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   149
function EnumToStr(const en : TAmmoType) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   150
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   151
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   152
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   153
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   154
function EnumToStr(const en : TStatInfoType) : shortstring; overload;
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   155
begin
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   156
EnumToStr:= GetEnumName(TypeInfo(TStatInfoType), ord(en))
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   157
end;
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9377
diff changeset
   158
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   159
function EnumToStr(const en: THogEffect) : shortstring; overload;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   160
begin
5118
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   161
EnumToStr := GetEnumName(TypeInfo(THogEffect), ord(en))
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   162
end;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   163
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   164
function EnumToStr(const en: TCapGroup) : shortstring; overload;
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   165
begin
9cfdb9bc6140 For mikade - bit more flexibility in script captions
nemo
parents: 4981
diff changeset
   166
EnumToStr := GetEnumName(TypeInfo(TCapGroup), ord(en))
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   167
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
   168
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   169
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   170
function Min(a, b: LongInt): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   171
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   172
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
   173
    Min:= a
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   174
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   175
    Min:= b
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   176
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   177
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   178
function Max(a, b: LongInt): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   179
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   180
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
   181
    Max:= a
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   182
else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   183
    Max:= b
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   184
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   185
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   186
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   187
function IntToStr(n: LongInt): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   188
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   189
str(n, IntToStr)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   190
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   191
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   192
function  StrToInt(s: shortstring): LongInt;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   193
var c: LongInt;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   194
begin
8370
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8204
diff changeset
   195
val(s, StrToInt, c);
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8204
diff changeset
   196
{$IFDEF DEBUGFILE}
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8204
diff changeset
   197
if c <> 0 then
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8204
diff changeset
   198
    writeln(f, 'Error at position ' + IntToStr(c) + ' : ' + s[c])
0c79946e96f8 Fix tons of warnings
martin_bede
parents: 8204
diff changeset
   199
{$ENDIF}
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   200
end;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   201
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   202
function FloatToStr(n: hwFloat): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   203
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   204
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   205
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   206
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   207
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
   208
function DxDy2Angle(const _dY, _dX: hwFloat): real; inline;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   209
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   210
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   211
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   212
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   213
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   214
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   215
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   216
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   217
const _16divPI: Extended = 16/pi;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   218
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   219
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   220
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   221
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   222
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   223
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   224
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   225
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   226
const MaxAngleDivPI: Extended = cMaxAngle/pi;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   227
var dY, dX: Extended;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   228
begin
7547
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   229
dY:= hwFloat2Float(_dY);
6e9c5feb88eb Consistency
nemo
parents: 7191
diff changeset
   230
dX:= hwFloat2Float(_dX);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   231
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   232
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   233
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
   234
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
   235
begin
6894
555a8d8db228 Some more progress with pas2c
unc0rr
parents: 6700
diff changeset
   236
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
   237
end;
cbadb9fa52fc An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents: 5130
diff changeset
   238
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   239
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   240
procedure SetLittle(var r: hwFloat);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   241
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   242
r:= SignAs(cLittle, r)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   243
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   244
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   245
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   246
function isPowerOf2(i: Longword): boolean;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   247
begin
4981
0c60ade27a0a Optimize check (not like it is called much, just ffs; not tested)
unc0rr
parents: 4976
diff changeset
   248
isPowerOf2:= (i and (i - 1)) = 0
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   249
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   250
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   251
function toPowerOf2(i: Longword): Longword;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   252
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   253
toPowerOf2:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   254
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   255
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   256
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   257
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   258
function DecodeBase64(s: shortstring): shortstring;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   259
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   260
var i, t, c: Longword;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   261
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   262
c:= 0;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   263
for i:= 1 to Length(s) do
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   264
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   265
    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
   266
    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
   267
        inc(c);
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   268
    if t > 0 then
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   269
        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
   270
    else
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   271
        s[i]:= #0
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   272
    end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   273
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   274
i:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   275
t:= 1;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   276
while i <= length(s) do
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   277
    begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   278
    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
   279
    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
   280
    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
   281
    inc(t, 3);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   282
    inc(i, 4)
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   283
    end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   284
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   285
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
   286
    t:= t - c;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   287
7074
3f23bd0f2af2 Make uUtils.c compile
unc0rr
parents: 7043
diff changeset
   288
DecodeBase64[0]:= char(t - 1)
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   289
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   290
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   291
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   292
function Str2PChar(const s: shortstring): PChar;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   293
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   294
CharArray:= s;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   295
CharArray[Length(s)]:= #0;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   296
Str2PChar:= @CharArray
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   297
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   298
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   299
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   300
function endian(independent: LongWord): LongWord; inline;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   301
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   302
{$IFDEF ENDIAN_LITTLE}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   303
endian:= independent;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   304
{$ELSE}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   305
endian:= (((independent and $FF000000) shr 24) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   306
          ((independent and $00FF0000) shr 8) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   307
          ((independent and $0000FF00) shl 8) or
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   308
          ((independent and $000000FF) shl 24))
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   309
{$ENDIF}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   310
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   311
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   312
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   313
procedure AddFileLog(s: shortstring);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   314
begin
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
   315
s:= s;
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
   316
{$IFDEF DEBUGFILE}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   317
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   318
EnterCriticalSection(logMutex);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   319
{$ENDIF}
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   320
writeln(f, inttostr(GameTicks)  + ': ' + s);
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   321
flush(f);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   322
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   323
LeaveCriticalSection(logMutex);
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4737
diff changeset
   324
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   325
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   326
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   327
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   328
procedure AddFileLogRaw(s: pchar); cdecl;
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   329
begin
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   330
s:= s;
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   331
{$IFDEF DEBUGFILE}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   332
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   333
EnterCriticalSection(logMutex);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   334
{$ENDIF}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   335
write(f, s);
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   336
flush(f);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   337
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   338
LeaveCriticalSection(logMutex);
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   339
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   340
{$ENDIF}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   341
end;
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   342
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   343
function CheckCJKFont(s: ansistring; font: THWFont): THWFont;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   344
var l, i : LongInt;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   345
    u: WideChar;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   346
    tmpstr: array[0..256] of WideChar;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   347
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
   348
CheckCJKFont:= font;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   349
5639
ebe9858eb6a3 Removed chinese font
Xeli
parents: 5299
diff changeset
   350
{$IFNDEF MOBILE}
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   351
// remove chinese fonts for now
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   352
if (font >= CJKfnt16) or (length(s) = 0) then
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   353
{$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
   354
    exit;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   355
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   356
l:= Utf8ToUnicode(@tmpstr, Str2PChar(s), length(s))-1;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   357
i:= 0;
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   358
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   359
while i < l do
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   360
    begin
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   361
    u:= tmpstr[i];
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   362
    if (#$1100  <= u) and  (
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   363
                           (u <= #$11FF )  or // Hangul Jamo
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   364
       ((#$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
   365
       ((#$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
   366
       ((#$31C0  <= u) and (u <= #$31EF))  or // CJK Strokes
8575
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   367
       ((#$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
   368
       ((#$4E00  <= u) and (u <= #$9FFF))  or // CJK Unified Ideographs
4737
ca03ce7e0c3f Add Hangul to CheckCJK
nemo
parents: 4665
diff changeset
   369
       ((#$AC00  <= u) and (u <= #$D7AF))  or // Hangul Syllables
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   370
       ((#$F900  <= u) and (u <= #$FAFF))  or // CJK Compatibility Ideographs
8575
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   371
       ((#$FE30  <= u) and (u <= #$FE4F))  or // CJK Compatibility Forms
228fbb2a76a4 add hiragana/katakana ranges to CJK check.
nemo
parents: 8498
diff changeset
   372
       ((#$FF66  <= u) and (u <= #$FF9D)))    // halfwidth katakana
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
   373
       then 
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
   374
        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
   375
            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
   376
            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
   377
        end;
4380
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   378
    inc(i)
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   379
    end;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   380
(* two more to check. pascal WideChar is only 16 bit though
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   381
       ((#$20000 <= u) and (u >= #$2A6DF)) or // CJK Unified Ideographs Extension B
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   382
       ((#$2F800 <= u) and (u >= #$2FA1F)))   // CJK Compatibility Ideographs Supplement *)
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   383
end;
b78638b36b89 Introduce uRenderUtils
unC0Rr
parents: 4374
diff changeset
   384
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   386
function GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   387
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   388
GetLaunchX:= 0
4665
fa7ad5f3725f Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.
nemo
parents: 4453
diff changeset
   389
(*
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   390
    if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   391
        GetLaunchX:= sign(dir) * (8 + hwRound(AngleSin(angle) * Ammoz[at].ejectX) + hwRound(AngleCos(angle) * Ammoz[at].ejectY))
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   392
    else
4665
fa7ad5f3725f Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.
nemo
parents: 4453
diff changeset
   393
        GetLaunchX:= 0 *)
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   394
end;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   395
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   396
function GetLaunchY(at: TAmmoType; angle: LongInt): LongInt;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   397
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6444
diff changeset
   398
GetLaunchY:= 0
4665
fa7ad5f3725f Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.
nemo
parents: 4453
diff changeset
   399
(*
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   400
    if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   401
        GetLaunchY:= hwRound(AngleSin(angle) * Ammoz[at].ejectY) - hwRound(AngleCos(angle) * Ammoz[at].ejectX) - 2
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   402
    else
4665
fa7ad5f3725f Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.
nemo
parents: 4453
diff changeset
   403
        GetLaunchY:= 0*)
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   404
end;
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   405
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
   406
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
   407
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
   408
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
   409
end;
4385
f679ffa2dc8c Introduce uGearsRender
unc0rr
parents: 4380
diff changeset
   410
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   411
procedure Write(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   412
begin
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   413
system.write(f, s)
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   414
end;
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   415
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   416
procedure WriteLn(var f: textfile; s: shortstring);
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   417
begin
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   418
system.writeln(f, s)
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   419
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
   420
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   421
8204
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   422
// 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
   423
function isPhone: Boolean; inline;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   424
begin
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   425
    isPhone:= false;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   426
{$IFDEF IPHONEOS}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   427
    isPhone:= isApplePhone();
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   428
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   429
{$IFDEF ANDROID}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   430
    //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
   431
    if (cScreenWidth < 1000) and (cScreenHeight < 500) then
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   432
        isPhone:= true;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   433
{$ENDIF}
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   434
end;
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   435
9a6030d96273 GCI2012: Convert uMobile into a Callback Record
Rowan D
parents: 8095
diff changeset
   436
8498
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   437
function  sanitizeForLog(s: shortstring): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   438
var i: byte;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   439
    r: shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   440
begin
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   441
    r[0]:= s[0];
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   442
    for i:= 1 to length(s) do
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   443
        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
   444
            r[i]:= '?'
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   445
            else
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   446
            r[i]:= s[i];
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   447
            
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   448
    sanitizeForLog:= r
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   449
end;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   450
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   451
function  sanitizeCharForLog(c: char): shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   452
var r: shortstring;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   453
begin
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   454
    if (c < #32) or (c > #127) then
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   455
        r:= '#' + inttostr(byte(c))
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   456
        else
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   457
        r:= c;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   458
            
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   459
    sanitizeCharForLog:= r
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   460
end;
eecadca7db50 Bring back full log strings for commands, just a bit sanitized
unc0rr
parents: 8425
diff changeset
   461
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
   462
procedure initModule(isNotPreview: boolean);
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   463
{$IFDEF DEBUGFILE}
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   464
var logfileBase: shortstring;
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   465
    i: LongInt;
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   466
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   467
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   468
{$IFDEF DEBUGFILE}
7896
67217e6108fd another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents: 7565
diff changeset
   469
    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
   470
    begin
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   471
        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
   472
            logfileBase:= 'rec'
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   473
        else
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   474
            logfileBase:= 'game';
e82a076df09b Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents: 7198
diff changeset
   475
    end
7027
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   476
    else
f264ad9d8965 the scope cleanup continues...
koda
parents: 6990
diff changeset
   477
        logfileBase:= 'preview';
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   478
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   479
    InitCriticalSection(logMutex);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   480
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   481
{$I-}
8425
4f226963faef restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents: 8370
diff changeset
   482
    f:= stderr; // if everything fails, write to stderr
5831
80f2a44becea monkey task: always log to userpath
sheepluva
parents: 5239
diff changeset
   483
    if (UserPathPrefix <> '') then
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   484
        begin
8425
4f226963faef restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents: 8370
diff changeset
   485
        // create directory if it doesn't exist
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   486
        if not FileExists(UserPathPrefix + '/Logs/') then
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   487
            CreateDir(UserPathPrefix + '/Logs/');
8425
4f226963faef restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents: 8370
diff changeset
   488
4f226963faef restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents: 8370
diff changeset
   489
        // if log is locked, write to the next one
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   490
        i:= 0;
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   491
        while(i < 7) do
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   492
            begin
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   493
            assign(f, UserPathPrefix + '/Logs/' + logfileBase + inttostr(i) + '.log');
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   494
            if IOResult = 0 then
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   495
                break;
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   496
            inc(i)
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   497
            end;
8095
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   498
        end;
df61e150eb70 revisit the debugfile section
koda
parents: 7896
diff changeset
   499
    Rewrite(f);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   500
{$I+}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   501
{$ENDIF}
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   502
9300
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   503
    //mobile stuff
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   504
{$IFDEF IPHONEOS}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   505
    mobileRecord.PerformRumble:= @AudioServicesPlaySystemSound;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   506
    mobileRecord.GameLoading:= @startLoadingIndicator;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   507
    mobileRecord.GameLoaded:= @stopLoadingIndicator;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   508
    mobileRecord.SaveLoadingEnded:= @saveFinishedSynching;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   509
{$ELSE}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   510
    mobileRecord.PerformRumble:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   511
    mobileRecord.GameLoading:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   512
    mobileRecord.GameLoaded:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   513
    mobileRecord.SaveLoadingEnded:= nil;
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   514
{$ENDIF}
e5dafb5843c6 uvariables comes before uutils
koda
parents: 9295
diff changeset
   515
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   516
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   517
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   518
procedure freeModule;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   519
begin
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   520
{$IFDEF DEBUGFILE}
7151
ec15d9e1a7e3 pas2c stuff
unc0rr
parents: 7074
diff changeset
   521
    writeln(f, 'halt at ' + inttostr(GameTicks) + ' ticks. TurnTimeLeft = ' + inttostr(TurnTimeLeft));
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   522
    flush(f);
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   523
    close(f);
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   524
{$IFDEF USE_VIDEO_RECORDING}
7180
53ffc8853008 here it is
Stepan777 <stepik-777@mail.ru>
parents: 7151
diff changeset
   525
    DoneCriticalSection(logMutex);
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   526
{$ENDIF}
7198
5debd5fe526e 1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents: 7194
diff changeset
   527
{$ENDIF}
4374
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   528
end;
bcefeeabaa33 Move some stuff from uMisc to uUtils
unC0Rr
parents:
diff changeset
   529
4453
15a483b2558a add visual gear registration
nemo
parents: 4437
diff changeset
   530
end.