hedgewars/uMisc.pas
author koda
Fri, 13 Aug 2010 02:13:18 +0200
changeset 3737 2ba6ac8a114b
parent 3709 c7849b74748d
child 3756 d42571e2e6c9
permissions -rw-r--r--
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch adjusted default zoom value polished lobby interface updated ammosets to new weapons
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
     1
(*
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     2
* Hedgewars, a free turn based strategy game
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     3
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com>
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     4
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     5
* This program is free software; you can redistribute it and/or modify
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     6
* it under the terms of the GNU General Public License as published by
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     7
* the Free Software Foundation; version 2 of the License
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     8
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
     9
* This program is distributed in the hope that it will be useful,
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    12
* GNU General Public License for more details.
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    13
*
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    14
* You should have received a copy of the GNU General Public License
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    15
* along with this program; if not, write to the Free Software
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    16
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    17
*)
4
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"}
3599
715a43602da8 sheepluva's inline patch, fix a crash in overlay
koda
parents: 3598
diff changeset
    20
{$INLINE ON}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    21
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    22
unit uMisc;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    23
interface
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    24
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3537
diff changeset
    25
uses    SDLh, uConsts, uFloat, GLunit, Math;
2697
75880595a9f1 code cleanup and opengles optimizations
koda
parents: 2693
diff changeset
    26
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 988
diff changeset
    27
var
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    28
    isCursorVisible : boolean;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    29
    isTerminated    : boolean;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    30
    isInLag         : boolean;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    31
    isPaused        : boolean;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    32
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    33
    isSEBackup      : boolean;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    34
    isInMultiShoot  : boolean;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    35
    isSpeed         : boolean;
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
    36
    isFirstFrame    : boolean;
1560
e140bc57ff68 Quick replay round to spectators until current move
unc0rr
parents: 1530
diff changeset
    37
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    38
    fastUntilLag    : boolean;
1888
e76274ce7365 Add an ability to run engine without IPC connection.
unc0rr
parents: 1861
diff changeset
    39
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    40
    GameState       : TGameState;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    41
    GameType        : TGameType;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    42
    GameFlags       : Longword;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    43
    TrainingFlags   : Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    44
    TurnTimeLeft    : Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    45
    cSuddenDTurns   : LongInt;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    46
    cDamagePercent  : LongInt;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    47
    cMineDudPercent : LongWord;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    48
    cTemplateFilter : LongInt;
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3115
diff changeset
    49
    cMapGen         : LongInt;
1ab5f18f4df8 prg's maze generator
nemo
parents: 3115
diff changeset
    50
    cMazeSize       : LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    51
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    52
    cHedgehogTurnTime: Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    53
    cMinesTime       : LongInt;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    54
    cMaxAIThinkTime  : Longword;
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 72
diff changeset
    55
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    56
    cCloudsNumber    : LongInt;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    57
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    58
    cTagsMask        : byte;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    59
    zoom             : GLfloat;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    60
    ZoomValue        : GLfloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    61
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    62
    cWaterLine       : LongInt;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    63
    cGearScrEdgesDist: LongInt;
1054
80225c6af656 - Prepare for sudden death implementation
unc0rr
parents: 988
diff changeset
    64
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
    65
    GameTicks   : LongWord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
    66
    TrainingTimeInc : Longword;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
    67
    TrainingTimeInD : Longword;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
    68
    TrainingTimeInM : Longword;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
    69
    TrainingTimeMax : Longword;
2666
2b8c8f16421e update SDLMain.m/.h to latest version
koda
parents: 2665
diff changeset
    70
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    71
    TimeTrialStartTime: Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    72
    TimeTrialStopTime : Longword;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
    73
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    74
    // originally from uConsts
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    75
    Pathz: array[TPathType] of shortstring;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    76
    CountTexz: array[1..Pred(AMMO_INFINITE)] of PTexture;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    77
    LAND_WIDTH  :longint;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    78
    LAND_HEIGHT :longint;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    79
    LAND_WIDTH_MASK  :longWord;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    80
    LAND_HEIGHT_MASK :longWord;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    81
    cMaxCaptions : LongInt;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    82
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    83
    // init flags
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    84
    cScreenWidth    : LongInt = 1024;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    85
    cScreenHeight   : LongInt = 768;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    86
    cBits           : LongInt = 32;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    87
    //ipcPort is in uIO
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    88
    cFullScreen     : boolean = false;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    89
    isSoundEnabled  : boolean = true;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    90
    isMusicEnabled  : boolean = false;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    91
    cLocaleFName    : shortstring = 'en.txt';
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    92
    cInitVolume     : LongInt = 50;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    93
    cTimerInterval  : LongInt = 8;
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
    94
    PathPrefix: shortstring = './';
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    95
    cShowFPS        : boolean = false;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    96
    cAltDamage      : boolean = true;
