hedgewars/uLandTemplates.pas
changeset 712 e87cafcf0e2d
parent 711 8ff62133ac48
child 713 8d038c5e95be
equal deleted inserted replaced
711:8ff62133ac48 712:e87cafcf0e2d
   385       Template13FPoints: array[0..0] of TPoint =
   385       Template13FPoints: array[0..0] of TPoint =
   386       (
   386       (
   387        (x: 1023; y:    0)
   387        (x: 1023; y:    0)
   388       );
   388       );
   389 
   389 
   390 
   390 const Template14Points: array[0..13] of TSDL_Rect =
   391 const EdgeTemplates: array[0..13] of TEdgeTemplate =
   391       (
       
   392        (x:  286; y: 1024; w:    2; h:    2),
       
   393        (x:  244; y:  886; w:   84; h:   54),
       
   394        (x:  212; y:  686; w:  150; h:  166),
       
   395        (x:  678; y:  840; w:  186; h:   98),
       
   396        (x:  744; y:  604; w:  124; h:   58),
       
   397        (x:  620; y:  182; w:  112; h:  194),
       
   398        (x:  988; y:  260; w:   92; h:  132),
       
   399        (x: 1310; y:  174; w:  154; h:  196),
       
   400        (x: 1160; y:  574; w:  118; h:   64),
       
   401        (x: 1052; y:  822; w:  328; h:   92),
       
   402        (x: 1596; y:  630; w:  242; h:  222),
       
   403        (x: 1598; y:  916; w:  254; h:   50),
       
   404        (x: 1608; y: 1024; w:    2; h:    2),
       
   405        (x: NTPX; y:    0; w:    1; h:    1)
       
   406       );
       
   407       Template14FPoints: array[0..0] of TPoint =
       
   408       (
       
   409        (x: 1023; y:    0)
       
   410       );
       
   411 
       
   412 
       
   413 const EdgeTemplates: array[0..14] of TEdgeTemplate =
   392       (
   414       (
   393        (BasePoints: @Template0Points;
   415        (BasePoints: @Template0Points;
   394         BasePointsCount: Succ(High(Template0Points));
   416         BasePointsCount: Succ(High(Template0Points));
   395         FillPoints: @Template0FPoints;
   417         FillPoints: @Template0FPoints;
   396         FillPointsCount: Succ(High(Template0FPoints));
   418         FillPointsCount: Succ(High(Template0FPoints));
   499         FillPoints: @Template13FPoints;
   521         FillPoints: @Template13FPoints;
   500         FillPointsCount: Succ(High(Template13FPoints));
   522         FillPointsCount: Succ(High(Template13FPoints));
   501         BezierizeCount: 3;
   523         BezierizeCount: 3;
   502         RandPassesCount: 5;
   524         RandPassesCount: 5;
   503         canMirror: true; canFlip: false;
   525         canMirror: true; canFlip: false;
       
   526        ),
       
   527        (BasePoints: @Template14Points;
       
   528         BasePointsCount: Succ(High(Template14Points));
       
   529         FillPoints: @Template14FPoints;
       
   530         FillPointsCount: Succ(High(Template14FPoints));
       
   531         BezierizeCount: 3;
       
   532         RandPassesCount: 7;
       
   533         canMirror: true; canFlip: false;
   504        )
   534        )
   505       );
   535       );
   506 
   536 
   507 
   537 
   508 
   538