Relocate Source to proper directory.
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
package appeng.integration;
|
||||
|
||||
import java.util.LinkedList;
|
||||
|
||||
import cpw.mods.fml.relauncher.FMLLaunchHandler;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
|
||||
public class IntegrationRegistry
|
||||
{
|
||||
|
||||
public static IntegrationRegistry instance = null;
|
||||
private LinkedList<IntegrationNode> modules = new LinkedList<IntegrationNode>();
|
||||
|
||||
public void add( IntegrationType type)
|
||||
{
|
||||
if ( type.side == IntegrationSide.CLIENT && FMLLaunchHandler.side() == Side.SERVER )
|
||||
return;
|
||||
|
||||
if ( type.side == IntegrationSide.SERVER && FMLLaunchHandler.side() == Side.CLIENT )
|
||||
return;
|
||||
|
||||
modules.add( new IntegrationNode( type.dspName, type.modID, type, "appeng.integration.modules." + type.name() ) );
|
||||
}
|
||||
|
||||
public IntegrationRegistry() {
|
||||
instance = this;
|
||||
}
|
||||
|
||||
public void init()
|
||||
{
|
||||
for (IntegrationNode node : modules)
|
||||
node.Call( IntegrationStage.PREINIT );
|
||||
|
||||
for (IntegrationNode node : modules)
|
||||
node.Call( IntegrationStage.INIT );
|
||||
}
|
||||
|
||||
public void postinit()
|
||||
{
|
||||
for (IntegrationNode node : modules)
|
||||
node.Call( IntegrationStage.POSTINIT );
|
||||
}
|
||||
|
||||
public String getStatus()
|
||||
{
|
||||
String out = null;
|
||||
|
||||
for (IntegrationNode node : modules)
|
||||
{
|
||||
String str = node.shortName + ":" + (node.state == IntegrationStage.FAILED ? "OFF" : "ON");
|
||||
|
||||
if ( out == null )
|
||||
out = str;
|
||||
else
|
||||
out += ", " + str;
|
||||
}
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
public boolean isEnabled(IntegrationType name)
|
||||
{
|
||||
for (IntegrationNode node : modules)
|
||||
{
|
||||
if ( node.shortName == name )
|
||||
return node.isActive();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public Object getInstance(IntegrationType name)
|
||||
{
|
||||
for (IntegrationNode node : modules)
|
||||
{
|
||||
if ( node.shortName.equals( name ) && node.isActive() )
|
||||
{
|
||||
return node.instance;
|
||||
}
|
||||
}
|
||||
throw new RuntimeException( "integration with "+name.name()+" is disabled." );
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user