hedgewars/uLand.pas
author unc0rr
Tue, 23 Jan 2007 22:48:08 +0000
changeset 361 c3eebac100c0
parent 360 ab6a94334d6d
child 364 52cb4d6f84b7
permissions -rw-r--r--
- Show sample line - Load() works
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
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 67
diff changeset
     3
 * Copyright (c) 2005, 2006 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: 173
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
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: 173
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
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: 173
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 173
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 uLand;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    20
interface
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
    21
uses SDLh, uLandTemplates, 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
type TLandArray = packed array[0..1023, 0..2047] of LongWord;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
    24
     TPreview = packed array[0..127, 0..31] of byte;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    25
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    26
var  Land: TLandArray;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    27
     LandSurface: PSDL_Surface;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
    28
     Preview: TPreview;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    29
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    30
procedure GenMap;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
    31
procedure GenPreview;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
    32
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    33
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    34
implementation
316
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    35
uses uConsole, uStore, uMisc, uConsts, uRandom, uTeams, uLandObjects, uSHA, uIO;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    36
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    37
type TPixAr = record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    38
              Count: Longword;
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
    39
              ar: array[0..Pred(cMaxEdgePoints)] of TPoint;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    40
              end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
    41
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    42
procedure LogLandDigest;
316
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    43
var ctx: TSHA1Context;
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    44
    dig: TSHA1Digest;
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    45
    s: shortstring;
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    46
begin
316
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    47
SHA1Init(ctx);
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    48
SHA1Update(ctx, @Land, sizeof(Land));
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    49
dig:= SHA1Final(ctx);
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    50
s:= '{'+inttostr(dig[0])+':'
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    51
       +inttostr(dig[1])+':'
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    52
       +inttostr(dig[2])+':'
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    53
       +inttostr(dig[3])+':'
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    54
       +inttostr(dig[4])+'}';
57d50189ad86 Calculate land digest
unc0rr
parents: 196
diff changeset
    55
SendIPC('M' + s)
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    56
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
    57
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    58
procedure DrawLine(X1, Y1, X2, Y2: integer; Color: Longword);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    59
var
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    60
  eX, eY, dX, dY: integer;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    61
  i, sX, sY, x, y, d: integer;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    62
begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    63
eX:= 0;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    64
eY:= 0;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    65
dX:= X2 - X1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    66
dY:= Y2 - Y1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    67
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    68
if (dX > 0) then sX:= 1
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    69
else
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    70
  if (dX < 0) then
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    71
     begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    72
     sX:= -1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    73
     dX:= -dX
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    74
     end else sX:= dX;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    75
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    76
if (dY > 0) then sY:= 1
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    77
  else
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    78
  if (dY < 0) then
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    79
     begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    80
     sY:= -1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    81
     dY:= -dY
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    82
     end else sY:= dY;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    83
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    84
if (dX > dY) then d:= dX
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    85
             else d:= dY;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    86
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    87
x:= X1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    88
y:= Y1;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    89
 
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    90
for i:= 0 to d do
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    91
    begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    92
    inc(eX, dX);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    93
    inc(eY, dY);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    94
    if (eX > d) then
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    95
       begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    96
       dec(eX, d);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    97
       inc(x, sX);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    98
       end;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    99
    if (eY > d) then
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   100
       begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   101
       dec(eY, d);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   102
       inc(y, sY);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   103
       end;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   104
       
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   105
    if ((x and $FFFFF800) = 0) and ((y and $FFFFFC00) = 0) then
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   106
       Land[y, x]:= Color;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   107
    end
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   108
end;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   109
89
f9db56409a86 - Fix various bugs
unc0rr
parents: 80
diff changeset
   110
procedure DrawBezierEdge(var pa: TPixAr; Color: Longword);
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   111
const dT: hwFloat = (isNegative: false; QWordValue: 85899346);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   112
var x, y, i, px, py: integer;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   113
    tx, ty, vx, vy, vlen, t: hwFloat;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   114
    r1, r2, r3, r4: hwFloat;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   115
    x1, y1, x2, y2, cx1, cy1, cx2, cy2, tsq, tcb: hwFloat;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   116
begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   117
vx:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   118
vy:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   119
with pa do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   120
for i:= 0 to Count-2 do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   121
    begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   122
    vlen:= Distance(ar[i + 1].x - ar[i].X, ar[i + 1].y - ar[i].y);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   123
    t:=    Distance(ar[i + 1].x - ar[i + 2].X,ar[i + 1].y - ar[i + 2].y);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   124
    if t<vlen then vlen:= t;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   125
    vlen:= vlen * _1div3;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   126
    tx:= ar[i+2].X - ar[i].X;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   127
    ty:= ar[i+2].y - ar[i].y;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   128
    t:= Distance(tx, ty);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   129
    if t.QWordValue = 0 then
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   130
       begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   131
       tx:= -tx * 10000;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   132
       ty:= -ty * 10000;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   133
       end else
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   134
       begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   135
       t:= 1/t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   136
       tx:= -tx * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   137
       ty:= -ty * t;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   138
       end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   139
    t:= vlen;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   140
    tx:= tx * t;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   141
    ty:= ty * t;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   142
    x1:= ar[i].x;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   143
    y1:= ar[i].y;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   144
    x2:= ar[i + 1].x;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   145
    y2:= ar[i + 1].y;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   146
    cx1:= ar[i].X   + hwRound(vx);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   147
    cy1:= ar[i].y   + hwRound(vy);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   148
    cx2:= ar[i+1].X + hwRound(tx);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   149
    cy2:= ar[i+1].y + hwRound(ty);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   150
    vx:= -tx;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   151
    vy:= -ty;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   152
    px:= hwRound(x1);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   153
    py:= hwRound(y1);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   154
    t:= dT;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   155
    while t.Round = 0 do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   156
          begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   157
          tsq:= t * t;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   158
          tcb:= tsq * t;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   159
          r1:= (1 - 3*t + 3*tsq -   tcb) * x1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   160
          r2:= (    3*t - 6*tsq + 3*tcb) * cx1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   161
          r3:= (          3*tsq - 3*tcb) * cx2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   162
          r4:= (                    tcb) * x2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   163
          X:= hwRound(r1 + r2 + r3 + r4);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   164
          r1:= (1 - 3*t + 3*tsq -   tcb) * y1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   165
          r2:= (    3*t - 6*tsq + 3*tcb) * cy1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   166
          r3:= (          3*tsq - 3*tcb) * cy2;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   167
          r4:= (                    tcb) * y2;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   168
          Y:= hwRound(r1 + r2 + r3 + r4);
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   169
          t:= t + dT;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   170
          DrawLine(px, py, x, y, Color);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   171
          px:= x;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   172
          py:= y
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   173
          end;
