hedgewars/uLandTemplates.pas
changeset 713 8d038c5e95be
parent 712 e87cafcf0e2d
child 714 341090f7e750
equal deleted inserted replaced
712:e87cafcf0e2d 713:8d038c5e95be
   407       Template14FPoints: array[0..0] of TPoint =
   407       Template14FPoints: array[0..0] of TPoint =
   408       (
   408       (
   409        (x: 1023; y:    0)
   409        (x: 1023; y:    0)
   410       );
   410       );
   411 
   411 
   412 
   412 const Template15Points: array[0..23] of TSDL_Rect =
   413 const EdgeTemplates: array[0..14] of TEdgeTemplate =
   413       (
       
   414        (x:  302; y: 1024; w:    2; h:    2),
       
   415        (x:  240; y:  890; w:   44; h:   94),
       
   416        (x:  350; y:  862; w:   44; h:   94),
       
   417        (x:  460; y:  906; w:   78; h:   70),
       
   418        (x:  466; y: 1024; w:    2; h:    2),
       
   419        (x: NTPX; y:    0; w:    1; h:    1),
       
   420        (x:  804; y: 1024; w:    2; h:    2),
       
   421        (x:  720; y:  782; w:  108; h:  174),
       
   422        (x:  484; y:  624; w:  314; h:   98),
       
   423        (x:  310; y:  482; w:   76; h:  230),
       
   424        (x:  434; y:  286; w:  220; h:  154),
       
   425        (x:  840; y:  274; w:   56; h:  266),
       
   426        (x: 1024; y:  244; w:   78; h:  304),
       
   427        (x: 1248; y:  246; w:  116; h:  162),
       
   428        (x: 1580; y:  326; w:  190; h:  228),
       
   429        (x: 1360; y:  604; w:  140; h:   84),
       
   430        (x: 1196; y:  740; w:  242; h:  118),
       
   431        (x: 1216; y: 1024; w:    2; h:    2),
       
   432        (x: NTPX; y:    0; w:    1; h:    1),
       
   433        (x: 1494; y: 1024; w:    2; h:    2),
       
   434        (x: 1450; y:  928; w:   88; h:   34),
       
   435        (x: 1598; y:  838; w:   96; h:  112),
       
   436        (x: 1656; y: 1024; w:    2; h:    2),
       
   437        (x: NTPX; y:    0; w:    1; h:    1)
       
   438       );
       
   439       Template15FPoints: array[0..0] of TPoint =
       
   440       (
       
   441        (x: 1023; y:    0)
       
   442       );
       
   443 
       
   444 
       
   445 const EdgeTemplates: array[0..15] of TEdgeTemplate =
   414       (
   446       (
   415        (BasePoints: @Template0Points;
   447        (BasePoints: @Template0Points;
   416         BasePointsCount: Succ(High(Template0Points));
   448         BasePointsCount: Succ(High(Template0Points));
   417         FillPoints: @Template0FPoints;
   449         FillPoints: @Template0FPoints;
   418         FillPointsCount: Succ(High(Template0FPoints));
   450         FillPointsCount: Succ(High(Template0FPoints));
   529         FillPoints: @Template14FPoints;
   561         FillPoints: @Template14FPoints;
   530         FillPointsCount: Succ(High(Template14FPoints));
   562         FillPointsCount: Succ(High(Template14FPoints));
   531         BezierizeCount: 3;
   563         BezierizeCount: 3;
   532         RandPassesCount: 7;
   564         RandPassesCount: 7;
   533         canMirror: true; canFlip: false;
   565         canMirror: true; canFlip: false;
       
   566        ),
       
   567        (BasePoints: @Template15Points;
       
   568         BasePointsCount: Succ(High(Template15Points));
       
   569         FillPoints: @Template15FPoints;
       
   570         FillPointsCount: Succ(High(Template15FPoints));
       
   571         BezierizeCount: 2;
       
   572         RandPassesCount: 6;
       
   573         canMirror: true; canFlip: false;
   534        )
   574        )
   535       );
   575       );
   536 
   576 
   537 
   577 
   538 
   578