92 lines
2.9 KiB
Java
92 lines
2.9 KiB
Java
/*
|
|
* 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.game;
|
|
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.InventoryCrafting;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.item.crafting.IRecipe;
|
|
import net.minecraft.world.World;
|
|
|
|
import com.google.common.base.Optional;
|
|
|
|
import appeng.api.AEApi;
|
|
import appeng.api.util.AEItemDefinition;
|
|
import appeng.items.parts.ItemFacade;
|
|
|
|
|
|
public class FacadeRecipe implements IRecipe
|
|
{
|
|
|
|
private final Optional<AEItemDefinition> maybeAnchor;
|
|
private final Optional<AEItemDefinition> maybeFacade;
|
|
|
|
public FacadeRecipe()
|
|
{
|
|
this.maybeFacade = Optional.fromNullable( AEApi.instance().items().itemFacade );
|
|
this.maybeAnchor = Optional.fromNullable( AEApi.instance().parts().partCableAnchor );
|
|
}
|
|
|
|
@Override
|
|
public boolean matches( InventoryCrafting inv, World w )
|
|
{
|
|
return this.getOutput( inv, false ) != null;
|
|
}
|
|
|
|
private ItemStack getOutput( IInventory inv, boolean createFacade )
|
|
{
|
|
if ( this.maybeAnchor.isPresent() && this.maybeFacade.isPresent() && inv.getStackInSlot( 0 ) == null && inv.getStackInSlot( 2 ) == null && inv.getStackInSlot( 6 ) == null && inv.getStackInSlot( 8 ) == null )
|
|
{
|
|
final AEItemDefinition anchorDefinition = this.maybeAnchor.get();
|
|
final AEItemDefinition facadeDefinition = this.maybeFacade.get();
|
|
|
|
if ( anchorDefinition.sameAsStack( inv.getStackInSlot( 1 ) ) && anchorDefinition.sameAsStack( inv.getStackInSlot( 3 ) ) && anchorDefinition.sameAsStack( inv.getStackInSlot( 5 ) ) && anchorDefinition.sameAsStack( inv.getStackInSlot( 7 ) ) )
|
|
{
|
|
final Item itemDefinition = facadeDefinition.item();
|
|
final ItemFacade facade = (ItemFacade) itemDefinition;
|
|
|
|
ItemStack facades = facade.createFacadeForItem( inv.getStackInSlot( 4 ), !createFacade );
|
|
if ( facades != null && createFacade )
|
|
facades.stackSize = 4;
|
|
return facades;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getCraftingResult( InventoryCrafting inv )
|
|
{
|
|
return this.getOutput( inv, true );
|
|
}
|
|
|
|
@Override
|
|
public int getRecipeSize()
|
|
{
|
|
return 9;
|
|
}
|
|
|
|
@Override
|
|
public ItemStack getRecipeOutput() // no default output..
|
|
{
|
|
return null;
|
|
}
|
|
} |