hedgewars/uMisc.pas
author nemo
Sun, 24 Jan 2010 16:46:06 +0000
changeset 2712 8f4527c9137c
parent 2705 2b5625c4ec16
child 2715 0e4e0db79e2a
permissions -rw-r--r--
Minor tweak, try to make long flavour text last longer, move the hurt self messages to unused messages group, so they don't get wiped by crate an instant later.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1057
diff changeset
     2
 * Hedgewars, a free turn based strategy 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
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    20
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    21
unit uMisc;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    22
interface
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    23
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    24
uses	SDLh, uConsts, uFloat,
2152
a2811690da1b Patch by koda:
unc0rr
parents: 2147
diff changeset
    25
{$IFDEF GLES11}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    26
	gles11;
1906
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1896
diff changeset
    27
{$ELSE}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    28
	GL;
1906
644f93d8f148 Apply koda's OpenGL ES compatibility patch
unc0rr
parents: 1896
diff changeset
    29
{$ENDIF}
2697
75880595a9f1 code cleanup and opengles optimizations
koda
parents: 2693
diff changeset
    30
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 988
diff changeset
    31
var
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    32
	isCursorVisible : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    33
	isTerminated    : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    34
	isInLag         : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    35
	isPaused        : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    36
	isSoundEnabled  : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    37
	isMusicEnabled  : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    38
	isSEBackup      : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    39
	isInMultiShoot  : boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    40
	isSpeed         : boolean;
1560
e140bc57ff68 Quick replay round to spectators until current move
unc0rr
parents: 1530
diff changeset
    41
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    42
	fastUntilLag    : boolean;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1861
diff changeset
    43
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    44
	GameState	: TGameState;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    45
	GameType	: TGameType;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    46
	GameFlags	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    47
	TrainingFlags	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    48
	TurnTimeLeft	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    49
	cSuddenDTurns	: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    50
	cDamagePercent	: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    51
	cTemplateFilter	: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    52
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    53
	cHedgehogTurnTime: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    54
	cMinesTime       : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    55
	cMaxAIThinkTime  : Longword;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
    56
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    57
	cCloudsNumber    : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    58
	cScreenWidth     : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    59
	cScreenHeight    : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    60
	cInitWidth       : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    61
	cInitHeight      : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    62
	cVSyncInUse	 : boolean;	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    63
	cBits            : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    64
	cBitsStr         : string[2];
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    65
	cTagsMaskIndex   : byte;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    66
	zoom             : GLfloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    67
	ZoomValue        : GLfloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    68
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    69
	cWaterLine       : LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    70
	cGearScrEdgesDist: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    71
	cAltDamage       : boolean;
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 988
diff changeset
    72
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    73
	GameTicks	: LongWord;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    74
	TrainingTimeInc	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    75
	TrainingTimeInD	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    76
	TrainingTimeInM	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    77
	TrainingTimeMax	: Longword;
2666
2b8c8f16421e update SDLMain.m/.h to latest version
koda
parents: 2665
diff changeset
    78
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    79
	TimeTrialStartTime: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    80
	TimeTrialStopTime : Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    81
	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    82
	recordFileName	: shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    83
	cShowFPS	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    84
	cCaseFactor	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    85
	cLandAdditions	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    86
	cFullScreen	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    87
	cReducedQuality	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    88
	cLocaleFName	: shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    89
	cSeed		: shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    90
	cInitVolume	: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    91
	cVolumeDelta	: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    92
	cTimerInterval	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    93
	cHasFocus	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    94
	cInactDelay	: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    95
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    96
	bBetweenTurns	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    97
	cHealthDecrease	: LongWord;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    98
	bWaterRising	: Boolean;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 539
