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.
63 lines
2.6 KiB
63 lines
2.6 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.InterestManagement.HeightMap; |
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.gameManager.ZoneManager; |
|
import engine.objects.AbstractGameObject; |
|
import engine.objects.PlayerCharacter; |
|
import engine.objects.Zone; |
|
|
|
public class GetHeightCmd extends AbstractDevCmd { |
|
|
|
public GetHeightCmd() { |
|
super("getHeight"); |
|
this.addCmdString("height"); |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter playerCharacter, String[] words, |
|
AbstractGameObject target) { |
|
|
|
|
|
Zone currentZone; |
|
Zone parentZone; |
|
|
|
currentZone = ZoneManager.findSmallestZone(playerCharacter.getLoc()); |
|
parentZone = currentZone.getParent(); |
|
|
|
float currentHeight = HeightMap.getWorldHeight(currentZone, playerCharacter.getLoc()); |
|
float parentHeight = HeightMap.getWorldHeight(parentZone, playerCharacter.getLoc()); |
|
|
|
this.throwbackInfo(playerCharacter, "Current Altitude : " + currentHeight); |
|
this.throwbackInfo(playerCharacter, "Current Y : " + currentZone.getYCoord()); |
|
this.throwbackInfo(playerCharacter, "Parent Altitude : " + parentHeight); |
|
this.throwbackInfo(playerCharacter, "Parent Y : " + parentZone.getYCoord()); |
|
|
|
this.throwbackInfo(playerCharacter, "Character Height: " + playerCharacter.getCharacterHeight()); |
|
this.throwbackInfo(playerCharacter, "Character Height to start swimming: " + playerCharacter.centerHeight); |
|
|
|
this.throwbackInfo(playerCharacter, "Water Level : " + currentZone.getSeaLevel()); |
|
this.throwbackInfo(playerCharacter, "Character Water Level Above : " + (playerCharacter.getCharacterHeight() + currentHeight - currentZone.getSeaLevel())); |
|
|
|
} |
|
|
|
@Override |
|
protected String _getHelpString() { |
|
return "Temporarily Changes SubRace"; |
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "' /subrace mobBaseID"; |
|
} |
|
|
|
}
|
|
|