184
|
1 |
(*
|
|
2 |
* Hedgewars, a worms-like game
|
|
3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com>
|
|
4 |
*
|
|
5 |
* This program is free software; you can redistribute it and/or modify
|
|
6 |
* it under the terms of the GNU General Public License as published by
|
|
7 |
* the Free Software Foundation; version 2 of the License
|
|
8 |
*
|
|
9 |
* This program is distributed in the hope that it will be useful,
|
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
* GNU General Public License for more details.
|
|
13 |
*
|
|
14 |
* You should have received a copy of the GNU General Public License
|
|
15 |
* along with this program; if not, write to the Free Software
|
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
17 |
*)
|
|
18 |
|
|
19 |
unit uLandTemplates;
|
|
20 |
interface
|
351
|
21 |
uses SDLh, uFloat;
|
184
|
22 |
{$INCLUDE options.inc}
|
|
23 |
|
|
24 |
type PPointArray = ^TPointArray;
|
358
|
25 |
TPointArray = array[0..64] of TSDL_Rect;
|
184
|
26 |
TEdgeTemplate = record
|
|
27 |
BasePoints: PPointArray;
|
|
28 |
BasePointsCount: Longword;
|
|
29 |
FillPoints: PPointArray;
|
|
30 |
FillPointsCount: Longword;
|
|
31 |
canMirror, canFlip: boolean;
|
|
32 |
end;
|
|
33 |
|
358
|
34 |
const Template0Points: array[0..4] of TSDL_Rect =
|
184
|
35 |
(
|
358
|
36 |
(x: 400; y: 1100; w: 1; h: 1),
|
|
37 |
(x: 250; y: 400; w: 200; h: 200),
|
|
38 |
(x: 923; y: 620; w: 200; h: 400),
|
|
39 |
(x: 1600; y: 400; w: 200; h: 200),
|
|
40 |
(x: 1450; y: 1100; w: 1; h: 1)
|
184
|
41 |
);
|
|
42 |
Template0FPoints: array[0..0] of TPoint =
|
|
43 |
(
|
|
44 |
(x: 1023; y: 0)
|
|
45 |
);
|
|
46 |
|
358
|
47 |
const EdgeTemplates: array[0..0] of TEdgeTemplate =
|
184
|
48 |
(
|
|
49 |
(BasePoints: @Template0Points;
|
|
50 |
BasePointsCount: Succ(High(Template0Points));
|
|
51 |
FillPoints: @Template0FPoints;
|
|
52 |
FillPointsCount: Succ(High(Template0FPoints));
|
|
53 |
canMirror: false; canFlip: false;
|
358
|
54 |
)
|
184
|
55 |
);
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
implementation
|
|
60 |
|
|
61 |
end.
|