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>.
|
|
|
|
*/
|
|
|
|
|
2014-03-15 21:35:00 +01:00
|
|
|
package appeng.recipes.game;
|
|
|
|
|
|
|
|
import net.minecraft.inventory.InventoryCrafting;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.crafting.IRecipe;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.api.util.AEItemDefinition;
|
|
|
|
import appeng.items.parts.ItemFacade;
|
|
|
|
|
|
|
|
public class FacadeRecipe implements IRecipe
|
|
|
|
{
|
|
|
|
|
2014-09-29 09:54:34 +02:00
|
|
|
private final AEItemDefinition anchor = AEApi.instance().parts().partCableAnchor;
|
|
|
|
private final ItemFacade facade = (ItemFacade) AEApi.instance().items().itemFacade.item();
|
2014-03-15 21:35:00 +01:00
|
|
|
|
|
|
|
private ItemStack getOutput(InventoryCrafting inv, boolean createFacade)
|
|
|
|
{
|
|
|
|
if ( inv.getStackInSlot( 0 ) == null && inv.getStackInSlot( 2 ) == null && inv.getStackInSlot( 6 ) == null && inv.getStackInSlot( 8 ) == null )
|
|
|
|
{
|
2014-05-10 07:00:02 +02:00
|
|
|
if ( anchor.sameAsStack( inv.getStackInSlot( 1 ) ) && anchor.sameAsStack( inv.getStackInSlot( 3 ) ) && anchor.sameAsStack( inv.getStackInSlot( 5 ) )
|
|
|
|
&& anchor.sameAsStack( inv.getStackInSlot( 7 ) ) )
|
2014-03-15 21:35:00 +01:00
|
|
|
{
|
2014-09-21 00:29:23 +02:00
|
|
|
ItemStack facades = facade.createFacadeForItem( inv.getStackInSlot( 4 ), !createFacade );
|
|
|
|
if ( facades != null && createFacade )
|
|
|
|
facades.stackSize = 4;
|
|
|
|
return facades;
|
2014-03-15 21:35:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean matches(InventoryCrafting inv, World w)
|
|
|
|
{
|
|
|
|
return getOutput( inv, false ) != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getCraftingResult(InventoryCrafting inv)
|
|
|
|
{
|
|
|
|
return getOutput( inv, true );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getRecipeSize()
|
|
|
|
{
|
|
|
|
return 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getRecipeOutput() // no default output..
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|