author | sheepluva |
Tue, 05 May 2015 12:48:25 +0200 | |
changeset 10928 | 4d8826a87419 |
parent 10813 | ba1a607a0c9a |
child 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
184 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
184 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
184 | 21 |
unit uLandTemplates; |
22 |
interface |
|
534 | 23 |
uses SDLh; |
184 | 24 |
|
6553
91365db8b82c
Slow down flakes/clouds that are farther away. Also unbreak NTPX w/ SDL 1.2
nemo
parents:
6552
diff
changeset
|
25 |
const NTPX = Low(SmallInt); |
365 | 26 |
|
7976
e1029baf2483
revert merge w/ Medo change, since it crashes the engine. Access violation line 70 of uLandOutline.pas|line 231 of uLand.pas etc
nemo
parents:
7857
diff
changeset
|
27 |
type TPointArray = array[0..64] of TSDL_Rect; |
7035 | 28 |
PPointArray = ^TPointArray; |
184 | 29 |
TEdgeTemplate = record |
7976
e1029baf2483
revert merge w/ Medo change, since it crashes the engine. Access violation line 70 of uLandOutline.pas|line 231 of uLand.pas etc
nemo
parents:
7857
diff
changeset
|
30 |
BasePoints: PPointArray; |
184 | 31 |
BasePointsCount: Longword; |
32 |
FillPoints: PPointArray; |
|
33 |
FillPointsCount: Longword; |
|
429 | 34 |
BezierizeCount: Longword; |
364 | 35 |
RandPassesCount: Longword; |
1776 | 36 |
TemplateHeight, TemplateWidth: Longword; |
1773 | 37 |
canMirror, canFlip, isNegative, canInvert: boolean; |
1776 | 38 |
hasGirders: boolean; |
1784 | 39 |
MaxHedgeHogs: Longword; |
184 | 40 |
end; |
1792 | 41 |
///////////////////////// ORIGINAL SET ////////////////////////////// |
2599 | 42 |
/// Area expanded to 2848x1424 at Tiys request to move out border /// |
1792 | 43 |
///////////////////////////////////////////////////////////////////// |
44 |
const Template0Points: array[0..18] of TSDL_Rect = |
|
45 |
( |
|
46 |
(x: 810; y: 1424; w: 1; h: 1), |
|
47 |
(x: 560; y: 1160; w: 130; h: 170), |
|
48 |
(x: 742; y: 1106; w: 316; h: 150), |
|
49 |
(x: 638; y: 786; w: 270; h: 180), |
|
50 |
(x: 646; y: 576; w: 242; h: 156), |
|
51 |
(x: 952; y: 528; w: 610; h: 300), |
|
52 |
(x: 1150; y: 868; w: 352; h: 324), |
|
53 |
(x: 1050; y: 1424; w: 500; h: 1), |
|
54 |
(x: 1650; y: 1500; w: 1; h: 1), |
|
55 |
(x: 1890; y: 1424; w: 1; h: 1), |
|
56 |
(x: 1852; y: 1304; w: 74; h: 12), |
|
57 |
(x: 1648; y: 975; w: 68; h: 425), |
|
58 |
(x: 1826; y: 992; w: 140; h: 142), |
|
59 |
(x: 1710; y: 592; w: 150; h: 350), |
|
60 |
(x: 1988; y: 594; w: 148; h: 242), |
|
61 |
(x: 2018; y: 872; w: 276; h: 314), |
|
62 |
(x: 2110; y: 1250; w: 130; h: 86), |
|
63 |
(x: 2134; y: 1424; w: 1; h: 1), |
|
64 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
65 |
); |
|
66 |
Template0FPoints: array[0..0] of TPoint = |
|
67 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
68 |
(x: 1023; y: 0) |
1792 | 69 |
); |
184 | 70 |
|
1792 | 71 |
const Template1Points: array[0..15] of TSDL_Rect = |
72 |
( |
|
73 |
(x: 800; y: 1424; w: 25; h: 1), |
|
74 |
(x: 684; y: 1292; w: 254; h: 58), |
|
75 |
(x: 892; y: 1034; w: 100; h: 200), |
|
76 |
(x: 654; y: 646; w: 276; h: 380), |
|
77 |
(x: 1020; y: 654; w: 125; h: 270), |
|
78 |
(x: 1080; y: 950; w: 96; h: 390), |
|
79 |
(x: 1226; y: 1014; w: 110; h: 350), |
|
80 |
(x: 1200; y: 586; w: 150; h: 380), |
|
81 |
(x: 1400; y: 586; w: 170; h: 375), |
|
82 |
(x: 1412; y: 990; w: 188; h: 298), |
|
83 |
(x: 1640; y: 1068; w: 136; h: 172), |
|
84 |
(x: 1670; y: 594; w: 120; h: 392), |
|
85 |
(x: 1914; y: 594; w: 364; h: 362), |
|
86 |
(x: 1850; y: 1052; w: 315; h: 232), |
|
87 |
(x: 1860; y: 1424; w: 25; h: 1), |
|
88 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
89 |
); |
|
90 |
Template1FPoints: array[0..0] of TPoint = |
|
91 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
92 |
(x: 1023; y: 0) |
1792 | 93 |
); |
94 |
||
95 |
const Template2Points: array[0..21] of TSDL_Rect = |
|
96 |
( |
|
97 |
(x: 754; y: 1424; w: 1; h: 1), |
|
98 |
(x: 632; y: 1326; w: 226; h: 60), |
|
99 |
(x: 520; y: 1246; w: 298; h: 62), |
|
100 |
(x: 680; y: 1104; w: 210; h: 102), |
|
101 |
(x: 608; y: 822; w: 192; h: 248), |
|
102 |
(x: 692; y: 560; w: 206; h: 240), |
|
103 |
(x: 926; y: 572; w: 92; h: 334), |
|
104 |
(x: 862; y: 928; w: 226; h: 126), |
|
105 |
(x: 956; y: 1078; w: 268; h: 156), |
|
106 |
(x: 1122; y: 564; w: 138; h: 500), |
|
107 |
(x: 1290; y: 556; w: 94; h: 352), |
|
108 |
(x: 1298; y: 962; w: 170; h: 264), |
|
109 |
(x: 1492; y: 784; w: 84; h: 446), |
|
110 |
(x: 1606; y: 600; w: 158; h: 278), |
|
111 |
(x: 1700; y: 890; w: 104; h: 336), |
|
112 |
(x: 1816; y: 946; w: 90; h: 398), |
|
113 |
(x: 1946; y: 592; w: 134; h: 532), |
|
114 |
(x: 2102; y: 646; w: 156; h: 258), |
|
115 |
(x: 2100; y: 948; w: 132; h: 340), |
|
116 |
(x: 1934; y: 1298; w: 252; h: 82), |
|
117 |
(x: 2004; y: 1424; w: 1; h: 1), |
|
118 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
119 |
); |
|
120 |
Template2FPoints: array[0..0] of TPoint = |
|
121 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
122 |
(x: 1023; y: 0) |
1792 | 123 |
); |
124 |
||
125 |
const Template3Points: array[0..16] of TSDL_Rect = |
|
126 |
( |
|
127 |
(x: 748; y: 1424; w: 1; h: 1), |
|
128 |
(x: 636; y: 1252; w: 208; h: 72), |
|
129 |
(x: 898; y: 1110; w: 308; h: 60), |
|
130 |
(x: 1128; y: 1252; w: 434; h: 40), |
|
131 |
(x: 1574; y: 1112; w: 332; h: 40), |
|
132 |
(x: 1802; y: 1238; w: 226; h: 36), |
|
133 |
(x: 1930; y: 1424; w: 1; h: 1), |
|
134 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
135 |
(x: 2060; y: 898; w: 111; h: 111), |
|
136 |
(x: 1670; y: 876; w: 34; h: 102), |
|
137 |
(x: 1082; y: 814; w: 284; h: 132), |
|
138 |
(x: 630; y: 728; w: 126; h: 168), |
|
139 |
(x: 810; y: 574; w: 114; h: 100), |
|
140 |
(x: 1190; y: 572; w: 352; h: 120), |
|
141 |
(x: 1674; y: 528; w: 60; h: 240), |
|
142 |
(x: 1834; y: 622; w: 254; h: 116), |
|
143 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
144 |
); |
|
145 |
Template3FPoints: array[0..0] of TPoint = |
|
146 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
147 |
(x: 1023; y: 0) |
1792 | 148 |
); |
149 |
||
150 |
const Template4Points: array[0..22] of TSDL_Rect = |
|
151 |
( |
|
152 |
(x: 818; y: 1424; w: 1; h: 1), |
|
153 |
(x: 648; y: 1300; w: 186; h: 62), |
|
154 |
(x: 672; y: 1092; w: 254; h: 138), |
|
155 |
(x: 1010; y: 1168; w: 90; h: 166), |
|
156 |
(x: 1220; y: 1016; w: 224; h: 258), |
|
157 |
(x: 1642; y: 1158; w: 96; h: 146), |
|
158 |
(x: 1950; y: 1098; w: 224; h: 134), |
|
159 |
(x: 1930; y: 1302; w: 210; h: 54), |
|
160 |
(x: 1932; y: 1424; w: 1; h: 1), |
|
161 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
162 |
(x: 602; y: 818; w: 110; h: 92), |
|
163 |
(x: 652; y: 712; w: 160; h: 32), |
|
164 |
(x: 550; y: 568; w: 134; h: 78), |
|
165 |
(x: 1102; y: 560; w: 132; h: 84), |
|
166 |
(x: 1102; y: 708; w: 230; h: 36), |
|
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
167 |
(x: 1120; y: 848; w: 166; h: 96), |
1792 | 168 |
(x: NTPX; y: 0; w: 1; h: 1), |
169 |
(x: 2102; y: 834; w: 202; h: 42), |
|
170 |
(x: 1652; y: 788; w: 134; h: 98), |
|
171 |
(x: 1614; y: 552; w: 116; h: 154), |
|
172 |
(x: 1828; y: 652; w: 150; h: 70), |
|
173 |
(x: 2150; y: 552; w: 86; h: 220), |
|
174 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
175 |
); |
|
176 |
Template4FPoints: array[0..0] of TPoint = |
|
177 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
178 |
(x: 1023; y: 0) |
1792 | 179 |
); |
180 |
||
181 |
const Template5Points: array[0..15] of TSDL_Rect = |
|
182 |
( |
|
183 |
(x: 674; y: 1424; w: 1; h: 1), |
|
184 |
(x: 590; y: 1318; w: 168; h: 26), |
|
185 |
(x: 782; y: 976; w: 122; h: 314), |
|
186 |
(x: 968; y: 1144; w: 56; h: 180), |
|
187 |
(x: 1078; y: 1256; w: 64; h: 56), |
|
188 |
(x: 1140; y: 1050; w: 106; h: 220), |
|
189 |
(x: 1044; y: 896; w: 162; h: 140), |
|
190 |
(x: 896; y: 610; w: 886; h: 174), |
|
191 |
(x: 1334; y: 848; w: 296; h: 108), |
|
192 |
(x: 1350; y: 1152; w: 152; h: 146), |
|
193 |
(x: 1572; y: 1174; w: 60; h: 152), |
|
194 |
(x: 1684; y: 1122; w: 150; h: 138), |
|
195 |
(x: 1894; y: 764; w: 56; h: 582), |
|
196 |
(x: 2020; y: 1174; w: 94; h: 232), |
|
197 |
(x: 2012; y: 1424; w: 1; h: 1), |
|
198 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
199 |
); |
|
200 |
Template5FPoints: array[0..0] of TPoint = |
|
201 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
202 |
(x: 1023; y: 0) |
1792 | 203 |
); |
204 |
||
205 |
const Template6Points: array[0..13] of TSDL_Rect = |
|
206 |
( |
|
207 |
(x: 768; y: 1422; w: 2; h: 2), |
|
208 |
(x: 666; y: 1240; w: 302; h: 110), |
|
209 |
(x: 694; y: 912; w: 104; h: 290), |
|
210 |
(x: 970; y: 980; w: 364; h: 122), |
|
211 |
(x: 968; y: 840; w: 368; h: 100), |
|
212 |
(x: 632; y: 660; w: 482; h: 130), |
|
213 |
(x: 1178; y: 642; w: 62; h: 64), |
|
214 |
(x: 1390; y: 554; w: 58; h: 246), |
|
215 |
(x: 1600; y: 676; w: 590; h: 98), |
|
216 |
(x: 1488; y: 842; w: 214; h: 188), |
|
217 |
(x: 1450; y: 1086; w: 406; h: 92), |
|
218 |
(x: 1984; y: 902; w: 190; h: 412), |
|
219 |
(x: 2046; y: 1420; w: 2; h: 2), |
|
220 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
221 |
); |
|
222 |
Template6FPoints: array[0..0] of TPoint = |
|
223 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
224 |
(x: 1023; y: 0) |
1792 | 225 |
); |
226 |
||
227 |
const Template7Points: array[0..5] of TSDL_Rect = |
|
228 |
( |
|
229 |
(x: 562; y: 1424; w: 400; h: 1), |
|
230 |
(x: 626; y: 634; w: 142; h: 360), |
|
231 |
(x: 1336; y: 1140; w: 400; h: 200), |
|
232 |
(x: 1976; y: 576; w: 186; h: 550), |
|
233 |
(x: 1830; y: 1424; w: 454; h: 1), |
|
234 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
235 |
); |
|
236 |
Template7FPoints: array[0..0] of TPoint = |
|
237 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
238 |
(x: 1023; y: 0) |
1792 | 239 |
); |
240 |
||
241 |
||
242 |
const Template8Points: array[0..19] of TSDL_Rect = |
|
243 |
( |
|
244 |
(x: 764; y: 1424; w: 20; h: 1), |
|
245 |
(x: 690; y: 1260; w: 64; h: 62), |
|
246 |
(x: 886; y: 1150; w: 52; h: 146), |
|
247 |
(x: 656; y: 990; w: 116; h: 144), |
|
248 |
(x: 870; y: 868; w: 138; h: 168), |
|
249 |
(x: 642; y: 642; w: 158; h: 162), |
|
250 |
(x: 908; y: 710; w: 198; h: 72), |
|
251 |
(x: 1170; y: 628; w: 118; h: 134), |
|
252 |
(x: 1036; y: 1118; w: 142; h: 132), |
|
253 |
(x: 1368; y: 1100; w: 172; h: 58), |
|
254 |
(x: 1370; y: 1204; w: 172; h: 62), |
|
255 |
(x: 1632; y: 1104; w: 82; h: 226), |
|
256 |
(x: 1756; y: 994; w: 64; h: 152), |
|
257 |
(x: 1614; y: 734; w: 106; h: 152), |
|
258 |
(x: 1810; y: 660; w: 380; h: 82), |
|
259 |
(x: 1928; y: 822; w: 30; h: 118), |
|
260 |
(x: 1940; y: 988; w: 212; h: 50), |
|
261 |
(x: 1864; y: 1146; w: 128; h: 146), |
|
262 |
(x: 2030; y: 1424; w: 20; h: 1), |
|
263 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
264 |
); |
|
265 |
Template8FPoints: array[0..0] of TPoint = |
|
266 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
267 |
(x: 1023; y: 0) |
1792 | 268 |
); |
269 |
||
270 |
const Template9Points: array[0..31] of TSDL_Rect = |
|
271 |
( |
|
272 |
(x: 740; y: 1424; w: 1; h: 1), |
|
273 |
(x: 676; y: 1302; w: 44; h: 54), |
|
274 |
(x: 834; y: 1236; w: 58; h: 90), |
|
275 |
(x: 666; y: 1134; w: 80; h: 80), |
|
276 |
(x: 646; y: 1004; w: 96; h: 108), |
|
277 |
(x: 826; y: 1046; w: 110; h: 112), |
|
278 |
(x: 634; y: 692; w: 118; h: 164), |
|
279 |
(x: 828; y: 796; w: 130; h: 110), |
|
280 |
(x: 916; y: 598; w: 344; h: 78), |
|
281 |
(x: 1088; y: 826; w: 50; h: 40), |
|
282 |
(x: 1026; y: 960; w: 32; h: 148), |
|
283 |
(x: 1098; y: 1050; w: 160; h: 34), |
|
284 |
(x: 1074; y: 1188; w: 36; h: 136), |
|
285 |
(x: 1414; y: 1248; w: 48; h: 48), |
|
286 |
(x: 1486; y: 1128; w: 64; h: 88), |
|
287 |
(x: 1358; y: 1060; w: 70; h: 74), |
|
288 |
(x: 1516; y: 996; w: 68; h: 70), |
|
289 |
(x: 1518; y: 884; w: 68; h: 82), |
|
290 |
(x: 1358; y: 724; w: 44; h: 140), |
|
291 |
(x: 1672; y: 706; w: 52; h: 66), |
|
292 |
(x: 1654; y: 902; w: 58; h: 66), |
|
293 |
(x: 1634; y: 1160; w: 76; h: 112), |
|
294 |
(x: 1780; y: 1162; w: 124; h: 64), |
|
295 |
(x: 1872; y: 872; w: 54; h: 134), |
|
296 |
(x: 1810; y: 596; w: 246; h: 62), |
|
297 |
(x: 2106; y: 554; w: 38; h: 238), |
|
298 |
(x: 2212; y: 748; w: 28; h: 28), |
|
299 |
(x: 2092; y: 924; w: 144; h: 94), |
|
300 |
(x: 2032; y: 1078; w: 248; h: 20), |
|
301 |
(x: 2032; y: 1202; w: 238; h: 16), |
|
302 |
(x: 2080; y: 1424; w: 1; h: 1), |
|
303 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
304 |
); |
|
305 |
Template9FPoints: array[0..0] of TPoint = |
|
306 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
307 |
(x: 1023; y: 0) |
1792 | 308 |
); |
309 |
||
310 |
const Template10Points: array[0..13] of TSDL_Rect = |
|
311 |
( |
|
312 |
(x: 588; y: 1424; w: 190; h: 1), |
|
313 |
(x: 640; y: 1082; w: 140; h: 150), |
|
314 |
(x: 714; y: 868; w: 352; h: 94), |
|
315 |
(x: 1126; y: 646; w: 106; h: 282), |
|
316 |
(x: 1302; y: 790; w: 368; h: 142), |
|
317 |
(x: 1358; y: 988; w: 116; h: 244), |
|
318 |
(x: 1276; y: 1424; w: 14; h: 1), |
|
319 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
320 |
(x: 1464; y: 1424; w: 22; h: 1), |
|
321 |
(x: 1688; y: 1195; w: 120; h: 120), |
|
322 |
(x: 1858; y: 674; w: 354; h: 448), |
|
323 |
(x: 2088; y: 1195; w: 120; h: 120), |
|
324 |
(x: 2182; y: 1424; w: 2; h: 1), |
|
325 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
326 |
); |
|
327 |
Template10FPoints: array[0..0] of TPoint = |
|
328 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
329 |
(x: 1023; y: 0) |
1792 | 330 |
); |
331 |
||
332 |
const Template11Points: array[0..9] of TSDL_Rect = |
|
333 |
( |
|
334 |
(x: 674; y: 1424; w: 166; h: 1), |
|
335 |
(x: 730; y: 1262; w: 96; h: 92), |
|
336 |
(x: 892; y: 1090; w: 152; h: 250), |
|
337 |
(x: 1146; y: 1046; w: 36; h: 270), |
|
338 |
(x: 1338; y: 1026; w: 54; h: 224), |
|
339 |
(x: 1534; y: 1046; w: 44; h: 216), |
|
340 |
(x: 1692; y: 1030; w: 46; h: 300), |
|
341 |
(x: 1848; y: 1064; w: 158; h: 272), |
|
342 |
(x: 1984; y: 1424; w: 136; h: 1), |
|
343 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
344 |
); |
|
345 |
Template11FPoints: array[0..0] of TPoint = |
|
346 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
347 |
(x: 1023; y: 0) |
1792 | 348 |
); |
349 |
||
350 |
const Template12Points: array[0..13] of TSDL_Rect = |
|
351 |
( |
|
352 |
(x: 760; y: 1424; w: 2; h: 2), |
|
353 |
(x: 642; y: 1030; w: 46; h: 286), |
|
354 |
(x: 854; y: 1072; w: 194; h: 56), |
|
355 |
(x: 654; y: 734; w: 534; h: 200), |
|
356 |
(x: 1270; y: 676; w: 58; h: 468), |
|
357 |
(x: 1476; y: 672; w: 198; h: 112), |
|
358 |
(x: 1400; y: 1424; w: 64; h: 2), |
|
359 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
360 |
(x: 1644; y: 1424; w: 64; h: 2), |
|
361 |
(x: 1756; y: 894; w: 184; h: 94), |
|
362 |
(x: 2000; y: 814; w: 76; h: 358), |
|
363 |
(x: 2148; y: 984; w: 108; h: 304), |
|
364 |
(x: 2088; y: 1424; w: 176; h: 1), |
|
365 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
366 |
); |
|
367 |
Template12FPoints: array[0..0] of TPoint = |
|
368 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
369 |
(x: 1023; y: 0) |
1792 | 370 |
); |
371 |
||
372 |
const Template13Points: array[0..15] of TSDL_Rect = |
|
373 |
( |
|
374 |
(x: 846; y: 1424; w: 140; h: 2), |
|
375 |
(x: 680; y: 1272; w: 196; h: 32), |
|
376 |
(x: 654; y: 1080; w: 262; h: 134), |
|
377 |
(x: 1054; y: 1072; w: 220; h: 136), |
|
378 |
(x: 1008; y: 890; w: 268; h: 110), |
|
379 |
(x: 700; y: 762; w: 104; h: 200), |
|
380 |
(x: 846; y: 624; w: 306; h: 58), |
|
381 |
(x: 1316; y: 588; w: 84; h: 206), |
|
382 |
(x: 1548; y: 574; w: 104; h: 220), |
|
383 |
(x: 1826; y: 576; w: 120; h: 202), |
|
384 |
(x: 1956; y: 818; w: 192; h: 68), |
|
385 |
(x: 1626; y: 948; w: 246; h: 88), |
|
386 |
(x: 1656; y: 1106; w: 194; h: 150), |
|
387 |
(x: 1968; y: 1106; w: 198; h: 152), |
|
388 |
(x: 1844; y: 1424; w: 2; h: 2), |
|
389 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
390 |
); |
|
391 |
Template13FPoints: array[0..0] of TPoint = |
|
392 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
393 |
(x: 1023; y: 0) |
1792 | 394 |
); |
395 |
||
396 |
const Template14Points: array[0..13] of TSDL_Rect = |
|
397 |
( |
|
398 |
(x: 686; y: 1424; w: 2; h: 2), |
|
399 |
(x: 644; y: 1286; w: 84; h: 54), |
|
400 |
(x: 612; y: 1086; w: 150; h: 166), |
|
401 |
(x: 1078; y: 1240; w: 186; h: 98), |
|
402 |
(x: 1144; y: 1004; w: 124; h: 58), |
|
403 |
(x: 1020; y: 582; w: 112; h: 194), |
|
404 |
(x: 1388; y: 660; w: 92; h: 132), |
|
405 |
(x: 1710; y: 574; w: 154; h: 196), |
|
406 |
(x: 1560; y: 974; w: 118; h: 64), |
|
407 |
(x: 1452; y: 1222; w: 328; h: 92), |
|
408 |
(x: 1996; y: 1030; w: 242; h: 222), |
|
409 |
(x: 1998; y: 1316; w: 254; h: 50), |
|
410 |
(x: 2008; y: 1424; w: 2; h: 2), |
|
411 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
412 |
); |
|
413 |
Template14FPoints: array[0..0] of TPoint = |
|
414 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
415 |
(x: 1023; y: 0) |
1792 | 416 |
); |
417 |
||
418 |
const Template15Points: array[0..23] of TSDL_Rect = |
|
419 |
( |
|
420 |
(x: 702; y: 1424; w: 2; h: 2), |
|
421 |
(x: 640; y: 1290; w: 44; h: 94), |
|
422 |
(x: 750; y: 1262; w: 44; h: 94), |
|
423 |
(x: 860; y: 1306; w: 78; h: 70), |
|
424 |
(x: 866; y: 1424; w: 2; h: 2), |
|
425 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
426 |
(x: 1204; y: 1424; w: 2; h: 2), |
|
427 |
(x: 1120; y: 1182; w: 108; h: 174), |
|
428 |
(x: 884; y: 1024; w: 314; h: 98), |
|
429 |
(x: 710; y: 882; w: 76; h: 230), |
|
430 |
(x: 834; y: 686; w: 220; h: 154), |
|
431 |
(x: 1240; y: 674; w: 56; h: 266), |
|
432 |
(x: 1424; y: 644; w: 78; h: 304), |
|
433 |
(x: 1648; y: 646; w: 116; h: 162), |
|
434 |
(x: 1980; y: 726; w: 190; h: 228), |
|
435 |
(x: 1760; y: 1004; w: 140; h: 84), |
|
436 |
(x: 1596; y: 1140; w: 242; h: 118), |
|
437 |
(x: 1616; y: 1424; w: 2; h: 2), |
|
438 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
439 |
(x: 1894; y: 1424; w: 2; h: 2), |
|
440 |
(x: 1850; y: 1328; w: 88; h: 34), |
|
441 |
(x: 1998; y: 1238; w: 96; h: 112), |
|
442 |
(x: 2056; y: 1424; w: 2; h: 2), |
|
443 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
444 |
); |
|
445 |
Template15FPoints: array[0..0] of TPoint = |
|
446 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
447 |
(x: 1023; y: 0) |
1792 | 448 |
); |
449 |
||
450 |
const Template16Points: array[0..28] of TSDL_Rect = |
|
451 |
( |
|
452 |
(x: 700; y: 1424; w: 2; h: 2), |
|
453 |
(x: 794; y: 1302; w: 58; h: 62), |
|
454 |
(x: 780; y: 1170; w: 94; h: 90), |
|
455 |
(x: 586; y: 1026; w: 80; h: 220), |
|
456 |
(x: 776; y: 1000; w: 82; h: 118), |
|
457 |
(x: 582; y: 728; w: 134; h: 226), |
|
458 |
(x: 768; y: 728; w: 52; h: 52), |
|
459 |
(x: 872; y: 574; w: 56; h: 212), |
|
460 |
(x: 988; y: 722; w: 60; h: 62), |
|
461 |
(x: 1118; y: 724; w: 108; h: 218), |
|
462 |
(x: 1012; y: 916; w: 36; h: 168), |
|
463 |
(x: 1128; y: 1056; w: 140; h: 134), |
|
464 |
(x: 988; y: 1250; w: 74; h: 82), |
|
465 |
(x: 1150; y: 1424; w: 102; h: 2), |
|
466 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
467 |
(x: 1704; y: 1424; w: 72; h: 2), |
|
468 |
(x: 1626; y: 1308; w: 266; h: 34), |
|
469 |
(x: 1624; y: 1148; w: 252; h: 80), |
|
470 |
(x: 1612; y: 976; w: 256; h: 94), |
|
471 |
(x: 1540; y: 834; w: 174; h: 86), |
|
472 |
(x: 1796; y: 718; w: 156; h: 96), |
|
473 |
(x: 1486; y: 614; w: 206; h: 66), |
|
474 |
(x: 1846; y: 556; w: 152; h: 40), |
|
475 |
(x: 2108; y: 672; w: 60; h: 162), |
|
476 |
(x: 1942; y: 888; w: 146; h: 80), |
|
477 |
(x: 2086; y: 1034; w: 178; h: 122), |
|
478 |
(x: 1972; y: 1220; w: 34; h: 124), |
|
479 |
(x: 2098; y: 1424; w: 52; h: 2), |
|
480 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
481 |
); |
|
482 |
Template16FPoints: array[0..0] of TPoint = |
|
483 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
484 |
(x: 1023; y: 0) |
1792 | 485 |
); |
486 |
||
487 |
const Template17Points: array[0..13] of TSDL_Rect = |
|
488 |
( |
|
489 |
(x: 630; y: 1424; w: 2; h: 2), |
|
490 |
(x: 566; y: 1256; w: 128; h: 118), |
|
491 |
(x: 752; y: 1256; w: 98; h: 114), |
|
492 |
(x: 748; y: 1074; w: 140; h: 138), |
|
493 |
(x: 956; y: 1072; w: 136; h: 142), |
|
494 |
(x: 1146; y: 1070; w: 114; h: 252), |
|
495 |
(x: 1324; y: 778; w: 120; h: 390), |
|
496 |
(x: 1522; y: 862; w: 114; h: 210), |
|
497 |
(x: 1724; y: 706; w: 130; h: 252), |
|
498 |
(x: 1936; y: 606; w: 278; h: 234), |
|
499 |
(x: 1924; y: 1044; w: 272; h: 52), |
|
500 |
(x: 1972; y: 1252; w: 180; h: 56), |
|
501 |
(x: 1998; y: 1424; w: 42; h: 2), |
|
502 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
503 |
); |
|
504 |
Template17FPoints: array[0..0] of TPoint = |
|
505 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
506 |
(x: 1023; y: 0) |
1792 | 507 |
); |
508 |
//////////////////// MIXING AND MATCHING ORIGINAL ////////////////////////////////////// |
|
509 |
const Template18Points: array[0..32] of TSDL_Rect = |
|
510 |
( |
|
511 |
(x: 610; y: 1424; w: 1; h: 1), |
|
512 |
(x: 360; y: 1160; w: 130; h: 170), |
|
513 |
(x: 542; y: 1106; w: 316; h: 150), |
|
514 |
(x: 438; y: 786; w: 270; h: 180), |
|
515 |
(x: 446; y: 576; w: 242; h: 156), |
|
516 |
(x: 752; y: 528; w: 610; h: 300), |
|
517 |
(x: 950; y: 868; w: 352; h: 324), |
|
518 |
(x: 850; y: 1424; w: 500; h: 1), |
|
519 |
(x: 1450; y: 1500; w: 1; h: 1), |
|
520 |
(x: 1690; y: 1424; w: 1; h: 1), |
|
521 |
(x: 1652; y: 1304; w: 74; h: 12), |
|
522 |
(x: 1448; y: 975; w: 68; h: 425), |
|
523 |
(x: 1626; y: 992; w: 140; h: 142), |
|
524 |
(x: 1510; y: 592; w: 150; h: 350), |
|
525 |
(x: 1788; y: 594; w: 148; h: 242), |
|
526 |
(x: 1818; y: 872; w: 276; h: 314), |
|
527 |
(x: 1910; y: 1250; w: 130; h: 86), |
|
528 |
(x: 1934; y: 1424; w: 1; h: 1), |
|
529 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
530 |
(x: 2230; y: 1424; w: 2; h: 2), |
|
531 |
(x: 2166; y: 1256; w: 128; h: 118), |
|
532 |
(x: 2352; y: 1256; w: 98; h: 114), |
|
533 |
(x: 2348; y: 1074; w: 140; h: 138), |
|
534 |
(x: 2556; y: 1072; w: 136; h: 142), |
|
535 |
(x: 2746; y: 1070; w: 114; h: 252), |
|
536 |
(x: 2924; y: 778; w: 120; h: 390), |
|
537 |
(x: 3122; y: 862; w: 114; h: 210), |
|
538 |
(x: 3324; y: 706; w: 130; h: 252), |
|
539 |
(x: 3536; y: 606; w: 278; h: 234), |
|
540 |
(x: 3524; y: 1044; w: 272; h: 52), |
|
541 |
(x: 3572; y: 1252; w: 180; h: 56), |
|
542 |
(x: 3598; y: 1424; w: 42; h: 2), |
|
543 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
544 |
); |
|
545 |
Template18FPoints: array[0..0] of TPoint = |
|
546 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
547 |
(x: 2047; y: 0) |
1792 | 548 |
); |
549 |
||
550 |
const Template19Points: array[0..44] of TSDL_Rect = |
|
551 |
( |
|
552 |
(x: 600; y: 1424; w: 25; h: 1), |
|
553 |
(x: 484; y: 1292; w: 254; h: 58), |
|
554 |
(x: 692; y: 1034; w: 100; h: 200), |
|
555 |
(x: 454; y: 646; w: 276; h: 380), |
|
556 |
(x: 820; y: 654; w: 125; h: 270), |
|
557 |
(x: 880; y: 950; w: 96; h: 390), |
|
558 |
(x: 1026; y: 1014; w: 110; h: 350), |
|
559 |
(x: 1000; y: 586; w: 150; h: 380), |
|
560 |
(x: 1200; y: 586; w: 170; h: 375), |
|
561 |
(x: 1212; y: 990; w: 188; h: 298), |
|
562 |
(x: 1440; y: 1068; w: 136; h: 172), |
|
563 |
(x: 1470; y: 594; w: 120; h: 392), |
|
564 |
(x: 1714; y: 594; w: 364; h: 362), |
|
565 |
(x: 1650; y: 1052; w: 315; h: 232), |
|
566 |
(x: 1660; y: 1424; w: 25; h: 1), |
|
567 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
568 |
(x: 2000; y: 1424; w: 2; h: 2), |
|
569 |
(x: 2094; y: 1302; w: 58; h: 62), |
|
570 |
(x: 2080; y: 1170; w: 94; h: 90), |
|
571 |
(x: 1886; y: 1026; w: 80; h: 220), |
|
572 |
(x: 2076; y: 1000; w: 82; h: 118), |
|
573 |
(x: 1882; y: 728; w: 134; h: 226), |
|
574 |
(x: 2068; y: 728; w: 52; h: 52), |
|
575 |
(x: 2172; y: 574; w: 56; h: 212), |
|
576 |
(x: 2288; y: 722; w: 60; h: 62), |
|
577 |
(x: 2418; y: 724; w: 108; h: 218), |
|
578 |
(x: 2312; y: 916; w: 36; h: 168), |
|
579 |
(x: 2428; y: 1056; w: 140; h: 134), |
|
580 |
(x: 2288; y: 1250; w: 74; h: 82), |
|
581 |
(x: 2450; y: 1424; w: 102; h: 2), |
|
582 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
583 |
(x: 3004; y: 1424; w: 72; h: 2), |
|
584 |
(x: 2926; y: 1308; w: 266; h: 34), |
|
585 |
(x: 2924; y: 1148; w: 252; h: 80), |
|
586 |
(x: 2912; y: 976; w: 256; h: 94), |
|
587 |
(x: 2840; y: 834; w: 174; h: 86), |
|
588 |
(x: 3096; y: 718; w: 156; h: 96), |
|
589 |
(x: 2786; y: 614; w: 206; h: 66), |
|
590 |
(x: 3146; y: 556; w: 152; h: 40), |
|
591 |
(x: 3408; y: 672; w: 60; h: 162), |
|
592 |
(x: 3242; y: 888; w: 146; h: 80), |
|
593 |
(x: 3386; y: 1034; w: 178; h: 122), |
|
594 |
(x: 3272; y: 1220; w: 34; h: 124), |
|
595 |
(x: 3398; y: 1424; w: 52; h: 2), |
|
596 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
597 |
); |
|
598 |
Template19FPoints: array[0..0] of TPoint = |
|
599 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
600 |
(x: 2047; y: 0) |
1792 | 601 |
); |
602 |
||
603 |
const Template20Points: array[0..45] of TSDL_Rect = |
|
604 |
( |
|
605 |
(x: 554; y: 1424; w: 1; h: 1), |
|
606 |
(x: 432; y: 1326; w: 226; h: 60), |
|
607 |
(x: 320; y: 1246; w: 298; h: 62), |
|
608 |
(x: 480; y: 1104; w: 210; h: 102), |
|
609 |
(x: 408; y: 822; w: 192; h: 248), |
|
610 |
(x: 492; y: 560; w: 206; h: 240), |
|
611 |
(x: 726; y: 572; w: 92; h: 334), |
|
612 |
(x: 662; y: 928; w: 226; h: 126), |
|
613 |
(x: 756; y: 1078; w: 268; h: 156), |
|
614 |
(x: 922; y: 564; w: 138; h: 500), |
|
615 |
(x: 1090; y: 556; w: 94; h: 352), |
|
616 |
(x: 1098; y: 962; w: 170; h: 264), |
|
617 |
(x: 1292; y: 784; w: 84; h: 446), |
|
618 |
(x: 1406; y: 600; w: 158; h: 278), |
|
619 |
(x: 1500; y: 890; w: 104; h: 336), |
|
620 |
(x: 1616; y: 946; w: 90; h: 398), |
|
621 |
(x: 1746; y: 592; w: 134; h: 532), |
|
622 |
(x: 1902; y: 646; w: 156; h: 258), |
|
623 |
(x: 1900; y: 948; w: 132; h: 340), |
|
624 |
(x: 1734; y: 1298; w: 252; h: 82), |
|
625 |
(x: 1804; y: 1424; w: 1; h: 1), |
|
626 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
627 |
(x: 2102; y: 1424; w: 2; h: 2), |
|
628 |
(x: 2040; y: 1290; w: 44; h: 94), |
|
629 |
(x: 2150; y: 1262; w: 44; h: 94), |
|
630 |
(x: 2260; y: 1306; w: 78; h: 70), |
|
631 |
(x: 2266; y: 1424; w: 2; h: 2), |
|
632 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
633 |
(x: 2604; y: 1424; w: 2; h: 2), |
|
634 |
(x: 2520; y: 1182; w: 108; h: 174), |
|
635 |
(x: 2284; y: 1024; w: 314; h: 98), |
|
636 |
(x: 2110; y: 882; w: 76; h: 230), |
|
637 |
(x: 2234; y: 686; w: 220; h: 154), |
|
638 |
(x: 2640; y: 674; w: 56; h: 266), |
|
639 |
(x: 2824; y: 644; w: 78; h: 304), |
|
640 |
(x: 3048; y: 646; w: 116; h: 162), |
|
641 |
(x: 3380; y: 726; w: 190; h: 228), |
|
642 |
(x: 3160; y: 1004; w: 140; h: 84), |
|
643 |
(x: 2996; y: 1140; w: 242; h: 118), |
|
644 |
(x: 3016; y: 1424; w: 2; h: 2), |
|
645 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
646 |
(x: 3294; y: 1424; w: 2; h: 2), |
|
647 |
(x: 3250; y: 1328; w: 88; h: 34), |
|
648 |
(x: 3398; y: 1238; w: 96; h: 112), |
|
649 |
(x: 3456; y: 1424; w: 2; h: 2), |
|
650 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
651 |
); |
|
652 |
Template20FPoints: array[0..0] of TPoint = |
|
653 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
654 |
(x: 2047; y: 0) |
1792 | 655 |
); |
656 |
||
657 |
const Template21Points: array[0..30] of TSDL_Rect = |
|
658 |
( |
|
659 |
(x: 548; y: 1424; w: 1; h: 1), |
|
660 |
(x: 436; y: 1252; w: 208; h: 72), |
|
661 |
(x: 698; y: 1110; w: 308; h: 60), |
|
662 |
(x: 928; y: 1252; w: 434; h: 40), |
|
663 |
(x: 1374; y: 1112; w: 332; h: 40), |
|
664 |
(x: 1602; y: 1238; w: 226; h: 36), |
|
665 |
(x: 1730; y: 1424; w: 1; h: 1), |
|
666 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
667 |
(x: 1860; y: 898; w: 111; h: 111), |
|
668 |
(x: 1470; y: 876; w: 34; h: 102), |
|
669 |
(x: 882; y: 814; w: 284; h: 132), |
|
670 |
(x: 430; y: 728; w: 126; h: 168), |
|
671 |
(x: 610; y: 574; w: 114; h: 100), |
|
672 |
(x: 990; y: 572; w: 352; h: 120), |
|
673 |
(x: 1474; y: 528; w: 60; h: 240), |
|
674 |
(x: 1634; y: 622; w: 254; h: 116), |
|
675 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
676 |
(x: 1936; y: 1424; w: 2; h: 2), |
|
677 |
(x: 1894; y: 1286; w: 84; h: 54), |
|
678 |
(x: 1862; y: 1086; w: 150; h: 166), |
|
679 |
(x: 2328; y: 1240; w: 186; h: 98), |
|
680 |
(x: 2394; y: 1004; w: 124; h: 58), |
|
681 |
(x: 2270; y: 582; w: 112; h: 194), |
|
682 |
(x: 2638; y: 660; w: 92; h: 132), |
|
683 |
(x: 2960; y: 574; w: 154; h: 196), |
|
684 |
(x: 2810; y: 974; w: 118; h: 64), |
|
685 |
(x: 2702; y: 1222; w: 328; h: 92), |
|
686 |
(x: 3246; y: 1030; w: 242; h: 222), |
|
687 |
(x: 3248; y: 1316; w: 254; h: 50), |
|
688 |
(x: 3258; y: 1424; w: 2; h: 2), |
|
689 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
690 |
); |
|
691 |
Template21FPoints: array[0..0] of TPoint = |
|
692 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
693 |
(x: 2047; y: 0) |
1792 | 694 |
); |
695 |
||
696 |
const Template22Points: array[0..38] of TSDL_Rect = |
|
697 |
( |
|
698 |
(x: 618; y: 1424; w: 1; h: 1), |
|
699 |
(x: 448; y: 1300; w: 186; h: 62), |
|
700 |
(x: 472; y: 1092; w: 254; h: 138), |
|
701 |
(x: 810; y: 1168; w: 90; h: 166), |
|
702 |
(x: 1020; y: 1016; w: 224; h: 258), |
|
703 |
(x: 1442; y: 1158; w: 96; h: 146), |
|
704 |
(x: 1750; y: 1098; w: 224; h: 134), |
|
705 |
(x: 1730; y: 1302; w: 210; h: 54), |
|
706 |
(x: 1732; y: 1424; w: 1; h: 1), |
|
707 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
708 |
(x: 402; y: 818; w: 110; h: 92), |
|
709 |
(x: 452; y: 712; w: 160; h: 32), |
|
710 |
(x: 350; y: 568; w: 134; h: 78), |
|
711 |
(x: 902; y: 560; w: 132; h: 84), |
|
712 |
(x: 902; y: 708; w: 230; h: 36), |
|
713 |
(x: 920; y: 808; w: 166; h: 96), |
|
714 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
715 |
(x: 1902; y: 834; w: 202; h: 42), |
|
716 |
(x: 1452; y: 788; w: 134; h: 98), |
|
717 |
(x: 1414; y: 552; w: 116; h: 154), |
|
718 |
(x: 1628; y: 652; w: 150; h: 70), |
|
719 |
(x: 1950; y: 552; w: 86; h: 220), |
|
720 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
721 |
(x: 2246; y: 1424; w: 140; h: 2), |
|
722 |
(x: 2080; y: 1272; w: 196; h: 32), |
|
723 |
(x: 2054; y: 1080; w: 262; h: 134), |
|
724 |
(x: 2454; y: 1072; w: 220; h: 136), |
|
725 |
(x: 2408; y: 890; w: 268; h: 110), |
|
726 |
(x: 2100; y: 762; w: 104; h: 200), |
|
727 |
(x: 2246; y: 624; w: 306; h: 58), |
|
728 |
(x: 2716; y: 588; w: 84; h: 206), |
|
729 |
(x: 2948; y: 574; w: 104; h: 220), |
|
730 |
(x: 3226; y: 576; w: 120; h: 202), |
|
731 |
(x: 3356; y: 818; w: 192; h: 68), |
|
732 |
(x: 3026; y: 948; w: 246; h: 88), |
|
733 |
(x: 3056; y: 1106; w: 194; h: 150), |
|
734 |
(x: 3368; y: 1106; w: 198; h: 152), |
|
735 |
(x: 3244; y: 1424; w: 2; h: 2), |
|
736 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
737 |
); |
|
738 |
Template22FPoints: array[0..0] of TPoint = |
|
739 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
740 |
(x: 2047; y: 0) |
1792 | 741 |
); |
742 |
||
743 |
const Template23Points: array[0..29] of TSDL_Rect = |
|
744 |
( |
|
745 |
(x: 474; y: 1424; w: 1; h: 1), |
|
746 |
(x: 390; y: 1318; w: 168; h: 26), |
|
747 |
(x: 582; y: 976; w: 122; h: 314), |
|
748 |
(x: 768; y: 1144; w: 56; h: 180), |
|
749 |
(x: 878; y: 1256; w: 64; h: 56), |
|
750 |
(x: 940; y: 1050; w: 106; h: 220), |
|
751 |
(x: 844; y: 896; w: 162; h: 140), |
|
752 |
(x: 696; y: 610; w: 886; h: 174), |
|
753 |
(x: 1134; y: 848; w: 296; h: 108), |
|
754 |
(x: 1150; y: 1152; w: 152; h: 146), |
|
755 |
(x: 1372; y: 1174; w: 60; h: 152), |
|
756 |
(x: 1484; y: 1122; w: 150; h: 138), |
|
757 |
(x: 1694; y: 764; w: 56; h: 582), |
|
758 |
(x: 1820; y: 1174; w: 94; h: 232), |
|
759 |
(x: 1812; y: 1424; w: 1; h: 1), |
|
760 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
761 |
(x: 2110; y: 1424; w: 2; h: 2), |
|
762 |
(x: 1992; y: 1030; w: 46; h: 286), |
|
763 |
(x: 2204; y: 1072; w: 194; h: 56), |
|
764 |
(x: 2004; y: 734; w: 534; h: 200), |
|
765 |
(x: 2620; y: 676; w: 58; h: 468), |
|
766 |
(x: 2826; y: 672; w: 198; h: 112), |
|
767 |
(x: 2750; y: 1424; w: 64; h: 2), |
|
768 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
769 |
(x: 2994; y: 1424; w: 64; h: 2), |
|
770 |
(x: 3106; y: 894; w: 184; h: 94), |
|
771 |
(x: 3350; y: 814; w: 76; h: 358), |
|
772 |
(x: 3498; y: 984; w: 108; h: 304), |
|
773 |
(x: 3438; y: 1424; w: 176; h: 1), |
|
774 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
775 |
); |
|
776 |
Template23FPoints: array[0..0] of TPoint = |
|
777 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
778 |
(x: 2047; y: 0) |
1792 | 779 |
); |
780 |
||
781 |
const Template24Points: array[0..23] of TSDL_Rect = |
|
782 |
( |
|
783 |
(x: 474; y: 1424; w: 166; h: 1), |
|
784 |
(x: 530; y: 1262; w: 96; h: 92), |
|
785 |
(x: 692; y: 1090; w: 152; h: 250), |
|
786 |
(x: 946; y: 1046; w: 36; h: 270), |
|
787 |
(x: 1138; y: 1026; w: 54; h: 224), |
|
788 |
(x: 1334; y: 1046; w: 44; h: 216), |
|
789 |
(x: 1492; y: 1030; w: 46; h: 300), |
|
790 |
(x: 1648; y: 1064; w: 158; h: 272), |
|
791 |
(x: 1784; y: 1424; w: 136; h: 1), |
|
792 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
793 |
(x: 2068; y: 1422; w: 2; h: 2), |
|
794 |
(x: 1966; y: 1240; w: 302; h: 110), |
|
795 |
(x: 1994; y: 912; w: 104; h: 290), |
|
796 |
(x: 2270; y: 980; w: 364; h: 122), |
|
797 |
(x: 2268; y: 840; w: 368; h: 100), |
|
798 |
(x: 1932; y: 660; w: 482; h: 130), |
|
799 |
(x: 2478; y: 642; w: 62; h: 64), |
|
800 |
(x: 2690; y: 554; w: 58; h: 246), |
|
801 |
(x: 2900; y: 676; w: 590; h: 98), |
|
802 |
(x: 2788; y: 842; w: 214; h: 188), |
|
803 |
(x: 2750; y: 1086; w: 406; h: 92), |
|
804 |
(x: 3284; y: 902; w: 190; h: 412), |
|
805 |
(x: 3346; y: 1420; w: 2; h: 2), |
|
806 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
807 |
); |
|
808 |
Template24FPoints: array[0..0] of TPoint = |
|
809 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
810 |
(x: 2047; y: 0) |
1792 | 811 |
); |
812 |
||
813 |
const Template25Points: array[0..19] of TSDL_Rect = |
|
814 |
( |
|
815 |
(x: 362; y: 1424; w: 400; h: 1), |
|
816 |
(x: 426; y: 634; w: 142; h: 360), |
|
817 |
(x: 1136; y: 1140; w: 400; h: 200), |
|
818 |
(x: 1776; y: 576; w: 186; h: 550), |
|
819 |
(x: 1630; y: 1424; w: 454; h: 1), |
|
820 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
821 |
(x: 1938; y: 1424; w: 190; h: 1), |
|
822 |
(x: 1990; y: 1082; w: 140; h: 150), |
|
823 |
(x: 2064; y: 868; w: 352; h: 94), |
|
824 |
(x: 2476; y: 646; w: 106; h: 282), |
|
825 |
(x: 2652; y: 790; w: 368; h: 142), |
|
826 |
(x: 2708; y: 988; w: 116; h: 244), |
|
827 |
(x: 2626; y: 1424; w: 14; h: 1), |
|
828 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
829 |
(x: 2814; y: 1424; w: 22; h: 1), |
|
830 |
(x: 3038; y: 1195; w: 120; h: 120), |
|
831 |
(x: 3208; y: 674; w: 354; h: 448), |
|
832 |
(x: 3438; y: 1195; w: 120; h: 120), |
|
833 |
(x: 3532; y: 1424; w: 2; h: 1), |
|
834 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
835 |
); |
|
836 |
Template25FPoints: array[0..0] of TPoint = |
|
837 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
838 |
(x: 2047; y: 0) |
1792 | 839 |
); |
840 |
||
841 |
||
842 |
const Template26Points: array[0..51] of TSDL_Rect = |
|
843 |
( |
|
844 |
(x: 564; y: 1424; w: 20; h: 1), |
|
845 |
(x: 490; y: 1260; w: 64; h: 62), |
|
846 |
(x: 686; y: 1150; w: 52; h: 146), |
|
847 |
(x: 456; y: 990; w: 116; h: 144), |
|
848 |
(x: 670; y: 868; w: 138; h: 168), |
|
849 |
(x: 442; y: 642; w: 158; h: 162), |
|
850 |
(x: 708; y: 710; w: 198; h: 72), |
|
851 |
(x: 970; y: 628; w: 118; h: 134), |
|
852 |
(x: 836; y: 1118; w: 142; h: 132), |
|
853 |
(x: 1168; y: 1100; w: 172; h: 58), |
|
854 |
(x: 1170; y: 1204; w: 172; h: 62), |
|
855 |
(x: 1432; y: 1104; w: 82; h: 226), |
|
856 |
(x: 1556; y: 994; w: 64; h: 152), |
|
857 |
(x: 1414; y: 734; w: 106; h: 152), |
|
858 |
(x: 1610; y: 660; w: 380; h: 82), |
|
859 |
(x: 1728; y: 822; w: 30; h: 118), |
|
860 |
(x: 1740; y: 988; w: 212; h: 50), |
|
861 |
(x: 1664; y: 1146; w: 128; h: 146), |
|
862 |
(x: 1830; y: 1424; w: 20; h: 1), |
|
863 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
864 |
(x: 2140; y: 1424; w: 1; h: 1), |
|
865 |
(x: 2076; y: 1302; w: 44; h: 54), |
|
866 |
(x: 2234; y: 1236; w: 58; h: 90), |
|
867 |
(x: 2066; y: 1134; w: 80; h: 80), |
|
868 |
(x: 2046; y: 1004; w: 96; h: 108), |
|
869 |
(x: 2226; y: 1046; w: 110; h: 112), |
|
870 |
(x: 2034; y: 692; w: 118; h: 164), |
|
871 |
(x: 2228; y: 796; w: 130; h: 110), |
|
872 |
(x: 2316; y: 598; w: 344; h: 78), |
|
873 |
(x: 2488; y: 826; w: 50; h: 40), |
|
874 |
(x: 2426; y: 960; w: 32; h: 148), |
|
875 |
(x: 2498; y: 1050; w: 160; h: 34), |
|
876 |
(x: 2474; y: 1188; w: 36; h: 136), |
|
877 |
(x: 2814; y: 1248; w: 48; h: 48), |
|
878 |
(x: 2886; y: 1128; w: 64; h: 88), |
|
879 |
(x: 2758; y: 1060; w: 70; h: 74), |
|
880 |
(x: 2916; y: 996; w: 68; h: 70), |
|
881 |
(x: 2918; y: 884; w: 68; h: 82), |
|
882 |
(x: 2758; y: 724; w: 44; h: 140), |
|
883 |
(x: 3072; y: 706; w: 52; h: 66), |
|
884 |
(x: 3054; y: 902; w: 58; h: 66), |
|
885 |
(x: 3034; y: 1160; w: 76; h: 112), |
|
886 |
(x: 3180; y: 1162; w: 124; h: 64), |
|
887 |
(x: 3272; y: 872; w: 54; h: 134), |
|
888 |
(x: 3210; y: 596; w: 246; h: 62), |
|
889 |
(x: 3506; y: 554; w: 38; h: 238), |
|
890 |
(x: 3612; y: 748; w: 28; h: 28), |
|
891 |
(x: 3492; y: 924; w: 144; h: 94), |
|
892 |
(x: 3432; y: 1078; w: 248; h: 20), |
|
893 |
(x: 3432; y: 1202; w: 238; h: 16), |
|
894 |
(x: 3480; y: 1424; w: 1; h: 1), |
|
895 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
896 |
); |
|
897 |
Template26FPoints: array[0..0] of TPoint = |
|
898 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
899 |
(x: 2047; y: 0) |
1792 | 900 |
); |
901 |
||
902 |
const Template27Points: array[0..42] of TSDL_Rect = |
|
903 |
( |
|
904 |
(x: 610; y: 1424; w: 1; h: 1), |
|
905 |
(x: 360; y: 1160; w: 130; h: 170), |
|
906 |
(x: 542; y: 1106; w: 316; h: 150), |
|
907 |
(x: 438; y: 786; w: 270; h: 180), |
|
908 |
(x: 446; y: 576; w: 242; h: 156), |
|
909 |
(x: 752; y: 528; w: 610; h: 300), |
|
910 |
(x: 950; y: 868; w: 352; h: 324), |
|
911 |
(x: 850; y: 1424; w: 500; h: 1), |
|
912 |
(x: 1450; y: 1500; w: 1; h: 1), |
|
913 |
(x: 1690; y: 1424; w: 1; h: 1), |
|
914 |
(x: 1652; y: 1304; w: 74; h: 12), |
|
915 |
(x: 1448; y: 975; w: 68; h: 425), |
|
916 |
(x: 1626; y: 992; w: 140; h: 142), |
|
917 |
(x: 1510; y: 592; w: 150; h: 350), |
|
918 |
(x: 1788; y: 594; w: 148; h: 242), |
|
919 |
(x: 1818; y: 872; w: 276; h: 314), |
|
920 |
(x: 1910; y: 1250; w: 130; h: 86), |
|
921 |
(x: 1934; y: 1424; w: 1; h: 1), |
|
922 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
923 |
(x: 2202; y: 1424; w: 2; h: 2), |
|
924 |
(x: 2140; y: 1290; w: 44; h: 94), |
|
925 |
(x: 2250; y: 1262; w: 44; h: 94), |
|
926 |
(x: 2360; y: 1306; w: 78; h: 70), |
|
927 |
(x: 2366; y: 1424; w: 2; h: 2), |
|
928 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
929 |
(x: 2704; y: 1424; w: 2; h: 2), |
|
930 |
(x: 2620; y: 1182; w: 108; h: 174), |
|
931 |
(x: 2384; y: 1024; w: 314; h: 98), |
|
932 |
(x: 2210; y: 882; w: 76; h: 230), |
|
933 |
(x: 2334; y: 686; w: 220; h: 154), |
|
934 |
(x: 2740; y: 674; w: 56; h: 266), |
|
935 |
(x: 2924; y: 644; w: 78; h: 304), |
|
936 |
(x: 3148; y: 646; w: 116; h: 162), |
|
937 |
(x: 3480; y: 726; w: 190; h: 228), |
|
938 |
(x: 3260; y: 1004; w: 140; h: 84), |
|
939 |
(x: 3096; y: 1140; w: 242; h: 118), |
|
940 |
(x: 3116; y: 1424; w: 2; h: 2), |
|
941 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
942 |
(x: 3394; y: 1424; w: 2; h: 2), |
|
943 |
(x: 3350; y: 1328; w: 88; h: 34), |
|
944 |
(x: 3498; y: 1238; w: 96; h: 112), |
|
945 |
(x: 3556; y: 1424; w: 2; h: 2), |
|
946 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
947 |
); |
|
948 |
Template27FPoints: array[0..0] of TPoint = |
|
949 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
950 |
(x: 2047; y: 0) |
1792 | 951 |
); |
952 |
||
953 |
const Template28Points: array[0..29] of TSDL_Rect = |
|
954 |
( |
|
955 |
(x: 600; y: 1424; w: 25; h: 1), |
|
956 |
(x: 484; y: 1292; w: 254; h: 58), |
|
957 |
(x: 692; y: 1034; w: 100; h: 200), |
|
958 |
(x: 454; y: 646; w: 276; h: 380), |
|
959 |
(x: 820; y: 654; w: 125; h: 270), |
|
960 |
(x: 880; y: 950; w: 96; h: 390), |
|
961 |
(x: 1026; y: 1014; w: 110; h: 350), |
|
962 |
(x: 1000; y: 586; w: 150; h: 380), |
|
963 |
(x: 1200; y: 586; w: 170; h: 375), |
|
964 |
(x: 1212; y: 990; w: 188; h: 298), |
|
965 |
(x: 1440; y: 1068; w: 136; h: 172), |
|
966 |
(x: 1470; y: 594; w: 120; h: 392), |
|
967 |
(x: 1714; y: 594; w: 364; h: 362), |
|
968 |
(x: 1650; y: 1052; w: 315; h: 232), |
|
969 |
(x: 1660; y: 1424; w: 25; h: 1), |
|
970 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
971 |
(x: 1986; y: 1424; w: 2; h: 2), |
|
972 |
(x: 1944; y: 1286; w: 84; h: 54), |
|
973 |
(x: 1912; y: 1086; w: 150; h: 166), |
|
974 |
(x: 2378; y: 1240; w: 186; h: 98), |
|
975 |
(x: 2444; y: 1004; w: 124; h: 58), |
|
976 |
(x: 2320; y: 582; w: 112; h: 194), |
|
977 |
(x: 2688; y: 660; w: 92; h: 132), |
|
978 |
(x: 3010; y: 574; w: 154; h: 196), |
|
979 |
(x: 2860; y: 974; w: 118; h: 64), |
|
980 |
(x: 2752; y: 1222; w: 328; h: 92), |
|
981 |
(x: 3296; y: 1030; w: 242; h: 222), |
|
982 |
(x: 3298; y: 1316; w: 254; h: 50), |
|
983 |
(x: 3308; y: 1424; w: 2; h: 2), |
|
984 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
985 |
); |
|
986 |
Template28FPoints: array[0..0] of TPoint = |
|
987 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
988 |
(x: 2047; y: 0) |
1792 | 989 |
); |
990 |
||
991 |
const Template29Points: array[0..37] of TSDL_Rect = |
|
992 |
( |
|
993 |
(x: 554; y: 1424; w: 1; h: 1), |
|
994 |
(x: 432; y: 1326; w: 226; h: 60), |
|
995 |
(x: 320; y: 1246; w: 298; h: 62), |
|
996 |
(x: 480; y: 1104; w: 210; h: 102), |
|
997 |
(x: 408; y: 822; w: 192; h: 248), |
|
998 |
(x: 492; y: 560; w: 206; h: 240), |
|
999 |
(x: 726; y: 572; w: 92; h: 334), |
|
1000 |
(x: 662; y: 928; w: 226; h: 126), |
|
1001 |
(x: 756; y: 1078; w: 268; h: 156), |
|
1002 |
(x: 922; y: 564; w: 138; h: 500), |
|
1003 |
(x: 1090; y: 556; w: 94; h: 352), |
|
1004 |
(x: 1098; y: 962; w: 170; h: 264), |
|
1005 |
(x: 1292; y: 784; w: 84; h: 446), |
|
1006 |
(x: 1406; y: 600; w: 158; h: 278), |
|
1007 |
(x: 1500; y: 890; w: 104; h: 336), |
|
1008 |
(x: 1616; y: 946; w: 90; h: 398), |
|
1009 |
(x: 1746; y: 592; w: 134; h: 532), |
|
1010 |
(x: 1902; y: 646; w: 156; h: 258), |
|
1011 |
(x: 1900; y: 948; w: 132; h: 340), |
|
1012 |
(x: 1734; y: 1298; w: 252; h: 82), |
|
1013 |
(x: 1804; y: 1424; w: 1; h: 1), |
|
1014 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1015 |
(x: 2096; y: 1424; w: 140; h: 2), |
|
1016 |
(x: 1930; y: 1272; w: 196; h: 32), |
|
1017 |
(x: 1904; y: 1080; w: 262; h: 134), |
|
1018 |
(x: 2304; y: 1072; w: 220; h: 136), |
|
1019 |
(x: 2258; y: 890; w: 268; h: 110), |
|
1020 |
(x: 1950; y: 762; w: 104; h: 200), |
|
1021 |
(x: 2096; y: 624; w: 306; h: 58), |
|
1022 |
(x: 2566; y: 588; w: 84; h: 206), |
|
1023 |
(x: 2798; y: 574; w: 104; h: 220), |
|
1024 |
(x: 3076; y: 576; w: 120; h: 202), |
|
1025 |
(x: 3206; y: 818; w: 192; h: 68), |
|
1026 |
(x: 2876; y: 948; w: 246; h: 88), |
|
1027 |
(x: 2906; y: 1106; w: 194; h: 150), |
|
1028 |
(x: 3218; y: 1106; w: 198; h: 152), |
|
1029 |
(x: 3094; y: 1424; w: 2; h: 2), |
|
1030 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1031 |
); |
|
1032 |
Template29FPoints: array[0..0] of TPoint = |
|
1033 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1034 |
(x: 2047; y: 0) |
1792 | 1035 |
); |
1036 |
||
1037 |
const Template30Points: array[0..30] of TSDL_Rect = |
|
1038 |
( |
|
1039 |
(x: 548; y: 1424; w: 1; h: 1), |
|
1040 |
(x: 436; y: 1252; w: 208; h: 72), |
|
1041 |
(x: 698; y: 1110; w: 308; h: 60), |
|
1042 |
(x: 928; y: 1252; w: 434; h: 40), |
|
1043 |
(x: 1374; y: 1112; w: 332; h: 40), |
|
1044 |
(x: 1602; y: 1238; w: 226; h: 36), |
|
1045 |
(x: 1730; y: 1424; w: 1; h: 1), |
|
1046 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1047 |
(x: 1860; y: 898; w: 111; h: 111), |
|
1048 |
(x: 1470; y: 876; w: 34; h: 102), |
|
1049 |
(x: 882; y: 814; w: 284; h: 132), |
|
1050 |
(x: 430; y: 728; w: 126; h: 168), |
|
1051 |
(x: 610; y: 574; w: 114; h: 100), |
|
1052 |
(x: 990; y: 572; w: 352; h: 120), |
|
1053 |
(x: 1474; y: 528; w: 60; h: 240), |
|
1054 |
(x: 1634; y: 622; w: 254; h: 116), |
|
1055 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1056 |
(x: 1960; y: 1424; w: 2; h: 2), |
|
1057 |
(x: 1842; y: 1030; w: 46; h: 286), |
|
1058 |
(x: 2054; y: 1072; w: 194; h: 56), |
|
1059 |
(x: 1854; y: 734; w: 534; h: 200), |
|
1060 |
(x: 2470; y: 676; w: 58; h: 468), |
|
1061 |
(x: 2676; y: 672; w: 198; h: 112), |
|
1062 |
(x: 2600; y: 1424; w: 64; h: 2), |
|
1063 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1064 |
(x: 2844; y: 1424; w: 64; h: 2), |
|
1065 |
(x: 2956; y: 894; w: 184; h: 94), |
|
1066 |
(x: 3200; y: 814; w: 76; h: 358), |
|
1067 |
(x: 3348; y: 984; w: 108; h: 304), |
|
1068 |
(x: 3288; y: 1424; w: 176; h: 1), |
|
1069 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1070 |
); |
|
1071 |
Template30FPoints: array[0..0] of TPoint = |
|
1072 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1073 |
(x: 2047; y: 0) |
1792 | 1074 |
); |
1075 |
||
1076 |
const Template31Points: array[0..32] of TSDL_Rect = |
|
1077 |
( |
|
1078 |
(x: 618; y: 1424; w: 1; h: 1), |
|
1079 |
(x: 448; y: 1300; w: 186; h: 62), |
|
1080 |
(x: 472; y: 1092; w: 254; h: 138), |
|
1081 |
(x: 810; y: 1168; w: 90; h: 166), |
|
1082 |
(x: 1020; y: 1016; w: 224; h: 258), |
|
1083 |
(x: 1442; y: 1158; w: 96; h: 146), |
|
1084 |
(x: 1750; y: 1098; w: 224; h: 134), |
|
1085 |
(x: 1730; y: 1302; w: 210; h: 54), |
|
1086 |
(x: 1732; y: 1424; w: 1; h: 1), |
|
1087 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1088 |
(x: 402; y: 818; w: 110; h: 92), |
|
1089 |
(x: 452; y: 712; w: 160; h: 32), |
|
1090 |
(x: 350; y: 568; w: 134; h: 78), |
|
1091 |
(x: 902; y: 560; w: 132; h: 84), |
|
1092 |
(x: 902; y: 708; w: 230; h: 36), |
|
1093 |
(x: 920; y: 808; w: 166; h: 96), |
|
1094 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1095 |
(x: 1902; y: 834; w: 202; h: 42), |
|
1096 |
(x: 1452; y: 788; w: 134; h: 98), |
|
1097 |
(x: 1414; y: 552; w: 116; h: 154), |
|
1098 |
(x: 1628; y: 652; w: 150; h: 70), |
|
1099 |
(x: 1950; y: 552; w: 86; h: 220), |
|
1100 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1101 |
(x: 2274; y: 1424; w: 166; h: 1), |
|
1102 |
(x: 2330; y: 1262; w: 96; h: 92), |
|
1103 |
(x: 2492; y: 1090; w: 152; h: 250), |
|
1104 |
(x: 2746; y: 1046; w: 36; h: 270), |
|
1105 |
(x: 2938; y: 1026; w: 54; h: 224), |
|
1106 |
(x: 3134; y: 1046; w: 44; h: 216), |
|
1107 |
(x: 3292; y: 1030; w: 46; h: 300), |
|
1108 |
(x: 3448; y: 1064; w: 158; h: 272), |
|
1109 |
(x: 3584; y: 1424; w: 136; h: 1), |
|
1110 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1111 |
); |
|
1112 |
Template31FPoints: array[0..0] of TPoint = |
|
1113 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1114 |
(x: 2047; y: 0) |
1792 | 1115 |
); |
1116 |
||
1117 |
const Template32Points: array[0..29] of TSDL_Rect = |
|
1118 |
( |
|
1119 |
(x: 474; y: 1424; w: 1; h: 1), |
|
1120 |
(x: 390; y: 1318; w: 168; h: 26), |
|
1121 |
(x: 582; y: 976; w: 122; h: 314), |
|
1122 |
(x: 768; y: 1144; w: 56; h: 180), |
|
1123 |
(x: 878; y: 1256; w: 64; h: 56), |
|
1124 |
(x: 940; y: 1050; w: 106; h: 220), |
|
1125 |
(x: 844; y: 896; w: 162; h: 140), |
|
1126 |
(x: 696; y: 610; w: 886; h: 174), |
|
1127 |
(x: 1134; y: 848; w: 296; h: 108), |
|
1128 |
(x: 1150; y: 1152; w: 152; h: 146), |
|
1129 |
(x: 1372; y: 1174; w: 60; h: 152), |
|
1130 |
(x: 1484; y: 1122; w: 150; h: 138), |
|
1131 |
(x: 1694; y: 764; w: 56; h: 582), |
|
1132 |
(x: 1820; y: 1174; w: 94; h: 232), |
|
1133 |
(x: 1812; y: 1424; w: 1; h: 1), |
|
1134 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1135 |
(x: 2088; y: 1424; w: 190; h: 1), |
|
1136 |
(x: 2140; y: 1082; w: 140; h: 150), |
|
1137 |
(x: 2214; y: 868; w: 352; h: 94), |
|
1138 |
(x: 2626; y: 646; w: 106; h: 282), |
|
1139 |
(x: 2802; y: 790; w: 368; h: 142), |
|
1140 |
(x: 2858; y: 988; w: 116; h: 244), |
|
1141 |
(x: 2776; y: 1424; w: 14; h: 1), |
|
1142 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1143 |
(x: 2964; y: 1424; w: 22; h: 1), |
|
1144 |
(x: 3188; y: 1195; w: 120; h: 120), |
|
1145 |
(x: 3358; y: 674; w: 354; h: 448), |
|
1146 |
(x: 3588; y: 1195; w: 120; h: 120), |
|
1147 |
(x: 3682; y: 1424; w: 2; h: 1), |
|
1148 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1149 |
); |
|
1150 |
Template32FPoints: array[0..0] of TPoint = |
|
1151 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1152 |
(x: 2047; y: 0) |
1792 | 1153 |
); |
1154 |
||
1155 |
const Template33Points: array[0..45] of TSDL_Rect = |
|
1156 |
( |
|
1157 |
(x: 568; y: 1422; w: 2; h: 2), |
|
1158 |
(x: 466; y: 1240; w: 302; h: 110), |
|
1159 |
(x: 494; y: 912; w: 104; h: 290), |
|
1160 |
(x: 770; y: 980; w: 364; h: 122), |
|
1161 |
(x: 768; y: 840; w: 368; h: 100), |
|
1162 |
(x: 432; y: 660; w: 482; h: 130), |
|
1163 |
(x: 978; y: 642; w: 62; h: 64), |
|
1164 |
(x: 1190; y: 554; w: 58; h: 246), |
|
1165 |
(x: 1400; y: 676; w: 590; h: 98), |
|
1166 |
(x: 1288; y: 842; w: 214; h: 188), |
|
1167 |
(x: 1250; y: 1086; w: 406; h: 92), |
|
1168 |
(x: 1784; y: 902; w: 190; h: 412), |
|
1169 |
(x: 1846; y: 1420; w: 2; h: 2), |
|
1170 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1171 |
(x: 2140; y: 1424; w: 1; h: 1), |
|
1172 |
(x: 2076; y: 1302; w: 44; h: 54), |
|
1173 |
(x: 2234; y: 1236; w: 58; h: 90), |
|
1174 |
(x: 2066; y: 1134; w: 80; h: 80), |
|
1175 |
(x: 2046; y: 1004; w: 96; h: 108), |
|
1176 |
(x: 2226; y: 1046; w: 110; h: 112), |
|
1177 |
(x: 2034; y: 692; w: 118; h: 164), |
|
1178 |
(x: 2228; y: 796; w: 130; h: 110), |
|
1179 |
(x: 2316; y: 598; w: 344; h: 78), |
|
1180 |
(x: 2488; y: 826; w: 50; h: 40), |
|
1181 |
(x: 2426; y: 960; w: 32; h: 148), |
|
1182 |
(x: 2498; y: 1050; w: 160; h: 34), |
|
1183 |
(x: 2474; y: 1188; w: 36; h: 136), |
|
1184 |
(x: 2814; y: 1248; w: 48; h: 48), |
|
1185 |
(x: 2886; y: 1128; w: 64; h: 88), |
|
1186 |
(x: 2758; y: 1060; w: 70; h: 74), |
|
1187 |
(x: 2916; y: 996; w: 68; h: 70), |
|
1188 |
(x: 2918; y: 884; w: 68; h: 82), |
|
1189 |
(x: 2758; y: 724; w: 44; h: 140), |
|
1190 |
(x: 3072; y: 706; w: 52; h: 66), |
|
1191 |
(x: 3054; y: 902; w: 58; h: 66), |
|
1192 |
(x: 3034; y: 1160; w: 76; h: 112), |
|
1193 |
(x: 3180; y: 1162; w: 124; h: 64), |
|
1194 |
(x: 3272; y: 872; w: 54; h: 134), |
|
1195 |
(x: 3210; y: 596; w: 246; h: 62), |
|
1196 |
(x: 3506; y: 554; w: 38; h: 238), |
|
1197 |
(x: 3612; y: 748; w: 28; h: 28), |
|
1198 |
(x: 3492; y: 924; w: 144; h: 94), |
|
1199 |
(x: 3432; y: 1078; w: 248; h: 20), |
|
1200 |
(x: 3432; y: 1202; w: 238; h: 16), |
|
1201 |
(x: 3480; y: 1424; w: 1; h: 1), |
|
1202 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1203 |
); |
|
1204 |
Template33FPoints: array[0..0] of TPoint = |
|
1205 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1206 |
(x: 2047; y: 0) |
1792 | 1207 |
); |
1208 |
||
1209 |
const Template34Points: array[0..25] of TSDL_Rect = |
|
1210 |
( |
|
1211 |
(x: 362; y: 1424; w: 400; h: 1), |
|
1212 |
(x: 426; y: 634; w: 142; h: 360), |
|
1213 |
(x: 1136; y: 1140; w: 400; h: 200), |
|
1214 |
(x: 1776; y: 576; w: 186; h: 550), |
|
1215 |
(x: 1630; y: 1424; w: 454; h: 1), |
|
1216 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1217 |
(x: 1964; y: 1424; w: 20; h: 1), |
|
1218 |
(x: 1890; y: 1260; w: 64; h: 62), |
|
1219 |
(x: 2086; y: 1150; w: 52; h: 146), |
|
1220 |
(x: 1856; y: 990; w: 116; h: 144), |
|
1221 |
(x: 2070; y: 868; w: 138; h: 168), |
|
1222 |
(x: 1842; y: 642; w: 158; h: 162), |
|
1223 |
(x: 2108; y: 710; w: 198; h: 72), |
|
1224 |
(x: 2370; y: 628; w: 118; h: 134), |
|
1225 |
(x: 2236; y: 1118; w: 142; h: 132), |
|
1226 |
(x: 2568; y: 1100; w: 172; h: 58), |
|
1227 |
(x: 2570; y: 1204; w: 172; h: 62), |
|
1228 |
(x: 2832; y: 1104; w: 82; h: 226), |
|
1229 |
(x: 2956; y: 994; w: 64; h: 152), |
|
1230 |
(x: 2814; y: 734; w: 106; h: 152), |
|
1231 |
(x: 3010; y: 660; w: 380; h: 82), |
|
1232 |
(x: 3128; y: 822; w: 30; h: 118), |
|
1233 |
(x: 3140; y: 988; w: 212; h: 50), |
|
1234 |
(x: 3064; y: 1146; w: 128; h: 146), |
|
1235 |
(x: 3230; y: 1424; w: 20; h: 1), |
|
1236 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1237 |
); |
|
1238 |
Template34FPoints: array[0..0] of TPoint = |
|
1239 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1240 |
(x: 2047; y: 0) |
1792 | 1241 |
); |
1242 |
||
1243 |
const Template35Points: array[0..48] of TSDL_Rect = |
|
1244 |
( |
|
1245 |
(x: 564; y: 1424; w: 20; h: 1), |
|
1246 |
(x: 490; y: 1260; w: 64; h: 62), |
|
1247 |
(x: 686; y: 1150; w: 52; h: 146), |
|
1248 |
(x: 456; y: 990; w: 116; h: 144), |
|
1249 |
(x: 670; y: 868; w: 138; h: 168), |
|
1250 |
(x: 442; y: 642; w: 158; h: 162), |
|
1251 |
(x: 708; y: 710; w: 198; h: 72), |
|
1252 |
(x: 970; y: 628; w: 118; h: 134), |
|
1253 |
(x: 836; y: 1118; w: 142; h: 132), |
|
1254 |
(x: 1168; y: 1100; w: 172; h: 58), |
|
1255 |
(x: 1170; y: 1204; w: 172; h: 62), |
|
1256 |
(x: 1432; y: 1104; w: 82; h: 226), |
|
1257 |
(x: 1556; y: 994; w: 64; h: 152), |
|
1258 |
(x: 1414; y: 734; w: 106; h: 152), |
|
1259 |
(x: 1610; y: 660; w: 380; h: 82), |
|
1260 |
(x: 1728; y: 822; w: 30; h: 118), |
|
1261 |
(x: 1740; y: 988; w: 212; h: 50), |
|
1262 |
(x: 1664; y: 1146; w: 128; h: 146), |
|
1263 |
(x: 1830; y: 1424; w: 20; h: 1), |
|
1264 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1265 |
(x: 2100; y: 1424; w: 2; h: 2), |
|
1266 |
(x: 2194; y: 1302; w: 58; h: 62), |
|
1267 |
(x: 2180; y: 1170; w: 94; h: 90), |
|
1268 |
(x: 1986; y: 1026; w: 80; h: 220), |
|
1269 |
(x: 2176; y: 1000; w: 82; h: 118), |
|
1270 |
(x: 1982; y: 728; w: 134; h: 226), |
|
1271 |
(x: 2168; y: 728; w: 52; h: 52), |
|
1272 |
(x: 2272; y: 574; w: 56; h: 212), |
|
1273 |
(x: 2388; y: 722; w: 60; h: 62), |
|
1274 |
(x: 2518; y: 724; w: 108; h: 218), |
|
1275 |
(x: 2412; y: 916; w: 36; h: 168), |
|
1276 |
(x: 2528; y: 1056; w: 140; h: 134), |
|
1277 |
(x: 2388; y: 1250; w: 74; h: 82), |
|
1278 |
(x: 2550; y: 1424; w: 102; h: 2), |
|
1279 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1280 |
(x: 3104; y: 1424; w: 72; h: 2), |
|
1281 |
(x: 3026; y: 1308; w: 266; h: 34), |
|
1282 |
(x: 3024; y: 1148; w: 252; h: 80), |
|
1283 |
(x: 3012; y: 976; w: 256; h: 94), |
|
1284 |
(x: 2940; y: 834; w: 174; h: 86), |
|
1285 |
(x: 3196; y: 718; w: 156; h: 96), |
|
1286 |
(x: 2886; y: 614; w: 206; h: 66), |
|
1287 |
(x: 3246; y: 556; w: 152; h: 40), |
|
1288 |
(x: 3508; y: 672; w: 60; h: 162), |
|
1289 |
(x: 3342; y: 888; w: 146; h: 80), |
|
1290 |
(x: 3486; y: 1034; w: 178; h: 122), |
|
1291 |
(x: 3372; y: 1220; w: 34; h: 124), |
|
1292 |
(x: 3498; y: 1424; w: 52; h: 2), |
|
1293 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1294 |
); |
|
1295 |
Template35FPoints: array[0..0] of TPoint = |
|
1296 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1297 |
(x: 2047; y: 0) |
1792 | 1298 |
); |
1299 |
||
1300 |
///////////////////////// CAVERNS /////////////////////////////////// |
|
1301 |
const Template36Points: array[0..18] of TSDL_Rect = |
|
184 | 1302 |
( |
1775 | 1303 |
(x: 324; y: 756; w: 196; h: 204), |
1304 |
(x: 224; y: 596; w: 404; h: 60), |
|
1305 |
(x: 240; y: 268; w: 464; h: 152), |
|
1306 |
(x: 876; y: 236; w: 168; h: 348), |
|
1307 |
(x: 1204; y: 56; w: 148; h: 700), |
|
1308 |
(x: 1516; y: 52; w: 192; h: 664), |
|
1309 |
(x: 1808; y: 60; w: 328; h: 496), |
|
1310 |
(x: 2292; y: 92; w: 184; h: 492), |
|
1311 |
(x: 2664; y: 216; w: 196; h: 340), |
|
1312 |
(x: 3004; y: 108; w: 176; h: 480), |
|
1313 |
(x: 3260; y: 368; w: 120; h: 348), |
|
1314 |
(x: 3476; y: 460; w: 208; h: 448), |
|
1315 |
(x: 3268; y: 906; w: 192; h: 96), |
|
1316 |
(x: 2876; y: 664; w: 204; h: 310), |
|
1317 |
(x: 2240; y: 748; w: 344; h: 224), |
|
1318 |
(x: 1584; y: 796; w: 440; h: 250), |
|
1319 |
(x: 892; y: 852; w: 324; h: 184), |
|
1320 |
(x: 576; y: 976; w: 16; h: 28), |
|
1761 | 1321 |
(x: NTPX; y: 0; w: 1; h: 1) |
184 | 1322 |
); |
1792 | 1323 |
Template36FPoints: array[0..0] of TPoint = |
1324 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1325 |
(x: 2047; y: 0) |
1792 | 1326 |
); |
1327 |
////////////////////////////// ... Silly ... //////////////////////////////// |
|
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2630
diff
changeset
|
1328 |
/// Ok. Tiy does not care for these. Perhaps they could be saved. |
1792 | 1329 |
/// For now, just rare. |
1330 |
////////////////////////////////////////////////////////////////////////////// |
|
1331 |
||
1332 |
// maybe Tiy would be ok with this if it was smoother/more climable and a bit shorter? |
|
1797 | 1333 |
const Template37Points: array[0..27] of TSDL_Rect = |
1792 | 1334 |
( |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1335 |
(x: 700; y: 2100; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1336 |
(x: 800; y: 1200; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1337 |
(x: 900; y: 400; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1338 |
(x: 1100; y: 600; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1339 |
(x: 1300; y: 900; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1340 |
(x: 1000; y: 1000; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1341 |
(x: 1700; y: 1850; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1342 |
(x: 2048; y: 2100; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1343 |
(x: NTPX; y: 0; w: 1; h: 1), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1344 |
(x: 2048; y: 2100; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1345 |
(x: 2400; y: 1850; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1346 |
(x: 2600; y: 1000; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1347 |
(x: 2800; y: 900; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1348 |
(x: 3000; y: 600; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1349 |
(x: 3200; y: 400; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1350 |
(x: 3300; y: 1200; w: 120; h: 150), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1351 |
(x: 3400; y: 2100; w: 120; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1352 |
(x: NTPX; y: 0; w: 1; h: 1), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1353 |
(x: 1450; y: 700; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1354 |
(x: 1850; y: 500; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1355 |
(x: 2250; y: 500; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1356 |
(x: 2500; y: 700; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1357 |
(x: NTPX; y: 0; w: 1; h: 1), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1358 |
(x: 1550; y: 1500; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1359 |
(x: 1830; y: 1150; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1360 |
(x: 2260; y: 1000; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1361 |
(x: 2250; y: 1400; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1362 |
(x: NTPX; y: 0; w: 1; h: 1) |
1792 | 1363 |
); |
1797 | 1364 |
Template37FPoints: array[0..0] of TPoint = |
1792 | 1365 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1366 |
(x: 2047; y: 0) |
1792 | 1367 |
); |
1368 |
// attempt to make a series of moderate hills/valleys - was before I really figured out the whole probabilities thing |
|
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1369 |
// fixed much much later by unC0Rr during tempaltes review for new generator |
1797 | 1370 |
const Template38Points: array[0..16] of TSDL_Rect = |
1792 | 1371 |
( |
1372 |
(x: 100; y: 2100; w: 1; h: 1), |
|
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1373 |
(x: 100; y: 1600; w: 250; h: 500), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1374 |
(x: 400; y: 600; w: 250; h: 1500), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1375 |
(x: 700; y: 1600; w: 250; h: 600), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1376 |
(x: 1000; y: 1800; w: 250; h: 300), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1377 |
(x: 1300; y: 500; w: 250; h: 1600), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1378 |
(x: 1600; y: 1700; w: 150; h: 400), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1379 |
(x: 1800; y: 1600; w: 150; h: 500), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1380 |
(x: 2000; y: 1400; w: 150; h: 700), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1381 |
(x: 2200; y: 300; w: 250; h: 1800), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1382 |
(x: 2500; y: 1500; w: 250; h: 600), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1383 |
(x: 2800; y: 1900; w: 250; h: 200), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1384 |
(x: 3100; y: 1600; w: 250; h: 500), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1385 |
(x: 3400; y: 600; w: 250; h: 1500), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1386 |
(x: 3700; y: 1800; w: 150; h: 300), |
1792 | 1387 |
(x: 3700; y: 2100; w: 1; h: 1), |
1388 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1389 |
); |
|
1797 | 1390 |
Template38FPoints: array[0..0] of TPoint = |
184 | 1391 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1392 |
(x: 2047; y: 0) |
712 | 1393 |
); |
711 | 1394 |
|
1792 | 1395 |
// 8 tiny islands |
1797 | 1396 |
const Template39Points: array[0..39] of TSDL_Rect = |
1792 | 1397 |
( |
1398 |
(x: 90; y: 520; w: 1; h: 1), |
|
1399 |
(x: 90; y: 350; w: 10; h: 150), |
|
1400 |
(x: 170; y: 350; w: 10; h: 150), |
|
1401 |
(x: 170; y: 520; w: 1; h: 1), |
|
1402 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1403 |
(x: 270; y: 520; w: 1; h: 1), |
|
1404 |
(x: 270; y: 350; w: 10; h: 150), |
|
1405 |
(x: 350; y: 350; w: 10; h: 150), |
|
1406 |
(x: 350; y: 520; w: 1; h: 1), |
|
1407 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1408 |
(x: 450; y: 520; w: 1; h: 1), |
|
1409 |
(x: 450; y: 350; w: 10; h: 150), |
|
1410 |
(x: 530; y: 350; w: 10; h: 150), |
|
1411 |
(x: 530; y: 520; w: 1; h: 1), |
|
1412 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1413 |
(x: 630; y: 520; w: 1; h: 1), |
|
1414 |
(x: 630; y: 350; w: 10; h: 150), |
|
1415 |
(x: 710; y: 350; w: 10; h: 150), |
|
1416 |
(x: 710; y: 520; w: 1; h: 1), |
|
1417 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1418 |
(x: 810; y: 520; w: 1; h: 1), |
|
1419 |
(x: 810; y: 350; w: 10; h: 150), |
|
1420 |
(x: 890; y: 350; w: 10; h: 150), |
|
1421 |
(x: 890; y: 520; w: 1; h: 1), |
|
1422 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1423 |
(x: 990; y: 520; w: 1; h: 1), |
|
1424 |
(x: 990; y: 350; w: 10; h: 150), |
|
1425 |
(x: 1070; y: 350; w: 10; h: 150), |
|
1426 |
(x: 1070; y: 520; w: 1; h: 1), |
|
1427 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1428 |
(x: 1170; y: 520; w: 1; h: 1), |
|
1429 |
(x: 1170; y: 350; w: 10; h: 150), |
|
1430 |
(x: 1250; y: 350; w: 10; h: 150), |
|
1431 |
(x: 1250; y: 520; w: 1; h: 1), |
|
1432 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1433 |
(x: 1350; y: 520; w: 1; h: 1), |
|
1434 |
(x: 1350; y: 350; w: 10; h: 150), |
|
1435 |
(x: 1430; y: 350; w: 10; h: 150), |
|
1436 |
(x: 1430; y: 520; w: 1; h: 1), |
|
1437 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1438 |
); |
|
1797 | 1439 |
Template39FPoints: array[0..0] of TPoint = |
1440 |
( |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1441 |
(x: 512; y: 0) |
1797 | 1442 |
); |
1443 |
const Template40Points: array[0..7] of TSDL_Rect = |
|
1444 |
( |
|
1445 |
(x: 90; y: 1050; w: 1; h: 1), |
|
1446 |
(x: 100; y: 800; w: 100; h: 200), |
|
1447 |
(x: 300; y: 600; w: 100; h: 200), |
|
1448 |
(x: 500; y: 200; w: 100; h: 200), |
|
1449 |
(x: 700; y: 600; w: 100; h: 100), |
|
1450 |
(x: 900; y: 800; w: 100; h: 200), |
|
1451 |
(x: 900; y: 1050; w: 1; h: 1), |
|
1452 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1453 |
); |
|
1454 |
Template40FPoints: array[0..0] of TPoint = |
|
1792 | 1455 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1456 |
(x: 512; y: 0) |
1792 | 1457 |
); |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1458 |
// Many islands |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1459 |
const Template41Points: array[0..85] of TSDL_Rect = |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1460 |
( |
7591 | 1461 |
(x: 95; y: 500; w: 26; h: 26), |
1462 |
(x: 100; y: 275; w: 50; h: 125), |
|
1463 |
(x: 325; y: 275; w: 50; h: 125), |
|
1464 |
(x: 330; y: 500; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1465 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1466 |
(x: 725; y: 125; w: 26; h: 26), |
1467 |
(x: 725; y: 25; w: 30; h: 50), |
|
1468 |
(x: 825; y: 35; w: 30; h: 35), |
|
1469 |
(x: 825; y: 135; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1470 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1471 |
(x: 1150; y: 550; w: 50; h: 75), |
1472 |
(x: 1250; y: 300; w: 50; h: 75), |
|
1473 |
(x: 1350; y: 300; w: 50; h: 75), |
|
1474 |
(x: 1400; y: 575; w: 50; h: 75), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1475 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1476 |
(x: 725; y:1050; w: 75; h: 75), |
7591 | 1477 |
(x: 700; y: 800; w: 125; h: 175), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1478 |
(x: 950; y: 800; w: 125; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1479 |
(x: 1000; y:1100; w: 75; h: 75), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1480 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1481 |
(x: 175; y:1500; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1482 |
(x: 180; y:1400; w: 30; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1483 |
(x: 250; y:1400; w: 30; h: 50), |
7591 | 1484 |
(x: 275; y:1510; w: 26; h: 26), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1485 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1486 |
(x: 500; y:1800; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1487 |
(x: 600; y:1650; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1488 |
(x: 750; y:1650; w: 125; h: 125), |
7591 | 1489 |
(x: 950; y:1850; w: 125; h: 125), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1490 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1491 |
(x: 1075; y:1450; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1492 |
(x: 1100; y:1300; w: 30; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1493 |
(x: 1150; y:1300; w: 30; h: 50), |
7591 | 1494 |
(x: 1175; y:1430; w: 26; h: 26), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1495 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1496 |
(x: 1600; y:1250; w: 50; h: 125), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1497 |
(x: 1700; y: 950; w: 50; h: 125), |
7591 | 1498 |
(x: 1850; y: 500; w: 75; h: 125), |
1499 |
(x: 1950; y: 550; w: 75; h: 175), |
|
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1500 |
(x: 2250; y: 950; w: 50; h: 125), |
7591 | 1501 |
(x: 2350; y:1250; w: 50; h: 125), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1502 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1503 |
(x: 1750; y:2010; w: 26; h: 26), |
1504 |
(x: 1900; y:1870; w: 75; h: 75), |
|
1505 |
(x: 2050; y:1870; w: 75; h: 75), |
|
1506 |
(x: 2175; y:2010; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1507 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1508 |
(x: 2500; y:1700; w: 26; h: 26), |
1509 |
(x: 2575; y:1500; w: 35; h: 75), |
|
1510 |
(x: 2650; y:1500; w: 35; h: 75), |
|
1511 |
(x: 2700; y:1690; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1512 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1513 |
(x: 2000; y: 125; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1514 |
(x: 2000; y: 50; w: 50; h: 50), |
7591 | 1515 |
(x: 2100; y: 50; w: 50; h: 50), |
1516 |
(x: 2150; y: 150; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1517 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1518 |
(x: 2600; y: 350; w: 50; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1519 |
(x: 2750; y: 250; w: 75; h: 75), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1520 |
(x: 3200; y: 525; w: 75; h: 75), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1521 |
(x: 2750; y: 550; w: 75; h: 125), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1522 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1523 |
(x: 2800; y:1150; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1524 |
(x: 2770; y: 950; w: 50; h: 50), |
7591 | 1525 |
(x: 2880; y: 950; w: 50; h: 50), |
1526 |
(x: 2900; y:1150; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1527 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1528 |
(x: 3075; y:1985; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1529 |
(x: 3255; y:1700; w: 75; h: 125), |
7591 | 1530 |
(x: 3475; y:1700; w: 75; h: 125), |
1531 |
(x: 3625; y:1985; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1532 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1533 |
(x: 3200; y:1450; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1534 |
(x: 3140; y:1350; w: 50; h: 50), |
7591 | 1535 |
(x: 3280; y:1350; w: 50; h: 50), |
1536 |
(x: 3300; y:1450; w: 26; h: 26), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1537 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1538 |
(x: 3500; y:1050; w: 50; h: 75), |
1539 |
(x: 3650; y: 600; w: 75; h: 125), |
|
1540 |
(x: 3800; y: 600; w: 75; h: 125), |
|
1541 |
(x: 3900; y:1000; w: 50; h: 75), |
|
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1542 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1543 |
(x: 3800; y: 200; w: 50; h: 75), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1544 |
(x: 3975; y: 50; w: 75; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1545 |
(x: 4010; y: 225; w: 50; h: 75), |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1546 |
(x: NTPX; y: 0; w: 1; h: 1) |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1547 |
); |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1548 |
Template41FPoints: array[0..0] of TPoint = |
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1549 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1550 |
(x: 2047; y: 0) |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
1551 |
); |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1552 |
// 2 tiny islands |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1553 |
const Template42Points: array[0..13] of TSDL_Rect = |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1554 |
( |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1555 |
(x: 90; y: 520; w: 1; h: 1), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1556 |
(x: 90; y: 50; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1557 |
(x: 170; y: 200; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1558 |
(x: 270; y: 350; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1559 |
(x: 350; y: 150; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1560 |
(x: 350; y: 520; w: 1; h: 1), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1561 |
(x: NTPX; y: 0; w: 1; h: 1), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1562 |
(x: 1170; y: 520; w: 1; h: 1), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1563 |
(x: 1170; y: 150; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1564 |
(x: 1250; y: 350; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1565 |
(x: 1350; y: 200; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1566 |
(x: 1430; y: 50; w: 10; h: 50), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1567 |
(x: 1430; y: 520; w: 1; h: 1), |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1568 |
(x: NTPX; y: 0; w: 1; h: 1) |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1569 |
); |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1570 |
Template42FPoints: array[0..0] of TPoint = |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1571 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1572 |
(x: 512; y: 0) |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
1573 |
); |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1574 |
// Many islands |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1575 |
const Template43Points: array[0..172] of TSDL_Rect = |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1576 |
( |
7591 | 1577 |
(x: 95; y: 500; w: 26; h: 26), |
1578 |
(x: 100; y: 275; w: 50; h: 125), |
|
1579 |
(x: 325; y: 275; w: 50; h: 125), |
|
1580 |
(x: 330; y: 500; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1581 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1582 |
(x: 725; y: 125; w: 26; h: 26), |
1583 |
(x: 725; y: 25; w: 30; h: 50), |
|
1584 |
(x: 825; y: 35; w: 30; h: 35), |
|
1585 |
(x: 825; y: 135; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1586 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1587 |
(x: 1150; y: 550; w: 50; h: 75), |
1588 |
(x: 1250; y: 300; w: 50; h: 75), |
|
1589 |
(x: 1350; y: 300; w: 50; h: 75), |
|
1590 |
(x: 1400; y: 575; w: 50; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1591 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1592 |
(x: 725; y:1050; w: 75; h: 75), |
7591 | 1593 |
(x: 700; y: 800; w: 125; h: 175), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1594 |
(x: 950; y: 800; w: 125; h: 175), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1595 |
(x: 1000; y:1100; w: 75; h: 75), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1596 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1597 |
(x: 175; y:1500; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1598 |
(x: 180; y:1400; w: 30; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1599 |
(x: 250; y:1400; w: 30; h: 50), |
7591 | 1600 |
(x: 275; y:1510; w: 26; h: 26), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1601 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1602 |
(x: 500; y:1800; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1603 |
(x: 600; y:1650; w: 125; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1604 |
(x: 750; y:1650; w: 125; h: 125), |
7591 | 1605 |
(x: 950; y:1850; w: 125; h: 125), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1606 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1607 |
(x: 1075; y:1450; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1608 |
(x: 1100; y:1300; w: 30; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1609 |
(x: 1150; y:1300; w: 30; h: 50), |
7591 | 1610 |
(x: 1175; y:1430; w: 26; h: 26), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1611 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1612 |
(x: 1600; y:1250; w: 50; h: 125), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1613 |
(x: 1700; y: 950; w: 50; h: 125), |
7591 | 1614 |
(x: 1850; y: 500; w: 75; h: 125), |
1615 |
(x: 1950; y: 550; w: 75; h: 175), |
|
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1616 |
(x: 2250; y: 950; w: 50; h: 125), |
7591 | 1617 |
(x: 2350; y:1250; w: 50; h: 125), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1618 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1619 |
(x: 1750; y:2010; w: 26; h: 26), |
1620 |
(x: 1900; y:1870; w: 75; h: 75), |
|
1621 |
(x: 2050; y:1870; w: 75; h: 75), |
|
1622 |
(x: 2175; y:2010; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1623 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1624 |
(x: 2500; y:1700; w: 26; h: 26), |
1625 |
(x: 2575; y:1500; w: 35; h: 75), |
|
1626 |
(x: 2650; y:1500; w: 35; h: 75), |
|
1627 |
(x: 2700; y:1690; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1628 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1629 |
(x: 2000; y: 125; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1630 |
(x: 2000; y: 50; w: 50; h: 50), |
7591 | 1631 |
(x: 2100; y: 50; w: 50; h: 50), |
1632 |
(x: 2150; y: 150; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1633 |
(x: NTPX; y: 0; w: 1; h: 1), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1634 |
(x: 2600; y: 350; w: 50; h: 125), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1635 |
(x: 2750; y: 250; w: 75; h: 75), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1636 |
(x: 3200; y: 525; w: 75; h: 75), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1637 |
(x: 2750; y: 550; w: 75; h: 125), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1638 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1639 |
(x: 2800; y:1150; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1640 |
(x: 2770; y: 950; w: 50; h: 50), |
7591 | 1641 |
(x: 2880; y: 950; w: 50; h: 50), |
1642 |
(x: 2900; y:1150; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1643 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1644 |
(x: 3075; y:1985; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1645 |
(x: 3255; y:1700; w: 75; h: 125), |
7591 | 1646 |
(x: 3475; y:1700; w: 75; h: 125), |
1647 |
(x: 3625; y:1985; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1648 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1649 |
(x: 3200; y:1450; w: 26; h: 26), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1650 |
(x: 3140; y:1350; w: 50; h: 50), |
7591 | 1651 |
(x: 3280; y:1350; w: 50; h: 50), |
1652 |
(x: 3300; y:1450; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1653 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1654 |
(x: 3500; y:1050; w: 50; h: 75), |
1655 |
(x: 3650; y: 600; w: 75; h: 125), |
|
1656 |
(x: 3800; y: 600; w: 75; h: 125), |
|
1657 |
(x: 3900; y:1000; w: 50; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1658 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1659 |
(x: 3800; y: 200; w: 50; h: 75), |
10208
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1660 |
(x: 3975; y: 50; w: 75; h: 50), |
f04fdb35fc33
- Limit outline to leftX/rightX/topY instead of LAND_WIDTH/LAND_HEIGHT
unc0rr
parents:
10131
diff
changeset
|
1661 |
(x: 4010; y: 225; w: 50; h: 75), |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1662 |
(x: NTPX; y: 0; w: 1; h: 1), |
7591 | 1663 |
(x: 95; y:2548; w: 26; h: 26), |
1664 |
(x: 100; y:2323; w: 50; h: 125), |
|
1665 |
(x: 325; y:2323; w: 50; h: 125), |
|
1666 |
(x: 330; y:2548; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1667 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1668 |
(x: 725; y:2173; w: 26; h: 26), |
1669 |
(x: 725; y:2073; w: 30; h: 50), |
|
1670 |
(x: 825; y:2083; w: 30; h: 35), |
|
1671 |
(x: 825; y:2183; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1672 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1673 |
(x: 1150; y:2598; w: 50; h: 75), |
1674 |
(x: 1250; y:2348; w: 50; h: 75), |
|
1675 |
(x: 1350; y:2348; w: 50; h: 75), |
|
1676 |
(x: 1400; y:2623; w: 50; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1677 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1678 |
(x: 525; y:3098; w: 75; h: 75), |
1679 |
(x: 700; y:2848; w: 125; h: 175), |
|
1680 |
(x: 950; y:2948; w: 125; h: 175), |
|
1681 |
(x: 1100; y:3148; w: 75; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1682 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1683 |
(x: 175; y:3548; w: 26; h: 26), |
1684 |
(x: 210; y:3448; w: 30; h: 50), |
|
1685 |
(x: 240; y:3448; w: 30; h: 50), |
|
1686 |
(x: 275; y:3558; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1687 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1688 |
(x: 450; y:3848; w: 125; h: 125), |
1689 |
(x: 600; y:3798; w: 125; h: 125), |
|
1690 |
(x: 750; y:3798; w: 125; h: 125), |
|
1691 |
(x: 950; y:3898; w: 125; h: 125), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1692 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1693 |
(x: 1075; y:3498; w: 26; h: 26), |
1694 |
(x: 1110; y:3348; w: 30; h: 50), |
|
1695 |
(x: 1140; y:3348; w: 30; h: 50), |
|
1696 |
(x: 1175; y:3478; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1697 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1698 |
(x: 1600; y:3298; w: 50; h: 125), |
1699 |
(x: 1700; y:3198; w: 50; h: 125), |
|
1700 |
(x: 1850; y:2548; w: 75; h: 125), |
|
1701 |
(x: 1950; y:2598; w: 75; h: 175), |
|
1702 |
(x: 2250; y:3198; w: 50; h: 125), |
|
1703 |
(x: 2350; y:3298; w: 50; h: 125), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1704 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1705 |
(x: 1750; y:4058; w: 26; h: 26), |
1706 |
(x: 1900; y:3918; w: 75; h: 75), |
|
1707 |
(x: 2050; y:3918; w: 75; h: 75), |
|
1708 |
(x: 2175; y:4058; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1709 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1710 |
(x: 2500; y:3748; w: 26; h: 26), |
1711 |
(x: 2575; y:3548; w: 35; h: 75), |
|
1712 |
(x: 2650; y:3548; w: 35; h: 75), |
|
1713 |
(x: 2700; y:3738; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1714 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1715 |
(x: 2000; y:2173; w: 26; h: 26), |
1716 |
(x: 2050; y:2098; w: 50; h: 50), |
|
1717 |
(x: 2100; y:2098; w: 50; h: 50), |
|
1718 |
(x: 2150; y:2198; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1719 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1720 |
(x: 2600; y:2298; w: 50; h: 125), |
1721 |
(x: 2750; y:2448; w: 75; h: 75), |
|
1722 |
(x: 2900; y:2573; w: 75; h: 75), |
|
1723 |
(x: 3150; y:2598; w: 75; h: 125), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1724 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1725 |
(x: 2800; y:3198; w: 26; h: 26), |
1726 |
(x: 2840; y:2998; w: 50; h: 50), |
|
1727 |
(x: 2880; y:2998; w: 50; h: 50), |
|
1728 |
(x: 2900; y:3198; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1729 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1730 |
(x: 3075; y:4033; w: 26; h: 26), |
1731 |
(x: 3325; y:3748; w: 75; h: 125), |
|
1732 |
(x: 3475; y:3748; w: 75; h: 125), |
|
1733 |
(x: 3625; y:4033; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1734 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1735 |
(x: 3200; y:3498; w: 26; h: 26), |
1736 |
(x: 3240; y:3398; w: 50; h: 50), |
|
1737 |
(x: 3280; y:3398; w: 50; h: 50), |
|
1738 |
(x: 3300; y:3498; w: 26; h: 26), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1739 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1740 |
(x: 3500; y:3098; w: 50; h: 75), |
1741 |
(x: 3650; y:2648; w: 75; h: 125), |
|
1742 |
(x: 3800; y:2648; w: 75; h: 125), |
|
1743 |
(x: 3900; y:3048; w: 50; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1744 |
(x: NTPX; y:2048; w: 1; h: 1), |
7591 | 1745 |
(x: 3800; y:2248; w: 50; h: 75), |
1746 |
(x: 3875; y:2148; w: 75; h: 75), |
|
1747 |
(x: 3925; y:2098; w: 75; h: 50), |
|
1748 |
(x: 4050; y:2173; w: 50; h: 75), |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1749 |
(x: NTPX; y:2048; w: 1; h: 1) |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1750 |
); |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1751 |
Template43FPoints: array[0..0] of TPoint = |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1752 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1753 |
(x: 4095; y: 0) |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
1754 |
); |
1753 | 1755 |
|
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1756 |
// 3 large caverns |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1757 |
const Template44Points: array[0..14] of TSDL_Rect = |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1758 |
( |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1759 |
(x: 0; y: 100; w: 1; h: 50), |
7820 | 1760 |
(x: 4095; y: 100; w: 1; h: 50), |
1761 |
(x: 4095; y: 400; w: 1; h: 50), |
|
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1762 |
(x: 0; y: 360; w: 1; h: 50), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1763 |
(x: NTPX; y: 0; w: 1; h: 1), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1764 |
(x: 0; y: 750; w: 1; h: 50), |
7820 | 1765 |
(x: 4095; y: 750; w: 1; h: 50), |
1766 |
(x: 4095; y:1100; w: 1; h: 50), |
|
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1767 |
(x: 0; y:1100; w: 1; h: 50), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1768 |
(x: NTPX; y: 0; w: 1; h: 1), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1769 |
(x: 0; y:1300; w: 1; h: 250), |
7820 | 1770 |
(x: 4095; y:1300; w: 1; h: 250), |
1771 |
(x: 4095; y:1800; w: 1; h: 200), |
|
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1772 |
(x: 0; y:1800; w: 1; h: 200), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1773 |
(x: NTPX; y: 0; w: 1; h: 1) |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1774 |
); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1775 |
Template44FPoints: array[0..5] of TSDL_Rect = |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1776 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1777 |
(x: 1; y: 90; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1778 |
(x: 1; y: 500; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1779 |
(x:4095; y: 500; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1780 |
(x: 1; y:1200; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1781 |
(x:4095; y:1200; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1782 |
(x: 1; y:2010; w: 0; h: 0) |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1783 |
); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1784 |
|
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1785 |
// large caverns with an island |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1786 |
const Template45Points: array[0..11] of TSDL_Rect = |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1787 |
( |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1788 |
(x: 500; y: 100; w: 1; h: 300), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1789 |
(x: 3700; y: 100; w: 1; h: 300), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1790 |
(x: 3700; y: 900; w: 200; h: 300), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1791 |
(x: 3700; y:1700; w: 1; h: 250), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1792 |
(x: 500; y:1700; w: 1; h: 250), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1793 |
(x: 300; y: 900; w: 200; h: 250), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1794 |
(x: NTPX; y: 0; w: 1; h: 1), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1795 |
(x: 1000; y: 800; w: 1; h: 1), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1796 |
(x: 2700; y: 800; w: 600; h: 100), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1797 |
(x: 2700; y:1200; w: 600; h: 200), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1798 |
(x: 1000; y:1200; w: 200; h: 200), |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1799 |
(x: NTPX; y: 0; w: 1; h: 1) |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1800 |
); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1801 |
Template45FPoints: array[0..2] of TSDL_Rect = |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1802 |
( |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1803 |
(x: 1; y: 1; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1804 |
(x: 1; y:2047; w: 0; h: 0), |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10108
diff
changeset
|
1805 |
(x:1005; y: 805; w: 0; h: 0) |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1806 |
); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
1807 |
|
10813 | 1808 |
|
1809 |
const Template46Points: array[0..19] of TSDL_Rect = |
|
1810 |
( |
|
1811 |
(x: 800; y: 1424; w: 1; h: 1), |
|
1812 |
(x: 800; y: 1224; w: 1; h: 1), |
|
1813 |
(x: 2200; y: 1224; w: 1; h: 1), |
|
1814 |
(x: 2200; y: 1424; w: 1; h: 1), |
|
1815 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1816 |
(x: 800; y: 1024; w: 1; h: 1), |
|
1817 |
(x: 800; y: 844; w: 1; h: 1), |
|
1818 |
(x: 2200; y: 844; w: 1; h: 1), |
|
1819 |
(x: 2200; y: 1024; w: 1; h: 1), |
|
1820 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1821 |
(x: 800; y: 664; w: 1; h: 1), |
|
1822 |
(x: 800; y: 484; w: 1; h: 1), |
|
1823 |
(x: 2200; y: 484; w: 1; h: 1), |
|
1824 |
(x: 2200; y: 664; w: 1; h: 1), |
|
1825 |
(x: NTPX; y: 0; w: 1; h: 1), |
|
1826 |
(x: 800; y: 304; w: 1; h: 1), |
|
1827 |
(x: 800; y: 104; w: 1; h: 1), |
|
1828 |
(x: 2200; y: 104; w: 1; h: 1), |
|
1829 |
(x: 2200; y: 304; w: 1; h: 1), |
|
1830 |
(x: NTPX; y: 0; w: 1; h: 1) |
|
1831 |
||
1832 |
); |
|
1833 |
Template46FPoints: array[0..0] of TPoint = |
|
1834 |
( |
|
1835 |
(x: 1023; y: 0) |
|
1836 |
); |
|
1837 |
||
1792 | 1838 |
//////////////////////////////////////////////////////////////////////// |
10813 | 1839 |
var EdgeTemplates: array[0..46] of TEdgeTemplate = |
184 | 1840 |
( |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1841 |
(BasePoints: PPointArray(@Template0Points); |
184 | 1842 |
BasePointsCount: Succ(High(Template0Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1843 |
FillPoints: PPointArray(@Template0FPoints); |
184 | 1844 |
FillPointsCount: Succ(High(Template0FPoints)); |
1792 | 1845 |
BezierizeCount: 3; |
1846 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1847 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1848 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1849 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1850 |
MaxHedgeHogs: 18; |
1792 | 1851 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1852 |
(BasePoints: PPointArray(@Template1Points); |
1792 | 1853 |
BasePointsCount: Succ(High(Template1Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1854 |
FillPoints: PPointArray(@Template1FPoints); |
1792 | 1855 |
FillPointsCount: Succ(High(Template1FPoints)); |
1856 |
BezierizeCount: 3; |
|
1857 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1858 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1859 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1860 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1861 |
MaxHedgeHogs: 18; |
1792 | 1862 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1863 |
(BasePoints: PPointArray(@Template2Points); |
1792 | 1864 |
BasePointsCount: Succ(High(Template2Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1865 |
FillPoints: PPointArray(@Template2FPoints); |
1792 | 1866 |
FillPointsCount: Succ(High(Template2FPoints)); |
1867 |
BezierizeCount: 2; |
|
1868 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1869 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1870 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1871 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1872 |
MaxHedgeHogs: 18; |
1792 | 1873 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1874 |
(BasePoints: PPointArray(@Template3Points); |
1792 | 1875 |
BasePointsCount: Succ(High(Template3Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1876 |
FillPoints: PPointArray(@Template3FPoints); |
1792 | 1877 |
FillPointsCount: Succ(High(Template3FPoints)); |
1878 |
BezierizeCount: 3; |
|
1879 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1880 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1881 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1882 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1883 |
MaxHedgeHogs: 18; |
1792 | 1884 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1885 |
(BasePoints: PPointArray(@Template4Points); |
1792 | 1886 |
BasePointsCount: Succ(High(Template4Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1887 |
FillPoints: PPointArray(@Template4FPoints); |
1792 | 1888 |
FillPointsCount: Succ(High(Template4FPoints)); |
1889 |
BezierizeCount: 3; |
|
1890 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1891 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1892 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1893 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1894 |
MaxHedgeHogs: 18; |
1792 | 1895 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1896 |
(BasePoints: PPointArray(@Template5Points); |
1792 | 1897 |
BasePointsCount: Succ(High(Template5Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1898 |
FillPoints: PPointArray(@Template5FPoints); |
1792 | 1899 |
FillPointsCount: Succ(High(Template5FPoints)); |
1900 |
BezierizeCount: 2; |
|
1901 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1902 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1903 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1904 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1905 |
MaxHedgeHogs: 18; |
1792 | 1906 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1907 |
(BasePoints: PPointArray(@Template6Points); |
1792 | 1908 |
BasePointsCount: Succ(High(Template6Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1909 |
FillPoints: PPointArray(@Template6FPoints); |
1792 | 1910 |
FillPointsCount: Succ(High(Template6FPoints)); |
1911 |
BezierizeCount: 2; |
|
1912 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1913 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1914 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1915 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1916 |
MaxHedgeHogs: 18; |
1792 | 1917 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1918 |
(BasePoints: PPointArray(@Template7Points); |
1792 | 1919 |
BasePointsCount: Succ(High(Template7Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1920 |
FillPoints: PPointArray(@Template7FPoints); |
1792 | 1921 |
FillPointsCount: Succ(High(Template7FPoints)); |
1922 |
BezierizeCount: 4; |
|
1923 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1924 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1925 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1926 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1927 |
MaxHedgeHogs: 18; |
1792 | 1928 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1929 |
(BasePoints: PPointArray(@Template8Points); |
1792 | 1930 |
BasePointsCount: Succ(High(Template8Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1931 |
FillPoints: PPointArray(@Template8FPoints); |
1792 | 1932 |
FillPointsCount: Succ(High(Template8FPoints)); |
1933 |
BezierizeCount: 2; |
|
1934 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1935 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1936 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1937 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1938 |
MaxHedgeHogs: 18; |
1792 | 1939 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1940 |
(BasePoints: PPointArray(@Template9Points); |
1792 | 1941 |
BasePointsCount: Succ(High(Template9Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1942 |
FillPoints: PPointArray(@Template9FPoints); |
1792 | 1943 |
FillPointsCount: Succ(High(Template9FPoints)); |
1944 |
BezierizeCount: 1; |
|
1945 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1946 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1947 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1948 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1949 |
MaxHedgeHogs: 18; |
1792 | 1950 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1951 |
(BasePoints: PPointArray(@Template10Points); |
1792 | 1952 |
BasePointsCount: Succ(High(Template10Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1953 |
FillPoints: PPointArray(@Template10FPoints); |
1792 | 1954 |
FillPointsCount: Succ(High(Template10FPoints)); |
1955 |
BezierizeCount: 2; |
|
1956 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1957 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1958 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1959 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1960 |
MaxHedgeHogs: 18; |
1792 | 1961 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1962 |
(BasePoints: PPointArray(@Template11Points); |
1792 | 1963 |
BasePointsCount: Succ(High(Template11Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1964 |
FillPoints: PPointArray(@Template11FPoints); |
1792 | 1965 |
FillPointsCount: Succ(High(Template11FPoints)); |
1966 |
BezierizeCount: 1; |
|
1967 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1968 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1969 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1970 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1971 |
MaxHedgeHogs: 18; |
1792 | 1972 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1973 |
(BasePoints: PPointArray(@Template12Points); |
1792 | 1974 |
BasePointsCount: Succ(High(Template12Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1975 |
FillPoints: PPointArray(@Template12FPoints); |
1792 | 1976 |
FillPointsCount: Succ(High(Template12FPoints)); |
1977 |
BezierizeCount: 3; |
|
1978 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1979 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1980 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1981 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1982 |
MaxHedgeHogs: 18; |
1792 | 1983 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1984 |
(BasePoints: PPointArray(@Template13Points); |
1792 | 1985 |
BasePointsCount: Succ(High(Template13Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1986 |
FillPoints: PPointArray(@Template13FPoints); |
1792 | 1987 |
FillPointsCount: Succ(High(Template13FPoints)); |
1988 |
BezierizeCount: 3; |
|
1989 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
1990 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 1991 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
1992 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
1993 |
MaxHedgeHogs: 18; |
1792 | 1994 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1995 |
(BasePoints: PPointArray(@Template14Points); |
1792 | 1996 |
BasePointsCount: Succ(High(Template14Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
1997 |
FillPoints: PPointArray(@Template14FPoints); |
1792 | 1998 |
FillPointsCount: Succ(High(Template14FPoints)); |
1999 |
BezierizeCount: 3; |
|
2000 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2001 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 2002 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2003 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2004 |
MaxHedgeHogs: 18; |
1792 | 2005 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2006 |
(BasePoints: PPointArray(@Template15Points); |
1792 | 2007 |
BasePointsCount: Succ(High(Template15Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2008 |
FillPoints: PPointArray(@Template15FPoints); |
1792 | 2009 |
FillPointsCount: Succ(High(Template15FPoints)); |
2010 |
BezierizeCount: 2; |
|
2011 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2012 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 2013 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2014 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2015 |
MaxHedgeHogs: 18; |
1792 | 2016 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2017 |
(BasePoints: PPointArray(@Template16Points); |
1792 | 2018 |
BasePointsCount: Succ(High(Template16Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2019 |
FillPoints: PPointArray(@Template16FPoints); |
1792 | 2020 |
FillPointsCount: Succ(High(Template16FPoints)); |
2021 |
BezierizeCount: 2; |
|
2022 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2023 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 2024 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2025 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2026 |
MaxHedgeHogs: 18; |
1792 | 2027 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2028 |
(BasePoints: PPointArray(@Template17Points); |
1792 | 2029 |
BasePointsCount: Succ(High(Template17Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2030 |
FillPoints: PPointArray(@Template17FPoints); |
1792 | 2031 |
FillPointsCount: Succ(High(Template17FPoints)); |
2032 |
BezierizeCount: 3; |
|
2033 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2034 |
TemplateHeight: 1424; TemplateWidth: 3072; |
1792 | 2035 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2036 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2037 |
MaxHedgeHogs: 18; |
1792 | 2038 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2039 |
(BasePoints: PPointArray(@Template18Points); |
1792 | 2040 |
BasePointsCount: Succ(High(Template18Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2041 |
FillPoints: PPointArray(@Template18FPoints); |
1792 | 2042 |
FillPointsCount: Succ(High(Template18FPoints)); |
2043 |
BezierizeCount: 3; |
|
2044 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2045 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2046 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2047 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2048 |
MaxHedgeHogs: 36; |
1792 | 2049 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2050 |
(BasePoints: PPointArray(@Template19Points); |
1792 | 2051 |
BasePointsCount: Succ(High(Template19Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2052 |
FillPoints: PPointArray(@Template19FPoints); |
1792 | 2053 |
FillPointsCount: Succ(High(Template19FPoints)); |
2054 |
BezierizeCount: 3; |
|
2055 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2056 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2057 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2058 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2059 |
MaxHedgeHogs: 36; |
1792 | 2060 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2061 |
(BasePoints: PPointArray(@Template20Points); |
1792 | 2062 |
BasePointsCount: Succ(High(Template20Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2063 |
FillPoints: PPointArray(@Template20FPoints); |
1792 | 2064 |
FillPointsCount: Succ(High(Template20FPoints)); |
2065 |
BezierizeCount: 2; |
|
2066 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2067 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2068 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2069 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2070 |
MaxHedgeHogs: 36; |
1792 | 2071 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2072 |
(BasePoints: PPointArray(@Template21Points); |
1792 | 2073 |
BasePointsCount: Succ(High(Template21Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2074 |
FillPoints: PPointArray(@Template21FPoints); |
1792 | 2075 |
FillPointsCount: Succ(High(Template21FPoints)); |
2076 |
BezierizeCount: 3; |
|
2077 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2078 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2079 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2080 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2081 |
MaxHedgeHogs: 36; |
1792 | 2082 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2083 |
(BasePoints: PPointArray(@Template22Points); |
1792 | 2084 |
BasePointsCount: Succ(High(Template22Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2085 |
FillPoints: PPointArray(@Template22FPoints); |
1792 | 2086 |
FillPointsCount: Succ(High(Template22FPoints)); |
2087 |
BezierizeCount: 3; |
|
2088 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2089 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2090 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2091 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2092 |
MaxHedgeHogs: 36; |
1792 | 2093 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2094 |
(BasePoints: PPointArray(@Template23Points); |
1792 | 2095 |
BasePointsCount: Succ(High(Template23Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2096 |
FillPoints: PPointArray(@Template23FPoints); |
1792 | 2097 |
FillPointsCount: Succ(High(Template23FPoints)); |
2098 |
BezierizeCount: 2; |
|
2099 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2100 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2101 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2102 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2103 |
MaxHedgeHogs: 36; |
1792 | 2104 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2105 |
(BasePoints: PPointArray(@Template24Points); |
1792 | 2106 |
BasePointsCount: Succ(High(Template24Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2107 |
FillPoints: PPointArray(@Template24FPoints); |
1792 | 2108 |
FillPointsCount: Succ(High(Template24FPoints)); |
2109 |
BezierizeCount: 2; |
|
2110 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2111 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2112 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2113 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2114 |
MaxHedgeHogs: 36; |
1792 | 2115 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2116 |
(BasePoints: PPointArray(@Template25Points); |
1792 | 2117 |
BasePointsCount: Succ(High(Template25Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2118 |
FillPoints: PPointArray(@Template25FPoints); |
1792 | 2119 |
FillPointsCount: Succ(High(Template25FPoints)); |
2120 |
BezierizeCount: 4; |
|
2121 |
RandPassesCount: 4; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2122 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2123 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2124 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2125 |
MaxHedgeHogs: 36; |
1792 | 2126 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2127 |
(BasePoints: PPointArray(@Template26Points); |
1792 | 2128 |
BasePointsCount: Succ(High(Template26Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2129 |
FillPoints: PPointArray(@Template26FPoints); |
1792 | 2130 |
FillPointsCount: Succ(High(Template26FPoints)); |
2131 |
BezierizeCount: 2; |
|
2132 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2133 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2134 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2135 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2136 |
MaxHedgeHogs: 36; |
1792 | 2137 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2138 |
(BasePoints: PPointArray(@Template27Points); |
1792 | 2139 |
BasePointsCount: Succ(High(Template27Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2140 |
FillPoints: PPointArray(@Template27FPoints); |
1792 | 2141 |
FillPointsCount: Succ(High(Template27FPoints)); |
2142 |
BezierizeCount: 1; |
|
2143 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2144 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2145 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2146 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2147 |
MaxHedgeHogs: 36; |
1792 | 2148 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2149 |
(BasePoints: PPointArray(@Template28Points); |
1792 | 2150 |
BasePointsCount: Succ(High(Template28Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2151 |
FillPoints: PPointArray(@Template28FPoints); |
1792 | 2152 |
FillPointsCount: Succ(High(Template28FPoints)); |
2153 |
BezierizeCount: 2; |
|
2154 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2155 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2156 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2157 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2158 |
MaxHedgeHogs: 36; |
1792 | 2159 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2160 |
(BasePoints: PPointArray(@Template29Points); |
1792 | 2161 |
BasePointsCount: Succ(High(Template29Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2162 |
FillPoints: PPointArray(@Template29FPoints); |
1792 | 2163 |
FillPointsCount: Succ(High(Template29FPoints)); |
2164 |
BezierizeCount: 1; |
|
2165 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2166 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2167 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2168 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2169 |
MaxHedgeHogs: 36; |
1792 | 2170 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2171 |
(BasePoints: PPointArray(@Template30Points); |
1792 | 2172 |
BasePointsCount: Succ(High(Template30Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2173 |
FillPoints: PPointArray(@Template30FPoints); |
1792 | 2174 |
FillPointsCount: Succ(High(Template30FPoints)); |
2175 |
BezierizeCount: 3; |
|
2176 |
RandPassesCount: 8; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2177 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2178 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2179 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2180 |
MaxHedgeHogs: 36; |
1792 | 2181 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2182 |
(BasePoints: PPointArray(@Template31Points); |
1792 | 2183 |
BasePointsCount: Succ(High(Template31Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2184 |
FillPoints: PPointArray(@Template31FPoints); |
1792 | 2185 |
FillPointsCount: Succ(High(Template31FPoints)); |
2186 |
BezierizeCount: 3; |
|
2187 |
RandPassesCount: 5; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2188 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2189 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2190 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2191 |
MaxHedgeHogs: 36; |
1792 | 2192 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2193 |
(BasePoints: PPointArray(@Template32Points); |
1792 | 2194 |
BasePointsCount: Succ(High(Template32Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2195 |
FillPoints: PPointArray(@Template32FPoints); |
1792 | 2196 |
FillPointsCount: Succ(High(Template32FPoints)); |
2197 |
BezierizeCount: 3; |
|
2198 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2199 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2200 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2201 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2202 |
MaxHedgeHogs: 36; |
1792 | 2203 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2204 |
(BasePoints: PPointArray(@Template33Points); |
1792 | 2205 |
BasePointsCount: Succ(High(Template33Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2206 |
FillPoints: PPointArray(@Template33FPoints); |
1792 | 2207 |
FillPointsCount: Succ(High(Template33FPoints)); |
2208 |
BezierizeCount: 2; |
|
2209 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2210 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2211 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2212 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2213 |
MaxHedgeHogs: 36; |
1792 | 2214 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2215 |
(BasePoints: PPointArray(@Template34Points); |
1792 | 2216 |
BasePointsCount: Succ(High(Template34Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2217 |
FillPoints: PPointArray(@Template34FPoints); |
1792 | 2218 |
FillPointsCount: Succ(High(Template34FPoints)); |
2219 |
BezierizeCount: 2; |
|
2220 |
RandPassesCount: 6; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2221 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2222 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2223 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2224 |
MaxHedgeHogs: 36; |
1792 | 2225 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2226 |
(BasePoints: PPointArray(@Template35Points); |
1792 | 2227 |
BasePointsCount: Succ(High(Template35Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2228 |
FillPoints: PPointArray(@Template35FPoints); |
1792 | 2229 |
FillPointsCount: Succ(High(Template35FPoints)); |
2230 |
BezierizeCount: 3; |
|
2231 |
RandPassesCount: 7; |
|
9058
1d58ca61bdcd
increase width on medium/large templates by a couple of hundred px. should help issue #625 a bit. Shouldn't increase large any more tho, since we are at 4096 and would increase memory unnecessarily.
nemo
parents:
7976
diff
changeset
|
2232 |
TemplateHeight: 1424; TemplateWidth: 4096; |
1792 | 2233 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
2234 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2235 |
MaxHedgeHogs: 36; |
1792 | 2236 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2237 |
(BasePoints: PPointArray(@Template36Points); |
1792 | 2238 |
BasePointsCount: Succ(High(Template36Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2239 |
FillPoints: PPointArray(@Template36FPoints); |
1792 | 2240 |
FillPointsCount: Succ(High(Template36FPoints)); |
2241 |
BezierizeCount: 4; |
|
2242 |
RandPassesCount: 12; |
|
2243 |
TemplateHeight: 1024; TemplateWidth: 4096; |
|
1797 | 2244 |
canMirror: true; canFlip: false; isNegative: true; canInvert: false; |
1792 | 2245 |
hasGirders: false; |
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2246 |
MaxHedgeHogs: 32; |
1792 | 2247 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2248 |
(BasePoints: PPointArray(@Template37Points); |
1792 | 2249 |
BasePointsCount: Succ(High(Template37Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2250 |
FillPoints: PPointArray(@Template37FPoints); |
1792 | 2251 |
FillPointsCount: Succ(High(Template37FPoints)); |
2252 |
BezierizeCount: 3; |
|
2253 |
RandPassesCount: 3; |
|
2254 |
TemplateHeight: 2048; TemplateWidth: 4096; |
|
2255 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
|
2256 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2257 |
MaxHedgeHogs: 48; |
1792 | 2258 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2259 |
(BasePoints: PPointArray(@Template38Points); |
1797 | 2260 |
BasePointsCount: Succ(High(Template38Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2261 |
FillPoints: PPointArray(@Template38FPoints); |
1797 | 2262 |
FillPointsCount: Succ(High(Template38FPoints)); |
2263 |
BezierizeCount: 4; |
|
2264 |
RandPassesCount: 4; |
|
1792 | 2265 |
TemplateHeight: 2048; TemplateWidth: 4096; |
2266 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
|
2267 |
hasGirders: true; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2268 |
MaxHedgeHogs: 48; |
1792 | 2269 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2270 |
(BasePoints: PPointArray(@Template39Points); |
1797 | 2271 |
BasePointsCount: Succ(High(Template39Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2272 |
FillPoints: PPointArray(@Template39FPoints); |
1797 | 2273 |
FillPointsCount: Succ(High(Template39FPoints)); |
1792 | 2274 |
BezierizeCount: 3; |
2275 |
RandPassesCount: 3; |
|
2276 |
TemplateHeight: 512; TemplateWidth: 1536; |
|
2277 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
|
2278 |
hasGirders: false; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2279 |
MaxHedgeHogs: 8; |
1797 | 2280 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2281 |
(BasePoints: PPointArray(@Template40Points); |
1797 | 2282 |
BasePointsCount: Succ(High(Template40Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2283 |
FillPoints: PPointArray(@Template40FPoints); |
1797 | 2284 |
FillPointsCount: Succ(High(Template40FPoints)); |
2285 |
BezierizeCount: 3; |
|
2286 |
RandPassesCount: 3; |
|
2287 |
TemplateHeight: 1024; TemplateWidth: 1024; |
|
2288 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
|
2289 |
hasGirders: false; |
|
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2290 |
MaxHedgeHogs: 8; |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2291 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2292 |
(BasePoints: PPointArray(@Template41Points); |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2293 |
BasePointsCount: Succ(High(Template41Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2294 |
FillPoints: PPointArray(@Template41FPoints); |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2295 |
FillPointsCount: Succ(High(Template41FPoints)); |
7585
9158f06ffb44
Slightly faster and slightly better templates #41 and #43
unc0rr
parents:
7480
diff
changeset
|
2296 |
BezierizeCount: 2; |
9158f06ffb44
Slightly faster and slightly better templates #41 and #43
unc0rr
parents:
7480
diff
changeset
|
2297 |
RandPassesCount: 9; |
3137
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2298 |
TemplateHeight: 2048; TemplateWidth: 4096; |
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2299 |
canMirror: true; canFlip: true; isNegative: false; canInvert: false; |
d8b968a543df
One more wacky generated map. bunch of islands suitable for islands shoppa.
nemo
parents:
2671
diff
changeset
|
2300 |
hasGirders: true; |
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2301 |
MaxHedgeHogs: 48; |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2302 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2303 |
(BasePoints: PPointArray(@Template42Points); |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2304 |
BasePointsCount: Succ(High(Template42Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2305 |
FillPoints: PPointArray(@Template42FPoints); |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2306 |
FillPointsCount: Succ(High(Template42FPoints)); |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2307 |
BezierizeCount: 3; |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2308 |
RandPassesCount: 3; |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2309 |
TemplateHeight: 512; TemplateWidth: 1536; |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2310 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2311 |
hasGirders: false; |
7046
acc6b5159cde
Fix identifiers case in uLandTemplates (too lazy to make proper implementation in pas2c)
unc0rr
parents:
7035
diff
changeset
|
2312 |
MaxHedgeHogs: 8; |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2313 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2314 |
(BasePoints: PPointArray(@Template43Points); |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2315 |
BasePointsCount: Succ(High(Template43Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2316 |
FillPoints: PPointArray(@Template43FPoints); |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2317 |
FillPointsCount: Succ(High(Template43FPoints)); |
7585
9158f06ffb44
Slightly faster and slightly better templates #41 and #43
unc0rr
parents:
7480
diff
changeset
|
2318 |
BezierizeCount: 2; |
9158f06ffb44
Slightly faster and slightly better templates #41 and #43
unc0rr
parents:
7480
diff
changeset
|
2319 |
RandPassesCount: 9; |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2320 |
TemplateHeight: 4096; TemplateWidth: 4096; |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2321 |
canMirror: true; canFlip: true; isNegative: false; canInvert: false; |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2322 |
hasGirders: true; |
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2323 |
MaxHedgeHogs: 48; |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2324 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2325 |
(BasePoints: PPointArray(@Template44Points); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2326 |
BasePointsCount: Succ(High(Template44Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2327 |
FillPoints: PPointArray(@Template44FPoints); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2328 |
FillPointsCount: Succ(High(Template44FPoints)); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2329 |
BezierizeCount: 5; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2330 |
RandPassesCount: 3; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2331 |
TemplateHeight: 2048; TemplateWidth: 4096; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2332 |
canMirror: false; canFlip: false; isNegative: true; canInvert: false; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2333 |
hasGirders: false; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2334 |
MaxHedgeHogs: 48; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2335 |
), |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2336 |
(BasePoints: PPointArray(@Template45Points); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2337 |
BasePointsCount: Succ(High(Template45Points)); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10124
diff
changeset
|
2338 |
FillPoints: PPointArray(@Template45FPoints); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2339 |
FillPointsCount: Succ(High(Template45FPoints)); |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2340 |
BezierizeCount: 5; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2341 |
RandPassesCount: 7; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2342 |
TemplateHeight: 2048; TemplateWidth: 4096; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2343 |
canMirror: false; canFlip: false; isNegative: true; canInvert: false; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2344 |
hasGirders: false; |
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2345 |
MaxHedgeHogs: 48; |
10813 | 2346 |
), |
2347 |
(BasePoints: PPointArray(@Template46Points); |
|
2348 |
BasePointsCount: Succ(High(Template46Points)); |
|
2349 |
FillPoints: PPointArray(@Template46FPoints); |
|
2350 |
FillPointsCount: Succ(High(Template46FPoints)); |
|
2351 |
BezierizeCount: 2; |
|
2352 |
RandPassesCount: 8; |
|
2353 |
TemplateHeight: 1424; TemplateWidth: 3072; |
|
2354 |
canMirror: true; canFlip: false; isNegative: false; canInvert: false; |
|
2355 |
hasGirders: true; |
|
2356 |
MaxHedgeHogs: 18; |
|
358 | 2357 |
) |
184 | 2358 |
); |
3278
39eacae90580
One more tiny island map. Just to pad the Small map section a bit
nemo
parents:
3236
diff
changeset
|
2359 |
const SmallTemplates: array[0..2] of Longword = ( 39, 40, 42 ); |
10813 | 2360 |
const MediumTemplates: array[0..18] of Longword = |
2361 |
( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 46 ); |
|
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2362 |
const LargeTemplates: array[0..20] of Longword = |
2376 | 2363 |
( |
1797 | 2364 |
18, 19, 20, 21, 22, 23, 24, 25, 26, 27, |
7480
536f5f3260f1
An experimental template to abuse this ability. A quick doubling of the "Islands" crazy template
nemo
parents:
7046
diff
changeset
|
2365 |
28, 29, 30, 31, 32, 33, 34, 35, 37, 38, 43 |
1797 | 2366 |
); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2367 |
const CavernTemplates: array[0..5] of Longword = (36, 2, 3, 21, 29, 45); |
3144 | 2368 |
//const WackyTemplates: array[0..4] of Longword = (37, 38, 39, 40, 41); |
7753
dda33caa609d
Two cavern templates which aren't horribly long to generate, produce pretty varying maps, and allow 48 hedgehogs gameplay
unc0rr
parents:
7591
diff
changeset
|
2369 |
const WackyTemplates: array[0..4] of Longword = (37, 38, 41, 43, 44); |
9243
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2370 |
const TemplateCounts: array[0..5] of Longword = ( |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2371 |
0 |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2372 |
, Succ(High(SmallTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2373 |
, Succ(High(MediumTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2374 |
, Succ(High(LargeTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2375 |
, Succ(High(CavernTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2376 |
, Succ(High(WackyTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2377 |
); |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2378 |
const GroupedTemplatesCount = Succ(High(SmallTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2379 |
+ Succ(High(MediumTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2380 |
+ Succ(High(LargeTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2381 |
+ Succ(High(CavernTemplates)) |
d8f6a396d98e
First select group of templates, then pick template from selected group
unc0rr
parents:
9080
diff
changeset
|
2382 |
+ Succ(High(WackyTemplates)); |
184 | 2383 |
|
2384 |
implementation |
|
2385 |
||
2386 |
end. |