Applied-Energistics-2-tiler.../src/main/java/appeng/integration/modules/CraftGuide.java

372 lines
12 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-24 08:55:46 +01:00
package appeng.integration.modules;
2014-03-24 09:38:52 +01:00
import java.util.Arrays;
2014-03-24 08:55:46 +01:00
import java.util.List;
import net.minecraft.init.Blocks;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.CraftingManager;
import net.minecraft.item.crafting.IRecipe;
2014-12-29 21:59:05 +01:00
import cpw.mods.fml.relauncher.ReflectionHelper;
2014-03-24 08:55:46 +01:00
import uristqwerty.CraftGuide.CraftGuideLog;
import uristqwerty.CraftGuide.DefaultRecipeTemplate;
import uristqwerty.CraftGuide.RecipeGeneratorImplementation;
import uristqwerty.CraftGuide.api.CraftGuideAPIObject;
import uristqwerty.CraftGuide.api.CraftGuideRecipe;
import uristqwerty.CraftGuide.api.ItemSlot;
import uristqwerty.CraftGuide.api.RecipeGenerator;
import uristqwerty.CraftGuide.api.RecipeProvider;
import uristqwerty.CraftGuide.api.RecipeTemplate;
import uristqwerty.CraftGuide.api.Slot;
import uristqwerty.CraftGuide.api.SlotType;
import uristqwerty.CraftGuide.api.StackInfo;
import uristqwerty.CraftGuide.api.StackInfoSource;
import uristqwerty.gui_craftguide.texture.DynamicTexture;
import uristqwerty.gui_craftguide.texture.TextureClip;
2014-12-29 21:59:05 +01:00
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RegistrationError;
import appeng.api.recipes.IIngredient;
2014-03-24 09:29:23 +01:00
import appeng.integration.IIntegrationModule;
2014-03-24 08:55:46 +01:00
import appeng.recipes.game.ShapedRecipe;
import appeng.recipes.game.ShapelessRecipe;
2014-03-24 09:29:23 +01:00
public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModule, RecipeProvider, StackInfoSource, RecipeGenerator
2014-03-24 08:55:46 +01:00
{
2014-03-24 09:29:23 +01:00
public static CraftGuide instance;
private final Slot[] shapelessCraftingSlots = new ItemSlot[] { new ItemSlot( 3, 3, 16, 16 ), new ItemSlot( 21, 3, 16, 16 ), new ItemSlot( 39, 3, 16, 16 ), new ItemSlot( 3, 21, 16, 16 ), new ItemSlot( 21, 21, 16, 16 ), new ItemSlot( 39, 21, 16, 16 ), new ItemSlot( 3, 39, 16, 16 ), new ItemSlot( 21, 39, 16, 16 ), new ItemSlot( 39, 39, 16, 16 ), new ItemSlot( 59, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ), };
2014-03-24 08:55:46 +01:00
private final Slot[] craftingSlotsOwnBackground = new ItemSlot[] { new ItemSlot( 3, 3, 16, 16 ).drawOwnBackground(), new ItemSlot( 21, 3, 16, 16 ).drawOwnBackground(), new ItemSlot( 39, 3, 16, 16 ).drawOwnBackground(), new ItemSlot( 3, 21, 16, 16 ).drawOwnBackground(), new ItemSlot( 21, 21, 16, 16 ).drawOwnBackground(), new ItemSlot( 39, 21, 16, 16 ).drawOwnBackground(), new ItemSlot( 3, 39, 16, 16 ).drawOwnBackground(), new ItemSlot( 21, 39, 16, 16 ).drawOwnBackground(), new ItemSlot( 39, 39, 16, 16 ).drawOwnBackground(), new ItemSlot( 59, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ).drawOwnBackground(), };
2014-03-24 08:55:46 +01:00
private final Slot[] smallCraftingSlotsOwnBackground = new ItemSlot[] { new ItemSlot( 12, 12, 16, 16 ).drawOwnBackground(), new ItemSlot( 30, 12, 16, 16 ).drawOwnBackground(), new ItemSlot( 12, 30, 16, 16 ).drawOwnBackground(), new ItemSlot( 30, 30, 16, 16 ).drawOwnBackground(), new ItemSlot( 59, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ).drawOwnBackground(), };
2014-03-24 08:55:46 +01:00
private final Slot[] craftingSlots = new ItemSlot[] { new ItemSlot( 3, 3, 16, 16 ), new ItemSlot( 21, 3, 16, 16 ), new ItemSlot( 39, 3, 16, 16 ), new ItemSlot( 3, 21, 16, 16 ), new ItemSlot( 21, 21, 16, 16 ), new ItemSlot( 39, 21, 16, 16 ), new ItemSlot( 3, 39, 16, 16 ), new ItemSlot( 21, 39, 16, 16 ), new ItemSlot( 39, 39, 16, 16 ), new ItemSlot( 59, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ), };
2014-03-24 08:55:46 +01:00
private final Slot[] smallCraftingSlots = new ItemSlot[] { new ItemSlot( 12, 12, 16, 16 ), new ItemSlot( 30, 12, 16, 16 ), new ItemSlot( 12, 30, 16, 16 ), new ItemSlot( 30, 30, 16, 16 ), new ItemSlot( 59, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ), };
2014-03-24 08:55:46 +01:00
private final Slot[] furnaceSlots = new ItemSlot[] { new ItemSlot( 13, 21, 16, 16 ), new ItemSlot( 50, 21, 16, 16, true ).setSlotType( SlotType.OUTPUT_SLOT ), };
RecipeGenerator parent;
2014-03-24 08:55:46 +01:00
@Override
public String getInfo( ItemStack itemStack )
2014-03-24 08:55:46 +01:00
{
// :P
return null;
}
@Override
public void generateRecipes( RecipeGenerator generator )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
this.parent = generator;
2014-03-24 08:55:46 +01:00
RecipeTemplate craftingTemplate;
RecipeTemplate smallTemplate;
2014-03-24 08:55:46 +01:00
if( uristqwerty.CraftGuide.CraftGuide.newerBackgroundStyle )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
craftingTemplate = generator.createRecipeTemplate( this.craftingSlotsOwnBackground, null );
smallTemplate = generator.createRecipeTemplate( this.smallCraftingSlotsOwnBackground, null );
2014-03-24 08:55:46 +01:00
}
else
{
craftingTemplate = new DefaultRecipeTemplate( this.craftingSlots, RecipeGeneratorImplementation.workbench, new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 1, 1, 79, 58 ), new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 82, 1, 79, 58 ) );
2014-03-24 08:55:46 +01:00
smallTemplate = new DefaultRecipeTemplate( this.smallCraftingSlots, RecipeGeneratorImplementation.workbench, new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 1, 61, 79, 58 ), new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 82, 61, 79, 58 ) );
2014-03-24 08:55:46 +01:00
}
RecipeTemplate shapelessTemplate = new DefaultRecipeTemplate( this.shapelessCraftingSlots, RecipeGeneratorImplementation.workbench, new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 1, 121, 79, 58 ), new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 82, 121, 79, 58 ) );
2014-03-24 08:55:46 +01:00
RecipeTemplate furnaceTemplate = new DefaultRecipeTemplate( this.furnaceSlots, new ItemStack( Blocks.furnace ), new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 1, 181, 79, 58 ), new TextureClip( DynamicTexture.instance( "recipe_backgrounds" ), 82, 181, 79, 58 ) );
2014-03-24 08:55:46 +01:00
this.addCraftingRecipes( craftingTemplate, smallTemplate, shapelessTemplate, this );
2014-12-29 15:13:47 +01:00
this.addGrinderRecipes( furnaceTemplate, this );
this.addInscriberRecipes( furnaceTemplate, this );
2014-03-24 08:55:46 +01:00
}
private void addCraftingRecipes( RecipeTemplate template, RecipeTemplate templateSmall, RecipeTemplate templateShapeless, RecipeGenerator generator )
2014-03-24 08:55:46 +01:00
{
List recipes = CraftingManager.getInstance().getRecipeList();
int errCount = 0;
for( Object o : recipes )
2014-03-24 08:55:46 +01:00
{
try
{
IRecipe recipe = (IRecipe) o;
Object[] items = generator.getCraftingRecipe( recipe, true );
if( items.length == 5 )
2014-03-24 08:55:46 +01:00
{
generator.addRecipe( templateSmall, items );
}
else if( recipe instanceof ShapelessRecipe )
2014-03-24 08:55:46 +01:00
{
generator.addRecipe( templateShapeless, items );
}
else
{
generator.addRecipe( template, items );
}
}
catch( Exception e )
2014-03-24 08:55:46 +01:00
{
if( errCount >= 5 )
2014-03-24 08:55:46 +01:00
{
CraftGuideLog.log( "CraftGuide DefaultRecipeProvider: Stack trace limit reached, further stack traces from this invocation will not be logged to the console. They will still be logged to (.minecraft)/config/CraftGuide/CraftGuide.log", true );
2014-03-24 08:55:46 +01:00
errCount = -1;
}
else
{
e.printStackTrace();
}
2015-03-26 11:07:26 +01:00
errCount++;
2014-03-24 08:55:46 +01:00
CraftGuideLog.log( e );
}
}
}
private void addGrinderRecipes( RecipeTemplate template, RecipeGenerator generator )
2014-03-24 08:55:46 +01:00
{
}
private void addInscriberRecipes( RecipeTemplate template, RecipeGenerator generator )
2014-03-24 08:55:46 +01:00
{
}
@Override
public RecipeTemplate createRecipeTemplate( Slot[] slots, ItemStack craftingType )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
return this.parent.createRecipeTemplate( slots, craftingType );
2014-03-24 08:55:46 +01:00
}
@Override
public RecipeTemplate createRecipeTemplate( Slot[] slots, ItemStack craftingType, String backgroundTexture, int backgroundX, int backgroundY, int backgroundSelectedX, int backgroundSelectedY )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
return this.parent.createRecipeTemplate( slots, craftingType, backgroundTexture, backgroundX, backgroundY, backgroundSelectedX, backgroundSelectedY );
2014-03-24 08:55:46 +01:00
}
@Override
public RecipeTemplate createRecipeTemplate( Slot[] slots, ItemStack craftingType, String bgTexture, int bgX, int bgY, String selectedBGTexture, int selectedBGX, int selectedBGY )
2014-03-24 08:55:46 +01:00
{
return this.parent.createRecipeTemplate( slots, craftingType, bgTexture, bgX, bgY, selectedBGTexture, selectedBGX, selectedBGY );
2014-03-24 08:55:46 +01:00
}
@Override
public void addRecipe( RecipeTemplate template, Object[] crafting )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
this.parent.addRecipe( template, crafting );
2014-03-24 08:55:46 +01:00
}
@Override
public void addRecipe( CraftGuideRecipe recipe, ItemStack craftingType )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
this.parent.addRecipe( recipe, craftingType );
2014-03-24 08:55:46 +01:00
}
@Override
public void setDefaultTypeVisibility( ItemStack type, boolean visible )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
this.parent.setDefaultTypeVisibility( type, visible );
2014-03-24 08:55:46 +01:00
}
@Override
public Object[] getCraftingRecipe( IRecipe recipe )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
return this.getCraftingRecipe( recipe, true );
2014-03-24 08:55:46 +01:00
}
Object[] getCraftingShapelessRecipe( List items, ItemStack recipeOutput )
2014-03-24 08:55:46 +01:00
{
Object[] output = new Object[10];
for( int i = 0; i < items.size(); i++ )
2014-03-24 08:55:46 +01:00
{
output[i] = items.get( i );
if( output[i] instanceof ItemStack[] )
2015-04-29 02:30:53 +02:00
{
2014-03-24 09:38:52 +01:00
output[i] = Arrays.asList( (ItemStack[]) output[i] );
2015-04-29 02:30:53 +02:00
}
2014-03-24 08:55:46 +01:00
if( output[i] instanceof IIngredient )
{
try
{
output[i] = this.toCG( ( (IIngredient) output[i] ).getItemStackSet() );
}
catch( RegistrationError ignored )
{
}
catch( MissingIngredientError ignored )
{
}
}
2014-03-24 08:55:46 +01:00
}
output[9] = recipeOutput;
return output;
}
Object[] getSmallShapedRecipe( int width, int height, Object[] items, ItemStack recipeOutput )
2014-03-24 08:55:46 +01:00
{
Object[] output = new Object[5];
2014-03-24 08:55:46 +01:00
for( int y = 0; y < height; y++ )
2014-03-24 08:55:46 +01:00
{
for( int x = 0; x < width; x++ )
2014-03-24 08:55:46 +01:00
{
int i = y * 2 + x;
2014-03-24 08:55:46 +01:00
output[i] = items[y * width + x];
if( output[i] instanceof ItemStack[] )
2015-04-29 02:30:53 +02:00
{
2014-03-24 09:38:52 +01:00
output[i] = Arrays.asList( (ItemStack[]) output[i] );
2015-04-29 02:30:53 +02:00
}
2014-03-24 08:55:46 +01:00
if( output[i] instanceof IIngredient )
{
try
{
output[i] = this.toCG( ( (IIngredient) output[i] ).getItemStackSet() );
}
catch( RegistrationError ignored )
{
}
catch( MissingIngredientError ignored )
{
}
}
2014-03-24 08:55:46 +01:00
}
}
output[4] = recipeOutput;
2014-03-24 08:55:46 +01:00
return output;
}
Object[] getCraftingShapedRecipe( int width, int height, Object[] items, ItemStack recipeOutput )
2014-03-24 08:55:46 +01:00
{
Object[] output = new Object[10];
2014-03-24 08:55:46 +01:00
for( int y = 0; y < height; y++ )
2014-03-24 08:55:46 +01:00
{
for( int x = 0; x < width; x++ )
2014-03-24 08:55:46 +01:00
{
int i = y * 3 + x;
2014-03-24 08:55:46 +01:00
output[i] = items[y * width + x];
if( output[i] instanceof ItemStack[] )
2015-04-29 02:30:53 +02:00
{
2014-03-24 09:38:52 +01:00
output[i] = Arrays.asList( (ItemStack[]) output[i] );
2015-04-29 02:30:53 +02:00
}
2014-03-24 08:55:46 +01:00
if( output[i] instanceof IIngredient )
{
try
{
output[i] = this.toCG( ( (IIngredient) output[i] ).getItemStackSet() );
}
catch( RegistrationError ignored )
{
}
catch( MissingIngredientError ignored )
{
}
}
2014-03-24 08:55:46 +01:00
}
}
output[9] = recipeOutput;
2014-03-24 08:55:46 +01:00
return output;
}
private Object toCG( ItemStack[] itemStackSet )
{
List<ItemStack> list = Arrays.asList( itemStackSet );
for( int x = 0; x < list.size(); x++ )
{
list.set( x, list.get( x ).copy() );
if( list.get( x ).stackSize == 0 )
2015-04-29 02:30:53 +02:00
{
list.get( x ).stackSize = 1;
2015-04-29 02:30:53 +02:00
}
}
return list;
}
2014-03-24 08:55:46 +01:00
@Override
public Object[] getCraftingRecipe( IRecipe recipe, boolean allowSmallGrid )
2014-03-24 08:55:46 +01:00
{
if( recipe instanceof ShapelessRecipe )
2014-03-24 08:55:46 +01:00
{
2014-09-29 09:42:50 +02:00
List items = ReflectionHelper.getPrivateValue( ShapelessRecipe.class, (ShapelessRecipe) recipe, "input" );
2014-12-29 15:13:47 +01:00
return this.getCraftingShapelessRecipe( items, recipe.getRecipeOutput() );
2014-03-24 08:55:46 +01:00
}
else if( recipe instanceof ShapedRecipe )
2014-03-24 08:55:46 +01:00
{
2014-09-29 09:42:50 +02:00
int width = ReflectionHelper.getPrivateValue( ShapedRecipe.class, (ShapedRecipe) recipe, "width" );
int height = ReflectionHelper.getPrivateValue( ShapedRecipe.class, (ShapedRecipe) recipe, "height" );
Object[] items = ReflectionHelper.getPrivateValue( ShapedRecipe.class, (ShapedRecipe) recipe, "input" );
2014-03-24 08:55:46 +01:00
if( allowSmallGrid && width < 3 && height < 3 )
2014-03-24 08:55:46 +01:00
{
2014-12-29 15:13:47 +01:00
return this.getSmallShapedRecipe( width, height, items, recipe.getRecipeOutput() );
2014-03-24 08:55:46 +01:00
}
else
{
2014-12-29 15:13:47 +01:00
return this.getCraftingShapedRecipe( width, height, items, recipe.getRecipeOutput() );
2014-03-24 08:55:46 +01:00
}
}
return null;
2014-03-24 09:29:23 +01:00
}
@Override
public void init() throws Throwable
2014-03-24 09:29:23 +01:00
{
StackInfo.addSource( this );
}
@Override
public void postInit()
2014-03-24 09:29:23 +01:00
{
2014-03-24 08:55:46 +01:00
}
}