Correctly fix the N/S direction

This commit is contained in:
snowleo 2011-10-15 01:13:24 +02:00
parent 6f77a2ba07
commit 200ef0c8e2
2 changed files with 40 additions and 13 deletions

View File

@ -15,17 +15,44 @@ public class Commandcompass extends EssentialsCommand
@Override @Override
public void run(Server server, User user, String commandLabel, String[] args) throws Exception public void run(Server server, User user, String commandLabel, String[] args) throws Exception
{ {
int r = (int)user.getLocation().getYaw(); int r = (int)(user.getLocation().getYaw() + 180 + 360) % 360;
String dir; String dir;
if (r < 23) dir = "N"; if (r < 23)
else if (r < 68) dir = "NE"; {
else if (r < 113) dir = "E"; dir = "N";
else if (r < 158) dir = "SE"; }
else if (r < 203) dir = "S"; else if (r < 68)
else if (r < 248) dir = "SW"; {
else if (r < 293) dir = "W"; dir = "NE";
else if (r < 338) dir = "NW"; }
else dir = "N"; else if (r < 113)
{
dir = "E";
}
else if (r < 158)
{
dir = "SE";
}
else if (r < 203)
{
dir = "S";
}
else if (r < 248)
{
dir = "SW";
}
else if (r < 293)
{
dir = "W";
}
else if (r < 338)
{
dir = "NW";
}
else
{
dir = "N";
}
user.sendMessage(Util.format("compassBearing", dir, r)); user.sendMessage(Util.format("compassBearing", dir, r));
} }
} }

View File

@ -16,10 +16,10 @@ public class Commandgetpos extends EssentialsCommand
public void run(Server server, User user, String commandLabel, String[] args) throws Exception public void run(Server server, User user, String commandLabel, String[] args) throws Exception
{ {
Location coords = user.getLocation(); Location coords = user.getLocation();
user.sendMessage("§7X: " + coords.getBlockX() + " (-North <-> +South)"); user.sendMessage("§7X: " + coords.getBlockX() + " (+East <-> -West)");
user.sendMessage("§7Y: " + coords.getBlockY() + " (+Up <-> -Down)"); user.sendMessage("§7Y: " + coords.getBlockY() + " (+Up <-> -Down)");
user.sendMessage("§7Z: " + coords.getBlockZ() + " (+East <-> -West)"); user.sendMessage("§7Z: " + coords.getBlockZ() + " (+South <-> -North)");
user.sendMessage("§7Yaw: " + coords.getYaw() + " (Rotation)"); user.sendMessage("§7Yaw: " + (coords.getYaw() + 180 + 360) % 360 + " (Rotation)");
user.sendMessage("§7Pitch: " + coords.getPitch() + " (Head angle)"); user.sendMessage("§7Pitch: " + coords.getPitch() + " (Head angle)");
} }
} }