2014-07-07 21:31:10 +02:00
|
|
|
package com.pahimar.ee3.exchange;
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 18:04:20 +02:00
|
|
|
import com.google.common.collect.ImmutableSortedMap;
|
2014-07-14 04:05:27 +02:00
|
|
|
import com.pahimar.ee3.api.EnergyValue;
|
2014-07-14 20:30:50 +02:00
|
|
|
import com.pahimar.ee3.api.IEnergyValueProvider;
|
2014-07-07 21:31:10 +02:00
|
|
|
import com.pahimar.ee3.recipe.RecipeRegistry;
|
2014-06-20 21:57:27 +02:00
|
|
|
import com.pahimar.ee3.util.EnergyValueHelper;
|
2014-06-14 21:40:45 +02:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-07-15 00:37:50 +02:00
|
|
|
import net.minecraftforge.fluids.FluidStack;
|
2014-06-14 21:40:45 +02:00
|
|
|
import net.minecraftforge.oredict.OreDictionary;
|
|
|
|
|
|
|
|
import java.util.*;
|
|
|
|
|
2014-06-20 21:57:27 +02:00
|
|
|
public class EnergyValueRegistry
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-06-20 21:57:27 +02:00
|
|
|
private static EnergyValueRegistry energyValueRegistry = null;
|
2014-07-14 04:05:27 +02:00
|
|
|
private static Map<WrappedStack, EnergyValue> preAssignedMappings;
|
|
|
|
private static Map<WrappedStack, EnergyValue> postAssignedMappings;
|
2014-07-14 18:04:20 +02:00
|
|
|
private ImmutableSortedMap<WrappedStack, EnergyValue> stackMappings;
|
|
|
|
private ImmutableSortedMap<EnergyValue, List<WrappedStack>> valueMappings;
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-06-20 21:57:27 +02:00
|
|
|
private EnergyValueRegistry()
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-06-20 21:57:27 +02:00
|
|
|
public static EnergyValueRegistry getInstance()
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-06-20 21:57:27 +02:00
|
|
|
if (energyValueRegistry == null)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-06-20 21:57:27 +02:00
|
|
|
energyValueRegistry = new EnergyValueRegistry();
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
|
2014-06-20 21:57:27 +02:00
|
|
|
return energyValueRegistry;
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
public static void addPreAssignedEnergyValue(Object object, float energyValue)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
addPreAssignedEnergyValue(object, new EnergyValue(energyValue));
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
public static void addPreAssignedEnergyValue(Object object, EnergyValue energyValue)
|
|
|
|
{
|
|
|
|
if (preAssignedMappings == null)
|
|
|
|
{
|
|
|
|
preAssignedMappings = new HashMap<WrappedStack, EnergyValue>();
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (WrappedStack.canBeWrapped(object) && energyValue != null && Float.compare(energyValue.getEnergyValue(), 0f) > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
WrappedStack wrappedStack = new WrappedStack(object);
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (wrappedStack.getStackSize() > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
WrappedStack factoredWrappedStack = new WrappedStack(wrappedStack, 1);
|
|
|
|
EnergyValue factoredEnergyValue = EnergyValueHelper.factorEnergyValue(energyValue, wrappedStack.getStackSize());
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (preAssignedMappings.containsKey(factoredWrappedStack))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
if (factoredEnergyValue.compareTo(preAssignedMappings.get(factoredWrappedStack)) < 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
preAssignedMappings.put(factoredWrappedStack, factoredEnergyValue);
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
2014-07-14 04:05:27 +02:00
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
preAssignedMappings.put(factoredWrappedStack, factoredEnergyValue);
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
public static void addPostAssignedEnergyValue(Object object, float energyValue)
|
|
|
|
{
|
|
|
|
if (postAssignedMappings == null)
|
|
|
|
{
|
|
|
|
postAssignedMappings = new HashMap<WrappedStack, EnergyValue>();
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (WrappedStack.canBeWrapped(object) && Float.compare(energyValue, 0f) > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
WrappedStack wrappedStack = new WrappedStack(object);
|
|
|
|
|
|
|
|
if (wrappedStack.getStackSize() > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
WrappedStack factoredWrappedStack = new WrappedStack(wrappedStack, 1);
|
|
|
|
EnergyValue factoredEnergyValue = new EnergyValue(energyValue * 1f / wrappedStack.getStackSize(), EnergyValue.EnergyType.CORPOREAL);
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
postAssignedMappings.put(factoredWrappedStack, factoredEnergyValue);
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
public static void addPostAssignedEnergyValue(Object object, EnergyValue energyValue)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
if (postAssignedMappings == null)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 04:05:27 +02:00
|
|
|
postAssignedMappings = new HashMap<WrappedStack, EnergyValue>();
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (WrappedStack.canBeWrapped(object) && energyValue != null && Float.compare(energyValue.getEnergyValue(), 0f) > 0)
|
|
|
|
{
|
|
|
|
WrappedStack wrappedStack = new WrappedStack(object);
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
if (wrappedStack.getStackSize() > 0)
|
|
|
|
{
|
|
|
|
WrappedStack factoredWrappedStack = new WrappedStack(wrappedStack, 1);
|
|
|
|
EnergyValue factoredEnergyValue = EnergyValueHelper.factorEnergyValue(energyValue, wrappedStack.getStackSize());
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
postAssignedMappings.put(factoredWrappedStack, factoredEnergyValue);
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasEnergyValue(Object object, boolean strict)
|
|
|
|
{
|
|
|
|
if (WrappedStack.canBeWrapped(object))
|
|
|
|
{
|
|
|
|
WrappedStack stack = new WrappedStack(object);
|
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
if (stack.getWrappedStack() instanceof ItemStack && ((ItemStack) stack.getWrappedStack()).getItem() instanceof IEnergyValueProvider)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
EnergyValue energyValue = ((IEnergyValueProvider) ((ItemStack) stack.getWrappedStack()).getItem()).getEnergyValue((ItemStack) stack.getWrappedStack());
|
|
|
|
|
|
|
|
if (energyValue != null && energyValue.getEnergyValue() > 0f)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(stack.getWrappedStack())))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (!strict)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (stack.getWrappedStack() instanceof ItemStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
ItemStack wrappedItemStack = (ItemStack) stack.getWrappedStack();
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
// If its an OreDictionary item, scan its siblings for values
|
|
|
|
if (OreDictionary.getOreIDs(wrappedItemStack).length > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
|
|
|
|
OreStack oreStack = new OreStack(wrappedItemStack);
|
|
|
|
|
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(oreStack)))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
for (int oreId : OreDictionary.getOreIDs(wrappedItemStack))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
for (ItemStack itemStack : OreDictionary.getOres(OreDictionary.getOreName(oreId)))
|
2014-07-14 18:04:20 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(itemStack)))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-07-14 18:04:20 +02:00
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 20:30:50 +02:00
|
|
|
// Else, scan for if there is a wildcard value for it
|
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
for (WrappedStack valuedStack : energyValueRegistry.stackMappings.keySet())
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (valuedStack.getWrappedStack() instanceof ItemStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
ItemStack valuedItemStack = (ItemStack) valuedStack.getWrappedStack();
|
|
|
|
|
|
|
|
if (Item.getIdFromItem(valuedItemStack.getItem()) == Item.getIdFromItem(wrappedItemStack.getItem()))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (valuedItemStack.getItemDamage() == OreDictionary.WILDCARD_VALUE || wrappedItemStack.getItemDamage() == OreDictionary.WILDCARD_VALUE)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (wrappedItemStack.getItem().isDamageable() && wrappedItemStack.isItemDamaged())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 20:30:50 +02:00
|
|
|
else if (stack.getWrappedStack() instanceof OreStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
OreStack oreStack = (OreStack) stack.getWrappedStack();
|
|
|
|
for (ItemStack oreItemStack : OreDictionary.getOres(oreStack.oreName))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(oreItemStack)))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasEnergyValue(Object object)
|
|
|
|
{
|
|
|
|
return hasEnergyValue(object, false);
|
|
|
|
}
|
|
|
|
|
2014-07-07 17:22:21 +02:00
|
|
|
public EnergyValue getEnergyValue(Object object)
|
|
|
|
{
|
|
|
|
return getEnergyValue(object, false);
|
|
|
|
}
|
|
|
|
|
2014-06-14 21:40:45 +02:00
|
|
|
public EnergyValue getEnergyValue(Object object, boolean strict)
|
|
|
|
{
|
|
|
|
if (WrappedStack.canBeWrapped(object))
|
|
|
|
{
|
|
|
|
WrappedStack stack = new WrappedStack(object);
|
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
if (stack.getWrappedStack() instanceof ItemStack && ((ItemStack) stack.getWrappedStack()).getItem() instanceof IEnergyValueProvider)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
EnergyValue energyValue = ((IEnergyValueProvider) ((ItemStack) stack.getWrappedStack()).getItem()).getEnergyValue((ItemStack) stack.getWrappedStack());
|
|
|
|
|
|
|
|
if (energyValue != null && energyValue.getEnergyValue() > 0f)
|
|
|
|
{
|
|
|
|
return energyValue;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(stack.getWrappedStack())))
|
|
|
|
{
|
|
|
|
return energyValueRegistry.stackMappings.get(new WrappedStack(stack.getWrappedStack()));
|
|
|
|
}
|
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (!strict)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (stack.getWrappedStack() instanceof ItemStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
EnergyValue lowestValue = null;
|
|
|
|
ItemStack wrappedItemStack = (ItemStack) stack.getWrappedStack();
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
if (OreDictionary.getOreIDs(wrappedItemStack).length > 0)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
OreStack oreStack = new OreStack(wrappedItemStack);
|
|
|
|
|
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(oreStack)))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
return energyValueRegistry.stackMappings.get(new WrappedStack(oreStack));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int oreId : OreDictionary.getOreIDs(wrappedItemStack))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
for (ItemStack itemStack : OreDictionary.getOres(OreDictionary.getOreName(oreId)))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(itemStack)))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (lowestValue == null)
|
2014-07-14 18:04:20 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
lowestValue = energyValueRegistry.stackMappings.get(new WrappedStack(itemStack));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EnergyValue itemValue = energyValueRegistry.stackMappings.get(new WrappedStack(itemStack));
|
|
|
|
|
|
|
|
if (itemValue.compareTo(lowestValue) < 0)
|
|
|
|
{
|
|
|
|
lowestValue = itemValue;
|
|
|
|
}
|
2014-07-14 18:04:20 +02:00
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
return lowestValue;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
2014-07-14 20:30:50 +02:00
|
|
|
else
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
for (WrappedStack valuedStack : energyValueRegistry.stackMappings.keySet())
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (valuedStack.getWrappedStack() instanceof ItemStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
ItemStack valuedItemStack = (ItemStack) valuedStack.getWrappedStack();
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
if (Item.getIdFromItem(valuedItemStack.getItem()) == Item.getIdFromItem(wrappedItemStack.getItem()))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (valuedItemStack.getItemDamage() == OreDictionary.WILDCARD_VALUE || wrappedItemStack.getItemDamage() == OreDictionary.WILDCARD_VALUE)
|
|
|
|
{
|
|
|
|
EnergyValue stackValue = energyValueRegistry.stackMappings.get(valuedStack);
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
if (stackValue.compareTo(lowestValue) < 0)
|
|
|
|
{
|
|
|
|
lowestValue = stackValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (wrappedItemStack.getItem().isDamageable() && wrappedItemStack.isItemDamaged())
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
EnergyValue stackValue = new EnergyValue(energyValueRegistry.stackMappings.get(valuedStack).getEnergyValue() * (1 - (wrappedItemStack.getItemDamage() * 1.0F / wrappedItemStack.getMaxDamage())));
|
|
|
|
|
|
|
|
if (stackValue.compareTo(lowestValue) < 0)
|
|
|
|
{
|
|
|
|
lowestValue = stackValue;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 20:30:50 +02:00
|
|
|
return lowestValue;
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
2014-07-14 20:30:50 +02:00
|
|
|
else if (stack.getWrappedStack() instanceof OreStack)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
OreStack oreStack = (OreStack) stack.getWrappedStack();
|
|
|
|
for (ItemStack oreItemStack : OreDictionary.getOres(oreStack.oreName))
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-14 20:30:50 +02:00
|
|
|
if (energyValueRegistry.stackMappings.containsKey(new WrappedStack(oreItemStack)))
|
|
|
|
{
|
|
|
|
return energyValueRegistry.stackMappings.get(new WrappedStack(oreItemStack));
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:04:20 +02:00
|
|
|
protected final void init()
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
HashMap<WrappedStack, EnergyValue> stackValueMap = new HashMap<WrappedStack, EnergyValue>();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pre-assigned values
|
|
|
|
*/
|
|
|
|
stackValueMap.putAll(preAssignedMappings);
|
2014-07-14 04:05:27 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Auto-assignment
|
|
|
|
*/
|
|
|
|
// Initialize the maps for the first pass to happen
|
2014-07-14 18:04:20 +02:00
|
|
|
ImmutableSortedMap.Builder<WrappedStack, EnergyValue> stackMappingsBuilder = ImmutableSortedMap.naturalOrder();
|
|
|
|
stackMappingsBuilder.putAll(stackValueMap);
|
|
|
|
stackMappings = stackMappingsBuilder.build();
|
2014-07-14 04:05:27 +02:00
|
|
|
Map<WrappedStack, EnergyValue> computedStackValues = computeStackMappings();
|
|
|
|
|
|
|
|
// Initialize the pass counter
|
|
|
|
int passNumber = 0;
|
|
|
|
|
|
|
|
while ((computedStackValues.size() > 0) && (passNumber < 16))
|
|
|
|
{
|
|
|
|
// Increment the pass counter
|
|
|
|
passNumber++;
|
|
|
|
|
|
|
|
// Compute stack mappings from existing stack mappings
|
|
|
|
computedStackValues = computeStackMappings();
|
|
|
|
for (WrappedStack keyStack : computedStackValues.keySet())
|
|
|
|
{
|
|
|
|
EnergyValue factoredExchangeEnergyValue = null;
|
|
|
|
WrappedStack factoredKeyStack = null;
|
|
|
|
|
|
|
|
if (keyStack != null && keyStack.getWrappedStack() != null && keyStack.getStackSize() > 0)
|
|
|
|
{
|
|
|
|
if (computedStackValues.get(keyStack) != null && Float.compare(computedStackValues.get(keyStack).getEnergyValue(), 0f) > 0)
|
|
|
|
{
|
|
|
|
factoredExchangeEnergyValue = EnergyValueHelper.factorEnergyValue(computedStackValues.get(keyStack), keyStack.getStackSize());
|
|
|
|
factoredKeyStack = new WrappedStack(keyStack, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (factoredExchangeEnergyValue != null)
|
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
if (stackValueMap.containsKey(factoredKeyStack))
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
if (factoredExchangeEnergyValue.compareTo(stackValueMap.get(factoredKeyStack)) == -1)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
stackValueMap.put(factoredKeyStack, factoredExchangeEnergyValue);
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
stackValueMap.put(factoredKeyStack, factoredExchangeEnergyValue);
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:04:20 +02:00
|
|
|
|
|
|
|
|
2014-07-14 04:05:27 +02:00
|
|
|
/*
|
|
|
|
* Post-assigned values
|
|
|
|
*/
|
|
|
|
if (postAssignedMappings != null)
|
|
|
|
{
|
|
|
|
for (WrappedStack wrappedStack : postAssignedMappings.keySet())
|
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
stackValueMap.put(wrappedStack, postAssignedMappings.get(wrappedStack));
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-14 18:04:20 +02:00
|
|
|
/**
|
|
|
|
* Finalize the stack to value map
|
|
|
|
*/
|
|
|
|
stackMappingsBuilder = ImmutableSortedMap.naturalOrder();
|
|
|
|
stackMappingsBuilder.putAll(stackValueMap);
|
|
|
|
stackMappings = stackMappingsBuilder.build();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-07-14 04:05:27 +02:00
|
|
|
* Value map resolution
|
|
|
|
*/
|
2014-07-14 18:04:20 +02:00
|
|
|
SortedMap<EnergyValue, List<WrappedStack>> tempValueMappings = new TreeMap<EnergyValue, List<WrappedStack>>();
|
2014-07-14 04:05:27 +02:00
|
|
|
|
|
|
|
for (WrappedStack stack : stackMappings.keySet())
|
|
|
|
{
|
|
|
|
if (stack != null)
|
|
|
|
{
|
|
|
|
EnergyValue value = stackMappings.get(stack);
|
|
|
|
|
|
|
|
if (value != null)
|
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
if (tempValueMappings.containsKey(value))
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
if (!(tempValueMappings.get(value).contains(stack)))
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
tempValueMappings.get(value).add(stack);
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-14 18:04:20 +02:00
|
|
|
tempValueMappings.put(value, new ArrayList<WrappedStack>(Arrays.asList(stack)));
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 18:04:20 +02:00
|
|
|
|
|
|
|
valueMappings = ImmutableSortedMap.copyOf(tempValueMappings);
|
2014-07-14 04:05:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private Map<WrappedStack, EnergyValue> computeStackMappings()
|
|
|
|
{
|
|
|
|
Map<WrappedStack, EnergyValue> computedStackMap = new HashMap<WrappedStack, EnergyValue>();
|
|
|
|
|
|
|
|
for (WrappedStack recipeOutput : RecipeRegistry.getInstance().getRecipeMappings().keySet())
|
|
|
|
{
|
|
|
|
if (!hasEnergyValue(recipeOutput.getWrappedStack(), false) && !computedStackMap.containsKey(recipeOutput))
|
|
|
|
{
|
|
|
|
EnergyValue lowestValue = null;
|
|
|
|
|
|
|
|
for (List<WrappedStack> recipeInputs : RecipeRegistry.getInstance().getRecipeMappings().get(recipeOutput))
|
|
|
|
{
|
|
|
|
EnergyValue computedValue = EnergyValueHelper.computeEnergyValueFromList(recipeInputs);
|
|
|
|
computedValue = EnergyValueHelper.factorEnergyValue(computedValue, recipeOutput.getStackSize());
|
|
|
|
|
|
|
|
if (computedValue != null)
|
|
|
|
{
|
|
|
|
if (computedValue.compareTo(lowestValue) < 0)
|
|
|
|
{
|
|
|
|
lowestValue = computedValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((lowestValue != null) && (lowestValue.getEnergyValue() > 0f))
|
|
|
|
{
|
|
|
|
computedStackMap.put(new WrappedStack(recipeOutput.getWrappedStack()), lowestValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return computedStackMap;
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:37:50 +02:00
|
|
|
public List getStacksInRange(int start, int finish)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
|
|
|
return getStacksInRange(new EnergyValue(start), new EnergyValue(finish));
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:37:50 +02:00
|
|
|
public List getStacksInRange(float start, float finish)
|
2014-07-14 04:05:27 +02:00
|
|
|
{
|
|
|
|
return getStacksInRange(new EnergyValue(start), new EnergyValue(finish));
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:37:50 +02:00
|
|
|
public List getStacksInRange(EnergyValue start, EnergyValue finish)
|
2014-06-14 21:40:45 +02:00
|
|
|
{
|
2014-07-15 00:37:50 +02:00
|
|
|
List stacksInRange = new ArrayList<WrappedStack>();
|
2014-06-14 21:40:45 +02:00
|
|
|
|
2014-06-20 21:57:27 +02:00
|
|
|
SortedMap<EnergyValue, List<WrappedStack>> tailMap = energyValueRegistry.valueMappings.tailMap(start);
|
|
|
|
SortedMap<EnergyValue, List<WrappedStack>> headMap = energyValueRegistry.valueMappings.headMap(finish);
|
2014-06-14 21:40:45 +02:00
|
|
|
|
|
|
|
SortedMap<EnergyValue, List<WrappedStack>> smallerMap;
|
|
|
|
SortedMap<EnergyValue, List<WrappedStack>> biggerMap;
|
|
|
|
|
|
|
|
if (!tailMap.isEmpty() && !headMap.isEmpty())
|
|
|
|
{
|
|
|
|
|
|
|
|
if (tailMap.size() <= headMap.size())
|
|
|
|
{
|
|
|
|
smallerMap = tailMap;
|
|
|
|
biggerMap = headMap;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
smallerMap = headMap;
|
|
|
|
biggerMap = tailMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (EnergyValue value : smallerMap.keySet())
|
|
|
|
{
|
|
|
|
if (biggerMap.containsKey(value))
|
|
|
|
{
|
2014-07-15 00:37:50 +02:00
|
|
|
for (WrappedStack wrappedStack : energyValueRegistry.valueMappings.get(value))
|
|
|
|
{
|
|
|
|
if (wrappedStack.getWrappedStack() instanceof ItemStack || wrappedStack.getWrappedStack() instanceof FluidStack)
|
|
|
|
{
|
|
|
|
stacksInRange.add(wrappedStack.getWrappedStack());
|
|
|
|
}
|
|
|
|
else if (wrappedStack.getWrappedStack() instanceof OreStack)
|
|
|
|
{
|
|
|
|
for (ItemStack itemStack : OreDictionary.getOres(((OreStack) wrappedStack.getWrappedStack()).oreName))
|
|
|
|
{
|
|
|
|
stacksInRange.add(itemStack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-14 21:40:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stacksInRange;
|
|
|
|
}
|
|
|
|
}
|