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-02-01 23:29:07 +01:00
|
|
|
package appeng.core;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2014-02-01 23:29:07 +01:00
|
|
|
import java.io.File;
|
|
|
|
import java.lang.reflect.Field;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
2014-02-09 06:08:27 +01:00
|
|
|
import net.minecraftforge.common.config.Configuration;
|
2014-12-29 21:59:05 +01:00
|
|
|
|
2014-02-01 23:29:07 +01:00
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
|
|
|
import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2014-02-09 06:08:27 +01:00
|
|
|
public class FacadeConfig extends Configuration
|
2014-02-01 23:29:07 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public static FacadeConfig instance;
|
2014-09-29 09:54:34 +02:00
|
|
|
final Pattern replacementPattern;
|
2014-02-01 23:29:07 +01:00
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
public FacadeConfig( File facadeFile )
|
|
|
|
{
|
2015-03-09 17:35:19 +01:00
|
|
|
super( facadeFile );
|
2014-12-29 15:13:47 +01:00
|
|
|
this.replacementPattern = Pattern.compile( "[^a-zA-Z0-9]" );
|
2014-02-01 23:29:07 +01:00
|
|
|
}
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
public boolean checkEnabled( Block id, int metadata, boolean automatic )
|
2014-02-01 23:29:07 +01:00
|
|
|
{
|
2015-04-03 08:54:31 +02:00
|
|
|
if( id == null )
|
2014-02-01 23:29:07 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
UniqueIdentifier blk = GameRegistry.findUniqueIdentifierFor( id );
|
2015-04-03 08:54:31 +02:00
|
|
|
if( blk == null )
|
2014-02-01 23:29:07 +01:00
|
|
|
{
|
2015-04-03 08:54:31 +02:00
|
|
|
for( Field f : Block.class.getFields() )
|
2014-02-01 23:29:07 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2015-04-03 08:54:31 +02:00
|
|
|
if( f.get( Block.class ) == id )
|
|
|
|
return this.get( "minecraft", f.getName() + ( metadata == 0 ? "" : "." + metadata ), automatic ).getBoolean( automatic );
|
2014-02-01 23:29:07 +01:00
|
|
|
}
|
2015-04-03 08:54:31 +02:00
|
|
|
catch( Throwable e )
|
2014-02-01 23:29:07 +01:00
|
|
|
{
|
|
|
|
// :P
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
Matcher mod = this.replacementPattern.matcher( blk.modId );
|
|
|
|
Matcher name = this.replacementPattern.matcher( blk.name );
|
2015-04-03 08:54:31 +02:00
|
|
|
return this.get( mod.replaceAll( "" ), name.replaceAll( "" ) + ( metadata == 0 ? "" : "." + metadata ), automatic ).getBoolean( automatic );
|
2014-02-01 23:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|