/*
* 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 com.l2jserver.Config;
import com.l2jserver.gameserver.enums.PrivateStoreType;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.actor.instance.L2PetInstance;
import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.util.Util;
/**
* This class ...
* @version $Revision: 1.3.2.1.2.5 $ $Date: 2005/03/29 23:15:33 $
*/
public final class RequestGiveItemToPet extends L2GameClientPacket
{
private static final String _C__95_REQUESTCIVEITEMTOPET = "[C] 95 RequestGiveItemToPet";
private int _objectId;
private long _amount;
@Override
protected void readImpl()
{
_objectId = readD();
_amount = readQ();
}
@Override
protected void runImpl()
{
final L2PcInstance player = getClient().getActiveChar();
if ((_amount <= 0) || (player == null) || !player.hasPet())
{
return;
}
if (!getClient().getFloodProtectors().getTransaction().tryPerformAction("giveitemtopet"))
{
player.sendMessage("You are giving items to pet too fast.");
return;
}
if (player.getActiveEnchantItemId() != L2PcInstance.ID_NONE)
{
return;
}
// Alt game - Karma punishment
if (!Config.ALT_GAME_KARMA_PLAYER_CAN_TRADE && (player.getKarma() > 0))
{
return;
}
if (player.getPrivateStoreType() != PrivateStoreType.NONE)
{
player.sendMessage("You cannot exchange items while trading.");
return;
}
final L2ItemInstance item = player.getInventory().getItemByObjectId(_objectId);
if (item == null)
{
return;
}
if (_amount > item.getCount())
{
Util.handleIllegalPlayerAction(player, getClass().getSimpleName() + ": Character " + player.getName() + " of account " + player.getAccountName() + " tried to get item with oid " + _objectId + " from pet but has invalid count " + _amount + " item count: " + item.getCount(), Config.DEFAULT_PUNISH);
return;
}
if (item.isAugmented())
{
return;
}
if (item.isHeroItem() || !item.isDropable() || !item.isDestroyable() || !item.isTradeable())
{
player.sendPacket(SystemMessageId.YOUR_PET_CANNOT_CARRY_THIS_ITEM);
return;
}
final L2PetInstance pet = (L2PetInstance) player.getPet();
if (pet.isDead())
{
player.sendPacket(SystemMessageId.YOUR_PET_IS_DEAD_AND_ANY_ATTEMPT_YOU_MAKE_TO_GIVE_IT_SOMETHING_GOES_UNRECOGNIZED);
return;
}
if (!pet.getInventory().validateCapacity(item))
{
player.sendPacket(SystemMessageId.YOUR_PET_CANNOT_CARRY_ANY_MORE_ITEMS);
return;
}
if (!pet.getInventory().validateWeight(item, _amount))
{
player.sendPacket(SystemMessageId.YOUR_PET_CANNOT_CARRY_ANY_MORE_ITEMS2);
return;
}
if (player.transferItem("Transfer", _objectId, _amount, pet.getInventory(), pet) == null)
{
_log.warning("Invalid item transfer request: " + pet.getName() + "(pet) --> " + player.getName());
}
}
@Override
public String getType()
{
return _C__95_REQUESTCIVEITEMTOPET;
}
}