hedgewars/uLandTemplates.pas
changeset 714 341090f7e750
parent 713 8d038c5e95be
child 715 d8d7bfa88db2
equal deleted inserted replaced
713:8d038c5e95be 714:341090f7e750
   439       Template15FPoints: array[0..0] of TPoint =
   439       Template15FPoints: array[0..0] of TPoint =
   440       (
   440       (
   441        (x: 1023; y:    0)
   441        (x: 1023; y:    0)
   442       );
   442       );
   443 
   443 
   444 
   444 const Template16Points: array[0..28] of TSDL_Rect =
   445 const EdgeTemplates: array[0..15] of TEdgeTemplate =
   445       (
       
   446        (x:  300; y: 1024; w:    2; h:    2),
       
   447        (x:  394; y:  902; w:   58; h:   62),
       
   448        (x:  380; y:  770; w:   94; h:   90),
       
   449        (x:  186; y:  626; w:   80; h:  220),
       
   450        (x:  376; y:  600; w:   82; h:  118),
       
   451        (x:  182; y:  328; w:  134; h:  226),
       
   452        (x:  368; y:  328; w:   52; h:   52),
       
   453        (x:  472; y:  174; w:   56; h:  212),
       
   454        (x:  588; y:  322; w:   60; h:   62),
       
   455        (x:  718; y:  324; w:  108; h:  218),
       
   456        (x:  612; y:  516; w:   36; h:  168),
       
   457        (x:  728; y:  656; w:  140; h:  134),
       
   458        (x:  588; y:  850; w:   74; h:   82),
       
   459        (x:  750; y: 1024; w:  102; h:    2),
       
   460        (x: NTPX; y:    0; w:    1; h:    1),
       
   461        (x: 1304; y: 1024; w:   72; h:    2),
       
   462        (x: 1226; y:  908; w:  266; h:   34),
       
   463        (x: 1224; y:  748; w:  252; h:   80),
       
   464        (x: 1212; y:  576; w:  256; h:   94),
       
   465        (x: 1140; y:  434; w:  174; h:   86),
       
   466        (x: 1396; y:  318; w:  156; h:   96),
       
   467        (x: 1086; y:  214; w:  206; h:   66),
       
   468        (x: 1446; y:  156; w:  152; h:   40),
       
   469        (x: 1708; y:  272; w:   60; h:  162),
       
   470        (x: 1542; y:  488; w:  146; h:   80),
       
   471        (x: 1686; y:  634; w:  178; h:  122),
       
   472        (x: 1572; y:  820; w:   34; h:  124),
       
   473        (x: 1698; y: 1024; w:   52; h:    2),
       
   474        (x: NTPX; y:    0; w:    1; h:    1)
       
   475       );
       
   476       Template16FPoints: array[0..0] of TPoint =
       
   477       (
       
   478        (x: 1023; y:    0)
       
   479       );
       
   480 
       
   481 
       
   482 const EdgeTemplates: array[0..16] of TEdgeTemplate =
   446       (
   483       (
   447        (BasePoints: @Template0Points;
   484        (BasePoints: @Template0Points;
   448         BasePointsCount: Succ(High(Template0Points));
   485         BasePointsCount: Succ(High(Template0Points));
   449         FillPoints: @Template0FPoints;
   486         FillPoints: @Template0FPoints;
   450         FillPointsCount: Succ(High(Template0FPoints));
   487         FillPointsCount: Succ(High(Template0FPoints));
   569         FillPoints: @Template15FPoints;
   606         FillPoints: @Template15FPoints;
   570         FillPointsCount: Succ(High(Template15FPoints));
   607         FillPointsCount: Succ(High(Template15FPoints));
   571         BezierizeCount: 2;
   608         BezierizeCount: 2;
   572         RandPassesCount: 6;
   609         RandPassesCount: 6;
   573         canMirror: true; canFlip: false;
   610         canMirror: true; canFlip: false;
       
   611        ),
       
   612        (BasePoints: @Template16Points;
       
   613         BasePointsCount: Succ(High(Template16Points));
       
   614         FillPoints: @Template16FPoints;
       
   615         FillPointsCount: Succ(High(Template16FPoints));
       
   616         BezierizeCount: 2;
       
   617         RandPassesCount: 6;
       
   618         canMirror: true; canFlip: false;
   574        )
   619        )
   575       );
   620       );
   576 
   621 
   577 
   622 
   578 
   623