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