167 lines
5.3 KiB
Java
167 lines
5.3 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;
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.AEApi;
|
|
import appeng.api.recipes.ISubItemResolver;
|
|
import appeng.api.recipes.ResolverResult;
|
|
import appeng.api.recipes.ResolverResultSet;
|
|
import appeng.api.util.AEColor;
|
|
import appeng.api.util.AEColoredItemDefinition;
|
|
import appeng.core.AppEng;
|
|
import appeng.items.materials.ItemMultiMaterial;
|
|
import appeng.items.materials.MaterialType;
|
|
import appeng.items.misc.ItemCrystalSeed;
|
|
import appeng.items.parts.ItemMultiPart;
|
|
import appeng.items.parts.PartType;
|
|
|
|
public class AEItemResolver implements ISubItemResolver
|
|
{
|
|
|
|
@Override
|
|
public Object resolveItemByName(String nameSpace, String itemName)
|
|
{
|
|
|
|
if ( nameSpace.equals( AppEng.MOD_ID ) )
|
|
{
|
|
if ( itemName.startsWith( "PaintBall." ) )
|
|
{
|
|
return this.paintBall( AEApi.instance().items().itemPaintBall, itemName.substring( itemName.indexOf( "." ) + 1 ), false );
|
|
}
|
|
|
|
if ( itemName.startsWith( "LumenPaintBall." ) )
|
|
{
|
|
return this.paintBall( AEApi.instance().items().itemPaintBall, itemName.substring( itemName.indexOf( "." ) + 1 ), true );
|
|
}
|
|
|
|
if ( itemName.equals( "CableGlass" ) )
|
|
{
|
|
return new ResolverResultSet( "CableGlass", AEApi.instance().parts().partCableGlass.allStacks( 1 ) );
|
|
}
|
|
|
|
if ( itemName.startsWith( "CableGlass." ) )
|
|
{
|
|
return this.cableItem( AEApi.instance().parts().partCableGlass, itemName.substring( itemName.indexOf( "." ) + 1 ) );
|
|
}
|
|
|
|
if ( itemName.equals( "CableCovered" ) )
|
|
{
|
|
return new ResolverResultSet( "CableCovered", AEApi.instance().parts().partCableCovered.allStacks( 1 ) );
|
|
}
|
|
|
|
if ( itemName.startsWith( "CableCovered." ) )
|
|
{
|
|
return this.cableItem( AEApi.instance().parts().partCableCovered, itemName.substring( itemName.indexOf( "." ) + 1 ) );
|
|
}
|
|
|
|
if ( itemName.equals( "CableSmart" ) )
|
|
{
|
|
return new ResolverResultSet( "CableSmart", AEApi.instance().parts().partCableSmart.allStacks( 1 ) );
|
|
}
|
|
|
|
if ( itemName.startsWith( "CableSmart." ) )
|
|
{
|
|
return this.cableItem( AEApi.instance().parts().partCableSmart, itemName.substring( itemName.indexOf( "." ) + 1 ) );
|
|
}
|
|
|
|
if ( itemName.equals( "CableDense" ) )
|
|
{
|
|
return new ResolverResultSet( "CableDense", AEApi.instance().parts().partCableDense.allStacks( 1 ) );
|
|
}
|
|
|
|
if ( itemName.startsWith( "CableDense." ) )
|
|
{
|
|
return this.cableItem( AEApi.instance().parts().partCableDense, itemName.substring( itemName.indexOf( "." ) + 1 ) );
|
|
}
|
|
|
|
if ( itemName.startsWith( "ItemCrystalSeed." ) )
|
|
{
|
|
if ( itemName.equalsIgnoreCase( "ItemCrystalSeed.Certus" ) )
|
|
return ItemCrystalSeed.getResolver( ItemCrystalSeed.Certus );
|
|
if ( itemName.equalsIgnoreCase( "ItemCrystalSeed.Nether" ) )
|
|
return new ResolverResult( "ItemCrystalSeed", ItemCrystalSeed.Nether );
|
|
if ( itemName.equalsIgnoreCase( "ItemCrystalSeed.Fluix" ) )
|
|
return new ResolverResult( "ItemCrystalSeed", ItemCrystalSeed.Fluix );
|
|
|
|
return null;
|
|
}
|
|
|
|
if ( itemName.startsWith( "ItemMaterial." ) )
|
|
{
|
|
String materialName = itemName.substring( itemName.indexOf( "." ) + 1 );
|
|
MaterialType mt = MaterialType.valueOf( materialName );
|
|
// itemName = itemName.substring( 0, itemName.indexOf( "." ) );
|
|
if ( mt.itemInstance == ItemMultiMaterial.instance && mt.damageValue >= 0 && mt.isRegistered() )
|
|
return new ResolverResult( "ItemMultiMaterial", mt.damageValue );
|
|
}
|
|
|
|
if ( itemName.startsWith( "ItemPart." ) )
|
|
{
|
|
String partName = itemName.substring( itemName.indexOf( "." ) + 1 );
|
|
PartType pt = PartType.valueOf( partName );
|
|
// itemName = itemName.substring( 0, itemName.indexOf( "." ) );
|
|
int dVal = ItemMultiPart.instance.getDamageByType( pt );
|
|
if ( dVal >= 0 )
|
|
return new ResolverResult( "ItemMultiPart", dVal );
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private Object paintBall(AEColoredItemDefinition partType, String substring, boolean lumen)
|
|
{
|
|
AEColor col = AEColor.Transparent;
|
|
|
|
try
|
|
{
|
|
col = AEColor.valueOf( substring );
|
|
}
|
|
catch (Throwable t)
|
|
{
|
|
col = AEColor.Transparent;
|
|
}
|
|
|
|
if ( col == AEColor.Transparent )
|
|
return null;
|
|
|
|
ItemStack is = partType.stack( col, 1 );
|
|
return new ResolverResult( "ItemPaintBall", (lumen ? 20 : 0) + is.getItemDamage() );
|
|
}
|
|
|
|
private Object cableItem(AEColoredItemDefinition partType, String substring)
|
|
{
|
|
AEColor col = AEColor.Transparent;
|
|
|
|
try
|
|
{
|
|
col = AEColor.valueOf( substring );
|
|
}
|
|
catch (Throwable t)
|
|
{
|
|
col = AEColor.Transparent;
|
|
}
|
|
|
|
ItemStack is = partType.stack( col, 1 );
|
|
return new ResolverResult( "ItemMultiPart", is.getItemDamage() );
|
|
}
|
|
}
|