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
|
|
|
|
2015-01-03 02:53:14 +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;
|
2014-12-30 22:42:25 +01:00
|
|
|
import net.minecraft.item.Item;
|
2014-03-15 21:35:00 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.item.crafting.IRecipe;
|
|
|
|
import net.minecraft.world.World;
|
2014-12-29 21:59:05 +01:00
|
|
|
|
2014-12-30 22:42:25 +01:00
|
|
|
import com.google.common.base.Optional;
|
|
|
|
|
2014-03-15 21:35:00 +01:00
|
|
|
import appeng.api.AEApi;
|
2015-01-03 02:53:14 +01:00
|
|
|
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
|
|
|
|
2015-01-03 02:53:14 +01:00
|
|
|
public final class FacadeRecipe implements IRecipe
|
2014-03-15 21:35:00 +01:00
|
|
|
{
|
|
|
|
|
2015-01-03 02:53:14 +01:00
|
|
|
private final IComparableDefinition anchor;
|
|
|
|
private final Optional<Item> maybeFacade;
|
2014-12-30 22:42:25 +01:00
|
|
|
|
|
|
|
public FacadeRecipe()
|
|
|
|
{
|
2015-01-03 02:53:14 +01:00
|
|
|
final IDefinitions definitions = AEApi.instance().definitions();
|
|
|
|
|
|
|
|
this.maybeFacade = definitions.items().facade().maybeItem();
|
|
|
|
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
|
|
|
|
public boolean matches( InventoryCrafting inv, World w )
|
2014-03-15 21:35:00 +01:00
|
|
|
{
|
2014-12-30 22:42:25 +01:00
|
|
|
return this.getOutput( inv, false ) != null;
|
|
|
|
}
|
|
|
|
|
2015-01-03 02:53:14 +01:00
|
|
|
@Nullable
|
2014-12-30 22:42:25 +01:00
|
|
|
private ItemStack getOutput( IInventory inv, boolean createFacade )
|
|
|
|
{
|
2015-04-03 08:54:31 +02: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
|
|
|
{
|
2015-04-03 08:54:31 +02: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
|
|
|
{
|
2015-04-03 08:54:31 +02:00
|
|
|
for( Item facadeItemDefinition : this.maybeFacade.asSet() )
|
2015-01-03 02:53:14 +01:00
|
|
|
{
|
|
|
|
final ItemFacade facade = (ItemFacade) facadeItemDefinition;
|
|
|
|
|
|
|
|
ItemStack facades = facade.createFacadeForItem( inv.getStackInSlot( 4 ), !createFacade );
|
2015-04-03 08:54:31 +02:00
|
|
|
if( facades != null && createFacade )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-01-03 02:53:14 +01:00
|
|
|
facades.stackSize = 4;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-01-03 02:53:14 +01:00
|
|
|
return facades;
|
|
|
|
}
|
2014-03-15 21:35:00 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-03 02:53:14 +01:00
|
|
|
|
2014-03-15 21:35:00 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-12-30 22:42:25 +01:00
|
|
|
public ItemStack getCraftingResult( 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 null;
|
|
|
|
}
|
|
|
|
}
|