hedgewars/uLandTemplates.pas
changeset 715 d8d7bfa88db2
parent 714 341090f7e750
child 883 07a568ba44e0
equal deleted inserted replaced
714:341090f7e750 715:d8d7bfa88db2
   476       Template16FPoints: array[0..0] of TPoint =
   476       Template16FPoints: array[0..0] of TPoint =
   477       (
   477       (
   478        (x: 1023; y:    0)
   478        (x: 1023; y:    0)
   479       );
   479       );
   480 
   480 
   481 
   481 const Template17Points: array[0..13] of TSDL_Rect =
   482 const EdgeTemplates: array[0..16] of TEdgeTemplate =
   482       (
       
   483        (x:  230; y: 1024; w:    2; h:    2),
       
   484        (x:  166; y:  856; w:  128; h:  118),
       
   485        (x:  352; y:  856; w:   98; h:  114),
       
   486        (x:  348; y:  674; w:  140; h:  138),
       
   487        (x:  556; y:  672; w:  136; h:  142),
       
   488        (x:  746; y:  670; w:  114; h:  252),
       
   489        (x:  924; y:  378; w:  120; h:  390),
       
   490        (x: 1122; y:  462; w:  114; h:  210),
       
   491        (x: 1324; y:  306; w:  130; h:  252),
       
   492        (x: 1536; y:  206; w:  278; h:  234),
       
   493        (x: 1524; y:  644; w:  272; h:   52),
       
   494        (x: 1572; y:  852; w:  180; h:   56),
       
   495        (x: 1598; y: 1024; w:   42; h:    2),
       
   496        (x: NTPX; y:    0; w:    1; h:    1)
       
   497       );
       
   498       Template17FPoints: array[0..0] of TPoint =
       
   499       (
       
   500        (x: 1023; y:    0)
       
   501       );
       
   502 
       
   503 
       
   504 const EdgeTemplates: array[0..17] of TEdgeTemplate =
   483       (
   505       (
   484        (BasePoints: @Template0Points;
   506        (BasePoints: @Template0Points;
   485         BasePointsCount: Succ(High(Template0Points));
   507         BasePointsCount: Succ(High(Template0Points));
   486         FillPoints: @Template0FPoints;
   508         FillPoints: @Template0FPoints;
   487         FillPointsCount: Succ(High(Template0FPoints));
   509         FillPointsCount: Succ(High(Template0FPoints));
   614         FillPoints: @Template16FPoints;
   636         FillPoints: @Template16FPoints;
   615         FillPointsCount: Succ(High(Template16FPoints));
   637         FillPointsCount: Succ(High(Template16FPoints));
   616         BezierizeCount: 2;
   638         BezierizeCount: 2;
   617         RandPassesCount: 6;
   639         RandPassesCount: 6;
   618         canMirror: true; canFlip: false;
   640         canMirror: true; canFlip: false;
       
   641        ),
       
   642        (BasePoints: @Template17Points;
       
   643         BasePointsCount: Succ(High(Template17Points));
       
   644         FillPoints: @Template17FPoints;
       
   645         FillPointsCount: Succ(High(Template17FPoints));
       
   646         BezierizeCount: 3;
       
   647         RandPassesCount: 7;
       
   648         canMirror: true; canFlip: false;
   619        )
   649        )
   620       );
   650       );
   621 
   651 
   622 
   652 
   623 
   653