3783ae8619
Many exceptions got an improvement due to changed class or description or details it is providing. Is not complete, needs to be done in patches in the regions, where it is needed, since some are just swallowed. Removed total usage of pure RuntimeExceptions to 0.
94 lines
2.7 KiB
Java
94 lines
2.7 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.handlers;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.exceptions.MissingIngredientError;
|
|
import appeng.api.exceptions.RecipeError;
|
|
import appeng.api.exceptions.RegistrationError;
|
|
import appeng.api.recipes.ICraftHandler;
|
|
import appeng.api.recipes.IIngredient;
|
|
import appeng.core.AELog;
|
|
import appeng.core.AppEng;
|
|
import appeng.integration.IntegrationType;
|
|
import appeng.integration.abstraction.IMekanism;
|
|
import appeng.recipes.RecipeHandler;
|
|
import appeng.util.Platform;
|
|
|
|
|
|
public class MekCrusher implements ICraftHandler, IWebsiteSerializer
|
|
{
|
|
|
|
IIngredient pro_input;
|
|
IIngredient[] pro_output;
|
|
|
|
@Override
|
|
public void setup( List<List<IIngredient>> input, List<List<IIngredient>> output ) throws RecipeError
|
|
{
|
|
if( input.size() == 1 && output.size() == 1 )
|
|
{
|
|
int outs = output.get( 0 ).size();
|
|
if( input.get( 0 ).size() == 1 && outs == 1 )
|
|
{
|
|
this.pro_input = input.get( 0 ).get( 0 );
|
|
this.pro_output = output.get( 0 ).toArray( new IIngredient[outs] );
|
|
return;
|
|
}
|
|
}
|
|
|
|
throw new RecipeError( "MekCrusher must have a single input, and single output." );
|
|
}
|
|
|
|
@Override
|
|
public void register() throws RegistrationError, MissingIngredientError
|
|
{
|
|
if( AppEng.instance.isIntegrationEnabled( IntegrationType.Mekanism ) )
|
|
{
|
|
IMekanism rc = (IMekanism) AppEng.instance.getIntegration( IntegrationType.Mekanism );
|
|
for( ItemStack is : this.pro_input.getItemStackSet() )
|
|
{
|
|
try
|
|
{
|
|
rc.addCrusherRecipe( is, this.pro_output[0].getItemStack() );
|
|
}
|
|
catch( java.lang.RuntimeException err )
|
|
{
|
|
AELog.info( "Mekanism not happy - " + err.getMessage() );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getPattern( RecipeHandler h )
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean canCraft( ItemStack output ) throws RegistrationError, MissingIngredientError
|
|
{
|
|
return Platform.isSameItemPrecise( this.pro_output[0].getItemStack(), output );
|
|
}
|
|
}
|