3613
cfd3c6536a09 make runtime quality check for iDevices
koda
parents: 3611
diff changeset
    97
    cReducedQuality : LongInt = rqNone;
3676
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
    98
    //userNick is in uChat
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    99
    recordFileName  : shortstring = '';
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   100
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   101
    cCaseFactor     : Longword;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   102
    cLandAdditions  : Longword;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   103
    cExplosives     : Longword;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   104
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   105
    cSeed           : shortstring;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   106
    cVolumeDelta    : LongInt;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   107
    cHasFocus       : boolean;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   108
    cInactDelay     : Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   109
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   110
    bBetweenTurns   : boolean;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   111
    cHealthDecrease : LongWord;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   112
    bWaterRising    : Boolean;
543
465e2ec8f05f - Better randomness of placing hedgehogs on the land
unc0rr
parents: 539
diff changeset
   113
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   114
    ShowCrosshair   : boolean;
3169
c8c6ac44f51b prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents: 3165
diff changeset
   115
    CursorMovementX : LongInt;
c8c6ac44f51b prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents: 3165
diff changeset
   116
    CursorMovementY : LongInt;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   117
    cDrownSpeed     : hwFloat;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   118
    cDrownSpeedf    : float;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   119
    cMaxWindSpeed   : hwFloat;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   120
    cWindSpeed      : hwFloat;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   121
    cWindSpeedf     : float;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   122
    cGravity        : hwFloat;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   123
    cGravityf       : float;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   124
    cDamageModifier : hwFloat;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   125
    cLaserSighting  : boolean;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   126
    cVampiric       : boolean;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   127
    cArtillery      : boolean;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   128
    WeaponTooltipTex : PTexture;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   129
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   130
    flagMakeCapture : boolean;
55
e09f7c952a40 Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents: 53
diff changeset
   131
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   132
    InitStepsFlags  : Longword;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   133
    RealTicks       : Longword;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   134
    AttackBar       : LongInt;
836
150c7c87e66c - Small formatting changes
unc0rr
parents: 802
diff changeset
   135
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   136
    WaterColorArray : array[0..3] of HwColor4f;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   137
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   138
    CursorPoint     : TPoint;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   139
    TargetPoint     : TPoint;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   140
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   141
    TextureList     : PTexture;
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   142
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   143
    ScreenFade      : TScreenFade;
3115
831bd0f7050d Engine:
smxx
parents: 3107
diff changeset
   144
    ScreenFadeValue : LongInt;
831bd0f7050d Engine:
smxx
parents: 3107
diff changeset
   145
    ScreenFadeSpeed : LongInt;
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   146
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3594
diff changeset
   147
{$IFDEF SDL13}
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   148
    SDLwindow       : PSDL_Window;
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3594
diff changeset
   149
{$ENDIF}
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   150
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   151
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   152
procedure freeModule;
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   153
procedure SplitBySpace(var a, b: shortstring);
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   154
procedure SplitByChar(var a, b: ansistring; c: char);
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   155
function  EnumToStr(const en : TGearType) : shortstring; overload;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   156
function  EnumToStr(const en : TSound) : shortstring; overload;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   157
function  EnumToStr(const en : TAmmoType) : shortstring; overload;
3169
c8c6ac44f51b prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents: 3165
diff changeset
   158
procedure movecursor(dx, dy: LongInt);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   159
function  hwSign(r: hwFloat): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   160
function  Min(a, b: LongInt): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   161
function  Max(a, b: LongInt): LongInt;
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   162
procedure OutError(Msg: shortstring; isFatalError: boolean);
3599
715a43602da8 sheepluva's inline patch, fix a crash in overlay
koda
parents: 3598
diff changeset
   163
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); inline;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   164
procedure SDLTry(Assert: boolean; isFatal: boolean);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   165
function  IntToStr(n: LongInt): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   166
function  FloatToStr(n: hwFloat): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   167
function  DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   168
function  DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   169
function  DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   170
procedure AdjustColor(var Color: Longword);
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   171
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   172
procedure SendKB;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   173
procedure SetLittle(var r: hwFloat);
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   174
procedure SendStat(sit: TStatInfoType; s: shortstring);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   175
function  Str2PChar(const s: shortstring): PChar;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   176
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
   177
