Merge remote-tracking branch 'origin/1.12' into 1.12

This commit is contained in:
Nicholas Ignoffo 2018-04-17 16:16:14 -07:00
commit 7e2dc3f4e7
2 changed files with 64 additions and 32 deletions

View file

@ -6,6 +6,8 @@ Version 2.2.9
- Now works for recipes that require an LP cost. - Now works for recipes that require an LP cost.
- Hoppers no longer lose items when items are placed into the "slave" Alchemy Table who has some slots restricted. - Hoppers no longer lose items when items are placed into the "slave" Alchemy Table who has some slots restricted.
- Added an entry to the book that explains you can, in fact, use Sea Lanterns instead of glowstone blocks for your Tier 3 altar. - Added an entry to the book that explains you can, in fact, use Sea Lanterns instead of glowstone blocks for your Tier 3 altar.
- Fixed the Demon Will crystals growing when they shouldn't. Also lowered the time between natural crystal growths in Will-enriched areas.
- Side note: who's bright idea was it to have to wait 15 minutes per crystal growth?
------------------------------------------------------ ------------------------------------------------------
Version 2.2.8 Version 2.2.8

View file

@ -12,7 +12,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumFacing;
import net.minecraft.util.math.MathHelper; import net.minecraft.util.math.MathHelper;
public class TileDemonCrystal extends TileTicking { public class TileDemonCrystal extends TileTicking
{
public static final double sameWillConversionRate = 50; public static final double sameWillConversionRate = 50;
public static final double defaultWillConversionRate = 100; public static final double defaultWillConversionRate = 100;
public static final double timeDelayForWrongWill = 0.6; public static final double timeDelayForWrongWill = 0.6;
@ -24,35 +25,46 @@ public class TileDemonCrystal extends TileTicking {
public int crystalCount = 1; public int crystalCount = 1;
public EnumFacing placement = EnumFacing.UP; //Side that this crystal is placed on. public EnumFacing placement = EnumFacing.UP; //Side that this crystal is placed on.
public TileDemonCrystal() { public TileDemonCrystal()
{
this.crystalCount = 1; this.crystalCount = 1;
} }
@Override @Override
public void onUpdate() { public void onUpdate()
if (getWorld().isRemote) { {
if (getWorld().isRemote)
{
return; return;
} }
internalCounter++; internalCounter++;
if (internalCounter % 20 == 0 && crystalCount < 7) { if (internalCounter % 20 == 0 && crystalCount < 7)
{
EnumDemonWillType type = EnumDemonWillType.values()[this.getBlockMetadata()]; EnumDemonWillType type = EnumDemonWillType.values()[this.getBlockMetadata()];
double value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, type); double value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, type);
if (type != EnumDemonWillType.DEFAULT) { if (type != EnumDemonWillType.DEFAULT)
if (value >= 100) { {
if (value >= 100)
{
double nextProgress = getCrystalGrowthPerSecond(value); double nextProgress = getCrystalGrowthPerSecond(value);
progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), type, nextProgress * sameWillConversionRate, true) / sameWillConversionRate; progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), type, nextProgress * sameWillConversionRate, true) / sameWillConversionRate;
} else { } else
{
value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, EnumDemonWillType.DEFAULT); value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, EnumDemonWillType.DEFAULT);
if (value > 0.5) { if (value > 0.5)
{
double nextProgress = getCrystalGrowthPerSecond(value) * timeDelayForWrongWill; double nextProgress = getCrystalGrowthPerSecond(value) * timeDelayForWrongWill;
progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), EnumDemonWillType.DEFAULT, nextProgress * defaultWillConversionRate, true) / defaultWillConversionRate; progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), EnumDemonWillType.DEFAULT, nextProgress * defaultWillConversionRate, true) / defaultWillConversionRate;
} }
} }
} else { } else
if (value > 0.5) { {
if (value > 0.5)
{
double nextProgress = getCrystalGrowthPerSecond(value); double nextProgress = getCrystalGrowthPerSecond(value);
progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), type, nextProgress * sameWillConversionRate, true) / sameWillConversionRate; progressToNextCrystal += WorldDemonWillHandler.drainWill(getWorld(), getPos(), type, nextProgress * sameWillConversionRate, true) / sameWillConversionRate;
} }
@ -72,14 +84,17 @@ public class TileDemonCrystal extends TileTicking {
* Encourages the crystal to grow by a large percentage by telling it to * Encourages the crystal to grow by a large percentage by telling it to
* drain will from the aura. * drain will from the aura.
* *
* @param willDrain The amount of drain that is needed for the crystal to grow * @param willDrain
* successfully for the desired amount. Can be more than the base * The amount of drain that is needed for the crystal to grow
* amount. * successfully for the desired amount. Can be more than the base
* amount.
* @param progressPercentage * @param progressPercentage
* @return percentage actually grown. * @return percentage actually grown.
*/ */
public double growCrystalWithWillAmount(double willDrain, double progressPercentage) { public double growCrystalWithWillAmount(double willDrain, double progressPercentage)
if (crystalCount >= 7) { {
if (crystalCount >= 7)
{
return 0; return 0;
} }
@ -89,7 +104,8 @@ public class TileDemonCrystal extends TileTicking {
double value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, type); double value = WorldDemonWillHandler.getCurrentWill(getWorld(), pos, type);
double percentDrain = willDrain <= 0 ? 1 : Math.min(1, value / willDrain); double percentDrain = willDrain <= 0 ? 1 : Math.min(1, value / willDrain);
if (percentDrain <= 0) { if (percentDrain <= 0)
{
return 0; return 0;
} }
@ -102,8 +118,10 @@ public class TileDemonCrystal extends TileTicking {
return percentDrain * progressPercentage; return percentDrain * progressPercentage;
} }
public void checkAndGrowCrystal() { public void checkAndGrowCrystal()
if (progressToNextCrystal >= 1 || internalCounter % 100 == 0) { {
if (progressToNextCrystal >= 1 && internalCounter % 100 == 0)
{
progressToNextCrystal--; progressToNextCrystal--;
crystalCount++; crystalCount++;
markDirty(); markDirty();
@ -111,16 +129,20 @@ public class TileDemonCrystal extends TileTicking {
} }
} }
public double getMaxWillForCrystal() { public double getMaxWillForCrystal()
{
return 50; return 50;
} }
public boolean dropSingleCrystal() { public boolean dropSingleCrystal()
if (!getWorld().isRemote && crystalCount > 1) { {
if (!getWorld().isRemote && crystalCount > 1)
{
IBlockState state = getWorld().getBlockState(pos); IBlockState state = getWorld().getBlockState(pos);
EnumDemonWillType type = state.getValue(BlockDemonCrystal.TYPE); EnumDemonWillType type = state.getValue(BlockDemonCrystal.TYPE);
ItemStack stack = BlockDemonCrystal.getItemStackDropped(type, 1); ItemStack stack = BlockDemonCrystal.getItemStackDropped(type, 1);
if (!stack.isEmpty()) { if (!stack.isEmpty())
{
crystalCount--; crystalCount--;
InventoryHelper.spawnItemStack(getWorld(), pos.getX(), pos.getY(), pos.getZ(), stack); InventoryHelper.spawnItemStack(getWorld(), pos.getX(), pos.getY(), pos.getZ(), stack);
notifyUpdate(); notifyUpdate();
@ -131,16 +153,19 @@ public class TileDemonCrystal extends TileTicking {
return false; return false;
} }
public double getCrystalGrowthPerSecond(double will) { public double getCrystalGrowthPerSecond(double will)
return 1.0 / 800 * Math.sqrt(will / 200); {
return 1.0 / 200 * Math.sqrt(will / 200);
} }
public int getCrystalCountForRender() { public int getCrystalCountForRender()
{
return MathHelper.clamp(crystalCount - 1, 0, 6); return MathHelper.clamp(crystalCount - 1, 0, 6);
} }
@Override @Override
public void deserialize(NBTTagCompound tag) { public void deserialize(NBTTagCompound tag)
{
holder.readFromNBT(tag, "Will"); holder.readFromNBT(tag, "Will");
crystalCount = tag.getInteger("crystalCount"); crystalCount = tag.getInteger("crystalCount");
placement = EnumFacing.getFront(tag.getInteger("placement")); placement = EnumFacing.getFront(tag.getInteger("placement"));
@ -148,7 +173,8 @@ public class TileDemonCrystal extends TileTicking {
} }
@Override @Override
public NBTTagCompound serialize(NBTTagCompound tag) { public NBTTagCompound serialize(NBTTagCompound tag)
{
holder.writeToNBT(tag, "Will"); holder.writeToNBT(tag, "Will");
tag.setInteger("crystalCount", crystalCount); tag.setInteger("crystalCount", crystalCount);
tag.setInteger("placement", placement.getIndex()); tag.setInteger("placement", placement.getIndex());
@ -156,19 +182,23 @@ public class TileDemonCrystal extends TileTicking {
return tag; return tag;
} }
public int getCrystalCount() { public int getCrystalCount()
{
return crystalCount; return crystalCount;
} }
public void setCrystalCount(int crystalCount) { public void setCrystalCount(int crystalCount)
{
this.crystalCount = crystalCount; this.crystalCount = crystalCount;
} }
public EnumFacing getPlacement() { public EnumFacing getPlacement()
{
return placement; return placement;
} }
public void setPlacement(EnumFacing placement) { public void setPlacement(EnumFacing placement)
{
this.placement = placement; this.placement = placement;
} }
} }