123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- package handlers.usercommandhandlers;
- import com.l2jserver.gameserver.handler.IUserCommandHandler;
- import com.l2jserver.gameserver.instancemanager.SiegeManager;
- import com.l2jserver.gameserver.model.L2Clan;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Siege;
- import com.l2jserver.gameserver.model.zone.type.L2SiegeZone;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- /**
- * @author Tryskell
- */
- public class SiegeStatus implements IUserCommandHandler
- {
- private static final int[] COMMAND_IDS =
- {
- 99
- };
-
- private static final String INSIDE_SIEGE_ZONE = "Castle Siege in Progress";
- private static final String OUTSIDE_SIEGE_ZONE = "No Castle Siege Area";
-
- @Override
- public boolean useUserCommand(int id, L2PcInstance activeChar)
- {
- if (id != COMMAND_IDS[0])
- {
- return false;
- }
-
- if (!activeChar.isNoble() || !activeChar.isClanLeader())
- {
- activeChar.sendPacket(SystemMessageId.ONLY_NOBLESSE_LEADER_CAN_VIEW_SIEGE_STATUS_WINDOW);
- return false;
- }
-
- for (Siege siege : SiegeManager.getInstance().getSieges())
- {
- if (!siege.isInProgress())
- {
- continue;
- }
-
- final L2Clan clan = activeChar.getClan();
- if (!siege.checkIsAttacker(clan) && !siege.checkIsDefender(clan))
- {
- continue;
- }
-
- final L2SiegeZone siegeZone = siege.getCastle().getZone();
- final StringBuilder sb = new StringBuilder();
- for (L2PcInstance member : clan.getOnlineMembers(0))
- {
- sb.append("<tr><td width=170>");
- sb.append(member.getName());
- sb.append("</td><td width=100>");
- sb.append(siegeZone.isInsideZone(member) ? INSIDE_SIEGE_ZONE : OUTSIDE_SIEGE_ZONE);
- sb.append("</td></tr>");
- }
-
- final NpcHtmlMessage html = new NpcHtmlMessage();
- html.setFile(activeChar.getHtmlPrefix(), "data/html/siege/siege_status.htm");
- html.replace("%kill_count%", clan.getSiegeKills());
- html.replace("%death_count%", clan.getSiegeDeaths());
- html.replace("%member_list%", sb.toString());
- activeChar.sendPacket(html);
-
- return true;
- }
-
- activeChar.sendPacket(SystemMessageId.ONLY_NOBLESSE_LEADER_CAN_VIEW_SIEGE_STATUS_WINDOW);
-
- return false;
- }
-
- @Override
- public int[] getUserCommandList()
- {
- return COMMAND_IDS;
- }
-
- }
|