hedgewars/uLandTemplates.pas
author unc0rr
Sun, 25 Jan 2009 18:10:23 +0000
changeset 1753 2ccba26f1aa4
parent 1066 1f1b3686a2b0
child 1761 c7038eade58d
permissions -rw-r--r--
Apply nemo's world resize patch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 883
diff changeset
     2
 * Hedgewars, a free turn based strategy game
883
07a568ba44e0 Update copyright info in source files headers
unc0rr
parents: 715
diff changeset
     3
 * Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com>
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     4
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     8
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    12
 * GNU General Public License for more details.
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    13
 *
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    14
 * You should have received a copy of the GNU General Public License
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    15
 * along with this program; if not, write to the Free Software
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    17
 *)
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    18
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    19
unit uLandTemplates;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    20
interface
534
92fb2b0d5117 - Fix some bugs
unc0rr
parents: 527
diff changeset
    21
uses SDLh;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    22
{$INCLUDE options.inc}
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    23
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
    24
const NTPX = Low(TSDL_Rect.x); 
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
    25
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    26
type PPointArray = ^TPointArray;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
    27
     TPointArray = array[0..64] of TSDL_Rect;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    28
     TEdgeTemplate = record
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    29
                     BasePoints: PPointArray;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    30
                     BasePointsCount: Longword;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    31
                     FillPoints: PPointArray;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    32
                     FillPointsCount: Longword;
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
    33
                     BezierizeCount: Longword;
364
52cb4d6f84b7 - Better land generator
unc0rr
parents: 360
diff changeset
    34
                     RandPassesCount: Longword;
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    35
                     canMirror, canFlip: boolean;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    36
                     end;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
    37
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    38
// Original positions.  Keeping them around in case I start
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    39
// seriously distorting the other 18.  If we want smaller maps they might
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    40
// still be needed
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    41
// const Template0Points: array[0..18] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    42
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    43
//        (x:  410; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    44
//        (x:  160; y:  760; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    45
//        (x:  342; y:  706; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    46
//        (x:  238; y:  386; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    47
//        (x:  246; y:  176; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    48
//        (x:  552; y:  128; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    49
//        (x:  750; y:  468; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    50
//        (x:  650; y: 1024; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    51
//        (x: 1250; y: 1100; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    52
//        (x: 1490; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    53
//        (x: 1452; y:  904; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    54
//        (x: 1248; y:  575; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    55
//        (x: 1426; y:  592; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    56
//        (x: 1310; y:  192; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    57
//        (x: 1588; y:  194; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    58
//        (x: 1618; y:  472; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    59
//        (x: 1710; y:  850; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    60
//        (x: 1734; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    61
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    62
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    63
//       Template0FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    64
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    65
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    66
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    67
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    68
// const Template1Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    69
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    70
//        (x:  400; y: 1024; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    71
//        (x:  284; y:  892; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    72
//        (x:  492; y:  634; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    73
//        (x:  254; y:  246; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    74
//        (x:  620; y:  254; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    75
//        (x:  680; y:  550; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    76
//        (x:  826; y:  614; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    77
//        (x:  800; y:  186; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    78
//        (x: 1000; y:  186; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    79
//        (x: 1012; y:  590; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    80
//        (x: 1240; y:  668; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    81
//        (x: 1270; y:  194; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    82
//        (x: 1514; y:  194; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    83
//        (x: 1450; y:  652; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    84
//        (x: 1460; y: 1024; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    85
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    86
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    87
//       Template1FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    88
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    89
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    90
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    91
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    92
// const Template2Points: array[0..21] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    93
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    94
//        (x:  354; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    95
//        (x:  232; y:  926; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    96
//        (x:  120; y:  846; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    97
//        (x:  280; y:  704; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    98
//        (x:  208; y:  422; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
    99
