hedgewars/uStore.pas
author unc0rr
Tue, 22 May 2007 16:31:59 +0000
changeset 518 d48d8c0a546d
parent 510 4e994e1b7abb
child 534 92fb2b0d5117
permissions -rw-r--r--
- Fix bug with desert damaging current hedgehog - Pass string as 'const' parameters
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     1
(*
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     2
 * Hedgewars, a worms-like game
393
db01cc79f278 Update copyright information
unc0rr
parents: 371
diff changeset
     3
 * Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com>
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    12
 * GNU General Public License for more details.
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 161
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    17
 *)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    18
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    19
unit uStore;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    21
uses uConsts, uTeams, SDLh, uFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    22
{$INCLUDE options.inc}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    23
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    24
procedure StoreInit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
procedure StoreLoad;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
procedure StoreRelease;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    27
procedure DrawGear(Stuff : TStuff; X, Y: LongInt; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    28
procedure DrawSpriteFromRect(r: TSDL_Rect; X, Y, Height, Position: LongInt; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    29
procedure DrawSprite (Sprite: TSprite; X, Y, Frame: LongInt; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    30
procedure DrawSprite2(Sprite: TSprite; X, Y, FrameX, FrameY: LongInt; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    31
procedure DrawSurfSprite(X, Y, Height, Frame: LongInt; Source, Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    32
procedure DrawLand (X, Y: LongInt; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    33
procedure DXOutText(X, Y: LongInt; Font: THWFont; s: string; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    34
procedure DrawCaption(X, Y: LongInt; Rect: TSDL_Rect; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    35
procedure DrawCentered(X, Top: LongInt; Source, Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    36
procedure DrawFromStoreRect(X, Y: LongInt; Rect: PSDL_Rect; Surface: PSDL_Surface);
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    37
procedure DrawHedgehog(X, Y: LongInt; Dir: LongInt; Pos, Step: LongWord; Surface: PSDL_Surface);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    38
function  RenderString(s: string; Color: Longword; font: THWFont): PSDL_Surface;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    39
procedure RenderHealth(var Hedgehog: THedgehog);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    40
procedure AddProgress;
510
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
    41
procedure FinishProgress;
518
d48d8c0a546d - Fix bug with desert damaging current hedgehog
unc0rr
parents: 510
diff changeset
    42
function  LoadImage(const filename: string; hasAlpha, critical, setTransparent: boolean): PSDL_Surface;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    43
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    44
var PixelFormat: PSDL_PixelFormat;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    45
 SDLPrimSurface: PSDL_Surface;
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 208
diff changeset
    46
   PauseSurface: PSDL_Surface;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    47
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    48
implementation
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 208
diff changeset
    49
uses uMisc, uConsole, uLand, uLocale;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    50
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    51
var StoreSurface,
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    52
       HHSurface: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    53
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    54
procedure StoreInit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    55
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    56
StoreSurface:= SDL_CreateRGBSurface(SDL_HWSURFACE, 576, 1024, cBits, PixelFormat^.RMask, PixelFormat^.GMask, PixelFormat^.BMask, PixelFormat^.AMask);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    57
TryDo( StoreSurface <> nil, errmsgCreateSurface + ': store' , true);
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    58
SDL_FillRect(StoreSurface, nil, 0);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    59
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    60
TryDo(SDL_SetColorKey( StoreSurface, SDL_SRCCOLORKEY or SDL_RLEACCEL, 0) = 0, errmsgTransparentSet, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    61
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    62
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    63
procedure LoadToSurface(Filename: String; Surface: PSDL_Surface; X, Y: LongInt);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    64
var tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    65
    rr: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    66
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    67
  tmpsurf:= LoadImage(Filename, false, true, false);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    68
  rr.x:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    69
  rr.y:= Y;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    70
  SDL_UpperBlit(tmpsurf, nil, Surface, @rr);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    71
  SDL_FreeSurface(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    72
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    73
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    74
procedure DrawRoundRect(rect: PSDL_Rect; BorderColor, FillColor: Longword; Surface: PSDL_Surface; Clear: boolean);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    75
var r: TSDL_Rect;
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    76
begin
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    77
r:= rect^;
83
207c85fbef51 - First hedgehog in team has first turn in team
unc0rr
parents: 80
diff changeset
    78
if Clear then SDL_FillRect(Surface, @r, 0);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    79
r.y:= rect^.y + 1;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    80
r.h:= rect^.h - 2;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    81
SDL_FillRect(Surface, @r, BorderColor);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    82
r.x:= rect^.x + 1;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    83
r.w:= rect^.w - 2;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    84
r.y:= rect^.y;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    85
r.h:= rect^.h;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    86
SDL_FillRect(Surface, @r, BorderColor);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    87
r.x:= rect^.x + 2;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    88
r.y:= rect^.y + 1;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    89
r.w:= rect^.w - 4;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    90
r.h:= rect^.h - 2;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    91
SDL_FillRect(Surface, @r, FillColor);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    92
r.x:= rect^.x + 1;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    93
r.y:= rect^.y + 2;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    94
r.w:= rect^.w - 2;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
    95
r.h:= rect^.h - 4;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    96
SDL_FillRect(Surface, @r, FillColor)
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    97
end;
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
    98
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
    99
function WriteInRoundRect(Surface: PSDL_Surface; X, Y: LongInt; Color: LongWord; Font: THWFont; s: string): TSDL_Rect;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   100
var w, h: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   101
    tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   102
    clr: TSDL_Color;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   103
    Result: TSDL_Rect;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   104
begin
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   105
TTF_SizeUTF8(Fontz[Font].Handle, Str2PChar(s), w, h);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   106
Result.x:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   107
Result.y:= Y;
202
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   108
Result.w:= w + FontBorder * 2 + 4;
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   109
Result.h:= h + FontBorder * 2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   110
DrawRoundRect(@Result, cWhiteColor, cColorNearBlack, Surface, true);
189
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   111
clr.r:= Color shr 16;
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   112
clr.g:= (Color shr 8) and $FF;
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   113
clr.b:= Color and $FF;
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   114
tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, Str2PChar(s), clr.value);
202
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   115
Result.x:= X + FontBorder + 2;
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   116
Result.y:= Y + FontBorder;
199
f156e54736a4 Better error message
unc0rr
parents: 198
diff changeset
   117
SDLTry(tmpsurf <> nil, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   118
SDL_UpperBlit(tmpsurf, nil, Surface, @Result);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   119
SDL_FreeSurface(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
Result.x:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
Result.y:= Y;
202
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   122
Result.w:= w + FontBorder * 2 + 4;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   123
Result.h:= h + FontBorder * 2;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   124
WriteInRoundRect:= Result
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   125
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   126
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   127
procedure StoreLoad;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   128
var i: TStuff;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   129
    ii: TSprite;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
    fi: THWFont;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   131
    s: string;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   132
    tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   134
    procedure WriteNames(Font: THWFont);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   135
    var Team: PTeam;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   136
        i: LongInt;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   137
        r, rr: TSDL_Rect;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   138
        drY: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   139
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   140
    r.x:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   141
    r.y:= 272;
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 55
diff changeset
   142
    drY:= cScreenHeight - 4;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
    Team:= TeamsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
    while Team<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
      begin
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   146
      r.w:= 104;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   147
      Team^.NameTag:= RenderString(Team^.TeamName, Team^.Color, Font);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   148
      r.w:= cTeamHealthWidth + 5;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   149
      r.h:= Team^.NameTag^.h;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   150
      DrawRoundRect(@r, cWhiteColor, cColorNearBlack, StoreSurface, true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   151
      Team^.HealthRect:= r;
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   152
      rr:= r;
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   153
      inc(rr.x, 2); dec(rr.w, 4); inc(rr.y, 2); dec(rr.h, 4);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   154
      DrawRoundRect(@rr, Team^.AdjColor, Team^.AdjColor, StoreSurface, false);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   155
      inc(r.y, r.h);
49
3afe33c1cf06 - Teams health bars sorting
unc0rr
parents: 47
diff changeset
   156
      dec(drY, r.h + 2);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   157
      Team^.DrawHealthY:= drY;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   158
      for i:= 0 to 7 do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   159
          with Team^.Hedgehogs[i] do
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   160
               if Gear <> nil then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   161
                  NameTag:= RenderString(Name, Team^.Color, fnt16);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   162
      Team:= Team^.Next
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   163
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   164
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   165
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
    procedure MakeCrossHairs;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   167
    var Team: PTeam;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   168
        tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   169
        s: string;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   170
    begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   171
    s:= Pathz[ptGraphics] + '/' + cCHFileName;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   172
    tmpsurf:= LoadImage(s, true, true, false);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   173
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   174
    Team:= TeamsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   175
    while Team<>nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   176
      begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   177
      Team^.CrosshairSurf:= SDL_CreateRGBSurface(SDL_HWSURFACE, tmpsurf^.w, tmpsurf^.h, cBits, PixelFormat^.RMask, PixelFormat^.GMask, PixelFormat^.BMask, PixelFormat^.AMask);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   178
      TryDo(Team^.CrosshairSurf <> nil, errmsgCreateSurface, true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   179
      SDL_FillRect(Team^.CrosshairSurf, nil, Team^.AdjColor);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   180
      SDL_UpperBlit(tmpsurf, nil, Team^.CrosshairSurf, nil);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   181
      TryDo(SDL_SetColorKey(Team^.CrosshairSurf, SDL_SRCCOLORKEY or SDL_RLEACCEL, 0) = 0, errmsgTransparentSet, true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   182
      Team:= Team^.Next
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   183
      end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   184
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   185
    SDL_FreeSurface(tmpsurf)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   186
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   187
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   188
    procedure InitHealth;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
    var p: PTeam;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   190
        i: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   191
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   192
    p:= TeamsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   193
    while p <> nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   194
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   195
          for i:= 0 to cMaxHHIndex do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   196
              if p^.Hedgehogs[i].Gear <> nil then
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   197
                 RenderHealth(p^.Hedgehogs[i]);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   198
          p:= p^.Next
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   199
          end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   200
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   201
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   202
    procedure LoadGraves;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   203
    var p: PTeam;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   204
        l: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   205
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   206
    p:= TeamsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   207
    l:= 512;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   208
    while p <> nil do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   209
          begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   210
          dec(l, 32);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   211
          if p^.GraveName = '' then p^.GraveName:= 'Simple';
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   212
          LoadToSurface(Pathz[ptGraves] + '/' + p^.GraveName, StoreSurface, l, 512);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   213
          p^.GraveRect.x:= l;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   214
          p^.GraveRect.y:= 512;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   215
          p^.GraveRect.w:= 32;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   216
          p^.GraveRect.h:= 256;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   217
          p:= p^.Next
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   218
          end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   219
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
    procedure GetSkyColor;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 105
diff changeset
   222
    var p: PByteArray;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   223
    begin
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   224
    if SDL_MustLock(SpritesData[sprSky].Surface) then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   225
       SDLTry(SDL_LockSurface(SpritesData[sprSky].Surface) >= 0, true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   226
    p:= SpritesData[sprSky].Surface^.pixels;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   227
    case SpritesData[sprSky].Surface^.format^.BytesPerPixel of
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   228
         1: cSkyColor:= PByte(p)^;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   229
         2: cSkyColor:= PWord(p)^;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 105
diff changeset
   230
         3: cSkyColor:= (p^[0]) or (p^[1] shl 8) or (p^[2] shl 16);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   231
         4: cSkyColor:= PLongword(p)^;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   232
         end;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   233
    if SDL_MustLock(SpritesData[sprSky].Surface) then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   234
       SDL_UnlockSurface(SpritesData[sprSky].Surface)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   235
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   236
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   237
    procedure GetExplosionBorderColor;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   238
    var f: textfile;
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   239
        c: LongInt;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
    begin
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   241
    s:= Pathz[ptCurrTheme] + '/' + cThemeCFGFilename;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   242
    WriteToConsole(msgLoading + s + ' ');
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   243
    Assign(f, s);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   244
    {$I-}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   245
    Reset(f);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
    Readln(f, s);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   247
    Close(f);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   248
    {$I+}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   249
    TryDo(IOResult = 0, msgFailed, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   250
    WriteLnToConsole(msgOK);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   251
    val(s, cExplosionBorderColor, c);
495
62c1c2b4414c - Fix most of the warnings in hwengine
unc0rr
parents: 432
diff changeset
   252
    TryDo(c = 0, 'Theme data corrupted', true);
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 190
diff changeset
   253
    AdjustColor(cExplosionBorderColor);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   254
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   255
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   257
for fi:= Low(THWFont) to High(THWFont) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   258
    with Fontz[fi] do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   259
         begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   260
         s:= Pathz[ptFonts] + '/' + Name;
200
a36102728776 Small fixes
unc0rr
parents: 199
diff changeset
   261
         WriteToConsole(msgLoading + s + '... ');
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   262
         Handle:= TTF_OpenFont(Str2PChar(s), Height);
200
a36102728776 Small fixes
unc0rr
parents: 199
diff changeset
   263
         SDLTry(Handle <> nil, true);
202
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   264
         TTF_SetFontStyle(Handle, style);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   265
         WriteLnToConsole(msgOK)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   266
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   267
AddProgress;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   268
105
e7cb9bb4a9de - Fixed integer->longint
unc0rr
parents: 97
diff changeset
   269
WriteToConsole('LandSurface tuning... ');
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   270
tmpsurf:= LandSurface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
TryDo(tmpsurf <> nil, msgFailed, true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
if cFullScreen then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   273
   begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   274
   LandSurface:= SDL_DisplayFormat(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   275
   SDL_FreeSurface(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   276
   end else LandSurface:= tmpsurf;
35
9367f246fb5f - New rope
unc0rr
parents: 30
diff changeset
   277
TryDo(SDL_SetColorKey(LandSurface, SDL_SRCCOLORKEY, 0) = 0, errmsgTransparentSet, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
WriteLnToConsole(msgOK);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   279
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
GetExplosionBorderColor;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   282
AddProgress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
for i:= Low(TStuff) to High(TStuff) do
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 49
diff changeset
   284
    LoadToSurface(Pathz[StuffLoadData[i].Path] + '/' + StuffLoadData[i].FileName, StoreSurface, StuffPoz[i].x, StuffPoz[i].y);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
AddProgress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   287
WriteNames(fnt16);
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 55
diff changeset
   288
MakeCrossHairs;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   289
LoadGraves;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
AddProgress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
for ii:= Low(TSprite) to High(TSprite) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
    with SpritesData[ii] do
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   294
         begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   295
         if AltPath = ptNone then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   296
            Surface:= LoadImage(Pathz[Path] + '/' + FileName, hasAlpha, true, true)
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   297
         else begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   298
            Surface:= LoadImage(Pathz[Path] + '/' + FileName, hasAlpha, false, true);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   299
            if Surface = nil then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   300
               Surface:= LoadImage(Pathz[AltPath] + '/' + FileName, hasAlpha, true, true)
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   301
            end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   302
         if Width = 0 then Width:= Surface^.w;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   303
         if Height = 0 then Height:= Surface^.h
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   304
         end;
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   305
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   306
GetSkyColor;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   307
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   308
AddProgress;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   309
tmpsurf:= LoadImage(Pathz[ptGraphics] + '/' + cHHFileName, false, true, true);
35
9367f246fb5f - New rope
unc0rr
parents: 30
diff changeset
   310
TryDo(SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY or SDL_RLEACCEL, 0) = 0, errmsgTransparentSet, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   311
HHSurface:= SDL_DisplayFormat(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   312
SDL_FreeSurface(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   313
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   314
InitHealth;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   315
281
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 208
diff changeset
   316
PauseSurface:= RenderString(trmsg[sidPaused], $FFFF00, fntBig);
5b483aa9f2ab Pause support (mouse cursor is released when the game is paused)
unc0rr
parents: 208
diff changeset
   317
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   318
{$IFDEF DUMP}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   319
SDL_SaveBMP_RW(LandSurface, SDL_RWFromFile('LandSurface.bmp', 'wb'), 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   320
SDL_SaveBMP_RW(StoreSurface, SDL_RWFromFile('StoreSurface.bmp', 'wb'), 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   321
{$ENDIF}
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   322
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   323
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   324
procedure DrawFromRect(X, Y: LongInt; r: PSDL_Rect; SourceSurface, DestSurface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   325
var rr: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   326
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   327
rr.x:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   328
rr.y:= Y;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   329
rr.w:= r^.w;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   330
rr.h:= r^.h;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   331
if SDL_UpperBlit(SourceSurface, r, DestSurface, @rr) < 0 then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   332
   begin
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   333
   OutError('Blit: ' + SDL_GetError, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   334
   exit
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   335
   end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   336
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   337
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   338
procedure DrawGear(Stuff: TStuff; X, Y: LongInt; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   339
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   340
DrawFromRect(X, Y, @StuffPoz[Stuff], StoreSurface, Surface)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   341
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   342
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   343
procedure DrawSpriteFromRect(r: TSDL_Rect; X, Y, Height, Position: LongInt; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   344
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   345
r.y:= r.y + Height * Position;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   346
r.h:= Height;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   347
DrawFromRect(X, Y, @r, StoreSurface, Surface)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   348
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   349
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   350
procedure DrawSprite (Sprite: TSprite; X, Y, Frame: LongInt; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   351
begin
198
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   352
DrawSurfSprite(X, Y, SpritesData[Sprite].Height, Frame, SpritesData[Sprite].Surface, Surface)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   353
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   354
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   355
procedure DrawSprite2(Sprite: TSprite; X, Y, FrameX, FrameY: LongInt; Surface: PSDL_Surface);
43
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   356
var r: TSDL_Rect;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   357
begin
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   358
r.x:= FrameX * SpritesData[Sprite].Width;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   359
r.w:= SpritesData[Sprite].Width;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   360
r.y:= FrameY * SpritesData[Sprite].Height;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   361
r.h:= SpritesData[Sprite].Height;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   362
DrawFromRect(X, Y, @r, SpritesData[Sprite].Surface, Surface)
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   363
end;
e297fea1a2f3 - Removed dark pixels on the corners of health case
unc0rr
parents: 42
diff changeset
   364
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   365
procedure DrawSurfSprite(X, Y, Height, Frame: LongInt; Source, Surface: PSDL_Surface);
198
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   366
var r: TSDL_Rect;
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   367
begin
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   368
r.x:= 0;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   369
r.w:= Source^.w;
198
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   370
r.y:= Frame * Height;
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   371
r.h:= Height;
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   372
DrawFromRect(X, Y, @r, Source, Surface)
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   373
end;
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   374
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   375
procedure DXOutText(X, Y: LongInt; Font: THWFont; s: string; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   376
var clr: TSDL_Color;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   377
    tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   378
    r: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   379
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   380
r.x:= X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   381
r.y:= Y;
189
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   382
clr.r:= $FF;
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   383
clr.g:= $FF;
33d147c69a83 Color fixes
unc0rr
parents: 183
diff changeset
   384
clr.b:= $FF;
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   385
tmpsurf:= TTF_RenderUTF8_Solid(Fontz[Font].Handle, Str2PChar(s), clr.value);
208
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 206
diff changeset
   386
if tmpsurf = nil then
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 206
diff changeset
   387
   begin
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 206
diff changeset
   388
   SetKB(1);
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 206
diff changeset
   389
   exit
a049157d673a Implement Knowledge Base for libs/compilers bugs
unc0rr
parents: 206
diff changeset
   390
   end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   391
SDL_UpperBlit(tmpsurf, nil, Surface, @r);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
SDL_FreeSurface(tmpsurf)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   393
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   394
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   395
procedure DrawLand(X, Y: LongInt; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   396
const r: TSDL_Rect = (x: 0; y: 0; w: 2048; h: 1024);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   397
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   398
DrawFromRect(X, Y, @r, LandSurface, Surface)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   399
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   400
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   401
procedure DrawFromStoreRect(X, Y: LongInt; Rect: PSDL_Rect; Surface: PSDL_Surface);
47
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   402
begin
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   403
DrawFromRect(X, Y, Rect, StoreSurface, Surface)
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   404
end;
8daf1ee0b9a3 Show team health bars, without sorting yet
unc0rr
parents: 43
diff changeset
   405
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   406
procedure DrawCaption(X, Y: LongInt; Rect: TSDL_Rect; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   407
begin
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   408
DrawFromRect(X - (Rect.w) div 2, Y, @Rect, StoreSurface, Surface)
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   409
end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   410
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   411
procedure DrawCentered(X, Top: LongInt; Source, Surface: PSDL_Surface);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   412
var r: TSDL_Rect;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   413
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   414
r.x:= X - Source^.w div 2;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   415
r.y:= Top;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   416
r.w:= Source^.w;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   417
r.h:= Source^.h;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   418
SDL_UpperBlit(Source, nil, Surface, @r)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   419
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   420
371
731ad6d27bd1 integer -> LongInt
unc0rr
parents: 355
diff changeset
   421
procedure DrawHedgehog(X, Y: LongInt; Dir: LongInt; Pos, Step: LongWord; Surface: PSDL_Surface);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   422
var r: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   423
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   424
r.x:= Step * 32;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   425
r.y:= Pos * 32;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   426
if Dir = -1 then r.x:= HHSurface^.w - 32 - r.x;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   427
r.w:= 32;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   428
r.h:= 32;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   429
DrawFromRect(X, Y, @r, HHSurface, Surface)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   430
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   431
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   432
procedure StoreRelease;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   433
var ii: TSprite;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   434
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   435
for ii:= Low(TSprite) to High(TSprite) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   436
    SDL_FreeSurface(SpritesData[ii].Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   437
SDL_FreeSurface(  HHSurface  );
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   438
SDL_FreeSurface(LandSurface  );
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   439
SDL_FreeSurface(StoreSurface )
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   440
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   441
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   442
function  RenderString(s: string; Color: Longword; font: THWFont): PSDL_Surface;
432
b0f693024b50 Delphi mode off
unc0rr
parents: 393
diff changeset
   443
var w, h: LongInt;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   444
    Result: PSDL_Surface;
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   445
begin
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   446
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(s), w, h);
202
8603c0420461 Support font styles
unc0rr
parents: 201
diff changeset
   447
Result:= SDL_CreateRGBSurface(SDL_HWSURFACE, w + FontBorder * 2 + 4, h + FontBorder * 2,
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   448
         cBits, PixelFormat^.RMask, PixelFormat^.GMask, PixelFormat^.BMask, PixelFormat^.AMask);
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 105
diff changeset
   449
TryDo(Result <> nil, 'RenderString: fail to create surface', true);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   450
WriteInRoundRect(Result, 0, 0, Color, font, s);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   451
TryDo(SDL_SetColorKey(Result, SDL_SRCCOLORKEY or SDL_RLEACCEL, 0) = 0, errmsgTransparentSet, true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   452
RenderString:= Result
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   453
end;
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   454
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   455
procedure RenderHealth(var Hedgehog: THedgehog);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   456
var s: shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   457
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   458
str(Hedgehog.Gear^.Health, s);
95
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   459
if Hedgehog.HealthTag <> nil then SDL_FreeSurface(Hedgehog.HealthTag);
1ef5e2c41115 - Fixed compilation
unc0rr
parents: 83
diff changeset
   460
Hedgehog.HealthTag:= RenderString(s, Hedgehog.Team^.Color, fnt16)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   461
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   462
518
d48d8c0a546d - Fix bug with desert damaging current hedgehog
unc0rr
parents: 510
diff changeset
   463
function  LoadImage(const filename: string; hasAlpha: boolean; critical, setTransparent: boolean): PSDL_Surface;
30
794e98e11b66 - Fixed slow sprite blt
unc0rr
parents: 4
diff changeset
   464
var tmpsurf: PSDL_Surface;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   465
    Result: PSDL_Surface;
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   466
    s: shortstring;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   467
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   468
WriteToConsole(msgLoading + filename + '... ');
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   469
s:= filename + '.' + cBitsStr + '.png';
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   470
tmpsurf:= IMG_Load(Str2PChar(s));
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   471
74
42257fee61ae - Unicode support for team and hedgehogs names
unc0rr
parents: 71
diff changeset
   472
if tmpsurf = nil then
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   473
   begin
355
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   474
   s:= filename + '.png';
40c68869899e Small fixes to bring engine to life
unc0rr
parents: 351
diff changeset
   475
   tmpsurf:= IMG_Load(Str2PChar(s));
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   476
   end;
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   477
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   478
if tmpsurf = nil then
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   479
   if critical then OutError(msgFailed, true)
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   480
      else begin
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   481
      WriteLnToConsole(msgFailed);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   482
      exit(nil)
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   483
      end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   484
198
6f00e0f4cb88 - New crosshair
unc0rr
parents: 196
diff changeset
   485
if setTransparent then TryDo(SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY or SDL_RLEACCEL, 0) = 0, errmsgTransparentSet, true);
80
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   486
if hasAlpha then Result:= SDL_DisplayFormatAlpha(tmpsurf)
3c3dc6a148ca - Fixed bug with hedgehog under water using rope
unc0rr
parents: 74
diff changeset
   487
            else Result:= SDL_DisplayFormat(tmpsurf);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   488
WriteLnToConsole(msgOK);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 294
diff changeset
   489
LoadImage:= Result
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   490
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   491
510
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   492
////////////////////////////////////////////////////////////////////////////////
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   493
var ProgrSurf: PSDL_Surface = nil;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   494
    Step: Longword = 0;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   495
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   496
procedure AddProgress;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   497
var r: TSDL_Rect;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   498
begin
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   499
if Step = 0 then
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   500
   begin
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   501
   WriteToConsole(msgLoading + 'progress sprite: ');
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   502
   ProgrSurf:= LoadImage(Pathz[ptGraphics] + '/Progress', false, true, true);
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   503
   end;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   504
SDL_FillRect(SDLPrimSurface, nil, 0);
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   505
r.x:= 0;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   506
r.w:= ProgrSurf^.w;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   507
r.h:= ProgrSurf^.w;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   508
r.y:= (Step mod (ProgrSurf^.h div ProgrSurf^.w)) * ProgrSurf^.w;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   509
DrawFromRect((cScreenWidth - ProgrSurf^.w) div 2,
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   510
             (cScreenHeight - ProgrSurf^.w) div 2, @r, ProgrSurf, SDLPrimSurface);
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   511
SDL_Flip(SDLPrimSurface);
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   512
inc(Step);
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   513
end;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   514
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   515
procedure FinishProgress;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   516
begin
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   517
WriteLnToConsole('Freeing progress surface... ');
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   518
SDL_FreeSurface(ProgrSurf)
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   519
end;
4e994e1b7abb New loading progress sprite code
unc0rr
parents: 495
diff changeset
   520
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   521
end.