2015-11-02 20:39:44 +00:00
|
|
|
package WayofTime.bloodmagic.altar;
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2015-12-23 01:32:25 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.util.BlockPos;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.EnumParticleTypes;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.fluids.FluidContainerRegistry;
|
|
|
|
import net.minecraftforge.fluids.FluidStack;
|
2015-11-02 20:39:44 +00:00
|
|
|
import WayofTime.bloodmagic.api.BlockStack;
|
2015-12-23 01:32:25 +00:00
|
|
|
import WayofTime.bloodmagic.api.BloodMagicAPI;
|
|
|
|
import WayofTime.bloodmagic.api.Constants;
|
|
|
|
import WayofTime.bloodmagic.api.altar.AltarComponent;
|
|
|
|
import WayofTime.bloodmagic.api.altar.AltarUpgrade;
|
|
|
|
import WayofTime.bloodmagic.api.altar.EnumAltarComponent;
|
|
|
|
import WayofTime.bloodmagic.api.altar.EnumAltarTier;
|
|
|
|
import WayofTime.bloodmagic.api.altar.IAltarComponent;
|
|
|
|
import WayofTime.bloodmagic.api.orb.IBloodOrb;
|
|
|
|
import WayofTime.bloodmagic.api.registry.AltarRecipeRegistry;
|
2015-12-23 02:03:00 +00:00
|
|
|
import WayofTime.bloodmagic.api.registry.AltarRecipeRegistry.AltarRecipe;
|
2015-12-23 01:32:25 +00:00
|
|
|
import WayofTime.bloodmagic.api.util.helper.NetworkHelper;
|
2015-11-03 02:30:28 +00:00
|
|
|
import WayofTime.bloodmagic.block.BlockBloodRune;
|
2015-12-23 01:32:25 +00:00
|
|
|
import WayofTime.bloodmagic.block.BlockLifeEssence;
|
|
|
|
import WayofTime.bloodmagic.tile.TileAltar;
|
2015-12-03 00:02:18 +00:00
|
|
|
import WayofTime.bloodmagic.util.Utils;
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2015-12-23 01:32:25 +00:00
|
|
|
import com.google.common.base.Enums;
|
|
|
|
import com.google.common.base.Strings;
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
public class BloodAltar {
|
|
|
|
|
2015-12-23 01:32:25 +00:00
|
|
|
private TileAltar tileAltar;
|
|
|
|
private int internalCounter = 0;
|
|
|
|
|
|
|
|
public boolean isActive;
|
|
|
|
protected FluidStack fluidOutput = new FluidStack(BlockLifeEssence.getLifeEssence(), 0);
|
|
|
|
protected FluidStack fluidInput = new FluidStack(BlockLifeEssence.getLifeEssence(), 0);
|
|
|
|
private EnumAltarTier altarTier = EnumAltarTier.ONE;
|
|
|
|
private AltarUpgrade upgrade;
|
|
|
|
private int capacity = FluidContainerRegistry.BUCKET_VOLUME * 10;
|
|
|
|
private FluidStack fluid = new FluidStack(BloodMagicAPI.getLifeEssence(), 0);
|
|
|
|
private int liquidRequired; //mB
|
|
|
|
private boolean canBeFilled;
|
|
|
|
private int consumptionRate;
|
|
|
|
private int drainRate;
|
|
|
|
private float consumptionMultiplier;
|
|
|
|
private float efficiencyMultiplier;
|
|
|
|
private float sacrificeEfficiencyMultiplier;
|
|
|
|
private float selfSacrificeEfficiencyMultiplier;
|
|
|
|
private float capacityMultiplier = 1;
|
|
|
|
private float orbCapacityMultiplier;
|
|
|
|
private float dislocationMultiplier;
|
|
|
|
private int accelerationUpgrades;
|
|
|
|
private boolean isUpgraded;
|
|
|
|
private boolean isResultBlock;
|
|
|
|
private int bufferCapacity = FluidContainerRegistry.BUCKET_VOLUME;
|
|
|
|
private int progress;
|
|
|
|
private int lockdownDuration;
|
|
|
|
private int demonBloodDuration;
|
|
|
|
|
|
|
|
private int cooldownAfterCrafting = 500;
|
|
|
|
|
|
|
|
private ItemStack result;
|
|
|
|
|
|
|
|
public BloodAltar(TileAltar tileAltar)
|
|
|
|
{
|
|
|
|
this.tileAltar = tileAltar;
|
|
|
|
}
|
|
|
|
|
2015-11-28 01:15:19 +00:00
|
|
|
static {
|
|
|
|
EnumAltarTier.ONE.buildComponents();
|
|
|
|
EnumAltarTier.TWO.buildComponents();
|
|
|
|
EnumAltarTier.THREE.buildComponents();
|
|
|
|
EnumAltarTier.FOUR.buildComponents();
|
|
|
|
EnumAltarTier.FIVE.buildComponents();
|
|
|
|
EnumAltarTier.SIX.buildComponents();
|
|
|
|
}
|
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
public static EnumAltarTier getAltarTier(World world, BlockPos pos) {
|
2015-11-28 01:15:19 +00:00
|
|
|
for (int i = EnumAltarTier.MAXTIERS - 1; i >= 1; i--) {
|
2015-11-03 03:18:53 +00:00
|
|
|
if (checkAltarIsValid(world, pos, i)) {
|
2015-10-30 03:22:14 +00:00
|
|
|
return EnumAltarTier.values()[i];
|
2015-11-03 02:30:28 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
return EnumAltarTier.ONE;
|
|
|
|
}
|
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
public static boolean checkAltarIsValid(World world, BlockPos worldPos, int altarTier) {
|
2015-11-28 01:15:19 +00:00
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
for (AltarComponent altarComponent : EnumAltarTier.values()[altarTier].getAltarComponents()) {
|
2015-10-30 03:22:14 +00:00
|
|
|
|
|
|
|
BlockPos componentPos = worldPos.add(altarComponent.getOffset());
|
|
|
|
BlockStack worldBlock = new BlockStack(world.getBlockState(componentPos).getBlock(), world.getBlockState(componentPos).getBlock().getMetaFromState(world.getBlockState(componentPos)));
|
|
|
|
|
2015-12-03 00:02:18 +00:00
|
|
|
if (altarComponent.getComponent() != EnumAltarComponent.NOTAIR) {
|
|
|
|
if (worldBlock.getBlock() instanceof IAltarComponent) {
|
|
|
|
EnumAltarComponent component = ((IAltarComponent) worldBlock.getBlock()).getType(worldBlock.getMeta());
|
|
|
|
if (component != altarComponent.getComponent())
|
2015-10-30 03:22:14 +00:00
|
|
|
return false;
|
2015-12-03 00:02:18 +00:00
|
|
|
} else if (worldBlock.getBlock() != Utils.getBlockForComponent(altarComponent.getComponent())) {
|
|
|
|
return false;
|
2015-11-03 02:30:28 +00:00
|
|
|
}
|
2015-12-03 00:02:18 +00:00
|
|
|
} else {
|
|
|
|
if (world.isAirBlock(componentPos))
|
|
|
|
return false;
|
2015-10-30 03:22:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 01:15:19 +00:00
|
|
|
return true;
|
2015-10-30 03:22:14 +00:00
|
|
|
}
|
|
|
|
|
2015-11-08 02:37:12 +00:00
|
|
|
public static AltarUpgrade getUpgrades(World world, BlockPos pos, EnumAltarTier altarTier) {
|
|
|
|
if (world.isRemote) {
|
2015-11-03 02:30:28 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
AltarUpgrade upgrades = new AltarUpgrade();
|
2015-11-03 15:34:11 +00:00
|
|
|
List<AltarComponent> list = altarTier.getAltarComponents();
|
2015-11-03 02:30:28 +00:00
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
for (AltarComponent altarComponent : list) {
|
2015-11-03 02:30:28 +00:00
|
|
|
BlockPos componentPos = pos.add(altarComponent.getOffset());
|
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
if (altarComponent.isUpgradeSlot()) {
|
2015-11-03 02:30:28 +00:00
|
|
|
BlockStack worldBlock = new BlockStack(world.getBlockState(componentPos).getBlock(), world.getBlockState(componentPos).getBlock().getMetaFromState(world.getBlockState(componentPos)));
|
|
|
|
|
2015-11-03 03:18:53 +00:00
|
|
|
if (worldBlock.getBlock() instanceof BlockBloodRune) {
|
|
|
|
switch (((BlockBloodRune) worldBlock.getBlock()).getRuneEffect(worldBlock.getMeta())) {
|
2015-11-03 02:30:28 +00:00
|
|
|
case 1:
|
|
|
|
upgrades.addSpeed();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
upgrades.addEfficiency();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
upgrades.addSacrifice();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
upgrades.addSelfSacrifice();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
2015-11-03 03:18:53 +00:00
|
|
|
upgrades.addDisplacement();
|
2015-11-03 02:30:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 6:
|
2015-11-03 03:18:53 +00:00
|
|
|
upgrades.addCapacity();
|
2015-11-03 02:30:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
2015-11-03 03:18:53 +00:00
|
|
|
upgrades.addBetterCapacity();
|
2015-11-03 02:30:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 8:
|
2015-11-03 03:18:53 +00:00
|
|
|
upgrades.addOrbCapacity();
|
2015-11-03 02:30:28 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
upgrades.addAcceleration();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-30 03:22:14 +00:00
|
|
|
|
2015-11-03 02:30:28 +00:00
|
|
|
return upgrades;
|
|
|
|
}
|
2015-12-23 01:32:25 +00:00
|
|
|
|
|
|
|
public void readFromNBT(NBTTagCompound tagCompound) {
|
|
|
|
if (!tagCompound.hasKey(Constants.NBT.EMPTY)) {
|
|
|
|
FluidStack fluid = FluidStack.loadFluidStackFromNBT(tagCompound);
|
|
|
|
|
|
|
|
if (fluid != null)
|
|
|
|
setMainFluid(fluid);
|
|
|
|
|
|
|
|
FluidStack fluidOut = new FluidStack(BloodMagicAPI.getLifeEssence(), tagCompound.getInteger(Constants.NBT.OUTPUT_AMOUNT));
|
|
|
|
setOutputFluid(fluidOut);
|
|
|
|
|
|
|
|
FluidStack fluidIn = new FluidStack(BloodMagicAPI.getLifeEssence(), tagCompound.getInteger(Constants.NBT.INPUT_AMOUNT));
|
|
|
|
setInputFluid(fluidIn);
|
|
|
|
}
|
|
|
|
|
|
|
|
internalCounter = tagCompound.getInteger("internalCounter");
|
|
|
|
altarTier = Enums.getIfPresent(EnumAltarTier.class, tagCompound.getString(Constants.NBT.ALTAR_TIER)).or(EnumAltarTier.ONE);
|
|
|
|
isActive = tagCompound.getBoolean(Constants.NBT.ALTAR_ACTIVE);
|
|
|
|
liquidRequired = tagCompound.getInteger(Constants.NBT.ALTAR_LIQUID_REQ);
|
|
|
|
canBeFilled = tagCompound.getBoolean(Constants.NBT.ALTAR_FILLABLE);
|
|
|
|
isUpgraded = tagCompound.getBoolean(Constants.NBT.ALTAR_UPGRADED);
|
|
|
|
consumptionRate = tagCompound.getInteger(Constants.NBT.ALTAR_CONSUMPTION_RATE);
|
|
|
|
drainRate = tagCompound.getInteger(Constants.NBT.ALTAR_DRAIN_RATE);
|
|
|
|
consumptionMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_CONSUMPTION_MULTIPLIER);
|
|
|
|
efficiencyMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_EFFICIENCY_MULTIPLIER);
|
|
|
|
selfSacrificeEfficiencyMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_SELF_SACRIFICE_MULTIPLIER);
|
|
|
|
sacrificeEfficiencyMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_SACRIFICE_MULTIPLIER);
|
|
|
|
capacityMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_CAPACITY_MULTIPLIER);
|
|
|
|
orbCapacityMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_ORB_CAPACITY_MULTIPLIER);
|
|
|
|
dislocationMultiplier = tagCompound.getFloat(Constants.NBT.ALTAR_DISLOCATION_MULTIPLIER);
|
|
|
|
capacity = tagCompound.getInteger(Constants.NBT.ALTAR_CAPACITY);
|
|
|
|
bufferCapacity = tagCompound.getInteger(Constants.NBT.ALTAR_BUFFER_CAPACITY);
|
|
|
|
progress = tagCompound.getInteger(Constants.NBT.ALTAR_PROGRESS);
|
|
|
|
isResultBlock = tagCompound.getBoolean(Constants.NBT.ALTAR_IS_RESULT_BLOCK);
|
|
|
|
lockdownDuration = tagCompound.getInteger(Constants.NBT.ALTAR_LOCKDOWN_DURATION);
|
|
|
|
accelerationUpgrades = tagCompound.getInteger(Constants.NBT.ALTAR_ACCELERATION_UPGRADES);
|
|
|
|
demonBloodDuration = tagCompound.getInteger(Constants.NBT.ALTAR_DEMON_BLOOD_DURATION);
|
|
|
|
cooldownAfterCrafting = tagCompound.getInteger(Constants.NBT.ALTAR_COOLDOWN_AFTER_CRAFTING);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void writeToNBT(NBTTagCompound tagCompound) {
|
|
|
|
|
|
|
|
if (fluid != null)
|
|
|
|
fluid.writeToNBT(tagCompound);
|
|
|
|
else
|
|
|
|
tagCompound.setString(Constants.NBT.EMPTY, "");
|
|
|
|
|
|
|
|
if (fluidOutput != null)
|
|
|
|
tagCompound.setInteger(Constants.NBT.OUTPUT_AMOUNT, fluidOutput.amount);
|
|
|
|
|
|
|
|
if (fluidInput != null)
|
|
|
|
tagCompound.setInteger(Constants.NBT.INPUT_AMOUNT, fluidInput.amount);
|
|
|
|
|
|
|
|
tagCompound.setInteger("internalCounter", internalCounter);
|
|
|
|
tagCompound.setString(Constants.NBT.ALTAR_TIER, altarTier.name());
|
|
|
|
tagCompound.setBoolean(Constants.NBT.ALTAR_ACTIVE, isActive);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_LIQUID_REQ, liquidRequired);
|
|
|
|
tagCompound.setBoolean(Constants.NBT.ALTAR_FILLABLE, canBeFilled);
|
|
|
|
tagCompound.setBoolean(Constants.NBT.ALTAR_UPGRADED, isUpgraded);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_CONSUMPTION_RATE, consumptionRate);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_DRAIN_RATE, drainRate);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_CONSUMPTION_MULTIPLIER, consumptionMultiplier);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_EFFICIENCY_MULTIPLIER, efficiencyMultiplier);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_SACRIFICE_MULTIPLIER, sacrificeEfficiencyMultiplier);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_SELF_SACRIFICE_MULTIPLIER, selfSacrificeEfficiencyMultiplier);
|
|
|
|
tagCompound.setBoolean(Constants.NBT.ALTAR_IS_RESULT_BLOCK, isResultBlock);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_CAPACITY_MULTIPLIER, capacityMultiplier);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_ORB_CAPACITY_MULTIPLIER, orbCapacityMultiplier);
|
|
|
|
tagCompound.setFloat(Constants.NBT.ALTAR_DISLOCATION_MULTIPLIER, dislocationMultiplier);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_CAPACITY, capacity);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_PROGRESS, progress);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_BUFFER_CAPACITY, bufferCapacity);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_LOCKDOWN_DURATION, lockdownDuration);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_ACCELERATION_UPGRADES, accelerationUpgrades);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_DEMON_BLOOD_DURATION, demonBloodDuration);
|
|
|
|
tagCompound.setInteger(Constants.NBT.ALTAR_COOLDOWN_AFTER_CRAFTING, cooldownAfterCrafting);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void startCycle() {
|
|
|
|
if (tileAltar.getWorld() != null)
|
|
|
|
tileAltar.getWorld().markBlockForUpdate(tileAltar.getPos());
|
|
|
|
|
|
|
|
checkTier();
|
|
|
|
|
|
|
|
if (fluid == null || fluid.amount <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!isActive)
|
|
|
|
progress = 0;
|
|
|
|
|
|
|
|
if (tileAltar.getStackInSlot(0) != null) {
|
|
|
|
// Do recipes
|
2015-12-23 02:03:00 +00:00
|
|
|
for (AltarRecipe recipe : AltarRecipeRegistry.getRecipes().values()) {
|
|
|
|
if (recipe.doesRequiredItemMatch(tileAltar.getStackInSlot(0), altarTier)) {
|
|
|
|
this.isActive = true;
|
|
|
|
this.result = new ItemStack(recipe.getOutput().getItem(), 1, recipe.getOutput().getMetadata());
|
|
|
|
this.liquidRequired = recipe.getSyphon();
|
|
|
|
this.canBeFilled = recipe.isUseTag();
|
|
|
|
this.consumptionRate = recipe.getConsumeRate();
|
|
|
|
this.drainRate = recipe.getDrainRate();
|
|
|
|
return;
|
2015-12-23 01:32:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isActive = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void update()
|
|
|
|
{
|
|
|
|
World world = tileAltar.getWorld();
|
|
|
|
BlockPos pos = tileAltar.getPos();
|
|
|
|
|
|
|
|
if (world.isRemote)
|
|
|
|
return;
|
|
|
|
|
|
|
|
internalCounter++; //Used instead of the world time for checks that do not happen every tick
|
|
|
|
|
|
|
|
if (lockdownDuration > 0)
|
|
|
|
lockdownDuration--;
|
|
|
|
|
|
|
|
if (internalCounter % 20 == 0) {
|
|
|
|
for(EnumFacing facing : EnumFacing.VALUES){
|
|
|
|
BlockPos newPos = pos.offset(facing);
|
|
|
|
IBlockState block = world.getBlockState(newPos);
|
|
|
|
block.getBlock().onNeighborBlockChange(world, newPos, block, block.getBlock());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (internalCounter % (Math.max(20 - this.accelerationUpgrades, 1)) == 0) {
|
|
|
|
int syphonMax = (int) (20 * this.dislocationMultiplier);
|
|
|
|
int fluidInputted;
|
|
|
|
int fluidOutputted;
|
|
|
|
fluidInputted = Math.min(syphonMax, -this.fluid.amount + capacity);
|
|
|
|
fluidInputted = Math.min(this.fluidInput.amount, fluidInputted);
|
|
|
|
this.fluid.amount += fluidInputted;
|
|
|
|
this.fluidInput.amount -= fluidInputted;
|
|
|
|
fluidOutputted = Math.min(syphonMax, this.bufferCapacity - this.fluidOutput.amount);
|
|
|
|
fluidOutputted = Math.min(this.fluid.amount, fluidOutputted);
|
|
|
|
this.fluidOutput.amount += fluidOutputted;
|
|
|
|
this.fluid.amount -= fluidOutputted;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (internalCounter % 100 == 0 && (this.isActive || this.cooldownAfterCrafting <= 0))
|
|
|
|
startCycle();
|
|
|
|
|
|
|
|
updateAltar();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateAltar() {
|
|
|
|
if (!isActive) {
|
|
|
|
if (cooldownAfterCrafting > 0)
|
|
|
|
cooldownAfterCrafting--;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tileAltar.getStackInSlot(0) == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
World world = tileAltar.getWorld();
|
|
|
|
BlockPos pos = tileAltar.getPos();
|
|
|
|
|
|
|
|
if (world.isRemote)
|
|
|
|
return;
|
|
|
|
|
|
|
|
float f = 1.0F;
|
|
|
|
float f1 = f * 0.6F + 0.4F;
|
|
|
|
float f2 = f * f * 0.7F - 0.5F;
|
|
|
|
float f3 = f * f * 0.6F - 0.7F;
|
2015-12-23 02:03:00 +00:00
|
|
|
|
2015-12-23 01:32:25 +00:00
|
|
|
if (!canBeFilled) {
|
|
|
|
if (fluid != null && fluid.amount >= 1) {
|
|
|
|
int stackSize = tileAltar.getStackInSlot(0).stackSize;
|
|
|
|
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? consumptionRate * (1 + consumptionMultiplier) : consumptionRate), fluid.amount);
|
|
|
|
|
|
|
|
if (liquidDrained > (liquidRequired * stackSize - progress))
|
|
|
|
liquidDrained = liquidRequired * stackSize - progress;
|
|
|
|
|
|
|
|
fluid.amount = fluid.amount - liquidDrained;
|
|
|
|
progress += liquidDrained;
|
|
|
|
|
|
|
|
if (internalCounter % 4 == 0)
|
|
|
|
world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3);
|
|
|
|
|
|
|
|
if (progress >= liquidRequired * stackSize) {
|
|
|
|
ItemStack result = this.result;
|
|
|
|
|
|
|
|
if (result != null)
|
|
|
|
result.stackSize *= stackSize;
|
|
|
|
|
|
|
|
tileAltar.setInventorySlotContents(0, result);
|
|
|
|
progress = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3);
|
|
|
|
|
|
|
|
this.isActive = false;
|
|
|
|
}
|
|
|
|
} else if (progress > 0) {
|
|
|
|
progress -= (int) (efficiencyMultiplier * drainRate);
|
|
|
|
|
|
|
|
if (internalCounter % 2 == 0)
|
|
|
|
world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ItemStack returnedItem = tileAltar.getStackInSlot(0);
|
|
|
|
|
|
|
|
if (!(returnedItem.getItem() instanceof IBloodOrb))
|
|
|
|
return;
|
|
|
|
|
|
|
|
IBloodOrb item = (IBloodOrb) (returnedItem.getItem());
|
|
|
|
NBTTagCompound itemTag = returnedItem.getTagCompound();
|
|
|
|
|
|
|
|
if (itemTag == null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
String ownerName = itemTag.getString(Constants.NBT.OWNER_NAME);
|
|
|
|
|
|
|
|
if (Strings.isNullOrEmpty(ownerName))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (fluid != null && fluid.amount >= 1) {
|
|
|
|
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? consumptionRate * (1 + consumptionMultiplier) : consumptionRate), fluid.amount);
|
|
|
|
|
|
|
|
int drain = NetworkHelper.getSoulNetwork(ownerName, world).addLifeEssence(liquidDrained, (int) (item.getMaxEssence(returnedItem.getMetadata()) * this.orbCapacityMultiplier));
|
|
|
|
|
|
|
|
fluid.amount = fluid.amount - drain;
|
|
|
|
|
|
|
|
if (internalCounter % 4 == 0)
|
|
|
|
world.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + Math.random() - Math.random(), pos.getY() + Math.random() - Math.random(), pos.getZ() + Math.random() - Math.random(), f1, f2, f3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (world != null)
|
|
|
|
world.markBlockForUpdate(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void checkTier() {
|
|
|
|
EnumAltarTier tier = BloodAltar.getAltarTier(tileAltar.getWorld(), tileAltar.getPos());
|
|
|
|
this.altarTier = tier;
|
|
|
|
|
|
|
|
upgrade = BloodAltar.getUpgrades(tileAltar.getWorld(), tileAltar.getPos(), tier);
|
|
|
|
|
|
|
|
if (tier.equals(EnumAltarTier.ONE)) {
|
|
|
|
upgrade = null;
|
|
|
|
isUpgraded = false;
|
|
|
|
this.consumptionMultiplier = 0;
|
|
|
|
this.efficiencyMultiplier = 1;
|
|
|
|
this.sacrificeEfficiencyMultiplier = 0;
|
|
|
|
this.selfSacrificeEfficiencyMultiplier = 0;
|
|
|
|
this.capacityMultiplier = 1;
|
|
|
|
this.orbCapacityMultiplier = 1;
|
|
|
|
this.dislocationMultiplier = 1;
|
|
|
|
this.accelerationUpgrades = 0;
|
|
|
|
return;
|
|
|
|
} else if (!tier.equals(EnumAltarTier.ONE) && upgrade != null) {
|
|
|
|
this.isUpgraded = true;
|
|
|
|
this.consumptionMultiplier = (float) (0.20 * upgrade.getSpeedCount());
|
|
|
|
this.efficiencyMultiplier = (float) Math.pow(0.85, upgrade.getEfficiencyCount());
|
|
|
|
this.sacrificeEfficiencyMultiplier = (float) (0.10 * upgrade.getSacrificeCount());
|
|
|
|
this.selfSacrificeEfficiencyMultiplier = (float) (0.10 * upgrade.getSelfSacrificeCount());
|
|
|
|
this.capacityMultiplier = (float) ((1 * Math.pow(1.10, upgrade.getBetterCapacityCount()) + 0.20 * upgrade.getCapacityCount()));
|
|
|
|
this.dislocationMultiplier = (float) (Math.pow(1.2, upgrade.getDisplacementCount()));
|
|
|
|
this.orbCapacityMultiplier = (float) (1 + 0.02 * upgrade.getOrbCapacityCount());
|
|
|
|
this.accelerationUpgrades = upgrade.getAccelerationCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.capacity = (int) (FluidContainerRegistry.BUCKET_VOLUME * 10 * capacityMultiplier);
|
|
|
|
this.bufferCapacity = (int) (FluidContainerRegistry.BUCKET_VOLUME * 1 * capacityMultiplier);
|
|
|
|
|
|
|
|
if (this.fluid.amount > this.capacity) this.fluid.amount = this.capacity;
|
|
|
|
if (this.fluidOutput.amount > this.bufferCapacity) this.fluidOutput.amount = this.bufferCapacity;
|
|
|
|
if (this.fluidInput.amount > this.bufferCapacity) this.fluidInput.amount = this.bufferCapacity;
|
|
|
|
|
|
|
|
tileAltar.getWorld().markBlockForUpdate(tileAltar.getPos());
|
|
|
|
}
|
|
|
|
|
|
|
|
public int fillMainTank(int amount) {
|
|
|
|
int filledAmount = Math.min(capacity - fluid.amount, amount);
|
|
|
|
fluid.amount += filledAmount;
|
|
|
|
|
|
|
|
return filledAmount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sacrificialDaggerCall(int amount, boolean isSacrifice) {
|
|
|
|
if (this.lockdownDuration > 0) {
|
|
|
|
int amt = (int) Math.min(bufferCapacity - fluidInput.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
|
|
|
fluidInput.amount += amt;
|
|
|
|
} else {
|
|
|
|
fluid.amount += Math.min(capacity - fluid.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMainFluid(FluidStack fluid) {
|
|
|
|
this.fluid = fluid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOutputFluid(FluidStack fluid) {
|
|
|
|
this.fluidOutput = fluid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInputFluid(FluidStack fluid) {
|
|
|
|
this.fluidInput = fluid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public AltarUpgrade getUpgrade() {
|
|
|
|
return upgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUpgrade(AltarUpgrade upgrade) {
|
|
|
|
this.upgrade = upgrade;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getCapacity() {
|
|
|
|
return capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public FluidStack getFluid() {
|
|
|
|
return fluid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getFluidAmount() {
|
|
|
|
return fluid.amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getCurrentBlood() {
|
|
|
|
return getFluidAmount();
|
|
|
|
}
|
|
|
|
|
|
|
|
public EnumAltarTier getTier() {
|
|
|
|
return altarTier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTier(EnumAltarTier tier) {
|
|
|
|
this.altarTier = tier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getProgress() {
|
|
|
|
return progress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getSacrificeMultiplier() {
|
|
|
|
return sacrificeEfficiencyMultiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getSelfSacrificeMultiplier() {
|
|
|
|
return selfSacrificeEfficiencyMultiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getOrbMultiplier() {
|
|
|
|
return orbCapacityMultiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getDislocationMultiplier() {
|
|
|
|
return dislocationMultiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getBufferCapacity() {
|
|
|
|
return bufferCapacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addToDemonBloodDuration(int dur) {
|
|
|
|
this.demonBloodDuration += dur;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasDemonBlood() {
|
|
|
|
return this.demonBloodDuration > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void decrementDemonBlood() {
|
|
|
|
this.demonBloodDuration = Math.max(0, this.demonBloodDuration - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setActive() {
|
|
|
|
isActive = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isActive() {
|
|
|
|
return isActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void requestPauseAfterCrafting(int amount) {
|
|
|
|
if (this.isActive) {
|
|
|
|
this.cooldownAfterCrafting = amount;
|
|
|
|
}
|
|
|
|
}
|
2015-10-30 03:22:14 +00:00
|
|
|
}
|