NaturesAura/src/main/java/de/ellpeck/naturesaura/InternalHooks.java

185 lines
7.6 KiB
Java
Raw Normal View History

2018-11-11 13:26:19 +01:00
package de.ellpeck.naturesaura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.chunk.IAuraChunk;
import de.ellpeck.naturesaura.api.aura.container.IAuraContainer;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.api.misc.ILevelData;
import de.ellpeck.naturesaura.api.multiblock.IMultiblock;
import de.ellpeck.naturesaura.blocks.multi.Multiblock;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.misc.LevelData;
import net.minecraft.entity.player.Player;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ResourceLocation;
2019-02-20 23:49:21 +01:00
import net.minecraft.util.Tuple;
import net.minecraft.util.math.AxisAlignedBB;
2018-11-11 13:26:19 +01:00
import net.minecraft.util.math.BlockPos;
2020-09-22 03:17:02 +02:00
import net.minecraft.util.math.vector.Vector3d;
2021-12-04 15:40:09 +01:00
import net.minecraft.level.Level;
import org.apache.commons.lang3.mutable.MutableFloat;
2018-11-11 13:26:19 +01:00
import org.apache.commons.lang3.mutable.MutableInt;
import org.apache.commons.lang3.mutable.MutableObject;
import org.apache.commons.lang3.tuple.Pair;
2018-11-11 13:26:19 +01:00
import java.util.ArrayList;
import java.util.List;
2018-11-11 13:26:19 +01:00
import java.util.function.BiConsumer;
public class InternalHooks implements NaturesAuraAPI.IInternalHooks {
@Override
2021-12-04 15:40:09 +01:00
public boolean extractAuraFromPlayer(Player player, int amount, boolean simulate) {
return this.auraPlayerInteraction(player, amount, true, simulate);
}
@Override
2021-12-04 15:40:09 +01:00
public boolean insertAuraIntoPlayer(Player player, int amount, boolean simulate) {
return this.auraPlayerInteraction(player, amount, false, simulate);
}
2021-12-04 15:40:09 +01:00
private boolean auraPlayerInteraction(Player player, int amount, boolean extract, boolean simulate) {
2019-11-04 19:08:49 +01:00
if (extract && player.isCreative())
return true;
2020-01-26 19:26:50 +01:00
ItemStack stack = Helper.getEquippedItem(s -> s.getCapability(NaturesAuraAPI.capAuraContainer).isPresent(), player);
if (!stack.isEmpty()) {
IAuraContainer container = stack.getCapability(NaturesAuraAPI.capAuraContainer).orElse(null);
if (extract) {
amount -= container.drainAura(amount, simulate);
} else {
amount -= container.storeAura(amount, simulate);
}
2020-01-26 19:26:50 +01:00
return amount <= 0;
}
return false;
}
2018-11-11 13:26:19 +01:00
@Override
2018-11-13 00:36:47 +01:00
public void spawnMagicParticle(double posX, double posY, double posZ, double motionX, double motionY, double motionZ, int color, float scale, int maxAge, float gravity, boolean collision, boolean fade) {
NaturesAura.proxy.spawnMagicParticle(posX, posY, posZ, motionX, motionY, motionZ, color, scale, maxAge, gravity, collision, fade);
}
@Override
public void spawnParticleStream(float startX, float startY, float startZ, float endX, float endY, float endZ, float speed, int color, float scale) {
2020-09-22 03:17:02 +02:00
Vector3d dir = new Vector3d(endX - startX, endY - startY, endZ - startZ);
2019-11-04 19:08:49 +01:00
double length = dir.length();
2019-03-31 14:17:29 +02:00
if (length > 0) {
2020-01-23 20:57:56 +01:00
dir = dir.normalize();
2018-11-13 00:36:47 +01:00
this.spawnMagicParticle(startX, startY, startZ,
dir.x * speed, dir.y * speed, dir.z * speed,
2019-03-31 14:17:29 +02:00
color, scale, (int) (length / speed), 0F, false, false);
2018-11-13 00:36:47 +01:00
}
2018-11-11 13:26:19 +01:00
}
2019-02-19 17:23:03 +01:00
@Override
public void setParticleDepth(boolean depth) {
NaturesAura.proxy.setParticleDepth(depth);
}
@Override
public void setParticleSpawnRange(int range) {
NaturesAura.proxy.setParticleSpawnRange(range);
}
2020-02-28 15:36:12 +01:00
@Override
public void setParticleCulling(boolean cull) {
NaturesAura.proxy.setParticleCulling(cull);
}
@Override
public IMultiblock createMultiblock(ResourceLocation name, String[][] pattern, Object... rawMatchers) {
return new Multiblock(name, pattern, rawMatchers);
}
@Override
2021-12-04 15:40:09 +01:00
public List<Tuple<Vector3d, Integer>> getActiveEffectPowders(Level level, AxisAlignedBB area, ResourceLocation name) {
2020-09-22 03:17:02 +02:00
List<Tuple<Vector3d, Integer>> found = new ArrayList<>();
2021-12-04 15:40:09 +01:00
for (Tuple<Vector3d, Integer> powder : ((LevelData) ILevelData.getLevelData(level)).effectPowders.get(name))
2020-01-21 23:02:39 +01:00
if (area.contains(powder.getA()))
found.add(powder);
return found;
2019-02-20 23:49:21 +01:00
}
@Override
2021-12-04 15:40:09 +01:00
public boolean isEffectPowderActive(Level level, BlockPos pos, ResourceLocation name) {
2020-09-22 03:17:02 +02:00
Vector3d posVec = new Vector3d(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5);
2021-12-04 15:40:09 +01:00
List<Tuple<Vector3d, Integer>> powders = this.getActiveEffectPowders(level, new AxisAlignedBB(pos).grow(64), name);
2020-09-22 03:17:02 +02:00
for (Tuple<Vector3d, Integer> powder : powders) {
2020-01-21 23:02:39 +01:00
AxisAlignedBB bounds = Helper.aabb(powder.getA()).grow(powder.getB());
if (bounds.contains(posVec))
2019-02-20 23:49:21 +01:00
return true;
}
return false;
}
2018-11-11 13:26:19 +01:00
@Override
2021-12-04 15:40:09 +01:00
public void getAuraSpotsInArea(Level level, BlockPos pos, int radius, BiConsumer<BlockPos, Integer> consumer) {
Helper.getAuraChunksWithSpotsInArea(level, pos, radius, chunk -> chunk.getSpotsInArea(pos, radius, consumer));
2018-11-11 13:26:19 +01:00
}
@Override
2021-12-04 15:40:09 +01:00
public int getSpotAmountInArea(Level level, BlockPos pos, int radius) {
MutableInt result = new MutableInt();
2021-12-04 15:40:09 +01:00
this.getAuraSpotsInArea(level, pos, radius, (blockpos, drainSpot) -> result.increment());
return result.intValue();
}
2018-11-11 13:26:19 +01:00
@Override
2021-12-04 15:40:09 +01:00
public int getAuraInArea(Level level, BlockPos pos, int radius) {
2018-11-11 13:26:19 +01:00
MutableInt result = new MutableInt(IAuraChunk.DEFAULT_AURA);
2021-12-04 15:40:09 +01:00
this.getAuraSpotsInArea(level, pos, radius, (blockPos, drainSpot) -> result.add(drainSpot));
2018-11-11 13:26:19 +01:00
return result.intValue();
}
@Override
2021-12-04 15:40:09 +01:00
public Pair<Integer, Integer> getAuraAndSpotAmountInArea(Level level, BlockPos pos, int radius) {
MutableInt spots = new MutableInt();
MutableInt aura = new MutableInt(IAuraChunk.DEFAULT_AURA);
2021-12-04 15:40:09 +01:00
this.getAuraSpotsInArea(level, pos, radius, (blockPos, drainSpot) -> {
aura.add(drainSpot);
spots.increment();
});
return Pair.of(aura.intValue(), spots.intValue());
}
@Override
2021-12-04 15:40:09 +01:00
public int triangulateAuraInArea(Level level, BlockPos pos, int radius) {
MutableFloat result = new MutableFloat(IAuraChunk.DEFAULT_AURA);
2021-12-04 15:40:09 +01:00
IAuraChunk.getSpotsInArea(level, pos, radius, (blockPos, spot) -> {
2020-01-21 23:02:39 +01:00
float percentage = 1F - (float) Math.sqrt(pos.distanceSq(blockPos)) / radius;
result.add(spot * percentage);
});
return result.intValue();
}
2018-11-11 13:26:19 +01:00
@Override
2021-12-04 15:40:09 +01:00
public BlockPos getLowestAuraDrainSpot(Level level, BlockPos pos, int radius, BlockPos defaultSpot) {
2018-11-11 13:26:19 +01:00
MutableInt lowestAmount = new MutableInt(Integer.MAX_VALUE);
MutableObject<BlockPos> lowestSpot = new MutableObject<>();
2021-12-04 15:40:09 +01:00
this.getAuraSpotsInArea(level, pos, radius, (blockPos, drainSpot) -> {
if (drainSpot < lowestAmount.intValue()) {
lowestAmount.setValue(drainSpot);
2018-11-11 13:26:19 +01:00
lowestSpot.setValue(blockPos);
}
});
BlockPos lowest = lowestSpot.getValue();
if (lowest == null || lowestAmount.intValue() >= 0)
2018-11-11 13:26:19 +01:00
lowest = defaultSpot;
return lowest;
}
@Override
2021-12-04 15:40:09 +01:00
public BlockPos getHighestAuraDrainSpot(Level level, BlockPos pos, int radius, BlockPos defaultSpot) {
2018-11-11 13:26:19 +01:00
MutableInt highestAmount = new MutableInt(Integer.MIN_VALUE);
MutableObject<BlockPos> highestSpot = new MutableObject<>();
2021-12-04 15:40:09 +01:00
this.getAuraSpotsInArea(level, pos, radius, (blockPos, drainSpot) -> {
if (drainSpot > highestAmount.intValue()) {
highestAmount.setValue(drainSpot);
2018-11-11 13:26:19 +01:00
highestSpot.setValue(blockPos);
}
});
BlockPos highest = highestSpot.getValue();
if (highest == null || highestAmount.intValue() <= 0)
2018-11-11 13:26:19 +01:00
highest = defaultSpot;
return highest;
}
}