diff changeset
    99
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   100
	ShowCrosshair	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   101
	CursorMovementX : Integer;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   102
	CursorMovementY : Integer;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   103
	cDrownSpeed	: hwFloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   104
	cMaxWindSpeed	: hwFloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   105
	cWindSpeed	: hwFloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   106
	cGravity	: hwFloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   107
	cDamageModifier	: hwFloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   108
	cLaserSighting	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   109
	cVampiric	: boolean;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   110
	cArtillery	: boolean;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   111
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   112
	flagMakeCapture	: boolean;
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 53
diff changeset
   113
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   114
	InitStepsFlags	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   115
	RealTicks	: Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   116
	AttackBar	: LongInt;
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 802
diff changeset
   117
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   118
	WaterColorArray	: array[0..3] of HwColor4f;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   119
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   120
	CursorPoint	: TPoint;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   121
	TargetPoint	: TPoint;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   122
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   123
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   124
procedure init_uMisc;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   125
procedure free_uMisc;
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   126
procedure movecursor(dx, dy: Integer);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   127
function  hwSign(r: hwFloat): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   128
function  Min(a, b: LongInt): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   129
function  Max(a, b: LongInt): LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   130
procedure OutError(Msg: String; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   131
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   132
procedure SDLTry(Assert: boolean; isFatal: boolean);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   133
function  IntToStr(n: LongInt): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   134
function  FloatToStr(n: hwFloat): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   135
function  DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   136
function  DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   137
function  DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   138
procedure AdjustColor(var Color: Longword);
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   139
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   140
procedure SendKB;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   141
procedure SetLittle(var r: hwFloat);
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   142
procedure SendStat(sit: TStatInfoType; s: shortstring);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   143
function  Str2PChar(const s: shortstring): PChar;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   144
function  NewTexture(width, height: Longword; buf: Pointer): PTexture;
2290
bf87ca44782e Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents: 2279
diff changeset
   145
function  Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture;
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   146
procedure FreeTexture(tex: PTexture);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 916
diff changeset
   147
function  toPowerOf2(i: Longword): Longword;
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   148
function  DecodeBase64(s: shortstring): shortstring;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   149
function  doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   150
function  endian(independent: LongWord): LongWord;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   151
function  modifyDamage(dmg: Longword): Longword;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   152
{$IFDEF DEBUGFILE}
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   153
procedure AddFileLog(s: shortstring);
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   154
function  RectToStr(Rect: TSDL_Rect): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   155
{$ENDIF}
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   156
{$IFNDEF IPHONEOS}
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   157
procedure MakeScreenshot(s: shortstring);
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   158
{$ENDIF}
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   159
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   160
implementation
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   161
uses Math, uConsole, uStore, uIO, uRandom, uSound;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   162
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   163
var KBnum: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   164
{$IFDEF DEBUGFILE}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   165
    f: textfile;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   166
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   167
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   168
procedure movecursor(dx, dy: Integer);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   169
var x, y: LongInt;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   170
begin
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   171
if (dx = 0) and (dy = 0) then exit;
2671
7e0f88013fe8 smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents: 2670
diff changeset
   172
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   173
SDL_GetMouseState(@x, @y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   174
Inc(x, dx);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   175
Inc(y, dy);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   176
SDL_WarpMouse(x, y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   177
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   178
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   179
function hwSign(r: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   180
begin
2389
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   181
// yes, we have negative zero for a reason
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   182
if r.isNegative then hwSign:= -1 else hwSign:= 1
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   183
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   184
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   185
function Min(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   186
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   187
if a < b then Min:= a else Min:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   188
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   189
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   190
function Max(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   191
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   192
if a > b then Max:= a else Max:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   193
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   194
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   195
procedure OutError(Msg: String; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   196
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   197
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF}
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   198
WriteLnToConsole(Msg);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   199
if isFatalError then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   200
   begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   201
   SendIPC('E' + GetLastConsoleLine);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   202
   SDL_Quit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   203
   halt(1)
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 47
diff changeset
   204
   end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   205
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   206
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   207
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   208
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 56
diff changeset
   209
if not Assert then OutError(Msg, isFatal)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   210
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   211
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   212
procedure SDLTry(Assert: boolean; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   213
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   214
if not Assert then OutError(SDL_GetError, isFatal)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   215
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   216
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   217
procedure AdjustColor(var Color: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   218
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   219
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
   220
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   221
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   222
function IntToStr(n: LongInt): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   223
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   224
str(n, IntToStr)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   225
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   226
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   227
function FloatToStr(n: hwFloat): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   228
begin
1346
b4d51b95aa16 Make messages be more debug-friendly
unc0rr
parents: 1298
diff changeset
   229
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue))
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   230
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   231
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   232
procedure SetTextureParameters(enableClamp: Boolean);
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   233
begin
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   234
if enableClamp and not cReducedQuality then
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   235
    begin
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   236
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   237
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   238
    end;
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   239
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   240
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   241
end;
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   242
775
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   243
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   244
var dY, dX: Extended;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   245
begin
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   246
dY:= _dY.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   247
if _dY.isNegative then dY:= - dY;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   248
dX:= _dX.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   249
if _dX.isNegative then dX:= - dX;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   250
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   251
end;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   252
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   253
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   254
const _16divPI: Extended = 16/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   255
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   256
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   257
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   258
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   259
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   260
if _dX.isNegative then dX:= - dX;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   261
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   262
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   263
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   264
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   265
const MaxAngleDivPI: Extended = cMaxAngle/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   266
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   267
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   268
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   269
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   270
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   271
if _dX.isNegative then dX:= - dX;
438
04bcc3fb127a Fix AI using shotgun and Desert Eagle
unc0rr
parents: 433
diff changeset
   272
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   273
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   274
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   275
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   276
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   277
KBnum:= n
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   278
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   279
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   280
procedure SendKB;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   281
var s: shortstring;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   282
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   283
if KBnum <> 0 then
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   284
   begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   285
   s:= 'K' + inttostr(KBnum);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   286
   SendIPCRaw(@s, Length(s) + 1)
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   287
   end
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   288
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   289
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   290
procedure SetLittle(var r: hwFloat);
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   291
begin
553
5478386d935f - Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents: 543
diff changeset
   292
r:= SignAs(cLittle, r)
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   293
end;
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   294
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   295
procedure SendStat(sit: TStatInfoType; s: shortstring);
1625
37aae47943ce Initial health graphic implementation
unc0rr
parents: 1560
diff changeset
   296
const stc: array [TStatInfoType] of char = 'rDkKH';
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   297
var buf: shortstring;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   298
begin
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   299
buf:= 'i' + stc[sit] + s;
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   300
SendIPCRaw(@buf[0], length(buf) + 1)
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   301
end;
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   302
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 529
diff changeset
   303
function Str2PChar(const s: shortstring): PChar;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   304
const CharArray: array[byte] of Char = '';
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   305
begin
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   306
CharArray:= s;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   307
CharArray[Length(s)]:= #0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   308
Str2PChar:= @CharArray
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   309
end;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   310
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   311
function isPowerOf2(i: Longword): boolean;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   312
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   313
if i = 0 then exit(true);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   314
while (i and 1) = 0 do i:= i shr 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   315
isPowerOf2:= (i = 1)
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   316
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   317
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   318
function toPowerOf2(i: Longword): Longword;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   319
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   320
toPowerOf2:= 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   321
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   322
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   323
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   324
procedure ResetVertexArrays(texture: PTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   325
begin
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   326
with texture^ do
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   327
	begin
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   328
	vb[0].X:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   329
	vb[0].Y:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   330
	vb[1].X:= w;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   331
	vb[1].Y:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   332
	vb[2].X:= w;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   333
	vb[2].Y:= h;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   334
	vb[3].X:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   335
	vb[3].Y:= h;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   336
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   337
	tb[0].X:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   338
	tb[0].Y:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   339
	tb[1].X:= rx;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   340
	tb[1].Y:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   341
	tb[2].X:= rx;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   342
	tb[2].Y:= ry;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   343
	tb[3].X:= 0;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   344
	tb[3].Y:= ry
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   345
	end;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   346
end;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   347
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   348
function NewTexture(width, height: Longword; buf: Pointer): PTexture;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   349
begin
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   350
new(NewTexture);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   351
NewTexture^.w:= width;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   352
NewTexture^.h:= height;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   353
NewTexture^.rx:= 1.0;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   354
NewTexture^.ry:= 1.0;
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   355
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   356
ResetVertexArrays(NewTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   357
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   358
glGenTextures(1, @NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   359
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   360
glBindTexture(GL_TEXTURE_2D, NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   361
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   362
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   363
SetTextureParameters(true);
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   364
end;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   365
2290
bf87ca44782e Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents: 2279
diff changeset
   366
function Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture;
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   367
var tw, th, x, y: Longword;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   368
    tmpp: pointer;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   369
    fromP4, toP4: PLongWordArray;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   370
begin
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   371
new(Surface2Tex);
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   372
Surface2Tex^.w:= surf^.w;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   373
Surface2Tex^.h:= surf^.h;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   374
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   375
if (surf^.format^.BytesPerPixel <> 4) then
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   376
begin
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   377
	TryDo(false, 'Surface2Tex failed, expecting 32 bit surface', true);
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   378
	Surface2Tex^.id:= 0;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   379
	exit
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   380
end;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   381
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   382
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   383
glGenTextures(1, @Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   384
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   385
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   386
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   387
if SDL_MustLock(surf) then
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   388
	SDLTry(SDL_LockSurface(surf) >= 0, true);
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   389
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   390
if (not SupportNPOTT) and (not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h))) then
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   391
begin
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   392
	tw:= toPowerOf2(Surf^.w);
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   393
	th:= toPowerOf2(Surf^.h);
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   394
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   395
	Surface2Tex^.rx:= Surf^.w / tw;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   396
	Surface2Tex^.ry:= Surf^.h / th;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2372
diff changeset
   397
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   398
	GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel);
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   399
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   400
		fromP4:= Surf^.pixels;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   401
		toP4:= tmpp;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   402
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   403
		for y:= 0 to Pred(Surf^.h) do
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   404
		begin
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   405
			for x:= 0 to Pred(Surf^.w) do toP4^[x]:= fromP4^[x];
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   406
			for x:= Surf^.w to Pred(tw) do toP4^[x]:= 0;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   407
			toP4:= @(toP4^[tw]);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2008
diff changeset
   408
			fromP4:= @(fromP4^[Surf^.pitch div 4]);
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   409
		end;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   410
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   411
		for y:= Surf^.h to Pred(th) do
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   412
		begin
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   413
			for x:= 0 to Pred(tw) do toP4^[x]:= 0;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   414
			toP4:= @(toP4^[tw]);
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   415
		end;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   416
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   417
	glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, GL_UNSIGNED_BYTE, tmpp);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2372
diff changeset
   418
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   419
	FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel)
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   420
end
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   421
else
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   422
begin
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   423
	Surface2Tex^.rx:= 1.0;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   424
	Surface2Tex^.ry:= 1.0;
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   425
	glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surf^.w, surf^.h, 0, GL_RGBA, GL_UNSIGNED_BYTE, surf^.pixels);
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   426
end;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   427
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   428
ResetVertexArrays(Surface2Tex);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   429
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   430
if SDL_MustLock(surf) then
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   431
	SDL_UnlockSurface(surf);
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   432
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   433
SetTextureParameters(enableClamp);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   434
end;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   435
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   436
procedure FreeTexture(tex: PTexture);
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   437
begin
2000
f9f47e681aad Don't crash engine after round in reduced quality mode
unc0rr
parents: 1916
diff changeset
   438
if tex <> nil then
f9f47e681aad Don't crash engine after round in reduced quality mode
unc0rr
parents: 1916
diff changeset
   439
	begin
f9f47e681aad Don't crash engine after round in reduced quality mode
unc0rr
parents: 1916
diff changeset
   440
	glDeleteTextures(1, @tex^.id);
f9f47e681aad Don't crash engine after round in reduced quality mode
unc0rr
parents: 1916
diff changeset
   441
	dispose(tex)
f9f47e681aad Don't crash engine after round in reduced quality mode
unc0rr
parents: 1916
diff changeset
   442
	end
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   443
end;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   444
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   445
function DecodeBase64(s: shortstring): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   446
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   447
var i, t, c: Longword;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   448
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   449
c:= 0;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   450
for i:= 1 to Length(s) do
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   451
	begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   452
	t:= Pos(s[i], table);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   453
	if s[i] = '=' then inc(c);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   454
	if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   455
	end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   456
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   457
i:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   458
t:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   459
while i <= length(s) do
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   460
	begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   461
	DecodeBase64[t    ]:= char((byte(s[i    ]) shl 2) or (byte(s[i + 1]) shr 4));
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   462
	DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2));
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   463
	DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3])      ));
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   464
	inc(t, 3);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   465
	inc(i, 4)
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   466
	end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   467
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   468
if c < 3 then t:= t - c;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   469
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   470
byte(DecodeBase64[0]):= t - 1
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   471
end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   472
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   473
{$IFNDEF IPHONEOS}
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   474
procedure MakeScreenshot(s: shortstring);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   475
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   476
var p: Pointer;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   477
	size: Longword;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   478
	f: file;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   479
