hedgewars/uLandGraphics.pas
author unc0rr
Tue, 16 Jan 2007 16:51:12 +0000
changeset 345 fa39c61be4de
parent 196 993cf173218b
child 351 29bc9c36ad5f
permissions -rw-r--r--
Some fixes, revert debug code
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     1
unit uLandGraphics;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     2
interface
345
fa39c61be4de Some fixes, revert debug code
unc0rr
parents: 196
diff changeset
     3
{$INCLUDE options.inc}
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     4
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     5
type PRangeArray = ^TRangeArray;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     6
     TRangeArray = array[0..31] of record
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     7
                                   Left, Right: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     8
                                   end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
     9
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    10
procedure DrawExplosion(X, Y, Radius: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    11
procedure DrawHLinesExplosions(ar: PRangeArray; Radius: integer; y, dY: integer; Count: Byte);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    12
procedure DrawTunnel(X, Y, dX, dY: Double; ticks, HalfWidth: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    13
procedure FillRoundInLand(X, Y, Radius: integer; Value: Longword);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    14
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    15
implementation
196
993cf173218b - Many small fixes
unc0rr
parents: 188
diff changeset
    16
uses SDLh, uMisc, uLand, uConsts;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    17
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    18
procedure FillCircleLines(x, y, dx, dy: integer; Value: Longword);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    19
var i: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    20
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    21
if ((y + dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    22
   for i:= max(x - dx, 0) to min(x + dx, 2047) do Land[y + dy, i]:= Value;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    23
if ((y - dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    24
   for i:= max(x - dx, 0) to min(x + dx, 2047) do Land[y - dy, i]:= Value;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    25
if ((y + dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    26
   for i:= max(x - dy, 0) to min(x + dy, 2047) do Land[y + dx, i]:= Value;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    27
if ((y - dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    28
   for i:= max(x - dy, 0) to min(x + dy, 2047) do Land[y - dx, i]:= Value;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    29
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    30
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    31
procedure FillRoundInLand(X, Y, Radius: integer; Value: Longword);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    32
var dx, dy, d: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    33
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    34
  dx:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    35
  dy:= Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    36
  d:= 3 - 2 * Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    37
  while (dx < dy) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    38
     begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    39
     FillCircleLines(x, y, dx, dy, Value);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    40
     if (d < 0)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    41
     then d:= d + 4 * dx + 6
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    42
     else begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    43
          d:= d + 4 * (dx - dy) + 10;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    44
          dec(dy)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    45
          end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    46
     inc(dx)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    47
     end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    48
  if (dx = dy) then FillCircleLines(x, y, dx, dy, Value);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    49
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    50
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    51
procedure ClearLandPixel(y, x: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    52
var p: PByteArray;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    53
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    54
p:= @PByteArray(LandSurface.pixels)^[LandSurface.pitch*y];
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    55
case LandSurface.format.BytesPerPixel of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    56
     1: ;// not supported
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    57
     2: PWord(@p[x * 2])^:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    58
     3: begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    59
        p[x * 3 + 0]:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    60
        p[x * 3 + 1]:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    61
        p[x * 3 + 2]:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    62
        end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    63
     4: PLongword(@p[x * 4])^:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    64
     end
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    65
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    66
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    67
procedure SetLandPixel(y, x: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    68
var p: PByteArray;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    69
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    70
p:= @PByteArray(LandSurface.pixels)^[LandSurface.pitch*y];
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    71
case LandSurface.format.BytesPerPixel of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    72
     1: ;// not supported
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    73
     2: PWord(@p[x * 2])^:= cExplosionBorderColor;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    74
     3: begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    75
        p[x * 3 + 0]:= cExplosionBorderColor and $FF;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    76
        p[x * 3 + 1]:= (cExplosionBorderColor shr 8) and $FF;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    77
        p[x * 3 + 2]:= cExplosionBorderColor shr 16;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    78
        end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    79
     4: PLongword(@p[x * 4])^:= cExplosionBorderColor;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    80
     end
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    81
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    82
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    83
procedure FillLandCircleLines0(x, y, dx, dy: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    84
var i: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    85
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    86
if ((y + dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    87
   for i:= max(x - dx, 0) to min(x + dx, 2047) do ClearLandPixel(y + dy, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    88
if ((y - dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    89
   for i:= max(x - dx, 0) to min(x + dx, 2047) do ClearLandPixel(y - dy, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    90
if ((y + dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    91
   for i:= max(x - dy, 0) to min(x + dy, 2047) do ClearLandPixel(y + dx, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    92
if ((y - dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    93
   for i:= max(x - dy, 0) to min(x + dy, 2047) do ClearLandPixel(y - dx, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    94
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    95
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    96
procedure FillLandCircleLinesEBC(x, y, dx, dy: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    97
var i: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    98
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
    99
if ((y + dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   100
   for i:= max(x - dx, 0) to min(x + dx, 2047) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   101
       if Land[y + dy, i] = COLOR_LAND then SetLandPixel(y + dy, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   102
if ((y - dy) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   103
   for i:= max(x - dx, 0) to min(x + dx, 2047) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   104
       if Land[y - dy, i] = COLOR_LAND then SetLandPixel(y - dy, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   105
if ((y + dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   106
   for i:= max(x - dy, 0) to min(x + dy, 2047) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   107
       if Land[y + dx, i] = COLOR_LAND then SetLandPixel(y + dx, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   108
if ((y - dx) and $FFFFFC00) = 0 then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   109
   for i:= max(x - dy, 0) to min(x + dy, 2047) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   110
       if Land[y - dx, i] = COLOR_LAND then SetLandPixel(y - dx, i);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   111
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   112
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   113
procedure DrawExplosion(X, Y, Radius: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   114
var dx, dy, d: integer;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   115
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   116
FillRoundInLand(X, Y, Radius, 0);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   117
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   118
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   119
   SDLTry(SDL_LockSurface(LandSurface) >= 0, true);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   120
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   121
  dx:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   122
  dy:= Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   123
  d:= 3 - 2 * Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   124
  while (dx < dy) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   125
     begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   126
     FillLandCircleLines0(x, y, dx, dy);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   127
     if (d < 0)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   128
     then d:= d + 4 * dx + 6
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   129
     else begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   130
          d:= d + 4 * (dx - dy) + 10;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   131
          dec(dy)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   132
          end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   133
     inc(dx)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   134
     end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   135
  if (dx = dy) then FillLandCircleLines0(x, y, dx, dy);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   136
  inc(Radius, 4);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   137
  dx:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   138
  dy:= Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   139
  d:= 3 - 2 * Radius;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   140
  while (dx < dy) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   141
     begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   142
     FillLandCircleLinesEBC(x, y, dx, dy);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   143
     if (d < 0)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   144
     then d:= d + 4 * dx + 6
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   145
     else begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   146
          d:= d + 4 * (dx - dy) + 10;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   147
          dec(dy)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   148
          end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   149
     inc(dx)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   150
     end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   151
  if (dx = dy) then FillLandCircleLinesEBC(x, y, dx, dy);  
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   152
  
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   153
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   154
   SDL_UnlockSurface(LandSurface);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   155
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   156
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   157
procedure DrawHLinesExplosions(ar: PRangeArray; Radius: integer; y, dY: integer; Count: Byte);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   158
var tx, ty, i: LongInt;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   159
begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   160
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   161
   SDL_LockSurface(LandSurface);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   162
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   163
for i:= 0 to Pred(Count) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   164
    begin
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 184
diff changeset
   165
    for ty:= max(y - Radius, 0) to min(y + Radius, 1023) do
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   166
        for tx:= max(0, ar[i].Left - Radius) to min(2047, ar[i].Right + Radius) do
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 184
diff changeset
   167
            ClearLandPixel(ty, tx);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   168
    inc(y, dY)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   169
    end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   170
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   171
inc(Radius, 4);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   172
dec(y, Count*dY);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   173
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   174
for i:= 0 to Pred(Count) do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   175
    begin
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 184
diff changeset
   176
    for ty:= max(y - Radius, 0) to min(y + Radius, 1023) do
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   177
        for tx:= max(0, ar[i].Left - Radius) to min(2047, ar[i].Right + Radius) do
188
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 184
diff changeset
   178
            if Land[ty, tx] = $FFFFFF then
a7c2a61524c2 Cardinal -> Longword
unc0rr
parents: 184
diff changeset
   179
                  SetLandPixel(ty, tx);
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   180
    inc(y, dY)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   181
    end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   182
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   183
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   184
   SDL_UnlockSurface(LandSurface);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   185
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   186
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   187
//
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   188
//  - (dX, dY) - direction, vector of length = 0.5
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   189
//
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   190
procedure DrawTunnel(X, Y, dX, dY: Double; ticks, HalfWidth: integer);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   191
var nx, ny: Double;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   192
    i, t, tx, ty: Longint;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   193
begin  // (-dY, dX) is (dX, dY) rotated by PI/2
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   194
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   195
   SDL_LockSurface(LandSurface);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   196
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   197
nx:= X + dY * (HalfWidth + 8);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   198
ny:= Y - dX * (HalfWidth + 8);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   199
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   200
for i:= 0 to 7 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   201
    begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   202
    X:= nx - 8 * dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   203
    Y:= ny - 8 * dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   204
    for t:= -8 to ticks + 8 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   205
        {$include tunsetborder.inc}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   206
    nx:= nx - dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   207
    ny:= ny + dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   208
    end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   209
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   210
for i:= -HalfWidth to HalfWidth do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   211
    begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   212
    X:= nx - dX * 8;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   213
    Y:= ny - dY * 8;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   214
    for t:= 0 to 7 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   215
        {$include tunsetborder.inc}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   216
    X:= nx;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   217
    Y:= ny;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   218
    for t:= 0 to ticks do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   219
        begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   220
        X:= X + dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   221
        Y:= Y + dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   222
        tx:= round(X);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   223
        ty:= round(Y);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   224
        if ((ty and $FFFFFC00) = 0) and ((tx and $FFFFF800) = 0) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   225
           begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   226
           Land[ty, tx]:= 0;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   227
           ClearLandPixel(ty, tx);
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   228
           end
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   229
        end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   230
    for t:= 0 to 7 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   231
        {$include tunsetborder.inc}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   232
    nx:= nx - dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   233
    ny:= ny + dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   234
    end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   235
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   236
for i:= 0 to 7 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   237
    begin
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   238
    X:= nx - 8 * dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   239
    Y:= ny - 8 * dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   240
    for t:= -8 to ticks + 8 do
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   241
        {$include tunsetborder.inc}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   242
    nx:= nx - dY;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   243
    ny:= ny + dX;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   244
    end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   245
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   246
if SDL_MustLock(LandSurface) then
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   247
   SDL_UnlockSurface(LandSurface)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   248
end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   249
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   250
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 109
diff changeset
   251
end.