359
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   174
    DrawLine(px, py, hwRound(x2), hwRound(y2), Color)
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   175
    end;
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   176
end;
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   177
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   178
procedure FillLand(x, y: integer);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   179
var Stack: record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   180
           Count: Longword;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   181
           points: array[0..8192] of record
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   182
                                     xl, xr, y, dir: integer;
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 Push(_xl, _xr, _y, _dir: integer);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   187
    begin
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   188
    TryDo(Stack.Count <= 8192, 'FillLand: stack overflow', true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   189
    _y:= _y + _dir;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   190
    if (_y < 0) or (_y > 1023) then exit;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   191
    with Stack.points[Stack.Count] do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   192
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   193
         xl:= _xl;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   194
         xr:= _xr;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   195
         y:= _y;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   196
         dir:= _dir
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   197
         end;
75
d2b737858ff7 - New First Aid powerup
unc0rr
parents: 74
diff changeset
   198
    inc(Stack.Count)
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
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   201
    procedure Pop(var _xl, _xr, _y, _dir: integer);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   202
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   203
    dec(Stack.Count);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   204
    with Stack.points[Stack.Count] do
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
         _xl:= xl;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   207
         _xr:= xr;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   208
         _y:= y;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   209
         _dir:= dir
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   210
         end
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   211
    end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   212
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   213
var xl, xr, dir: integer;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   214
begin
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   215
Stack.Count:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   216
xl:= x - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   217
xr:= x;
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   218
Push(xl, xr, y, -1);
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   219
Push(xl, xr, y,  1);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   220
while Stack.Count > 0 do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   221
      begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   222
      Pop(xl, xr, y, dir);
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   223
      while (xl > 0) and (Land[y, xl] <> 0) do dec(xl);
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   224
      while (xr < 2047) and (Land[y, xr] <> 0) do inc(xr);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   225
      while (xl < xr) do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   226
            begin
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   227
            while (xl <= xr) and (Land[y, xl] = 0) do inc(xl);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   228
            x:= xl;
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   229
            while (xl <= xr) and (Land[y, xl] <> 0) do
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   230
                  begin
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   231
                  Land[y, xl]:= 0;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   232
                  inc(xl)
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   233
                  end;
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   234
            if x < xl then
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   235
               begin
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   236
               Push(x, Pred(xl), y, dir);
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   237
               Push(x, Pred(xl), y,-dir);
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   238
               end;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   239
            end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   240
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   241
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   242
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   243
procedure ColorizeLand(Surface: PSDL_Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   244
var tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   245
    r: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   246
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   247
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/LandTex', false, true, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   248
r.y:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   249
while r.y < 1024 do
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
      r.x:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   252
      while r.x < 2048 do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   253
            begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   254
            SDL_UpperBlit(tmpsurf, nil, Surface, @r);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   255
            inc(r.x, tmpsurf^.w)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   256
            end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   257
      inc(r.y, tmpsurf^.h)
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   258
      end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   259
SDL_FreeSurface(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   260
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   261
tmpsurf:= SDL_CreateRGBSurfaceFrom(@Land, 2048, 1024, 32, 2048*4, $FF0000, $FF00, $FF, 0);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   262
SDLTry(tmpsurf <> nil, true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   263
SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY, SDL_MapRGB(tmpsurf^.format, $FF, $FF, $FF));
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   264
SDL_UpperBlit(tmpsurf, nil, Surface, nil);
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   265
SDL_FreeSurface(tmpsurf)
4
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
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   268
procedure AddBorder(Surface: PSDL_Surface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   269
var tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   270
    r, rr: TSDL_Rect;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   271
    x, yd, yu: integer;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   272
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   273
tmpsurf:= LoadImage(Pathz[ptCurrTheme] + '/Border', false, true, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   274
for x:= 0 to 2047 do
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   275
    begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   276
    yd:= 1023;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   277
    repeat
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   278
      while (yd > 0   ) and (Land[yd, x] =  0) do dec(yd);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   279
      if (yd < 0) then yd:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   280
      while (yd < 1024) and (Land[yd, x] <> 0) do inc(yd);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   281
      dec(yd);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   282
      yu:= yd;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   283
      while (yu > 0  ) and (Land[yu, x] <> 0) do dec(yu);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   284
      while (yu < yd ) and (Land[yu, x] =  0) do inc(yu);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   285
      if (yd < 1023) and ((yd - yu) >= 16) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   286
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   287
         rr.x:= x;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   288
         rr.y:= yd - 15;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   289
         r.x:= x mod tmpsurf^.w;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   290
         r.y:= 16;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   291
         r.w:= 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   292
         r.h:= 16;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   293
         SDL_UpperBlit(tmpsurf, @r, Surface, @rr);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   294
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   295
      if (yu > 0) then
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   296
         begin
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   297
         rr.x:= x;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   298
         rr.y:= yu;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   299
         r.x:= x mod tmpsurf^.w;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   300
         r.y:= 0;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   301
         r.w:= 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   302
         r.h:= min(16, yd - yu + 1);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   303
         SDL_UpperBlit(tmpsurf, @r, Surface, @rr);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   304
         end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   305
      yd:= yu - 1;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   306
    until yd < 0;
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
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   309
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   310
procedure SetPoints(var Template: TEdgeTemplate; var pa: TPixAr);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   311
var i: integer;
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   312
begin
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   313
with Template do
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   314
     begin
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   315
     pa.Count:= BasePointsCount;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   316
     for i:= 0 to pred(pa.Count) do
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   317
         begin
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   318
         pa.ar[i].x:= BasePoints^[i].x + integer(GetRandom(BasePoints^[i].w));
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   319
         pa.ar[i].y:= BasePoints^[i].y + integer(GetRandom(BasePoints^[i].h))
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   320
         end;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   321
         
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   322
     if canMirror then
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
   323
        if getrandom(2) = 0 then
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   324
           begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   325
           for i:= 0 to pred(BasePointsCount) do
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
   326
               pa.ar[i].x:= 2047 - pa.ar[i].x;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   327
           for i:= 0 to pred(FillPointsCount) do
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   328
               FillPoints^[i].x:= 2047 - FillPoints^[i].x;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   329
           end;
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   330
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   331
     if canFlip then
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
   332
        if getrandom(2) = 0 then
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   333
           begin
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   334
           for i:= 0 to pred(BasePointsCount) do
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
   335
               pa.ar[i].y:= 1023 - pa.ar[i].y;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   336
           for i:= 0 to pred(FillPointsCount) do
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   337
               FillPoints^[i].y:= 1023 - FillPoints^[i].y;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   338
           end;
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   339
     end
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   340
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   341
67
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   342
procedure NormalizePoints(var pa: TPixAr);
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   343
const brd = 32;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   344
var isUP: boolean;  // HACK: transform for Y should be exact as one for X
67
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   345
    Left, Right, Top, Bottom,
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   346
    OWidth, Width, OHeight, Height,
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   347
    OLeft: integer;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   348
    i: integer;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   349
begin
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   350
TryDo((pa.ar[0].y < 0) or (pa.ar[0].y > 1023), 'Bad land generated', true);
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 155
diff changeset
   351
TryDo((pa.ar[Pred(pa.Count)].y < 0) or (pa.ar[Pred(pa.Count)].y > 1023), 'Bad land generated', true);
67
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   352
isUP:= pa.ar[0].y > 0;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   353
Left:= 1023;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   354
Right:= Left;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   355
Top:= pa.ar[0].y;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   356
Bottom:= Top;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   357
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   358
for i:= 1 to Pred(pa.Count) do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   359
    with pa.ar[i] do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   360
         begin
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   361
         if (y and $FFFFFC00) = 0 then
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   362
            if x < Left then Left:= x else
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   363
            if x > Right then Right:= x;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   364
         if y < Top then Top:= y else
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   365
         if y > Bottom then Bottom:= y
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   366
         end;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   367
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   368
if (Left < brd) or (Right > 2047 - brd) then
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   369
   begin
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   370
   OLeft:= Left;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   371
   OWidth:= Right - OLeft;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   372
   if Left < brd then Left:= brd;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   373
   if Right > 2047 - brd then Right:= 2047 - brd;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   374
   Width:= Right - Left;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   375
   for i:= 0 to Pred(pa.Count) do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   376
       with pa.ar[i] do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   377
            x:= round((x - OLeft) * Width div OWidth + Left)
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   378
   end;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   379
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   380
if isUp then // FIXME: remove hack
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   381
   if Top < brd then
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   382
      begin
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   383
      OHeight:= 1023 - Top;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   384
      Height:= 1023 - brd;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   385
      for i:= 0 to Pred(pa.Count) do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   386
          with pa.ar[i] do
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   387
               y:= round((y - 1023) * Height div OHeight + 1023)
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   388
   end;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   389
end;
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   390
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   391
procedure GenBlank(var Template: TEdgeTemplate);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   392
var pa: TPixAr;
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   393
    i: Longword;
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   394
    y, x: Longword;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   395
begin
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   396
for y:= 0 to 1023 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   397
    for x:= 0 to 2047 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   398
        Land[y, x]:= COLOR_LAND;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   399
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   400
SetPoints(Template, pa);
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   401
NormalizePoints(pa);
27
c374fe590272 - improve land generation
unc0rr
parents: 24
diff changeset
   402
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   403
DrawBezierEdge(pa, 0);
27
c374fe590272 - improve land generation
unc0rr
parents: 24
diff changeset
   404
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   405
with Template do
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   406
     for i:= 0 to pred(FillPointsCount) do
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   407
         with FillPoints^[i] do
89
f9db56409a86 - Fix various bugs
unc0rr
parents: 80
diff changeset
   408
              FillLand(x, y);
f9db56409a86 - Fix various bugs
unc0rr
parents: 80
diff changeset
   409
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
   410
DrawBezierEdge(pa, COLOR_LAND)
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   411
end;
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   412
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   413
function SelectTemplate: integer;
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   414
begin
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   415
SelectTemplate:= getrandom(Succ(High(EdgeTemplates)))
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   416
end;
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   417
23
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   418
procedure GenLandSurface;
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   419
var tmpsurf: PSDL_Surface;
16322d14f068 - Land generator uses templates to generate
unc0rr
parents: 22
diff changeset
   420
begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   421
WriteLnToConsole('Generating land...');
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   422
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   423
GenBlank(EdgeTemplates[SelectTemplate]);
22
517be8dc5b76 - Fixed spawning boxes under water
unc0rr
parents: 10
diff changeset
   424
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   425
AddProgress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   426
with PixelFormat^ do
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 183
diff changeset
   427
     tmpsurf:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, AMask);
67
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   428
TryDo(tmpsurf <> nil, 'Error creating pre-land surface', true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   429
ColorizeLand(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   430
AddProgress;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   431
AddBorder(tmpsurf);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   432
with PixelFormat^ do
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 183
diff changeset
   433
     LandSurface:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, AMask);
67
3101306251e5 - 2 more Land templates
unc0rr
parents: 64
diff changeset
   434
TryDo(LandSurface <> nil, 'Error creating land surface', true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   435
SDL_FillRect(LandSurface, nil, 0);
27
c374fe590272 - improve land generation
unc0rr
parents: 24
diff changeset
   436
AddProgress;
24
79c411363184 Add theme objects to land
unc0rr
parents: 23
diff changeset
   437
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 67
diff changeset
   438
SDL_SetColorKey(tmpsurf, SDL_SRCCOLORKEY, 0);
82d93eeecebe - Many AI improvements
unc0rr
parents: 67
diff changeset
   439
AddObjects(tmpsurf, LandSurface);
82d93eeecebe - Many AI improvements
unc0rr
parents: 67
diff changeset
   440
SDL_FreeSurface(tmpsurf);
24
79c411363184 Add theme objects to land
unc0rr
parents: 23
diff changeset
   441
70
82d93eeecebe - Many AI improvements
unc0rr
parents: 67
diff changeset
   442
AddProgress
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   443
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   444
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   445
procedure MakeFortsMap;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   446
var p: PTeam;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   447
    tmpsurf: PSDL_Surface;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   448
begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   449
WriteLnToConsole('Generating forts land...');
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   450
p:= TeamsList;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   451
TryDo(p <> nil, 'No teams on map!', true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   452
with PixelFormat^ do
191
a03c2d037e24 Bots are in the same thread as game. Fixes FreePascal issues.
unc0rr
parents: 183
diff changeset
   453
     LandSurface:= SDL_CreateRGBSurface(SDL_HWSURFACE, 2048, 1024, BitsPerPixel, RMask, GMask, BMask, AMask);
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   454
SDL_FillRect(LandSurface, nil, 0);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   455
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + p^.FortName + 'L', false, true, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   456
BlitImageAndGenerateCollisionInfo(0, 0, tmpsurf, LandSurface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   457
SDL_FreeSurface(tmpsurf);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   458
p:= p^.Next;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   459
TryDo(p <> nil, 'Only one team on map!', true);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   460
tmpsurf:= LoadImage(Pathz[ptForts] + '/' + p^.FortName + 'R', false, true, true);
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   461
BlitImageAndGenerateCollisionInfo(1024, 0, tmpsurf, LandSurface);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   462
SDL_FreeSurface(tmpsurf);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   463
p:= p^.Next;
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   464
TryDo(p = nil, 'More than 2 teams on map in forts mode!', true);
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   465
end;
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   466
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   467
procedure LoadMap;
107
b08ce0293a51 - Many type fixes
unc0rr
parents: 102
diff changeset
   468
var x, y: Longword;
b08ce0293a51 - Many type fixes
unc0rr
parents: 102
diff changeset
   469
    p: PByteArray;
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   470
begin
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   471
WriteLnToConsole('Loading land from file...');
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   472
AddProgress;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   473
LandSurface:= LoadImage(Pathz[ptMapCurrent] + '/map', false, true, true);
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   474
TryDo((LandSurface^.w = 2048) and (LandSurface^.h = 1024), 'Map dimensions should be 2048x1024!', true);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   475
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   476
if SDL_MustLock(LandSurface) then
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   477
   SDLTry(SDL_LockSurface(LandSurface) >= 0, true);
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   478
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   479
p:= LandSurface^.pixels;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   480
case LandSurface^.format^.BytesPerPixel of
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   481
     1: OutError('We don''t work with 8 bit surfaces', true);
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   482
     2: for y:= 0 to 1023 do
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   483
            begin
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   484
            for x:= 0 to 2047 do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   485
                if PWord(@(p^[x * 2]))^ <> 0 then Land[y, x]:= COLOR_LAND;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   486
            p:= @(p^[LandSurface^.pitch]);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   487
            end;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   488
     3: for y:= 0 to 1023 do
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   489
            begin
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   490
            for x:= 0 to 2047 do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   491
                if  (p^[x * 3 + 0] <> 0)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   492
                 or (p^[x * 3 + 1] <> 0)
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   493
                 or (p^[x * 3 + 2] <> 0) then Land[y, x]:= COLOR_LAND;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   494
            p:= @(p^[LandSurface^.pitch]);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   495
            end;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   496
     4: for y:= 0 to 1023 do
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   497
            begin
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   498
            for x:= 0 to 2047 do
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   499
                if PLongword(@(p^[x * 4]))^ <> 0 then Land[y, x]:= COLOR_LAND;
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   500
            p:= @(p^[LandSurface^.pitch]);
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   501
            end;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   502
     end;
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   503
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   504
if SDL_MustLock(LandSurface) then
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   505
   SDL_UnlockSurface(LandSurface);
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   506
end;
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   507
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   508
procedure GenMap;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   509
begin
53
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   510
if (GameFlags and gfForts) = 0 then
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   511
   if Pathz[ptMapCurrent] <> '' then LoadMap
0e27949850e3 - Fixed bubble theme object
unc0rr
parents: 51
diff changeset
   512
                                else GenLandSurface
37
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   513
                               else MakeFortsMap;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   514
AddProgress;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   515
{$IFDEF DEBUGFILE}LogLandDigest{$ENDIF}
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   516
end;
2b7f2a43b999 - Properly get seed in net game
unc0rr
parents: 35
diff changeset
   517
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   518
procedure GenPreview;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   519
var x, y, xx, yy, t, bit: integer;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   520
begin
160
207f520b9e83 Soma small fixes + new land template
unc0rr
parents: 155
diff changeset
   521
WriteLnToConsole('Generating preview...');
161
d8870bbf960e - AmmoMenu
unc0rr
parents: 160
diff changeset
   522
GenBlank(EdgeTemplates[SelectTemplate]);
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   523
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   524
for y:= 0 to 127 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   525
    for x:= 0 to 31 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   526
        begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   527
        Preview[y, x]:= 0;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   528
        for bit:= 0 to 7 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   529
            begin
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   530
            t:= 0;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   531
            for yy:= y * 8 to y * 8 + 7 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   532
                for xx:= x * 64 + bit * 8 to x * 64 + bit * 8 + 7 do
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   533
                    if Land[yy, xx] <> 0 then inc(t);
351
29bc9c36ad5f Fixed-point arithmetics in engine.
unc0rr
parents: 316
diff changeset
   534
            if t > 8 then Preview[y, x]:= Preview[y, x] or ($80 shr bit)
155
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   535
            end
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   536
        end
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   537
end;
401f4ea24715 Engine can generate land preview and send it via IPC
unc0rr
parents: 109
diff changeset
   538
51
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   539
initialization
b6e3ae05857f - Get rid of hwserv and runhelper
unc0rr
parents: 37
diff changeset
   540
4
bcbd7adb4e4b - set svn:eol-style to native
unc0rr
parents: 1
diff changeset
   541
end.