File: CevoMapMain.lfm

package info (click to toggle)
cevomapgen 39-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 476 kB
  • sloc: pascal: 2,765; xml: 169; makefile: 50
file content (1923 lines) | stat: -rw-r--r-- 59,508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
object FrmInterface: TFrmInterface
  Left = 800
  Height = 681
  Top = 250
  Width = 680
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  ClientHeight = 681
  ClientWidth = 680
  Color = clBtnFace
  DesignTimePPI = 93
  Font.Color = clBlack
  Font.Height = -18
  Font.Name = 'MS Sans Serif'
  OnCreate = FormCreate
  OnResize = FormResize
  PopupMenu = FrmImage.PopupMenu1
  Position = poScreenCenter
  LCLVersion = '3.0.0.3'
  Scaled = False
  object PanelMain: TPanel
    Left = 0
    Height = 722
    Top = 0
    Width = 1058
    ClientHeight = 722
    ClientWidth = 1058
    ParentBackground = False
    TabOrder = 0
    object PageControl1: TPageControl
      Left = 2
      Height = 562
      Top = 1
      Width = 1054
      ActivePage = TS_FileControl
      Align = alTop
      TabIndex = 0
      TabOrder = 0
      object TS_FileControl: TTabSheet
        Caption = ' Main '
        ClientHeight = 522
        ClientWidth = 1034
        object PanelStats: TPanel
          Left = 420
          Height = 385
          Top = 5
          Width = 252
          BevelOuter = bvLowered
          ClientHeight = 385
          ClientWidth = 252
          ParentBackground = False
          TabOrder = 2
          object LabelStatsOcean: TLabel
            Left = 12
            Height = 25
            Top = 7
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Ocean'
            Color = clBlue
            Font.Color = clWhite
            ParentColor = False
            ParentFont = False
            Transparent = False
          end
          object LabelStatsRiver: TLabel
            Left = 12
            Height = 25
            Top = 40
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'River'
            Color = clAqua
            ParentColor = False
            Transparent = False
          end
          object LabelStatsGrass: TLabel
            Left = 12
            Height = 25
            Top = 75
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Grass'
            Color = clLime
            ParentColor = False
            Transparent = False
          end
          object LabelStatsPrairie: TLabel
            Left = 12
            Height = 25
            Top = 110
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Prairie'
            Color = clYellow
            ParentColor = False
            Transparent = False
          end
          object LabelStatsDesert: TLabel
            Left = 12
            Height = 25
            Top = 145
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Desert'
            Color = clRed
            ParentColor = False
            Transparent = False
          end
          object LabelStatsHill: TLabel
            Left = 12
            Height = 25
            Top = 180
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Hills'
            Color = clOlive
            Font.Color = clWhite
            ParentColor = False
            ParentFont = False
            Transparent = False
          end
          object LabelStatsForest: TLabel
            Left = 12
            Height = 25
            Top = 215
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Forest'
            Color = clGreen
            Font.Color = clWhite
            ParentColor = False
            ParentFont = False
            Transparent = False
          end
          object LabelStatsSwamp: TLabel
            Left = 12
            Height = 25
            Top = 250
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Swamp'
            Color = clTeal
            Font.Color = clWhite
            ParentColor = False
            ParentFont = False
            Transparent = False
          end
          object LabelStatsTundra: TLabel
            Left = 12
            Height = 25
            Top = 287
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Tundra'
            Color = clGray
            Font.Color = clWhite
            ParentColor = False
            ParentFont = False
            Transparent = False
          end
          object LabelStatsGlacier: TLabel
            Left = 12
            Height = 25
            Top = 322
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Arctic'
            Color = clWhite
            ParentColor = False
            Transparent = False
          end
          object LabelStatsMountain: TLabel
            Left = 12
            Height = 25
            Top = 357
            Width = 128
            Alignment = taCenter
            AutoSize = False
            Caption = 'Mountain'
            Color = clSilver
            ParentColor = False
            Transparent = False
          end
          object EditStatsOcean: TEdit
            Left = 152
            Height = 35
            Top = 2
            Width = 96
            AutoSize = False
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 0
          end
          object EditStatsMountain: TEdit
            Left = 152
            Height = 35
            Top = 352
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 1
          end
          object EditStatsGrass: TEdit
            Left = 152
            Height = 35
            Top = 72
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 2
          end
          object EditStatsDesert: TEdit
            Left = 152
            Height = 35
            Top = 142
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 3
          end
          object EditStatsHill: TEdit
            Left = 152
            Height = 35
            Top = 177
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 4
          end
          object EditStatsForest: TEdit
            Left = 152
            Height = 35
            Top = 212
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 5
          end
          object EditStatsSwamp: TEdit
            Left = 152
            Height = 35
            Top = 247
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 6
          end
          object EditStatsPrairie: TEdit
            Left = 152
            Height = 35
            Top = 107
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 7
          end
          object EditStatsTundra: TEdit
            Left = 152
            Height = 35
            Top = 282
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 8
          end
          object EditStatsGlacier: TEdit
            Left = 152
            Height = 35
            Top = 317
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 10
          end
          object EditStatsRiver: TEdit
            Left = 152
            Height = 35
            Top = 37
            Width = 96
            Color = clBtnFace
            Constraints.MaxHeight = 28
            ReadOnly = True
            TabStop = False
            TabOrder = 9
          end
        end
        object PanelBodies: TPanel
          Left = 420
          Height = 76
          Top = 445
          Width = 240
          BevelOuter = bvLowered
          ClientHeight = 76
          ClientWidth = 240
          ParentBackground = False
          TabOrder = 3
          object Image1: TImage
            Left = 72
            Height = 62
            Top = 10
            Width = 100
            Picture.Data = {
              1754506F727461626C654E6574776F726B477261706869638504000089504E47
              0D0A1A0A0000000D4948445200000040000000300806000000A14B7C1F000000
              0467414D410000B18F0BFC6105000000206348524D00007A26000080840000FA
              00000080E8000075300000EA6000003A98000017709CBA513C00000006624B47
              4400FF00FF00FFA0BDA7930000039C4944415468DEED9A3168E35618C77F2A02
              6B3054A58253B128026908348580036D89E16EF090D20C2DDC7047874BA143A0
              3764B821D083204AC1071932764B0F5CBAE4A8070F39C85248E00A677021811B
              6C1045E57CD012153CC81050079D1CB9F60D8D4FEFE5E2FCA727FC247DFFDFFB
              DED37B1F5636D96496F596EC0064EB0A80EC0064EB0A80EC00646BE601A8B25E
              BCEFD4E2B45DED6E28B2E2909201FB4E2D3EEC0E0038EC0EF0F0E2291F796E49
              CB8025A780AEA97CF6C1CB108E670880AE25AF5D9937681EFDC5BC551C03B0F0
              CBC25856B4BF68BFF6A9222D036C431B42F0C368FCF7A846FBE98B33208BD768
              B3FCDAE390B2062C1EDF538A9A8A1F46F861C451D01FEBE3EA6D21B148FF0C1E
              057D168FEF49FB0A089F021E5EBCE414A0935C7F5ED16944B558350C6EFCF6F5
              08889BD5E7ECEEBFC7C2E2B5DCE2119A011E5E7CFDA312AA615071752AAE8E45
              91BB152B31FC6D63B8F06D7D9AEC0D6E569F03D0B8BD9C4B960803908EFCDA5C
              B2F83D0993E46BF7FAECF50D006A7BFE18848D5A3137F34201A4BAFDB00B806D
              593C09D52108003F8CA8EDF942E3110260DFA925F33E233F08C6DAB6AEE187D1
              C836396FE5BE0876CADB71C5D001D01EAF29FCC79C6D59F841806D59D88F9615
              F7E53DA20008C980834E386CA7071FDB4A16BED4FC2470970280DB5A57520859
              53C3B49F60DE6DAD2B3FB5FE195910F392907D403AEA9DF276DC296FC76B7306
              55B7C7A9BB4E2FB30D6E3C3ABBE7CBF2DB7CF8FDEF7C73FDDD5C6313FA15705B
              EBCABC5504A0A3DE02C0D435A230C4D4B5B1BE4B4E81F77FFDFBF2000058BDB5
              8A3D7703DB3601F0FDDE2BFB56BB1BCA1F396780B4D3606A7E148435DD03CF21
              E119908E786A3EBD4E415C7A0007CF9A1C3C6B4E842043D2A6400A01563210C4
              4F01E100FA0FD794B408BAC9A6F249A62DDC3D17A020225B570064BDF8E73BCE
              C4F6CC00C8AADDEB4FFF90370D804CD31702C045913400D91AC183C72FCEFFA0
              371500C0DC9DFA58A9ECD203D82D79F1C94E81C3EE60582005B8FBDD56ECE1C5
              FFA71E5877EA71DDA94F553411BA13DC2D79F1F19F50B93FE064A7C03B5F0D68
              ACAAA8169C0670B253E03450F9F8C78CA94087294D4A07908ED2D3FB49BA9F06
              2A952D9B522964E187A48F6DDB993B460F47A669523DACE6B25556F2F8A364DD
              A9C7A669A26967551EDFF747FA445184694E3E02AFB456849D0B720190AA596E
              8EA4AEAEEBC3761886D24C6795EB14C89A6A969B71D6B42CC34201BC0AC645D2
              D54E507600B235F300FE05DDBB4140F7BF31A00000002574455874646174653A
              63726561746500323032302D30392D30325431383A34353A32322B30303A3030
              113942C50000002574455874646174653A6D6F6469667900323032302D30392D
              30325431383A34353A32322B30303A30306064FA790000000049454E44AE4260
              82
            }
          end
        end
        object PanelMapShape: TPanel
          Left = 0
          Height = 426
          Top = 5
          Width = 402
          BevelInner = bvRaised
          BevelWidth = 2
          ClientHeight = 426
          ClientWidth = 402
          ParentBackground = False
          TabOrder = 0
          object PanelSize: TPanel
            Left = 8
            Height = 140
            Top = 140
            Width = 376
            BevelInner = bvLowered
            BevelOuter = bvLowered
            BevelWidth = 2
            ClientHeight = 140
            ClientWidth = 376
            ParentBackground = False
            TabOrder = 2
            object Label1: TLabel
              Left = 52
              Height = 22
              Top = 30
              Width = 82
              Caption = 'Height'
              ParentColor = False
            end
            object Label2: TLabel
              Left = 204
              Height = 22
              Top = 30
              Width = 72
              Caption = 'Width'
              ParentColor = False
            end
            object LabelSize: TLabel
              Left = 100
              Height = 22
              Top = 7
              Width = 200
              Alignment = taCenter
              Caption = '  Customise Map Size  '
              Font.Color = clBlack
              Font.Style = [fsUnderline]
              ParentColor = False
              ParentFont = False
            end
            object LabelArea: TLabel
              Left = 48
              Height = 22
              Top = 105
              Width = 54
              Caption = 'Area'
              ParentColor = False
            end
            object SpinHeight: TSpinEdit
              Left = 52
              Height = 43
              Top = 55
              Width = 80
              EditorEnabled = False
              Increment = 2
              MaxValue = 132
              MinValue = 20
              OnChange = SpinHeightChange
              TabOrder = 0
              Value = 70
            end
            object SpinWidth: TSpinEdit
              Left = 196
              Height = 43
              Top = 55
              Width = 80
              EditorEnabled = False
              MaxValue = 126
              MinValue = 30
              OnChange = SpinWidthChange
              TabOrder = 1
              Value = 60
            end
            object OP_Area: TPanel
              Left = 132
              Height = 30
              Top = 100
              Width = 90
              Alignment = taCenter
              BevelInner = bvLowered
              BevelOuter = bvLowered
              ParentBackground = False
              TabOrder = 2
            end
          end
          object RG_MapSize: TRadioGroup
            Left = 100
            Height = 132
            Top = 2
            Width = 188
            AutoFill = True
            Caption = '  ----  Map size  ----  '
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclTopToBottomThenLeftToRight
            ChildSizing.ControlsPerLine = 5
            ClientHeight = 108
            ClientWidth = 184
            ColumnLayout = clVerticalThenHorizontal
            Columns = 2
            ItemIndex = 6
            Items.Strings = (
              '35%'
              '50%'
              '70%'
              '100%'
              '150%'
              '180%'
              '230%'
              '300%'
              '400%'
            )
            OnSelectionChanged = AdjustMapSize
            ParentBackground = False
            TabOrder = 0
          end
          object PanelFiles: TPanel
            Left = 12
            Height = 126
            Top = 277
            Width = 370
            BevelInner = bvRaised
            BevelWidth = 3
            ClientHeight = 126
            ClientWidth = 370
            Color = clBtnShadow
            ParentBackground = False
            ParentColor = False
            TabOrder = 1
            object LabelFiles: TLabel
              Left = 144
              Height = 22
              Top = 10
              Width = 132
              Alignment = taCenter
              Caption = ' Map Files '
              Font.Color = clBlack
              Font.Style = [fsUnderline]
              ParentColor = False
              ParentFont = False
            end
            object BtnSave: TBitBtn
              Left = 204
              Height = 71
              Top = 37
              Width = 144
              Caption = 'Save'
              Glyph.Data = {
                76040000424D7604000000000000760000002800000040000000200000000100
                0400000000000004000000000000000000001000000010000000000000000000
                8000008000000080800080000000800080008080000080808000C0C0C0000000
                FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
                3333000077007777000033333333333333337777777777777777333333333333
                3333000077007777000033333333333333337777777777777777333333333333
                3333000088008888000033333333333333337777FF7733337777333333333333
                3333000088008888000033333333333333337777FF7733337777333333333333
                3333000088888888000033333333333333337777FFFFFFFF7777333333333333
                3333000088888888000033333333333333337777FFFFFFFF7777333333333333
                3333000000000000000033FFFFFFFFFFFFFF7777777777777777333333333333
                3333000000000000000033FFFFFFFFFFFFFF7777777777777777000000000000
                0000000000000000000077777777777777777777777777777777000000000000
                000000000000000000007777777777777777777777777777777700FFFFFFFFFF
                FFFF00FFFFFFFFFFFF0077FF33333333333377FF33333333337700FFFFFFFFFF
                FFFF00FFFFFFFFFFFF0077FF33333333333377FF33333333337700FFFFFFFFFF
                FFFF00FFFFFFFFFFFF0077FF33FFFF33FFFF77FFFFFFFFFFFF7700FFFFFFFFFF
                FFFF00FFFFFFFFFFFF0077FF33FFFF33FFFF77FFFFFFFFFFFF7700FF0000FF00
                008800CCCCCC99CCCC0077FF777733777733777777777777777700FF0000FF00
                008800CCCCCC99CCCC0077FF777733777733777777777777777700FFFFFFFFFF
                FFFFFF0033999999333377FF33FFFFFFFF33FF77FF777777FF3300FFFFFFFFFF
                FFFFFF0033999999333377FF33FFFFFFFF33FF77FF777777FF3300FF00000000
                FF00FF0099999999993377FF77777777337733777777777777FF00FF00000000
                FF00FF0099999999993377FF77777777337733777777777777FF00FFFFFFFFFF
                FFFFFF9999999999999977FF33FFFF33FFFFFF7777777777777700FFFFFFFFFF
                FFFFFF9999999999999977FF33FFFF33FFFFFF7777777777777700FF0000FF00
                0000000033999999333377FF777733777777777733777777FF3300FF0000FF00
                0000000033999999333377FF777733777777777733777777FF3300FFFFFFFF00
                FFFF003333999999333377FF33FFFF77FF33773333777777FF3300FFFFFFFF00
                FFFF003333999999333377FF33FFFF77FF33773333777777FF3300FF0088FF00
                FF00333377999999333377FF77773377FF7733FF77777777333300FF0088FF00
                FF00333377999999333377FF77773377FF7733FF77777777333300FFFFFFFF00
                0033999999999933333377FFFFFFFF777733777777777733333300FFFFFFFF00
                0033999999999933333377FFFFFFFF7777337777777777333333000000000000
                3333333333333333333377777777777733333333333333333333000000000000
                3333333333333333333377777777777733333333333333333333
              }
              Layout = blGlyphTop
              NumGlyphs = 2
              OnClick = BtnSaveClick
              TabOrder = 1
            end
            object BtnLoad: TBitBtn
              Left = 28
              Height = 71
              Top = 37
              Width = 144
              Caption = 'Load'
              Glyph.Data = {
                76040000424D7604000000000000760000002800000040000000200000000100
                0400000000000004000000000000000000001000000010000000000000000000
                8000008000000080800080000000800080008080000080808000C0C0C0000000
                FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
                3333BB333333333333BB3333FFFF3333333377FF33333333FF77333333333333
                3333BB333333333333BB3333FFFF3333333377FF33333333FF7733BBBB337777
                77BBBB77777777BBBB33337777FFFFFFFF7777FFFFFFFF77773333BBBB337777
                77BBBB77777777BBBB33337777FFFFFFFF7777FFFFFFFF7777333333BB000000
                00000000000000BB3333333377777777777777777777777733333333BB000000
                00000000000000BB33333333777777777777777777777777333333333300FFFF
                FFFFFFFFFFFF0077333333333377FF3333333333333377FF333333333300FFFF
                FFFFFFFFFFFF0077333333333377FF3333333333333377FF333333333300FFFF
                FFFFFFFFFFFF0077333333333377FF33FFFF33FFFFFF77FF333333333300FFFF
                FFFFFFFFFFFF0077333333333377FF33FFFF33FFFFFF77FF333333333300FF00
                00FF000000FF0077333333333377FF7777337777773377FF333333333300FF00
                00FF000000FF0077333333333377FF7777337777773377FF333333333300FFFF
                FFFFFFFFFFFF0077333333FFFF77FF33FFFFFFFF33FF77FFFFFF33333300FFFF
                FFFFFFFFFFFF0077333333FFFF77FF33FFFFFFFF33FF77FFFFFFBBBBBB00FF00
                000000FF00FF00BBBB3377777777FF77777777337733777777FFBBBBBB00FF00
                000000FF00FF00BBBB3377777777FF77777777337733777777FF33BBBB00FFFF
                FFFFFFFFFFFF00BBBBBB33777777FF33FFFF33FFFFFF7777777733BBBB00FFFF
                FFFFFFFFFFFF00BBBBBB33777777FF33FFFF33FFFFFF7777777733333300FF00
                00FF000000000033333333333377FF777733777777777733333333333300FF00
                00FF000000000033333333333377FF777733777777777733333333333300FFFF
                FFFF00FFFF003333333333333377FF33FFFF77FF3377FF33333333333300FFFF
                FFFF00FFFF003333333333333377FF33FFFF77FF3377FF33333333333300FF00
                88FF00FF00BB3333333333333377FF77773377FF7777FFFF333333333300FF00
                88FF00FF00BB3333333333333377FF77773377FF7777FFFF333333333300FFFF
                FFFF000033BBBB33333333333377FFFFFFFF7777337777FFFF3333333300FFFF
                FFFF000033BBBB33333333333377FFFFFFFF7777337777FFFF333333BB000000
                000000333333BBBB3333333377777777777777FF33337777FFFF3333BB000000
                000000333333BBBB3333333377777777777777FF33337777FFFF33BBBB333333
                33BBBB33333333BBBB333377773333333377773333333377773333BBBB333333
                33BBBB33333333BBBB3333777733333333777733333333777733BB3333333333
                33BB33333333333333BB77333333333333773333333333333377BB3333333333
                33BB33333333333333BB77333333333333773333333333333377
              }
              Layout = blGlyphTop
              NumGlyphs = 2
              OnClick = BtnLoadClick
              TabOrder = 0
            end
          end
        end
        object PanelCitySquares: TPanel
          Left = 420
          Height = 50
          Top = 395
          Width = 240
          Alignment = taLeftJustify
          BevelOuter = bvLowered
          ClientHeight = 50
          ClientWidth = 240
          ParentBackground = False
          TabOrder = 4
          object LabelCitySquares: TLabel
            Left = 100
            Height = 22
            Top = 27
            Width = 102
            Caption = '(approx)'
            ParentColor = False
          end
          object LabelCitySquares2: TLabel
            Left = 100
            Height = 22
            Top = 2
            Width = 112
            Caption = 'No. Cities'
            ParentColor = False
          end
          object OP_Citysquares: TPanel
            Left = 8
            Height = 30
            Top = 10
            Width = 72
            Alignment = taRightJustify
            BevelInner = bvLowered
            BevelOuter = bvLowered
            ParentBackground = False
            TabOrder = 0
          end
        end
        object SpinPanelImageSize: TPanel
          Left = 0
          Height = 80
          Top = 440
          Width = 402
          BevelInner = bvRaised
          BevelWidth = 2
          ClientHeight = 80
          ClientWidth = 402
          ParentBackground = False
          TabOrder = 1
          object SpinLabelImageSize: TLabel
            Left = 128
            Height = 22
            Top = 32
            Width = 46
            Caption = 'Size'
            ParentColor = False
          end
          object LabelScroll: TLabel
            Left = 260
            Height = 22
            Top = 34
            Width = 64
            Caption = 'Scroll'
            ParentColor = False
          end
          object LabelThumbnail: TLabel
            Left = 128
            Height = 22
            Top = 2
            Width = 190
            Caption = 'Thumbnail View'
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            Font.Style = [fsUnderline]
            ParentColor = False
            ParentFont = False
          end
          object SpinEditImageSize: TSpinEdit
            Left = 20
            Height = 43
            Top = 25
            Width = 80
            EditorEnabled = False
            MaxValue = 4
            OnChange = SpinEditImageSizeChange
            TabOrder = 0
            Value = 2
          end
          object UD_Scroll: TUpDown
            Left = 204
            Height = 30
            Top = 32
            Width = 48
            Max = 10000
            Min = -10000
            OnClick = UD_ScrollClick
            Orientation = udHorizontal
            Position = 0
            TabOrder = 1
            Thousands = False
          end
        end
      end
      object TS_LandMass: TTabSheet
        Caption = ' Land '
        ClientHeight = 522
        ClientWidth = 1034
        ImageIndex = 1
        object RG_LandMass: TRadioGroup
          Left = 16
          Height = 176
          Top = 0
          Width = 320
          AutoFill = True
          Caption = 'Land Mass'
          ChildSizing.LeftRightSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 1
          ClientHeight = 152
          ClientWidth = 316
          ItemIndex = 2
          Items.Strings = (
            ' 8%  Small Islands'
            '20%  Islands'
            '32%  Continents'
            '44%  Big Continents'
            '60%  Big Lakes'
            '80%  Small Lakes'
          )
          OnSelectionChanged = RG_LandMassChanged
          ParentBackground = False
          TabOrder = 0
        end
        object PanelOceanLevel: TPanel
          Left = 16
          Height = 46
          Top = 175
          Width = 298
          BevelOuter = bvLowered
          ClientHeight = 46
          ClientWidth = 298
          ParentBackground = False
          TabOrder = 1
          object LabelSeaLevel: TLabel
            Left = 120
            Height = 22
            Top = 10
            Width = 128
            Caption = 'Land Mass'
            ParentColor = False
          end
          object SE_OceanLevel: TSpinEdit
            Left = 12
            Height = 43
            Top = 6
            Width = 80
            EditorEnabled = False
            Increment = 2
            MaxValue = 98
            MinValue = 4
            TabOrder = 0
            Value = 32
          end
        end
        object RG_Mountains: TRadioGroup
          Left = 360
          Height = 176
          Top = 0
          Width = 304
          AutoFill = True
          Caption = 'Mountains'
          ChildSizing.LeftRightSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 1
          ClientHeight = 152
          ClientWidth = 300
          ItemIndex = 2
          Items.Strings = (
            '00%  None'
            '05%  A Few'
            '10%  Normal'
            '15%  Lots'
            '20%  Extra'
          )
          OnSelectionChanged = RG_MountainsChanged
          ParentBackground = False
          TabOrder = 4
        end
        object RG_Size: TRadioGroup
          Left = 16
          Height = 156
          Top = 230
          Width = 298
          AutoFill = True
          Caption = 'Land Form'
          ChildSizing.LeftRightSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 1
          ClientHeight = 132
          ClientWidth = 294
          ItemIndex = 2
          Items.Strings = (
            '08  Very Small'
            '12  Archipelago'
            '16  Varied'
            '22  Continents'
            '28  Very Large'
          )
          OnSelectionChanged = RG_SizeChanged
          ParentBackground = False
          TabOrder = 2
        end
        object RG_Age: TRadioGroup
          Left = 360
          Height = 156
          Top = 230
          Width = 298
          AutoFill = True
          Caption = 'Age (Years)'
          ChildSizing.LeftRightSpacing = 6
          ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
          ChildSizing.EnlargeVertical = crsHomogenousChildResize
          ChildSizing.ShrinkHorizontal = crsScaleChilds
          ChildSizing.ShrinkVertical = crsScaleChilds
          ChildSizing.Layout = cclLeftToRightThenTopToBottom
          ChildSizing.ControlsPerLine = 1
          ClientHeight = 132
          ClientWidth = 294
          ItemIndex = 1
          Items.Strings = (
            '2 Billion'
            '3 Billion'
            '4 Billion'
            '5 Billion'
          )
          OnSelectionChanged = RG_AgeChanged
          ParentBackground = False
          TabOrder = 5
        end
        object SpinPanelSize: TPanel
          Left = 16
          Height = 56
          Top = 385
          Width = 298
          BevelOuter = bvLowered
          ClientHeight = 56
          ClientWidth = 298
          ParentBackground = False
          TabOrder = 3
          object SpinLabelSize: TLabel
            Left = 120
            Height = 22
            Top = 20
            Width = 144
            Caption = 'Feature Size'
            ParentColor = False
          end
          object SpinWave: TSpinEdit
            Left = 12
            Height = 43
            Top = 10
            Width = 80
            EditorEnabled = False
            Increment = 1
            MaxValue = 50
            MinValue = 6
            TabOrder = 0
            Value = 16
          end
        end
        object SpinPanelErosion: TPanel
          Left = 360
          Height = 55
          Top = 385
          Width = 290
          BevelOuter = bvLowered
          ClientHeight = 55
          ClientWidth = 290
          ParentBackground = False
          TabOrder = 6
          object LabelErosion: TLabel
            Left = 120
            Height = 22
            Top = 20
            Width = 46
            Caption = 'Age'
            ParentColor = False
          end
          object SpinDim: TSpinEdit
            Left = 16
            Height = 43
            Top = 10
            Width = 80
            EditorEnabled = False
            MaxValue = 7
            MinValue = 1
            TabOrder = 0
            Value = 3
          end
        end
        object PanelLandButons: TPanel
          Left = 152
          Height = 72
          Top = 444
          Width = 370
          BevelInner = bvRaised
          BevelWidth = 3
          ClientHeight = 72
          ClientWidth = 370
          ParentBackground = False
          TabOrder = 7
          object ButtonLandDefault: TButton
            Left = 28
            Height = 40
            Top = 16
            Width = 130
            Caption = 'Defaults'
            TabOrder = 0
            OnClick = ButtonLandDefaultClick
          end
          object CheckBoxRandomLand: TCheckBox
            Left = 188
            Height = 28
            Top = 24
            Width = 172
            Caption = 'Random'
            TabOrder = 1
          end
        end
        object PanelMountainLevel: TPanel
          Left = 360
          Height = 45
          Top = 175
          Width = 290
          BevelOuter = bvLowered
          ClientHeight = 45
          ClientWidth = 290
          ParentBackground = False
          TabOrder = 8
          object Label5: TLabel
            Left = 120
            Height = 22
            Top = 10
            Width = 130
            Caption = 'Mountains'
            ParentColor = False
          end
          object SE_MountainLevel: TSpinEdit
            Left = 16
            Height = 43
            Top = 6
            Width = 80
            EditorEnabled = False
            Increment = 5
            MaxValue = 95
            TabOrder = 0
            Value = 10
          end
        end
      end
      object TS_Weather: TTabSheet
        Caption = ' Rain '
        ClientHeight = 522
        ClientWidth = 1034
        ImageIndex = 2
        object PanelWeatherButtons: TPanel
          Left = 152
          Height = 72
          Top = 444
          Width = 370
          BevelInner = bvRaised
          BevelWidth = 3
          ClientHeight = 72
          ClientWidth = 370
          ParentBackground = False
          TabOrder = 2
          object ButtonDefaultWeather: TButton
            Left = 28
            Height = 40
            Top = 16
            Width = 130
            Caption = 'Defaults'
            TabOrder = 0
            OnClick = ButtonDefaultWeatherClick
          end
          object CheckBoxRandomWeather: TCheckBox
            Left = 188
            Height = 28
            Top = 24
            Width = 172
            Caption = 'Random'
            TabOrder = 1
          end
        end
        object PanelPoles: TPanel
          Left = 4
          Height = 246
          Top = 10
          Width = 660
          BevelInner = bvRaised
          BevelWidth = 3
          ClientHeight = 246
          ClientWidth = 660
          ParentBackground = False
          TabOrder = 0
          object LabelPoles: TLabel
            Left = 180
            Height = 22
            Top = 7
            Width = 260
            Caption = 'Main Rainfall Controls'
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            Font.Style = [fsUnderline]
            ParentColor = False
            ParentFont = False
          end
          object RG_RainPoles: TRadioGroup
            Left = 20
            Height = 141
            Top = 37
            Width = 290
            AutoFill = True
            Caption = 'Poles'
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 117
            ClientWidth = 286
            ItemIndex = 2
            Items.Strings = (
              '30%  Very Arid'
              '45%  Arid'
              '60%  Normal'
              '75%  Wet'
              '90%  Very Wet'
            )
            OnSelectionChanged = RG_RainPolesChanged
            ParentBackground = False
            TabOrder = 0
          end
          object PanelPolesRain: TPanel
            Left = 20
            Height = 52
            Top = 177
            Width = 290
            BevelOuter = bvLowered
            ClientHeight = 52
            ClientWidth = 290
            ParentBackground = False
            TabOrder = 1
            object SE_PolesRain: TSpinEdit
              Left = 44
              Height = 43
              Top = 8
              Width = 80
              EditorEnabled = False
              Increment = 5
              MaxValue = 90
              MinValue = 10
              TabOrder = 0
              Value = 60
            end
          end
          object RG_RainEqu: TRadioGroup
            Left = 332
            Height = 141
            Top = 37
            Width = 290
            AutoFill = True
            Caption = 'Equator'
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 117
            ClientWidth = 286
            ItemIndex = 1
            Items.Strings = (
              '30%  Very Arid'
              '45%  Arid'
              '60%  Normal'
              '75%  Wet'
              '90%  Very Wet'
            )
            OnSelectionChanged = RG_RainEquatChanged
            ParentBackground = False
            TabOrder = 2
          end
          object SpinPanelRain: TPanel
            Left = 332
            Height = 51
            Top = 177
            Width = 290
            BevelOuter = bvLowered
            ClientHeight = 51
            ClientWidth = 290
            ParentBackground = False
            TabOrder = 3
            object SE_RainEqu: TSpinEdit
              Left = 44
              Height = 43
              Top = 8
              Width = 80
              EditorEnabled = False
              Increment = 5
              MaxValue = 90
              MinValue = 10
              TabOrder = 0
              Value = 60
            end
          end
        end
        object PanelrainTune: TPanel
          Left = 4
          Height = 160
          Top = 270
          Width = 658
          BevelInner = bvLowered
          BevelOuter = bvLowered
          ClientHeight = 160
          ClientWidth = 658
          ParentBackground = False
          TabOrder = 1
          object LabelrainTune: TLabel
            Left = 92
            Height = 22
            Top = 7
            Width = 140
            Caption = 'Fine Tuning'
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            Font.Style = [fsUnderline]
            ParentColor = False
            ParentFont = False
          end
          object PnlRivers: TPanel
            Left = 332
            Height = 47
            Top = 97
            Width = 274
            BevelOuter = bvLowered
            ClientHeight = 47
            ClientWidth = 274
            ParentBackground = False
            TabOrder = 3
            object LabelRiver2: TLabel
              Left = 136
              Height = 22
              Top = 10
              Width = 72
              Caption = '% of Land'
              ParentColor = False
            end
            object SpinWater: TSpinEdit
              Left = 16
              Height = 43
              Top = 5
              Width = 80
              EditorEnabled = False
              Increment = 1
              MaxValue = 8
              TabOrder = 0
              Value = 4
            end
          end
          object RG_Rivers: TRadioGroup
            Left = 332
            Height = 96
            Top = 2
            Width = 274
            AutoFill = True
            Caption = 'Rivers'
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 72
            ClientWidth = 270
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            ItemIndex = 1
            Items.Strings = (
              'Fewer'
              'Normal'
              'More'
            )
            OnSelectionChanged = RG_RiversChanged
            ParentBackground = False
            ParentFont = False
            TabOrder = 2
          end
          object PanelRainVarys: TPanel
            Left = 20
            Height = 46
            Top = 42
            Width = 282
            ClientHeight = 46
            ClientWidth = 282
            ParentBackground = False
            TabOrder = 0
            object LabelRainVaries: TLabel
              Left = 136
              Height = 22
              Top = 15
              Width = 102
              Caption = 'Distance'
              ParentColor = False
            end
            object SpinWaveRain: TSpinEdit
              Left = 20
              Height = 43
              Top = 2
              Width = 80
              Color = clBtnFace
              EditorEnabled = False
              Increment = 4
              MaxValue = 32
              MinValue = 8
              TabOrder = 0
              Value = 12
            end
          end
          object Panelrainvariation: TPanel
            Left = 20
            Height = 52
            Top = 92
            Width = 282
            ClientHeight = 52
            ClientWidth = 282
            ParentBackground = False
            TabOrder = 1
            object Labelrainvaryability: TLabel
              Left = 140
              Height = 22
              Top = 10
              Width = 118
              Caption = 'Variability'
              ParentColor = False
            end
            object SpinGainRain: TSpinEdit
              Left = 20
              Height = 43
              Top = 2
              Width = 80
              Color = clBtnFace
              EditorEnabled = False
              Increment = 10
              MaxValue = 70
              MinValue = 20
              TabOrder = 0
              Value = 50
            end
          end
        end
      end
      object TabSheetTemperature: TTabSheet
        Caption = ' Temp '
        ClientHeight = 522
        ClientWidth = 1034
        ImageIndex = 5
        object PanelEquator: TPanel
          Left = 4
          Height = 251
          Top = 10
          Width = 658
          BevelInner = bvRaised
          BevelWidth = 3
          ClientHeight = 251
          ClientWidth = 658
          ParentBackground = False
          TabOrder = 0
          object LabelTempMain: TLabel
            Left = 164
            Height = 22
            Top = 7
            Width = 328
            Caption = 'Main Temperature Controls'
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            Font.Style = [fsUnderline]
            ParentColor = False
            ParentFont = False
          end
          object RG_TempEqu: TRadioGroup
            Left = 332
            Height = 141
            Top = 37
            Width = 282
            AutoFill = True
            Caption = 'Equator'
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 117
            ClientWidth = 278
            ItemIndex = 1
            Items.Strings = (
              '85%  Hot'
              '70%  Warm'
              '55%  Temperate'
              '40%  Cool'
              '25%  Cold'
            )
            OnSelectionChanged = RG_TempEquatChanged
            ParentBackground = False
            TabOrder = 2
          end
          object SpinPanelTemp: TPanel
            Left = 332
            Height = 56
            Top = 177
            Width = 282
            BevelOuter = bvLowered
            ClientHeight = 56
            ClientWidth = 282
            ParentBackground = False
            TabOrder = 3
            object SE_EquTemp: TSpinEdit
              Left = 44
              Height = 43
              Top = 8
              Width = 80
              EditorEnabled = False
              Increment = 5
              MaxValue = 95
              MinValue = 5
              TabOrder = 0
              Value = 70
            end
          end
          object RG_TempPoles: TRadioGroup
            Left = 20
            Height = 141
            Top = 37
            Width = 282
            AutoFill = True
            Caption = 'Poles'
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 117
            ClientWidth = 278
            ItemIndex = 3
            Items.Strings = (
              '75%  Hot'
              '60%  Warm'
              '45%  Temperate'
              '30%  Cool'
              '15%  Cold'
            )
            OnSelectionChanged = RG_TempPolesChanged
            ParentBackground = False
            TabOrder = 0
          end
          object PanelPolesTemp: TPanel
            Left = 20
            Height = 57
            Top = 177
            Width = 282
            BevelOuter = bvLowered
            ClientHeight = 57
            ClientWidth = 282
            ParentBackground = False
            TabOrder = 1
            object SE_PolesTemp: TSpinEdit
              Left = 44
              Height = 44
              Top = 8
              Width = 80
              EditorEnabled = False
              Increment = 5
              MaxValue = 95
              MinValue = 5
              TabOrder = 0
              Value = 30
            end
          end
        end
        object PanelTemerature2: TPanel
          Left = 152
          Height = 72
          Top = 444
          Width = 370
          BevelInner = bvRaised
          BevelWidth = 3
          ClientHeight = 72
          ClientWidth = 370
          ParentBackground = False
          TabOrder = 2
          object ButtonDefaultTemp: TButton
            Left = 28
            Height = 40
            Top = 16
            Width = 130
            Caption = 'Defaults'
            TabOrder = 0
            OnClick = ButtonDefaultTempClick
          end
          object CheckBoxRandomTemp: TCheckBox
            Left = 188
            Height = 24
            Top = 24
            Width = 172
            Caption = 'Random'
            TabOrder = 1
          end
        end
        object PanelFineTemp: TPanel
          Left = 152
          Height = 150
          Top = 275
          Width = 362
          BevelInner = bvLowered
          BevelOuter = bvLowered
          ClientHeight = 150
          ClientWidth = 362
          ParentBackground = False
          TabOrder = 1
          object LabelTempFine: TLabel
            Left = 100
            Height = 22
            Top = 7
            Width = 140
            Caption = 'Fine Tuning'
            Font.Color = clBlack
            Font.Height = -18
            Font.Name = 'MS Sans Serif'
            Font.Style = [fsUnderline]
            ParentColor = False
            ParentFont = False
          end
          object PanelTempVary: TPanel
            Left = 36
            Height = 52
            Top = 37
            Width = 278
            ClientHeight = 52
            ClientWidth = 278
            ParentBackground = False
            TabOrder = 0
            object LabelTempSquares: TLabel
              Left = 136
              Height = 22
              Top = 15
              Width = 102
              Caption = 'Distance'
              ParentColor = False
            end
            object SpinWaveTemp: TSpinEdit
              Left = 12
              Height = 44
              Top = 2
              Width = 80
              Color = clBtnFace
              EditorEnabled = False
              Increment = 2
              MaxValue = 40
              MinValue = 6
              TabOrder = 0
              Value = 18
            end
          end
          object PanelTempvariability: TPanel
            Left = 36
            Height = 52
            Top = 90
            Width = 280
            ClientHeight = 52
            ClientWidth = 280
            ParentBackground = False
            TabOrder = 1
            object LabelTempVariability: TLabel
              Left = 136
              Height = 22
              Top = 15
              Width = 118
              Caption = 'Variability'
              ParentColor = False
            end
            object SpinGainTemp: TSpinEdit
              Left = 12
              Height = 43
              Top = 2
              Width = 80
              Color = clBtnFace
              EditorEnabled = False
              Increment = 10
              MaxValue = 70
              MinValue = 20
              TabOrder = 0
              Value = 40
            end
          end
        end
      end
      object Templates: TTabSheet
        Caption = 'Extra '
        ClientHeight = 522
        ClientWidth = 1034
        ImageIndex = 4
        object PnlTemp: TPanel
          Left = 170
          Height = 111
          Top = 410
          Width = 344
          BevelInner = bvLowered
          BevelOuter = bvLowered
          ClientHeight = 111
          ClientWidth = 344
          ParentBackground = False
          TabOrder = 0
          Visible = False
          object LblBias: TLabel
            Left = 124
            Height = 22
            Top = 38
            Width = 48
            Caption = 'Bias'
            ParentColor = False
          end
          object LblGain: TLabel
            Left = 124
            Height = 22
            Top = 78
            Width = 54
            Caption = 'Gain'
            ParentColor = False
          end
          object LabelSmooth: TLabel
            Left = 216
            Height = 22
            Top = 20
            Width = 96
            Caption = 'Smooth'
            ParentColor = False
          end
          object LabelLnd: TLabel
            Left = 40
            Height = 22
            Top = 10
            Width = 60
            Caption = 'Land'
            ParentColor = False
          end
          object SpinDimTemp: TSpinEdit
            Left = 212
            Height = 43
            Top = 80
            Width = 80
            EditorEnabled = False
            MaxValue = 10
            TabOrder = 0
            Value = 10
          end
          object SpinDimrain: TSpinEdit
            Left = 212
            Height = 43
            Top = 40
            Width = 80
            EditorEnabled = False
            MaxValue = 10
            TabOrder = 1
            Value = 10
          end
          object SpinBias: TSpinEdit
            Left = 20
            Height = 43
            Top = 36
            Width = 80
            EditorEnabled = False
            Increment = 2
            MaxValue = 98
            MinValue = 2
            TabOrder = 2
            Value = 50
          end
          object SpinGain: TSpinEdit
            Left = 20
            Height = 43
            Top = 76
            Width = 80
            EditorEnabled = False
            Increment = 2
            MaxValue = 98
            MinValue = 2
            TabOrder = 3
            Value = 50
          end
        end
        object BtnLoadTemplate: TButton
          Left = 56
          Height = 31
          Top = 35
          Width = 214
          Caption = 'Load Template'
          TabOrder = 1
          OnClick = BtnLoadTemplateClick
        end
        object BtnSaveTemplate: TButton
          Left = 416
          Height = 31
          Top = 35
          Width = 216
          Caption = 'Save Template'
          TabOrder = 2
          OnClick = BtnSaveTemplateClick
        end
        object PnlResource: TPanel
          Left = 168
          Height = 250
          Top = 80
          Width = 346
          BevelInner = bvLowered
          BevelOuter = bvLowered
          ClientHeight = 250
          ClientWidth = 346
          ParentBackground = False
          TabOrder = 3
          object LblResource: TLabel
            Left = 104
            Height = 25
            Top = 15
            Width = 140
            AutoSize = False
            Caption = 'Resources'
            ParentColor = False
          end
          object RG_Resource: TRadioGroup
            Left = 64
            Height = 140
            Top = 45
            Width = 224
            AutoFill = True
            ChildSizing.LeftRightSpacing = 6
            ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
            ChildSizing.EnlargeVertical = crsHomogenousChildResize
            ChildSizing.ShrinkHorizontal = crsScaleChilds
            ChildSizing.ShrinkVertical = crsScaleChilds
            ChildSizing.Layout = cclLeftToRightThenTopToBottom
            ChildSizing.ControlsPerLine = 1
            ClientHeight = 137
            ClientWidth = 220
            ItemIndex = 2
            Items.Strings = (
              'Standard'
              'Low'
              'Medium'
              'High'
            )
            OnSelectionChanged = RG_ResourceSelectionChanged
            ParentBackground = False
            TabOrder = 0
          end
          object SE_Resource: TSpinEdit
            Left = 128
            Height = 43
            Top = 195
            Width = 80
            EditorEnabled = False
            MaxValue = 12
            MinValue = -1
            OnChange = SE_ResourceChange
            TabOrder = 1
            Value = 6
          end
        end
        object LabelNSR1: TLabel
          Left = 168
          Height = 22
          Top = 340
          Width = 300
          Caption = 'Non Standard Resources'
        end
        object LabelNSR2: TLabel
          Left = 168
          Height = 22
          Top = 372
          Width = 320
          Caption = 'C-evo Distant Horizon only'
        end
      end
      object TabSheetAboiut: TTabSheet
        Caption = 'About '
        ClientHeight = 522
        ClientWidth = 1034
        ImageIndex = 5
        object LabelAboutInfo: TLabel
          Left = 80
          Height = 22
          Top = 160
          Width = 800
          Alignment = taCenter
          Constraints.MinWidth = 500
          Caption = ' A Custom Map File Generator for C-evo '
          Color = clBtnShadow
          ParentColor = False
          Transparent = False
        end
        object PanelAboutName: TPanel
          Left = 32
          Height = 91
          Top = 25
          Width = 600
          BevelInner = bvRaised
          BevelWidth = 4
          Caption = 'CEVO.MAP.GEN'
          Font.Color = clBlack
          Font.Height = -37
          Font.Name = 'MS Sans Serif'
          ParentBackground = False
          ParentFont = False
          TabOrder = 0
        end
        object PanelVersion: TPanel
          Left = 32
          Height = 75
          Top = 215
          Width = 600
          ClientHeight = 75
          ClientWidth = 600
          ParentBackground = False
          TabOrder = 1
          object LabelAuthor: TLabel
            Left = 180
            Height = 22
            Top = 20
            Width = 1000
            Alignment = taCenter
            Caption = 'Author:  Peter Blackman'
            ParentColor = False
          end
          object LabelEmail: TLabel
            Left = 168
            Height = 22
            Top = 40
            Width = 1000
            Alignment = taCenter
            Caption = 'peter@pblackman.plus.com'
            ParentColor = False
          end
        end
        object PanelPerf: TPanel
          Left = 56
          Height = 30
          Top = 285
          Width = 80
          BevelOuter = bvLowered
          BevelWidth = 2
          ParentBackground = False
          TabOrder = 2
          Visible = False
        end
      end
    end
    object PnlStatus: TPanel
      Left = 448
      Height = 35
      Top = 627
      Width = 222
      ClientHeight = 35
      ClientWidth = 222
      ParentBackground = False
      TabOrder = 3
      object LblStatus: TLabel
        Left = 28
        Height = 1
        Top = 7
        Width = 2
        ParentColor = False
      end
    end
    object PanelGo: TPanel
      Left = 6
      Height = 106
      Top = 567
      Width = 426
      BevelInner = bvRaised
      BevelWidth = 3
      ClientHeight = 106
      ClientWidth = 426
      Color = clBtnShadow
      ParentBackground = False
      ParentColor = False
      TabOrder = 1
      object LabelGen: TLabel
        Left = 120
        Height = 22
        Top = 7
        Width = 230
        Caption = 'Generate New Map'
        Font.Color = clBlack
        Font.Height = -18
        Font.Name = 'MS Sans Serif'
        Font.Style = [fsUnderline]
        ParentColor = False
        ParentFont = False
      end
      object Button1: TButton
        Left = 208
        Height = 60
        Top = 35
        Width = 192
        Caption = 'Same Land'
        TabOrder = 1
        OnClick = Button1Click
      end
      object MultiLineBtn1: TButton
        Left = 20
        Height = 60
        Top = 35
        Width = 172
        Caption = 'New Land'
        TabOrder = 0
        OnClick = MultiLineBtn1Click
      end
    end
    object ProgressBar1: TProgressBar
      Left = 448
      Height = 36
      Top = 577
      Width = 224
      TabOrder = 2
    end
  end
  object OpenDialog1: TOpenDialog
    Title = 'Load C-evo Map File'
    DefaultExt = '.cevomap'
    Filter = 'C-evo files|*.cevomap;*.cevo|*'
    Options = [ofReadOnly, ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofShareAware, ofEnableSizing]
    Left = 16
    Top = 740
  end
  object SaveDialog1: TSaveDialog
    Title = 'Save C-evo Map File'
    DefaultExt = '.cevomap'
    Filter = 'Map files|*.cevomap'
    Options = [ofOverwritePrompt]
    Left = 4
    Top = 792
  end
  object OpenDialog2: TOpenDialog
    Title = 'Load Template'
    DefaultExt = '.INI'
    Filter = 'Templates|*.INI'
    Options = [ofPathMustExist, ofFileMustExist, ofShareAware, ofEnableSizing]
    Left = 48
    Top = 110
  end
  object SaveDialog2: TSaveDialog
    Title = 'Save Template'
    DefaultExt = '.INI'
    Filter = 'Templates|*.INI'
    Options = [ofOverwritePrompt]
    Left = 584
    Top = 110
  end
end