123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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 Server 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 com.l2jserver.gameserver.network.serverpackets;
- import java.util.Calendar;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.data.sql.impl.ClanTable;
- import com.l2jserver.gameserver.instancemanager.CHSiegeManager;
- import com.l2jserver.gameserver.model.L2Clan;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Castle;
- import com.l2jserver.gameserver.model.entity.ClanHall;
- /**
- * Shows the Siege Info<BR>
- * <BR>
- * c = c9<BR>
- * d = CastleID<BR>
- * d = Show Owner Controls (0x00 default || >=0x02(mask?) owner)<BR>
- * d = Owner ClanID<BR>
- * S = Owner ClanName<BR>
- * S = Owner Clan LeaderName<BR>
- * d = Owner AllyID<BR>
- * S = Owner AllyName<BR>
- * d = current time (seconds)<BR>
- * d = Siege time (seconds) (0 for selectable)<BR>
- * d = (UNKNOW) Siege Time Select Related?
- * @author KenM
- */
- public class SiegeInfo extends L2GameServerPacket
- {
- private Castle _castle;
- private ClanHall _hall;
-
- public SiegeInfo(Castle castle)
- {
- _castle = castle;
- }
-
- public SiegeInfo(ClanHall hall)
- {
- _hall = hall;
- }
-
- @Override
- protected final void writeImpl()
- {
- L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- {
- return;
- }
-
- writeC(0xc9);
- if (_castle != null)
- {
- writeD(_castle.getResidenceId());
-
- final int ownerId = _castle.getOwnerId();
-
- writeD(((ownerId == activeChar.getClanId()) && (activeChar.isClanLeader())) ? 0x01 : 0x00);
- writeD(ownerId);
- if (ownerId > 0)
- {
- L2Clan owner = ClanTable.getInstance().getClan(ownerId);
- if (owner != null)
- {
- writeS(owner.getName()); // Clan Name
- writeS(owner.getLeaderName()); // Clan Leader Name
- writeD(owner.getAllyId()); // Ally ID
- writeS(owner.getAllyName()); // Ally Name
- }
- else
- {
- _log.warning("Null owner for castle: " + _castle.getName());
- }
- }
- else
- {
- writeS(""); // Clan Name
- writeS(""); // Clan Leader Name
- writeD(0); // Ally ID
- writeS(""); // Ally Name
- }
-
- writeD((int) (System.currentTimeMillis() / 1000));
- if (!_castle.getIsTimeRegistrationOver() && activeChar.isClanLeader() && (activeChar.getClanId() == _castle.getOwnerId()))
- {
- Calendar cal = Calendar.getInstance();
- cal.setTimeInMillis(_castle.getSiegeDate().getTimeInMillis());
- cal.set(Calendar.MINUTE, 0);
- cal.set(Calendar.SECOND, 0);
-
- writeD(0x00);
- writeD(Config.SIEGE_HOUR_LIST.size());
- for (int hour : Config.SIEGE_HOUR_LIST)
- {
- cal.set(Calendar.HOUR_OF_DAY, hour);
- writeD((int) (cal.getTimeInMillis() / 1000));
- }
- }
- else
- {
- writeD((int) (_castle.getSiegeDate().getTimeInMillis() / 1000));
- writeD(0x00);
- }
- }
- else
- {
- writeD(_hall.getId());
-
- final int ownerId = _hall.getOwnerId();
-
- writeD(((ownerId == activeChar.getClanId()) && (activeChar.isClanLeader())) ? 0x01 : 0x00);
- writeD(ownerId);
- if (ownerId > 0)
- {
- L2Clan owner = ClanTable.getInstance().getClan(ownerId);
- if (owner != null)
- {
- writeS(owner.getName()); // Clan Name
- writeS(owner.getLeaderName()); // Clan Leader Name
- writeD(owner.getAllyId()); // Ally ID
- writeS(owner.getAllyName()); // Ally Name
- }
- else
- {
- _log.warning("Null owner for siegable hall: " + _hall.getName());
- }
- }
- else
- {
- writeS(""); // Clan Name
- writeS(""); // Clan Leader Name
- writeD(0); // Ally ID
- writeS(""); // Ally Name
- }
-
- writeD((int) (Calendar.getInstance().getTimeInMillis() / 1000));
- writeD((int) ((CHSiegeManager.getInstance().getSiegableHall(_hall.getId()).getNextSiegeTime()) / 1000));
- writeD(0x00); // number of choices?
- }
- }
- }
|