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

100 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>.
*/
2014-03-15 21:35:00 +01:00
package appeng.recipes.game;
2014-12-30 22:42:25 +01:00
import javax.annotation.Nullable;
2014-12-30 22:42:25 +01:00
import net.minecraft.inventory.IInventory;
2014-03-15 21:35:00 +01:00
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
2016-12-08 12:42:00 +01:00
import net.minecraft.util.NonNullList;
2014-03-15 21:35:00 +01:00
import net.minecraft.world.World;
2015-06-16 02:44:59 +02:00
import net.minecraftforge.common.ForgeHooks;
2015-12-24 02:07:03 +01:00
2014-03-15 21:35:00 +01:00
import appeng.api.AEApi;
import appeng.api.definitions.IComparableDefinition;
import appeng.api.definitions.IDefinitions;
2014-03-15 21:35:00 +01:00
import appeng.items.parts.ItemFacade;
2014-12-30 22:42:25 +01:00
public final class FacadeRecipe implements IRecipe
2014-03-15 21:35:00 +01:00
{
private final IComparableDefinition anchor;
2016-08-28 12:10:40 +02:00
private final ItemFacade facade;
2014-12-30 22:42:25 +01:00
2016-08-28 12:10:40 +02:00
public FacadeRecipe( ItemFacade facade )
2014-12-30 22:42:25 +01:00
{
2016-08-28 12:10:40 +02:00
this.facade = facade;
final IDefinitions definitions = AEApi.instance().definitions();
this.anchor = definitions.parts().cableAnchor();
2014-12-30 22:42:25 +01:00
}
2014-03-15 21:35:00 +01:00
2014-12-30 22:42:25 +01:00
@Override
2015-09-30 14:24:40 +02:00
public boolean matches( final InventoryCrafting inv, final World w )
2014-03-15 21:35:00 +01:00
{
2014-12-30 22:42:25 +01:00
return this.getOutput( inv, false ) != null;
}
@Nullable
2015-09-30 14:24:40 +02:00
private ItemStack getOutput( final IInventory inv, final boolean createFacade )
2014-12-30 22:42:25 +01:00
{
if( inv.getStackInSlot( 0 ) == null && inv.getStackInSlot( 2 ) == null && inv.getStackInSlot( 6 ) == null && inv.getStackInSlot( 8 ) == null )
2014-03-15 21:35:00 +01:00
{
if( this.anchor.isSameAs( inv.getStackInSlot( 1 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 3 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 5 ) ) && this.anchor.isSameAs( inv.getStackInSlot( 7 ) ) )
2014-03-15 21:35:00 +01:00
{
2016-08-28 12:10:40 +02:00
final ItemStack facades = facade.createFacadeForItem( inv.getStackInSlot( 4 ), !createFacade );
if( facades != null && createFacade )
{
2016-12-08 12:42:00 +01:00
facades.setCount( 4 );
2016-08-28 12:10:40 +02:00
}
return facades;
2014-03-15 21:35:00 +01:00
}
}
2014-03-15 21:35:00 +01:00
return null;
}
@Override
2015-09-30 14:24:40 +02:00
public ItemStack getCraftingResult( final InventoryCrafting inv )
2014-03-15 21:35:00 +01:00
{
2014-12-29 15:13:47 +01:00
return this.getOutput( inv, true );
2014-03-15 21:35:00 +01:00
}
@Override
public int getRecipeSize()
{
return 9;
}
@Override
public ItemStack getRecipeOutput() // no default output..
{
return ItemStack.EMPTY;
2014-03-15 21:35:00 +01:00
}
2015-12-24 02:03:16 +01:00
2015-06-16 02:44:59 +02:00
@Override
2016-12-08 12:42:00 +01:00
public NonNullList<ItemStack> getRemainingItems( final InventoryCrafting inv )
2015-06-16 02:44:59 +02:00
{
2015-12-24 02:03:16 +01:00
return ForgeHooks.defaultRecipeGetRemainingItems( inv );
2015-06-16 02:44:59 +02:00
}
2015-12-24 02:03:16 +01:00
2014-03-15 21:35:00 +01:00
}