/* * This file is part of the Illarion project. * * Copyright © 2014 - Illarion e.V. * * Illarion is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Illarion 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. */ package illarion.client.net.client; import illarion.client.net.CommandList; import illarion.common.net.NetCommWriter; import javax.annotation.Nonnull; /** * This command is used to request a look at on a ingredient inside the crafting menu. * * @author Martin Karing >nitram@illarion.org< */ public final class LookAtCraftIngredientCmd extends AbstractCommand { /** * The ID of the crafting dialog. */ private final int dialogId; /** * The index of the item that is supposed to be crafted */ private final short itemIndex; /** * The index of the ingredient to look at. */ private final short ingredientIndex; /** * Default constructor for the looking at a crafting item. * * @param dialogId the ID of the dialog to close * @param itemIndex the index of the item that is crafted * @param ingredientIndex the index of the ingredient to look at */ public LookAtCraftIngredientCmd(int dialogId, int itemIndex, int ingredientIndex) { super(CommandList.CMD_CRAFT_ITEM); this.dialogId = dialogId; this.itemIndex = (short) itemIndex; this.ingredientIndex = (short) ingredientIndex; } @Override public void encode(@Nonnull NetCommWriter writer) { writer.writeInt(dialogId); writer.writeByte((byte) 3); writer.writeUByte(itemIndex); writer.writeUByte(ingredientIndex); } @Nonnull @Override public String toString() { return toString("Dialog ID: " + dialogId + " Look at index: " + itemIndex + " Ingredient index:" + ingredientIndex); } }