ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/render/RenderDisplayStand.java

59 lines
2.3 KiB
Java
Raw Normal View History

/*
* This file ("RenderDisplayStand.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.blocks.render;
2024-03-02 21:23:08 +01:00
import com.mojang.blaze3d.vertex.PoseStack;
2024-03-03 01:20:53 +01:00
import com.mojang.math.Axis;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityDisplayStand;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.Util;
import net.minecraft.client.renderer.MultiBufferSource;
import net.minecraft.client.renderer.blockentity.BlockEntityRenderer;
import net.minecraft.client.renderer.blockentity.BlockEntityRendererProvider;
2024-03-04 20:21:48 +01:00
import net.minecraft.core.registries.BuiltInRegistries;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.ItemStack;
2022-06-24 21:23:43 +02:00
import javax.annotation.Nonnull;
2024-03-02 21:23:08 +01:00
public class RenderDisplayStand implements BlockEntityRenderer<TileEntityDisplayStand> {
public RenderDisplayStand(BlockEntityRendererProvider.Context context) {
2021-02-27 21:24:26 +01:00
}
@Override
2024-03-02 21:23:08 +01:00
public void render(TileEntityDisplayStand tile, float partialTicks, @Nonnull PoseStack matrices, @Nonnull MultiBufferSource buffer, int combinedLightIn, int combinedOverlayIn) {
ItemStack stack = tile.inv.getStackInSlot(0);
2022-06-24 21:23:43 +02:00
if (stack.isEmpty()) {
2021-02-26 22:15:48 +01:00
return;
}
matrices.pushPose();
matrices.translate(0.5F, 1F, 0.5F);
2022-02-16 02:36:31 +01:00
float boop = Util.getMillis() / 800F;
matrices.translate(0D, Math.sin(boop % (2 * Math.PI)) * 0.065, 0D);
2024-03-03 01:20:53 +01:00
matrices.mulPose(Axis.YP.rotationDegrees(boop * 40F % 360.0F));
float scale = stack.getItem() instanceof BlockItem
? 0.85F
: 0.65F;
matrices.scale(scale, scale, scale);
try {
AssetUtil.renderItemInWorld(stack, combinedLightIn, combinedOverlayIn, matrices, buffer);
} catch (Exception e) {
2024-03-04 20:21:48 +01:00
ActuallyAdditions.LOGGER.error("Something went wrong trying to render an item in a display stand! The item is " + BuiltInRegistries.ITEM.getKey(stack.getItem()) + "!", e);
}
2021-02-27 21:24:26 +01:00
matrices.popPose();
2021-02-27 21:24:26 +01:00
}
}