123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*
- * 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.clientpackets;
- import java.util.Calendar;
- import java.util.Date;
- import java.util.logging.Level;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.instancemanager.CastleManager;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Castle;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.SiegeInfo;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.util.Broadcast;
- /**
- * @author UnAfraid
- */
- public class RequestSetCastleSiegeTime extends L2GameClientPacket
- {
- private int _castleId;
- private long _time;
-
- @Override
- protected void readImpl()
- {
- _castleId = readD();
- _time = readD();
- _time *= 1000;
- }
-
- @Override
- protected void runImpl()
- {
- final L2PcInstance activeChar = getClient().getActiveChar();
- final Castle castle = CastleManager.getInstance().getCastleById(_castleId);
- if ((activeChar == null) || (castle == null))
- {
- _log.log(Level.WARNING, getType() + ": activeChar: " + activeChar + " castle: " + castle + " castleId: " + _castleId);
- return;
- }
- if ((castle.getOwnerId() > 0) && (castle.getOwnerId() != activeChar.getClanId()))
- {
- _log.log(Level.WARNING, getType() + ": activeChar: " + activeChar + " castle: " + castle + " castleId: " + _castleId + " is trying to change siege date of not his own castle!");
- return;
- }
- else if (!activeChar.isClanLeader())
- {
- _log.log(Level.WARNING, getType() + ": activeChar: " + activeChar + " castle: " + castle + " castleId: " + _castleId + " is trying to change siege date but is not clan leader!");
- return;
- }
- else if (!castle.getIsTimeRegistrationOver())
- {
- if (isSiegeTimeValid(castle.getSiegeDate().getTimeInMillis(), _time))
- {
- castle.getSiegeDate().setTimeInMillis(_time);
- castle.setIsTimeRegistrationOver(true);
- castle.getSiege().saveSiegeDate();
- SystemMessage msg = SystemMessage.getSystemMessage(SystemMessageId.S1_ANNOUNCED_SIEGE_TIME);
- msg.addCastleId(_castleId);
- Broadcast.toAllOnlinePlayers(msg);
- activeChar.sendPacket(new SiegeInfo(castle));
- }
- else
- {
- _log.log(Level.WARNING, getType() + ": activeChar: " + activeChar + " castle: " + castle + " castleId: " + _castleId + " is trying to an invalid time (" + new Date(_time) + " !");
- }
- }
- else
- {
- _log.log(Level.WARNING, getType() + ": activeChar: " + activeChar + " castle: " + castle + " castleId: " + _castleId + " is trying to change siege date but currently not possible!");
- }
- }
-
- private static boolean isSiegeTimeValid(long siegeDate, long choosenDate)
- {
- Calendar cal1 = Calendar.getInstance();
- cal1.setTimeInMillis(siegeDate);
- cal1.set(Calendar.MINUTE, 0);
- cal1.set(Calendar.SECOND, 0);
-
- Calendar cal2 = Calendar.getInstance();
- cal2.setTimeInMillis(choosenDate);
-
- for (int hour : Config.SIEGE_HOUR_LIST)
- {
- cal1.set(Calendar.HOUR_OF_DAY, hour);
- if (isEqual(cal1, cal2, Calendar.YEAR, Calendar.MONTH, Calendar.DAY_OF_MONTH, Calendar.HOUR, Calendar.MINUTE, Calendar.SECOND))
- {
- return true;
- }
- }
- return false;
- }
-
- private static boolean isEqual(Calendar cal1, Calendar cal2, int... fields)
- {
- for (int field : fields)
- {
- if (cal1.get(field) != cal2.get(field))
- {
- return false;
- }
- }
- return true;
- }
-
- @Override
- public String getType()
- {
- return getClass().getSimpleName();
- }
- }
|