Website Recipe Exporter.

This commit is contained in:
AlgorithmX2
2014-03-05 13:34:56 -06:00
parent 040e948d8e
commit e8ec768d4c
13 changed files with 257 additions and 11 deletions
+116
View File
@@ -1,10 +1,20 @@
package appeng.recipes;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map.Entry;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier;
import net.minecraft.item.ItemStack;
import appeng.api.AEApi;
import appeng.api.exceptions.MissingIngredientError;
@@ -15,7 +25,12 @@ import appeng.api.recipes.ICraftHandler;
import appeng.api.recipes.IIngredient;
import appeng.api.recipes.IRecipeHandler;
import appeng.api.recipes.IRecipeLoader;
import appeng.core.AEConfig;
import appeng.core.AELog;
import appeng.core.features.AEFeature;
import appeng.items.materials.ItemMaterial;
import appeng.items.parts.ItemPart;
import appeng.recipes.handlers.IWebsiteSeralizer;
import appeng.recipes.handlers.OreRegistration;
public class RecipeHandler implements IRecipeHandler
@@ -37,6 +52,28 @@ public class RecipeHandler implements IRecipeHandler
data.Handlers.add( ch );
}
public List<IWebsiteSeralizer> findRecipe( ItemStack output )
{
List<IWebsiteSeralizer> out = new LinkedList<IWebsiteSeralizer>();
for ( ICraftHandler ch : data.Handlers )
{
try
{
if ( ch instanceof IWebsiteSeralizer && ch.canCraft(output))
{
out.add((IWebsiteSeralizer)ch);
}
}
catch (Throwable t )
{
AELog.error(t);
}
}
return out;
}
@Override
public void registerHandlers()
{
@@ -89,6 +126,81 @@ public class RecipeHandler implements IRecipeHandler
{
AELog.info( "Recipes Loading: " + e.getKey().getSimpleName() + ": " + e.getValue() + " loaded." );
}
if ( AEConfig.instance.isFeatureEnabled(AEFeature.WebsiteRecipes) )
{
try {
ZipOutputStream out = new ZipOutputStream(new FileOutputStream("recipes.zip"));
for ( String s : data.knownItem )
{
try
{
Ingredient i = new Ingredient( this, s, 1 );
for ( ItemStack is : i.getItemStackSet() )
{
List<IWebsiteSeralizer> recipes = findRecipe(is);
if ( !recipes.isEmpty() )
{
int offset =0;
String realName = getName(is);
for ( IWebsiteSeralizer ws : recipes )
{
out.putNextEntry(new ZipEntry(realName+"_"+offset+".txt"));
offset++;
out.write(ws.getPattern(this).getBytes());
}
}
}
}
catch( Throwable t )
{
// :P
}
}
out.close();
} catch (FileNotFoundException e1) {
AELog.error(e1);
} catch (IOException e1) {
AELog.error(e1);
}
}
}
public String getName( IIngredient i )
{
try
{
return getName( i.getItemStack() );
}
catch (Throwable t )
{
// :P
}
return i.getNameSpace()+":"+i.getItemName();
}
public String getName(ItemStack is) {
UniqueIdentifier id = GameRegistry.findUniqueIdentifierFor(is.getItem());
String realName = id.modId+":"+id.name;
if ( is.getItem() instanceof ItemMaterial )
realName += ":"+( (ItemMaterial)is.getItem() ).getType(is).name();
else if ( is.getItem() instanceof ItemPart )
realName += ":"+( (ItemPart)is.getItem() ).getTypeByStack(is).name();
else if ( is.getItemDamage() > 0 )
realName += ":"+is.getItemDamage();
return realName;
}
public String alias(String in)
@@ -380,8 +492,11 @@ public class RecipeHandler implements IRecipeHandler
private IIngredient findIngrident(String v, int qty) throws RecipeError
{
GroupIngredient gi = data.groups.get( v );
if ( gi != null )
return gi.copy( qty );
data.knownItem.add( v );
return new Ingredient( this, v, qty );
}
@@ -399,4 +514,5 @@ public class RecipeHandler implements IRecipeHandler
return true;
}
}