hedgewars/uLandTemplates.pas
changeset 711 8ff62133ac48
parent 710 760e34b8b4e4
child 712 e87cafcf0e2d
equal deleted inserted replaced
710:760e34b8b4e4 711:8ff62133ac48
   361       Template12FPoints: array[0..0] of TPoint =
   361       Template12FPoints: array[0..0] of TPoint =
   362       (
   362       (
   363        (x: 1023; y:    0)
   363        (x: 1023; y:    0)
   364       );
   364       );
   365 
   365 
   366 const EdgeTemplates: array[0..12] of TEdgeTemplate =
   366 const Template13Points: array[0..15] of TSDL_Rect =
       
   367       (
       
   368        (x:  446; y: 1024; w:  140; h:    2),
       
   369        (x:  280; y:  872; w:  196; h:   32),
       
   370        (x:  254; y:  680; w:  262; h:  134),
       
   371        (x:  654; y:  672; w:  220; h:  136),
       
   372        (x:  608; y:  490; w:  268; h:  110),
       
   373        (x:  300; y:  362; w:  104; h:  200),
       
   374        (x:  446; y:  224; w:  306; h:   58),
       
   375        (x:  916; y:  188; w:   84; h:  206),
       
   376        (x: 1148; y:  174; w:  104; h:  220),
       
   377        (x: 1426; y:  176; w:  120; h:  202),
       
   378        (x: 1556; y:  418; w:  192; h:   68),
       
   379        (x: 1226; y:  548; w:  246; h:   88),
       
   380        (x: 1256; y:  706; w:  194; h:  150),
       
   381        (x: 1568; y:  706; w:  198; h:  152),
       
   382        (x: 1444; y: 1024; w:    2; h:    2),
       
   383        (x: NTPX; y:    0; w:    1; h:    1)
       
   384       );
       
   385       Template13FPoints: array[0..0] of TPoint =
       
   386       (
       
   387        (x: 1023; y:    0)
       
   388       );
       
   389 
       
   390 
       
   391 const EdgeTemplates: array[0..13] of TEdgeTemplate =
   367       (
   392       (
   368        (BasePoints: @Template0Points;
   393        (BasePoints: @Template0Points;
   369         BasePointsCount: Succ(High(Template0Points));
   394         BasePointsCount: Succ(High(Template0Points));
   370         FillPoints: @Template0FPoints;
   395         FillPoints: @Template0FPoints;
   371         FillPointsCount: Succ(High(Template0FPoints));
   396         FillPointsCount: Succ(High(Template0FPoints));
   465         BasePointsCount: Succ(High(Template12Points));
   490         BasePointsCount: Succ(High(Template12Points));
   466         FillPoints: @Template12FPoints;
   491         FillPoints: @Template12FPoints;
   467         FillPointsCount: Succ(High(Template12FPoints));
   492         FillPointsCount: Succ(High(Template12FPoints));
   468         BezierizeCount: 3;
   493         BezierizeCount: 3;
   469         RandPassesCount: 8;
   494         RandPassesCount: 8;
   470         canMirror: false; canFlip: false;
   495         canMirror: true; canFlip: false;
       
   496        ),
       
   497        (BasePoints: @Template13Points;
       
   498         BasePointsCount: Succ(High(Template13Points));
       
   499         FillPoints: @Template13FPoints;
       
   500         FillPointsCount: Succ(High(Template13FPoints));
       
   501         BezierizeCount: 3;
       
   502         RandPassesCount: 5;
       
   503         canMirror: true; canFlip: false;
   471        )
   504        )
   472       );
   505       );
   473 
   506 
   474 
   507 
   475 
   508