123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * 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.bypasshandlers;
- import java.util.logging.Level;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.handler.IBypassHandler;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- import com.l2jserver.gameserver.network.serverpackets.SortedWareHouseWithdrawalList;
- import com.l2jserver.gameserver.network.serverpackets.SortedWareHouseWithdrawalList.WarehouseListType;
- import com.l2jserver.gameserver.network.serverpackets.WareHouseDepositList;
- import com.l2jserver.gameserver.network.serverpackets.WareHouseWithdrawalList;
- public class PrivateWarehouse implements IBypassHandler
- {
- private static final String[] COMMANDS =
- {
- "withdrawp",
- "withdrawsortedp",
- "depositp"
- };
-
- @Override
- public boolean useBypass(String command, L2PcInstance activeChar, L2Character target)
- {
- if (!target.isNpc())
- {
- return false;
- }
-
- if (activeChar.isEnchanting())
- {
- return false;
- }
-
- try
- {
- if (command.toLowerCase().startsWith(COMMANDS[0])) // WithdrawP
- {
- if (Config.L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE)
- {
- final NpcHtmlMessage msg = new NpcHtmlMessage(((L2Npc) target).getObjectId());
- msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/WhSortedP.htm");
- msg.replace("%objectId%", String.valueOf(((L2Npc) target).getObjectId()));
- activeChar.sendPacket(msg);
- }
- else
- {
- showWithdrawWindow(activeChar, null, (byte) 0);
- }
- return true;
- }
- else if (command.toLowerCase().startsWith(COMMANDS[1])) // WithdrawSortedP
- {
- final String param[] = command.split(" ");
-
- if (param.length > 2)
- {
- showWithdrawWindow(activeChar, WarehouseListType.valueOf(param[1]), SortedWareHouseWithdrawalList.getOrder(param[2]));
- }
- else if (param.length > 1)
- {
- showWithdrawWindow(activeChar, WarehouseListType.valueOf(param[1]), SortedWareHouseWithdrawalList.A2Z);
- }
- else
- {
- showWithdrawWindow(activeChar, WarehouseListType.ALL, SortedWareHouseWithdrawalList.A2Z);
- }
- return true;
- }
- else if (command.toLowerCase().startsWith(COMMANDS[2])) // DepositP
- {
- activeChar.sendPacket(ActionFailed.STATIC_PACKET);
- activeChar.setActiveWarehouse(activeChar.getWarehouse());
- activeChar.setInventoryBlockingStatus(true);
- activeChar.sendPacket(new WareHouseDepositList(activeChar, WareHouseDepositList.PRIVATE));
- return true;
- }
-
- return false;
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Exception in " + getClass().getSimpleName(), e);
- }
- return false;
- }
-
- private static final void showWithdrawWindow(L2PcInstance player, WarehouseListType itemtype, byte sortorder)
- {
- player.sendPacket(ActionFailed.STATIC_PACKET);
- player.setActiveWarehouse(player.getWarehouse());
-
- if (player.getActiveWarehouse().getSize() == 0)
- {
- player.sendPacket(SystemMessageId.NO_ITEM_DEPOSITED_IN_WH);
- return;
- }
-
- if (itemtype != null)
- {
- player.sendPacket(new SortedWareHouseWithdrawalList(player, WareHouseWithdrawalList.PRIVATE, itemtype, sortorder));
- }
- else
- {
- player.sendPacket(new WareHouseWithdrawalList(player, WareHouseWithdrawalList.PRIVATE));
- }
-
- if (Config.DEBUG)
- {
- _log.fine("Source: L2WarehouseInstance.java; Player: " + player.getName() + "; Command: showRetrieveWindow; Message: Showing stored items.");
- }
- }
-
- @Override
- public String[] getBypassList()
- {
- return COMMANDS;
- }
- }
|