//        (x:  292; y:  160; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   100
//        (x:  526; y:  172; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   101
//        (x:  462; y:  528; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   102
//        (x:  556; y:  678; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   103
//        (x:  722; y:  164; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   104
//        (x:  890; y:  156; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   105
//        (x:  898; y:  562; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   106
//        (x: 1092; y:  384; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   107
//        (x: 1206; y:  200; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   108
//        (x: 1300; y:  490; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   109
//        (x: 1416; y:  546; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   110
//        (x: 1546; y:  192; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   111
//        (x: 1702; y:  246; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   112
//        (x: 1700; y:  548; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   113
//        (x: 1534; y:  898; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   114
//        (x: 1604; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   115
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   116
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   117
//       Template2FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   118
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   119
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   120
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   121
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   122
// const Template3Points: array[0..16] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   123
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   124
//        (x:  348; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   125
//        (x:  236; y:  852; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   126
//        (x:  498; y:  710; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   127
//        (x:  728; y:  852; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   128
//        (x: 1174; y:  712; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   129
//        (x: 1402; y:  838; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   130
//        (x: 1530; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   131
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   132
//        (x: 1660; y:  498; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   133
//        (x: 1270; y:  476; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   134
//        (x:  682; y:  414; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   135
//        (x:  230; y:  328; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   136
//        (x:  410; y:  174; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   137
//        (x:  790; y:  172; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   138
//        (x: 1274; y:  128; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   139
//        (x: 1434; y:  222; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   140
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   141
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   142
//       Template3FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   143
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   144
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   145
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   146
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   147
// const Template4Points: array[0..22] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   148
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   149
//        (x:  418; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   150
//        (x:  248; y:  900; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   151
//        (x:  272; y:  692; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   152
//        (x:  610; y:  768; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   153
//        (x:  820; y:  616; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   154
//        (x: 1242; y:  758; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   155
//        (x: 1550; y:  698; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   156
//        (x: 1530; y:  902; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   157
//        (x: 1532; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   158
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   159
//        (x:  202; y:  418; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   160
//        (x:  252; y:  312; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   161
//        (x:  150; y:  168; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   162
//        (x:  702; y:  160; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   163
//        (x:  702; y:  308; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   164
//        (x:  720; y:  408; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   165
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   166
//        (x: 1702; y:  434; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   167
//        (x: 1252; y:  388; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   168
//        (x: 1214; y:  152; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   169
//        (x: 1428; y:  252; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   170
//        (x: 1750; y:  152; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   171
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   172
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   173
//       Template4FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   174
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   175
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   176
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   177
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   178
// const Template5Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   179
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   180
//        (x:  274; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   181
//        (x:  190; y:  918; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   182
//        (x:  382; y:  576; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   183
//        (x:  568; y:  744; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   184
//        (x:  678; y:  856; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   185
//        (x:  740; y:  650; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   186
//        (x:  644; y:  496; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   187
//        (x:  496; y:  210; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   188
//        (x:  934; y:  448; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   189
//        (x:  950; y:  752; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   190
//        (x: 1172; y:  774; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   191
//        (x: 1284; y:  722; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   192
//        (x: 1494; y:  364; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   193
//        (x: 1620; y:  774; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   194
//        (x: 1612; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   195
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   196
//        );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   197
//       Template5FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   198
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   199
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   200
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   201
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   202
// const Template6Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   203
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   204
//        (x:  368; y: 1022; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   205
//        (x:  266; y:  840; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   206
//        (x:  294; y:  512; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   207
//        (x:  570; y:  580; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   208
//        (x:  568; y:  440; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   209
//        (x:  232; y:  260; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   210
//        (x:  778; y:  242; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   211
//        (x:  990; y:  154; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   212
//        (x: 1200; y:  276; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   213
//        (x: 1088; y:  442; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   214
//        (x: 1050; y:  686; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   215
//        (x: 1584; y:  502; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   216
//        (x: 1646; y: 1020; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   217
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   218
//        );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   219
//       Template6FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   220
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   221
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   222
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   223
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   224
// const Template7Points: array[0..5] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   225
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   226
//        (x:  162; y: 1024; w:  400; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   227
//        (x:  226; y:  234; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   228
//        (x:  936; y:  740; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   229
//        (x: 1576; y:  176; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   230
//        (x: 1430; y: 1024; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   231
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   232
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   233
//       Template7FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   234
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   235
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   236
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   237
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   238
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   239
// const Template8Points: array[0..19] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   240
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   241
//        (x:  364; y: 1024; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   242
//        (x:  290; y:  860; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   243
//        (x:  486; y:  750; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   244
//        (x:  256; y:  590; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   245
//        (x:  470; y:  468; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   246
//        (x:  242; y:  242; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   247
//        (x:  508; y:  310; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   248
//        (x:  770; y:  228; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   249
//        (x:  636; y:  718; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   250
//        (x:  968; y:  700; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   251
//        (x:  970; y:  804; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   252
//        (x: 1232; y:  704; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   253
//        (x: 1356; y:  594; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   254
//        (x: 1214; y:  334; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   255
//        (x: 1410; y:  260; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   256
//        (x: 1528; y:  422; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   257
//        (x: 1540; y:  588; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   258
//        (x: 1464; y:  746; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   259
//        (x: 1630; y: 1024; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   260
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   261
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   262
//       Template8FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   263
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   264
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   265
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   266
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   267
// const Template9Points: array[0..31] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   268
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   269
//        (x:  340; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   270
//        (x:  276; y:  902; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   271
//        (x:  434; y:  836; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   272
//        (x:  266; y:  734; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   273
//        (x:  246; y:  604; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   274
//        (x:  426; y:  646; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   275
//        (x:  234; y:  292; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   276
//        (x:  428; y:  396; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   277
//        (x:  516; y:  198; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   278
//        (x:  688; y:  426; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   279
//        (x:  626; y:  560; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   280
//        (x:  698; y:  650; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   281
//        (x:  674; y:  788; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   282
//        (x: 1014; y:  848; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   283
//        (x: 1086; y:  728; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   284
//        (x:  958; y:  660; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   285
//        (x: 1116; y:  596; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   286
//        (x: 1118; y:  484; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   287
//        (x:  958; y:  324; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   288
//        (x: 1272; y:  306; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   289
//        (x: 1254; y:  502; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   290
//        (x: 1234; y:  760; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   291
//        (x: 1380; y:  762; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   292
//        (x: 1472; y:  472; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   293
//        (x: 1410; y:  196; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   294
//        (x: 1706; y:  154; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   295
//        (x: 1812; y:  348; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   296
//        (x: 1692; y:  524; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   297
//        (x: 1632; y:  678; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   298
//        (x: 1632; y:  802; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   299
//        (x: 1680; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   300
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   301
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   302
//       Template9FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   303
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   304
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   305
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   306
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   307
// const Template10Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   308
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   309
//        (x:  188; y: 1024; w:  190; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   310
//        (x:  240; y:  682; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   311
//        (x:  314; y:  468; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   312
//        (x:  726; y:  246; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   313
//        (x:  902; y:  390; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   314
//        (x:  958; y:  588; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   315
//        (x:  876; y: 1024; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   316
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   317
//        (x: 1064; y: 1024; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   318
//        (x: 1288; y:  795; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   319
//        (x: 1458; y:  274; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   320
//        (x: 1688; y:  795; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   321
//        (x: 1782; y: 1024; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   322
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   323
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   324
//       Template10FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   325
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   326
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   327
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   328
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   329
// const Template11Points: array[0..9] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   330
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   331
//        (x:  274; y: 1024; w:  166; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   332
//        (x:  330; y:  862; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   333
//        (x:  492; y:  690; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   334
//        (x:  746; y:  646; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   335
//        (x:  938; y:  626; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   336
//        (x: 1134; y:  646; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   337
//        (x: 1292; y:  630; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   338
//        (x: 1448; y:  664; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   339
//        (x: 1584; y: 1024; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   340
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   341
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   342
//       Template11FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   343
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   344
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   345
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   346
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   347
// const Template12Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   348
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   349
//        (x:  360; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   350
//        (x:  242; y:  630; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   351
//        (x:  454; y:  672; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   352
//        (x:  254; y:  334; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   353
//        (x:  870; y:  276; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   354
//        (x: 1076; y:  272; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   355
//        (x: 1000; y: 1024; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   356
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   357
//        (x: 1244; y: 1024; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   358
//        (x: 1356; y:  494; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   359
//        (x: 1600; y:  414; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   360
//        (x: 1748; y:  584; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   361
//        (x: 1688; y: 1024; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   362
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   363
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   364
//       Template12FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   365
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   366
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   367
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   368
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   369
// const Template13Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   370
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   371
//        (x:  446; y: 1024; w:  140; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   372
//        (x:  280; y:  872; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   373
//        (x:  254; y:  680; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   374
//        (x:  654; y:  672; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   375
//        (x:  608; y:  490; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   376
//        (x:  300; y:  362; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   377
//        (x:  446; y:  224; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   378
//        (x:  916; y:  188; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   379
//        (x: 1148; y:  174; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   380
//        (x: 1426; y:  176; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   381
//        (x: 1556; y:  418; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   382
//        (x: 1226; y:  548; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   383
//        (x: 1256; y:  706; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   384
//        (x: 1568; y:  706; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   385
//        (x: 1444; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   386
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   387
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   388
//       Template13FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   389
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   390
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   391
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   392
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   393
// const Template14Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   394
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   395
//        (x:  286; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   396
//        (x:  244; y:  886; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   397
//        (x:  212; y:  686; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   398
//        (x:  678; y:  840; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   399
//        (x:  744; y:  604; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   400
//        (x:  620; y:  182; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   401
//        (x:  988; y:  260; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   402
//        (x: 1310; y:  174; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   403
//        (x: 1160; y:  574; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   404
//        (x: 1052; y:  822; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   405
//        (x: 1596; y:  630; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   406
//        (x: 1598; y:  916; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   407
//        (x: 1608; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   408
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   409
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   410
//       Template14FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   411
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   412
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   413
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   414
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   415
// const Template15Points: array[0..23] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   416
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   417
//        (x:  302; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   418
//        (x:  240; y:  890; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   419
//        (x:  350; y:  862; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   420
//        (x:  460; y:  906; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   421
//        (x:  466; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   422
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   423
//        (x:  804; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   424
//        (x:  720; y:  782; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   425
//        (x:  484; y:  624; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   426
//        (x:  310; y:  482; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   427
//        (x:  434; y:  286; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   428
//        (x:  840; y:  274; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   429
//        (x: 1024; y:  244; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   430
//        (x: 1248; y:  246; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   431
//        (x: 1580; y:  326; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   432
//        (x: 1360; y:  604; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   433
//        (x: 1196; y:  740; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   434
//        (x: 1216; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   435
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   436
//        (x: 1494; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   437
//        (x: 1450; y:  928; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   438
//        (x: 1598; y:  838; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   439
//        (x: 1656; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   440
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   441
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   442
//       Template15FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   443
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   444
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   445
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   446
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   447
// const Template16Points: array[0..28] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   448
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   449
//        (x:  300; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   450
//        (x:  394; y:  902; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   451
//        (x:  380; y:  770; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   452
//        (x:  186; y:  626; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   453
//        (x:  376; y:  600; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   454
//        (x:  182; y:  328; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   455
//        (x:  368; y:  328; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   456
//        (x:  472; y:  174; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   457
//        (x:  588; y:  322; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   458
//        (x:  718; y:  324; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   459
//        (x:  612; y:  516; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   460
//        (x:  728; y:  656; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   461
//        (x:  588; y:  850; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   462
//        (x:  750; y: 1024; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   463
//        (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   464
//        (x: 1304; y: 1024; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   465
//        (x: 1226; y:  908; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   466
//        (x: 1224; y:  748; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   467
//        (x: 1212; y:  576; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   468
//        (x: 1140; y:  434; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   469
//        (x: 1396; y:  318; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   470
//        (x: 1086; y:  214; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   471
//        (x: 1446; y:  156; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   472
//        (x: 1708; y:  272; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   473
//        (x: 1542; y:  488; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   474
//        (x: 1686; y:  634; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   475
//        (x: 1572; y:  820; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   476
//        (x: 1698; y: 1024; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   477
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   478
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   479
//       Template16FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   480
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   481
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   482
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   483
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   484
// const Template17Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   485
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   486
//        (x:  230; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   487
//        (x:  166; y:  856; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   488
//        (x:  352; y:  856; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   489
//        (x:  348; y:  674; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   490
//        (x:  556; y:  672; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   491
//        (x:  746; y:  670; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   492
//        (x:  924; y:  378; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   493
//        (x: 1122; y:  462; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   494
//        (x: 1324; y:  306; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   495
//        (x: 1536; y:  206; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   496
//        (x: 1524; y:  644; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   497
//        (x: 1572; y:  852; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   498
//        (x: 1598; y: 1024; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   499
//        (x: NTPX; y:    0; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   500
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   501
//       Template17FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   502
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   503
//        (x: 1023; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   504
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   505
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   506
// This is the original set, repositioned
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   507
// const Template0Points: array[0..18] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   508
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   509
//        (x: 1434;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   510
//        (x: 1184;y: 1784; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   511
//        (x: 1366;y: 1730; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   512
//        (x: 1262;y: 1410; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   513
//        (x: 1270;y: 1200; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   514
//        (x: 1576;y: 1152; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   515
//        (x: 1774;y: 1492; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   516
//        (x: 1674;y: 2048; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   517
//        (x: 2274;y: 2124; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   518
//        (x: 2514;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   519
//        (x: 2476;y: 1928; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   520
//        (x: 2272;y: 1599; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   521
//        (x: 2450;y: 1616; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   522
//        (x: 2334;y: 1216; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   523
//        (x: 2612;y: 1218; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   524
//        (x: 2642;y: 1496; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   525
//        (x: 2734;y: 1874; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   526
//        (x: 2758;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   527
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   528
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   529
//       Template0FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   530
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   531
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   532
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   533
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   534
// const Template1Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   535
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   536
//        (x: 1424;y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   537
//        (x: 1308;y: 1916; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   538
//        (x: 1516;y: 1658; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   539
//        (x: 1278;y: 1270; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   540
//        (x: 1644;y: 1278; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   541
//        (x: 1704;y: 1574; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   542
//        (x: 1850;y: 1638; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   543
//        (x: 1824;y: 1210; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   544
//        (x: 2024;y: 1210; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   545
//        (x: 2036;y: 1614; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   546
//        (x: 2264;y: 1692; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   547
//        (x: 2294;y: 1218; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   548
//        (x: 2538;y: 1218; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   549
//        (x: 2474;y: 1676; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   550
//        (x: 2484;y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   551
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   552
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   553
//       Template1FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   554
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   555
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   556
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   557
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   558
// const Template2Points: array[0..21] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   559
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   560
//        (x: 1378;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   561
//        (x: 1256;y: 1950; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   562
//        (x: 1144;y: 1870; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   563
//        (x: 1304;y: 1728; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   564
//        (x: 1232;y: 1446; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   565
//        (x: 1316;y: 1184; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   566
//        (x: 1550;y: 1196; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   567
//        (x: 1486;y: 1552; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   568
//        (x: 1580;y: 1702; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   569
//        (x: 1746;y: 1188; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   570
//        (x: 1914;y: 1180; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   571
//        (x: 1922;y: 1586; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   572
//        (x: 2116;y: 1408; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   573
//        (x: 2230;y: 1224; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   574
//        (x: 2324;y: 1514; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   575
//        (x: 2440;y: 1570; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   576
//        (x: 2570;y: 1216; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   577
//        (x: 2726;y: 1270; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   578
//        (x: 2724;y: 1572; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   579
//        (x: 2558;y: 1922; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   580
//        (x: 2628;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   581
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   582
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   583
//       Template2FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   584
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   585
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   586
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   587
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   588
// const Template3Points: array[0..16] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   589
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   590
//        (x: 1372;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   591
//        (x: 1260;y: 1876; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   592
//        (x: 1522;y: 1734; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   593
//        (x: 1752;y: 1876; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   594
//        (x: 2198;y: 1736; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   595
//        (x: 2426;y: 1862; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   596
//        (x: 2554;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   597
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   598
//        (x: 2684;y: 1522; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   599
//        (x: 2294;y: 1500; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   600
//        (x: 1706;y: 1438; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   601
//        (x: 1254;y: 1352; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   602
//        (x: 1434;y: 1198; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   603
//        (x: 1814;y: 1196; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   604
//        (x: 2298;y: 1152; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   605
//        (x: 2458;y: 1246; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   606
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   607
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   608
//       Template3FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   609
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   610
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   611
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   612
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   613
// const Template4Points: array[0..22] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   614
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   615
//        (x: 1442;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   616
//        (x: 1272;y: 1924; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   617
//        (x: 1296;y: 1716; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   618
//        (x: 1634;y: 1792; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   619
//        (x: 1844;y: 1640; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   620
//        (x: 2266;y: 1782; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   621
//        (x: 2574;y: 1722; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   622
//        (x: 2554;y: 1926; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   623
//        (x: 2556;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   624
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   625
//        (x: 1226;y: 1442; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   626
//        (x: 1276;y: 1336; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   627
//        (x: 1174;y: 1192; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   628
//        (x: 1726;y: 1184; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   629
//        (x: 1726;y: 1332; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   630
//        (x: 1744;y: 1432; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   631
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   632
//        (x: 2726;y: 1458; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   633
//        (x: 2276;y: 1412; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   634
//        (x: 2238;y: 1176; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   635
//        (x: 2452;y: 1276; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   636
//        (x: 2774;y: 1176; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   637
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   638
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   639
//       Template4FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   640
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   641
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   642
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   643
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   644
// const Template5Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   645
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   646
//        (x: 1298;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   647
//        (x: 1214;y: 1942; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   648
//        (x: 1406;y: 1600; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   649
//        (x: 1592;y: 1768; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   650
//        (x: 1702;y: 1880; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   651
//        (x: 1764;y: 1674; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   652
//        (x: 1668;y: 1520; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   653
//        (x: 1520;y: 1234; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   654
//        (x: 1958;y: 1472; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   655
//        (x: 1974;y: 1776; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   656
//        (x: 2196;y: 1798; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   657
//        (x: 2308;y: 1746; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   658
//        (x: 2518;y: 1388; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   659
//        (x: 2644;y: 1798; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   660
//        (x: 2636;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   661
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   662
//        );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   663
//       Template5FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   664
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   665
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   666
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   667
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   668
// const Template6Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   669
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   670
//        (x: 1392;y: 2046; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   671
//        (x: 1290;y: 1864; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   672
//        (x: 1318;y: 1536; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   673
//        (x: 1594;y: 1604; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   674
//        (x: 1592;y: 1464; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   675
//        (x: 1256;y: 1284; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   676
//        (x: 1802;y: 1266; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   677
//        (x: 2014;y: 1178; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   678
//        (x: 2224;y: 1300; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   679
//        (x: 2112;y: 1466; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   680
//        (x: 2074;y: 1710; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   681
//        (x: 2608;y: 1526; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   682
//        (x: 2670;y: 2044; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   683
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   684
//        );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   685
//       Template6FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   686
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   687
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   688
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   689
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   690
// const Template7Points: array[0..5] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   691
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   692
//        (x: 1186;y: 2048; w:  400; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   693
//        (x: 1250;y: 1258; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   694
//        (x: 1960;y: 1764; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   695
//        (x: 2600;y: 1200; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   696
//        (x: 2454;y: 2048; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   697
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   698
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   699
//       Template7FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   700
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   701
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   702
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   703
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   704
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   705
// const Template8Points: array[0..19] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   706
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   707
//        (x: 1388;y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   708
//        (x: 1314;y: 1884; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   709
//        (x: 1510;y: 1774; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   710
//        (x: 1280;y: 1614; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   711
//        (x: 1494;y: 1492; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   712
//        (x: 1266;y: 1266; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   713
//        (x: 1532;y: 1334; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   714
//        (x: 1794;y: 1252; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   715
//        (x: 1660;y: 1742; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   716
//        (x: 1992;y: 1724; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   717
//        (x: 1994;y: 1828; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   718
//        (x: 2256;y: 1728; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   719
//        (x: 2380;y: 1618; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   720
//        (x: 2238;y: 1358; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   721
//        (x: 2434;y: 1284; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   722
//        (x: 2552;y: 1446; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   723
//        (x: 2564;y: 1612; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   724
//        (x: 2488;y: 1770; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   725
//        (x: 2654;y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   726
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   727
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   728
//       Template8FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   729
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   730
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   731
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   732
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   733
// const Template9Points: array[0..31] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   734
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   735
//        (x: 1364;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   736
//        (x: 1300;y: 1926; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   737
//        (x: 1458;y: 1860; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   738
//        (x: 1290;y: 1758; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   739
//        (x: 1270;y: 1628; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   740
//        (x: 1450;y: 1670; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   741
//        (x: 1258;y: 1316; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   742
//        (x: 1452;y: 1420; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   743
//        (x: 1540;y: 1222; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   744
//        (x: 1712;y: 1450; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   745
//        (x: 1650;y: 1584; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   746
//        (x: 1722;y: 1674; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   747
//        (x: 1698;y: 1812; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   748
//        (x: 2038;y: 1872; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   749
//        (x: 2110;y: 1752; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   750
//        (x: 1982;y: 1684; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   751
//        (x: 2140;y: 1620; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   752
//        (x: 2142;y: 1508; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   753
//        (x: 1982;y: 1348; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   754
//        (x: 2296;y: 1330; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   755
//        (x: 2278;y: 1526; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   756
//        (x: 2258;y: 1784; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   757
//        (x: 2404;y: 1786; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   758
//        (x: 2496;y: 1496; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   759
//        (x: 2434;y: 1220; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   760
//        (x: 2730;y: 1178; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   761
//        (x: 2836;y: 1372; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   762
//        (x: 2716;y: 1548; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   763
//        (x: 2656;y: 1702; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   764
//        (x: 2656;y: 1826; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   765
//        (x: 2704;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   766
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   767
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   768
//       Template9FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   769
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   770
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   771
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   772
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   773
// const Template10Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   774
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   775
//        (x: 1212;y: 2048; w:  190; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   776
//        (x: 1264;y: 1706; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   777
//        (x: 1338;y: 1492; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   778
//        (x: 1750;y: 1270; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   779
//        (x: 1926;y: 1414; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   780
//        (x: 1982;y: 1612; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   781
//        (x: 1900;y: 2048; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   782
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   783
//        (x: 2088;y: 2048; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   784
//        (x: 2312;y: 1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   785
//        (x: 2482;y: 1298; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   786
//        (x: 2712;y: 1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   787
//        (x: 2806;y: 2048; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   788
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   789
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   790
//       Template10FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   791
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   792
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   793
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   794
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   795
// const Template11Points: array[0..9] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   796
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   797
//        (x: 1298;y: 2048; w:  166; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   798
//        (x: 1354;y: 1886; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   799
//        (x: 1516;y: 1714; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   800
//        (x: 1770;y: 1670; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   801
//        (x: 1962;y: 1650; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   802
//        (x: 2158;y: 1670; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   803
//        (x: 2316;y: 1654; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   804
//        (x: 2472;y: 1688; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   805
//        (x: 2608;y: 2048; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   806
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   807
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   808
//       Template11FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   809
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   810
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   811
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   812
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   813
// const Template12Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   814
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   815
//        (x: 1384;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   816
//        (x: 1266;y: 1654; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   817
//        (x: 1478;y: 1696; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   818
//        (x: 1278;y: 1358; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   819
//        (x: 1894;y: 1300; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   820
//        (x: 2100;y: 1296; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   821
//        (x: 2024;y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   822
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   823
//        (x: 2268;y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   824
//        (x: 2380;y: 1518; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   825
//        (x: 2624;y: 1438; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   826
//        (x: 2772;y: 1608; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   827
//        (x: 2712;y: 2048; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   828
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   829
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   830
//       Template12FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   831
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   832
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   833
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   834
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   835
// const Template13Points: array[0..15] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   836
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   837
//        (x: 1470;y: 2048; w:  140; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   838
//        (x: 1304;y: 1896; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   839
//        (x: 1278;y: 1704; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   840
//        (x: 1678;y: 1696; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   841
//        (x: 1632;y: 1514; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   842
//        (x: 1324;y: 1386; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   843
//        (x: 1470;y: 1248; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   844
//        (x: 1940;y: 1212; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   845
//        (x: 2172;y: 1198; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   846
//        (x: 2450;y: 1200; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   847
//        (x: 2580;y: 1442; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   848
//        (x: 2250;y: 1572; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   849
//        (x: 2280;y: 1730; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   850
//        (x: 2592;y: 1730; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   851
//        (x: 2468;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   852
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   853
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   854
//       Template13FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   855
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   856
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   857
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   858
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   859
// const Template14Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   860
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   861
//        (x: 1310;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   862
//        (x: 1268;y: 1910; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   863
//        (x: 1236;y: 1710; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   864
//        (x: 1702;y: 1864; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   865
//        (x: 1768;y: 1628; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   866
//        (x: 1644;y: 1206; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   867
//        (x: 2012;y: 1284; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   868
//        (x: 2334;y: 1198; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   869
//        (x: 2184;y: 1598; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   870
//        (x: 2076;y: 1846; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   871
//        (x: 2620;y: 1654; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   872
//        (x: 2622;y: 1940; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   873
//        (x: 2632;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   874
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   875
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   876
//       Template14FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   877
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   878
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   879
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   880
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   881
// const Template15Points: array[0..23] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   882
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   883
//        (x: 1326;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   884
//        (x: 1264;y: 1914; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   885
//        (x: 1374;y: 1886; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   886
//        (x: 1484;y: 1930; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   887
//        (x: 1490;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   888
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   889
//        (x: 1828;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   890
//        (x: 1744;y: 1806; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   891
//        (x: 1508;y: 1648; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   892
//        (x: 1334;y: 1506; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   893
//        (x: 1458;y: 1310; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   894
//        (x: 1864;y: 1298; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   895
//        (x: 2048;y: 1268; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   896
//        (x: 2272;y: 1270; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   897
//        (x: 2604;y: 1350; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   898
//        (x: 2384;y: 1628; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   899
//        (x: 2220;y: 1764; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   900
//        (x: 2240;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   901
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   902
//        (x: 2518;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   903
//        (x: 2474;y: 1952; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   904
//        (x: 2622;y: 1862; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   905
//        (x: 2680;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   906
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   907
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   908
//       Template15FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   909
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   910
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   911
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   912
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   913
// const Template16Points: array[0..28] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   914
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   915
//        (x: 1324;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   916
//        (x: 1418;y: 1926; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   917
//        (x: 1404;y: 1794; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   918
//        (x: 1210;y: 1650; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   919
//        (x: 1400;y: 1624; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   920
//        (x: 1206;y: 1352; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   921
//        (x: 1392;y: 1352; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   922
//        (x: 1496;y: 1198; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   923
//        (x: 1612;y: 1346; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   924
//        (x: 1742;y: 1348; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   925
//        (x: 1636;y: 1540; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   926
//        (x: 1752;y: 1680; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   927
//        (x: 1612;y: 1874; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   928
//        (x: 1774;y: 2048; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   929
//        (x: NTPX;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   930
//        (x: 2328;y: 2048; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   931
//        (x: 2250;y: 1932; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   932
//        (x: 2248;y: 1772; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   933
//        (x: 2236;y: 1600; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   934
//        (x: 2164;y: 1458; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   935
//        (x: 2420;y: 1342; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   936
//        (x: 2110;y: 1238; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   937
//        (x: 2470;y: 1180; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   938
//        (x: 2732;y: 1296; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   939
//        (x: 2566;y: 1512; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   940
//        (x: 2710;y: 1658; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   941
//        (x: 2596;y: 1844; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   942
//        (x: 2722;y: 2048; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   943
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   944
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   945
//       Template16FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   946
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   947
//        (x: 2047;y: 1024)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   948
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   949
// 
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   950
// const Template17Points: array[0..13] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   951
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   952
//        (x: 1254;y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   953
//        (x: 1190;y: 1880; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   954
//        (x: 1376;y: 1880; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   955
//        (x: 1372;y: 1698; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   956
//        (x: 1580;y: 1696; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   957
//        (x: 1770;y: 1694; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   958
//        (x: 1948;y: 1402; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   959
//        (x: 2146;y: 1486; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   960
//        (x: 2348;y: 1330; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   961
//        (x: 2560;y: 1230; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   962
//        (x: 2548;y: 1668; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   963
//        (x: 2596;y: 1876; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   964
//        (x: 2622;y: 2048; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   965
//        (x: NTPX;y: 2048; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   966
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   967
//       Template17FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   968
//       (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   969
//        (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   970
//       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   971
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   972
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   973
/////////////////// MIRRORED FOUR TIMES //////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   974
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   975
// Hi unC0Rr.  Yeah, I know this is kind of lame.  Real templates should probably
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   976
// be made from scratch for taller/wider area.  But hey, for testing.
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   977
// The first 18 are in all 4 quadrants, the last 18 are in only the bottom 2
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   978
const Template0Points: array[0..75] of TSDL_Rect =
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
   979
      (
359
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   980
       (x:  410; y: 1024; w:    1; h:    1),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   981
       (x:  160; y:  760; w:  130; h:  170),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   982
       (x:  342; y:  706; w:  316; h:  150),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   983
       (x:  238; y:  386; w:  270; h:  180),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   984
       (x:  246; y:  176; w:  242; h:  156),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
   985
       (x:  552; y:  128; w:  610; h:  300),
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
   986
       (x:  750; y:  468; w:  352; h:  324),
359
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   987
       (x:  650; y: 1024; w:  500; h:    1),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   988
       (x: 1250; y: 1100; w:    1; h:    1),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   989
       (x: 1490; y: 1024; w:    1; h:    1),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   990
       (x: 1452; y:  904; w:   74; h:   12),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   991
       (x: 1248; y:  575; w:   68; h:  425),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   992
       (x: 1426; y:  592; w:  140; h:  142),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   993
       (x: 1310; y:  192; w:  150; h:  350),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
   994
       (x: 1588; y:  194; w:  148; h:  242),
359
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   995
       (x: 1618; y:  472; w:  276; h:  314),
59fbfc65fbda - New land templates
unc0rr
parents: 358
diff changeset
   996
       (x: 1710; y:  850; w:  130; h:   86),
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
   997
       (x: 1734; y: 1024; w:    1; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   998
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
   999
       (x: 410;y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1000
       (x: 160;y: 1784; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1001
       (x: 342;y: 1730; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1002
       (x: 238;y: 1410; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1003
       (x: 246;y: 1200; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1004
       (x: 552;y: 1152; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1005
       (x: 750;y: 1492; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1006
       (x: 650;y: 2048; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1007
       (x: 1250;y: 2124; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1008
       (x: 1490;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1009
       (x: 1452;y: 1928; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1010
       (x: 1248;y: 1599; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1011
       (x: 1426;y: 1616; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1012
       (x: 1310;y: 1216; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1013
       (x: 1588;y: 1218; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1014
       (x: 1618;y: 1496; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1015
       (x: 1710;y: 1874; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1016
       (x: 1734;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1017
       (x: NTPX;y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1018
       (x:  2458; y: 1024; w:    1; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1019
       (x:  2208; y:  760; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1020
       (x:  2390; y:  706; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1021
       (x:  2286; y:  386; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1022
       (x:  2294; y:  176; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1023
       (x:  2600; y:  128; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1024
       (x:  2798; y:  468; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1025
       (x:  2698; y: 1024; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1026
       (x: 3298; y: 1100; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1027
       (x: 3538; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1028
       (x: 3500; y:  904; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1029
       (x: 3296; y:  575; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1030
       (x: 3474; y:  592; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1031
       (x: 3358; y:  192; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1032
       (x: 3636; y:  194; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1033
       (x: 3666; y:  472; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1034
       (x: 3758; y:  850; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1035
       (x: 3782; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1036
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1037
       (x:  2458; y: 2048; w:    1; h:    1), // X + 2048, Y+1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1038
       (x:  2208; y:  1784; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1039
       (x:  2390; y:  1730; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1040
       (x:  2286; y:  1410; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1041
       (x:  2294; y:  1200; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1042
       (x:  2600; y:  1152; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1043
       (x:  2798; y:  1492; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1044
       (x:  2698; y: 2048; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1045
       (x: 3298; y: 2124; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1046
       (x: 3538; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1047
       (x: 3500; y:  1928; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1048
       (x: 3296; y:  1599; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1049
       (x: 3474; y:  1616; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1050
       (x: 3358; y:  1216; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1051
       (x: 3636; y:  1218; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1052
       (x: 3666; y:  1496; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1053
       (x: 3758; y:  1874; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1054
       (x: 3782; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1055
       (x: NTPX; y:    1024; w:    1; h:    1)
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  1056
      );
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  1057
      Template0FPoints: array[0..0] of TPoint =
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  1058
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1059
       (x: 2047; y:    0) // TODO - determine (or ask unC0Rr) what these initial values mean
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  1060
      );
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  1061
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1062
const Template1Points: array[0..63] of TSDL_Rect =
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1063
      (
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1064
       (x:  400; y: 1024; w:   25; h:    1),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1065
       (x:  284; y:  892; w:  254; h:   58),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1066
       (x:  492; y:  634; w:  100; h:  200),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1067
       (x:  254; y:  246; w:  276; h:  380),
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1068
       (x:  620; y:  254; w:  125; h:  270),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1069
       (x:  680; y:  550; w:   96; h:  390),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1070
       (x:  826; y:  614; w:  110; h:  350),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1071
       (x:  800; y:  186; w:  150; h:  380),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1072
       (x: 1000; y:  186; w:  170; h:  375),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1073
       (x: 1012; y:  590; w:  188; h:  298),
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1074
       (x: 1240; y:  668; w:  136; h:  172),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1075
       (x: 1270; y:  194; w:  120; h:  392),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1076
       (x: 1514; y:  194; w:  364; h:  362),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1077
       (x: 1450; y:  652; w:  315; h:  232),
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1078
       (x: 1460; y: 1024; w:   25; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1079
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1080
       (x:  400; y: 2048; w:   25; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1081
       (x:  284; y:  1916; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1082
       (x:  492; y:  1658; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1083
       (x:  254; y:  1270; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1084
       (x:  620; y:  1278; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1085
       (x:  680; y:  1574; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1086
       (x:  826; y:  1638; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1087
       (x:  800; y:  1210; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1088
       (x: 1000; y:  1210; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1089
       (x: 1012; y:  1614; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1090
       (x: 1240; y:  1692; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1091
       (x: 1270; y:  1218; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1092
       (x: 1514; y:  1218; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1093
       (x: 1450; y:  1676; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1094
       (x: 1460; y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1095
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1096
       (x:  2448; y: 1024; w:   25; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1097
       (x:  2332; y:  892; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1098
       (x:  2540; y:  634; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1099
       (x:  2302; y:  246; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1100
       (x:  2668; y:  254; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1101
       (x:  2728; y:  550; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1102
       (x:  2874; y:  614; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1103
       (x:  2848; y:  186; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1104
       (x: 3048; y:  186; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1105
       (x: 3060; y:  590; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1106
       (x: 3288; y:  668; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1107
       (x: 3318; y:  194; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1108
       (x: 3562; y:  194; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1109
       (x: 3498; y:  652; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1110
       (x: 3508; y: 1024; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1111
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1112
       (x:  2448; y: 2048; w:   25; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1113
       (x:  2332; y:  1916; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1114
       (x:  2540; y:  1658; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1115
       (x:  2302; y:  1270; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1116
       (x:  2668; y:  1278; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1117
       (x:  2728; y:  1574; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1118
       (x:  2874; y:  1638; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1119
       (x:  2848; y:  1210; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1120
       (x: 3048; y:  1210; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1121
       (x: 3060; y:  1614; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1122
       (x: 3288; y:  1692; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1123
       (x: 3318; y:  1218; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1124
       (x: 3562; y:  1218; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1125
       (x: 3498; y:  1676; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1126
       (x: 3508; y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1127
       (x: NTPX; y:    1024; w:    1; h:    1)
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1128
      );
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1129
      Template1FPoints: array[0..0] of TPoint =
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1130
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1131
       (x: 2047; y:    0)
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1132
      );
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1133
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1134
const Template2Points: array[0..87] of TSDL_Rect =
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1135
      (
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1136
       (x:  354; y: 1024; w:    1; h:    1),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1137
       (x:  232; y:  926; w:  226; h:   60),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1138
       (x:  120; y:  846; w:  298; h:   62),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1139
       (x:  280; y:  704; w:  210; h:  102),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1140
       (x:  208; y:  422; w:  192; h:  248),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1141
       (x:  292; y:  160; w:  206; h:  240),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1142
       (x:  526; y:  172; w:   92; h:  334),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1143
       (x:  462; y:  528; w:  226; h:  126),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1144
       (x:  556; y:  678; w:  268; h:  156),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1145
       (x:  722; y:  164; w:  138; h:  500),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1146
       (x:  890; y:  156; w:   94; h:  352),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1147
       (x:  898; y:  562; w:  170; h:  264),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1148
       (x: 1092; y:  384; w:   84; h:  446),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1149
       (x: 1206; y:  200; w:  158; h:  278),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1150
       (x: 1300; y:  490; w:  104; h:  336),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1151
       (x: 1416; y:  546; w:   90; h:  398),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1152
       (x: 1546; y:  192; w:  134; h:  532),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1153
       (x: 1702; y:  246; w:  156; h:  258),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1154
       (x: 1700; y:  548; w:  132; h:  340),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1155
       (x: 1534; y:  898; w:  252; h:   82),
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1156
       (x: 1604; y: 1024; w:    1; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1157
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1158
       (x:  354; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1159
       (x:  232; y:  1950; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1160
       (x:  120; y:  1870; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1161
       (x:  280; y:  1728; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1162
       (x:  208; y:  1446; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1163
       (x:  292; y:  1184; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1164
       (x:  526; y:  1196; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1165
       (x:  462; y:  1552; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1166
       (x:  556; y:  1702; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1167
       (x:  722; y:  1188; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1168
       (x:  890; y:  1180; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1169
       (x:  898; y:  1586; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1170
       (x: 1092; y:  1408; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1171
       (x: 1206; y:  1224; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1172
       (x: 1300; y:  1514; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1173
       (x: 1416; y:  1570; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1174
       (x: 1546; y:  1216; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1175
       (x: 1702; y:  1270; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1176
       (x: 1700; y:  1572; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1177
       (x: 1534; y:  1922; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1178
       (x: 1604; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1179
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1180
       (x:  2402; y: 1024; w:    1; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1181
       (x:  2280; y:  926; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1182
       (x:  2168; y:  846; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1183
       (x:  2328; y:  704; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1184
       (x:  2256; y:  422; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1185
       (x:  2340; y:  160; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1186
       (x:  2574; y:  172; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1187
       (x:  2510; y:  528; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1188
       (x:  2604; y:  678; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1189
       (x:  2770; y:  164; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1190
       (x:  2938; y:  156; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1191
       (x:  2946; y:  562; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1192
       (x: 3140; y:  384; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1193
       (x: 3254; y:  200; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1194
       (x: 3348; y:  490; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1195
       (x: 3464; y:  546; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1196
       (x: 3594; y:  192; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1197
       (x: 3750; y:  246; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1198
       (x: 3748; y:  548; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1199
       (x: 3582; y:  898; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1200
       (x: 3652; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1201
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1202
       (x:  2402; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1203
       (x:  2280; y:  1950; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1204
       (x:  2168; y:  1870; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1205
       (x:  2328; y:  1728; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1206
       (x:  2256; y:  1446; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1207
       (x:  2340; y:  1184; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1208
       (x:  2574; y:  1196; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1209
       (x:  2510; y:  1552; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1210
       (x:  2604; y:  1702; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1211
       (x:  2770; y:  1188; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1212
       (x:  2938; y:  1180; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1213
       (x:  2946; y:  1586; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1214
       (x: 3140; y:  1408; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1215
       (x: 3254; y:  1224; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1216
       (x: 3348; y:  1514; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1217
       (x: 3464; y:  1570; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1218
       (x: 3594; y:  1216; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1219
       (x: 3750; y:  1270; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1220
       (x: 3748; y:  1572; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1221
       (x: 3582; y:  1922; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1222
       (x: 3652; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1223
       (x: NTPX; y:    1024; w:    1; h:    1)
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1224
      );
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1225
      Template2FPoints: array[0..0] of TPoint =
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1226
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1227
       (x: 2047; y:    0)
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1228
      );
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  1229
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1230
const Template3Points: array[0..67] of TSDL_Rect =
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1231
      (
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1232
       (x:  348; y: 1024; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1233
       (x:  236; y:  852; w:  208; h:   72),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1234
       (x:  498; y:  710; w:  308; h:   60),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1235
       (x:  728; y:  852; w:  434; h:   40),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1236
       (x: 1174; y:  712; w:  332; h:   40),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1237
       (x: 1402; y:  838; w:  226; h:   36),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1238
       (x: 1530; y: 1024; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1239
       (x: NTPX; y:    0; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1240
       (x: 1660; y:  498; w:  111; h:  111),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1241
       (x: 1270; y:  476; w:   34; h:  102),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1242
       (x:  682; y:  414; w:  284; h:  132),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1243
       (x:  230; y:  328; w:  126; h:  168),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1244
       (x:  410; y:  174; w:  114; h:  100),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1245
       (x:  790; y:  172; w:  352; h:  120),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1246
       (x: 1274; y:  128; w:   60; h:  240),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1247
       (x: 1434; y:  222; w:  254; h:  116),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1248
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1249
       (x:  348; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1250
       (x:  236; y:  1876; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1251
       (x:  498; y:  1734; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1252
       (x:  728; y:  1876; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1253
       (x: 1174; y:  1736; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1254
       (x: 1402; y:  1862; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1255
       (x: 1530; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1256
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1257
       (x: 1660; y:  1522; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1258
       (x: 1270; y:  1500; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1259
       (x:  682; y:  1438; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1260
       (x:  230; y:  1352; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1261
       (x:  410; y:  1198; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1262
       (x:  790; y:  1196; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1263
       (x: 1274; y:  1152; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1264
       (x: 1434; y:  1246; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1265
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1266
       (x:  2396; y: 1024; w:    1; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1267
       (x:  2284; y:  852; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1268
       (x:  2546; y:  710; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1269
       (x:  2776; y:  852; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1270
       (x: 3222; y:  712; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1271
       (x: 3450; y:  838; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1272
       (x: 3578; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1273
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1274
       (x: 3708; y:  498; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1275
       (x: 3318; y:  476; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1276
       (x:  2730; y:  414; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1277
       (x:  2278; y:  328; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1278
       (x:  2458; y:  174; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1279
       (x:  2838; y:  172; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1280
       (x: 3322; y:  128; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1281
       (x: 3482; y:  222; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1282
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1283
       (x:  2396; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1284
       (x:  2284; y:  1876; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1285
       (x:  2546; y:  1734; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1286
       (x:  2776; y:  1876; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1287
       (x: 3222; y:  1736; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1288
       (x: 3450; y:  1862; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1289
       (x: 3578; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1290
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1291
       (x: 3708; y:  1522; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1292
       (x: 3318; y:  1500; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1293
       (x:  2730; y:  1438; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1294
       (x:  2278; y:  1352; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1295
       (x:  2458; y:  1198; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1296
       (x:  2838; y:  1196; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1297
       (x: 3322; y:  1152; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1298
       (x: 3482; y:  1246; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1299
       (x: NTPX; y:    1024; w:    1; h:    1)
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1300
      );
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1301
      Template3FPoints: array[0..0] of TPoint =
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1302
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1303
       (x: 2047; y:    0)
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1304
      );
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1305
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1306
const Template4Points: array[0..91] of TSDL_Rect =
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1307
      (
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1308
       (x:  418; y: 1024; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1309
       (x:  248; y:  900; w:  186; h:   62),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1310
       (x:  272; y:  692; w:  254; h:  138),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1311
       (x:  610; y:  768; w:   90; h:  166),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1312
       (x:  820; y:  616; w:  224; h:  258),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1313
       (x: 1242; y:  758; w:   96; h:  146),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1314
       (x: 1550; y:  698; w:  224; h:  134),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1315
       (x: 1530; y:  902; w:  210; h:   54),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1316
       (x: 1532; y: 1024; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1317
       (x: NTPX; y:    0; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1318
       (x:  202; y:  418; w:  110; h:   92),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1319
       (x:  252; y:  312; w:  160; h:   32),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1320
       (x:  150; y:  168; w:  134; h:   78),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1321
       (x:  702; y:  160; w:  132; h:   84),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1322
       (x:  702; y:  308; w:  230; h:   36),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1323
       (x:  720; y:  408; w:  166; h:   96),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1324
       (x: NTPX; y:    0; w:    1; h:    1),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1325
       (x: 1702; y:  434; w:  202; h:   42),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1326
       (x: 1252; y:  388; w:  134; h:   98),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1327
       (x: 1214; y:  152; w:  116; h:  154),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1328
       (x: 1428; y:  252; w:  150; h:   70),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1329
       (x: 1750; y:  152; w:   86; h:  220),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1330
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1331
       (x:  418; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1332
       (x:  248; y:  1924; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1333
       (x:  272; y:  1716; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1334
       (x:  610; y:  1792; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1335
       (x:  820; y:  1640; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1336
       (x: 1242; y:  1782; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1337
       (x: 1550; y:  1722; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1338
       (x: 1530; y:  1926; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1339
       (x: 1532; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1340
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1341
       (x:  202; y:  1442; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1342
       (x:  252; y:  1336; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1343
       (x:  150; y:  1192; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1344
       (x:  702; y:  1184; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1345
       (x:  702; y:  1332; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1346
       (x:  720; y:  1432; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1347
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1348
       (x: 1702; y:  1458; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1349
       (x: 1252; y:  1412; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1350
       (x: 1214; y:  1176; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1351
       (x: 1428; y:  1276; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1352
       (x: 1750; y:  1176; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1353
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1354
       (x:  2466; y: 1024; w:    1; h:    1),  // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1355
       (x:  2296; y:  900; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1356
       (x:  2320; y:  692; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1357
       (x:  2658; y:  768; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1358
       (x:  2868; y:  616; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1359
       (x: 3290; y:  758; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1360
       (x: 3598; y:  698; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1361
       (x: 3578; y:  902; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1362
       (x: 3580; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1363
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1364
       (x:  2250; y:  418; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1365
       (x:  2300; y:  312; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1366
       (x:  2198; y:  168; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1367
       (x:  2750; y:  160; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1368
       (x:  2750; y:  308; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1369
       (x:  2768; y:  408; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1370
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1371
       (x: 3750; y:  434; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1372
       (x: 3300; y:  388; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1373
       (x: 3262; y:  152; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1374
       (x: 3476; y:  252; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1375
       (x: 3798; y:  152; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1376
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1377
       (x:  2466; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1378
       (x:  2296; y:  1924; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1379
       (x:  2320; y:  1716; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1380
       (x:  2658; y:  1792; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1381
       (x:  2868; y:  1640; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1382
       (x: 3290; y:  1782; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1383
       (x: 3598; y:  1722; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1384
       (x: 3578; y:  1926; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1385
       (x: 3580; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1386
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1387
       (x:  2250; y:  1442; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1388
       (x:  2300; y:  1336; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1389
       (x:  2198; y:  1192; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1390
       (x:  2750; y:  1184; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1391
       (x:  2750; y:  1332; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1392
       (x:  2768; y:  1432; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1393
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1394
       (x: 3750; y:  1458; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1395
       (x: 3300; y:  1412; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1396
       (x: 3262; y:  1176; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1397
       (x: 3476; y:  1276; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1398
       (x: 3798; y:  1176; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1399
       (x: NTPX; y:    1024; w:    1; h:    1)
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1400
      );
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1401
      Template4FPoints: array[0..0] of TPoint =
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1402
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1403
       (x: 2047; y:    0)
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1404
      );
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  1405
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1406
const Template5Points: array[0..63] of TSDL_Rect =
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1407
      (
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1408
       (x:  274; y: 1024; w:    1; h:    1),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1409
       (x:  190; y:  918; w:  168; h:   26),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1410
       (x:  382; y:  576; w:  122; h:  314),
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1411
       (x:  568; y:  744; w:   56; h:  180),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1412
       (x:  678; y:  856; w:   64; h:   56),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1413
       (x:  740; y:  650; w:  106; h:  220),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1414
       (x:  644; y:  496; w:  162; h:  140),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1415
       (x:  496; y:  210; w:  886; h:  174),
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1416
       (x:  934; y:  448; w:  296; h:  108),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1417
       (x:  950; y:  752; w:  152; h:  146),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1418
       (x: 1172; y:  774; w:   60; h:  152),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1419
       (x: 1284; y:  722; w:  150; h:  138),
403
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1420
       (x: 1494; y:  364; w:   56; h:  582),
282b00e559bd Better templates, giving more different lands
unc0rr
parents: 393
diff changeset
  1421
       (x: 1620; y:  774; w:   94; h:  232),
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1422
       (x: 1612; y: 1024; w:    1; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1423
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1424
       (x:  274; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1425
       (x:  190; y:  1942; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1426
       (x:  382; y:  1600; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1427
       (x:  568; y:  1768; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1428
       (x:  678; y:  1880; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1429
       (x:  740; y:  1674; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1430
       (x:  644; y:  1520; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1431
       (x:  496; y:  1234; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1432
       (x:  934; y:  1472; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1433
       (x:  950; y:  1776; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1434
       (x: 1172; y:  1798; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1435
       (x: 1284; y:  1746; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1436
       (x: 1494; y:  1388; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1437
       (x: 1620; y:  1798; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1438
       (x: 1612; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1439
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1440
       (x:  2322; y: 1024; w:    1; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1441
       (x:  2238; y:  918; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1442
       (x:  2430; y:  576; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1443
       (x:  2616; y:  744; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1444
       (x:  2726; y:  856; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1445
       (x:  2788; y:  650; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1446
       (x:  2692; y:  496; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1447
       (x:  2544; y:  210; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1448
       (x:  2982; y:  448; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1449
       (x:  2998; y:  752; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1450
       (x: 3220; y:  774; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1451
       (x: 3332; y:  722; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1452
       (x: 3542; y:  364; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1453
       (x: 3668; y:  774; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1454
       (x: 3660; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1455
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1456
       (x:  2322; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1457
       (x:  2238; y:  1942; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1458
       (x:  2430; y:  1600; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1459
       (x:  2616; y:  1768; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1460
       (x:  2726; y:  1880; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1461
       (x:  2788; y:  1674; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1462
       (x:  2692; y:  1520; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1463
       (x:  2544; y:  1234; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1464
       (x:  2982; y:  1472; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1465
       (x:  2998; y:  1776; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1466
       (x: 3220; y:  1798; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1467
       (x: 3332; y:  1746; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1468
       (x: 3542; y:  1388; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1469
       (x: 3668; y:  1798; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1470
       (x: 3660; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1471
       (x: NTPX; y:    1024; w:    1; h:    1)
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1472
       );
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1473
      Template5FPoints: array[0..0] of TPoint =
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1474
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1475
       (x: 2047; y:    0)
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1476
      );
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  1477
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1478
const Template6Points: array[0..55] of TSDL_Rect =
405
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1479
      (
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1480
       (x:  368; y: 1022; w:    2; h:    2),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1481
       (x:  266; y:  840; w:  302; h:  110),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1482
       (x:  294; y:  512; w:  104; h:  290),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1483
       (x:  570; y:  580; w:  364; h:  122),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1484
       (x:  568; y:  440; w:  368; h:  100),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1485
       (x:  232; y:  260; w:  482; h:  130),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1486
       (x:  778; y:  242; w:   62; h:   64),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1487
       (x:  990; y:  154; w:   58; h:  246),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1488
       (x: 1200; y:  276; w:  590; h:   98),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1489
       (x: 1088; y:  442; w:  214; h:  188),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1490
       (x: 1050; y:  686; w:  406; h:   92),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1491
       (x: 1584; y:  502; w:  190; h:  412),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1492
       (x: 1646; y: 1020; w:    2; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1493
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1494
       (x:  368; y: 2046; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1495
       (x:  266; y:  1864; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1496
       (x:  294; y:  1536; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1497
       (x:  570; y:  1604; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1498
       (x:  568; y:  1464; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1499
       (x:  232; y:  1284; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1500
       (x:  778; y:  1266; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1501
       (x:  990; y:  1178; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1502
       (x: 1200; y:  1300; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1503
       (x: 1088; y:  1466; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1504
       (x: 1050; y:  1710; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1505
       (x: 1584; y:  1526; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1506
       (x: 1646; y: 2044; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1507
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1508
       (x:  2416; y: 1022; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1509
       (x:  2314; y:  840; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1510
       (x:  2342; y:  512; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1511
       (x:  2618; y:  580; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1512
       (x:  2616; y:  440; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1513
       (x:  2280; y:  260; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1514
       (x:  2826; y:  242; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1515
       (x:  3038; y:  154; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1516
       (x: 3248; y:  276; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1517
       (x: 3136; y:  442; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1518
       (x: 3098; y:  686; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1519
       (x: 3632; y:  502; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1520
       (x: 3694; y: 1020; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1521
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1522
       (x:  2416; y: 2046; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1523
       (x:  2314; y:  1864; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1524
       (x:  2342; y:  1536; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1525
       (x:  2618; y:  1604; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1526
       (x:  2616; y:  1464; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1527
       (x:  2280; y:  1284; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1528
       (x:  2826; y:  1266; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1529
       (x:  3038; y:  1178; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1530
       (x: 3248; y:  1300; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1531
       (x: 3136; y:  1466; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1532
       (x: 3098; y:  1710; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1533
       (x: 3632; y:  1526; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1534
       (x: 3694; y: 2044; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1535
       (x: NTPX; y:    1024; w:    1; h:    1)
405
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1536
       );
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1537
      Template6FPoints: array[0..0] of TPoint =
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1538
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1539
       (x: 2047; y:    0)
405
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1540
      );
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  1541
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1542
const Template7Points: array[0..23] of TSDL_Rect =
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1543
      (
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1544
       (x:  162; y: 1024; w:  400; h:    1),
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1545
       (x:  226; y:  234; w:  142; h:  360),
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1546
       (x:  936; y:  740; w:  400; h:  200),
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1547
       (x: 1576; y:  176; w:  186; h:  550),
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1548
       (x: 1430; y: 1024; w:  454; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1549
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1550
       (x:  162; y: 2048; w:  400; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1551
       (x:  226; y:  1258; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1552
       (x:  936; y:  1764; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1553
       (x: 1576; y:  1200; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1554
       (x: 1430; y: 2048; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1555
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1556
       (x:  162; y: 1024; w:  400; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1557
       (x:  226; y:  234; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1558
       (x:  936; y:  740; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1559
       (x: 1576; y:  176; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1560
       (x: 1430; y: 1024; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1561
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1562
       (x:  162; y: 2048; w:  400; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1563
       (x:  226; y:  1258; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1564
       (x:  936; y:  1764; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1565
       (x: 1576; y:  1200; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1566
       (x: 1430; y: 2048; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1567
       (x: NTPX; y:    1024; w:    1; h:    1)
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1568
      );
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1569
      Template7FPoints: array[0..0] of TPoint =
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1570
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1571
       (x: 2047; y:    0)
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1572
      );
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  1573
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1574
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1575
const Template8Points: array[0..79] of TSDL_Rect =
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1576
      (
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1577
       (x:  364; y: 1024; w:   20; h:    1),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1578
       (x:  290; y:  860; w:   64; h:   62),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1579
       (x:  486; y:  750; w:   52; h:  146),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1580
       (x:  256; y:  590; w:  116; h:  144),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1581
       (x:  470; y:  468; w:  138; h:  168),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1582
       (x:  242; y:  242; w:  158; h:  162),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1583
       (x:  508; y:  310; w:  198; h:   72),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1584
       (x:  770; y:  228; w:  118; h:  134),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1585
       (x:  636; y:  718; w:  142; h:  132),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1586
       (x:  968; y:  700; w:  172; h:   58),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1587
       (x:  970; y:  804; w:  172; h:   62),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1588
       (x: 1232; y:  704; w:   82; h:  226),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1589
       (x: 1356; y:  594; w:   64; h:  152),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1590
       (x: 1214; y:  334; w:  106; h:  152),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1591
       (x: 1410; y:  260; w:  380; h:   82),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1592
       (x: 1528; y:  422; w:   30; h:  118),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1593
       (x: 1540; y:  588; w:  212; h:   50),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1594
       (x: 1464; y:  746; w:  128; h:  146),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1595
       (x: 1630; y: 1024; w:   20; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1596
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1597
       (x:  364; y: 2048; w:   20; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1598
       (x:  290; y:  1884; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1599
       (x:  486; y:  1774; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1600
       (x:  256; y:  1614; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1601
       (x:  470; y:  1492; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1602
       (x:  242; y:  1266; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1603
       (x:  508; y:  1334; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1604
       (x:  770; y:  1252; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1605
       (x:  636; y:  1742; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1606
       (x:  968; y:  1724; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1607
       (x:  970; y:  1828; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1608
       (x: 1232; y:  1728; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1609
       (x: 1356; y:  1618; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1610
       (x: 1214; y:  1358; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1611
       (x: 1410; y:  1284; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1612
       (x: 1528; y:  1446; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1613
       (x: 1540; y:  1612; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1614
       (x: 1464; y:  1770; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1615
       (x: 1630; y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1616
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1617
       (x:  2412; y: 1024; w:   20; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1618
       (x:  2338; y:  860; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1619
       (x:  2534; y:  750; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1620
       (x:  2304; y:  590; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1621
       (x:  2518; y:  468; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1622
       (x:  2290; y:  242; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1623
       (x:  2556; y:  310; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1624
       (x:  2818; y:  228; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1625
       (x:  2684; y:  718; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1626
       (x:  3016; y:  700; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1627
       (x:  3018; y:  804; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1628
       (x: 3280; y:  704; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1629
       (x: 3404; y:  594; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1630
       (x: 3262; y:  334; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1631
       (x: 3458; y:  260; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1632
       (x: 3576; y:  422; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1633
       (x: 3588; y:  588; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1634
       (x: 3512; y:  746; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1635
       (x: 3678; y: 1024; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1636
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1637
       (x:  2412; y: 2048; w:   20; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1638
       (x:  2338; y:  1884; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1639
       (x:  2534; y:  1774; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1640
       (x:  2304; y:  1614; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1641
       (x:  2518; y:  1492; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1642
       (x:  2290; y:  1266; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1643
       (x:  2556; y:  1334; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1644
       (x:  2818; y:  1252; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1645
       (x:  2684; y:  1742; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1646
       (x:  3016; y:  1724; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1647
       (x:  3018; y:  1828; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1648
       (x: 3280; y:  1728; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1649
       (x: 3404; y:  1618; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1650
       (x: 3262; y:  1358; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1651
       (x: 3458; y:  1284; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1652
       (x: 3576; y:  1446; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1653
       (x: 3588; y:  1612; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1654
       (x: 3512; y:  1770; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1655
       (x: 3678; y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1656
       (x: NTPX; y:    1024; w:    1; h:    1)
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1657
      );
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1658
      Template8FPoints: array[0..0] of TPoint =
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1659
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1660
       (x: 2047; y:    0)
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1661
      );
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1662
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1663
const Template9Points: array[0..127] of TSDL_Rect =
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1664
      (
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1665
       (x:  340; y: 1024; w:    1; h:    1),
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1666
       (x:  276; y:  902; w:   44; h:   54),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1667
       (x:  434; y:  836; w:   58; h:   90),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1668
       (x:  266; y:  734; w:   80; h:   80),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1669
       (x:  246; y:  604; w:   96; h:  108),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1670
       (x:  426; y:  646; w:  110; h:  112),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1671
       (x:  234; y:  292; w:  118; h:  164),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1672
       (x:  428; y:  396; w:  130; h:  110),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1673
       (x:  516; y:  198; w:  344; h:   78),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1674
       (x:  688; y:  426; w:   50; h:   40),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1675
       (x:  626; y:  560; w:   32; h:  148),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1676
       (x:  698; y:  650; w:  160; h:   34),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1677
       (x:  674; y:  788; w:   36; h:  136),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1678
       (x: 1014; y:  848; w:   48; h:   48),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1679
       (x: 1086; y:  728; w:   64; h:   88),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1680
       (x:  958; y:  660; w:   70; h:   74),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1681
       (x: 1116; y:  596; w:   68; h:   70),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1682
       (x: 1118; y:  484; w:   68; h:   82),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1683
       (x:  958; y:  324; w:   44; h:  140),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1684
       (x: 1272; y:  306; w:   52; h:   66),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1685
       (x: 1254; y:  502; w:   58; h:   66),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1686
       (x: 1234; y:  760; w:   76; h:  112),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1687
       (x: 1380; y:  762; w:  124; h:   64),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1688
       (x: 1472; y:  472; w:   54; h:  134),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1689
       (x: 1410; y:  196; w:  246; h:   62),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1690
       (x: 1706; y:  154; w:   38; h:  238),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1691
       (x: 1812; y:  348; w:   28; h:   28),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1692
       (x: 1692; y:  524; w:  144; h:   94),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1693
       (x: 1632; y:  678; w:  248; h:   20),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1694
       (x: 1632; y:  802; w:  238; h:   16),
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1695
       (x: 1680; y: 1024; w:    1; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1696
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1697
       (x:  340; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1698
       (x:  276; y:  1926; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1699
       (x:  434; y:  1860; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1700
       (x:  266; y:  1758; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1701
       (x:  246; y:  1628; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1702
       (x:  426; y:  1670; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1703
       (x:  234; y:  1316; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1704
       (x:  428; y:  1420; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1705
       (x:  516; y:  1222; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1706
       (x:  688; y:  1450; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1707
       (x:  626; y:  1584; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1708
       (x:  698; y:  1674; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1709
       (x:  674; y:  1812; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1710
       (x: 1014; y:  1872; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1711
       (x: 1086; y:  1752; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1712
       (x:  958; y:  1684; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1713
       (x: 1116; y:  1620; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1714
       (x: 1118; y:  1508; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1715
       (x:  958; y:  1348; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1716
       (x: 1272; y:  1330; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1717
       (x: 1254; y:  1526; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1718
       (x: 1234; y:  1784; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1719
       (x: 1380; y:  1786; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1720
       (x: 1472; y:  1496; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1721
       (x: 1410; y:  1220; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1722
       (x: 1706; y:  1178; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1723
       (x: 1812; y:  1372; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1724
       (x: 1692; y:  1548; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1725
       (x: 1632; y:  1702; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1726
       (x: 1632; y:  1826; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1727
       (x: 1680; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1728
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1729
       (x:  2388; y: 1024; w:    1; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1730
       (x:  2324; y:  902; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1731
       (x:  2482; y:  836; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1732
       (x:  2314; y:  734; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1733
       (x:  2294; y:  604; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1734
       (x:  2474; y:  646; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1735
       (x:  2282; y:  292; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1736
       (x:  2476; y:  396; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1737
       (x:  2564; y:  198; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1738
       (x:  2736; y:  426; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1739
       (x:  2674; y:  560; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1740
       (x:  2746; y:  650; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1741
       (x:  2722; y:  788; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1742
       (x: 3062; y:  848; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1743
       (x: 3134; y:  728; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1744
       (x:  3006; y:  660; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1745
       (x: 3164; y:  596; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1746
       (x: 3166; y:  484; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1747
       (x:  3006; y:  324; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1748
       (x: 3320; y:  306; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1749
       (x: 3302; y:  502; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1750
       (x: 3282; y:  760; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1751
       (x: 3428; y:  762; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1752
       (x: 3520; y:  472; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1753
       (x: 3458; y:  196; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1754
       (x: 3754; y:  154; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1755
       (x: 3860; y:  348; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1756
       (x: 3740; y:  524; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1757
       (x: 3680; y:  678; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1758
       (x: 3680; y:  802; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1759
       (x: 3728; y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1760
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1761
       (x:  2388; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1762
       (x:  2324; y:  1926; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1763
       (x:  2482; y:  1860; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1764
       (x:  2314; y:  1758; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1765
       (x:  2294; y:  1628; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1766
       (x:  2474; y:  1670; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1767
       (x:  2282; y:  1316; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1768
       (x:  2476; y:  1420; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1769
       (x:  2564; y:  1222; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1770
       (x:  2736; y:  1450; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1771
       (x:  2674; y:  1584; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1772
       (x:  2746; y:  1674; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1773
       (x:  2722; y:  1812; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1774
       (x: 3062; y:  1872; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1775
       (x: 3134; y:  1752; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1776
       (x:  3006; y:  1684; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1777
       (x: 3164; y:  1620; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1778
       (x: 3166; y:  1508; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1779
       (x:  3006; y:  1348; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1780
       (x: 3320; y:  1330; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1781
       (x: 3302; y:  1526; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1782
       (x: 3282; y:  1784; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1783
       (x: 3428; y:  1786; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1784
       (x: 3520; y:  1496; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1785
       (x: 3458; y:  1220; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1786
       (x: 3754; y:  1178; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1787
       (x: 3860; y:  1372; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1788
       (x: 3740; y:  1548; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1789
       (x: 3680; y:  1702; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1790
       (x: 3680; y:  1826; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1791
       (x: 3728; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1792
       (x: NTPX; y:    1024; w:    1; h:    1)
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1793
      );
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1794
      Template9FPoints: array[0..0] of TPoint =
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1795
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1796
       (x: 2047; y:    0)
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1797
      );
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1798
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1799
const Template10Points: array[0..55] of TSDL_Rect =
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1800
      (
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1801
       (x:  188; y: 1024; w:  190; h:    1),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1802
       (x:  240; y:  682; w:  140; h:  150),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1803
       (x:  314; y:  468; w:  352; h:   94),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1804
       (x:  726; y:  246; w:  106; h:  282),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1805
       (x:  902; y:  390; w:  368; h:  142),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1806
       (x:  958; y:  588; w:  116; h:  244),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1807
       (x:  876; y: 1024; w:   14; h:    1),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1808
       (x: NTPX; y:    0; w:    1; h:    1),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1809
       (x: 1064; y: 1024; w:   22; h:    1),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1810
       (x: 1288; y:  795; w:  120; h:  120),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1811
       (x: 1458; y:  274; w:  354; h:  448),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1812
       (x: 1688; y:  795; w:  120; h:  120),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1813
       (x: 1782; y: 1024; w:    2; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1814
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1815
       (x:  188; y: 2048; w:  190; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1816
       (x:  240; y:  1706; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1817
       (x:  314; y:  1492; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1818
       (x:  726; y:  1270; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1819
       (x:  902; y:  1414; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1820
       (x:  958; y:  1612; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1821
       (x:  876; y: 2048; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1822
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1823
       (x: 1064; y: 2048; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1824
       (x: 1288; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1825
       (x: 1458; y:  1298; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1826
       (x: 1688; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1827
       (x: 1782; y: 2048; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1828
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1829
       (x:  2236; y: 1024; w:  190; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1830
       (x:  2288; y:  682; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1831
       (x:  2362; y:  468; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1832
       (x:  2774; y:  246; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1833
       (x:  2950; y:  390; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1834
       (x:  3006; y:  588; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1835
       (x:  2924; y: 1024; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1836
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1837
       (x: 3112; y: 1024; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1838
       (x: 3336; y:  795; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1839
       (x: 3506; y:  274; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1840
       (x: 3736; y:  795; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1841
       (x: 3830; y: 1024; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1842
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1843
       (x:  2236; y: 2048; w:  190; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1844
       (x:  2288; y:  1706; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1845
       (x:  2362; y:  1492; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1846
       (x:  2774; y:  1270; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1847
       (x:  2950; y:  1414; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1848
       (x:  3006; y:  1612; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1849
       (x:  2924; y: 2048; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1850
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1851
       (x: 3112; y: 2048; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1852
       (x: 3336; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1853
       (x: 3506; y:  1298; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1854
       (x: 3736; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1855
       (x: 3830; y: 2048; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1856
       (x: NTPX; y:    1024; w:    1; h:    1)
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1857
      );
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1858
      Template10FPoints: array[0..0] of TPoint =
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1859
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1860
       (x: 2047; y:    0)
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  1861
      );
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  1862
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1863
const Template11Points: array[0..39] of TSDL_Rect =
527
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1864
      (
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1865
       (x:  274; y: 1024; w:  166; h:    1),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1866
       (x:  330; y:  862; w:   96; h:   92),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1867
       (x:  492; y:  690; w:  152; h:  250),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1868
       (x:  746; y:  646; w:   36; h:  270),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1869
       (x:  938; y:  626; w:   54; h:  224),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1870
       (x: 1134; y:  646; w:   44; h:  216),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1871
       (x: 1292; y:  630; w:   46; h:  300),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1872
       (x: 1448; y:  664; w:  158; h:  272),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1873
       (x: 1584; y: 1024; w:  136; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1874
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1875
       (x:  274; y: 2048; w:  166; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1876
       (x:  330; y:  1886; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1877
       (x:  492; y:  1714; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1878
       (x:  746; y:  1670; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1879
       (x:  938; y:  1650; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1880
       (x: 1134; y:  1670; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1881
       (x: 1292; y:  1654; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1882
       (x: 1448; y:  1688; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1883
       (x: 1584; y: 2048; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1884
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1885
       (x:  2322; y: 1024; w:  166; h:    1), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1886
       (x:  2378; y:  862; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1887
       (x:  2540; y:  690; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1888
       (x:  2794; y:  646; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1889
       (x:  2986; y:  626; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1890
       (x: 3182; y:  646; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1891
       (x: 3340; y:  630; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1892
       (x: 3496; y:  664; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1893
       (x: 3632; y: 1024; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1894
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1895
       (x:  2322; y: 1024; w:  166; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1896
       (x:  2378; y:  862; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1897
       (x:  2540; y:  690; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1898
       (x:  2794; y:  646; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1899
       (x:  2986; y:  626; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1900
       (x: 3182; y:  646; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1901
       (x: 3340; y:  630; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1902
       (x: 3496; y:  664; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1903
       (x: 3632; y: 1024; w:  136; h:    1),
527
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1904
       (x: NTPX; y:    0; w:    1; h:    1)
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1905
      );
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1906
      Template11FPoints: array[0..0] of TPoint =
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1907
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1908
       (x: 2047; y:    0)
527
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1909
      );
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  1910
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1911
const Template12Points: array[0..55] of TSDL_Rect =
710
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1912
      (
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1913
       (x:  360; y: 1024; w:    2; h:    2),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1914
       (x:  242; y:  630; w:   46; h:  286),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1915
       (x:  454; y:  672; w:  194; h:   56),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1916
       (x:  254; y:  334; w:  534; h:  200),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1917
       (x:  870; y:  276; w:   58; h:  468),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1918
       (x: 1076; y:  272; w:  198; h:  112),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1919
       (x: 1000; y: 1024; w:   64; h:    2),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1920
       (x: NTPX; y:    0; w:    1; h:    1),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1921
       (x: 1244; y: 1024; w:   64; h:    2),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1922
       (x: 1356; y:  494; w:  184; h:   94),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1923
       (x: 1600; y:  414; w:   76; h:  358),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1924
       (x: 1748; y:  584; w:  108; h:  304),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1925
       (x: 1688; y: 1024; w:  176; h:    1),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1926
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1927
       (x:  360; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1928
       (x:  242; y:  1654; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1929
       (x:  454; y:  1696; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1930
       (x:  254; y:  1358; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1931
       (x:  870; y:  1300; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1932
       (x: 1076; y:  1296; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1933
       (x: 1000; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1934
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1935
       (x: 1244; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1936
       (x: 1356; y:  1518; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1937
       (x: 1600; y:  1438; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1938
       (x: 1748; y:  1608; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1939
       (x: 1688; y: 2048; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1940
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1941
       (x:  2408; y: 1024; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1942
       (x:  2290; y:  630; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1943
       (x:  2502; y:  672; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1944
       (x:  2302; y:  334; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1945
       (x:  2918; y:  276; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1946
       (x: 3124; y:  272; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1947
       (x: 3048; y: 1024; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1948
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1949
       (x: 3292; y: 1024; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1950
       (x: 3404; y:  494; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1951
       (x: 3648; y:  414; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1952
       (x: 3796; y:  584; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1953
       (x: 3736; y: 1024; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1954
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1955
       (x:  2408; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1956
       (x:  2290; y:  1654; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1957
       (x:  2502; y:  1696; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1958
       (x:  2302; y:  1358; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1959
       (x:  2918; y:  1300; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1960
       (x: 3124; y:  1296; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1961
       (x: 3048; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1962
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1963
       (x: 3292; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1964
       (x: 3404; y:  1518; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1965
       (x: 3648; y:  1438; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1966
       (x: 3796; y:  1608; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1967
       (x: 3736; y: 2048; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1968
       (x: NTPX; y:    1024; w:    1; h:    1)
710
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1969
      );
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1970
      Template12FPoints: array[0..0] of TPoint =
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1971
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1972
       (x: 2047; y:    0)
710
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1973
      );
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  1974
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1975
const Template13Points: array[0..63] of TSDL_Rect =
711
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1976
      (
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1977
       (x:  446; y: 1024; w:  140; h:    2),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1978
       (x:  280; y:  872; w:  196; h:   32),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1979
       (x:  254; y:  680; w:  262; h:  134),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1980
       (x:  654; y:  672; w:  220; h:  136),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1981
       (x:  608; y:  490; w:  268; h:  110),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1982
       (x:  300; y:  362; w:  104; h:  200),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1983
       (x:  446; y:  224; w:  306; h:   58),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1984
       (x:  916; y:  188; w:   84; h:  206),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1985
       (x: 1148; y:  174; w:  104; h:  220),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1986
       (x: 1426; y:  176; w:  120; h:  202),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1987
       (x: 1556; y:  418; w:  192; h:   68),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1988
       (x: 1226; y:  548; w:  246; h:   88),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1989
       (x: 1256; y:  706; w:  194; h:  150),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1990
       (x: 1568; y:  706; w:  198; h:  152),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  1991
       (x: 1444; y: 1024; w:    2; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1992
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1993
       (x:  446; y: 2048; w:  140; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1994
       (x:  280; y:  1896; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1995
       (x:  254; y:  1704; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1996
       (x:  654; y:  1696; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1997
       (x:  608; y:  1514; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1998
       (x:  300; y:  1386; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  1999
       (x:  446; y:  1248; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2000
       (x:  916; y:  1212; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2001
       (x: 1148; y:  1198; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2002
       (x: 1426; y:  1200; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2003
       (x: 1556; y:  1442; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2004
       (x: 1226; y:  1572; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2005
       (x: 1256; y:  1730; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2006
       (x: 1568; y:  1730; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2007
       (x: 1444; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2008
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2009
       (x:  2494; y: 1024; w:  140; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2010
       (x:  2328; y:  872; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2011
       (x:  2302; y:  680; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2012
       (x:  2702; y:  672; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2013
       (x:  2656; y:  490; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2014
       (x:  2348; y:  362; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2015
       (x:  2494; y:  224; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2016
       (x:  2964; y:  188; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2017
       (x: 3196; y:  174; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2018
       (x: 3474; y:  176; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2019
       (x: 3604; y:  418; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2020
       (x: 3274; y:  548; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2021
       (x: 3304; y:  706; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2022
       (x: 3616; y:  706; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2023
       (x: 3492; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2024
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2025
       (x:  2494; y: 2048; w:  140; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2026
       (x:  2328; y:  1896; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2027
       (x:  2302; y:  1704; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2028
       (x:  2702; y:  1696; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2029
       (x:  2656; y:  1514; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2030
       (x:  2348; y:  1386; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2031
       (x:  2494; y:  1248; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2032
       (x:  2964; y:  1212; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2033
       (x: 3196; y:  1198; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2034
       (x: 3474; y:  1200; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2035
       (x: 3604; y:  1442; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2036
       (x: 3274; y:  1572; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2037
       (x: 3304; y:  1730; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2038
       (x: 3616; y:  1730; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2039
       (x: 3492; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2040
       (x: NTPX; y:    1024; w:    1; h:    1)
711
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2041
      );
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2042
      Template13FPoints: array[0..0] of TPoint =
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2043
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2044
       (x: 2047; y:    0)
711
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2045
      );
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2046
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2047
const Template14Points: array[0..55] of TSDL_Rect =
712
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2048
      (
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2049
       (x:  286; y: 1024; w:    2; h:    2),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2050
       (x:  244; y:  886; w:   84; h:   54),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2051
       (x:  212; y:  686; w:  150; h:  166),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2052
       (x:  678; y:  840; w:  186; h:   98),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2053
       (x:  744; y:  604; w:  124; h:   58),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2054
       (x:  620; y:  182; w:  112; h:  194),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2055
       (x:  988; y:  260; w:   92; h:  132),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2056
       (x: 1310; y:  174; w:  154; h:  196),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2057
       (x: 1160; y:  574; w:  118; h:   64),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2058
       (x: 1052; y:  822; w:  328; h:   92),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2059
       (x: 1596; y:  630; w:  242; h:  222),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2060
       (x: 1598; y:  916; w:  254; h:   50),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2061
       (x: 1608; y: 1024; w:    2; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2062
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2063
       (x:  286; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2064
       (x:  244; y:  1910; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2065
       (x:  212; y:  1710; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2066
       (x:  678; y:  1864; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2067
       (x:  744; y:  1628; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2068
       (x:  620; y:  1206; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2069
       (x:  988; y:  1284; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2070
       (x: 1310; y:  1198; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2071
       (x: 1160; y:  1598; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2072
       (x: 1052; y:  1846; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2073
       (x: 1596; y:  1654; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2074
       (x: 1598; y:  1940; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2075
       (x: 1608; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2076
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2077
       (x:  2334; y: 1024; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2078
       (x:  2292; y:  886; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2079
       (x:  2260; y:  686; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2080
       (x:  2726; y:  840; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2081
       (x:  2792; y:  604; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2082
       (x:  2668; y:  182; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2083
       (x:  3036; y:  260; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2084
       (x: 3358; y:  174; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2085
       (x: 3208; y:  574; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2086
       (x: 3100; y:  822; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2087
       (x: 3644; y:  630; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2088
       (x: 3646; y:  916; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2089
       (x: 3656; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2090
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2091
       (x:  2334; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2092
       (x:  2292; y:  1910; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2093
       (x:  2260; y:  1710; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2094
       (x:  2726; y:  1864; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2095
       (x:  2792; y:  1628; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2096
       (x:  2668; y:  1206; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2097
       (x:  3036; y:  1284; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2098
       (x: 3358; y:  1198; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2099
       (x: 3208; y:  1598; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2100
       (x: 3100; y:  1846; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2101
       (x: 3644; y:  1654; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2102
       (x: 3646; y:  1940; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2103
       (x: 3656; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2104
       (x: NTPX; y:    1024; w:    1; h:    1)
712
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2105
      );
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2106
      Template14FPoints: array[0..0] of TPoint =
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2107
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2108
       (x: 2047; y:    0)
712
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2109
      );
711
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  2110
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2111
const Template15Points: array[0..95] of TSDL_Rect =
713
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2112
      (
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2113
       (x:  302; y: 1024; w:    2; h:    2),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2114
       (x:  240; y:  890; w:   44; h:   94),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2115
       (x:  350; y:  862; w:   44; h:   94),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2116
       (x:  460; y:  906; w:   78; h:   70),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2117
       (x:  466; y: 1024; w:    2; h:    2),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2118
       (x: NTPX; y:    0; w:    1; h:    1),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2119
       (x:  804; y: 1024; w:    2; h:    2),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2120
       (x:  720; y:  782; w:  108; h:  174),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2121
       (x:  484; y:  624; w:  314; h:   98),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2122
       (x:  310; y:  482; w:   76; h:  230),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2123
       (x:  434; y:  286; w:  220; h:  154),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2124
       (x:  840; y:  274; w:   56; h:  266),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2125
       (x: 1024; y:  244; w:   78; h:  304),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2126
       (x: 1248; y:  246; w:  116; h:  162),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2127
       (x: 1580; y:  326; w:  190; h:  228),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2128
       (x: 1360; y:  604; w:  140; h:   84),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2129
       (x: 1196; y:  740; w:  242; h:  118),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2130
       (x: 1216; y: 1024; w:    2; h:    2),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2131
       (x: NTPX; y:    0; w:    1; h:    1),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2132
       (x: 1494; y: 1024; w:    2; h:    2),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2133
       (x: 1450; y:  928; w:   88; h:   34),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2134
       (x: 1598; y:  838; w:   96; h:  112),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2135
       (x: 1656; y: 1024; w:    2; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2136
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2137
       (x:  302; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2138
       (x:  240; y:  1914; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2139
       (x:  350; y:  1886; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2140
       (x:  460; y:  1930; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2141
       (x:  466; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2142
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2143
       (x:  804; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2144
       (x:  720; y:  1806; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2145
       (x:  484; y:  1648; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2146
       (x:  310; y:  1506; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2147
       (x:  434; y:  1310; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2148
       (x:  840; y:  1298; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2149
       (x: 1024; y:  1268; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2150
       (x: 1248; y:  1270; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2151
       (x: 1580; y:  1350; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2152
       (x: 1360; y:  1628; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2153
       (x: 1196; y:  1764; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2154
       (x: 1216; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2155
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2156
       (x: 1494; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2157
       (x: 1450; y:  1952; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2158
       (x: 1598; y:  1862; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2159
       (x: 1656; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2160
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2161
       (x:  2350; y: 1024; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2162
       (x:  2288; y:  890; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2163
       (x:  2398; y:  862; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2164
       (x:  2508; y:  906; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2165
       (x:  2514; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2166
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2167
       (x:  2852; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2168
       (x:  2768; y:  782; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2169
       (x:  2532; y:  624; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2170
       (x:  2358; y:  482; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2171
       (x:  2482; y:  286; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2172
       (x:  2888; y:  274; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2173
       (x: 3072; y:  244; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2174
       (x: 3296; y:  246; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2175
       (x: 3628; y:  326; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2176
       (x: 3408; y:  604; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2177
       (x: 3244; y:  740; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2178
       (x: 3264; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2179
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2180
       (x: 3542; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2181
       (x: 3498; y:  928; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2182
       (x: 3646; y:  838; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2183
       (x: 3704; y: 1024; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2184
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2185
       (x:  2350; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2186
       (x:  2288; y:  1914; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2187
       (x:  2398; y:  1886; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2188
       (x:  2508; y:  1930; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2189
       (x:  2514; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2190
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2191
       (x:  2852; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2192
       (x:  2768; y:  1806; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2193
       (x:  2532; y:  1648; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2194
       (x:  2358; y:  1506; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2195
       (x:  2482; y:  1310; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2196
       (x:  2888; y:  1298; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2197
       (x: 3072; y:  1268; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2198
       (x: 3296; y:  1270; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2199
       (x: 3628; y:  1350; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2200
       (x: 3408; y:  1628; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2201
       (x: 3244; y:  1764; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2202
       (x: 3264; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2203
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2204
       (x: 3542; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2205
       (x: 3498; y:  1952; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2206
       (x: 3646; y:  1862; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2207
       (x: 3704; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2208
       (x: NTPX; y:    1024; w:    1; h:    1)
713
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2209
      );
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2210
      Template15FPoints: array[0..0] of TPoint =
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2211
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2212
       (x: 2047; y:    0)
713
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2213
      );
712
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  2214
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2215
const Template16Points: array[0..115] of TSDL_Rect =
714
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2216
      (
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2217
       (x:  300; y: 1024; w:    2; h:    2),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2218
       (x:  394; y:  902; w:   58; h:   62),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2219
       (x:  380; y:  770; w:   94; h:   90),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2220
       (x:  186; y:  626; w:   80; h:  220),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2221
       (x:  376; y:  600; w:   82; h:  118),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2222
       (x:  182; y:  328; w:  134; h:  226),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2223
       (x:  368; y:  328; w:   52; h:   52),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2224
       (x:  472; y:  174; w:   56; h:  212),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2225
       (x:  588; y:  322; w:   60; h:   62),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2226
       (x:  718; y:  324; w:  108; h:  218),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2227
       (x:  612; y:  516; w:   36; h:  168),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2228
       (x:  728; y:  656; w:  140; h:  134),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2229
       (x:  588; y:  850; w:   74; h:   82),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2230
       (x:  750; y: 1024; w:  102; h:    2),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2231
       (x: NTPX; y:    0; w:    1; h:    1),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2232
       (x: 1304; y: 1024; w:   72; h:    2),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2233
       (x: 1226; y:  908; w:  266; h:   34),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2234
       (x: 1224; y:  748; w:  252; h:   80),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2235
       (x: 1212; y:  576; w:  256; h:   94),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2236
       (x: 1140; y:  434; w:  174; h:   86),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2237
       (x: 1396; y:  318; w:  156; h:   96),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2238
       (x: 1086; y:  214; w:  206; h:   66),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2239
       (x: 1446; y:  156; w:  152; h:   40),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2240
       (x: 1708; y:  272; w:   60; h:  162),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2241
       (x: 1542; y:  488; w:  146; h:   80),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2242
       (x: 1686; y:  634; w:  178; h:  122),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2243
       (x: 1572; y:  820; w:   34; h:  124),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2244
       (x: 1698; y: 1024; w:   52; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2245
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2246
       (x:  300; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2247
       (x:  394; y:  1926; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2248
       (x:  380; y:  1794; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2249
       (x:  186; y:  1650; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2250
       (x:  376; y:  1624; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2251
       (x:  182; y:  1352; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2252
       (x:  368; y:  1352; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2253
       (x:  472; y:  1198; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2254
       (x:  588; y:  1346; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2255
       (x:  718; y:  1348; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2256
       (x:  612; y:  1540; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2257
       (x:  728; y:  1680; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2258
       (x:  588; y:  1874; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2259
       (x:  750; y: 2048; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2260
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2261
       (x: 1304; y: 2048; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2262
       (x: 1226; y:  1932; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2263
       (x: 1224; y:  1772; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2264
       (x: 1212; y:  1600; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2265
       (x: 1140; y:  1458; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2266
       (x: 1396; y:  1342; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2267
       (x: 1086; y:  1238; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2268
       (x: 1446; y:  1180; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2269
       (x: 1708; y:  1296; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2270
       (x: 1542; y:  1512; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2271
       (x: 1686; y:  1658; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2272
       (x: 1572; y:  1844; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2273
       (x: 1698; y: 2048; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2274
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2275
       (x:  2348; y: 1024; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2276
       (x:  2442; y:  902; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2277
       (x:  2428; y:  770; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2278
       (x:  2234; y:  626; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2279
       (x:  2424; y:  600; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2280
       (x:  2230; y:  328; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2281
       (x:  2416; y:  328; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2282
       (x:  2520; y:  174; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2283
       (x:  2636; y:  322; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2284
       (x:  2766; y:  324; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2285
       (x:  2660; y:  516; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2286
       (x:  2776; y:  656; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2287
       (x:  2636; y:  850; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2288
       (x:  2798; y: 1024; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2289
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2290
       (x: 3352; y: 1024; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2291
       (x: 3274; y:  908; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2292
       (x: 3272; y:  748; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2293
       (x: 3260; y:  576; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2294
       (x: 3188; y:  434; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2295
       (x: 3444; y:  318; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2296
       (x: 3134; y:  214; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2297
       (x: 3494; y:  156; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2298
       (x: 3756; y:  272; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2299
       (x: 3590; y:  488; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2300
       (x: 3734; y:  634; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2301
       (x: 3620; y:  820; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2302
       (x: 3746; y: 1024; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2303
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2304
       (x:  2348; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2305
       (x:  2442; y:  1926; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2306
       (x:  2428; y:  1794; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2307
       (x:  2234; y:  1650; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2308
       (x:  2424; y:  1624; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2309
       (x:  2230; y:  1352; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2310
       (x:  2416; y:  1352; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2311
       (x:  2520; y:  1198; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2312
       (x:  2636; y:  1346; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2313
       (x:  2766; y:  1348; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2314
       (x:  2660; y:  1540; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2315
       (x:  2776; y:  1680; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2316
       (x:  2636; y:  1874; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2317
       (x:  2798; y: 2048; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2318
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2319
       (x: 3352; y: 2048; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2320
       (x: 3274; y:  1932; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2321
       (x: 3272; y:  1772; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2322
       (x: 3260; y:  1600; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2323
       (x: 3188; y:  1458; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2324
       (x: 3444; y:  1342; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2325
       (x: 3134; y:  1238; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2326
       (x: 3494; y:  1180; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2327
       (x: 3756; y:  1296; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2328
       (x: 3590; y:  1512; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2329
       (x: 3734; y:  1658; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2330
       (x: 3620; y:  1844; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2331
       (x: 3746; y: 2048; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2332
       (x: NTPX; y:    1024; w:    1; h:    1)
714
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2333
      );
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2334
      Template16FPoints: array[0..0] of TPoint =
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2335
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2336
       (x: 2047; y:    0)
714
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2337
      );
713
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  2338
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2339
const Template17Points: array[0..55] of TSDL_Rect =
715
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2340
      (
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2341
       (x:  230; y: 1024; w:    2; h:    2),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2342
       (x:  166; y:  856; w:  128; h:  118),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2343
       (x:  352; y:  856; w:   98; h:  114),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2344
       (x:  348; y:  674; w:  140; h:  138),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2345
       (x:  556; y:  672; w:  136; h:  142),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2346
       (x:  746; y:  670; w:  114; h:  252),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2347
       (x:  924; y:  378; w:  120; h:  390),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2348
       (x: 1122; y:  462; w:  114; h:  210),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2349
       (x: 1324; y:  306; w:  130; h:  252),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2350
       (x: 1536; y:  206; w:  278; h:  234),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2351
       (x: 1524; y:  644; w:  272; h:   52),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2352
       (x: 1572; y:  852; w:  180; h:   56),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2353
       (x: 1598; y: 1024; w:   42; h:    2),
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2354
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2355
       (x:  230; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2356
       (x:  166; y:  1880; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2357
       (x:  352; y:  1880; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2358
       (x:  348; y:  1698; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2359
       (x:  556; y:  1696; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2360
       (x:  746; y:  1694; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2361
       (x:  924; y:  1402; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2362
       (x: 1122; y:  1486; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2363
       (x: 1324; y:  1330; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2364
       (x: 1536; y:  1230; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2365
       (x: 1524; y:  1668; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2366
       (x: 1572; y:  1876; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2367
       (x: 1598; y: 2048; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2368
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2369
       (x:  2278; y: 1024; w:    2; h:    2), // X + 2048
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2370
       (x:  2214; y:  856; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2371
       (x:  2400; y:  856; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2372
       (x:  2396; y:  674; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2373
       (x:  2604; y:  672; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2374
       (x:  2794; y:  670; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2375
       (x:  2972; y:  378; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2376
       (x: 3170; y:  462; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2377
       (x: 3372; y:  306; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2378
       (x: 3584; y:  206; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2379
       (x: 3572; y:  644; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2380
       (x: 3620; y:  852; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2381
       (x: 3646; y: 1024; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2382
       (x: NTPX; y:    0; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2383
       (x:  2278; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2384
       (x:  2214; y:  1880; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2385
       (x:  2400; y:  1880; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2386
       (x:  2396; y:  1698; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2387
       (x:  2604; y:  1696; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2388
       (x:  2794; y:  1694; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2389
       (x:  2972; y:  1402; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2390
       (x: 3170; y:  1486; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2391
       (x: 3372; y:  1330; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2392
       (x: 3584; y:  1230; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2393
       (x: 3572; y:  1668; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2394
       (x: 3620; y:  1876; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2395
       (x: 3646; y: 2048; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2396
       (x: NTPX; y:    1024; w:    1; h:    1)
715
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2397
      );
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2398
      Template17FPoints: array[0..0] of TPoint =
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2399
      (
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2400
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2401
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2402
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2403
/////////////////// END MIRRORED FOUR TIMES //////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2404
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2405
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2406
/////////////////// MIRRORED TWO TIMES ///////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2407
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2408
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2409
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2410
const Template18Points: array[0..37] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2411
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2412
       (x: 410;y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2413
       (x: 160;y: 1784; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2414
       (x: 342;y: 1730; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2415
       (x: 238;y: 1410; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2416
       (x: 246;y: 1200; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2417
       (x: 552;y: 1152; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2418
       (x: 750;y: 1492; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2419
       (x: 650;y: 2048; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2420
       (x: 1250;y: 2124; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2421
       (x: 1490;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2422
       (x: 1452;y: 1928; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2423
       (x: 1248;y: 1599; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2424
       (x: 1426;y: 1616; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2425
       (x: 1310;y: 1216; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2426
       (x: 1588;y: 1218; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2427
       (x: 1618;y: 1496; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2428
       (x: 1710;y: 1874; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2429
       (x: 1734;y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2430
       (x: NTPX;y: 1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2431
       (x:  2458; y: 2048; w:    1; h:    1), // X + 2048, Y+1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2432
       (x:  2208; y:  1784; w:  130; h:  170),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2433
       (x:  2390; y:  1730; w:  316; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2434
       (x:  2286; y:  1410; w:  270; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2435
       (x:  2294; y:  1200; w:  242; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2436
       (x:  2600; y:  1152; w:  610; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2437
       (x:  2798; y:  1492; w:  352; h:  324),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2438
       (x:  2698; y: 2048; w:  500; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2439
       (x: 3298; y: 2124; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2440
       (x: 3538; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2441
       (x: 3500; y:  1928; w:   74; h:   12),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2442
       (x: 3296; y:  1599; w:   68; h:  425),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2443
       (x: 3474; y:  1616; w:  140; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2444
       (x: 3358; y:  1216; w:  150; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2445
       (x: 3636; y:  1218; w:  148; h:  242),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2446
       (x: 3666; y:  1496; w:  276; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2447
       (x: 3758; y:  1874; w:  130; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2448
       (x: 3782; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2449
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2450
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2451
      Template18FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2452
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2453
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2454
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2455
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2456
const Template19Points: array[0..31] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2457
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2458
       (x:  400; y: 2048; w:   25; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2459
       (x:  284; y:  1916; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2460
       (x:  492; y:  1658; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2461
       (x:  254; y:  1270; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2462
       (x:  620; y:  1278; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2463
       (x:  680; y:  1574; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2464
       (x:  826; y:  1638; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2465
       (x:  800; y:  1210; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2466
       (x: 1000; y:  1210; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2467
       (x: 1012; y:  1614; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2468
       (x: 1240; y:  1692; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2469
       (x: 1270; y:  1218; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2470
       (x: 1514; y:  1218; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2471
       (x: 1450; y:  1676; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2472
       (x: 1460; y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2473
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2474
       (x:  2448; y: 2048; w:   25; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2475
       (x:  2332; y:  1916; w:  254; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2476
       (x:  2540; y:  1658; w:  100; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2477
       (x:  2302; y:  1270; w:  276; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2478
       (x:  2668; y:  1278; w:  125; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2479
       (x:  2728; y:  1574; w:   96; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2480
       (x:  2874; y:  1638; w:  110; h:  350),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2481
       (x:  2848; y:  1210; w:  150; h:  380),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2482
       (x: 3048; y:  1210; w:  170; h:  375),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2483
       (x: 3060; y:  1614; w:  188; h:  298),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2484
       (x: 3288; y:  1692; w:  136; h:  172),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2485
       (x: 3318; y:  1218; w:  120; h:  392),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2486
       (x: 3562; y:  1218; w:  364; h:  362),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2487
       (x: 3498; y:  1676; w:  315; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2488
       (x: 3508; y: 2048; w:   25; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2489
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2490
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2491
      Template19FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2492
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2493
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2494
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2495
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2496
const Template20Points: array[0..43] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2497
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2498
       (x:  354; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2499
       (x:  232; y:  1950; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2500
       (x:  120; y:  1870; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2501
       (x:  280; y:  1728; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2502
       (x:  208; y:  1446; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2503
       (x:  292; y:  1184; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2504
       (x:  526; y:  1196; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2505
       (x:  462; y:  1552; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2506
       (x:  556; y:  1702; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2507
       (x:  722; y:  1188; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2508
       (x:  890; y:  1180; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2509
       (x:  898; y:  1586; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2510
       (x: 1092; y:  1408; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2511
       (x: 1206; y:  1224; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2512
       (x: 1300; y:  1514; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2513
       (x: 1416; y:  1570; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2514
       (x: 1546; y:  1216; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2515
       (x: 1702; y:  1270; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2516
       (x: 1700; y:  1572; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2517
       (x: 1534; y:  1922; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2518
       (x: 1604; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2519
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2520
       (x:  2402; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2521
       (x:  2280; y:  1950; w:  226; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2522
       (x:  2168; y:  1870; w:  298; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2523
       (x:  2328; y:  1728; w:  210; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2524
       (x:  2256; y:  1446; w:  192; h:  248),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2525
       (x:  2340; y:  1184; w:  206; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2526
       (x:  2574; y:  1196; w:   92; h:  334),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2527
       (x:  2510; y:  1552; w:  226; h:  126),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2528
       (x:  2604; y:  1702; w:  268; h:  156),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2529
       (x:  2770; y:  1188; w:  138; h:  500),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2530
       (x:  2938; y:  1180; w:   94; h:  352),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2531
       (x:  2946; y:  1586; w:  170; h:  264),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2532
       (x: 3140; y:  1408; w:   84; h:  446),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2533
       (x: 3254; y:  1224; w:  158; h:  278),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2534
       (x: 3348; y:  1514; w:  104; h:  336),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2535
       (x: 3464; y:  1570; w:   90; h:  398),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2536
       (x: 3594; y:  1216; w:  134; h:  532),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2537
       (x: 3750; y:  1270; w:  156; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2538
       (x: 3748; y:  1572; w:  132; h:  340),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2539
       (x: 3582; y:  1922; w:  252; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2540
       (x: 3652; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2541
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2542
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2543
      Template20FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2544
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2545
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2546
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2547
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2548
const Template21Points: array[0..33] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2549
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2550
       (x:  348; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2551
       (x:  236; y:  1876; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2552
       (x:  498; y:  1734; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2553
       (x:  728; y:  1876; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2554
       (x: 1174; y:  1736; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2555
       (x: 1402; y:  1862; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2556
       (x: 1530; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2557
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2558
       (x: 1660; y:  1522; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2559
       (x: 1270; y:  1500; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2560
       (x:  682; y:  1438; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2561
       (x:  230; y:  1352; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2562
       (x:  410; y:  1198; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2563
       (x:  790; y:  1196; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2564
       (x: 1274; y:  1152; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2565
       (x: 1434; y:  1246; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2566
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2567
       (x:  2396; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2568
       (x:  2284; y:  1876; w:  208; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2569
       (x:  2546; y:  1734; w:  308; h:   60),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2570
       (x:  2776; y:  1876; w:  434; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2571
       (x: 3222; y:  1736; w:  332; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2572
       (x: 3450; y:  1862; w:  226; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2573
       (x: 3578; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2574
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2575
       (x: 3708; y:  1522; w:  111; h:  111),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2576
       (x: 3318; y:  1500; w:   34; h:  102),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2577
       (x:  2730; y:  1438; w:  284; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2578
       (x:  2278; y:  1352; w:  126; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2579
       (x:  2458; y:  1198; w:  114; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2580
       (x:  2838; y:  1196; w:  352; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2581
       (x: 3322; y:  1152; w:   60; h:  240),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2582
       (x: 3482; y:  1246; w:  254; h:  116),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2583
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2584
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2585
      Template21FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2586
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2587
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2588
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2589
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2590
const Template22Points: array[0..45] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2591
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2592
       (x:  418; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2593
       (x:  248; y:  1924; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2594
       (x:  272; y:  1716; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2595
       (x:  610; y:  1792; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2596
       (x:  820; y:  1640; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2597
       (x: 1242; y:  1782; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2598
       (x: 1550; y:  1722; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2599
       (x: 1530; y:  1926; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2600
       (x: 1532; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2601
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2602
       (x:  202; y:  1442; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2603
       (x:  252; y:  1336; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2604
       (x:  150; y:  1192; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2605
       (x:  702; y:  1184; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2606
       (x:  702; y:  1332; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2607
       (x:  720; y:  1432; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2608
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2609
       (x: 1702; y:  1458; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2610
       (x: 1252; y:  1412; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2611
       (x: 1214; y:  1176; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2612
       (x: 1428; y:  1276; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2613
       (x: 1750; y:  1176; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2614
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2615
       (x:  2466; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2616
       (x:  2296; y:  1924; w:  186; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2617
       (x:  2320; y:  1716; w:  254; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2618
       (x:  2658; y:  1792; w:   90; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2619
       (x:  2868; y:  1640; w:  224; h:  258),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2620
       (x: 3290; y:  1782; w:   96; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2621
       (x: 3598; y:  1722; w:  224; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2622
       (x: 3578; y:  1926; w:  210; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2623
       (x: 3580; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2624
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2625
       (x:  2250; y:  1442; w:  110; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2626
       (x:  2300; y:  1336; w:  160; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2627
       (x:  2198; y:  1192; w:  134; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2628
       (x:  2750; y:  1184; w:  132; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2629
       (x:  2750; y:  1332; w:  230; h:   36),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2630
       (x:  2768; y:  1432; w:  166; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2631
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2632
       (x: 3750; y:  1458; w:  202; h:   42),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2633
       (x: 3300; y:  1412; w:  134; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2634
       (x: 3262; y:  1176; w:  116; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2635
       (x: 3476; y:  1276; w:  150; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2636
       (x: 3798; y:  1176; w:   86; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2637
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2638
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2639
      Template22FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2640
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2641
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2642
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2643
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2644
const Template23Points: array[0..31] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2645
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2646
       (x:  274; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2647
       (x:  190; y:  1942; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2648
       (x:  382; y:  1600; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2649
       (x:  568; y:  1768; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2650
       (x:  678; y:  1880; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2651
       (x:  740; y:  1674; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2652
       (x:  644; y:  1520; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2653
       (x:  496; y:  1234; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2654
       (x:  934; y:  1472; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2655
       (x:  950; y:  1776; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2656
       (x: 1172; y:  1798; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2657
       (x: 1284; y:  1746; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2658
       (x: 1494; y:  1388; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2659
       (x: 1620; y:  1798; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2660
       (x: 1612; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2661
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2662
       (x:  2322; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2663
       (x:  2238; y:  1942; w:  168; h:   26),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2664
       (x:  2430; y:  1600; w:  122; h:  314),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2665
       (x:  2616; y:  1768; w:   56; h:  180),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2666
       (x:  2726; y:  1880; w:   64; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2667
       (x:  2788; y:  1674; w:  106; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2668
       (x:  2692; y:  1520; w:  162; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2669
       (x:  2544; y:  1234; w:  886; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2670
       (x:  2982; y:  1472; w:  296; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2671
       (x:  2998; y:  1776; w:  152; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2672
       (x: 3220; y:  1798; w:   60; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2673
       (x: 3332; y:  1746; w:  150; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2674
       (x: 3542; y:  1388; w:   56; h:  582),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2675
       (x: 3668; y:  1798; w:   94; h:  232),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2676
       (x: 3660; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2677
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2678
       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2679
      Template23FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2680
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2681
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2682
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2683
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2684
const Template24Points: array[0..27] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2685
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2686
       (x:  368; y: 2046; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2687
       (x:  266; y:  1864; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2688
       (x:  294; y:  1536; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2689
       (x:  570; y:  1604; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2690
       (x:  568; y:  1464; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2691
       (x:  232; y:  1284; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2692
       (x:  778; y:  1266; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2693
       (x:  990; y:  1178; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2694
       (x: 1200; y:  1300; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2695
       (x: 1088; y:  1466; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2696
       (x: 1050; y:  1710; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2697
       (x: 1584; y:  1526; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2698
       (x: 1646; y: 2044; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2699
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2700
       (x:  2416; y: 2046; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2701
       (x:  2314; y:  1864; w:  302; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2702
       (x:  2342; y:  1536; w:  104; h:  290),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2703
       (x:  2618; y:  1604; w:  364; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2704
       (x:  2616; y:  1464; w:  368; h:  100),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2705
       (x:  2280; y:  1284; w:  482; h:  130),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2706
       (x:  2826; y:  1266; w:   62; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2707
       (x:  3038; y:  1178; w:   58; h:  246),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2708
       (x: 3248; y:  1300; w:  590; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2709
       (x: 3136; y:  1466; w:  214; h:  188),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2710
       (x: 3098; y:  1710; w:  406; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2711
       (x: 3632; y:  1526; w:  190; h:  412),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2712
       (x: 3694; y: 2044; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2713
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2714
       );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2715
      Template24FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2716
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2717
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2718
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2719
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2720
const Template25Points: array[0..11] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2721
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2722
       (x:  162; y: 2048; w:  400; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2723
       (x:  226; y:  1258; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2724
       (x:  936; y:  1764; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2725
       (x: 1576; y:  1200; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2726
       (x: 1430; y: 2048; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2727
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2728
       (x:  162; y: 2048; w:  400; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2729
       (x:  226; y:  1258; w:  142; h:  360),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2730
       (x:  936; y:  1764; w:  400; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2731
       (x: 1576; y:  1200; w:  186; h:  550),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2732
       (x: 1430; y: 2048; w:  454; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2733
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2734
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2735
      Template25FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2736
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2737
       (x: 2047; y:    0)
715
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2738
      );
714
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  2739
715
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  2740
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2741
const Template26Points: array[0..39] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2742
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2743
       (x:  364; y: 2048; w:   20; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2744
       (x:  290; y:  1884; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2745
       (x:  486; y:  1774; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2746
       (x:  256; y:  1614; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2747
       (x:  470; y:  1492; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2748
       (x:  242; y:  1266; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2749
       (x:  508; y:  1334; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2750
       (x:  770; y:  1252; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2751
       (x:  636; y:  1742; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2752
       (x:  968; y:  1724; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2753
       (x:  970; y:  1828; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2754
       (x: 1232; y:  1728; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2755
       (x: 1356; y:  1618; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2756
       (x: 1214; y:  1358; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2757
       (x: 1410; y:  1284; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2758
       (x: 1528; y:  1446; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2759
       (x: 1540; y:  1612; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2760
       (x: 1464; y:  1770; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2761
       (x: 1630; y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2762
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2763
       (x:  2412; y: 2048; w:   20; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2764
       (x:  2338; y:  1884; w:   64; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2765
       (x:  2534; y:  1774; w:   52; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2766
       (x:  2304; y:  1614; w:  116; h:  144),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2767
       (x:  2518; y:  1492; w:  138; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2768
       (x:  2290; y:  1266; w:  158; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2769
       (x:  2556; y:  1334; w:  198; h:   72),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2770
       (x:  2818; y:  1252; w:  118; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2771
       (x:  2684; y:  1742; w:  142; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2772
       (x:  3016; y:  1724; w:  172; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2773
       (x:  3018; y:  1828; w:  172; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2774
       (x: 3280; y:  1728; w:   82; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2775
       (x: 3404; y:  1618; w:   64; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2776
       (x: 3262; y:  1358; w:  106; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2777
       (x: 3458; y:  1284; w:  380; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2778
       (x: 3576; y:  1446; w:   30; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2779
       (x: 3588; y:  1612; w:  212; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2780
       (x: 3512; y:  1770; w:  128; h:  146),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2781
       (x: 3678; y: 2048; w:   20; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2782
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2783
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2784
      Template26FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2785
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2786
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2787
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2788
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2789
const Template27Points: array[0..63] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2790
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2791
       (x:  340; y: 2048; w:    1; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2792
       (x:  276; y:  1926; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2793
       (x:  434; y:  1860; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2794
       (x:  266; y:  1758; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2795
       (x:  246; y:  1628; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2796
       (x:  426; y:  1670; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2797
       (x:  234; y:  1316; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2798
       (x:  428; y:  1420; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2799
       (x:  516; y:  1222; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2800
       (x:  688; y:  1450; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2801
       (x:  626; y:  1584; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2802
       (x:  698; y:  1674; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2803
       (x:  674; y:  1812; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2804
       (x: 1014; y:  1872; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2805
       (x: 1086; y:  1752; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2806
       (x:  958; y:  1684; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2807
       (x: 1116; y:  1620; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2808
       (x: 1118; y:  1508; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2809
       (x:  958; y:  1348; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2810
       (x: 1272; y:  1330; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2811
       (x: 1254; y:  1526; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2812
       (x: 1234; y:  1784; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2813
       (x: 1380; y:  1786; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2814
       (x: 1472; y:  1496; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2815
       (x: 1410; y:  1220; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2816
       (x: 1706; y:  1178; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2817
       (x: 1812; y:  1372; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2818
       (x: 1692; y:  1548; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2819
       (x: 1632; y:  1702; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2820
       (x: 1632; y:  1826; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2821
       (x: 1680; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2822
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2823
       (x:  2388; y: 2048; w:    1; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2824
       (x:  2324; y:  1926; w:   44; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2825
       (x:  2482; y:  1860; w:   58; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2826
       (x:  2314; y:  1758; w:   80; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2827
       (x:  2294; y:  1628; w:   96; h:  108),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2828
       (x:  2474; y:  1670; w:  110; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2829
       (x:  2282; y:  1316; w:  118; h:  164),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2830
       (x:  2476; y:  1420; w:  130; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2831
       (x:  2564; y:  1222; w:  344; h:   78),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2832
       (x:  2736; y:  1450; w:   50; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2833
       (x:  2674; y:  1584; w:   32; h:  148),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2834
       (x:  2746; y:  1674; w:  160; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2835
       (x:  2722; y:  1812; w:   36; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2836
       (x: 3062; y:  1872; w:   48; h:   48),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2837
       (x: 3134; y:  1752; w:   64; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2838
       (x:  3006; y:  1684; w:   70; h:   74),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2839
       (x: 3164; y:  1620; w:   68; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2840
       (x: 3166; y:  1508; w:   68; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2841
       (x:  3006; y:  1348; w:   44; h:  140),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2842
       (x: 3320; y:  1330; w:   52; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2843
       (x: 3302; y:  1526; w:   58; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2844
       (x: 3282; y:  1784; w:   76; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2845
       (x: 3428; y:  1786; w:  124; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2846
       (x: 3520; y:  1496; w:   54; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2847
       (x: 3458; y:  1220; w:  246; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2848
       (x: 3754; y:  1178; w:   38; h:  238),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2849
       (x: 3860; y:  1372; w:   28; h:   28),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2850
       (x: 3740; y:  1548; w:  144; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2851
       (x: 3680; y:  1702; w:  248; h:   20),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2852
       (x: 3680; y:  1826; w:  238; h:   16),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2853
       (x: 3728; y: 2048; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2854
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2855
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2856
      Template27FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2857
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2858
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2859
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2860
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2861
const Template28Points: array[0..27] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2862
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2863
       (x:  188; y: 2048; w:  190; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2864
       (x:  240; y:  1706; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2865
       (x:  314; y:  1492; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2866
       (x:  726; y:  1270; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2867
       (x:  902; y:  1414; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2868
       (x:  958; y:  1612; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2869
       (x:  876; y: 2048; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2870
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2871
       (x: 1064; y: 2048; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2872
       (x: 1288; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2873
       (x: 1458; y:  1298; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2874
       (x: 1688; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2875
       (x: 1782; y: 2048; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2876
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2877
       (x:  2236; y: 2048; w:  190; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2878
       (x:  2288; y:  1706; w:  140; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2879
       (x:  2362; y:  1492; w:  352; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2880
       (x:  2774; y:  1270; w:  106; h:  282),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2881
       (x:  2950; y:  1414; w:  368; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2882
       (x:  3006; y:  1612; w:  116; h:  244),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2883
       (x:  2924; y: 2048; w:   14; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2884
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2885
       (x: 3112; y: 2048; w:   22; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2886
       (x: 3336; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2887
       (x: 3506; y:  1298; w:  354; h:  448),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2888
       (x: 3736; y:  1819; w:  120; h:  120),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2889
       (x: 3830; y: 2048; w:    2; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2890
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2891
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2892
      Template28FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2893
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2894
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2895
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2896
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2897
const Template29Points: array[0..19] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2898
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2899
       (x:  274; y: 2048; w:  166; h:    1), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2900
       (x:  330; y:  1886; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2901
       (x:  492; y:  1714; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2902
       (x:  746; y:  1670; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2903
       (x:  938; y:  1650; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2904
       (x: 1134; y:  1670; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2905
       (x: 1292; y:  1654; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2906
       (x: 1448; y:  1688; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2907
       (x: 1584; y: 2048; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2908
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2909
       (x:  2322; y: 2048; w:  166; h:    1), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2910
       (x:  2378; y:  1886; w:   96; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2911
       (x:  2540; y:  1714; w:  152; h:  250),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2912
       (x:  2794; y:  1670; w:   36; h:  270),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2913
       (x:  2986; y:  1650; w:   54; h:  224),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2914
       (x: 3182; y:  1670; w:   44; h:  216),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2915
       (x: 3340; y:  1654; w:   46; h:  300),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2916
       (x: 3496; y:  1688; w:  158; h:  272),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2917
       (x: 3632; y: 2048; w:  136; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2918
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2919
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2920
      Template29FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2921
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2922
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2923
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2924
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2925
const Template30Points: array[0..27] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2926
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2927
       (x:  360; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2928
       (x:  242; y:  1654; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2929
       (x:  454; y:  1696; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2930
       (x:  254; y:  1358; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2931
       (x:  870; y:  1300; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2932
       (x: 1076; y:  1296; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2933
       (x: 1000; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2934
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2935
       (x: 1244; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2936
       (x: 1356; y:  1518; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2937
       (x: 1600; y:  1438; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2938
       (x: 1748; y:  1608; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2939
       (x: 1688; y: 2048; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2940
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2941
       (x:  2408; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2942
       (x:  2290; y:  1654; w:   46; h:  286),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2943
       (x:  2502; y:  1696; w:  194; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2944
       (x:  2302; y:  1358; w:  534; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2945
       (x:  2918; y:  1300; w:   58; h:  468),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2946
       (x: 3124; y:  1296; w:  198; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2947
       (x: 3048; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2948
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2949
       (x: 3292; y: 2048; w:   64; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2950
       (x: 3404; y:  1518; w:  184; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2951
       (x: 3648; y:  1438; w:   76; h:  358),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2952
       (x: 3796; y:  1608; w:  108; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2953
       (x: 3736; y: 2048; w:  176; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2954
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2955
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2956
      Template30FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2957
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2958
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2959
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2960
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2961
const Template31Points: array[0..31] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2962
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2963
       (x:  446; y: 2048; w:  140; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2964
       (x:  280; y:  1896; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2965
       (x:  254; y:  1704; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2966
       (x:  654; y:  1696; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2967
       (x:  608; y:  1514; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2968
       (x:  300; y:  1386; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2969
       (x:  446; y:  1248; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2970
       (x:  916; y:  1212; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2971
       (x: 1148; y:  1198; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2972
       (x: 1426; y:  1200; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2973
       (x: 1556; y:  1442; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2974
       (x: 1226; y:  1572; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2975
       (x: 1256; y:  1730; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2976
       (x: 1568; y:  1730; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2977
       (x: 1444; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2978
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2979
       (x:  2494; y: 2048; w:  140; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2980
       (x:  2328; y:  1896; w:  196; h:   32),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2981
       (x:  2302; y:  1704; w:  262; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2982
       (x:  2702; y:  1696; w:  220; h:  136),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2983
       (x:  2656; y:  1514; w:  268; h:  110),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2984
       (x:  2348; y:  1386; w:  104; h:  200),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2985
       (x:  2494; y:  1248; w:  306; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2986
       (x:  2964; y:  1212; w:   84; h:  206),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2987
       (x: 3196; y:  1198; w:  104; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2988
       (x: 3474; y:  1200; w:  120; h:  202),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2989
       (x: 3604; y:  1442; w:  192; h:   68),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2990
       (x: 3274; y:  1572; w:  246; h:   88),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2991
       (x: 3304; y:  1730; w:  194; h:  150),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2992
       (x: 3616; y:  1730; w:  198; h:  152),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2993
       (x: 3492; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2994
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2995
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2996
      Template31FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2997
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2998
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  2999
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3000
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3001
const Template32Points: array[0..27] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3002
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3003
       (x:  286; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3004
       (x:  244; y:  1910; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3005
       (x:  212; y:  1710; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3006
       (x:  678; y:  1864; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3007
       (x:  744; y:  1628; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3008
       (x:  620; y:  1206; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3009
       (x:  988; y:  1284; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3010
       (x: 1310; y:  1198; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3011
       (x: 1160; y:  1598; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3012
       (x: 1052; y:  1846; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3013
       (x: 1596; y:  1654; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3014
       (x: 1598; y:  1940; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3015
       (x: 1608; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3016
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3017
       (x:  2334; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3018
       (x:  2292; y:  1910; w:   84; h:   54),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3019
       (x:  2260; y:  1710; w:  150; h:  166),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3020
       (x:  2726; y:  1864; w:  186; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3021
       (x:  2792; y:  1628; w:  124; h:   58),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3022
       (x:  2668; y:  1206; w:  112; h:  194),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3023
       (x:  3036; y:  1284; w:   92; h:  132),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3024
       (x: 3358; y:  1198; w:  154; h:  196),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3025
       (x: 3208; y:  1598; w:  118; h:   64),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3026
       (x: 3100; y:  1846; w:  328; h:   92),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3027
       (x: 3644; y:  1654; w:  242; h:  222),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3028
       (x: 3646; y:  1940; w:  254; h:   50),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3029
       (x: 3656; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3030
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3031
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3032
      Template32FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3033
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3034
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3035
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3036
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3037
const Template33Points: array[0..47] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3038
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3039
       (x:  302; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3040
       (x:  240; y:  1914; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3041
       (x:  350; y:  1886; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3042
       (x:  460; y:  1930; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3043
       (x:  466; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3044
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3045
       (x:  804; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3046
       (x:  720; y:  1806; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3047
       (x:  484; y:  1648; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3048
       (x:  310; y:  1506; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3049
       (x:  434; y:  1310; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3050
       (x:  840; y:  1298; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3051
       (x: 1024; y:  1268; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3052
       (x: 1248; y:  1270; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3053
       (x: 1580; y:  1350; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3054
       (x: 1360; y:  1628; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3055
       (x: 1196; y:  1764; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3056
       (x: 1216; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3057
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3058
       (x: 1494; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3059
       (x: 1450; y:  1952; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3060
       (x: 1598; y:  1862; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3061
       (x: 1656; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3062
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3063
       (x:  2350; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3064
       (x:  2288; y:  1914; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3065
       (x:  2398; y:  1886; w:   44; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3066
       (x:  2508; y:  1930; w:   78; h:   70),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3067
       (x:  2514; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3068
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3069
       (x:  2852; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3070
       (x:  2768; y:  1806; w:  108; h:  174),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3071
       (x:  2532; y:  1648; w:  314; h:   98),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3072
       (x:  2358; y:  1506; w:   76; h:  230),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3073
       (x:  2482; y:  1310; w:  220; h:  154),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3074
       (x:  2888; y:  1298; w:   56; h:  266),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3075
       (x: 3072; y:  1268; w:   78; h:  304),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3076
       (x: 3296; y:  1270; w:  116; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3077
       (x: 3628; y:  1350; w:  190; h:  228),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3078
       (x: 3408; y:  1628; w:  140; h:   84),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3079
       (x: 3244; y:  1764; w:  242; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3080
       (x: 3264; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3081
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3082
       (x: 3542; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3083
       (x: 3498; y:  1952; w:   88; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3084
       (x: 3646; y:  1862; w:   96; h:  112),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3085
       (x: 3704; y: 2048; w:    2; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3086
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3087
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3088
      Template33FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3089
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3090
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3091
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3092
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3093
const Template34Points: array[0..57] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3094
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3095
       (x:  300; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3096
       (x:  394; y:  1926; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3097
       (x:  380; y:  1794; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3098
       (x:  186; y:  1650; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3099
       (x:  376; y:  1624; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3100
       (x:  182; y:  1352; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3101
       (x:  368; y:  1352; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3102
       (x:  472; y:  1198; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3103
       (x:  588; y:  1346; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3104
       (x:  718; y:  1348; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3105
       (x:  612; y:  1540; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3106
       (x:  728; y:  1680; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3107
       (x:  588; y:  1874; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3108
       (x:  750; y: 2048; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3109
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3110
       (x: 1304; y: 2048; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3111
       (x: 1226; y:  1932; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3112
       (x: 1224; y:  1772; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3113
       (x: 1212; y:  1600; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3114
       (x: 1140; y:  1458; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3115
       (x: 1396; y:  1342; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3116
       (x: 1086; y:  1238; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3117
       (x: 1446; y:  1180; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3118
       (x: 1708; y:  1296; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3119
       (x: 1542; y:  1512; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3120
       (x: 1686; y:  1658; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3121
       (x: 1572; y:  1844; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3122
       (x: 1698; y: 2048; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3123
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3124
       (x:  2348; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3125
       (x:  2442; y:  1926; w:   58; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3126
       (x:  2428; y:  1794; w:   94; h:   90),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3127
       (x:  2234; y:  1650; w:   80; h:  220),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3128
       (x:  2424; y:  1624; w:   82; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3129
       (x:  2230; y:  1352; w:  134; h:  226),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3130
       (x:  2416; y:  1352; w:   52; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3131
       (x:  2520; y:  1198; w:   56; h:  212),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3132
       (x:  2636; y:  1346; w:   60; h:   62),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3133
       (x:  2766; y:  1348; w:  108; h:  218),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3134
       (x:  2660; y:  1540; w:   36; h:  168),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3135
       (x:  2776; y:  1680; w:  140; h:  134),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3136
       (x:  2636; y:  1874; w:   74; h:   82),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3137
       (x:  2798; y: 2048; w:  102; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3138
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3139
       (x: 3352; y: 2048; w:   72; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3140
       (x: 3274; y:  1932; w:  266; h:   34),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3141
       (x: 3272; y:  1772; w:  252; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3142
       (x: 3260; y:  1600; w:  256; h:   94),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3143
       (x: 3188; y:  1458; w:  174; h:   86),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3144
       (x: 3444; y:  1342; w:  156; h:   96),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3145
       (x: 3134; y:  1238; w:  206; h:   66),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3146
       (x: 3494; y:  1180; w:  152; h:   40),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3147
       (x: 3756; y:  1296; w:   60; h:  162),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3148
       (x: 3590; y:  1512; w:  146; h:   80),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3149
       (x: 3734; y:  1658; w:  178; h:  122),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3150
       (x: 3620; y:  1844; w:   34; h:  124),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3151
       (x: 3746; y: 2048; w:   52; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3152
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3153
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3154
      Template34FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3155
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3156
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3157
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3158
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3159
const Template35Points: array[0..27] of TSDL_Rect =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3160
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3161
       (x:  230; y: 2048; w:    2; h:    2), // Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3162
       (x:  166; y:  1880; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3163
       (x:  352; y:  1880; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3164
       (x:  348; y:  1698; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3165
       (x:  556; y:  1696; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3166
       (x:  746; y:  1694; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3167
       (x:  924; y:  1402; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3168
       (x: 1122; y:  1486; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3169
       (x: 1324; y:  1330; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3170
       (x: 1536; y:  1230; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3171
       (x: 1524; y:  1668; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3172
       (x: 1572; y:  1876; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3173
       (x: 1598; y: 2048; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3174
       (x: NTPX; y:    1024; w:    1; h:    1),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3175
       (x:  2278; y: 2048; w:    2; h:    2), // X + 2048, Y + 1024
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3176
       (x:  2214; y:  1880; w:  128; h:  118),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3177
       (x:  2400; y:  1880; w:   98; h:  114),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3178
       (x:  2396; y:  1698; w:  140; h:  138),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3179
       (x:  2604; y:  1696; w:  136; h:  142),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3180
       (x:  2794; y:  1694; w:  114; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3181
       (x:  2972; y:  1402; w:  120; h:  390),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3182
       (x: 3170; y:  1486; w:  114; h:  210),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3183
       (x: 3372; y:  1330; w:  130; h:  252),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3184
       (x: 3584; y:  1230; w:  278; h:  234),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3185
       (x: 3572; y:  1668; w:  272; h:   52),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3186
       (x: 3620; y:  1876; w:  180; h:   56),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3187
       (x: 3646; y: 2048; w:   42; h:    2),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3188
       (x: NTPX; y:    1024; w:    1; h:    1)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3189
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3190
      Template35FPoints: array[0..0] of TPoint =
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3191
      (
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3192
       (x: 2047; y:    0)
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3193
      );
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3194
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3195
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3196
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3197
/////////////////// END MIRRORED TWO TIMES ///////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3198
//////////////////////////////////////////////////////////////////////////////
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3199
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3200
const EdgeTemplates: array[0..35] of TEdgeTemplate =
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3201
      (
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3202
       (BasePoints: @Template0Points;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3203
        BasePointsCount: Succ(High(Template0Points));
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3204
        FillPoints: @Template0FPoints;
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3205
        FillPointsCount: Succ(High(Template0FPoints));
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3206
        BezierizeCount: 3;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3207
        RandPassesCount: 8;
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3208
        canMirror: true; canFlip: false;
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3209
       ),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3210
       (BasePoints: @Template1Points;
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3211
        BasePointsCount: Succ(High(Template1Points));
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3212
        FillPoints: @Template1FPoints;
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3213
        FillPointsCount: Succ(High(Template1FPoints));
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3214
        BezierizeCount: 3;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3215
        RandPassesCount: 7;
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3216
        canMirror: true; canFlip: false;
360
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3217
       ),
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3218
       (BasePoints: @Template2Points;
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3219
        BasePointsCount: Succ(High(Template2Points));
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3220
        FillPoints: @Template2FPoints;
ab6a94334d6d - Two more templates
unc0rr
parents: 359
diff changeset
  3221
        FillPointsCount: Succ(High(Template2FPoints));
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3222
        BezierizeCount: 2;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3223
        RandPassesCount: 6;
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3224
        canMirror: true; canFlip: false;
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3225
       ),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3226
       (BasePoints: @Template3Points;
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3227
        BasePointsCount: Succ(High(Template3Points));
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3228
        FillPoints: @Template3FPoints;
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3229
        FillPointsCount: Succ(High(Template3FPoints));
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3230
        BezierizeCount: 3;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3231
        RandPassesCount: 4;
365
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3232
        canMirror: false; canFlip: false;
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3233
       ),
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3234
       (BasePoints: @Template4Points;
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3235
        BasePointsCount: Succ(High(Template4Points));
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3236
        FillPoints: @Template4FPoints;
a26cec847dd7 - New land generator feature: islands in the sky
unc0rr
parents: 364
diff changeset
  3237
        FillPointsCount: Succ(High(Template4FPoints));
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3238
        BezierizeCount: 3;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3239
        RandPassesCount: 4;
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3240
        canMirror: true; canFlip: false;
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3241
       ),
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3242
       (BasePoints: @Template5Points;
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3243
        BasePointsCount: Succ(High(Template5Points));
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3244
        FillPoints: @Template5FPoints;
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3245
        FillPointsCount: Succ(High(Template5FPoints));
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3246
        BezierizeCount: 2;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3247
        RandPassesCount: 8;
386
21eeb5ac0486 - Better gears placing
unc0rr
parents: 365
diff changeset
  3248
        canMirror: true; canFlip: false;
405
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3249
       ),
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3250
       (BasePoints: @Template6Points;
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3251
        BasePointsCount: Succ(High(Template6Points));
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3252
        FillPoints: @Template6FPoints;
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3253
        FillPointsCount: Succ(High(Template6FPoints));
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3254
        BezierizeCount: 2;
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3255
        RandPassesCount: 5;
429
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3256
        canMirror: true; canFlip: false;
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3257
       ),
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3258
       (BasePoints: @Template7Points;
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3259
        BasePointsCount: Succ(High(Template7Points));
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3260
        FillPoints: @Template7FPoints;
7f69c7ac2e97 One more land template + some templates tuning
unc0rr
parents: 405
diff changeset
  3261
        FillPointsCount: Succ(High(Template7FPoints));
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3262
        BezierizeCount: 4;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3263
        RandPassesCount: 4;
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3264
        canMirror: true; canFlip: false;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3265
       ),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3266
       (BasePoints: @Template8Points;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3267
        BasePointsCount: Succ(High(Template8Points));
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3268
        FillPoints: @Template8FPoints;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3269
        FillPointsCount: Succ(High(Template8FPoints));
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3270
        BezierizeCount: 2;
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3271
        RandPassesCount: 7;
431
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3272
        canMirror: true; canFlip: false;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3273
       ),
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3274
       (BasePoints: @Template9Points;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3275
        BasePointsCount: Succ(High(Template9Points));
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3276
        FillPoints: @Template9FPoints;
79ac59673df3 - Two more land templates
unc0rr
parents: 429
diff changeset
  3277
        FillPointsCount: Succ(High(Template9FPoints));
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3278
        BezierizeCount: 1;
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3279
        RandPassesCount: 5;
405
339d7735d829 One more land template
unc0rr
parents: 403
diff changeset
  3280
        canMirror: true; canFlip: false;
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3281
       ),
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3282
       (BasePoints: @Template10Points;
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3283
        BasePointsCount: Succ(High(Template10Points));
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3284
        FillPoints: @Template10FPoints;
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3285
        FillPointsCount: Succ(High(Template10FPoints));
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3286
        BezierizeCount: 2;
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3287
        RandPassesCount: 6;
524
c3b3d9ff7bb2 One more land template
unc0rr
parents: 431
diff changeset
  3288
        canMirror: true; canFlip: false;
527
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3289
       ),
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3290
       (BasePoints: @Template11Points;
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3291
        BasePointsCount: Succ(High(Template11Points));
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3292
        FillPoints: @Template11FPoints;
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3293
        FillPointsCount: Succ(High(Template11FPoints));
561
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3294
        BezierizeCount: 1;
19d2d422ff84 Improve land generator
unc0rr
parents: 534
diff changeset
  3295
        RandPassesCount: 8;
527
e23490ce1f06 - One more land template
unc0rr
parents: 524
diff changeset
  3296
        canMirror: true; canFlip: false;
710
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3297
       ),
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3298
       (BasePoints: @Template12Points;
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3299
        BasePointsCount: Succ(High(Template12Points));
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3300
        FillPoints: @Template12FPoints;
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3301
        FillPointsCount: Succ(High(Template12FPoints));
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3302
        BezierizeCount: 3;
760e34b8b4e4 One more land template (pretty good IMO)
unc0rr
parents: 561
diff changeset
  3303
        RandPassesCount: 8;
711
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3304
        canMirror: true; canFlip: false;
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3305
       ),
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3306
       (BasePoints: @Template13Points;
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3307
        BasePointsCount: Succ(High(Template13Points));
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3308
        FillPoints: @Template13FPoints;
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3309
        FillPointsCount: Succ(High(Template13FPoints));
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3310
        BezierizeCount: 3;
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3311
        RandPassesCount: 5;
8ff62133ac48 One more crazy land template
unc0rr
parents: 710
diff changeset
  3312
        canMirror: true; canFlip: false;
712
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3313
       ),
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3314
       (BasePoints: @Template14Points;
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3315
        BasePointsCount: Succ(High(Template14Points));
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3316
        FillPoints: @Template14FPoints;
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3317
        FillPointsCount: Succ(High(Template14FPoints));
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3318
        BezierizeCount: 3;
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3319
        RandPassesCount: 7;
e87cafcf0e2d +1 land template
unc0rr
parents: 711
diff changeset
  3320
        canMirror: true; canFlip: false;
713
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3321
       ),
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3322
       (BasePoints: @Template15Points;
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3323
        BasePointsCount: Succ(High(Template15Points));
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3324
        FillPoints: @Template15FPoints;
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3325
        FillPointsCount: Succ(High(Template15FPoints));
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3326
        BezierizeCount: 2;
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3327
        RandPassesCount: 6;
8d038c5e95be LandTemplates++
unc0rr
parents: 712
diff changeset
  3328
        canMirror: true; canFlip: false;
714
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3329
       ),
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3330
       (BasePoints: @Template16Points;
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3331
        BasePointsCount: Succ(High(Template16Points));
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3332
        FillPoints: @Template16FPoints;
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3333
        FillPointsCount: Succ(High(Template16FPoints));
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3334
        BezierizeCount: 2;
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3335
        RandPassesCount: 6;
341090f7e750 And... one more
unc0rr
parents: 713
diff changeset
  3336
        canMirror: true; canFlip: false;
715
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3337
       ),
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3338
       (BasePoints: @Template17Points;
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3339
        BasePointsCount: Succ(High(Template17Points));
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3340
        FillPoints: @Template17FPoints;
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3341
        FillPointsCount: Succ(High(Template17FPoints));
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3342
        BezierizeCount: 3;
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3343
        RandPassesCount: 7;
d8d7bfa88db2 Last template for now
unc0rr
parents: 714
diff changeset
  3344
        canMirror: true; canFlip: false;
1753
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3345
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3346
       (BasePoints: @Template18Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3347
        BasePointsCount: Succ(High(Template18Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3348
        FillPoints: @Template18FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3349
        FillPointsCount: Succ(High(Template18FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3350
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3351
        RandPassesCount: 8;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3352
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3353
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3354
       (BasePoints: @Template19Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3355
        BasePointsCount: Succ(High(Template19Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3356
        FillPoints: @Template19FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3357
        FillPointsCount: Succ(High(Template19FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3358
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3359
        RandPassesCount: 7;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3360
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3361
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3362
       (BasePoints: @Template20Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3363
        BasePointsCount: Succ(High(Template20Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3364
        FillPoints: @Template20FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3365
        FillPointsCount: Succ(High(Template20FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3366
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3367
        RandPassesCount: 6;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3368
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3369
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3370
       (BasePoints: @Template21Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3371
        BasePointsCount: Succ(High(Template21Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3372
        FillPoints: @Template21FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3373
        FillPointsCount: Succ(High(Template21FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3374
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3375
        RandPassesCount: 4;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3376
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3377
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3378
       (BasePoints: @Template22Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3379
        BasePointsCount: Succ(High(Template22Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3380
        FillPoints: @Template22FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3381
        FillPointsCount: Succ(High(Template22FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3382
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3383
        RandPassesCount: 4;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3384
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3385
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3386
       (BasePoints: @Template23Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3387
        BasePointsCount: Succ(High(Template23Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3388
        FillPoints: @Template23FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3389
        FillPointsCount: Succ(High(Template23FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3390
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3391
        RandPassesCount: 8;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3392
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3393
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3394
       (BasePoints: @Template24Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3395
        BasePointsCount: Succ(High(Template24Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3396
        FillPoints: @Template24FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3397
        FillPointsCount: Succ(High(Template24FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3398
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3399
        RandPassesCount: 5;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3400
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3401
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3402
       (BasePoints: @Template25Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3403
        BasePointsCount: Succ(High(Template25Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3404
        FillPoints: @Template25FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3405
        FillPointsCount: Succ(High(Template25FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3406
        BezierizeCount: 4;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3407
        RandPassesCount: 4;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3408
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3409
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3410
       (BasePoints: @Template26Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3411
        BasePointsCount: Succ(High(Template26Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3412
        FillPoints: @Template26FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3413
        FillPointsCount: Succ(High(Template26FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3414
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3415
        RandPassesCount: 7;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3416
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3417
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3418
       (BasePoints: @Template27Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3419
        BasePointsCount: Succ(High(Template27Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3420
        FillPoints: @Template27FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3421
        FillPointsCount: Succ(High(Template27FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3422
        BezierizeCount: 1;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3423
        RandPassesCount: 5;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3424
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3425
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3426
       (BasePoints: @Template28Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3427
        BasePointsCount: Succ(High(Template28Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3428
        FillPoints: @Template28FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3429
        FillPointsCount: Succ(High(Template28FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3430
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3431
        RandPassesCount: 6;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3432
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3433
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3434
       (BasePoints: @Template29Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3435
        BasePointsCount: Succ(High(Template29Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3436
        FillPoints: @Template29FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3437
        FillPointsCount: Succ(High(Template29FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3438
        BezierizeCount: 1;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3439
        RandPassesCount: 8;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3440
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3441
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3442
       (BasePoints: @Template30Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3443
        BasePointsCount: Succ(High(Template30Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3444
        FillPoints: @Template30FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3445
        FillPointsCount: Succ(High(Template30FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3446
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3447
        RandPassesCount: 8;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3448
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3449
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3450
       (BasePoints: @Template31Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3451
        BasePointsCount: Succ(High(Template31Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3452
        FillPoints: @Template31FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3453
        FillPointsCount: Succ(High(Template31FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3454
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3455
        RandPassesCount: 5;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3456
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3457
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3458
       (BasePoints: @Template32Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3459
        BasePointsCount: Succ(High(Template32Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3460
        FillPoints: @Template32FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3461
        FillPointsCount: Succ(High(Template32FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3462
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3463
        RandPassesCount: 7;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3464
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3465
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3466
       (BasePoints: @Template33Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3467
        BasePointsCount: Succ(High(Template33Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3468
        FillPoints: @Template33FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3469
        FillPointsCount: Succ(High(Template33FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3470
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3471
        RandPassesCount: 6;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3472
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3473
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3474
       (BasePoints: @Template34Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3475
        BasePointsCount: Succ(High(Template34Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3476
        FillPoints: @Template34FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3477
        FillPointsCount: Succ(High(Template34FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3478
        BezierizeCount: 2;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3479
        RandPassesCount: 6;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3480
        canMirror: true; canFlip: false;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3481
       ),
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3482
       (BasePoints: @Template35Points;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3483
        BasePointsCount: Succ(High(Template35Points));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3484
        FillPoints: @Template35FPoints;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3485
        FillPointsCount: Succ(High(Template35FPoints));
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3486
        BezierizeCount: 3;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3487
        RandPassesCount: 7;
2ccba26f1aa4 Apply nemo's world resize patch
unc0rr
parents: 1066
diff changeset
  3488
        canMirror: true; canFlip: false;
358
236bbd12d4d9 - New Land Generator
unc0rr
parents: 351
diff changeset
  3489
       )
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3490
      );
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3491
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3492
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3493
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3494
implementation
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3495
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 183
diff changeset
  3496
end.