/*
* This program 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.
*
* This program 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.usercommandhandlers;
import java.util.Map;
import com.l2jserver.gameserver.handler.IUserCommandHandler;
import com.l2jserver.gameserver.instancemanager.InstanceManager;
import com.l2jserver.gameserver.instancemanager.InstanceManager.InstanceWorld;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
/**
*
* @author nille02
*/
public class InstanceZone implements IUserCommandHandler
{
private static final int[] COMMAND_IDS =
{
114
};
/**
* @see com.l2jserver.gameserver.handler.IUserCommandHandler#getUserCommandList()
*/
public int[] getUserCommandList()
{
return COMMAND_IDS;
}
/**
* @see com.l2jserver.gameserver.handler.IUserCommandHandler#useUserCommand(int, com.l2jserver.gameserver.model.actor.instance.L2PcInstance)
*/
public boolean useUserCommand(int id, L2PcInstance activeChar)
{
if (id != COMMAND_IDS[0])
return false;
final InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(activeChar);
if (world != null && world.templateId >= 0)
{
SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.INSTANT_ZONE_CURRENTLY_INUSE_S1);
sm.addString(InstanceManager.getInstance().getInstanceIdName(world.templateId));
activeChar.sendPacket(sm);
}
Map instanceTimes = InstanceManager.getInstance().getAllInstanceTimes(activeChar.getObjectId());
boolean firstMessage = true;
if (instanceTimes != null)
for(int instanceId : instanceTimes.keySet())
{
long remainingTime = (instanceTimes.get(instanceId) - System.currentTimeMillis()) / 1000;
if (remainingTime > 60)
{
if (firstMessage)
{
firstMessage = false;
activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.INSTANCE_ZONE_TIME_LIMIT));
}
int hours = (int) (remainingTime / 3600);
int minutes = (int) ((remainingTime%3600) / 60);
SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.AVAILABLE_AFTER_S1_S2_HOURS_S3_MINUTES);
sm.addString(InstanceManager.getInstance().getInstanceIdName(instanceId));
sm.addNumber(hours);
sm.addNumber(minutes);
activeChar.sendPacket(sm);
}
else
InstanceManager.getInstance().deleteInstanceTime(activeChar.getObjectId(), instanceId);
}
if (firstMessage)
activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NO_INSTANCEZONE_TIME_LIMIT));
return true;
}
}