function  Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture;
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   178
procedure FreeTexture(tex: PTexture);
3599
715a43602da8 sheepluva's inline patch, fix a crash in overlay
koda
parents: 3598
diff changeset
   179
function  toPowerOf2(i: Longword): Longword; inline;
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   180
function  DecodeBase64(s: shortstring): shortstring;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   181
function  doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   182
function  endian(independent: LongWord): LongWord;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   183
{$IFDEF DEBUGFILE}
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   184
procedure AddFileLog(s: shortstring);
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   185
function  RectToStr(Rect: TSDL_Rect): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   186
{$ENDIF}
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   187
procedure MakeScreenshot(filename: shortstring);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   188
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   189
implementation
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3537
diff changeset
   190
uses uConsole, uStore, uIO, uSound, typinfo, sysutils;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   191
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   192
var KBnum: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   193
{$IFDEF DEBUGFILE}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   194
    f: textfile;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   195
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   196
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   197
// should this include "strtolower()" for the split string?
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   198
procedure SplitBySpace(var a, b: shortstring);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   199
var i, t: LongInt;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   200
begin
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   201
i:= Pos(' ', a);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   202
if i > 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   203
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   204
    for t:= 1 to Pred(i) do
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   205
        if (a[t] >= 'A')and(a[t] <= 'Z') then Inc(a[t], 32);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   206
    b:= copy(a, i + 1, Length(a) - i);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   207
    byte(a[0]):= Pred(i)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   208
    end else b:= '';
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   209
end;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   210
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   211
procedure SplitByChar(var a, b: ansistring; c: char);
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   212
var i: LongInt;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   213
begin
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   214
i:= Pos(c, a);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   215
if i > 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   216
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   217
    b:= copy(a, i + 1, Length(a) - i);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   218
    setlength(a, Pred(i));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   219
    end else b:= '';
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   220
end;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   221
3337
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   222
function EnumToStr(const en : TGearType) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   223
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   224
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   225
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   226
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   227
function EnumToStr(const en : TSound) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   228
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   229
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   230
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   231
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   232
function EnumToStr(const en : TAmmoType) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   233
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   234
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   235
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   236
3169
c8c6ac44f51b prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents: 3165
diff changeset
   237
procedure movecursor(dx, dy: LongInt);
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   238
var x, y: LongInt;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   239
begin
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   240
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
   241
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   242
SDL_GetMouseState(@x, @y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   243
Inc(x, dx);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   244
Inc(y, dy);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   245
SDL_WarpMouse(x, y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   246
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   247
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   248
function hwSign(r: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   249
begin
2389
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   250
// yes, we have negative zero for a reason
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   251
if r.isNegative then hwSign:= -1 else hwSign:= 1
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   252
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   253
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   254
function Min(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   255
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   256
if a < b then Min:= a else Min:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   257
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   258
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   259
function Max(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   260
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   261
if a > b then Max:= a else Max:= b
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
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   264
procedure OutError(Msg: shortstring; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   265
begin
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   266
// obsolete? written in WriteLnToConsole() anyway
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   267
// {$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF}
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3676
diff changeset
   268
    WriteLnToConsole(Msg);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3676
diff changeset
   269
    if isFatalError then
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   270
    begin
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3676
diff changeset
   271
        SendIPC('E' + GetLastConsoleLine);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3676
diff changeset
   272
        SDL_Quit;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3676
diff changeset
   273
        halt(1)
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   274
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   275
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   276
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   277
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   278
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 56
diff changeset
   279
if not Assert then OutError(Msg, isFatal)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   280
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   281
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   282
procedure SDLTry(Assert: boolean; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   283
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   284
if not Assert then OutError(SDL_GetError, isFatal)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   285
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   286
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   287
procedure AdjustColor(var Color: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   288
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   289
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
   290
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   291
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   292
function IntToStr(n: LongInt): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   293
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   294
str(n, IntToStr)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   295
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   296
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   297
function FloatToStr(n: hwFloat): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   298
begin
1346
b4d51b95aa16 Make messages be more debug-friendly
unc0rr
parents: 1298
diff changeset
   299
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue))
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   300
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   301
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   302
procedure SetTextureParameters(enableClamp: Boolean);
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   303
begin
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   304
    if enableClamp and ((cReducedQuality and rqClampLess) = 0) then
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   305
    begin
3594
aeca3d8f1b29 turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents: 3593
diff changeset
   306
        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
aeca3d8f1b29 turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents: 3593
diff changeset
   307
        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   308
    end;
3594
aeca3d8f1b29 turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents: 3593
diff changeset
   309
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
aeca3d8f1b29 turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents: 3593
diff changeset
   310
    glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   311
end;
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   312
775
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   313
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   314
var dY, dX: Extended;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   315
begin
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   316
dY:= _dY.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   317
if _dY.isNegative then dY:= - dY;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   318
dX:= _dX.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   319
if _dX.isNegative then dX:= - dX;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   320
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   321
end;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   322
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   323
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   324
const _16divPI: Extended = 16/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   325
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   326
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   327
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   328
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   329
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   330
if _dX.isNegative then dX:= - dX;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   331
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   332
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   333
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   334
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   335
const MaxAngleDivPI: Extended = cMaxAngle/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   336
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   337
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   338
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   339
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   340
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   341
if _dX.isNegative then dX:= - dX;
438
04bcc3fb127a Fix AI using shotgun and Desert Eagle
unc0rr
parents: 433
diff changeset
   342
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   343
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   344
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   345
procedure SetKB(n: Longword);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   346
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   347
KBnum:= n
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   348
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   349
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   350
procedure SendKB;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   351
var s: shortstring;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   352
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   353
if KBnum <> 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   354
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   355
s:= 'K' + inttostr(KBnum);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   356
SendIPCRaw(@s, Length(s) + 1)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   357
end
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   358
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   359
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   360
procedure SetLittle(var r: hwFloat);
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   361
begin
553
5478386d935f - Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents: 543
diff changeset
   362
r:= SignAs(cLittle, r)
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   363
end;
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   364
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   365
procedure SendStat(sit: TStatInfoType; s: shortstring);
3381
f8800c44b3de Engine:
smxx
parents: 3377
diff changeset
   366
const stc: array [TStatInfoType] of char = 'rDkKHT';
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   367
var buf: shortstring;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   368
begin
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   369
buf:= 'i' + stc[sit] + s;
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   370
SendIPCRaw(@buf[0], length(buf) + 1)
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   371
end;
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   372
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 529
diff changeset
   373
function Str2PChar(const s: shortstring): PChar;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   374
const CharArray: array[byte] of Char = '';
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   375
begin
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   376
CharArray:= s;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   377
CharArray[Length(s)]:= #0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   378
Str2PChar:= @CharArray
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   379
end;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   380
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   381
function isPowerOf2(i: Longword): boolean;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   382
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   383
if i = 0 then exit(true);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   384
while (i and 1) = 0 do i:= i shr 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   385
isPowerOf2:= (i = 1)
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   386
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   387
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   388
function toPowerOf2(i: Longword): Longword;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   389
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   390
toPowerOf2:= 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   391
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   392
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   393
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   394
procedure ResetVertexArrays(texture: PTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   395
begin
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   396
with texture^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   397
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   398
    vb[0].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   399
    vb[0].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   400
    vb[1].X:= w;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   401
    vb[1].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   402
    vb[2].X:= w;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   403
    vb[2].Y:= h;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   404
    vb[3].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   405
    vb[3].Y:= h;
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   406
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   407
    tb[0].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   408
    tb[0].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   409
    tb[1].X:= rx;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   410
    tb[1].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   411
    tb[2].X:= rx;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   412
    tb[2].Y:= ry;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   413
    tb[3].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   414
    tb[3].Y:= ry
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   415
    end;
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   416
end;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   417
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   418
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
   419
begin
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   420
new(NewTexture);
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   421
NewTexture^.PrevTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   422
NewTexture^.NextTexture:= nil;
3537
8f5b3108f29c New approach to the low-res problem. Basically, we already have a 1024 minimum, and the tallest maps are restricting themselves to 2048 maximum. All backgrounds are scaled down 50%, then scaled up on draw. Saves memory, and backgrounds are already deliberately fuzzed for depth of field anyway.
nemo
parents: 3534
diff changeset
   423
NewTexture^.Scale:= 1;
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   424
if TextureList <> nil then
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   425
    begin
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   426
    TextureList^.PrevTexture:= NewTexture;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   427
    NewTexture^.NextTexture:= TextureList
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   428
    end;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   429
TextureList:= NewTexture;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   430
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   431
NewTexture^.w:= width;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   432
NewTexture^.h:= height;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   433
NewTexture^.rx:= 1.0;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   434
NewTexture^.ry:= 1.0;
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   435
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   436
ResetVertexArrays(NewTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   437
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   438
glGenTextures(1, @NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   439
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   440
glBindTexture(GL_TEXTURE_2D, NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   441
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
   442
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   443
SetTextureParameters(true);
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   444
end;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   445
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
   446
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
   447
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
   448
    tmpp: pointer;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   449
    fromP4, toP4: PLongWordArray;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   450
begin
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   451
new(Surface2Tex);
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   452
Surface2Tex^.PrevTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   453
Surface2Tex^.NextTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   454
if TextureList <> nil then
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   455
    begin
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   456
    TextureList^.PrevTexture:= Surface2Tex;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   457
    Surface2Tex^.NextTexture:= TextureList
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   458
    end;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   459
TextureList:= Surface2Tex;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   460
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   461
Surface2Tex^.w:= surf^.w;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   462
Surface2Tex^.h:= surf^.h;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   463
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   464
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
   465
begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   466
    TryDo(false, 'Surface2Tex failed, expecting 32 bit surface', true);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   467
    Surface2Tex^.id:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   468
    exit
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   469
end;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   470
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   471
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   472
glGenTextures(1, @Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   473
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   474
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   475
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   476
if SDL_MustLock(surf) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   477
    SDLTry(SDL_LockSurface(surf) >= 0, true);
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   478
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   479
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
   480
begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   481
    tw:= toPowerOf2(Surf^.w);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   482
    th:= toPowerOf2(Surf^.h);
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   483
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   484
    Surface2Tex^.rx:= Surf^.w / tw;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   485
    Surface2Tex^.ry:= Surf^.h / th;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2372
diff changeset
   486
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   487
    GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel);
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   488
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   489
        fromP4:= Surf^.pixels;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   490
        toP4:= tmpp;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   491
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   492
        for y:= 0 to Pred(Surf^.h) do
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   493
        begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   494
            for x:= 0 to Pred(Surf^.w) do toP4^[x]:= fromP4^[x];
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   495
            for x:= Surf^.w to Pred(tw) do toP4^[x]:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   496
            toP4:= @(toP4^[tw]);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   497
            fromP4:= @(fromP4^[Surf^.pitch div 4]);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   498
        end;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   499
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   500
        for y:= Surf^.h to Pred(th) do
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   501
        begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   502
            for x:= 0 to Pred(tw) do toP4^[x]:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   503
            toP4:= @(toP4^[tw]);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   504
        end;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   505
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   506
    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
   507
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   508
    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
   509
end
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   510
else
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   511
begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   512
    Surface2Tex^.rx:= 1.0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   513
    Surface2Tex^.ry:= 1.0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   514
    glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surf^.w, surf^.h, 0, GL_RGBA, GL_UNSIGNED_BYTE, surf^.pixels);
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   515
end;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   516
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   517
ResetVertexArrays(Surface2Tex);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   518
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   519
if SDL_MustLock(surf) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   520
    SDL_UnlockSurface(surf);
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   521
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   522
SetTextureParameters(enableClamp);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   523
end;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   524
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   525
procedure FreeTexture(tex: PTexture);
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   526
begin
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   527
    if tex <> nil then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   528
    begin
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   529
        if tex^.NextTexture <> nil then
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   530
            tex^.NextTexture^.PrevTexture:= tex^.PrevTexture;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   531
        if tex^.PrevTexture <> nil then
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   532
            tex^.PrevTexture^.NextTexture:= tex^.NextTexture
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   533
        else
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   534
            TextureList:= tex^.NextTexture;
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   535
        glDeleteTextures(1, @tex^.id);
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3464
diff changeset
   536
        Dispose(tex);
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   537
    end
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   538
end;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   539
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   540
function DecodeBase64(s: shortstring): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   541
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   542
var i, t, c: Longword;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   543
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   544
c:= 0;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   545
for i:= 1 to Length(s) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   546
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   547
    t:= Pos(s[i], table);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   548
    if s[i] = '=' then inc(c);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   549
    if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   550
    end;
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   551
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   552
i:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   553
t:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   554
while i <= length(s) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   555
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   556
    DecodeBase64[t    ]:= char((byte(s[i    ]) shl 2) or (byte(s[i + 1]) shr 4));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   557
    DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   558
    DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3])      ));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   559
    inc(t, 3);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   560
    inc(i, 4)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   561
    end;
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   562
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   563
if c < 3 then t:= t - c;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   564
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   565
byte(DecodeBase64[0]):= t - 1
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   566
end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   567
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   568
procedure MakeScreenshot(filename: shortstring);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   569
var p: Pointer;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   570
    size: Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   571
    f: file;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   572
    // Windows Bitmap Header
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   573
    head: array[0..53] of Byte = (
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   574
    $42, $4D, // identifier ("BM")
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   575
    0, 0, 0, 0, // file size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   576
    0, 0, 0, 0, // reserved
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   577
    54, 0, 0, 0, // starting offset
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   578
    40, 0, 0, 0, // header size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   579
    0, 0, 0, 0, // width
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   580
    0, 0, 0, 0, // height
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   581
    1, 0, // color planes
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   582
    24, 0, // bit depth
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   583
    0, 0, 0, 0, // compression method (uncompressed)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   584
    0, 0, 0, 0, // image size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   585
    96, 0, 0, 0, // horizontal resolution
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   586
    96, 0, 0, 0, // vertical resolution
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   587
    0, 0, 0, 0, // number of colors (all)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   588
    0, 0, 0, 0 // number of important colors
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   589
    );
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   590
begin
2745
11fce231f24a Engine:
smxx
parents: 2735
diff changeset
   591
playSound(sndShutter);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   592
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   593
// flash
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   594
ScreenFade:= sfFromWhite;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   595
ScreenFadeValue:= sfMax;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   596
ScreenFadeSpeed:= 5;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   597
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   598
size:= cScreenWidth * cScreenHeight * 3;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   599
p:= GetMem(size);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   600
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   601
// update header information and file name
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   602
3350
5cd02aafc612 Engine:
smxx
parents: 3337
diff changeset
   603
filename:= ParamStr(1) + '/Screenshots/' + filename + '.bmp';
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   604
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   605
head[$02]:= (size + 54) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   606
head[$03]:= ((size + 54) shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   607
head[$04]:= ((size + 54) shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   608
head[$05]:= ((size + 54) shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   609
head[$12]:= cScreenWidth and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   610
head[$13]:= (cScreenWidth shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   611
head[$14]:= (cScreenWidth shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   612
head[$15]:= (cScreenWidth shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   613
head[$16]:= cScreenHeight and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   614
head[$17]:= (cScreenHeight shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   615
head[$18]:= (cScreenHeight shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   616
head[$19]:= (cScreenHeight shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   617
head[$22]:= size and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   618
head[$23]:= (size shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   619
head[$24]:= (size shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   620
head[$25]:= (size shr 24) and $ff;
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   621
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   622
//remember that opengles operates on a single surface, so GL_FRONT *should* be implied
3663
8c28abf427f5 reduce the number of keywords used and switch to BMP format for screenshots
koda
parents: 3650
diff changeset
   623
//glReadBuffer(GL_FRONT);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   624
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   625
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   626
{$I-}
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   627
Assign(f, filename);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   628
Rewrite(f, 1);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   629
if IOResult = 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   630
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   631
    BlockWrite(f, head, sizeof(head));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   632
    BlockWrite(f, p^, size);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   633
    Close(f);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   634
    end;
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   635
{$I+}
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   636
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   637
FreeMem(p)
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   638
end;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   639
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   640
{$IFDEF DEBUGFILE}
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   641
procedure AddFileLog(s: shortstring);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   642
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   643
writeln(f, GameTicks: 6, ': ', s);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   644
flush(f)
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   645
end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   646
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   647
function RectToStr(Rect: TSDL_Rect): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   648
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   649
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
   650
end;
2242
2e8251933b71 initial support for touch input
koda
parents: 2210
diff changeset
   651
{$ENDIF}
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   652
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   653
function doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   654
{* 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
   655
var convertedSurf: PSDL_Surface = nil;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   656
begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   657
    if (tmpsurf^.format^.bitsperpixel = 24) or ((tmpsurf^.format^.bitsperpixel = 32) and (tmpsurf^.format^.rshift > tmpsurf^.format^.bshift)) then
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   658
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   659
        convertedSurf:= SDL_ConvertSurface(tmpsurf, @conversionFormat, SDL_SWSURFACE);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   660
        SDL_FreeSurface(tmpsurf);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   661
        exit(convertedSurf);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   662
    end;
2705
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   663
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   664
    exit(tmpsurf);
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   665
end;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   666
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   667
function endian(independent: LongWord): LongWord;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   668
begin
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   669
{$IFDEF ENDIAN_LITTLE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   670
endian:= independent;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   671
{$ELSE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   672
endian:= (((independent and $FF000000) shr 24) or
3365
37ac593e9027 wow all these files only for land preview and seed generation
koda
parents: 3355
diff changeset
   673
          ((independent and $00FF0000) shr 8) or
37ac593e9027 wow all these files only for land preview and seed generation
koda
parents: 3355
diff changeset
   674
          ((independent and $0000FF00) shl 8) or
37ac593e9027 wow all these files only for land preview and seed generation
koda
parents: 3355
diff changeset
   675
          ((independent and $000000FF) shl 24))
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   676
{$ENDIF}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   677
end;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   678
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   679
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   680
procedure initModule;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3295
diff changeset
   681
{$IFDEF DEBUGFILE}{$IFNDEF IPHONEOS}var i: LongInt;{$ENDIF}{$ENDIF}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   682
begin
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   683
    Pathz:= cPathz;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   684
        {*  REFERENCE
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   685
      4096 -> $FFFFF000
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   686
      2048 -> $FFFFF800
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   687
      1024 -> $FFFFFC00
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   688
       512 -> $FFFFFE00  *}
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   689
    if (cReducedQuality and rqLowRes) <> 0 then
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   690
    begin
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   691
        LAND_WIDTH:= 2048;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   692
        LAND_HEIGHT:= 1024;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   693
        LAND_WIDTH_MASK:= $FFFFF800;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   694
        LAND_HEIGHT_MASK:= $FFFFFC00;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   695
    end
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   696
    else
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   697
    begin
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   698
        LAND_WIDTH:= 4096;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   699
        LAND_HEIGHT:= 2048;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   700
        LAND_WIDTH_MASK:= $FFFFF000;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   701
        LAND_HEIGHT_MASK:= $FFFFF800
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   702
    end;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   703
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   704
    cDrownSpeed.QWordValue  := 257698038;       // 0.06
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3537
diff changeset
   705
    cDrownSpeedf            := 0.06;
3355
dc9e61e67484 cWindSpeed recalculation assumed GetRandom returns a value between 0.0-1.0 while in fact is in the 0.0-0.5 range; Halve cMaxWindSpeed to compensate.
palewolf
parents: 3350
diff changeset
   706
    cMaxWindSpeed.QWordValue:= 1073742;     // 0.00025
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   707
    cWindSpeed.QWordValue   := 429496;      // 0.0001
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3537
diff changeset
   708
    cWindSpeedf             := 0.0001;
3355
dc9e61e67484 cWindSpeed recalculation assumed GetRandom returns a value between 0.0-1.0 while in fact is in the 0.0-0.5 range; Halve cMaxWindSpeed to compensate.
palewolf
parents: 3350
diff changeset
   709
    cGravity                := cMaxWindSpeed * 2;
3593
ae50f63e4fa9 Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents: 3537
diff changeset
   710
    cGravityf               := 0.00025 * 2;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   711
    cDamageModifier         := _1;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   712
    TargetPoint             := cTargetPointRef;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   713
    TextureList             := nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   714
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   715
    // int, longint longword and byte
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   716
    CursorMovementX     := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   717
    CursorMovementY     := 0;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   718
    GameTicks           := 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   719
    TrainingTimeInc     := 10000;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   720
    TrainingTimeInD     := 500;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   721
    TrainingTimeInM     := 5000;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   722
    TrainingTimeMax     := 60000;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   723
    TimeTrialStartTime  := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   724
    TimeTrialStopTime   := 0;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   725
    cWaterLine          := LAND_HEIGHT;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   726
    cGearScrEdgesDist   := 240;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   727
    cHealthDecrease     := 0;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   728
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   729
    GameFlags           := 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   730
    TrainingFlags       := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   731
    TurnTimeLeft        := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   732
    cSuddenDTurns       := 15;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   733
    cDamagePercent      := 100;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   734
    cMineDudPercent     := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   735
    cTemplateFilter     := 0;
3133
1ab5f18f4df8 prg's maze generator
nemo
parents: 3115
diff changeset
   736
    cMapGen             := 0;//MAPGEN_REGULAR
1ab5f18f4df8 prg's maze generator
nemo
parents: 3115
diff changeset
   737
    cMazeSize           := 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   738
    cHedgehogTurnTime   := 45000;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   739
    cMinesTime          := 3000;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   740
    cMaxAIThinkTime     := 9000;
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   741
    cCloudsNumber       := 9;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   742
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   743
    cTagsMask       := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   744
    KBnum           := 0;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   745
    InitStepsFlags  := 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   746
    RealTicks       := 0;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   747
    AttackBar       := 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   748
    cCaseFactor     := 5;  {0..9}
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   749
    cLandAdditions  := 4;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   750
    cExplosives     := 2;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   751
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   752
    GameState       := Low(TGameState);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   753
    GameType        := gmtLocal;
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3634
diff changeset
   754
    zoom            := cDefaultZoomLevel;
ec90e573f47a add a timer selection for grenades
koda
parents: 3634
diff changeset
   755
    ZoomValue       := cDefaultZoomLevel;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   756
    WeaponTooltipTex:= nil;
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   757
    cLaserSighting  := false;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   758
    cVampiric       := false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   759
    cArtillery      := false;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   760
    flagMakeCapture := false;
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   761
    bBetweenTurns   := false;
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   762
    bWaterRising    := false;
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   763
    isCursorVisible := false;
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   764
    isTerminated    := false;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   765
    isInLag         := false;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   766
    isPaused        := false;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   767
    isInMultiShoot  := false;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   768
    isSpeed         := false;
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   769
    fastUntilLag    := false;
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   770
    isFirstFrame    := true;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   771
    isSEBackup      := true;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   772
    cSeed           := '';
3066
5c0efa437728 Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents: 3038
diff changeset
   773
    cVolumeDelta    := 0;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   774
    cHasFocus       := true;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   775
    cInactDelay     := 1250;
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   776
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   777
    ScreenFade      := sfNone;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   778
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   779
{$IFDEF IPHONEOS}
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   780
    if isPhone() then
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   781
        cMaxCaptions:= 3
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   782
    else
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   783
{$ENDIF}
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   784
        cMaxCaptions:= 4;
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   785
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3594
diff changeset
   786
{$IFDEF SDL13}
a8aa06bae895 tiy new overlay graphics
koda
parents: 3594
diff changeset
   787
    SDLwindow       := nil;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   788
{$ENDIF}
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   789
{$IFDEF DEBUGFILE}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   790
{$I-}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   791
{$IFDEF IPHONEOS}
3377
a3f0849f26bc add option to look at the previous debug log
koda
parents: 3365
diff changeset
   792
    Assign(f,'../Documents/debug.txt');
a3f0849f26bc add option to look at the previous debug log
koda
parents: 3365
diff changeset
   793
    Rewrite(f);
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   794
{$ELSE}
3533
03892fb97ab3 fix build and permissions problems when launching hwengine from command line
koda
parents: 3513
diff changeset
   795
    if (ParamStr(1) <> '') and (ParamStr(2) <> '') then
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   796
        if (ParamCount <> 3) and (ParamCount <> cDefaultParamNum) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   797
        begin
3534
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   798
            for i:= 0 to 7 do
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   799
            begin
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   800
                assign(f, ExtractFileDir(ParamStr(2)) + '/debug' + inttostr(i) + '.txt');
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   801
                rewrite(f);
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   802
                if IOResult = 0 then break;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   803
            end;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   804
            if IOResult <> 0 then f:= stderr; // if everything fails, write to stderr
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   805
        end
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   806
        else
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   807
        begin
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   808
            for i:= 0 to 7 do
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   809
            begin
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   810
                assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt');
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   811
                rewrite(f);
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   812
                if IOResult = 0 then break;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   813
            end;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   814
            if IOResult <> 0 then f:= stderr; // if everything fails, write to stderr
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   815
        end
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   816
    else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   817
        f:= stderr;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   818
{$ENDIF}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   819
{$I+}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   820
{$ENDIF}
3695
c11abf387a7d reverted stereo craziness - the experimental3D branch has been created for a reason
koda
parents: 3693
diff changeset
   821
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   822
end;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   823
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   824
procedure freeModule;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   825
begin
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3613
diff changeset
   826
    recordFileName:= '';
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   827
    while TextureList <> nil do FreeTexture(TextureList);
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
   828
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   829
{$IFDEF DEBUGFILE}
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   830
    writeln(f, 'halt at ', GameTicks, ' ticks. TurnTimeLeft = ', TurnTimeLeft);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   831
    flush(f);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   832
    close(f);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   833
{$ENDIF}
3676
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   834
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   835
    // re-init flags so they will always contain safe values
3676
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   836
    cScreenWidth    := 1024;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   837
    cScreenHeight   := 768;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   838
    cBits           := 32;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   839
    //ipcPort is in uIO
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   840
    cFullScreen     := false;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   841
    isSoundEnabled  := true;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   842
    isMusicEnabled  := false;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   843
    cLocaleFName    := 'en.txt';
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   844
    cInitVolume     := 50;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   845
    cTimerInterval  := 8;
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   846
    PathPrefix := './';
3676
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   847
    cShowFPS        := false;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   848
    cAltDamage      := true;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   849
    cReducedQuality := rqNone;
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   850
    //userNick is in uChat
fa29572fa56a fix issue #6 (missing nick in chat)
koda
parents: 3670
diff changeset
   851
    recordFileName  := '';
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   852
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   853
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   854
end.