|
|
|
@ -12,7 +12,6 @@ package engine.devcmd.cmds;
@@ -12,7 +12,6 @@ package engine.devcmd.cmds;
|
|
|
|
|
import engine.InterestManagement.Terrain; |
|
|
|
|
import engine.devcmd.AbstractDevCmd; |
|
|
|
|
import engine.gameManager.ZoneManager; |
|
|
|
|
import engine.math.Bounds; |
|
|
|
|
import engine.math.Vector2f; |
|
|
|
|
import engine.objects.AbstractGameObject; |
|
|
|
|
import engine.objects.PlayerCharacter; |
|
|
|
@ -44,28 +43,15 @@ public class GetHeightCmd extends AbstractDevCmd {
@@ -44,28 +43,15 @@ public class GetHeightCmd extends AbstractDevCmd {
|
|
|
|
|
|
|
|
|
|
this.throwbackInfo(playerCharacter, "Current Zone : " + currentZone.zoneName); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Heightmap Zone : " + heightmapZone.zoneName); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Zone Height: " + heightmapZone.worldAltitude); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Global Height: " + heightmapZone.worldAltitude); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Sea Level: " + heightmapZone.seaLevel); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Drowning Height: " + (heightmapZone.seaLevel + playerCharacter.getCharacterHeight())); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Grid : " + (int) gridSquare.x + "x" + (int) gridSquare.y); |
|
|
|
|
this.throwbackInfo(playerCharacter, "*** 256: " + currentHeight); |
|
|
|
|
this.throwbackInfo(playerCharacter, "***Adjusted Height: " + (currentHeight + playerCharacter.getCharacterHeight())); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Grid : " + Math.floor(gridSquare.x) + "x" + Math.floor(gridSquare.y)); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Height returned: " + currentHeight); |
|
|
|
|
|
|
|
|
|
this.throwbackInfo(playerCharacter, "------------"); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Parent : " + parentZone.zoneName); |
|
|
|
|
this.throwbackInfo(playerCharacter, "Height returned : " + parentHeight); |
|
|
|
|
this.throwbackInfo(playerCharacter, "------------"); |
|
|
|
|
|
|
|
|
|
this.throwbackInfo(playerCharacter, "Min: " + heightmapZone.getHeightMap().zone_minBlend + " Max: " + heightmapZone.getHeightMap().zone_maxBlend); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Bounds.collide(playerCharacter.getLoc(), heightmapZone.blendBounds)) { |
|
|
|
|
this.throwbackInfo(playerCharacter, "Blend: Max (Child)"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.throwbackInfo(playerCharacter, "Blend: Min (LERP)"); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|