/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.handler.usercommandhandlers;
import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.datatables.SkillTable;
import com.l2jfrozen.gameserver.handler.IUserCommandHandler;
import com.l2jfrozen.gameserver.model.L2Character;
import com.l2jfrozen.gameserver.model.L2Party;
import com.l2jfrozen.gameserver.model.TradeList;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.model.entity.olympiad.Olympiad;
import com.l2jfrozen.gameserver.model.entity.sevensigns.SevenSignsFestival;
import com.l2jfrozen.gameserver.network.SystemMessageId;
import com.l2jfrozen.gameserver.network.serverpackets.ActionFailed;
import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage;
import com.l2jfrozen.gameserver.taskmanager.AttackStanceTaskManager;
/**
* Command /offline_shop like L2OFF
* @author Nefer
*/
public class OfflineShop implements IUserCommandHandler
{
private static final int[] COMMAND_IDS =
{
114
};
/*
* (non-Javadoc)
* @see com.l2jfrozen.gameserver.handler.IUserCommandHandler#useUserCommand(int, com.l2jfrozen.gameserver.model.L2PcInstance)
*/
@SuppressWarnings("null")
@Override
public synchronized boolean useUserCommand(int id, L2PcInstance player)
{
if (player == null)
return false;
// Message like L2OFF
if ((!player.isInStoreMode() && (!player.isInCraftMode())) || !player.isSitting())
{
player.sendMessage("You are not running a private store or private work shop.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
if (player.isInFunEvent() && !player.isGM())
{
player.sendMessage("You cannot Logout while in registered in an Event.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
TradeList storeListBuy = player.getBuyList();
if (storeListBuy == null && storeListBuy.getItemCount() == 0)
{
player.sendMessage("Your buy list is empty.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
TradeList storeListSell = player.getSellList();
if (storeListSell == null && storeListSell.getItemCount() == 0)
{
player.sendMessage("Your sell list is empty.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
if (player.isAway())
{
player.sendMessage("You can't restart in Away mode.");
return false;
}
player.getInventory().updateDatabase();
if (AttackStanceTaskManager.getInstance().getAttackStanceTask(player) && !(player.isGM() && Config.GM_RESTART_FIGHTING))
{
player.sendPacket(new SystemMessage(SystemMessageId.CANT_LOGOUT_WHILE_FIGHTING));
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
// Dont allow leaving if player is in combat
if (player.isInCombat() && !player.isGM())
{
player.sendMessage("You cannot Logout while is in Combat mode.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
// Dont allow leaving if player is teleporting
if (player.isTeleporting() && !player.isGM())
{
player.sendMessage("You cannot Logout while is Teleporting.");
player.sendPacket(ActionFailed.STATIC_PACKET);
return false;
}
if (player.atEvent)
{
player.sendPacket(SystemMessage.sendString("A superior power doesn't allow you to leave the event."));
return false;
}
if (player.isInOlympiadMode() || Olympiad.getInstance().isRegistered(player))
{
player.sendMessage("You can't Logout in Olympiad mode.");
return false;
}
// Prevent player from logging out if they are a festival participant nd it is in progress,
// otherwise notify party members that the player is not longer a participant.
if (player.isFestivalParticipant())
{
if (SevenSignsFestival.getInstance().isFestivalInitialized())
{
player.sendMessage("You cannot Logout while you are a participant in a Festival.");
return false;
}
L2Party playerParty = player.getParty();
if (playerParty != null)
player.getParty().broadcastToPartyMembers(SystemMessage.sendString(player.getName() + " has been removed from the upcoming Festival."));
}
if (player.isFlying())
player.removeSkill(SkillTable.getInstance().getInfo(4289, 1));
if ((player.isInStoreMode() && Config.OFFLINE_TRADE_ENABLE) || (player.isInCraftMode() && Config.OFFLINE_CRAFT_ENABLE))
{
// Sleep effect, not official feature but however L2OFF features (like offline trade)
player.startAbnormalEffect(L2Character.ABNORMAL_EFFECT_SLEEP);
player.sendMessage("Your private store has succesfully been flagged as an offline shop and will remain active for ever.");
player.setStored(true);
return true;
}
return false;
}
/*
* (non-Javadoc)
* @see com.l2jfrozen.gameserver.handler.IUserCommandHandler#getUserCommandList()
*/
@Override
public int[] getUserCommandList()
{
return COMMAND_IDS;
}
}