hedgewars/uVariables.pas
branchqmlfrontend
changeset 10748 dc587913987c
parent 10606 8e95911cb86b
parent 10633 2f062fac5791
child 10817 48a53259fad8
equal deleted inserted replaced
10616:20a2d5e6930a 10748:dc587913987c
   184     cZoomDelta      : real;
   184     cZoomDelta      : real;
   185     cMinMaxZoomLevelDelta : real;
   185     cMinMaxZoomLevelDelta : real;
   186 
   186 
   187 
   187 
   188     flagMakeCapture : boolean;
   188     flagMakeCapture : boolean;
       
   189     flagDumpLand    : boolean;
   189 
   190 
   190     InitStepsFlags  : Longword;
   191     InitStepsFlags  : Longword;
   191     RealTicks       : Longword;
   192     RealTicks       : Longword;
   192     AttackBar       : LongInt;
   193     AttackBar       : LongInt;
   193 
   194 
  2582     WeaponTooltipTex:= nil;
  2583     WeaponTooltipTex:= nil;
  2583     cLaserSighting  := false;
  2584     cLaserSighting  := false;
  2584     cVampiric       := false;
  2585     cVampiric       := false;
  2585     cArtillery      := false;
  2586     cArtillery      := false;
  2586     flagMakeCapture := false;
  2587     flagMakeCapture := false;
       
  2588     flagDumpLand    := false;
  2587     bBetweenTurns   := false;
  2589     bBetweenTurns   := false;
  2588     bWaterRising    := false;
  2590     bWaterRising    := false;
  2589     isCursorVisible := false;
  2591     isCursorVisible := false;
  2590     isInLag         := false;
  2592     isInLag         := false;
  2591     isPaused        := false;
  2593     isPaused        := false;
  2610     cRightScreenBorder:= round(cMinZoomLevel * cScreenWidth + LAND_WIDTH);
  2612     cRightScreenBorder:= round(cMinZoomLevel * cScreenWidth + LAND_WIDTH);
  2611     cScreenSpace:= cRightScreenBorder - cLeftScreenBorder;
  2613     cScreenSpace:= cRightScreenBorder - cLeftScreenBorder;
  2612 
  2614 
  2613     dirtyLandTexCount:= 0;
  2615     dirtyLandTexCount:= 0;
  2614 
  2616 
  2615     vobFrameTicks:= 99999;
  2617     vobFrameTicks:= 0;
  2616     vobFramesCount:= 4;
  2618     vobFramesCount:= 4;
  2617     vobCount:= 0;
  2619     vobCount:= 0;
  2618     vobVelocity:= 10;
  2620     vobVelocity:= 10;
  2619     vobFallSpeed:= 100;
  2621     vobFallSpeed:= 100;
  2620 
  2622 
  2621     vobSDFrameTicks:= 99999;
  2623     vobSDFrameTicks:= 0;
  2622     vobSDFramesCount:= 4;
  2624     vobSDFramesCount:= 4;
  2623     vobSDCount:= 30 * cScreenSpace div LAND_WIDTH;
  2625     vobSDCount:= 30 * cScreenSpace div LAND_WIDTH;
  2624     vobSDVelocity:= 15;
  2626     vobSDVelocity:= 15;
  2625     vobSDFallSpeed:= 250;
  2627     vobSDFallSpeed:= 250;
  2626 
  2628