/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/network/clientpackets/RequestPreviewItem.java
219 строк
7 KB
Zoey76
Copyright Update
01 янв 2025, 07:57
01 янв 2025, 07:57
16130a5
Код
Авторство
О чём код?
/* * Copyright © 2004-2025 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 static com.l2jserver.gameserver.config.Configuration.character; import static com.l2jserver.gameserver.config.Configuration.general; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.data.xml.impl.BuyListData; import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.instance.L2MerchantInstance; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.buylist.L2BuyList; import com.l2jserver.gameserver.model.buylist.Product; import com.l2jserver.gameserver.model.itemcontainer.Inventory; import com.l2jserver.gameserver.model.items.L2Armor; import com.l2jserver.gameserver.model.items.L2Item; import com.l2jserver.gameserver.model.items.L2Weapon; import com.l2jserver.gameserver.model.items.type.ArmorType; import com.l2jserver.gameserver.model.items.type.WeaponType; import com.l2jserver.gameserver.network.SystemMessageId; import com.l2jserver.gameserver.network.serverpackets.ActionFailed; import com.l2jserver.gameserver.network.serverpackets.ShopPreviewInfo; import com.l2jserver.gameserver.network.serverpackets.UserInfo; import com.l2jserver.gameserver.util.Util; /** ** @author Gnacik */ public final class RequestPreviewItem extends L2GameClientPacket { private static final Logger LOG = LoggerFactory.getLogger(RequestPreviewItem.class); private static final String _C__C7_REQUESTPREVIEWITEM = "[C] C7 RequestPreviewItem"; @SuppressWarnings("unused") private int _unk; private int _listId; private int _count; private int[] _items; private static class RemoveWearItemsTask implements Runnable { private final L2PcInstance activeChar; protected RemoveWearItemsTask(L2PcInstance player) { activeChar = player; } @Override public void run() { try { activeChar.sendPacket(SystemMessageId.NO_LONGER_TRYING_ON); activeChar.sendPacket(new UserInfo(activeChar)); } catch (Exception e) { LOG.error(e.getMessage(), e); } } } @Override protected void readImpl() { _unk = readD(); _listId = readD(); _count = readD(); if (_count < 0) { _count = 0; } if (_count > 100) { return; // prevent too long lists } // Create _items table that will contain all ItemID to Wear _items = new int[_count]; // Fill _items table with all ItemID to Wear for (int i = 0; i < _count; i++) { _items[i] = readD(); } } @Override protected void runImpl() { if (_items == null) { return; } // Get the current player and return if null L2PcInstance activeChar = getClient().getActiveChar(); if (activeChar == null) { return; } if (!getClient().getFloodProtectors().getTransaction().tryPerformAction("buy")) { activeChar.sendMessage("You are buying too fast."); return; } // If Alternate rule Karma punishment is set to true, forbid Wear to player with Karma if (!character().karmaPlayerCanShop() && (activeChar.getKarma() > 0)) { return; } // Check current target of the player and the INTERACTION_DISTANCE final L2Object target = activeChar.getTarget(); if (!activeChar.isGM() && (!(target instanceof L2MerchantInstance) || // !activeChar.isInsideRadius(target, L2Npc.INTERACTION_DISTANCE, false, false))) { return; } if ((_count < 1) || (_listId >= 4000000)) { sendPacket(ActionFailed.STATIC_PACKET); return; } // Get the current merchant targeted by the player final L2MerchantInstance merchant = (target instanceof L2MerchantInstance) ? (L2MerchantInstance) target : null; if (merchant == null) { LOG.warn("Null merchant!"); return; } final L2BuyList buyList = BuyListData.getInstance().getBuyList(_listId); if (buyList == null) { Util.handleIllegalPlayerAction(activeChar, "Warning!! Character " + activeChar.getName() + " of account " + activeChar.getAccountName() + " sent a false BuyList list_id " + _listId); return; } long totalPrice = 0; Map<Integer, Integer> itemList = new HashMap<>(); for (int i = 0; i < _count; i++) { int itemId = _items[i]; final Product product = buyList.getProductByItemId(itemId); if (product == null) { Util.handleIllegalPlayerAction(activeChar, "Warning!! Character " + activeChar.getName() + " of account " + activeChar.getAccountName() + " sent a false BuyList list_id " + _listId + " and item_id " + itemId); return; } L2Item template = product.getItem(); if (template == null) { continue; } int slot = Inventory.getPaperdollIndex(template.getBodyPart()); if (slot < 0) { continue; } if (template instanceof L2Weapon) { if (activeChar.getRace().ordinal() == 5) { if (template.getItemType() == WeaponType.NONE) { continue; } else if ((template.getItemType() == WeaponType.RAPIER) || (template.getItemType() == WeaponType.CROSSBOW) || (template.getItemType() == WeaponType.ANCIENTSWORD)) { continue; } } } else if (template instanceof L2Armor) { if (activeChar.getRace().ordinal() == 5) { if ((template.getItemType() == ArmorType.HEAVY) || (template.getItemType() == ArmorType.MAGIC)) { continue; } } } if (itemList.containsKey(slot)) { activeChar.sendPacket(SystemMessageId.YOU_CAN_NOT_TRY_THOSE_ITEMS_ON_AT_THE_SAME_TIME); return; } itemList.put(slot, itemId); totalPrice += general().getWearPrice(); if (totalPrice > character().getMaxAdena()) { Util.handleIllegalPlayerAction(activeChar, "Warning!! Character " + activeChar.getName() + " of account " + activeChar.getAccountName() + " tried to purchase over " + character().getMaxAdena() + " adena worth of goods."); return; } } // Charge buyer and add tax to castle treasury if not owned by npc clan because a Try On is not Free if ((totalPrice < 0) || !activeChar.reduceAdena("Wear", totalPrice, activeChar.getLastFolkNPC(), true)) { activeChar.sendPacket(SystemMessageId.YOU_NOT_ENOUGH_ADENA); return; } if (!itemList.isEmpty()) { activeChar.sendPacket(new ShopPreviewInfo(itemList)); // Schedule task ThreadPoolManager.getInstance().scheduleGeneral(new RemoveWearItemsTask(activeChar), general().getWearDelay()); } } @Override public String getType() { return _C__C7_REQUESTPREVIEWITEM; } }