123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- /*
- * 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.gameserver.network.clientpackets;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.datatables.ItemTable;
- import com.l2jserver.gameserver.instancemanager.MailManager;
- import com.l2jserver.gameserver.model.L2ItemInstance;
- import com.l2jserver.gameserver.model.L2World;
- import com.l2jserver.gameserver.model.L2ItemInstance.ItemLocation;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Message;
- import com.l2jserver.gameserver.model.itemcontainer.ItemContainer;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.ExChangePostState;
- import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate;
- import com.l2jserver.gameserver.network.serverpackets.ItemList;
- import com.l2jserver.gameserver.network.serverpackets.StatusUpdate;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.util.Util;
- import static com.l2jserver.gameserver.model.itemcontainer.PcInventory.ADENA_ID;
- import static com.l2jserver.gameserver.model.actor.L2Character.ZONE_PEACE;
- /**
- * @author Migi, DS
- */
- public final class RequestPostAttachment extends L2GameClientPacket
- {
- private static final String _C__D0_6A_REQUESTPOSTATTACHMENT = "[C] D0:6A RequestPostAttachment";
- private int _msgId;
- @Override
- protected void readImpl()
- {
- _msgId = readD();
- }
- @Override
- public void runImpl()
- {
- if (!Config.ALLOW_MAIL || !Config.ALLOW_ATTACHMENTS)
- return;
- final L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- return;
- if (!activeChar.getFloodProtectors().getTransaction().tryPerformAction("getattach"))
- return;
- if (!activeChar.getAccessLevel().allowTransaction())
- {
- activeChar.sendMessage("Transactions are disabled for your Access Level");
- return;
- }
- if (!activeChar.isInsideZone(ZONE_PEACE))
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_NOT_IN_PEACE_ZONE));
- return;
- }
- if (activeChar.getActiveTradeList() != null)
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_DURING_EXCHANGE));
- return;
- }
- if (activeChar.isEnchanting())
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_DURING_ENCHANT));
- return;
- }
- if (activeChar.getPrivateStoreType() > 0)
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_PRIVATE_STORE));
- return;
- }
- final Message msg = MailManager.getInstance().getMessage(_msgId);
- if (msg == null)
- return;
- if (msg.getReceiverId() != activeChar.getObjectId())
- {
- Util.handleIllegalPlayerAction(activeChar,
- "Player "+activeChar.getName()+" tried to get not own attachment!", Config.DEFAULT_PUNISH);
- return;
- }
- if (!msg.hasAttachments())
- return;
- final ItemContainer attachments = msg.getAttachments();
- if (attachments == null)
- return;
- int weight = 0;
- int slots = 0;
- for (L2ItemInstance item : attachments.getItems())
- {
- if (item == null)
- continue;
- // Calculate needed slots
- if (item.getOwnerId() != msg.getSenderId())
- {
- Util.handleIllegalPlayerAction(activeChar,
- "Player "+activeChar.getName()+" tried to get wrong item (ownerId != senderId) from attachment!", Config.DEFAULT_PUNISH);
- return;
- }
- if (!item.getLocation().equals(ItemLocation.MAIL))
- {
- Util.handleIllegalPlayerAction(activeChar,
- "Player "+activeChar.getName()+" tried to get wrong item (Location != MAIL) from attachment!", Config.DEFAULT_PUNISH);
- return;
- }
- if (item.getLocationSlot() != msg.getId())
- {
- Util.handleIllegalPlayerAction(activeChar,
- "Player "+activeChar.getName()+" tried to get items from different attachment!", Config.DEFAULT_PUNISH);
- return;
- }
- weight += item.getCount() * item.getItem().getWeight();
- if (!item.isStackable())
- slots += item.getCount();
- else if (activeChar.getInventory().getItemByItemId(item.getItemId()) == null)
- slots++;
- }
- // Item Max Limit Check
- if (!activeChar.getInventory().validateCapacity(slots))
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_INVENTORY_FULL));
- return;
- }
- // Weight limit Check
- if (!activeChar.getInventory().validateWeight(weight))
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_INVENTORY_FULL));
- return;
- }
- long adena = msg.getReqAdena();
- if (adena > 0 && !activeChar.reduceAdena("PayMail", adena, null, true))
- {
- activeChar.sendPacket(new SystemMessage(SystemMessageId.CANT_RECEIVE_NO_ADENA));
- return;
- }
- // Proceed to the transfer
- InventoryUpdate playerIU = Config.FORCE_INVENTORY_UPDATE ? null : new InventoryUpdate();
- for (L2ItemInstance item : attachments.getItems())
- {
- if (item == null)
- continue;
- if (item.getOwnerId() != msg.getSenderId())
- {
- Util.handleIllegalPlayerAction(activeChar,
- "Player "+activeChar.getName()+" tried to get items with owner != sender !", Config.DEFAULT_PUNISH);
- return;
- }
- long count = item.getCount();
- final L2ItemInstance newItem = attachments.transferItem(attachments.getName(), item.getObjectId(), item.getCount(), activeChar.getInventory(), activeChar, null);
- if (newItem == null)
- return;
- if (playerIU != null)
- {
- if (newItem.getCount() > count)
- playerIU.addModifiedItem(newItem);
- else
- playerIU.addNewItem(newItem);
- }
- SystemMessage sm = new SystemMessage(SystemMessageId.YOU_ACQUIRED_S2_S1);
- sm.addItemName(item.getItemId());
- sm.addItemNumber(count);
- activeChar.sendPacket(sm);
- }
- // Send updated item list to the player
- if (playerIU != null)
- activeChar.sendPacket(playerIU);
- else
- activeChar.sendPacket(new ItemList(activeChar, false));
- msg.removeAttachments();
- // Update current load status on player
- StatusUpdate su = new StatusUpdate(activeChar.getObjectId());
- su.addAttribute(StatusUpdate.CUR_LOAD, activeChar.getCurrentLoad());
- activeChar.sendPacket(su);
- SystemMessage sm;
- final L2PcInstance sender = L2World.getInstance().getPlayer(msg.getSenderId());
- if (adena > 0)
- {
- if (sender != null)
- {
- sender.addAdena("PayMail", adena, activeChar, false);
- sm = new SystemMessage(SystemMessageId.PAYMENT_OF_S1_ADENA_COMPLETED_BY_S2);
- sm.addItemNumber(adena);
- sm.addCharName(activeChar);
- sender.sendPacket(sm);
- }
- else
- {
- L2ItemInstance paidAdena = ItemTable.getInstance().createItem("PayMail", ADENA_ID, adena, activeChar, null);
- paidAdena.setOwnerId(msg.getSenderId());
- paidAdena.setLocation(ItemLocation.INVENTORY);
- paidAdena.updateDatabase(true);
- L2World.getInstance().removeObject(paidAdena);
- }
- }
- else if (sender != null)
- {
- sm = new SystemMessage(SystemMessageId.S1_ACQUIRED_ATTACHED_ITEM);
- sm.addCharName(activeChar);
- sender.sendPacket(sm);
- }
- activeChar.sendPacket(new ExChangePostState(true, _msgId, Message.READED));
- activeChar.sendPacket(new SystemMessage(SystemMessageId.MAIL_SUCCESSFULLY_RECEIVED));
- }
- @Override
- public String getType()
- {
- return _C__D0_6A_REQUESTPOSTATTACHMENT;
- }
- @Override
- protected boolean triggersOnActionRequest()
- {
- return false;
- }
- }
|