2014-07-07 21:31:10 +02:00
|
|
|
package com.pahimar.ee3.api;
|
|
|
|
|
|
|
|
import com.pahimar.ee3.EquivalentExchange3;
|
|
|
|
import cpw.mods.fml.common.Mod;
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final class EnergyValueRegistryProxy
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
|
|
|
@Mod.Instance("EE3")
|
|
|
|
private static Object ee3Mod;
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPreAssignedEnergyValue(Object object, int energyValue)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
addPreAssignedEnergyValue(object, new EnergyValue(energyValue));
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPreAssignedEnergyValue(Object object, float energyValue)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
addPreAssignedEnergyValue(object, new EnergyValue(energyValue));
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPreAssignedEnergyValue(Object object, EnergyValue energyValue)
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
|
|
|
|
// NOOP if EquivalentExchange3 is not present
|
|
|
|
if (ee3Mod == null)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
EE3Wrapper.ee3mod.getEnergyValueRegistry().addPreAssignedEnergyValue(object, energyValue);
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPostAssignedEnergyValue(Object object, int energyValue)
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
addPostAssignedEnergyValue(object, new EnergyValue(energyValue));
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPostAssignedEnergyValue(Object object, float energyValue)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
addPostAssignedEnergyValue(object, new EnergyValue(energyValue));
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static void addPostAssignedEnergyValue(Object object, EnergyValue energyValue)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
|
|
|
|
// NOOP if EquivalentExchange3 is not present
|
|
|
|
if (ee3Mod == null)
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
return;
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
2014-07-14 04:05:27 +02:00
|
|
|
|
|
|
|
EE3Wrapper.ee3mod.getEnergyValueRegistry().addPostAssignedEnergyValue(object, energyValue);
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static boolean hasEnergyValue(Object object)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
return hasEnergyValue(object, false);
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static boolean hasEnergyValue(Object object, boolean strict)
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
|
|
|
|
// NOOP if EquivalentExchange3 is not present
|
|
|
|
if (ee3Mod == null)
|
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
return false;
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
return EE3Wrapper.ee3mod.getEnergyValueRegistry().hasEnergyValue(object, strict);
|
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static EnergyValue getEnergyValue(Object object)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
return getEnergyValue(object, false);
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 12:51:35 +02:00
|
|
|
public final static EnergyValue getEnergyValue(Object object, boolean strict)
|
2014-07-07 21:31:10 +02:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
|
|
|
|
// NOOP if EquivalentExchange3 is not present
|
|
|
|
if (ee3Mod == null)
|
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
return null;
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
return EE3Wrapper.ee3mod.getEnergyValueRegistry().getEnergyValue(object, strict);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void init()
|
|
|
|
{
|
|
|
|
if (ee3Mod != null)
|
|
|
|
{
|
|
|
|
EE3Wrapper.ee3mod = (EquivalentExchange3) ee3Mod;
|
|
|
|
}
|
2014-07-07 21:31:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static class EE3Wrapper
|
|
|
|
{
|
|
|
|
private static EquivalentExchange3 ee3mod;
|
|
|
|
}
|
|
|
|
}
|