forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.0 KiB
67 lines
3.0 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.InterestManagement.Terrain; |
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.gameManager.ZoneManager; |
|
import engine.math.Vector2f; |
|
import engine.objects.AbstractGameObject; |
|
import engine.objects.PlayerCharacter; |
|
import engine.objects.Zone; |
|
|
|
public class GetHeightCmd extends AbstractDevCmd { |
|
|
|
public GetHeightCmd() { |
|
super("getHeight"); |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter playerCharacter, String[] words, |
|
AbstractGameObject target) { |
|
|
|
Zone currentZone; |
|
Zone parentZone; |
|
Zone heightmapZone; |
|
|
|
currentZone = ZoneManager.findSmallestZone(playerCharacter.getLoc()); |
|
heightmapZone = Terrain.getNextZoneWithTerrain(currentZone); |
|
parentZone = Terrain.getNextZoneWithTerrain(currentZone.parent); |
|
|
|
float currentHeight = Terrain.getWorldHeight(currentZone, playerCharacter.getLoc()); |
|
float parentHeight = Terrain.getWorldHeight(parentZone, playerCharacter.getLoc()); |
|
|
|
Vector2f zoneLoc = ZoneManager.worldToZoneSpace(playerCharacter.getLoc(), heightmapZone); |
|
Vector2f gridSquare = heightmapZone.getHeightMap().getTerrainCell(zoneLoc); |
|
|
|
this.throwbackInfo(playerCharacter, "Current Zone : " + currentZone.zoneName); |
|
this.throwbackInfo(playerCharacter, "Heightmap Zone : " + heightmapZone.zoneName); |
|
this.throwbackInfo(playerCharacter, "Global Height: " + heightmapZone.worldAltitude); |
|
this.throwbackInfo(playerCharacter, "Sea Level: " + heightmapZone.seaLevel); |
|
this.throwbackInfo(playerCharacter, "Grid : " + Math.floor(gridSquare.x) + "x" + Math.floor(gridSquare.y)); |
|
this.throwbackInfo(playerCharacter, "Height returned: " + Math.ceil(currentHeight)); |
|
|
|
this.throwbackInfo(playerCharacter, "------------"); |
|
this.throwbackInfo(playerCharacter, "Parent : " + parentZone.zoneName); |
|
this.throwbackInfo(playerCharacter, "Height returned : " + Math.ceil(parentHeight)); |
|
this.throwbackInfo(playerCharacter, "------------"); |
|
} |
|
|
|
@Override |
|
protected String _getHelpString() { |
|
return "Queries heightmap engine"; |
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "' /getheight"; |
|
} |
|
|
|
}
|
|
|