Made the Blood Altar check if it had a null recipe on update while active. (Actual change on line 271)
Potential fix for #1275.
This commit is contained in:
parent
60c8441115
commit
c9319477bd
|
@ -10,6 +10,7 @@ Version 2.2.9
|
||||||
- Side note: who's bright idea was it to have to wait 15 minutes per crystal growth?
|
- Side note: who's bright idea was it to have to wait 15 minutes per crystal growth?
|
||||||
- Added the "Resonance of the Faceted Crystal", which can be used to create your first aspected Will crystal clusters.
|
- Added the "Resonance of the Faceted Crystal", which can be used to create your first aspected Will crystal clusters.
|
||||||
- Made it so the Crystallizer no longer generates a random aspected Will crystal cluster.
|
- Made it so the Crystallizer no longer generates a random aspected Will crystal cluster.
|
||||||
|
- Fixed rare crash with the Blood Altar, which only has a chance of occuring on restart.
|
||||||
|
|
||||||
------------------------------------------------------
|
------------------------------------------------------
|
||||||
Version 2.2.8
|
Version 2.2.8
|
||||||
|
|
|
@ -30,7 +30,8 @@ import net.minecraftforge.fluids.capability.IFluidHandler;
|
||||||
import net.minecraftforge.fluids.capability.IFluidTankProperties;
|
import net.minecraftforge.fluids.capability.IFluidTankProperties;
|
||||||
import net.minecraftforge.items.ItemHandlerHelper;
|
import net.minecraftforge.items.ItemHandlerHelper;
|
||||||
|
|
||||||
public class BloodAltar implements IFluidHandler {
|
public class BloodAltar implements IFluidHandler
|
||||||
|
{
|
||||||
|
|
||||||
public boolean isActive;
|
public boolean isActive;
|
||||||
protected FluidStack fluidOutput = new FluidStack(BlockLifeEssence.getLifeEssence(), 0);
|
protected FluidStack fluidOutput = new FluidStack(BlockLifeEssence.getLifeEssence(), 0);
|
||||||
|
@ -67,12 +68,15 @@ public class BloodAltar implements IFluidHandler {
|
||||||
private RecipeBloodAltar recipe;
|
private RecipeBloodAltar recipe;
|
||||||
private AltarTier currentTierDisplayed = AltarTier.ONE;
|
private AltarTier currentTierDisplayed = AltarTier.ONE;
|
||||||
|
|
||||||
public BloodAltar(TileAltar tileAltar) {
|
public BloodAltar(TileAltar tileAltar)
|
||||||
|
{
|
||||||
this.tileAltar = tileAltar;
|
this.tileAltar = tileAltar;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void readFromNBT(NBTTagCompound tagCompound) {
|
public void readFromNBT(NBTTagCompound tagCompound)
|
||||||
if (!tagCompound.hasKey(Constants.NBT.EMPTY)) {
|
{
|
||||||
|
if (!tagCompound.hasKey(Constants.NBT.EMPTY))
|
||||||
|
{
|
||||||
FluidStack fluid = FluidStack.loadFluidStackFromNBT(tagCompound);
|
FluidStack fluid = FluidStack.loadFluidStackFromNBT(tagCompound);
|
||||||
|
|
||||||
if (fluid != null)
|
if (fluid != null)
|
||||||
|
@ -115,7 +119,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
currentTierDisplayed = Enums.getIfPresent(AltarTier.class, tagCompound.getString(Constants.NBT.ALTAR_CURRENT_TIER_DISPLAYED)).or(AltarTier.ONE);
|
currentTierDisplayed = Enums.getIfPresent(AltarTier.class, tagCompound.getString(Constants.NBT.ALTAR_CURRENT_TIER_DISPLAYED)).or(AltarTier.ONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void writeToNBT(NBTTagCompound tagCompound) {
|
public void writeToNBT(NBTTagCompound tagCompound)
|
||||||
|
{
|
||||||
|
|
||||||
if (fluid != null)
|
if (fluid != null)
|
||||||
fluid.writeToNBT(tagCompound);
|
fluid.writeToNBT(tagCompound);
|
||||||
|
@ -158,7 +163,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
tagCompound.setString(Constants.NBT.ALTAR_CURRENT_TIER_DISPLAYED, currentTierDisplayed.name());
|
tagCompound.setString(Constants.NBT.ALTAR_CURRENT_TIER_DISPLAYED, currentTierDisplayed.name());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void startCycle() {
|
public void startCycle()
|
||||||
|
{
|
||||||
if (tileAltar.getWorld() != null)
|
if (tileAltar.getWorld() != null)
|
||||||
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
||||||
|
|
||||||
|
@ -172,11 +178,14 @@ public class BloodAltar implements IFluidHandler {
|
||||||
|
|
||||||
ItemStack input = tileAltar.getStackInSlot(0);
|
ItemStack input = tileAltar.getStackInSlot(0);
|
||||||
|
|
||||||
if (!input.isEmpty()) {
|
if (!input.isEmpty())
|
||||||
|
{
|
||||||
// Do recipes
|
// Do recipes
|
||||||
RecipeBloodAltar recipe = BloodMagicAPI.INSTANCE.getRecipeRegistrar().getBloodAltar(input);
|
RecipeBloodAltar recipe = BloodMagicAPI.INSTANCE.getRecipeRegistrar().getBloodAltar(input);
|
||||||
if (recipe != null) {
|
if (recipe != null)
|
||||||
if (recipe.getMinimumTier().ordinal() <= altarTier.ordinal()) {
|
{
|
||||||
|
if (recipe.getMinimumTier().ordinal() <= altarTier.ordinal())
|
||||||
|
{
|
||||||
this.isActive = true;
|
this.isActive = true;
|
||||||
this.recipe = recipe;
|
this.recipe = recipe;
|
||||||
this.liquidRequired = recipe.getSyphon();
|
this.liquidRequired = recipe.getSyphon();
|
||||||
|
@ -185,7 +194,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
this.canBeFilled = false;
|
this.canBeFilled = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (input.getItem() instanceof IBloodOrb) {
|
} else if (input.getItem() instanceof IBloodOrb)
|
||||||
|
{
|
||||||
this.isActive = true;
|
this.isActive = true;
|
||||||
this.canBeFilled = true;
|
this.canBeFilled = true;
|
||||||
return;
|
return;
|
||||||
|
@ -195,7 +205,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
isActive = false;
|
isActive = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void update() {
|
public void update()
|
||||||
|
{
|
||||||
World world = tileAltar.getWorld();
|
World world = tileAltar.getWorld();
|
||||||
BlockPos pos = tileAltar.getPos();
|
BlockPos pos = tileAltar.getPos();
|
||||||
|
|
||||||
|
@ -208,14 +219,17 @@ public class BloodAltar implements IFluidHandler {
|
||||||
if (lockdownDuration > 0)
|
if (lockdownDuration > 0)
|
||||||
lockdownDuration--;
|
lockdownDuration--;
|
||||||
|
|
||||||
if (internalCounter % 20 == 0) {
|
if (internalCounter % 20 == 0)
|
||||||
for (EnumFacing facing : EnumFacing.VALUES) {
|
{
|
||||||
|
for (EnumFacing facing : EnumFacing.VALUES)
|
||||||
|
{
|
||||||
BlockPos newPos = pos.offset(facing);
|
BlockPos newPos = pos.offset(facing);
|
||||||
IBlockState block = world.getBlockState(newPos);
|
IBlockState block = world.getBlockState(newPos);
|
||||||
block.getBlock().onNeighborChange(world, newPos, pos);
|
block.getBlock().onNeighborChange(world, newPos, pos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (internalCounter % (Math.max(20 - this.accelerationUpgrades, 1)) == 0) {
|
if (internalCounter % (Math.max(20 - this.accelerationUpgrades, 1)) == 0)
|
||||||
|
{
|
||||||
int syphonMax = (int) (20 * this.dislocationMultiplier);
|
int syphonMax = (int) (20 * this.dislocationMultiplier);
|
||||||
int fluidInputted;
|
int fluidInputted;
|
||||||
int fluidOutputted;
|
int fluidOutputted;
|
||||||
|
@ -230,7 +244,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (internalCounter % this.getChargingFrequency() == 0 && !this.isActive) {
|
if (internalCounter % this.getChargingFrequency() == 0 && !this.isActive)
|
||||||
|
{
|
||||||
int chargeInputted = Math.min(chargingRate, this.fluid.amount);
|
int chargeInputted = Math.min(chargingRate, this.fluid.amount);
|
||||||
chargeInputted = Math.min(chargeInputted, maxCharge - totalCharge);
|
chargeInputted = Math.min(chargeInputted, maxCharge - totalCharge);
|
||||||
totalCharge += chargeInputted;
|
totalCharge += chargeInputted;
|
||||||
|
@ -244,13 +259,21 @@ public class BloodAltar implements IFluidHandler {
|
||||||
updateAltar();
|
updateAltar();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateAltar() {
|
private void updateAltar()
|
||||||
if (!isActive) {
|
{
|
||||||
|
if (!isActive)
|
||||||
|
{
|
||||||
if (cooldownAfterCrafting > 0)
|
if (cooldownAfterCrafting > 0)
|
||||||
cooldownAfterCrafting--;
|
cooldownAfterCrafting--;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (recipe == null)
|
||||||
|
{
|
||||||
|
startCycle();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ItemStack input = tileAltar.getStackInSlot(0);
|
ItemStack input = tileAltar.getStackInSlot(0);
|
||||||
|
|
||||||
if (input.isEmpty())
|
if (input.isEmpty())
|
||||||
|
@ -262,11 +285,13 @@ public class BloodAltar implements IFluidHandler {
|
||||||
if (world.isRemote)
|
if (world.isRemote)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!canBeFilled) {
|
if (!canBeFilled)
|
||||||
|
{
|
||||||
boolean hasOperated = false;
|
boolean hasOperated = false;
|
||||||
int stackSize = input.getCount();
|
int stackSize = input.getCount();
|
||||||
|
|
||||||
if (totalCharge > 0) {
|
if (totalCharge > 0)
|
||||||
|
{
|
||||||
int chargeDrained = Math.min(liquidRequired * stackSize - progress, totalCharge);
|
int chargeDrained = Math.min(liquidRequired * stackSize - progress, totalCharge);
|
||||||
|
|
||||||
totalCharge -= chargeDrained;
|
totalCharge -= chargeDrained;
|
||||||
|
@ -274,7 +299,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
|
|
||||||
hasOperated = true;
|
hasOperated = true;
|
||||||
}
|
}
|
||||||
if (fluid != null && fluid.amount >= 1) {
|
if (fluid != null && fluid.amount >= 1)
|
||||||
|
{
|
||||||
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? consumptionRate * (1 + consumptionMultiplier) : consumptionRate), fluid.amount);
|
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? consumptionRate * (1 + consumptionMultiplier) : consumptionRate), fluid.amount);
|
||||||
|
|
||||||
if (liquidDrained > (liquidRequired * stackSize - progress))
|
if (liquidDrained > (liquidRequired * stackSize - progress))
|
||||||
|
@ -285,22 +311,27 @@ public class BloodAltar implements IFluidHandler {
|
||||||
|
|
||||||
hasOperated = true;
|
hasOperated = true;
|
||||||
|
|
||||||
if (internalCounter % 4 == 0 && world instanceof WorldServer) {
|
if (internalCounter % 4 == 0 && world instanceof WorldServer)
|
||||||
|
{
|
||||||
WorldServer server = (WorldServer) world;
|
WorldServer server = (WorldServer) world;
|
||||||
server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.2, 0, 0.2, 0);
|
server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.2, 0, 0.2, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (!hasOperated && progress > 0) {
|
} else if (!hasOperated && progress > 0)
|
||||||
|
{
|
||||||
progress -= (int) (efficiencyMultiplier * drainRate);
|
progress -= (int) (efficiencyMultiplier * drainRate);
|
||||||
|
|
||||||
if (internalCounter % 2 == 0 && world instanceof WorldServer) {
|
if (internalCounter % 2 == 0 && world instanceof WorldServer)
|
||||||
|
{
|
||||||
WorldServer server = (WorldServer) world;
|
WorldServer server = (WorldServer) world;
|
||||||
server.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.1, 0, 0.1, 0);
|
server.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0.1, 0, 0.1, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasOperated) {
|
if (hasOperated)
|
||||||
if (progress >= liquidRequired * stackSize) {
|
{
|
||||||
|
if (progress >= liquidRequired * stackSize)
|
||||||
|
{
|
||||||
ItemStack result = ItemHandlerHelper.copyStackWithSize(recipe.getOutput(), stackSize);
|
ItemStack result = ItemHandlerHelper.copyStackWithSize(recipe.getOutput(), stackSize);
|
||||||
|
|
||||||
BloodMagicCraftedEvent.Altar event = new BloodMagicCraftedEvent.Altar(result, input.copy());
|
BloodMagicCraftedEvent.Altar event = new BloodMagicCraftedEvent.Altar(result, input.copy());
|
||||||
|
@ -308,7 +339,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
tileAltar.setInventorySlotContents(0, event.getOutput());
|
tileAltar.setInventorySlotContents(0, event.getOutput());
|
||||||
progress = 0;
|
progress = 0;
|
||||||
|
|
||||||
if (world instanceof WorldServer) {
|
if (world instanceof WorldServer)
|
||||||
|
{
|
||||||
WorldServer server = (WorldServer) world;
|
WorldServer server = (WorldServer) world;
|
||||||
server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 40, 0.3, 0, 0.3, 0);
|
server.spawnParticle(EnumParticleTypes.REDSTONE, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 40, 0.3, 0, 0.3, 0);
|
||||||
}
|
}
|
||||||
|
@ -317,7 +349,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
this.isActive = false;
|
this.isActive = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else
|
||||||
|
{
|
||||||
ItemStack contained = tileAltar.getStackInSlot(0);
|
ItemStack contained = tileAltar.getStackInSlot(0);
|
||||||
|
|
||||||
if (contained.isEmpty() || !(contained.getItem() instanceof IBloodOrb) || !(contained.getItem() instanceof IBindable))
|
if (contained.isEmpty() || !(contained.getItem() instanceof IBloodOrb) || !(contained.getItem() instanceof IBindable))
|
||||||
|
@ -329,13 +362,15 @@ public class BloodAltar implements IFluidHandler {
|
||||||
if (binding == null || orb == null)
|
if (binding == null || orb == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (fluid != null && fluid.amount >= 1) {
|
if (fluid != null && fluid.amount >= 1)
|
||||||
|
{
|
||||||
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? orb.getFillRate() * (1 + consumptionMultiplier) : orb.getFillRate()), fluid.amount);
|
int liquidDrained = Math.min((int) (altarTier.ordinal() >= 2 ? orb.getFillRate() * (1 + consumptionMultiplier) : orb.getFillRate()), fluid.amount);
|
||||||
|
|
||||||
int drain = NetworkHelper.getSoulNetwork(binding).add(liquidDrained, (int) (orb.getCapacity() * this.orbCapacityMultiplier));
|
int drain = NetworkHelper.getSoulNetwork(binding).add(liquidDrained, (int) (orb.getCapacity() * this.orbCapacityMultiplier));
|
||||||
fluid.amount = fluid.amount - drain;
|
fluid.amount = fluid.amount - drain;
|
||||||
|
|
||||||
if (drain > 0 && internalCounter % 4 == 0 && world instanceof WorldServer) {
|
if (drain > 0 && internalCounter % 4 == 0 && world instanceof WorldServer)
|
||||||
|
{
|
||||||
WorldServer server = (WorldServer) world;
|
WorldServer server = (WorldServer) world;
|
||||||
server.spawnParticle(EnumParticleTypes.SPELL_WITCH, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0, 0, 0, 0.001);
|
server.spawnParticle(EnumParticleTypes.SPELL_WITCH, pos.getX() + 0.5, pos.getY() + 1, pos.getZ() + 0.5, 1, 0, 0, 0, 0.001);
|
||||||
}
|
}
|
||||||
|
@ -345,7 +380,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void checkTier() {
|
public void checkTier()
|
||||||
|
{
|
||||||
AltarTier tier = AltarUtil.getTier(tileAltar.getWorld(), tileAltar.getPos());
|
AltarTier tier = AltarUtil.getTier(tileAltar.getWorld(), tileAltar.getPos());
|
||||||
this.altarTier = tier;
|
this.altarTier = tier;
|
||||||
|
|
||||||
|
@ -354,7 +390,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
if (tier.equals(currentTierDisplayed))
|
if (tier.equals(currentTierDisplayed))
|
||||||
currentTierDisplayed = AltarTier.ONE;
|
currentTierDisplayed = AltarTier.ONE;
|
||||||
|
|
||||||
if (tier.equals(AltarTier.ONE)) {
|
if (tier.equals(AltarTier.ONE))
|
||||||
|
{
|
||||||
upgrade = null;
|
upgrade = null;
|
||||||
isUpgraded = false;
|
isUpgraded = false;
|
||||||
this.consumptionMultiplier = 0;
|
this.consumptionMultiplier = 0;
|
||||||
|
@ -370,7 +407,8 @@ public class BloodAltar implements IFluidHandler {
|
||||||
this.maxCharge = 0;
|
this.maxCharge = 0;
|
||||||
this.totalCharge = 0;
|
this.totalCharge = 0;
|
||||||
return;
|
return;
|
||||||
} else if (!tier.equals(AltarTier.ONE)) {
|
} else if (!tier.equals(AltarTier.ONE))
|
||||||
|
{
|
||||||
this.isUpgraded = true;
|
this.isUpgraded = true;
|
||||||
this.accelerationUpgrades = upgrade.getLevel(BloodRuneType.ACCELERATION);
|
this.accelerationUpgrades = upgrade.getLevel(BloodRuneType.ACCELERATION);
|
||||||
this.consumptionMultiplier = (float) (0.20 * upgrade.getLevel(BloodRuneType.SPEED));
|
this.consumptionMultiplier = (float) (0.20 * upgrade.getLevel(BloodRuneType.SPEED));
|
||||||
|
@ -400,103 +438,128 @@ public class BloodAltar implements IFluidHandler {
|
||||||
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
tileAltar.getWorld().notifyBlockUpdate(tileAltar.getPos(), tileAltar.getWorld().getBlockState(tileAltar.getPos()), tileAltar.getWorld().getBlockState(tileAltar.getPos()), 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int fillMainTank(int amount) {
|
public int fillMainTank(int amount)
|
||||||
|
{
|
||||||
int filledAmount = Math.min(capacity - fluid.amount, amount);
|
int filledAmount = Math.min(capacity - fluid.amount, amount);
|
||||||
fluid.amount += filledAmount;
|
fluid.amount += filledAmount;
|
||||||
|
|
||||||
return filledAmount;
|
return filledAmount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sacrificialDaggerCall(int amount, boolean isSacrifice) {
|
public void sacrificialDaggerCall(int amount, boolean isSacrifice)
|
||||||
if (this.lockdownDuration > 0) {
|
{
|
||||||
|
if (this.lockdownDuration > 0)
|
||||||
|
{
|
||||||
int amt = (int) Math.min(bufferCapacity - fluidInput.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
int amt = (int) Math.min(bufferCapacity - fluidInput.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
||||||
fluidInput.amount += amt;
|
fluidInput.amount += amt;
|
||||||
} else {
|
} else
|
||||||
|
{
|
||||||
fluid.amount += Math.min(capacity - fluid.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
fluid.amount += Math.min(capacity - fluid.amount, (isSacrifice ? 1 + sacrificeEfficiencyMultiplier : 1 + selfSacrificeEfficiencyMultiplier) * amount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMainFluid(FluidStack fluid) {
|
public void setMainFluid(FluidStack fluid)
|
||||||
|
{
|
||||||
this.fluid = fluid;
|
this.fluid = fluid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOutputFluid(FluidStack fluid) {
|
public void setOutputFluid(FluidStack fluid)
|
||||||
|
{
|
||||||
this.fluidOutput = fluid;
|
this.fluidOutput = fluid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setInputFluid(FluidStack fluid) {
|
public void setInputFluid(FluidStack fluid)
|
||||||
|
{
|
||||||
this.fluidInput = fluid;
|
this.fluidInput = fluid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public AltarUpgrade getUpgrade() {
|
public AltarUpgrade getUpgrade()
|
||||||
|
{
|
||||||
return upgrade;
|
return upgrade;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUpgrade(AltarUpgrade upgrade) {
|
public void setUpgrade(AltarUpgrade upgrade)
|
||||||
|
{
|
||||||
this.upgrade = upgrade;
|
this.upgrade = upgrade;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCapacity() {
|
public int getCapacity()
|
||||||
|
{
|
||||||
return capacity;
|
return capacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
public FluidStack getFluid() {
|
public FluidStack getFluid()
|
||||||
|
{
|
||||||
return fluid;
|
return fluid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getFluidAmount() {
|
public int getFluidAmount()
|
||||||
|
{
|
||||||
return fluid.amount;
|
return fluid.amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCurrentBlood() {
|
public int getCurrentBlood()
|
||||||
|
{
|
||||||
return getFluidAmount();
|
return getFluidAmount();
|
||||||
}
|
}
|
||||||
|
|
||||||
public AltarTier getTier() {
|
public AltarTier getTier()
|
||||||
|
{
|
||||||
return altarTier;
|
return altarTier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTier(AltarTier tier) {
|
public void setTier(AltarTier tier)
|
||||||
|
{
|
||||||
this.altarTier = tier;
|
this.altarTier = tier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getProgress() {
|
public int getProgress()
|
||||||
|
{
|
||||||
return progress;
|
return progress;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getSacrificeMultiplier() {
|
public float getSacrificeMultiplier()
|
||||||
|
{
|
||||||
return sacrificeEfficiencyMultiplier;
|
return sacrificeEfficiencyMultiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getSelfSacrificeMultiplier() {
|
public float getSelfSacrificeMultiplier()
|
||||||
|
{
|
||||||
return selfSacrificeEfficiencyMultiplier;
|
return selfSacrificeEfficiencyMultiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getOrbMultiplier() {
|
public float getOrbMultiplier()
|
||||||
|
{
|
||||||
return orbCapacityMultiplier;
|
return orbCapacityMultiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getDislocationMultiplier() {
|
public float getDislocationMultiplier()
|
||||||
|
{
|
||||||
return dislocationMultiplier;
|
return dislocationMultiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getConsumptionMultiplier() {
|
public float getConsumptionMultiplier()
|
||||||
|
{
|
||||||
return consumptionMultiplier;
|
return consumptionMultiplier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public float getConsumptionRate() {
|
public float getConsumptionRate()
|
||||||
|
{
|
||||||
return consumptionRate;
|
return consumptionRate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getLiquidRequired() {
|
public int getLiquidRequired()
|
||||||
|
{
|
||||||
return liquidRequired;
|
return liquidRequired;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getBufferCapacity() {
|
public int getBufferCapacity()
|
||||||
|
{
|
||||||
return bufferCapacity;
|
return bufferCapacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean setCurrentTierDisplayed(AltarTier altarTier) {
|
public boolean setCurrentTierDisplayed(AltarTier altarTier)
|
||||||
|
{
|
||||||
if (currentTierDisplayed == altarTier)
|
if (currentTierDisplayed == altarTier)
|
||||||
return false;
|
return false;
|
||||||
else
|
else
|
||||||
|
@ -504,79 +567,99 @@ public class BloodAltar implements IFluidHandler {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addToDemonBloodDuration(int dur) {
|
public void addToDemonBloodDuration(int dur)
|
||||||
|
{
|
||||||
this.demonBloodDuration += dur;
|
this.demonBloodDuration += dur;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasDemonBlood() {
|
public boolean hasDemonBlood()
|
||||||
|
{
|
||||||
return this.demonBloodDuration > 0;
|
return this.demonBloodDuration > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void decrementDemonBlood() {
|
public void decrementDemonBlood()
|
||||||
|
{
|
||||||
this.demonBloodDuration = Math.max(0, this.demonBloodDuration - 1);
|
this.demonBloodDuration = Math.max(0, this.demonBloodDuration - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setActive() {
|
public void setActive()
|
||||||
if (tileAltar.getStackInSlot(0).isEmpty()) {
|
{
|
||||||
|
if (tileAltar.getStackInSlot(0).isEmpty())
|
||||||
|
{
|
||||||
isActive = false;
|
isActive = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isActive() {
|
public boolean isActive()
|
||||||
|
{
|
||||||
return isActive;
|
return isActive;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void requestPauseAfterCrafting(int amount) {
|
public void requestPauseAfterCrafting(int amount)
|
||||||
if (this.isActive) {
|
{
|
||||||
|
if (this.isActive)
|
||||||
|
{
|
||||||
this.cooldownAfterCrafting = amount;
|
this.cooldownAfterCrafting = amount;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getChargingRate() {
|
public int getChargingRate()
|
||||||
|
{
|
||||||
return chargingRate;
|
return chargingRate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getTotalCharge() {
|
public int getTotalCharge()
|
||||||
|
{
|
||||||
return totalCharge;
|
return totalCharge;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getChargingFrequency() {
|
public int getChargingFrequency()
|
||||||
|
{
|
||||||
return chargingFrequency == 0 ? 1 : chargingFrequency;
|
return chargingFrequency == 0 ? 1 : chargingFrequency;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int fill(FluidStack resource, boolean doFill) {
|
public int fill(FluidStack resource, boolean doFill)
|
||||||
if (resource == null || resource.getFluid() != BlockLifeEssence.getLifeEssence()) {
|
{
|
||||||
|
if (resource == null || resource.getFluid() != BlockLifeEssence.getLifeEssence())
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!doFill) {
|
if (!doFill)
|
||||||
if (fluidInput == null) {
|
{
|
||||||
|
if (fluidInput == null)
|
||||||
|
{
|
||||||
return Math.min(bufferCapacity, resource.amount);
|
return Math.min(bufferCapacity, resource.amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fluidInput.isFluidEqual(resource)) {
|
if (!fluidInput.isFluidEqual(resource))
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Math.min(bufferCapacity - fluidInput.amount, resource.amount);
|
return Math.min(bufferCapacity - fluidInput.amount, resource.amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fluidInput == null) {
|
if (fluidInput == null)
|
||||||
|
{
|
||||||
fluidInput = new FluidStack(resource, Math.min(bufferCapacity, resource.amount));
|
fluidInput = new FluidStack(resource, Math.min(bufferCapacity, resource.amount));
|
||||||
|
|
||||||
return fluidInput.amount;
|
return fluidInput.amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fluidInput.isFluidEqual(resource)) {
|
if (!fluidInput.isFluidEqual(resource))
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int filled = bufferCapacity - fluidInput.amount;
|
int filled = bufferCapacity - fluidInput.amount;
|
||||||
|
|
||||||
if (resource.amount < filled) {
|
if (resource.amount < filled)
|
||||||
|
{
|
||||||
fluidInput.amount += resource.amount;
|
fluidInput.amount += resource.amount;
|
||||||
filled = resource.amount;
|
filled = resource.amount;
|
||||||
} else {
|
} else
|
||||||
|
{
|
||||||
fluidInput.amount = bufferCapacity;
|
fluidInput.amount = bufferCapacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -584,37 +667,45 @@ public class BloodAltar implements IFluidHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FluidStack drain(FluidStack resource, boolean doDrain) {
|
public FluidStack drain(FluidStack resource, boolean doDrain)
|
||||||
if (resource == null || !resource.isFluidEqual(fluidOutput)) {
|
{
|
||||||
|
if (resource == null || !resource.isFluidEqual(fluidOutput))
|
||||||
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return drain(resource.amount, doDrain);
|
return drain(resource.amount, doDrain);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FluidStack drain(int maxDrain, boolean doDrain) {
|
public FluidStack drain(int maxDrain, boolean doDrain)
|
||||||
if (fluidOutput == null) {
|
{
|
||||||
|
if (fluidOutput == null)
|
||||||
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
int drained = maxDrain;
|
int drained = maxDrain;
|
||||||
if (fluidOutput.amount < drained) {
|
if (fluidOutput.amount < drained)
|
||||||
|
{
|
||||||
drained = fluidOutput.amount;
|
drained = fluidOutput.amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
FluidStack stack = new FluidStack(fluidOutput, drained);
|
FluidStack stack = new FluidStack(fluidOutput, drained);
|
||||||
if (doDrain) {
|
if (doDrain)
|
||||||
|
{
|
||||||
fluidOutput.amount -= drained;
|
fluidOutput.amount -= drained;
|
||||||
}
|
}
|
||||||
return stack;
|
return stack;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IFluidTankProperties[] getTankProperties() {
|
public IFluidTankProperties[] getTankProperties()
|
||||||
return new IFluidTankProperties[]{new FluidTankPropertiesWrapper(new FluidTank(fluid, capacity))};
|
{
|
||||||
|
return new IFluidTankProperties[] { new FluidTankPropertiesWrapper(new FluidTank(fluid, capacity)) };
|
||||||
}
|
}
|
||||||
|
|
||||||
public AltarTier getCurrentTierDisplayed() {
|
public AltarTier getCurrentTierDisplayed()
|
||||||
|
{
|
||||||
return currentTierDisplayed;
|
return currentTierDisplayed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue