hedgewars/uMisc.pas
author unc0rr
Wed, 17 Nov 2010 22:26:34 +0300
changeset 4371 ae172b2b03ed
parent 4359 83ef50815535
child 4374 bcefeeabaa33
permissions -rw-r--r--
Some more
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"}
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    20
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    21
unit uMisc;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    22
interface
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    23
4357
a1fcfc341a52 Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents: 4248
diff changeset
    24
uses    SDLh, uConsts, uFloat, GLunit, Math, uTypes;
2697
75880595a9f1 code cleanup and opengles optimizations
koda
parents: 2693
diff changeset
    25
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    26
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    27
procedure SplitBySpace(var a, b: shortstring);
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
    28
procedure SplitByChar(var a, b: ansistring; c: char);
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    29
function  EnumToStr(const en : TGearType) : shortstring; overload;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    30
function  EnumToStr(const en : TSound) : shortstring; overload;
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
    31
function  EnumToStr(const en : TAmmoType) : shortstring; overload;
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
    32
function  EnumToStr(const en : THogEffect) : 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
    33
procedure movecursor(dx, dy: LongInt);
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    34
function  hwSign(r: hwFloat): LongInt; inline;
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    35
function  Min(a, b: LongInt): LongInt; inline;
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    36
function  Max(a, b: LongInt): LongInt; inline;
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
    37
procedure OutError(Msg: shortstring; isFatalError: boolean);
3599
715a43602da8 sheepluva's inline patch, fix a crash in overlay
koda
parents: 3598
diff changeset
    38
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); inline;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    39
procedure SDLTry(Assert: boolean; isFatal: boolean);
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    40
function  IntToStr(n: LongInt): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    41
function  FloatToStr(n: hwFloat): shortstring;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    42
function  DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    43
function  DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    44
function  DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    45
(*
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    46
procedure AdjustColor(var Color: Longword);
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
    47
procedure SetKB(n: Longword);
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    48
*)
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
    49
procedure SendKB;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
    50
procedure SetLittle(var r: hwFloat);
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
    51
procedure SendStat(sit: TStatInfoType; s: shortstring);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
    52
function  Str2PChar(const s: shortstring): PChar;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    53
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
    54
function  Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture;
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
    55
procedure FreeTexture(tex: PTexture);
3599
715a43602da8 sheepluva's inline patch, fix a crash in overlay
koda
parents: 3598
diff changeset
    56
function  toPowerOf2(i: Longword): Longword; inline;
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
    57
function  DecodeBase64(s: shortstring): shortstring;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
    58
function  doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
3971
5c82ee165ed5 minor stuff
koda
parents: 3939
diff changeset
    59
function  endian(independent: LongWord): LongWord; inline;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    60
{$IFDEF DEBUGFILE}
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    61
procedure AddFileLog(s: shortstring);
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
    62
(* function  RectToStr(Rect: TSDL_Rect): shortstring; *)
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    63
{$ENDIF}
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
    64
procedure MakeScreenshot(filename: shortstring);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    65
4359
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    66
procedure initModule;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    67
procedure freeModule;
83ef50815535 Move variables from uMisc to uVariables
unC0Rr
parents: 4357
diff changeset
    68
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    69
implementation
4371
ae172b2b03ed Some more
unc0rr
parents: 4359
diff changeset
    70
uses uConsole, uIO, typinfo, sysutils, uVariables;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    71
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    72
var KBnum: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    73
{$IFDEF DEBUGFILE}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
    74
    f: textfile;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    75
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
    76
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    77
// should this include "strtolower()" for the split string?
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    78
procedure SplitBySpace(var a, b: shortstring);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    79
var i, t: LongInt;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    80
begin
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    81
i:= Pos(' ', a);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    82
if i > 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    83
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    84
    for t:= 1 to Pred(i) do
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    85
        if (a[t] >= 'A')and(a[t] <= 'Z') then Inc(a[t], 32);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    86
    b:= copy(a, i + 1, Length(a) - i);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    87
    byte(a[0]):= Pred(i)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    88
    end else b:= '';
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    89
end;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    90
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
    91
procedure SplitByChar(var a, b: ansistring; c: char);
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    92
var i: LongInt;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    93
begin
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    94
i:= Pos(c, a);
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
    95
if i > 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    96
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    97
    b:= copy(a, i + 1, Length(a) - i);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    98
    setlength(a, Pred(i));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
    99
    end else b:= '';
2747
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   100
end;
7889a3a9724f Server:
smxx
parents: 2745
diff changeset
   101
3337
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   102
function EnumToStr(const en : TGearType) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   103
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   104
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   105
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   106
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   107
function EnumToStr(const en : TSound) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   108
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   109
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   110
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   111
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   112
function EnumToStr(const en : TAmmoType) : shortstring; overload;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   113
begin
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   114
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en))
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   115
end;
75e7455c69ed Engine:
smxx
parents: 3305
diff changeset
   116
3756
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
   117
function EnumToStr(const en: THogEffect) : shortstring; overload;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
   118
begin
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
   119
    EnumToStr := GetEnumName(TypeInfo(THogEffect), ord(en))
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
   120
end;
d42571e2e6c9 lua function SetEffect to set and remove THogEffects
burp
parents: 3709
diff changeset
   121
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
   122
procedure movecursor(dx, dy: LongInt);
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   123
var x, y: LongInt;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   124
begin
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   125
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
   126
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   127
SDL_GetMouseState(@x, @y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   128
Inc(x, dx);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   129
Inc(y, dy);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   130
SDL_WarpMouse(x, y);
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   131
end;
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   132
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   133
function hwSign(r: hwFloat): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   134
begin
2389
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   135
// yes, we have negative zero for a reason
bc3e45a4d5fb - Remove cake fix
unc0rr
parents: 2382
diff changeset
   136
if r.isNegative then hwSign:= -1 else hwSign:= 1
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   137
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   138
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   139
function Min(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   140
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   141
if a < b then Min:= a else Min:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   142
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   143
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   144
function Max(a, b: LongInt): LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   145
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   146
if a > b then Max:= a else Max:= b
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   147
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   148
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   149
procedure OutError(Msg: shortstring; isFatalError: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   150
begin
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   151
// obsolete? written in WriteLnToConsole() anyway
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   152
// {$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF}
4046
cfdbddc4b385 making indentation consistent (noticed while debugging)
nemo
parents: 4003
diff changeset
   153
WriteLnToConsole(Msg);
cfdbddc4b385 making indentation consistent (noticed while debugging)
nemo
parents: 4003
diff changeset
   154
if isFatalError then
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   155
    begin
4046
cfdbddc4b385 making indentation consistent (noticed while debugging)
nemo
parents: 4003
diff changeset
   156
    SendIPC('E' + GetLastConsoleLine);
cfdbddc4b385 making indentation consistent (noticed while debugging)
nemo
parents: 4003
diff changeset
   157
    SDL_Quit;
cfdbddc4b385 making indentation consistent (noticed while debugging)
nemo
parents: 4003
diff changeset
   158
    halt(1)
3407
dcc129c4352e Engine:
smxx
parents: 3381
diff changeset
   159
    end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   160
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   161
2905
f3c79f7193a9 Engine:
smxx
parents: 2882
diff changeset
   162
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   163
begin
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 56
diff changeset
   164
if not Assert then OutError(Msg, isFatal)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   165
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   166
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   167
procedure SDLTry(Assert: boolean; isFatal: boolean);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   168
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   169
if not Assert then OutError(SDL_GetError, isFatal)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   170
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   171
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   172
(*
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 183
diff changeset
   173
procedure AdjustColor(var Color: Longword);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   174
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   175
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
   176
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   177
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   178
procedure SetKB(n: Longword);
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   179
begin
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   180
KBnum:= n
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   181
end;
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   182
*)
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   183
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   184
316
57d50189ad86 Calculate land digest
unc0rr
parents: 308
diff changeset
   185
function IntToStr(n: LongInt): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   186
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   187
str(n, IntToStr)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   188
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   189
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   190
function FloatToStr(n: hwFloat): shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   191
begin
1346
b4d51b95aa16 Make messages be more debug-friendly
unc0rr
parents: 1298
diff changeset
   192
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue))
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   193
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   194
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   195
procedure SetTextureParameters(enableClamp: Boolean);
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   196
begin
3611
ed00aa2b339e interpret parameters before initializing everything
koda
parents: 3599
diff changeset
   197
    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
   198
    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
   199
        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
   200
        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
   201
    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
   202
    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
   203
    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
   204
end;
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   205
775
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   206
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   207
var dY, dX: Extended;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   208
begin
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   209
dY:= _dY.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   210
if _dY.isNegative then dY:= - dY;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   211
dX:= _dX.QWordValue / $100000000;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   212
if _dX.isNegative then dX:= - dX;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   213
DxDy2Angle:= arctan2(dY, dX) * 180 / pi
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   214
end;
23c253aae336 - Some optimizations
unc0rr
parents: 771
diff changeset
   215
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   216
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   217
const _16divPI: Extended = 16/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   218
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   219
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   220
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   221
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   222
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   223
if _dX.isNegative then dX:= - dX;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   224
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   225
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   226
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 370
diff changeset
   227
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   228
const MaxAngleDivPI: Extended = cMaxAngle/pi;
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   229
var dY, dX: Extended;
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   230
begin
370
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   231
dY:= _dY.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   232
if _dY.isNegative then dY:= - dY;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   233
dX:= _dX.QWordValue / $100000000;
c75410fe3133 - Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents: 351
diff changeset
   234
if _dX.isNegative then dX:= - dX;
438
04bcc3fb127a Fix AI using shotgun and Desert Eagle
unc0rr
parents: 433
diff changeset
   235
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI)
100
f324a18698fe Get rid of x86 assembler when using fpc
unc0rr
parents: 95
diff changeset
   236
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   237
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   238
procedure SendKB;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   239
var s: shortstring;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   240
begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   241
if KBnum <> 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   242
begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   243
s:= 'K' + inttostr(KBnum);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   244
SendIPCRaw(@s, Length(s) + 1)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   245
end
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   246
end;
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 196
diff changeset
   247
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   248
procedure SetLittle(var r: hwFloat);
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   249
begin
553
5478386d935f - Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents: 543
diff changeset
   250
r:= SignAs(cLittle, r)
300
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   251
end;
be94799f33d2 Simplify hedgehogs physics code, make it better
unc0rr
parents: 296
diff changeset
   252
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   253
procedure SendStat(sit: TStatInfoType; s: shortstring);
3784
75aa91bea32b Extend statistics collection (TeamKills, TurnSkips, TeamDamage)
burp
parents: 3779
diff changeset
   254
const stc: array [TStatInfoType] of char = 'rDkKHTPsSB';
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   255
var buf: shortstring;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   256
begin
2382
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   257
buf:= 'i' + stc[sit] + s;
bfd378dfc4e7 Optimize network traffic a bit:
unc0rr
parents: 2376
diff changeset
   258
SendIPCRaw(@buf[0], length(buf) + 1)
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   259
end;
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   260
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 529
diff changeset
   261
function Str2PChar(const s: shortstring): PChar;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   262
const CharArray: array[byte] of Char = '';
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   263
begin
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   264
CharArray:= s;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   265
CharArray[Length(s)]:= #0;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   266
Str2PChar:= @CharArray
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   267
end;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 346
diff changeset
   268
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   269
function isPowerOf2(i: Longword): boolean;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   270
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   271
if i = 0 then exit(true);
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   272
while (i and 1) = 0 do i:= i shr 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   273
isPowerOf2:= (i = 1)
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   274
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   275
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   276
function toPowerOf2(i: Longword): Longword;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   277
begin
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   278
toPowerOf2:= 1;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   279
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   280
end;
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   281
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   282
procedure ResetVertexArrays(texture: PTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   283
begin
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   284
with texture^ do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   285
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   286
    vb[0].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   287
    vb[0].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   288
    vb[1].X:= w;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   289
    vb[1].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   290
    vb[2].X:= w;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   291
    vb[2].Y:= h;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   292
    vb[3].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   293
    vb[3].Y:= h;
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   294
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   295
    tb[0].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   296
    tb[0].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   297
    tb[1].X:= rx;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   298
    tb[1].Y:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   299
    tb[2].X:= rx;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   300
    tb[2].Y:= ry;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   301
    tb[3].X:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   302
    tb[3].Y:= ry
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   303
    end;
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   304
end;
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   305
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   306
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
   307
begin
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   308
new(NewTexture);
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   309
NewTexture^.PrevTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   310
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
   311
NewTexture^.Scale:= 1;
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   312
if TextureList <> nil then
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   313
    begin
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   314
    TextureList^.PrevTexture:= NewTexture;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   315
    NewTexture^.NextTexture:= TextureList
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   316
    end;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   317
TextureList:= NewTexture;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   318
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   319
NewTexture^.w:= width;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   320
NewTexture^.h:= height;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   321
NewTexture^.rx:= 1.0;
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   322
NewTexture^.ry:= 1.0;
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   323
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   324
ResetVertexArrays(NewTexture);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   325
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   326
glGenTextures(1, @NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   327
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   328
glBindTexture(GL_TEXTURE_2D, NewTexture^.id);
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   329
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
   330
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   331
SetTextureParameters(true);
1180
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   332
end;
e56317fdf78d Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents: 1128
diff changeset
   333
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
   334
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
   335
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
   336
    tmpp: pointer;
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   337
    fromP4, toP4: PLongWordArray;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   338
begin
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   339
new(Surface2Tex);
2715
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   340
Surface2Tex^.PrevTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   341
Surface2Tex^.NextTexture:= nil;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   342
if TextureList <> nil then
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   343
    begin
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   344
    TextureList^.PrevTexture:= Surface2Tex;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   345
    Surface2Tex^.NextTexture:= TextureList
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   346
    end;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   347
TextureList:= Surface2Tex;
0e4e0db79e2a Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents: 2705
diff changeset
   348
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   349
Surface2Tex^.w:= surf^.w;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   350
Surface2Tex^.h:= surf^.h;
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   351
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   352
if (surf^.format^.BytesPerPixel <> 4) then
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   353
    begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   354
    TryDo(false, 'Surface2Tex failed, expecting 32 bit surface', true);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   355
    Surface2Tex^.id:= 0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   356
    exit
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   357
    end;
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   358
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   359
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   360
glGenTextures(1, @Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   361
755
edf26e9554ac Now show sprites too
unc0rr
parents: 754
diff changeset
   362
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   363
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   364
if SDL_MustLock(surf) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   365
    SDLTry(SDL_LockSurface(surf) >= 0, true);
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   366
2428
6800f8aa0184 Huge Smaxx patch with some fixes by me:
unc0rr
parents: 2392
diff changeset
   367
if (not SupportNPOTT) and (not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h))) then
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   368
    begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   369
    tw:= toPowerOf2(Surf^.w);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   370
    th:= toPowerOf2(Surf^.h);
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   371
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   372
    Surface2Tex^.rx:= Surf^.w / tw;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   373
    Surface2Tex^.ry:= Surf^.h / th;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2372
diff changeset
   374
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   375
    GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel);
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   376
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   377
    fromP4:= Surf^.pixels;
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   378
    toP4:= tmpp;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   379
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   380
    for y:= 0 to Pred(Surf^.h) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   381
        begin
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   382
        for x:= 0 to Pred(Surf^.w) do toP4^[x]:= fromP4^[x];
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   383
        for x:= Surf^.w to Pred(tw) do toP4^[x]:= 0;
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   384
        toP4:= @(toP4^[tw]);
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   385
        fromP4:= @(fromP4^[Surf^.pitch div 4])
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   386
        end;
1896
fdacad5d0acc Don't use GLU
unc0rr
parents: 1895
diff changeset
   387
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   388
    for y:= Surf^.h to Pred(th) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   389
        begin
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   390
        for x:= 0 to Pred(tw) do toP4^[x]:= 0;
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   391
        toP4:= @(toP4^[tw])
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   392
        end;
771
86fbe8753a7c - Enable back console (doesn't render yet)
unc0rr
parents: 762
diff changeset
   393
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   394
    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
   395
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   396
    FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel)
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   397
    end
2576
2eb7ce1c1f19 code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents: 2575
diff changeset
   398
else
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   399
    begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   400
    Surface2Tex^.rx:= 1.0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   401
    Surface2Tex^.ry:= 1.0;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   402
    glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surf^.w, surf^.h, 0, GL_RGBA, GL_UNSIGNED_BYTE, surf^.pixels);
3859
ed3b6b3e9d6a more fixing of indentation
nemo
parents: 3784
diff changeset
   403
    end;
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   404
1912
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   405
ResetVertexArrays(Surface2Tex);
c3d31fb59f0e Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents: 1911
diff changeset
   406
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   407
if SDL_MustLock(surf) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   408
    SDL_UnlockSurface(surf);
754
94ac14829085 Some further work on switching to OpenGL rendering
unc0rr
parents: 753
diff changeset
   409
2447
08d623a494e6 Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents: 2428
diff changeset
   410
SetTextureParameters(enableClamp);
753
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   411
end;
40fc0deb388f Start conversion to OpenGL rendering
unc0rr
parents: 626
diff changeset
   412
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   413
procedure FreeTexture(tex: PTexture);
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   414
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
   415
    if tex <> nil then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   416
    begin
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   417
        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
   418
            tex^.NextTexture^.PrevTexture:= tex^.PrevTexture;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   419
        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
   420
            tex^.PrevTexture^.NextTexture:= tex^.NextTexture
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3695
diff changeset
   421
        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
   422
            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
   423
        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
   424
        Dispose(tex);
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   425
    end
759
8da05b316d81 Enable back fps counter
unc0rr
parents: 755
diff changeset
   426
end;
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   427
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   428
function DecodeBase64(s: shortstring): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   429
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   430
var i, t, c: Longword;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   431
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   432
c:= 0;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   433
for i:= 1 to Length(s) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   434
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   435
    t:= Pos(s[i], table);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   436
    if s[i] = '=' then inc(c);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   437
    if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   438
    end;
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   439
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   440
i:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   441
t:= 1;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   442
while i <= length(s) do
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   443
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   444
    DecodeBase64[t    ]:= char((byte(s[i    ]) shl 2) or (byte(s[i + 1]) shr 4));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   445
    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
   446
    DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3])      ));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   447
    inc(t, 3);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   448
    inc(i, 4)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   449
    end;
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   450
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   451
if c < 3 then t:= t - c;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   452
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   453
byte(DecodeBase64[0]):= t - 1
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   454
end;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   455
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   456
procedure MakeScreenshot(filename: shortstring);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   457
var p: Pointer;
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   458
    size: Longword;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   459
    f: file;
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   460
    // Windows Bitmap Header
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   461
    head: array[0..53] of Byte = (
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   462
    $42, $4D, // identifier ("BM")
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   463
    0, 0, 0, 0, // file size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   464
    0, 0, 0, 0, // reserved
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   465
    54, 0, 0, 0, // starting offset
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   466
    40, 0, 0, 0, // header size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   467
    0, 0, 0, 0, // width
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   468
    0, 0, 0, 0, // height
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   469
    1, 0, // color planes
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   470
    24, 0, // bit depth
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   471
    0, 0, 0, 0, // compression method (uncompressed)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   472
    0, 0, 0, 0, // image size
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   473
    96, 0, 0, 0, // horizontal resolution
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   474
    96, 0, 0, 0, // vertical resolution
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   475
    0, 0, 0, 0, // number of colors (all)
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   476
    0, 0, 0, 0 // number of important colors
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   477
    );
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   478
begin
3107
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   479
// flash
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   480
ScreenFade:= sfFromWhite;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   481
ScreenFadeValue:= sfMax;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   482
ScreenFadeSpeed:= 5;
1fa539758c10 Engine:
smxx
parents: 3066
diff changeset
   483
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   484
size:= cScreenWidth * cScreenHeight * 3;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   485
p:= GetMem(size);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   486
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   487
// update header information and file name
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   488
3350
5cd02aafc612 Engine:
smxx
parents: 3337
diff changeset
   489
filename:= ParamStr(1) + '/Screenshots/' + filename + '.bmp';
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   490
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   491
head[$02]:= (size + 54) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   492
head[$03]:= ((size + 54) shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   493
head[$04]:= ((size + 54) shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   494
head[$05]:= ((size + 54) shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   495
head[$12]:= cScreenWidth and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   496
head[$13]:= (cScreenWidth shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   497
head[$14]:= (cScreenWidth shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   498
head[$15]:= (cScreenWidth shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   499
head[$16]:= cScreenHeight and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   500
head[$17]:= (cScreenHeight shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   501
head[$18]:= (cScreenHeight shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   502
head[$19]:= (cScreenHeight shr 24) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   503
head[$22]:= size and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   504
head[$23]:= (size shr 8) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   505
head[$24]:= (size shr 16) and $ff;
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   506
head[$25]:= (size shr 24) and $ff;
2163
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   507
12730f5e79b9 koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents: 2162
diff changeset
   508
//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
   509
//glReadBuffer(GL_FRONT);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   510
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   511
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   512
{$I-}
2735
f2008d0ce3f8 Engine:
smxx
parents: 2726
diff changeset
   513
Assign(f, filename);
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   514
Rewrite(f, 1);
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   515
if IOResult = 0 then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   516
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   517
    BlockWrite(f, head, sizeof(head));
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   518
    BlockWrite(f, p^, size);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   519
    Close(f);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   520
    end;
1080
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   521
{$I+}
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   522
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   523
FreeMem(p)
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   524
end;
8735046fc698 Repair screenshots capture on 'C' key press
unc0rr
parents: 1066
diff changeset
   525
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   526
{$IFDEF DEBUGFILE}
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   527
procedure AddFileLog(s: shortstring);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   528
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   529
writeln(f, GameTicks: 6, ': ', s);
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   530
flush(f)
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   531
end;
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   532
(*
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   533
function RectToStr(Rect: TSDL_Rect): shortstring;
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   534
begin
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 945
diff changeset
   535
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
   536
end;
3929
9a4bbc1f67a2 Inline most of uFloat (saves ~7.5% opcount on a test game), inline a few very short candidates in uMisc, comment out some unused functions in uMisc
nemo
parents: 3914
diff changeset
   537
*)
2242
2e8251933b71 initial support for touch input
koda
parents: 2210
diff changeset
   538
{$ENDIF}
306
7b61834edcf6 - Better blowtorch
unc0rr
parents: 304
diff changeset
   539
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   540
function doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   541
{* 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
   542
var convertedSurf: PSDL_Surface = nil;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   543
begin
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   544
    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
   545
    begin
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   546
        convertedSurf:= SDL_ConvertSurface(tmpsurf, @conversionFormat, SDL_SWSURFACE);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   547
        SDL_FreeSurface(tmpsurf);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   548
        exit(convertedSurf);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   549
    end;
2705
2b5625c4ec16 fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents: 2699
diff changeset
   550
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   551
    exit(tmpsurf);
2619
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   552
end;
bc2786a00fb8 fix wrong ttf blending in ppc
koda
parents: 2607
diff changeset
   553
3971
5c82ee165ed5 minor stuff
koda
parents: 3939
diff changeset
   554
function endian(independent: LongWord): LongWord; inline;
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   555
begin
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   556
{$IFDEF ENDIAN_LITTLE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   557
endian:= independent;
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   558
{$ELSE}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   559
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
   560
          ((independent and $00FF0000) shr 8) or
37ac593e9027 wow all these files only for land preview and seed generation
koda
parents: 3355
diff changeset
   561
          ((independent and $0000FF00) shl 8) or
37ac593e9027 wow all these files only for land preview and seed generation
koda
parents: 3355
diff changeset
   562
          ((independent and $000000FF) shl 24))
2670
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   563
{$ENDIF}
1b327b7515ed regression, powerpc colors working again
koda
parents: 2666
diff changeset
   564
end;
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   565
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   566
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   567
procedure initModule;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3295
diff changeset
   568
{$IFDEF DEBUGFILE}{$IFNDEF IPHONEOS}var i: LongInt;{$ENDIF}{$ENDIF}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   569
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2947
diff changeset
   570
    KBnum           := 0;
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   571
488
4dee644f382d Fix run with DEBUGFILE turned off
unc0rr
parents: 438
diff changeset
   572
{$IFDEF DEBUGFILE}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   573
{$I-}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   574
{$IFDEF IPHONEOS}
3914
c5c903c6225b Engine:
smaxx
parents: 3859
diff changeset
   575
    Assign(f,'../Documents/hw-' + cLogfileBase + '.log');
3377
a3f0849f26bc add option to look at the previous debug log
koda
parents: 3365
diff changeset
   576
    Rewrite(f);
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
   577
{$ELSE}
3533
03892fb97ab3 fix build and permissions problems when launching hwengine from command line
koda
parents: 3513
diff changeset
   578
    if (ParamStr(1) <> '') and (ParamStr(2) <> '') then
3709
c7849b74748d clean and reorder arguments passed to engine
koda
parents: 3697
diff changeset
   579
        if (ParamCount <> 3) and (ParamCount <> cDefaultParamNum) then
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   580
        begin
3534
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   581
            for i:= 0 to 7 do
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   582
            begin
3932
2fc211f60015 Engine:
smaxx
parents: 3929
diff changeset
   583
                assign(f, ExtractFileDir(ParamStr(2)) + '/' + cLogfileBase + inttostr(i) + '.log');
3534
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   584
                rewrite(f);
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   585
                if IOResult = 0 then break;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   586
            end;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   587
            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
   588
        end
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   589
        else
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   590
        begin
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   591
            for i:= 0 to 7 do
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   592
            begin
3914
c5c903c6225b Engine:
smaxx
parents: 3859
diff changeset
   593
                assign(f, ParamStr(1) + '/Logs/' + cLogfileBase + inttostr(i) + '.log');
3534
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   594
                rewrite(f);
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   595
                if IOResult = 0 then break;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   596
            end;
51521238724f ok really fix the command line utility
koda
parents: 3533
diff changeset
   597
            if IOResult <> 0 then f:= stderr; // if everything fails, write to stderr
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   598
        end
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   599
    else
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   600
        f:= stderr;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   601
{$ENDIF}
337
a46abb65eb0c - Fix not debug build
unc0rr
parents: 316
diff changeset
   602
{$I+}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   603
{$ENDIF}
3695
c11abf387a7d reverted stereo craziness - the experimental3D branch has been created for a reason
koda
parents: 3693
diff changeset
   604
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   605
end;
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   606
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   607
procedure freeModule;
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   608
begin
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3613
diff changeset
   609
    recordFileName:= '';
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   610
    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
   611
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   612
{$IFDEF DEBUGFILE}
2947
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   613
    writeln(f, 'halt at ', GameTicks, ' ticks. TurnTimeLeft = ', TurnTimeLeft);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   614
    flush(f);
803b277e4894 hate Smaxx (tested)
unc0rr
parents: 2915
diff changeset
   615
    close(f);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   616
{$ENDIF}
2699
249adefa9c1c replace initialization/finalization statements with custom init functions
koda
parents: 2698
diff changeset
   617
end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   618
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 2
diff changeset
   619
end.