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