184
|
1 |
(*
|
|
2 |
* Hedgewars, a worms-like game
|
393
|
3 |
* Copyright (c) 2005-2007 Andrey Korotaev <unC0Rr@gmail.com>
|
184
|
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 |
|
365
|
24 |
const NTPX = Low(TSDL_Rect.x);
|
|
25 |
|
184
|
26 |
type PPointArray = ^TPointArray;
|
358
|
27 |
TPointArray = array[0..64] of TSDL_Rect;
|
184
|
28 |
TEdgeTemplate = record
|
|
29 |
BasePoints: PPointArray;
|
|
30 |
BasePointsCount: Longword;
|
|
31 |
FillPoints: PPointArray;
|
|
32 |
FillPointsCount: Longword;
|
364
|
33 |
RandPassesCount: Longword;
|
184
|
34 |
canMirror, canFlip: boolean;
|
|
35 |
end;
|
|
36 |
|
365
|
37 |
const Template0Points: array[0..18] of TSDL_Rect =
|
184
|
38 |
(
|
359
|
39 |
(x: 410; y: 1024; w: 1; h: 1),
|
|
40 |
(x: 160; y: 760; w: 130; h: 170),
|
|
41 |
(x: 342; y: 706; w: 316; h: 150),
|
|
42 |
(x: 238; y: 386; w: 270; h: 180),
|
|
43 |
(x: 246; y: 176; w: 242; h: 156),
|
403
|
44 |
(x: 552; y: 128; w: 610; h: 300),
|
|
45 |
(x: 750; y: 468; w: 352; h: 324),
|
359
|
46 |
(x: 650; y: 1024; w: 500; h: 1),
|
|
47 |
(x: 1250; y: 1100; w: 1; h: 1),
|
|
48 |
(x: 1490; y: 1024; w: 1; h: 1),
|
|
49 |
(x: 1452; y: 904; w: 74; h: 12),
|
|
50 |
(x: 1248; y: 575; w: 68; h: 425),
|
|
51 |
(x: 1426; y: 592; w: 140; h: 142),
|
|
52 |
(x: 1310; y: 192; w: 150; h: 350),
|
403
|
53 |
(x: 1588; y: 194; w: 148; h: 242),
|
359
|
54 |
(x: 1618; y: 472; w: 276; h: 314),
|
|
55 |
(x: 1710; y: 850; w: 130; h: 86),
|
365
|
56 |
(x: 1734; y: 1024; w: 1; h: 1),
|
|
57 |
(x: NTPX; y: 0; w: 1; h: 1)
|
184
|
58 |
);
|
|
59 |
Template0FPoints: array[0..0] of TPoint =
|
|
60 |
(
|
|
61 |
(x: 1023; y: 0)
|
|
62 |
);
|
|
63 |
|
365
|
64 |
const Template1Points: array[0..15] of TSDL_Rect =
|
360
|
65 |
(
|
|
66 |
(x: 400; y: 1024; w: 25; h: 1),
|
|
67 |
(x: 284; y: 892; w: 254; h: 58),
|
|
68 |
(x: 492; y: 634; w: 100; h: 200),
|
403
|
69 |
(x: 254; y: 246; w: 276; h: 380),
|
360
|
70 |
(x: 620; y: 254; w: 125; h: 270),
|
|
71 |
(x: 680; y: 550; w: 96; h: 390),
|
|
72 |
(x: 826; y: 614; w: 110; h: 350),
|
|
73 |
(x: 800; y: 186; w: 150; h: 380),
|
|
74 |
(x: 1000; y: 186; w: 170; h: 375),
|
403
|
75 |
(x: 1012; y: 590; w: 188; h: 298),
|
360
|
76 |
(x: 1240; y: 668; w: 136; h: 172),
|
|
77 |
(x: 1270; y: 194; w: 120; h: 392),
|
|
78 |
(x: 1514; y: 194; w: 364; h: 362),
|
|
79 |
(x: 1450; y: 652; w: 315; h: 232),
|
365
|
80 |
(x: 1460; y: 1024; w: 25; h: 1),
|
|
81 |
(x: NTPX; y: 0; w: 1; h: 1)
|
360
|
82 |
);
|
|
83 |
Template1FPoints: array[0..0] of TPoint =
|
|
84 |
(
|
|
85 |
(x: 1023; y: 0)
|
|
86 |
);
|
|
87 |
|
365
|
88 |
const Template2Points: array[0..21] of TSDL_Rect =
|
360
|
89 |
(
|
|
90 |
(x: 354; y: 1024; w: 1; h: 1),
|
|
91 |
(x: 232; y: 926; w: 226; h: 60),
|
|
92 |
(x: 120; y: 846; w: 298; h: 62),
|
|
93 |
(x: 280; y: 704; w: 210; h: 102),
|
|
94 |
(x: 208; y: 422; w: 192; h: 248),
|
|
95 |
(x: 292; y: 160; w: 206; h: 240),
|
|
96 |
(x: 526; y: 172; w: 92; h: 334),
|
|
97 |
(x: 462; y: 528; w: 226; h: 126),
|
|
98 |
(x: 556; y: 678; w: 268; h: 156),
|
|
99 |
(x: 722; y: 164; w: 138; h: 500),
|
|
100 |
(x: 890; y: 156; w: 94; h: 352),
|
|
101 |
(x: 898; y: 562; w: 170; h: 264),
|
|
102 |
(x: 1092; y: 384; w: 84; h: 446),
|
|
103 |
(x: 1206; y: 200; w: 158; h: 278),
|
|
104 |
(x: 1300; y: 490; w: 104; h: 336),
|
|
105 |
(x: 1416; y: 546; w: 90; h: 398),
|
|
106 |
(x: 1546; y: 192; w: 134; h: 532),
|
|
107 |
(x: 1702; y: 246; w: 156; h: 258),
|
|
108 |
(x: 1700; y: 548; w: 132; h: 340),
|
|
109 |
(x: 1534; y: 898; w: 252; h: 82),
|
365
|
110 |
(x: 1604; y: 1024; w: 1; h: 1),
|
|
111 |
(x: NTPX; y: 0; w: 1; h: 1)
|
360
|
112 |
);
|
|
113 |
Template2FPoints: array[0..0] of TPoint =
|
|
114 |
(
|
|
115 |
(x: 1023; y: 0)
|
|
116 |
);
|
|
117 |
|
365
|
118 |
const Template3Points: array[0..16] of TSDL_Rect =
|
|
119 |
(
|
|
120 |
(x: 348; y: 1024; w: 1; h: 1),
|
|
121 |
(x: 236; y: 852; w: 208; h: 72),
|
|
122 |
(x: 498; y: 710; w: 308; h: 60),
|
|
123 |
(x: 728; y: 852; w: 434; h: 40),
|
|
124 |
(x: 1174; y: 712; w: 332; h: 40),
|
|
125 |
(x: 1402; y: 838; w: 226; h: 36),
|
|
126 |
(x: 1530; y: 1024; w: 1; h: 1),
|
|
127 |
(x: NTPX; y: 0; w: 1; h: 1),
|
|
128 |
(x: 1660; y: 498; w: 111; h: 111),
|
|
129 |
(x: 1270; y: 476; w: 34; h: 102),
|
|
130 |
(x: 682; y: 414; w: 284; h: 132),
|
|
131 |
(x: 230; y: 328; w: 126; h: 168),
|
|
132 |
(x: 410; y: 174; w: 114; h: 100),
|
|
133 |
(x: 790; y: 172; w: 352; h: 120),
|
|
134 |
(x: 1274; y: 128; w: 60; h: 240),
|
|
135 |
(x: 1434; y: 222; w: 254; h: 116),
|
|
136 |
(x: NTPX; y: 0; w: 1; h: 1)
|
|
137 |
);
|
|
138 |
Template3FPoints: array[0..0] of TPoint =
|
|
139 |
(
|
|
140 |
(x: 1023; y: 0)
|
|
141 |
);
|
|
142 |
|
|
143 |
const Template4Points: array[0..22] of TSDL_Rect =
|
|
144 |
(
|
|
145 |
(x: 418; y: 1024; w: 1; h: 1),
|
|
146 |
(x: 248; y: 900; w: 186; h: 62),
|
|
147 |
(x: 272; y: 692; w: 254; h: 138),
|
|
148 |
(x: 610; y: 768; w: 90; h: 166),
|
|
149 |
(x: 820; y: 616; w: 224; h: 258),
|
|
150 |
(x: 1242; y: 758; w: 96; h: 146),
|
|
151 |
(x: 1550; y: 698; w: 224; h: 134),
|
|
152 |
(x: 1530; y: 902; w: 210; h: 54),
|
|
153 |
(x: 1532; y: 1024; w: 1; h: 1),
|
|
154 |
(x: NTPX; y: 0; w: 1; h: 1),
|
|
155 |
(x: 202; y: 418; w: 110; h: 92),
|
|
156 |
(x: 252; y: 312; w: 160; h: 32),
|
|
157 |
(x: 150; y: 168; w: 134; h: 78),
|
|
158 |
(x: 702; y: 160; w: 132; h: 84),
|
|
159 |
(x: 702; y: 308; w: 230; h: 36),
|
|
160 |
(x: 720; y: 408; w: 166; h: 96),
|
|
161 |
(x: NTPX; y: 0; w: 1; h: 1),
|
|
162 |
(x: 1702; y: 434; w: 202; h: 42),
|
|
163 |
(x: 1252; y: 388; w: 134; h: 98),
|
|
164 |
(x: 1214; y: 152; w: 116; h: 154),
|
|
165 |
(x: 1428; y: 252; w: 150; h: 70),
|
|
166 |
(x: 1750; y: 152; w: 86; h: 220),
|
|
167 |
(x: NTPX; y: 0; w: 1; h: 1)
|
|
168 |
);
|
|
169 |
Template4FPoints: array[0..0] of TPoint =
|
|
170 |
(
|
|
171 |
(x: 1023; y: 0)
|
|
172 |
);
|
|
173 |
|
386
|
174 |
const Template5Points: array[0..15] of TSDL_Rect =
|
|
175 |
(
|
|
176 |
(x: 274; y: 1024; w: 1; h: 1),
|
|
177 |
(x: 190; y: 918; w: 168; h: 26),
|
403
|
178 |
(x: 382; y: 576; w: 122; h: 314),
|
386
|
179 |
(x: 568; y: 744; w: 56; h: 180),
|
|
180 |
(x: 678; y: 856; w: 64; h: 56),
|
|
181 |
(x: 740; y: 650; w: 106; h: 220),
|
|
182 |
(x: 644; y: 496; w: 162; h: 140),
|
403
|
183 |
(x: 496; y: 210; w: 886; h: 174),
|
386
|
184 |
(x: 934; y: 448; w: 296; h: 108),
|
|
185 |
(x: 950; y: 752; w: 152; h: 146),
|
|
186 |
(x: 1172; y: 774; w: 60; h: 152),
|
|
187 |
(x: 1284; y: 722; w: 150; h: 138),
|
403
|
188 |
(x: 1494; y: 364; w: 56; h: 582),
|
|
189 |
(x: 1620; y: 774; w: 94; h: 232),
|
386
|
190 |
(x: 1612; y: 1024; w: 1; h: 1),
|
|
191 |
(x: NTPX; y: 0; w: 1; h: 1)
|
|
192 |
);
|
|
193 |
|
|
194 |
Template5FPoints: array[0..0] of TPoint =
|
|
195 |
(
|
|
196 |
(x: 1023; y: 0)
|
|
197 |
);
|
|
198 |
|
405
|
199 |
const Template6Points: array[0..13] of TSDL_Rect =
|
|
200 |
(
|
|
201 |
(x: 368; y: 1022; w: 2; h: 2),
|
|
202 |
(x: 266; y: 840; w: 302; h: 110),
|
|
203 |
(x: 294; y: 512; w: 104; h: 290),
|
|
204 |
(x: 570; y: 580; w: 364; h: 122),
|
|
205 |
(x: 568; y: 440; w: 368; h: 100),
|
|
206 |
(x: 232; y: 260; w: 482; h: 130),
|
|
207 |
(x: 778; y: 242; w: 62; h: 64),
|
|
208 |
(x: 990; y: 154; w: 58; h: 246),
|
|
209 |
(x: 1200; y: 276; w: 590; h: 98),
|
|
210 |
(x: 1088; y: 442; w: 214; h: 188),
|
|
211 |
(x: 1050; y: 686; w: 406; h: 92),
|
|
212 |
(x: 1584; y: 502; w: 190; h: 412),
|
|
213 |
(x: 1646; y: 1020; w: 2; h: 2),
|
|
214 |
(x: NTPX; y: 0; w: 1; h: 1)
|
|
215 |
);
|
|
216 |
|
|
217 |
Template6FPoints: array[0..0] of TPoint =
|
|
218 |
(
|
|
219 |
(x: 1023; y: 0)
|
|
220 |
);
|
|
221 |
|
|
222 |
const EdgeTemplates: array[0..6] of TEdgeTemplate =
|
184
|
223 |
(
|
|
224 |
(BasePoints: @Template0Points;
|
|
225 |
BasePointsCount: Succ(High(Template0Points));
|
|
226 |
FillPoints: @Template0FPoints;
|
|
227 |
FillPointsCount: Succ(High(Template0FPoints));
|
364
|
228 |
RandPassesCount: 4;
|
360
|
229 |
canMirror: true; canFlip: false;
|
|
230 |
),
|
|
231 |
(BasePoints: @Template1Points;
|
|
232 |
BasePointsCount: Succ(High(Template1Points));
|
|
233 |
FillPoints: @Template1FPoints;
|
|
234 |
FillPointsCount: Succ(High(Template1FPoints));
|
364
|
235 |
RandPassesCount: 3;
|
365
|
236 |
canMirror: false; canFlip: false;
|
360
|
237 |
),
|
|
238 |
(BasePoints: @Template2Points;
|
|
239 |
BasePointsCount: Succ(High(Template2Points));
|
|
240 |
FillPoints: @Template2FPoints;
|
|
241 |
FillPointsCount: Succ(High(Template2FPoints));
|
364
|
242 |
RandPassesCount: 3;
|
365
|
243 |
canMirror: false; canFlip: false;
|
|
244 |
),
|
|
245 |
(BasePoints: @Template3Points;
|
|
246 |
BasePointsCount: Succ(High(Template3Points));
|
|
247 |
FillPoints: @Template3FPoints;
|
|
248 |
FillPointsCount: Succ(High(Template3FPoints));
|
|
249 |
RandPassesCount: 3;
|
|
250 |
canMirror: false; canFlip: false;
|
|
251 |
),
|
|
252 |
(BasePoints: @Template4Points;
|
|
253 |
BasePointsCount: Succ(High(Template4Points));
|
|
254 |
FillPoints: @Template4FPoints;
|
|
255 |
FillPointsCount: Succ(High(Template4FPoints));
|
|
256 |
RandPassesCount: 3;
|
|
257 |
canMirror: false; canFlip: false;
|
386
|
258 |
),
|
|
259 |
(BasePoints: @Template5Points;
|
|
260 |
BasePointsCount: Succ(High(Template5Points));
|
|
261 |
FillPoints: @Template5FPoints;
|
|
262 |
FillPointsCount: Succ(High(Template5FPoints));
|
|
263 |
RandPassesCount: 3;
|
|
264 |
canMirror: true; canFlip: false;
|
405
|
265 |
),
|
|
266 |
(BasePoints: @Template6Points;
|
|
267 |
BasePointsCount: Succ(High(Template6Points));
|
|
268 |
FillPoints: @Template6FPoints;
|
|
269 |
FillPointsCount: Succ(High(Template6FPoints));
|
|
270 |
RandPassesCount: 3;
|
|
271 |
canMirror: true; canFlip: false;
|
358
|
272 |
)
|
184
|
273 |
);
|
|
274 |
|
|
275 |
|
|
276 |
|
|
277 |
implementation
|
|
278 |
|
|
279 |
end.
|