2016-02-22 01:10:56 +00:00
|
|
|
package WayofTime.bloodmagic.demonAura;
|
|
|
|
|
|
|
|
import WayofTime.bloodmagic.api.BloodMagicAPI;
|
|
|
|
import WayofTime.bloodmagic.api.soul.DemonWillHolder;
|
|
|
|
import WayofTime.bloodmagic.api.soul.EnumDemonWillType;
|
2016-03-17 20:00:44 +00:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraft.world.chunk.Chunk;
|
|
|
|
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
2016-02-22 01:10:56 +00:00
|
|
|
|
|
|
|
public class WorldDemonWillHandler
|
|
|
|
{
|
|
|
|
static ConcurrentHashMap<Integer, WillWorld> containedWills = new ConcurrentHashMap<Integer, WillWorld>();
|
|
|
|
public static ConcurrentHashMap<Integer, CopyOnWriteArrayList<PosXY>> dirtyChunks = new ConcurrentHashMap<Integer, CopyOnWriteArrayList<PosXY>>();
|
|
|
|
|
2016-07-10 19:27:26 +00:00
|
|
|
public static DemonWillHolder getWillHolder(int dim, int x, int y)
|
|
|
|
{
|
|
|
|
WillChunk chunk = getWillChunk(dim, x, y);
|
|
|
|
if (chunk != null)
|
|
|
|
{
|
|
|
|
return chunk.getCurrentWill();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-07-12 20:57:22 +00:00
|
|
|
public static DemonWillHolder getWillHolder(World world, BlockPos pos)
|
|
|
|
{
|
|
|
|
return getWillHolder(world.provider.getDimension(), pos.getX() >> 4, pos.getZ() >> 4);
|
|
|
|
}
|
|
|
|
|
2016-02-27 03:11:28 +00:00
|
|
|
public static WillWorld getWillWorld(int dim)
|
2016-02-22 01:10:56 +00:00
|
|
|
{
|
|
|
|
return containedWills.get(dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static WillChunk getWillChunk(int dim, int x, int y)
|
|
|
|
{
|
2016-03-15 00:16:31 +00:00
|
|
|
if (!containedWills.containsKey(dim))
|
2016-02-22 01:10:56 +00:00
|
|
|
{
|
2016-03-15 00:16:31 +00:00
|
|
|
addWillWorld(dim);
|
2016-02-22 01:10:56 +00:00
|
|
|
}
|
|
|
|
|
2016-03-15 00:16:31 +00:00
|
|
|
return (containedWills.get(dim)).getWillChunkAt(x, y);
|
2016-02-22 01:10:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void addWillWorld(int dim)
|
|
|
|
{
|
|
|
|
if (!containedWills.containsKey(dim))
|
|
|
|
{
|
|
|
|
containedWills.put(dim, new WillWorld(dim));
|
|
|
|
BloodMagicAPI.getLogger().info("Creating demon will cache for world " + dim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void removeWillWorld(int dim)
|
|
|
|
{
|
|
|
|
containedWills.remove(dim);
|
|
|
|
BloodMagicAPI.getLogger().info("Removing demon will cache for world " + dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void addWillChunk(int dim, Chunk chunk, short base, DemonWillHolder currentWill)
|
|
|
|
{
|
|
|
|
WillWorld aw = containedWills.get(dim);
|
|
|
|
if (aw == null)
|
|
|
|
{
|
|
|
|
aw = new WillWorld(dim);
|
|
|
|
}
|
|
|
|
aw.getWillChunks().put(new PosXY(chunk.xPosition, chunk.zPosition), new WillChunk(chunk, base, currentWill));
|
|
|
|
|
|
|
|
containedWills.put(dim, aw);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void removeWillChunk(int dim, int x, int y)
|
|
|
|
{
|
|
|
|
WillWorld aw = containedWills.get(dim);
|
|
|
|
if (aw != null)
|
|
|
|
{
|
|
|
|
WillChunk chunk = aw.getWillChunks().remove(new PosXY(x, y));
|
|
|
|
if (chunk != null)
|
|
|
|
{
|
|
|
|
markChunkAsDirty(chunk, dim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-27 03:11:28 +00:00
|
|
|
public static EnumDemonWillType getHighestDemonWillType(World world, BlockPos pos)
|
|
|
|
{
|
|
|
|
double currentMax = 0;
|
|
|
|
EnumDemonWillType currentHighest = EnumDemonWillType.DEFAULT;
|
|
|
|
|
|
|
|
WillChunk willChunk = getWillChunk(world, pos);
|
|
|
|
|
|
|
|
DemonWillHolder currentWill = willChunk.getCurrentWill();
|
|
|
|
for (EnumDemonWillType type : EnumDemonWillType.values())
|
|
|
|
{
|
|
|
|
if (currentWill.getWill(type) > currentMax)
|
|
|
|
{
|
|
|
|
currentMax = currentWill.getWill(type);
|
|
|
|
currentHighest = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return currentHighest;
|
|
|
|
}
|
|
|
|
|
2016-02-22 01:10:56 +00:00
|
|
|
public static double drainWill(World world, BlockPos pos, EnumDemonWillType type, double amount, boolean doDrain)
|
|
|
|
{
|
|
|
|
WillChunk willChunk = getWillChunk(world, pos);
|
|
|
|
|
|
|
|
DemonWillHolder currentWill = willChunk.getCurrentWill();
|
|
|
|
double drain = Math.min(currentWill.getWill(type), amount);
|
|
|
|
if (!doDrain)
|
|
|
|
{
|
|
|
|
return drain;
|
|
|
|
}
|
|
|
|
|
|
|
|
drain = currentWill.drainWill(type, drain);
|
2016-03-17 20:00:44 +00:00
|
|
|
markChunkAsDirty(willChunk, world.provider.getDimension());
|
2016-02-22 01:10:56 +00:00
|
|
|
|
|
|
|
return drain;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static double fillWillToMaximum(World world, BlockPos pos, EnumDemonWillType type, double amount, double max, boolean doFill)
|
|
|
|
{
|
|
|
|
WillChunk willChunk = getWillChunk(world, pos);
|
|
|
|
|
|
|
|
DemonWillHolder currentWill = willChunk.getCurrentWill();
|
|
|
|
double fill = Math.min(amount, max - currentWill.getWill(type));
|
|
|
|
if (!doFill)
|
|
|
|
{
|
|
|
|
return fill;
|
|
|
|
}
|
|
|
|
|
|
|
|
fill = currentWill.addWill(type, amount, max);
|
2016-03-17 20:00:44 +00:00
|
|
|
markChunkAsDirty(willChunk, world.provider.getDimension());
|
2016-02-22 01:10:56 +00:00
|
|
|
|
|
|
|
return fill;
|
|
|
|
}
|
|
|
|
|
2016-02-23 18:40:08 +00:00
|
|
|
public static double fillWill(World world, BlockPos pos, EnumDemonWillType type, double amount, boolean doFill)
|
|
|
|
{
|
|
|
|
WillChunk willChunk = getWillChunk(world, pos);
|
|
|
|
|
|
|
|
DemonWillHolder currentWill = willChunk.getCurrentWill();
|
|
|
|
if (!doFill)
|
|
|
|
{
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
currentWill.addWill(type, amount);
|
2016-03-17 20:00:44 +00:00
|
|
|
markChunkAsDirty(willChunk, world.provider.getDimension());
|
2016-02-23 18:40:08 +00:00
|
|
|
|
|
|
|
return amount;
|
|
|
|
}
|
|
|
|
|
2016-02-22 01:10:56 +00:00
|
|
|
public static WillChunk getWillChunk(World world, BlockPos pos)
|
|
|
|
{
|
2016-03-17 20:00:44 +00:00
|
|
|
WillChunk willChunk = getWillChunk(world.provider.getDimension(), pos.getX() >> 4, pos.getZ() >> 4);
|
2016-03-15 00:16:31 +00:00
|
|
|
if (willChunk == null)
|
|
|
|
{
|
|
|
|
Chunk chunk = world.getChunkFromBlockCoords(pos);
|
|
|
|
generateWill(chunk);
|
|
|
|
|
2016-03-17 20:00:44 +00:00
|
|
|
willChunk = getWillChunk(world.provider.getDimension(), pos.getX() >> 4, pos.getZ() >> 4);
|
2016-03-15 00:16:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return willChunk;
|
2016-02-22 01:10:56 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 18:40:08 +00:00
|
|
|
public static double getCurrentWill(World world, BlockPos pos, EnumDemonWillType type)
|
|
|
|
{
|
|
|
|
WillChunk willChunk = getWillChunk(world, pos);
|
|
|
|
|
|
|
|
DemonWillHolder currentWill = willChunk.getCurrentWill();
|
|
|
|
return currentWill.getWill(type);
|
|
|
|
}
|
|
|
|
|
2016-02-22 01:10:56 +00:00
|
|
|
private static void markChunkAsDirty(WillChunk chunk, int dim)
|
|
|
|
{
|
|
|
|
if (chunk.isModified())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PosXY pos = new PosXY(chunk.loc.x, chunk.loc.y);
|
|
|
|
if (!dirtyChunks.containsKey(dim))
|
|
|
|
{
|
|
|
|
dirtyChunks.put(dim, new CopyOnWriteArrayList<PosXY>());
|
|
|
|
}
|
|
|
|
CopyOnWriteArrayList<PosXY> dc = dirtyChunks.get(dim);
|
|
|
|
if (!dc.contains(pos))
|
|
|
|
{
|
|
|
|
dc.add(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void generateWill(Chunk chunk)
|
|
|
|
{
|
2016-03-17 20:00:44 +00:00
|
|
|
addWillChunk(chunk.getWorld().provider.getDimension(), chunk, (short) 1, new DemonWillHolder());
|
2016-02-22 01:10:56 +00:00
|
|
|
}
|
|
|
|
}
|