hedgewars/uLandTemplates.pas
changeset 527 e23490ce1f06
parent 524 c3b3d9ff7bb2
child 534 92fb2b0d5117
equal deleted inserted replaced
526:e3689572bb15 527:e23490ce1f06
   322       Template10FPoints: array[0..0] of TPoint =
   322       Template10FPoints: array[0..0] of TPoint =
   323       (
   323       (
   324        (x: 1023; y:    0)
   324        (x: 1023; y:    0)
   325       );
   325       );
   326 
   326 
   327 const EdgeTemplates: array[0..10] of TEdgeTemplate =
   327 const Template11Points: array[0..9] of TSDL_Rect =
       
   328       (
       
   329        (x:  274; y: 1024; w:  166; h:    1),
       
   330        (x:  330; y:  862; w:   96; h:   92),
       
   331        (x:  492; y:  690; w:  152; h:  250),
       
   332        (x:  746; y:  646; w:   36; h:  270),
       
   333        (x:  938; y:  626; w:   54; h:  224),
       
   334        (x: 1134; y:  646; w:   44; h:  216),
       
   335        (x: 1292; y:  630; w:   46; h:  300),
       
   336        (x: 1448; y:  664; w:  158; h:  272),
       
   337        (x: 1584; y: 1024; w:  136; h:    1),
       
   338        (x: NTPX; y:    0; w:    1; h:    1)
       
   339       );
       
   340       Template11FPoints: array[0..0] of TPoint =
       
   341       (
       
   342        (x: 1023; y:    0)
       
   343       );
       
   344 
       
   345 const EdgeTemplates: array[0..11] of TEdgeTemplate =
   328       (
   346       (
   329        (BasePoints: @Template0Points;
   347        (BasePoints: @Template0Points;
   330         BasePointsCount: Succ(High(Template0Points));
   348         BasePointsCount: Succ(High(Template0Points));
   331         FillPoints: @Template0FPoints;
   349         FillPoints: @Template0FPoints;
   332         FillPointsCount: Succ(High(Template0FPoints));
   350         FillPointsCount: Succ(High(Template0FPoints));
   411         FillPoints: @Template10FPoints;
   429         FillPoints: @Template10FPoints;
   412         FillPointsCount: Succ(High(Template10FPoints));
   430         FillPointsCount: Succ(High(Template10FPoints));
   413         BezierizeCount: 3;
   431         BezierizeCount: 3;
   414         RandPassesCount: 2;
   432         RandPassesCount: 2;
   415         canMirror: true; canFlip: false;
   433         canMirror: true; canFlip: false;
       
   434        ),
       
   435        (BasePoints: @Template11Points;
       
   436         BasePointsCount: Succ(High(Template11Points));
       
   437         FillPoints: @Template11FPoints;
       
   438         FillPointsCount: Succ(High(Template11FPoints));
       
   439         BezierizeCount: 2;
       
   440         RandPassesCount: 5;
       
   441         canMirror: true; canFlip: false;
   416        )
   442        )
   417       );
   443       );
   418 
   444 
   419 
   445 
   420 
   446