/* * Copyright (C) 2004-2015 L2J DataPack * * This file is part of L2J DataPack. * * L2J DataPack is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * L2J DataPack is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package handlers.admincommandhandlers; import java.util.Map; import java.util.StringTokenizer; import com.l2jserver.gameserver.handler.IAdminCommandHandler; import com.l2jserver.gameserver.instancemanager.InstanceManager; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jserver.gameserver.util.GMAudit; import com.l2jserver.util.StringUtil; public class AdminInstanceZone implements IAdminCommandHandler { private static final String[] ADMIN_COMMANDS = { "admin_instancezone", "admin_instancezone_clear" }; @Override public boolean useAdminCommand(String command, L2PcInstance activeChar) { String target = (activeChar.getTarget() != null) ? activeChar.getTarget().getName() : "no-target"; GMAudit.auditGMAction(activeChar.getName(), command, target, ""); if (command.startsWith("admin_instancezone_clear")) { try { StringTokenizer st = new StringTokenizer(command, " "); st.nextToken(); final L2PcInstance player = L2World.getInstance().getPlayer(st.nextToken()); final int instanceId = Integer.parseInt(st.nextToken()); final String name = InstanceManager.getInstance().getInstanceIdName(instanceId); InstanceManager.getInstance().deleteInstanceTime(player.getObjectId(), instanceId); activeChar.sendMessage("Instance zone " + name + " cleared for player " + player.getName()); player.sendMessage("Admin cleared instance zone " + name + " for you"); return true; } catch (Exception e) { activeChar.sendMessage("Failed clearing instance time: " + e.getMessage()); activeChar.sendMessage("Usage: //instancezone_clear [instanceId]"); return false; } } else if (command.startsWith("admin_instancezone")) { StringTokenizer st = new StringTokenizer(command, " "); command = st.nextToken(); if (st.hasMoreTokens()) { L2PcInstance player = null; String playername = st.nextToken(); try { player = L2World.getInstance().getPlayer(playername); } catch (Exception e) { } if (player != null) { display(player, activeChar); } else { activeChar.sendMessage("The player " + playername + " is not online"); activeChar.sendMessage("Usage: //instancezone [playername]"); return false; } } else if (activeChar.getTarget() != null) { if (activeChar.getTarget() instanceof L2PcInstance) { display((L2PcInstance) activeChar.getTarget(), activeChar); } } else { display(activeChar, activeChar); } } return true; } @Override public String[] getAdminCommandList() { return ADMIN_COMMANDS; } private void display(L2PcInstance player, L2PcInstance activeChar) { Map instanceTimes = InstanceManager.getInstance().getAllInstanceTimes(player.getObjectId()); final StringBuilder html = StringUtil.startAppend(500 + (instanceTimes.size() * 200), "
" + "" + "" + "" + "
Character Instances

Instances for ", player.getName(), "

" + "" + ""); for (int id : instanceTimes.keySet()) { int hours = 0; int minutes = 0; long remainingTime = (instanceTimes.get(id) - System.currentTimeMillis()) / 1000; if (remainingTime > 0) { hours = (int) (remainingTime / 3600); minutes = (int) ((remainingTime % 3600) / 60); } StringUtil.append(html, ""); } StringUtil.append(html, "
NameTimeAction
", InstanceManager.getInstance().getInstanceIdName(id), "", String.valueOf(hours), ":", String.valueOf(minutes), "
"); final NpcHtmlMessage ms = new NpcHtmlMessage(); ms.setHtml(html.toString()); activeChar.sendPacket(ms); } }