Package appeng.recipes.handlers

Source Code of appeng.recipes.handlers.Pulverizer

package appeng.recipes.handlers;

import java.util.List;

import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RecipeError;
import appeng.api.exceptions.RegistrationError;
import appeng.api.recipes.ICraftHandler;
import appeng.api.recipes.IIngredient;
import appeng.recipes.RecipeHandler;
import appeng.util.Platform;
import cpw.mods.fml.common.event.FMLInterModComms;

public class Pulverizer implements ICraftHandler, IWebsiteSerializer
{

  IIngredient pro_input;
  IIngredient pro_output[];

  @Override
  public void setup(List<List<IIngredient>> input, List<List<IIngredient>> output) throws RecipeError
  {
    if ( input.size() == 1 && output.size() == 1 )
    {
      int outs = output.get( 0 ).size();
      if ( input.get( 0 ).size() == 1 && outs == 1 )
      {
        pro_input = input.get( 0 ).get( 0 );
        pro_output = output.get( 0 ).toArray( new IIngredient[outs] );
        return;
      }
    }
    throw new RecipeError( "Grind must have a single input, and single output." );
  }

  @Override
  public void register() throws RegistrationError, MissingIngredientError
  {
    NBTTagCompound toSend = new NBTTagCompound();
    toSend.setInteger( "energy", 800 );
    toSend.setTag( "primaryOutput", new NBTTagCompound() );

    pro_output[0].getItemStack().writeToNBT( toSend.getCompoundTag( "primaryOutput" ) );

    for (ItemStack is : pro_input.getItemStackSet())
    {
      toSend.setTag( "input", new NBTTagCompound() );
      is.writeToNBT( toSend.getCompoundTag( "input" ) );
      FMLInterModComms.sendMessage( "ThermalExpansion", "PulverizerRecipe", toSend );
    }
  }

  @Override
  public boolean canCraft(ItemStack output) throws RegistrationError, MissingIngredientError
  {
    return Platform.isSameItemPrecise( pro_output[0].getItemStack(), output );
  }

  @Override
  public String getPattern(RecipeHandler h)
  {
    return null;
  }

}
TOP

Related Classes of appeng.recipes.handlers.Pulverizer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.