hedgewars/uMisc.pas
author unc0rr
Thu, 08 May 2008 18:02:52 +0000
changeset 915 33040b7695c0
parent 883 07a568ba44e0
child 916 1d0022336fbb
permissions -rw-r--r--
- Some changes in clusters initialization - Dump random numbers buffer on exit
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     1
(*
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     2
 * Hedgewars, a worms-like game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 869
diff changeset
     3
 * Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 174
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    18
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    19
unit uMisc;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    20
interface
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
    21
uses uConsts, SDLh, uFloat, GL;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    22
{$INCLUDE options.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    23
var isCursorVisible : boolean = false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    24
    isTerminated    : boolean = false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    25
    isInLag         : boolean = false;
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 208
diff changeset
    26
    isPaused        : boolean = false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    27
    isSoundEnabled  : boolean = true;
72
aeb2ac1878dc Basic save support in engine
unc0rr
parents: 70
diff changeset
    28
    isSEBackup      : boolean = true;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    29
    isInMultiShoot  : boolean = false;
626
a30171dbcd19 's' key to speed up demo playing
unc0rr
parents: 622
diff changeset
    30
    isSpeed         : boolean = false;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    31
39
b78e7185ed13 - Increased FPS
unc0rr
parents: 32
diff changeset
    32
    GameState     : TGameState = Low(TGameState);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    33
    GameType      : TGameType = gmtLocal;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    34
    GameFlags     : Longword = 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    35
    TurnTimeLeft  : Longword = 0;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 81
diff changeset
    36
    cHedgehogTurnTime: Longword = 45000;
433
9f8f22094c0e AI thinks in separate thread
unc0rr
parents: 393
diff changeset
    37
    cMaxAIThinkTime  : Longword = 9000;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    38
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    39
    cCloudsNumber    : LongInt = 9;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    40
    cConsoleHeight   : LongInt = 320;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    41
    cConsoleYAdd     : LongInt = 0;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    42
    cScreenWidth     : LongInt = 1024;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    43
    cScreenHeight    : LongInt = 768;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    44
    cBits            : LongInt = 16;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
    45
    cBitsStr         : string[2] = '16';
539
6a9bf1852bbc Ability to choose which info is shown above hedgehogs
unc0rr
parents: 534
diff changeset
    46
    cTagsMask        : byte = 7;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
    47
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    48
    cWaterLine       : LongInt = 1024;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    49
    cVisibleWater    : LongInt = 128;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    50
    cGearScrEdgesDist: LongInt = 240;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    51
    cCursorEdgesDist : LongInt = 40;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    52
    cTeamHealthWidth : LongInt = 128;
529
812682c1ab62 Option for alternative damage tags
unc0rr
parents: 497
diff changeset
    53
    cAltDamage       : boolean = true;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    54
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    55
    GameTicks     : LongWord = 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    56
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
    57
    cSkyColor     : Longword = 0;
762
5ecf042f6113 More sprites are visible
unc0rr
parents: 759
diff changeset
    58
    cWhiteColor   : Longword = $FFFFFFFF;
5ecf042f6113 More sprites are visible
unc0rr
parents: 759
diff changeset
    59
    cConsoleSplitterColor : Longword = $FFFF0000;
5ecf042f6113 More sprites are visible
unc0rr
parents: 759
diff changeset
    60
    cColorNearBlack       : Longword = $FF000010;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    61
    cExplosionBorderColor : LongWord = $808080;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    62
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    63
    cShowFPS      : boolean = true;
865
a4a5ec6c61d4 - Fix introduced bug with hh physics
unc0rr
parents: 840
diff changeset
    64
    cCaseFactor   : Longword = 5;  {0..9}
622
cedd47d956ec - New training (not finished yet)
unc0rr
parents: 614
diff changeset
    65
    cLandAdditions: Longword = 4;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    66
    cFullScreen   : boolean = true;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 79
diff changeset
    67
    cLocaleFName  : shortstring = 'en.txt';
81
d74e0e914b50 More translations
unc0rr
parents: 80
diff changeset
    68
    cSeed         : shortstring = '';
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    69
    cInitVolume   : LongInt = 128;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    70
    cVolumeDelta  : LongInt = 0;
296
607912ccc5af Implemented FPS limit and show/hide FPS value
unc0rr
parents: 295
diff changeset
    71
    cTimerInterval   : Longword = 5;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    72
    cHasFocus     : boolean = true;
614
0e04504bc140 - Fix some warnings
unc0rr
parents: 564
diff changeset
    73
    cInactDelay   : Longword = 1500;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    74
614
0e04504bc140 - Fix some warnings
unc0rr
parents: 564
diff changeset
    75
{$WARNINGS OFF}
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 539
diff changeset
    76
    cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue:   6012954214); // 1.4
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 539
diff changeset
    77
    cBombsSpeed   : hwFloat = (isNegative: false; QWordValue:    429496729);
614
0e04504bc140 - Fix some warnings
unc0rr
parents: 564
diff changeset
    78
{$WARNINGS ON}
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 539
diff changeset
    79
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    80
var
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    81
    cSendEmptyPacketTime : LongWord = 2000;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    82
    cSendCursorPosTime   : LongWord = 50;
13
7a5db822fd3f - Show no crosshair when using mine
unc0rr
parents: 4
diff changeset
    83
    ShowCrosshair  : boolean;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    84
    cDrownSpeed,
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    85
    cMaxWindSpeed,
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    86
    cWindSpeed,
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    87
    cGravity: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    88
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    89
    flagMakeCapture: boolean = false;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    90
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 53
diff changeset
    91
    InitStepsFlags: Longword = 0;
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 53
diff changeset
    92
564
17fb45c670c1 Finalize basic playlists implementation
unc0rr
parents: 553
diff changeset
    93
    RealTicks: Longword = 0;
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 802
diff changeset
    94
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    95
    AttackBar: LongInt = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    96
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    97
function hwSign(r: hwFloat): LongInt;
802
ed5450a89b96 Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents: 788
diff changeset
    98
function Min(a, b: LongInt): LongInt;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
    99
function Max(a, b: LongInt): LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   100
procedure OutError(Msg: String; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   101
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   102
procedure SDLTry(Assert: boolean; isFatal: boolean);
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   103
function IntToStr(n: LongInt): shortstring;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   104
function FloatToStr(n: hwFloat): shortstring;
775
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   105
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   106
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   107
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   108
procedure AdjustColor(var Color: Longword);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   109
{$IFDEF DEBUGFILE}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   110
procedure AddFileLog(s: shortstring);
24
79c411363184 Add theme objects to land
unc0rr
parents: 17
diff changeset
   111
function RectToStr(Rect: TSDL_Rect): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   112
{$ENDIF}
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   113
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   114
procedure SendKB;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   115
procedure SetLittle(var r: hwFloat);
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   116
procedure SendStat(sit: TStatInfoType; s: shortstring);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   117
function  Str2PChar(const s: shortstring): PChar;
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   118
function  Surface2Tex(surf: PSDL_Surface): PTexture;
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   119
procedure FreeTexture(tex: PTexture);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   120
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   121
var CursorPoint: TPoint;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   122
    TargetPoint: TPoint = (X: NoPointX; Y: 0);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   123
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   124
implementation
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   125
uses uConsole, uStore, uIO, Math, uRandom, GLU;
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   126
var KBnum: Longword = 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   127
{$IFDEF DEBUGFILE}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   128
var f: textfile;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   129
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   130
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   131
function hwSign(r: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   132
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   133
if r.isNegative then hwSign:= -1 else hwSign:= 1
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   134
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   135
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   136
function Min(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   137
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   138
if a < b then Min:= a else Min:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   139
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   140
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   141
function Max(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   142
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   143
if a > b then Max:= a else Max:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   144
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   145
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   146
procedure OutError(Msg: String; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   147
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   148
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF}
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   149
WriteLnToConsole(Msg);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   150
if isFatalError then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   151
   begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   152
   SendIPC('E' + GetLastConsoleLine);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   153
   SDL_Quit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   154
   halt(1)
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   155
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   156
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   157
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   158
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   159
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 56
diff changeset
   160
if not Assert then OutError(Msg, isFatal)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   161
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   162
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   163
procedure SDLTry(Assert: boolean; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   164
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   165
if not Assert then OutError(SDL_GetError, isFatal)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   166
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   167
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   168
procedure AdjustColor(var Color: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   169
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   170
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   171
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   172
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   173
function IntToStr(n: LongInt): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   174
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   175
str(n, IntToStr)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   176
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   177
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   178
function FloatToStr(n: hwFloat): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   179
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   180
FloatToStr:= cstr(n)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   181
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   182
775
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   183
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   184
var dY, dX: Extended;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   185
begin
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   186
dY:= _dY.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   187
if _dY.isNegative then dY:= - dY;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   188
dX:= _dX.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   189
if _dX.isNegative then dX:= - dX;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   190
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   191
end;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   192
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   193
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   194
const _16divPI: Extended = 16/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   195
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   196
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   197
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   198
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   199
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   200
if _dX.isNegative then dX:= - dX;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   201
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   202
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   203
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   204
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   205
const MaxAngleDivPI: Extended = cMaxAngle/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   206
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   207
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   208
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   209
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   210
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   211
if _dX.isNegative then dX:= - dX;
438
04bcc3fb127a Fix AI using shotgun and Desert Eagle
unc0rr
parents: 433
diff changeset
   212
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   213
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   214
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   215
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   216
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   217
KBnum:= n
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   218
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   219
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   220
procedure SendKB;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   221
var s: shortstring;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   222
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   223
if KBnum <> 0 then
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   224
   begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   225
   s:= 'K' + inttostr(KBnum);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   226
   SendIPCRaw(@s, Length(s) + 1)
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   227
   end
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   228
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   229
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   230
procedure SetLittle(var r: hwFloat);
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   231
begin
553
5478386d935f - Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents: 543
diff changeset
   232
r:= SignAs(cLittle, r)
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   233
end;
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   234
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   235
procedure SendStat(sit: TStatInfoType; s: shortstring);
869
daddcd31ef34 - New statistics
unc0rr
parents: 865
diff changeset
   236
const stc: array [TStatInfoType] of char = 'rDkK';
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   237
begin
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   238
SendIPC('i' + stc[sit] + s)
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   239
end;
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   240
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 529
diff changeset
   241
function Str2PChar(const s: shortstring): PChar;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   242
const CharArray: array[byte] of Char = '';
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   243
begin
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   244
CharArray:= s;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   245
CharArray[Length(s)]:= #0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   246
Str2PChar:= @CharArray
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   247
end;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   248
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   249
{$IFDEF DEBUGFILE}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   250
procedure AddFileLog(s: shortstring);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   251
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   252
writeln(f, GameTicks: 6, ': ', s);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   253
flush(f)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   254
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   255
24
79c411363184 Add theme objects to land
unc0rr
parents: 17
diff changeset
   256
function RectToStr(Rect: TSDL_Rect): shortstring;
79c411363184 Add theme objects to land
unc0rr
parents: 17
diff changeset
   257
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   258
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')'
24
79c411363184 Add theme objects to land
unc0rr
parents: 17
diff changeset
   259
end;
79c411363184 Add theme objects to land
unc0rr
parents: 17
diff changeset
   260
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   261
function isPowerOf2(i: Longword): boolean;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   262
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   263
if i = 0 then exit(true);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   264
while (i and 1) = 0 do i:= i shr 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   265
isPowerOf2:= (i = 1)
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   266
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   267
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   268
function toPowerOf2(i: Longword): Longword;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   269
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   270
toPowerOf2:= 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   271
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   272
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   273
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   274
function Surface2Tex(surf: PSDL_Surface): PTexture;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   275
var mode: LongInt;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   276
    tw, th: Longword;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   277
    tmpp: pointer;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   278
begin
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   279
new(Surface2Tex);
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   280
Surface2Tex^.w:= surf^.w;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   281
Surface2Tex^.h:= surf^.h;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   282
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   283
if (surf^.format^.BytesPerPixel = 3) then mode:= GL_RGB else
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   284
if (surf^.format^.BytesPerPixel = 4) then mode:= GL_RGBA else
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   285
   begin
869
daddcd31ef34 - New statistics
unc0rr
parents: 865
diff changeset
   286
   TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true);
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   287
   Surface2Tex^.id:= 0;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   288
   exit
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   289
   end;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   290
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   291
glGenTextures(1, @Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   292
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   293
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   294
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   295
if SDL_MustLock(surf) then
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   296
   SDLTry(SDL_LockSurface(surf) >= 0, true);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   297
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   298
if not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h)) then
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   299
   begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   300
   tw:= toPowerOf2(Surf^.w);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   301
   th:= toPowerOf2(Surf^.h);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   302
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   303
   GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   304
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   305
   gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE,
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   306
        Surf^.pixels, tw, th, GL_UNSIGNED_BYTE,
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   307
        tmpp);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   308
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   309
   glTexImage2D(GL_TEXTURE_2D, 0, mode, tw, th, 0, mode, GL_UNSIGNED_BYTE, tmpp);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   310
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   311
   FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel)
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   312
   end else
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   313
   glTexImage2D(GL_TEXTURE_2D, 0, mode, surf^.w, surf^.h, 0, mode, GL_UNSIGNED_BYTE, surf^.pixels);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   314
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   315
if SDL_MustLock(surf) then
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   316
   SDL_UnlockSurface(surf);
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   317
788
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 785
diff changeset
   318
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
00720357601f - Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents: 785
diff changeset
   319
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   320
end;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   321
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   322
procedure FreeTexture(tex: PTexture);
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   323
begin
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   324
glDeleteTextures(1, @tex^.id);
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   325
dispose(tex)
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   326
end;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   327
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   328
var i: LongInt;
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   329
{$ENDIF}
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   330
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   331
initialization
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   332
cDrownSpeed.QWordValue:= 257698038;// 0.06
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   333
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   334
cWindSpeed.QWordValue:=     429496;// 0.0001
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   335
cGravity:= cMaxWindSpeed;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   336
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   337
{$IFDEF DEBUGFILE}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   338
{$I-}
497
adf1aee202c6 merge fixes from branch
displacer
parents: 495
diff changeset
   339
if ParamCount > 0 then
adf1aee202c6 merge fixes from branch
displacer
parents: 495
diff changeset
   340
  for i:= 0 to 7 do
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   341
    begin
497
adf1aee202c6 merge fixes from branch
displacer
parents: 495
diff changeset
   342
    Assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt');
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   343
    rewrite(f);
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   344
    if IOResult = 0 then break
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   345
    end;
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   346
{$I+}
17
a6bed8d31444 minor code review
unc0rr
parents: 13
diff changeset
   347
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   348
finalization
915
33040b7695c0 - Some changes in clusters initialization
unc0rr
parents: 883
diff changeset
   349
uRandom.DumpBuffer;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   350
writeln(f, '-= halt at ',GameTicks,' ticks =-');
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   351
Flush(f);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   352
close(f)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   353
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   354
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   355
end.