equivalent-exchange-3/common/com/pahimar/ee3/emc/EmcDefaultValues.java

42 lines
1 KiB
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.emc;
2013-10-06 04:46:29 +02:00
import java.util.HashMap;
import java.util.Map;
2013-08-23 16:59:50 +02:00
import com.pahimar.ee3.core.util.EnergyStack;
2013-08-23 16:59:50 +02:00
import com.pahimar.ee3.item.CustomWrappedStack;
public class EmcDefaultValues {
2013-09-09 21:57:07 +02:00
private static EmcDefaultValues defaultValues = null;
2013-10-06 04:46:29 +02:00
private Map<CustomWrappedStack, EmcValue> defaultValueMap;
2013-08-23 16:59:50 +02:00
private EmcDefaultValues() {
2013-10-06 04:46:29 +02:00
defaultValueMap = new HashMap<CustomWrappedStack, EmcValue>();
}
public static EmcDefaultValues getInstance() {
if (defaultValues == null) {
defaultValues = new EmcDefaultValues();
defaultValues.init();
}
return defaultValues;
}
private void init() {
2013-10-06 04:46:29 +02:00
defaultValueMap.put(
new CustomWrappedStack(new EnergyStack(EnergyStack.VANILLA_SMELTING_ENERGY_NAME, 1)),
new EmcValue(1, EmcComponent.KINETIC_UNIT_COMPONENT)
);
}
2013-10-06 04:46:29 +02:00
public Map<CustomWrappedStack, EmcValue> getDefaultValueMap() {
return defaultValueMap;
2013-08-23 16:59:50 +02:00
}
}