hedgewars/uLandTemplates.pas
changeset 405 339d7735d829
parent 403 282b00e559bd
child 429 7f69c7ac2e97
equal deleted inserted replaced
404:64a62b679b04 405:339d7735d829
   194       Template5FPoints: array[0..0] of TPoint =
   194       Template5FPoints: array[0..0] of TPoint =
   195       (
   195       (
   196        (x: 1023; y:    0)
   196        (x: 1023; y:    0)
   197       );
   197       );
   198 
   198 
   199 const EdgeTemplates: array[0..5] of TEdgeTemplate =
   199 const Template6Points: array[0..13] of TSDL_Rect =
       
   200       (
       
   201        (x:  368; y: 1022; w:    2; h:    2),
       
   202        (x:  266; y:  840; w:  302; h:  110),
       
   203        (x:  294; y:  512; w:  104; h:  290),
       
   204        (x:  570; y:  580; w:  364; h:  122),
       
   205        (x:  568; y:  440; w:  368; h:  100),
       
   206        (x:  232; y:  260; w:  482; h:  130),
       
   207        (x:  778; y:  242; w:   62; h:   64),
       
   208        (x:  990; y:  154; w:   58; h:  246),
       
   209        (x: 1200; y:  276; w:  590; h:   98),
       
   210        (x: 1088; y:  442; w:  214; h:  188),
       
   211        (x: 1050; y:  686; w:  406; h:   92),
       
   212        (x: 1584; y:  502; w:  190; h:  412),
       
   213        (x: 1646; y: 1020; w:    2; h:    2),
       
   214        (x: NTPX; y:    0; w:    1; h:    1)
       
   215        );
       
   216 
       
   217       Template6FPoints: array[0..0] of TPoint =
       
   218       (
       
   219        (x: 1023; y:    0)
       
   220       );
       
   221 
       
   222 const EdgeTemplates: array[0..6] of TEdgeTemplate =
   200       (
   223       (
   201        (BasePoints: @Template0Points;
   224        (BasePoints: @Template0Points;
   202         BasePointsCount: Succ(High(Template0Points));
   225         BasePointsCount: Succ(High(Template0Points));
   203         FillPoints: @Template0FPoints;
   226         FillPoints: @Template0FPoints;
   204         FillPointsCount: Succ(High(Template0FPoints));
   227         FillPointsCount: Succ(High(Template0FPoints));
   237         BasePointsCount: Succ(High(Template5Points));
   260         BasePointsCount: Succ(High(Template5Points));
   238         FillPoints: @Template5FPoints;
   261         FillPoints: @Template5FPoints;
   239         FillPointsCount: Succ(High(Template5FPoints));
   262         FillPointsCount: Succ(High(Template5FPoints));
   240         RandPassesCount: 3;
   263         RandPassesCount: 3;
   241         canMirror: true; canFlip: false;
   264         canMirror: true; canFlip: false;
       
   265        ),
       
   266        (BasePoints: @Template6Points;
       
   267         BasePointsCount: Succ(High(Template6Points));
       
   268         FillPoints: @Template6FPoints;
       
   269         FillPointsCount: Succ(High(Template6FPoints));
       
   270         RandPassesCount: 3;
       
   271         canMirror: true; canFlip: false;
   242        )
   272        )
   243       );
   273       );
   244 
   274 
   245 
   275 
   246 
   276