Applied-Energistics-2-tiler.../src/main/java/appeng/recipes/IngredientSet.java

129 lines
2.9 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
package appeng.recipes;
import java.util.LinkedList;
import java.util.List;
import com.google.common.base.Preconditions;
import net.minecraft.item.ItemStack;
import net.minecraftforge.oredict.OreDictionary;
2015-12-24 02:07:03 +01:00
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RegistrationError;
import appeng.api.recipes.IIngredient;
import appeng.api.recipes.ResolverResultSet;
public class IngredientSet implements IIngredient
{
private final int qty;
private final String name;
private final List<ItemStack> items;
private final boolean isInside = false;
private ItemStack[] baked;
2015-09-30 14:24:40 +02:00
public IngredientSet( final ResolverResultSet rr, final int qty )
{
Preconditions.checkNotNull( rr );
Preconditions.checkNotNull( rr.name );
Preconditions.checkNotNull( rr.results );
Preconditions.checkState( qty > 0 );
2014-12-29 15:13:47 +01:00
this.name = rr.name;
this.items = rr.results;
this.qty = qty;
}
@Override
public ItemStack getItemStack() throws RegistrationError, MissingIngredientError
{
throw new RegistrationError( "Cannot pass group of items to a recipe which desires a single recipe item." );
}
@Override
public ItemStack[] getItemStackSet() throws RegistrationError, MissingIngredientError
{
if( this.baked != null )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
return this.baked;
2015-04-29 02:30:53 +02:00
}
if( this.isInside )
2015-04-29 02:30:53 +02:00
{
return new ItemStack[0];
2015-04-29 02:30:53 +02:00
}
2015-09-30 14:24:40 +02:00
final List<ItemStack> out = new LinkedList<ItemStack>();
2014-12-29 15:13:47 +01:00
out.addAll( this.items );
2015-09-25 23:18:27 +02:00
if( out.isEmpty() )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
throw new MissingIngredientError( this.toString() + " - group could not be resolved to any items." );
2015-04-29 02:30:53 +02:00
}
2015-09-30 14:24:40 +02:00
for( final ItemStack is : out )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
is.stackSize = this.qty;
2015-04-29 02:30:53 +02:00
}
return out.toArray( new ItemStack[out.size()] );
}
@Override
public boolean isAir()
{
return false;
}
@Override
public String getNameSpace()
{
return "";
}
@Override
public String getItemName()
{
return this.name;
}
@Override
public int getDamageValue()
{
return OreDictionary.WILDCARD_VALUE;
}
@Override
public int getQty()
{
return this.qty;
}
@Override
public void bake() throws RegistrationError, MissingIngredientError
{
2014-12-29 15:13:47 +01:00
this.baked = null;
this.baked = this.getItemStackSet();
}
}