Applied-Energistics-2-tiler.../src/main/java/appeng/core/features/registries/GrinderRecipeManager.java

270 lines
7.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-09-24 02:26:27 +02:00
package appeng.core.features.registries;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
2014-12-29 21:59:05 +01:00
2014-09-24 02:26:27 +02:00
import appeng.api.features.IGrinderEntry;
import appeng.api.features.IGrinderRegistry;
import appeng.core.AEConfig;
import appeng.core.AELog;
import appeng.core.features.registries.entries.AppEngGrinderRecipe;
import appeng.recipes.ores.IOreListener;
import appeng.recipes.ores.OreDictionaryHandler;
import appeng.util.Platform;
public class GrinderRecipeManager implements IGrinderRegistry, IOreListener
{
public final List<IGrinderEntry> RecipeList;
2014-09-24 02:26:27 +02:00
private ItemStack copy(ItemStack is)
{
if ( is != null )
return is.copy();
return null;
}
public GrinderRecipeManager() {
2014-12-29 15:13:47 +01:00
this.RecipeList = new ArrayList<IGrinderEntry>();
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addOre( "Coal", new ItemStack( Items.coal ) );
this.addOre( "Charcoal", new ItemStack( Items.coal, 1, 1 ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addOre( "NetherQuartz", new ItemStack( Blocks.quartz_ore ) );
this.addIngot( "NetherQuartz", new ItemStack( Items.quartz ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addOre( "Gold", new ItemStack( Blocks.gold_ore ) );
this.addIngot( "Gold", new ItemStack( Items.gold_ingot ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addOre( "Iron", new ItemStack( Blocks.iron_ore ) );
this.addIngot( "Iron", new ItemStack( Items.iron_ingot ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addOre( "Obsidian", new ItemStack( Blocks.obsidian ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addIngot( "Ender", new ItemStack( Items.ender_pearl ) );
this.addIngot( "EnderPearl", new ItemStack( Items.ender_pearl ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.addIngot( "Wheat", new ItemStack( Items.wheat ) );
2014-09-24 02:26:27 +02:00
2015-01-01 22:13:10 +01:00
OreDictionaryHandler.INSTANCE.observe( this );
2014-09-24 02:26:27 +02:00
}
@Override
public List<IGrinderEntry> getRecipes()
{
2014-12-29 15:13:47 +01:00
this.log( "API - getRecipes" );
return this.RecipeList;
2014-09-24 02:26:27 +02:00
}
private void injectRecipe(AppEngGrinderRecipe appEngGrinderRecipe)
{
2014-12-29 15:13:47 +01:00
for (IGrinderEntry gr : this.RecipeList)
2014-09-24 02:26:27 +02:00
if ( Platform.isSameItemPrecise( gr.getInput(), appEngGrinderRecipe.getInput() ) )
return;
2014-12-29 15:13:47 +01:00
this.RecipeList.add( appEngGrinderRecipe );
2014-09-24 02:26:27 +02:00
}
@Override
public void addRecipe(ItemStack in, ItemStack out, int cost)
{
if ( in == null || out == null )
{
2014-12-29 15:13:47 +01:00
this.log( "Invalid Grinder Recipe Specified." );
2014-09-24 02:26:27 +02:00
return;
}
2014-12-29 15:13:47 +01:00
this.log( "Allow Grinding of " + Platform.getItemDisplayName( in ) + " to " + Platform.getItemDisplayName( out ) + " for " + cost );
this.injectRecipe( new AppEngGrinderRecipe( this.copy( in ), this.copy( out ), cost ) );
2014-09-24 02:26:27 +02:00
}
@Override
public void addRecipe(ItemStack in, ItemStack out, ItemStack optional, float chance, int cost)
{
if ( in == null || (optional == null && out == null) )
{
2014-12-29 15:13:47 +01:00
this.log( "Invalid Grinder Recipe Specified." );
2014-09-24 02:26:27 +02:00
return;
}
2014-12-29 15:13:47 +01:00
this.log( "Allow Grinding of " + Platform.getItemDisplayName( in ) + " to " + Platform.getItemDisplayName( out ) + " with optional "
2014-09-24 02:26:27 +02:00
+ Platform.getItemDisplayName( optional ) + " for " + cost );
2014-12-29 15:13:47 +01:00
this.injectRecipe( new AppEngGrinderRecipe( this.copy( in ), this.copy( out ), this.copy( optional ), chance, cost ) );
2014-09-24 02:26:27 +02:00
}
@Override
public void addRecipe(ItemStack in, ItemStack out, ItemStack optional, float chance, ItemStack optional2, float chance2, int cost)
{
if ( in == null || (optional == null && out == null && optional2 == null) )
{
2014-12-29 15:13:47 +01:00
this.log( "Invalid Grinder Recipe Specified." );
2014-09-24 02:26:27 +02:00
return;
}
2014-12-29 15:13:47 +01:00
this.log( "Allow Grinding of " + Platform.getItemDisplayName( in ) + " to " + Platform.getItemDisplayName( out ) + " with optional "
2014-09-24 02:26:27 +02:00
+ Platform.getItemDisplayName( optional ) + " for " + cost );
2014-12-29 15:13:47 +01:00
this.injectRecipe( new AppEngGrinderRecipe( this.copy( in ), this.copy( out ), this.copy( optional ), chance, cost ) );
2014-09-24 02:26:27 +02:00
}
@Override
public IGrinderEntry getRecipeForInput(ItemStack input)
{
2014-12-29 15:13:47 +01:00
this.log( "Looking up recipe for " + Platform.getItemDisplayName( input ) );
2014-09-24 02:26:27 +02:00
if ( input != null )
{
2014-12-29 15:13:47 +01:00
for (IGrinderEntry r : this.RecipeList)
2014-09-24 02:26:27 +02:00
{
if ( Platform.isSameItem( input, r.getInput() ) )
{
2014-12-29 15:13:47 +01:00
this.log( "Recipe for " + input.getUnlocalizedName() + " found " + Platform.getItemDisplayName( r.getOutput() ) );
2014-09-24 02:26:27 +02:00
return r;
}
}
2014-12-29 15:13:47 +01:00
this.log( "Could not find recipe for " + Platform.getItemDisplayName( input ) );
2014-09-24 02:26:27 +02:00
}
return null;
}
public void log(String o)
{
AELog.grinder( o );
}
private int getDustToOreRatio(String name)
{
if ( name.equals( "Obsidian" ) )
return 1;
if ( name.equals( "Charcoal" ) )
return 1;
if ( name.equals( "Coal" ) )
return 1;
return 2;
}
public final Map<ItemStack, String> Ores = new HashMap<ItemStack, String>();
public final Map<ItemStack, String> Ingots = new HashMap<ItemStack, String>();
public final Map<String, ItemStack> Dusts = new HashMap<String, ItemStack>();
2014-09-24 02:26:27 +02:00
private void addOre(String name, ItemStack item)
{
if ( item == null )
return;
2014-12-29 15:13:47 +01:00
this.log( "Adding Ore - " + name + " : " + Platform.getItemDisplayName( item ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.Ores.put( item, name );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
if ( this.Dusts.containsKey( name ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
ItemStack is = this.Dusts.get( name ).copy();
int ratio = this.getDustToOreRatio( name );
2014-09-24 02:26:27 +02:00
if ( ratio > 1 )
{
ItemStack extra = is.copy();
extra.stackSize = ratio - 1;
2014-12-29 15:13:47 +01:00
this.addRecipe( item, is, extra, (float) (AEConfig.instance.oreDoublePercentage / 100.0), 8 );
2014-09-24 02:26:27 +02:00
}
else
2014-12-29 15:13:47 +01:00
this.addRecipe( item, is, 8 );
2014-09-24 02:26:27 +02:00
}
}
private void addIngot(String name, ItemStack item)
{
if ( item == null )
return;
2014-12-29 15:13:47 +01:00
this.log( "Adding Ingot - " + name + " : " + Platform.getItemDisplayName( item ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.Ingots.put( item, name );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
if ( this.Dusts.containsKey( name ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.addRecipe( item, this.Dusts.get( name ), 4 );
2014-09-24 02:26:27 +02:00
}
}
private void addDust(String name, ItemStack item)
{
if ( item == null )
return;
2014-12-29 15:13:47 +01:00
if ( this.Dusts.containsKey( name ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.log( "Rejecting Dust - " + name + " : " + Platform.getItemDisplayName( item ) );
2014-09-24 02:26:27 +02:00
return;
}
2014-12-29 15:13:47 +01:00
this.log( "Adding Dust - " + name + " : " + Platform.getItemDisplayName( item ) );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.Dusts.put( name, item );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
for (Entry<ItemStack, String> d : this.Ores.entrySet())
2014-09-24 02:26:27 +02:00
if ( name.equals( d.getValue() ) )
{
ItemStack is = item.copy();
is.stackSize = 1;
2014-12-29 15:13:47 +01:00
int ratio = this.getDustToOreRatio( name );
2014-09-24 02:26:27 +02:00
if ( ratio > 1 )
{
ItemStack extra = is.copy();
extra.stackSize = ratio - 1;
2014-12-29 15:13:47 +01:00
this.addRecipe( d.getKey(), is, extra, (float) (AEConfig.instance.oreDoublePercentage / 100.0), 8 );
2014-09-24 02:26:27 +02:00
}
else
2014-12-29 15:13:47 +01:00
this.addRecipe( d.getKey(), is, 8 );
2014-09-24 02:26:27 +02:00
}
2014-12-29 15:13:47 +01:00
for (Entry<ItemStack, String> d : this.Ingots.entrySet())
2014-09-24 02:26:27 +02:00
if ( name.equals( d.getValue() ) )
2014-12-29 15:13:47 +01:00
this.addRecipe( d.getKey(), item, 4 );
2014-09-24 02:26:27 +02:00
}
@Override
2014-09-27 23:17:47 +02:00
public void oreRegistered(String name, ItemStack item)
2014-09-24 02:26:27 +02:00
{
2014-09-27 23:17:47 +02:00
if ( name.startsWith( "ore" ) || name.startsWith( "crystal" ) || name.startsWith( "gem" ) || name.startsWith( "ingot" ) || name.startsWith( "dust" ) )
2014-09-24 02:26:27 +02:00
{
for (String ore : AEConfig.instance.grinderOres)
{
2014-09-27 23:17:47 +02:00
if ( name.equals( "ore" + ore ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.addOre( ore, item );
2014-09-24 02:26:27 +02:00
}
2014-09-27 23:17:47 +02:00
else if ( name.equals( "crystal" + ore ) || name.equals( "ingot" + ore ) || name.equals( "gem" + ore ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.addIngot( ore, item );
2014-09-24 02:26:27 +02:00
}
2014-09-27 23:17:47 +02:00
else if ( name.equals( "dust" + ore ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.addDust( ore, item );
2014-09-24 02:26:27 +02:00
}
}
}
}
}