begin
2327
4832b77ec958 restored volumen control (hoorray)
koda
parents: 2290
diff changeset
   480
playSound(sndShutter, false, nil);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   481
head[6]:= cScreenWidth;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   482
head[7]:= cScreenHeight;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   483
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   484
size:= cScreenWidth * cScreenHeight * 3;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   485
p:= GetMem(size);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   486
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   487
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   488
//remember that opengles operates on a single surface, so GL_FRONT *should* be implied
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   489
glReadBuffer(GL_FRONT);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   490
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   491
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   492
{$I-}
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   493
Assign(f, s);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   494
Rewrite(f, 1);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   495
if IOResult = 0 then
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   496
	begin
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   497
	BlockWrite(f, head, sizeof(head));
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   498
	BlockWrite(f, p^, size);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   499
	Close(f);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   500
	end;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   501
{$I+}
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   502
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   503
FreeMem(p)
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   504
end;
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   505
{$ENDIF}
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   506
1861
unc0rr
parents: 1854
diff changeset
   507
function modifyDamage(dmg: Longword): Longword;
unc0rr
parents: 1854
diff changeset
   508
begin
1895
7ba647a88b2f More game options by nemo
unc0rr
parents: 1888
diff changeset
   509
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * cDamagePercent)
1861
unc0rr
parents: 1854
diff changeset
   510
