123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * 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 net.sf.l2j.gameserver.handler.itemhandlers;
- import net.sf.l2j.gameserver.RecipeController;
- import net.sf.l2j.gameserver.handler.IItemHandler;
- import net.sf.l2j.gameserver.model.L2ItemInstance;
- import net.sf.l2j.gameserver.model.L2RecipeList;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance;
- import net.sf.l2j.gameserver.network.SystemMessageId;
- import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
- /**
- * This class ...
- *
- * @version $Revision: 1.1.2.5.2.5 $ $Date: 2005/04/06 16:13:51 $
- */
- public class Recipes implements IItemHandler
- {
- private final int[] ITEM_IDS;
-
- public Recipes()
- {
- RecipeController rc = RecipeController.getInstance();
- ITEM_IDS = new int[rc.getRecipesCount()];
- for (int i = 0; i < rc.getRecipesCount(); i++)
- {
- ITEM_IDS[i] = rc.getRecipeList(i).getRecipeId();
- }
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IItemHandler#useItem(net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance, net.sf.l2j.gameserver.model.L2ItemInstance)
- */
- public void useItem(L2PlayableInstance playable, L2ItemInstance item)
- {
- if (!(playable instanceof L2PcInstance))
- return;
- L2PcInstance activeChar = (L2PcInstance) playable;
- L2RecipeList rp = RecipeController.getInstance().getRecipeByItemId(item.getItemId());
- if (activeChar.hasRecipeList(rp.getId()))
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.RECIPE_ALREADY_REGISTERED);
- activeChar.sendPacket(sm);
- }
- else
- {
- if (rp.isDwarvenRecipe())
- {
- if (activeChar.hasDwarvenCraft())
- {
- if (rp.getLevel() > activeChar.getDwarvenCraft())
- {
- //can't add recipe, becouse create item level too low
- SystemMessage sm = new SystemMessage(SystemMessageId.CREATE_LVL_TOO_LOW_TO_REGISTER);
- activeChar.sendPacket(sm);
- }
- else if (activeChar.getDwarvenRecipeBook().length >= activeChar.getDwarfRecipeLimit())
- {
- //Up to $s1 recipes can be registered.
- SystemMessage sm = new SystemMessage(SystemMessageId.UP_TO_S1_RECIPES_CAN_REGISTER);
- sm.addNumber(activeChar.getDwarfRecipeLimit());
- activeChar.sendPacket(sm);
- }
- else
- {
- activeChar.registerDwarvenRecipeList(rp);
- activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
- activeChar.sendMessage("Added recipe \"" + rp.getRecipeName() + "\" to Dwarven RecipeBook");
- }
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.CANT_REGISTER_NO_ABILITY_TO_CRAFT);
- activeChar.sendPacket(sm);
- }
- }
- else
- {
- if (activeChar.hasCommonCraft())
- {
- if (rp.getLevel() > activeChar.getCommonCraft())
- {
- //can't add recipe, becouse create item level too low
- SystemMessage sm = new SystemMessage(SystemMessageId.CREATE_LVL_TOO_LOW_TO_REGISTER);
- activeChar.sendPacket(sm);
- }
- else if (activeChar.getCommonRecipeBook().length >= activeChar.getCommonRecipeLimit())
- {
- //Up to $s1 recipes can be registered.
- SystemMessage sm = new SystemMessage(SystemMessageId.UP_TO_S1_RECIPES_CAN_REGISTER);
- sm.addNumber(activeChar.getCommonRecipeLimit());
- activeChar.sendPacket(sm);
- }
- else
- {
- activeChar.registerCommonRecipeList(rp);
- activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
- activeChar.sendMessage("Added recipe \"" + rp.getRecipeName() + "\" to Common RecipeBook");
- }
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.CANT_REGISTER_NO_ABILITY_TO_CRAFT);
- activeChar.sendPacket(sm);
- }
- }
- }
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IItemHandler#getItemIds()
- */
- public int[] getItemIds()
- {
- return ITEM_IDS;
- }
- }
|