Applied-Energistics-2-tiler.../core/FacadeConfig.java

54 lines
1.3 KiB
Java
Raw Normal View History

2014-02-01 23:29:07 +01:00
package appeng.core;
import java.io.File;
import java.lang.reflect.Field;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net.minecraft.block.Block;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier;
2014-02-09 02:34:52 +01:00
public class FacadeConfig extends net.minecraftforge.common.config.Configuration
2014-02-01 23:29:07 +01:00
{
public static FacadeConfig instance;
Pattern replacementPattern;
public FacadeConfig(File f) {
super( new File( f.getPath() + File.separator + "AppliedEnergistics2" + File.separator + "Facades.cfg" ) );
replacementPattern = Pattern.compile( "[^a-zA-Z0-9]" );
}
public boolean checkEnabled(Block id, boolean automatic)
{
2014-02-09 02:34:52 +01:00
if ( id == null )
2014-02-01 23:29:07 +01:00
return false;
UniqueIdentifier blk = GameRegistry.findUniqueIdentifierFor( id );
if ( blk == null )
{
for (Field f : Block.class.getFields())
{
try
{
if ( f.get( Block.class ) == id )
return get( "minecraft", f.getName(), automatic ).getBoolean( automatic );
}
catch (Throwable e)
{
// :P
}
}
}
else
{
Matcher mod = replacementPattern.matcher( blk.modId );
Matcher name = replacementPattern.matcher( blk.name );
return get( mod.replaceAll( "" ), name.replaceAll( "" ), automatic ).getBoolean( automatic );
}
return false;
}
}