end;
unc0rr
parents: 1854
diff changeset
   511
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   512
{$IFDEF DEBUGFILE}
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   513
procedure AddFileLog(s: shortstring);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   514
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   515
writeln(f, GameTicks: 6, ': ', s);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   516
flush(f)
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   517
end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   518
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   519
function RectToStr(Rect: TSDL_Rect): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   520
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   521
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')'
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   522
end;
2242
2e8251933b71 initial support for touch input
koda
parents: 2210
diff changeset
   523
{$ENDIF}
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   524
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   525
function doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   526
{* for more information http://www.idevgames.com/forum/showpost.php?p=85864&postcount=7 *}
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   527
var convertedSurf: PSDL_Surface = nil;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   528
begin
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   529
	if (tmpsurf^.format^.bitsperpixel = 24) or ((tmpsurf^.format^.bitsperpixel = 32) and (tmpsurf^.format^.rshift > tmpsurf^.format^.bshift)) then
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   530
	begin
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   531
		convertedSurf:= SDL_ConvertSurface(tmpsurf, @conversionFormat, SDL_SWSURFACE);
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   532
		SDL_FreeSurface(tmpsurf);
2705
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   533
		exit(convertedSurf);
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   534
	end;
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   535
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   536
	exit(tmpsurf);
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   537
end;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   538
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   539
function endian(independent: LongWord): LongWord;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   540
begin
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   541
{$IFDEF ENDIAN_LITTLE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   542
endian:= independent;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   543
{$ELSE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   544
endian:= (((independent and $FF000000) shr 24) or
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   545
	  ((independent and $00FF0000) shr 8) or
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   546
	  ((independent and $0000FF00) shl 8) or
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   547
	  ((independent and $000000FF) shl 24))
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   548
{$ENDIF}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   549
end;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   550
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   551
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   552
procedure init_uMisc;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   553
var i: LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   554
begin
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   555
	cDrownSpeed.QWordValue	:= 257698038;		// 0.06
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   556
	cMaxWindSpeed.QWordValue:= 2147484;		// 0.0005
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   557
	cWindSpeed.QWordValue	:= 429496;		// 0.0001
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   558
	cGravity		:= cMaxWindSpeed;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   559
	cDamageModifier		:= _1;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   560
	TargetPoint		:= cTargetPointRef;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   561
	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   562
	// int, longint longword and byte
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   563
	CursorMovementX		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   564
	CursorMovementY		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   565
	GameTicks		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   566
	TrainingTimeInc		:= 10000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   567
	TrainingTimeInD		:= 500;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   568
	TrainingTimeInM		:= 5000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   569
	TrainingTimeMax		:= 60000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   570
	TimeTrialStartTime	:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   571
	TimeTrialStopTime	:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   572
	cWaterLine		:= LAND_HEIGHT;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   573
	cGearScrEdgesDist	:= 240;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   574
	cHealthDecrease		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   575
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   576
	GameFlags		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   577
	TrainingFlags		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   578
	TurnTimeLeft		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   579
	cSuddenDTurns		:= 15;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   580
	cDamagePercent		:= 100;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   581
	cTemplateFilter		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   582
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   583
	cHedgehogTurnTime	:= 45000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   584
	cMinesTime		:= 3000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   585
	cMaxAIThinkTime		:= 9000;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   586
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   587
	cCloudsNumber		:= 9;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   588
	cScreenWidth		:= 1024;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   589
	cScreenHeight		:= 768;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   590
	cInitWidth		:= cScreenWidth;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   591
	cInitHeight		:= cScreenHeight;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   592
	cBits			:= 32;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   593
	cTagsMaskIndex		:= Low(cTagsMasks);
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   594
	KBnum			:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   595
	InitStepsFlags		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   596
	RealTicks		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   597
	AttackBar		:= 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   598
	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   599
	// tgametype and glfloat and string
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   600
	GameState		:= Low(TGameState);
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   601
	GameType		:= gmtLocal;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   602
	zoom			:= 2.0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   603
	ZoomValue		:= 2.0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   604
	cBitsStr		:= '32';
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   605
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   606
	// booleans
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   607
	cLaserSighting		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   608
	cVampiric		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   609
	cArtillery		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   610
	flagMakeCapture		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   611
	bBetweenTurns		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   612
	bWaterRising		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   613
	isCursorVisible		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   614
	isTerminated		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   615
	isInLag			:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   616
	isPaused		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   617
	isMusicEnabled		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   618
	isInMultiShoot		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   619
	isSpeed			:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   620
	fastUntilLag		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   621
	cVSyncInUse		:= true;	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   622
	isSoundEnabled		:= true;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   623
	isSEBackup		:= true;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   624
	
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   625
	// init flags
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   626
	recordFileName		:= '';
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   627
	cShowFPS		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   628
	cCaseFactor		:= 5;  {0..9}
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   629
	cLandAdditions		:= 4;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   630
	cFullScreen		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   631
	cReducedQuality		:= false;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   632
	cLocaleFName		:= 'en.txt';
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   633
	cSeed			:= '';
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   634
	cInitVolume		:= 50;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   635
	cVolumeDelta		:= 0;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   636
	cTimerInterval		:= 8;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   637
	cHasFocus		:= true;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   638
	cInactDelay		:= 1250;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   639
	cAltDamage		:= true;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   640
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   641
{$IFDEF DEBUGFILE}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   642
{$I-}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   643
{$IFDEF IPHONEOS}
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2691
diff changeset
   644
	f:= stderr;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   645
{$ELSE}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   646
	for i:= 0 to 7 do
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   647
	begin
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   648
		assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt');
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   649
		rewrite(f);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   650
		if IOResult = 5 then
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   651
		begin
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   652
			// prevent writing on a directory you do not have permissions on
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   653
			// should be safe to assume the current directory is writable
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   654
			assign(f, './debug' + inttostr(i) + '.txt');
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   655
			rewrite(f);
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   656
		end;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   657
		if IOResult = 0 then break;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   658
	end;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   659
{$ENDIF}
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   660
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   661
{$I+}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   662
{$ENDIF}
17
a6bed8d31444 minor code review
unc0rr
parents: 13
diff changeset
   663
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   664
end;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   665
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   666
procedure free_uMisc;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   667
begin
916
1d0022336fbb - Small optimization in hwFloat
unc0rr
parents: 915
diff changeset
   668
//uRandom.DumpBuffer;
2154
3d2917be12c3 Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents: 2152
diff changeset
   669
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   670
{$IFDEF DEBUGFILE}
2621
956ff066f3a5 Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents: 2619
diff changeset
   671
writeln(f, 'halt at ', GameTicks, ' ticks. TurnTimeLeft = ', TurnTimeLeft);
2154
3d2917be12c3 Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents: 2152
diff changeset
   672
flush(f);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   673
close(f);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   674
{$ENDIF}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   675
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   676
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   677
end.