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

344 lines
15 KiB
Java
Raw Normal View History

2018-10-14 14:27:18 +02:00
package de.ellpeck.naturesaura;
2020-01-21 21:04:44 +01:00
import com.mojang.blaze3d.platform.GlStateManager;
2020-01-28 18:08:56 +01:00
import com.mojang.blaze3d.systems.RenderSystem;
2018-11-12 22:04:40 +01:00
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
2020-01-25 19:18:45 +01:00
import de.ellpeck.naturesaura.api.aura.container.IAuraContainer;
2018-11-11 13:26:19 +01:00
import de.ellpeck.naturesaura.api.aura.item.IAuraRecharge;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.api.misc.ILevelData;
import de.ellpeck.naturesaura.blocks.tiles.BlockEntityImpl;
import de.ellpeck.naturesaura.chunk.AuraChunk;
2020-01-26 19:26:50 +01:00
import de.ellpeck.naturesaura.compat.Compat;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.misc.LevelData;
2020-01-23 22:40:03 +01:00
import net.minecraft.advancements.Advancement;
import net.minecraft.block.Block;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.BlockState;
2018-10-16 11:49:30 +02:00
import net.minecraft.client.Minecraft;
2019-10-20 22:30:49 +02:00
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.entity.item.ItemFrameEntity;
2021-12-04 15:40:09 +01:00
import net.minecraft.entity.player.Player;
import net.minecraft.entity.player.ServerPlayer;
2019-01-27 13:57:34 +01:00
import net.minecraft.item.Item;
2018-10-16 01:36:30 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
2020-01-21 21:04:44 +01:00
import net.minecraft.nbt.INBT;
2020-09-22 03:17:02 +02:00
import net.minecraft.state.Property;
2021-12-04 15:40:09 +01:00
import net.minecraft.tileentity.BlockEntity;
2020-01-21 21:04:44 +01:00
import net.minecraft.util.*;
2018-11-05 16:36:10 +01:00
import net.minecraft.util.math.AxisAlignedBB;
2018-10-14 14:27:18 +02:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.ChunkPos;
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.ILevel;
import net.minecraft.level.Level;
import net.minecraft.level.chunk.AbstractChunkProvider;
import net.minecraft.level.chunk.Chunk;
2020-01-21 21:04:44 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
2018-10-20 21:19:08 +02:00
import net.minecraftforge.common.capabilities.Capability;
2018-11-12 22:04:40 +01:00
import net.minecraftforge.common.capabilities.CapabilityManager;
2018-10-20 21:19:08 +02:00
import net.minecraftforge.common.capabilities.ICapabilityProvider;
2020-01-21 21:04:44 +01:00
import net.minecraftforge.common.util.LazyOptional;
2019-02-17 22:51:05 +01:00
import net.minecraftforge.items.IItemHandler;
2018-10-18 13:34:37 +02:00
import net.minecraftforge.items.IItemHandlerModifiable;
2020-01-21 21:04:44 +01:00
import net.minecraftforge.registries.ForgeRegistries;
2020-01-22 01:32:26 +01:00
import net.minecraftforge.registries.IForgeRegistry;
import net.minecraftforge.registries.IForgeRegistryEntry;
2020-01-26 19:26:50 +01:00
import org.apache.commons.lang3.tuple.ImmutableTriple;
2018-10-18 18:00:21 +02:00
import org.lwjgl.opengl.GL11;
2020-09-22 16:16:25 +02:00
import top.theillusivec4.curios.api.CuriosApi;
2018-10-14 14:27:18 +02:00
2018-10-20 21:19:08 +02:00
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
2020-01-22 01:32:26 +01:00
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
2018-10-14 14:27:18 +02:00
import java.util.List;
2020-01-22 01:32:26 +01:00
import java.util.Locale;
2020-01-26 19:26:50 +01:00
import java.util.Optional;
import java.util.function.Consumer;
2018-11-14 19:14:03 +01:00
import java.util.function.Function;
2020-01-26 19:26:50 +01:00
import java.util.function.Predicate;
2018-10-14 14:27:18 +02:00
public final class Helper {
2021-12-04 15:40:09 +01:00
public static boolean getTileEntitiesInArea(ILevel level, BlockPos pos, int radius, Function<BlockEntity, Boolean> consumer) {
for (int x = pos.getX() - radius >> 4; x <= pos.getX() + radius >> 4; x++) {
for (int z = pos.getZ() - radius >> 4; z <= pos.getZ() + radius >> 4; z++) {
2021-12-04 15:40:09 +01:00
Chunk chunk = getLoadedChunk(level, x, z);
2020-01-22 16:03:39 +01:00
if (chunk != null) {
for (BlockPos tilePos : chunk.getTileEntitiesPos()) {
2020-01-21 21:04:44 +01:00
if (tilePos.distanceSq(pos) <= radius * radius)
2021-12-04 15:40:09 +01:00
if (consumer.apply(chunk.getBlockEntity(tilePos)))
2018-11-14 19:14:03 +01:00
return true;
2018-10-14 14:27:18 +02:00
}
}
}
}
2018-11-14 19:14:03 +01:00
return false;
2018-10-14 14:27:18 +02:00
}
2021-12-04 15:40:09 +01:00
public static void getAuraChunksWithSpotsInArea(Level level, BlockPos pos, int radius, Consumer<AuraChunk> consumer) {
LevelData data = (LevelData) ILevelData.getLevelData(level);
for (int x = pos.getX() - radius >> 4; x <= pos.getX() + radius >> 4; x++) {
for (int z = pos.getZ() - radius >> 4; z <= pos.getZ() + radius >> 4; z++) {
AuraChunk chunk = data.auraChunksWithSpots.get(ChunkPos.asLong(x, z));
if (chunk != null)
consumer.accept(chunk);
}
}
}
2021-12-04 15:40:09 +01:00
public static List<ItemFrameEntity> getAttachedItemFrames(Level level, BlockPos pos) {
List<ItemFrameEntity> frames = level.getEntitiesWithinAABB(ItemFrameEntity.class, new AxisAlignedBB(pos).grow(0.25));
2018-11-05 16:36:10 +01:00
for (int i = frames.size() - 1; i >= 0; i--) {
2019-10-20 22:30:49 +02:00
ItemFrameEntity frame = frames.get(i);
2020-01-22 23:21:52 +01:00
BlockPos framePos = frame.getHangingPosition().offset(frame.getHorizontalFacing().getOpposite());
2018-11-05 16:36:10 +01:00
if (!pos.equals(framePos))
frames.remove(i);
}
return frames;
}
2021-12-04 15:40:09 +01:00
public static Chunk getLoadedChunk(ILevel level, int x, int z) {
// DO NOT EDIT PLEASE FOR THE LOVE OF GOD
// This is very finicky and easily causes the game to hang for some reason
2021-12-04 15:40:09 +01:00
AbstractChunkProvider provider = level.getChunkProvider();
if (provider.isChunkLoaded(new ChunkPos(x, z)))
return provider.getChunk(x, z, false);
return null;
2018-10-30 18:18:56 +01:00
}
2018-10-15 18:36:46 +02:00
public static int blendColors(int c1, int c2, float ratio) {
int a = (int) ((c1 >> 24 & 0xFF) * ratio + (c2 >> 24 & 0xFF) * (1 - ratio));
int r = (int) ((c1 >> 16 & 0xFF) * ratio + (c2 >> 16 & 0xFF) * (1 - ratio));
int g = (int) ((c1 >> 8 & 0xFF) * ratio + (c2 >> 8 & 0xFF) * (1 - ratio));
int b = (int) ((c1 & 0xFF) * ratio + (c2 & 0xFF) * (1 - ratio));
return (a & 255) << 24 | (r & 255) << 16 | (g & 255) << 8 | b & 255;
2018-10-15 18:36:46 +02:00
}
2018-10-16 01:36:30 +02:00
public static boolean areItemsEqual(ItemStack first, ItemStack second, boolean nbt) {
if (!ItemStack.areItemsEqual(first, second))
return false;
2020-01-21 21:04:44 +01:00
return !nbt || ItemStack.areItemStackTagsEqual(first, second);
}
2019-10-20 22:30:49 +02:00
@OnlyIn(Dist.CLIENT)
2018-10-18 18:00:21 +02:00
public static void renderItemInGui(ItemStack stack, int x, int y, float scale) {
2020-01-28 18:08:56 +01:00
RenderSystem.pushMatrix();
2018-10-18 18:00:21 +02:00
GlStateManager.enableBlend();
2020-01-21 21:04:44 +01:00
GlStateManager.enableDepthTest();
2020-01-28 18:08:56 +01:00
RenderSystem.enableRescaleNormal();
RenderSystem.translatef(x, y, 0);
RenderSystem.scalef(scale, scale, scale);
2020-01-21 21:04:44 +01:00
Minecraft.getInstance().getItemRenderer().renderItemAndEffectIntoGUI(stack, 0, 0);
Minecraft.getInstance().getItemRenderer().renderItemOverlayIntoGUI(Minecraft.getInstance().fontRenderer, stack, 0, 0, null);
2020-01-28 18:08:56 +01:00
RenderSystem.popMatrix();
2018-10-18 18:00:21 +02:00
}
2021-12-04 15:40:09 +01:00
public static InteractionResult putStackOnTile(Player player, Hand hand, BlockPos pos, int slot, boolean sound) {
BlockEntity tile = player.level.getBlockEntity(pos);
if (tile instanceof BlockEntityImpl) {
IItemHandlerModifiable handler = ((BlockEntityImpl) tile).getItemHandler();
2018-10-18 13:34:37 +02:00
if (handler != null) {
ItemStack handStack = player.getHeldItem(hand);
if (!handStack.isEmpty()) {
2021-12-04 15:40:09 +01:00
ItemStack remain = handler.insertItem(slot, handStack, player.level.isClientSide);
2018-10-18 13:34:37 +02:00
if (!ItemStack.areItemStacksEqual(remain, handStack)) {
if (sound)
2021-12-04 15:40:09 +01:00
player.level.playSound(player, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5,
2020-01-21 21:04:44 +01:00
SoundEvents.ENTITY_ITEM_FRAME_ADD_ITEM, SoundCategory.PLAYERS, 0.75F, 1F);
2021-12-04 15:40:09 +01:00
if (!player.level.isClientSide)
2018-10-18 13:34:37 +02:00
player.setHeldItem(hand, remain);
2021-12-04 15:40:09 +01:00
return InteractionResult.SUCCESS;
2018-10-18 13:34:37 +02:00
}
}
if (!handler.getStackInSlot(slot).isEmpty()) {
if (sound)
2021-12-04 15:40:09 +01:00
player.level.playSound(player, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5,
2020-01-21 21:04:44 +01:00
SoundEvents.ENTITY_ITEM_FRAME_REMOVE_ITEM, SoundCategory.PLAYERS, 0.75F, 1F);
2021-12-04 15:40:09 +01:00
if (!player.level.isClientSide) {
ItemStack stack = handler.getStackInSlot(slot);
if (!player.addItemStackToInventory(stack)) {
2021-12-04 15:40:09 +01:00
ItemEntity item = new ItemEntity(player.level, player.getPosX(), player.getPosY(), player.getPosZ(), stack);
player.level.addEntity(item);
}
2018-10-18 13:34:37 +02:00
handler.setStackInSlot(slot, ItemStack.EMPTY);
}
2021-12-04 15:40:09 +01:00
return InteractionResult.SUCCESS;
2018-10-18 13:34:37 +02:00
}
}
}
2021-12-04 15:40:09 +01:00
return InteractionResult.CONSUME;
2018-10-18 13:34:37 +02:00
}
2018-10-20 21:19:08 +02:00
2018-12-01 18:56:05 +01:00
public static ICapabilityProvider makeRechargeProvider(ItemStack stack, boolean needsSelected) {
2018-10-20 21:19:08 +02:00
return new ICapabilityProvider() {
2020-10-19 21:26:32 +02:00
private final LazyOptional<IAuraRecharge> recharge = LazyOptional.of(() -> (container, containerSlot, itemSlot, isSelected) -> {
if (isSelected || !needsSelected)
2020-01-25 19:18:45 +01:00
return rechargeAuraItem(stack, container, 300);
2018-12-01 18:56:05 +01:00
return false;
2020-10-19 21:26:32 +02:00
});
2018-10-20 21:19:08 +02:00
@Nullable
@Override
2020-01-21 21:04:44 +01:00
public <T> LazyOptional<T> getCapability(@Nonnull Capability<T> capability, @Nullable Direction facing) {
if (capability == NaturesAuraAPI.capAuraRecharge)
2020-10-19 21:26:32 +02:00
return this.recharge.cast();
2020-01-21 21:04:44 +01:00
return LazyOptional.empty();
2018-10-20 21:19:08 +02:00
}
};
}
2020-01-25 19:18:45 +01:00
public static boolean rechargeAuraItem(ItemStack stack, IAuraContainer container, int toDrain) {
if (stack.getDamage() > 0 && container.drainAura(toDrain, true) >= toDrain) {
stack.setDamage(stack.getDamage() - 1);
container.drainAura(toDrain, false);
return true;
}
return false;
}
2019-10-20 22:30:49 +02:00
public static BlockState getStateFromString(String raw) {
String[] split = raw.split("\\[");
2020-01-21 21:04:44 +01:00
Block block = ForgeRegistries.BLOCKS.getValue(new ResourceLocation(split[0]));
if (block != null) {
2019-10-20 22:30:49 +02:00
BlockState state = block.getDefaultState();
if (split.length > 1) {
for (String part : split[1].replace("]", "").split(",")) {
String[] keyValue = part.split("=");
2020-09-22 03:17:02 +02:00
for (Property<?> prop : state.getProperties()) {
2019-10-20 22:30:49 +02:00
BlockState changed = findProperty(state, prop, keyValue[0], keyValue[1]);
if (changed != null) {
state = changed;
break;
}
}
}
}
return state;
} else
return null;
}
2020-09-22 03:17:02 +02:00
private static <T extends Comparable<T>> BlockState findProperty(BlockState state, Property<T> prop, String key, String newValue) {
if (key.equals(prop.getName()))
for (T value : prop.getAllowedValues())
if (prop.getName(value).equals(newValue))
2020-01-21 21:04:44 +01:00
return state.with(prop, value);
return null;
}
2018-11-12 22:04:40 +01:00
public static <T> void registerCap(Class<T> type) {
CapabilityManager.INSTANCE.register(type, new Capability.IStorage<T>() {
@Override
2020-01-21 21:04:44 +01:00
public void readNBT(Capability<T> capability, T instance, Direction side, INBT nbt) {
2018-11-12 22:04:40 +01:00
}
2020-01-21 21:04:44 +01:00
@Nullable
2018-11-12 22:04:40 +01:00
@Override
2020-01-21 21:04:44 +01:00
public INBT writeNBT(Capability capability, Object instance, Direction side) {
return null;
2018-11-12 22:04:40 +01:00
}
}, () -> null);
}
2021-12-04 15:40:09 +01:00
public static void addAdvancement(Player player, ResourceLocation advancement, String criterion) {
if (!(player instanceof ServerPlayer))
2020-01-23 22:40:03 +01:00
return;
2021-12-04 15:40:09 +01:00
ServerPlayer playerMp = (ServerPlayer) player;
Advancement adv = playerMp.getServerLevel().getServer().getAdvancementManager().getAdvancement(advancement);
if (adv != null)
2020-01-23 22:40:03 +01:00
playerMp.getAdvancements().grantCriterion(adv, criterion);
}
2018-12-30 20:37:00 +01:00
public static int getIngredientAmount(Ingredient ingredient) {
int highestAmount = 0;
for (ItemStack stack : ingredient.getMatchingStacks())
if (stack.getCount() > highestAmount)
highestAmount = stack.getCount();
return highestAmount;
}
2019-01-27 13:57:34 +01:00
2019-10-20 22:30:49 +02:00
@OnlyIn(Dist.CLIENT)
2019-01-27 13:57:34 +01:00
public static void renderWeirdBox(double x, double y, double z, double width, double height, double depth) {
GL11.glVertex3d(x, y + height, z);
GL11.glVertex3d(x + width, y + height, z);
GL11.glVertex3d(x + width, y, z);
GL11.glVertex3d(x, y, z);
GL11.glVertex3d(x + width, y, z + depth);
GL11.glVertex3d(x + width, y, z);
GL11.glVertex3d(x + width, y + height, z);
GL11.glVertex3d(x + width, y + height, z + depth);
GL11.glVertex3d(x + width, y + height, z + depth);
GL11.glVertex3d(x, y + height, z + depth);
GL11.glVertex3d(x, y, z + depth);
GL11.glVertex3d(x + width, y, z + depth);
GL11.glVertex3d(x, y + height, z + depth);
GL11.glVertex3d(x, y + height, z);
GL11.glVertex3d(x, y, z);
GL11.glVertex3d(x, y, z + depth);
GL11.glVertex3d(x, y + height, z);
GL11.glVertex3d(x, y + height, z + depth);
GL11.glVertex3d(x + width, y + height, z + depth);
GL11.glVertex3d(x + width, y + height, z);
GL11.glVertex3d(x + width, y, z);
GL11.glVertex3d(x + width, y, z + depth);
GL11.glVertex3d(x, y, z + depth);
GL11.glVertex3d(x, y, z);
}
2021-12-04 15:40:09 +01:00
public static boolean isHoldingItem(Player player, Item item) {
2019-10-20 22:30:49 +02:00
for (Hand hand : Hand.values()) {
2019-01-27 13:57:34 +01:00
ItemStack stack = player.getHeldItem(hand);
if (!stack.isEmpty() && stack.getItem() == item)
return true;
}
return false;
}
2019-02-17 22:51:05 +01:00
public static boolean isEmpty(IItemHandler handler) {
for (int i = 0; i < handler.getSlots(); i++)
if (!handler.getStackInSlot(i).isEmpty())
return false;
return true;
}
2020-09-22 03:17:02 +02:00
public static AxisAlignedBB aabb(Vector3d pos) {
return new AxisAlignedBB(pos.x, pos.y, pos.z, pos.x, pos.y, pos.z);
}
2020-01-22 16:03:39 +01:00
2020-01-22 01:32:26 +01:00
// This is how @ObjectHolder _SHOULD_ work...
public static <T extends IForgeRegistryEntry<T>> void populateObjectHolders(Class clazz, IForgeRegistry<T> registry) {
for (Field entry : clazz.getFields()) {
if (!Modifier.isStatic(entry.getModifiers()))
continue;
2020-01-23 19:20:47 +01:00
ResourceLocation location = new ResourceLocation(NaturesAura.MOD_ID, entry.getName().toLowerCase(Locale.ROOT));
if (!registry.containsKey(location)) {
NaturesAura.LOGGER.fatal("Couldn't find entry named " + location + " in registry " + registry.getRegistryName());
continue;
}
2020-01-22 01:32:26 +01:00
try {
2020-01-23 19:20:47 +01:00
entry.set(null, registry.getValue(location));
2020-01-22 01:32:26 +01:00
} catch (IllegalAccessException e) {
NaturesAura.LOGGER.error(e);
}
}
}
2020-01-22 20:31:09 +01:00
2021-12-04 15:40:09 +01:00
public static ItemStack getEquippedItem(Predicate<ItemStack> predicate, Player player) {
2020-01-26 19:26:50 +01:00
if (Compat.hasCompat("curios")) {
2020-09-22 16:16:25 +02:00
Optional<ItemStack> stack = CuriosApi.getCuriosHelper().findEquippedCurio(predicate, player).map(ImmutableTriple::getRight);
2020-01-26 19:26:50 +01:00
if (stack.isPresent())
2020-09-22 16:16:25 +02:00
return stack.get();
2020-01-26 19:26:50 +01:00
}
for (int i = 0; i < player.inventory.getSizeInventory(); i++) {
ItemStack slot = player.inventory.getStackInSlot(i);
if (!slot.isEmpty() && predicate.test(slot))
return slot;
}
return ItemStack.EMPTY;
}
2018-10-14 14:27:18 +02:00
}