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.
81 lines
2.8 KiB
81 lines
2.8 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
|
|
|
|
package engine.devcmd.cmds; |
|
|
|
import engine.devcmd.AbstractDevCmd; |
|
import engine.gameManager.ZoneManager; |
|
import engine.math.FastMath; |
|
import engine.net.client.msg.HotzoneChangeMsg; |
|
import engine.objects.AbstractGameObject; |
|
import engine.objects.PlayerCharacter; |
|
import engine.objects.Zone; |
|
import engine.server.world.WorldServer; |
|
|
|
/** |
|
* ./hotzone <- display the current hotzone & time remaining |
|
* ./hotzone random <- change hotzone to random new zone |
|
*/ |
|
|
|
public class HotzoneCmd extends AbstractDevCmd { |
|
|
|
public HotzoneCmd() { |
|
super("hotzone"); |
|
} |
|
|
|
@Override |
|
protected void _doCmd(PlayerCharacter playerCharacter, String[] words, |
|
AbstractGameObject target) { |
|
|
|
StringBuilder data = new StringBuilder(); |
|
String outString; |
|
|
|
for (String s : words) { |
|
data.append(s); |
|
data.append(' '); |
|
} |
|
|
|
String input = data.toString().trim(); |
|
|
|
if (input.length() == 0) { |
|
outString = "Current hotZone: " + ZoneManager.hotZone.getName() + "\r\n"; |
|
outString += "Available hotZones: " + ZoneManager.availableHotZones(); |
|
throwbackInfo(playerCharacter, outString); |
|
return; |
|
} |
|
|
|
if (input.equalsIgnoreCase("random")) { |
|
ZoneManager.generateAndSetRandomHotzone(); |
|
outString = "New hotZone: " + ZoneManager.hotZone.getName() + "\r\n"; |
|
outString += "Available hotZones: " + ZoneManager.availableHotZones(); |
|
throwbackInfo(playerCharacter, outString); |
|
return; |
|
} |
|
|
|
if (input.equalsIgnoreCase("reset")) { |
|
ZoneManager.resetHotZones(); |
|
throwbackInfo(playerCharacter, "Available hotZones: " + ZoneManager.availableHotZones()); |
|
return; |
|
} |
|
|
|
return; |
|
} |
|
@Override |
|
protected String _getHelpString() { |
|
return "Use no arguments to see the current hotzone or \"random\" to change it randomly."; |
|
} |
|
|
|
@Override |
|
protected String _getUsageString() { |
|
return "'./hotzone [random]"; |
|
} |
|
|
|
|
|
}
|
|
|