Repository for lakemenbane
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.

150 lines
5.1 KiB

// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2022
// www.magicbane.com
package engine.devcmd.cmds;
import engine.devcmd.AbstractDevCmd;
import engine.gameManager.ZoneManager;
import engine.objects.AbstractGameObject;
import engine.objects.City;
import engine.objects.PlayerCharacter;
import engine.objects.Zone;
import engine.util.StringUtils;
import java.util.ArrayList;
/**
* @author
*/
public class ZoneInfoCmd extends AbstractDevCmd {
public ZoneInfoCmd() {
super("zoneinfo");
}
@Override
protected void _doCmd(PlayerCharacter player, String[] words,
AbstractGameObject target) {
// Arg Count Check
Zone zone = null;
if (player == null) {
throwbackError(player, "Unable to find the pc making the request.");
return;
}
try {
int targetID = Integer.parseInt(words[0]);
//try get zone by objectUUID
zone = ZoneManager.getZoneByUUID(targetID);
//that failed, try get by zoneID
if (zone == null)
zone = ZoneManager.getZoneByZoneID(targetID);
//no zone found, so fail
if (zone == null) {
throwbackError(player, "Zone with ID " + targetID + "not found");
return;
}
} catch (Exception e) {
zone = ZoneManager.findSmallestZone(player.getLoc());
}
if (zone == null) {
throwbackError(player, "Zone not found");
return;
}
String newline = "\r\n ";
int objectUUID = zone.getObjectUUID();
String output;
output = "Target Information:" + newline;
output += StringUtils.addWS("UUID: " + objectUUID, 20);
output += newline;
output += "name: " + zone.zoneName;
output += newline;
output += "loadNum: " + zone.zoneTemplate;
if (zone.parent != null) {
output += StringUtils.addWS(", parent: " + zone.parent.getObjectUUID(), 30);
output += "Parentabs: x: " + zone.parent.absX + ", y: " + zone.parent.absY + ", z: " + zone.parent.absZ;
} else
output += StringUtils.addWS(", parent: none", 30);
output += newline;
output += "absLoc: x: " + zone.absX + ", y: " + zone.absY + ", z: " + zone.absZ;
output += newline;
output += "offset: x: " + zone.xOffset + ", y: " + zone.yOffset + ", z: " + zone.zOffset;
output += newline;
output += "radius: x: " + zone.bounds.getHalfExtents().x + ", z: " + zone.bounds.getHalfExtents().y;
output += newline;
if (zone.getHeightMap() != null) {
output += "HeightMap ID: " + zone.getHeightMap().heightMapID;
output += newline;
output += "Bucket Width X : " + zone.getHeightMap().bucketWidthX;
output += newline;
output += "Bucket Width Y : " + zone.getHeightMap().bucketWidthY;
}
output += "radius: x: " + zone.bounds.getHalfExtents().x + ", z: " + zone.bounds.getHalfExtents().y;
output += newline;
// output += "minLvl = " + zone.getMinLvl() + " | maxLvl = " + zone.getMaxLvl();
output += newline;
output += "Sea Level = " + zone.seaLevel;
output += newline;
output += "World Altitude = " + zone.worldAltitude;
throwbackInfo(player, output);
City city = ZoneManager.getCityAtLocation(player.getLoc());
output += newline;
output += (city == null) ? "None" : city.getParent().zoneName;
if (city != null) {
if (city.isLocationOnCityGrid(player.getLoc()))
output += " (Grid)";
else if (city.isLocationOnCityZone(player.getLoc()))
output += " (Zone)";
else if (city.isLocationWithinSiegeBounds(player.getLoc()))
output += " (Siege)";
} else {
output = "children:";
ArrayList<Zone> nodes = zone.getNodes();
if (nodes.isEmpty())
output += " none";
for (Zone child : nodes) {
output += newline;
output += child.zoneName + " (" + child.zoneTemplate + ')';
}
}
throwbackInfo(player, output);
}
@Override
protected String _getHelpString() {
return "Gets information on an Object.";
}
@Override
protected String _getUsageString() {
return "' /info targetID'";
}
}