123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * Copyright (C) 2004-2014 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.itemhandlers;
- import com.l2jserver.gameserver.datatables.RecipeData;
- import com.l2jserver.gameserver.handler.IItemHandler;
- import com.l2jserver.gameserver.model.L2RecipeList;
- import com.l2jserver.gameserver.model.actor.L2Playable;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * @author Zoey76
- */
- public class Recipes implements IItemHandler
- {
- @Override
- public boolean useItem(L2Playable playable, L2ItemInstance item, boolean forceUse)
- {
- if (!playable.isPlayer())
- {
- playable.sendPacket(SystemMessageId.ITEM_NOT_FOR_PETS);
- return false;
- }
-
- final L2PcInstance activeChar = playable.getActingPlayer();
- if (activeChar.isInCraftMode())
- {
- activeChar.sendPacket(SystemMessageId.CANT_ALTER_RECIPEBOOK_WHILE_CRAFTING);
- return false;
- }
-
- final L2RecipeList rp = RecipeData.getInstance().getRecipeByItemId(item.getId());
- if (rp == null)
- {
- return false;
- }
-
- if (activeChar.hasRecipeList(rp.getId()))
- {
- activeChar.sendPacket(SystemMessageId.RECIPE_ALREADY_REGISTERED);
- return false;
- }
-
- boolean canCraft = false;
- boolean recipeLevel = false;
- boolean recipeLimit = false;
- if (rp.isDwarvenRecipe())
- {
- canCraft = activeChar.hasDwarvenCraft();
- recipeLevel = (rp.getLevel() > activeChar.getDwarvenCraft());
- recipeLimit = (activeChar.getDwarvenRecipeBook().length >= activeChar.getDwarfRecipeLimit());
- }
- else
- {
- canCraft = activeChar.hasCommonCraft();
- recipeLevel = (rp.getLevel() > activeChar.getCommonCraft());
- recipeLimit = (activeChar.getCommonRecipeBook().length >= activeChar.getCommonRecipeLimit());
- }
-
- if (!canCraft)
- {
- activeChar.sendPacket(SystemMessageId.CANT_REGISTER_NO_ABILITY_TO_CRAFT);
- return false;
- }
-
- if (recipeLevel)
- {
- activeChar.sendPacket(SystemMessageId.CREATE_LVL_TOO_LOW_TO_REGISTER);
- return false;
- }
-
- if (recipeLimit)
- {
- final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.UP_TO_S1_RECIPES_CAN_REGISTER);
- sm.addInt(rp.isDwarvenRecipe() ? activeChar.getDwarfRecipeLimit() : activeChar.getCommonRecipeLimit());
- activeChar.sendPacket(sm);
- return false;
- }
-
- if (rp.isDwarvenRecipe())
- {
- activeChar.registerDwarvenRecipeList(rp, true);
- }
- else
- {
- activeChar.registerCommonRecipeList(rp, true);
- }
-
- activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
- final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.S1_ADDED);
- sm.addItemName(item);
- activeChar.sendPacket(sm);
- return true;
- }
- }
|