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

76 lines
2.9 KiB
Java
Raw Normal View History

2015-11-29 13:17:45 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("RenderReconstructorLens.java") is part of the Actually Additions mod for Minecraft.
2015-11-29 13:17:45 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-11-29 13:17:45 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-11-29 13:17:45 +01:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks.render;
2015-11-29 13:17:45 +01:00
import de.ellpeck.actuallyadditions.api.lens.ILensItem;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityAtomicReconstructor;
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2021-02-26 22:15:48 +01:00
import net.minecraft.block.state.BlockState;
import net.minecraft.client.renderer.GlStateManager;
2015-11-29 13:17:45 +01:00
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.item.ItemStack;
2021-02-26 22:15:48 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.fml.relauncher.OnlyIn;
2015-11-29 13:17:45 +01:00
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2019-05-02 09:10:29 +02:00
public class RenderReconstructorLens extends TileEntitySpecialRenderer<TileEntityAtomicReconstructor> {
2015-11-29 13:17:45 +01:00
@Override
2019-05-02 09:10:29 +02:00
public void render(TileEntityAtomicReconstructor tile, double x, double y, double z, float par5, int par6, float f) {
2021-02-26 22:15:48 +01:00
if (tile == null) {
return;
}
2019-02-27 19:53:05 +01:00
ItemStack stack = tile.inv.getStackInSlot(0);
2015-11-29 13:17:45 +01:00
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(stack) && stack.getItem() instanceof ILensItem) {
GlStateManager.pushMatrix();
2019-05-02 09:10:29 +02:00
GlStateManager.translate((float) x + 0.5F, (float) y - 0.5F, (float) z + 0.5F);
GlStateManager.rotate(180F, 0.0F, 0.0F, 1.0F);
2015-11-29 13:17:45 +01:00
2021-02-26 22:15:48 +01:00
BlockState state = tile.getWorld().getBlockState(tile.getPos());
2016-07-04 20:15:41 +02:00
int meta = state.getBlock().getMetaFromState(state);
2019-05-02 09:10:29 +02:00
if (meta == 0) {
GlStateManager.translate(0F, -0.5F, 0F);
GlStateManager.rotate(90F, 1F, 0F, 0F);
2015-11-29 13:17:45 +01:00
}
2019-05-02 09:10:29 +02:00
if (meta == 1) {
GlStateManager.translate(0F, -1.5F - 0.5F / 16F, 0F);
GlStateManager.rotate(90F, 1F, 0F, 0F);
2015-11-29 13:17:45 +01:00
}
2019-05-02 09:10:29 +02:00
if (meta == 2) {
GlStateManager.translate(0F, -1F, 0F);
GlStateManager.translate(0F, 0F, -0.5F);
2015-11-29 13:17:45 +01:00
}
2019-05-02 09:10:29 +02:00
if (meta == 3) {
GlStateManager.translate(0F, -1F, 0F);
2019-05-02 09:10:29 +02:00
GlStateManager.translate(0F, 0F, 0.5F + 0.5F / 16F);
2015-11-29 13:17:45 +01:00
}
2019-05-02 09:10:29 +02:00
if (meta == 4) {
GlStateManager.translate(0F, -1F, 0F);
2019-05-02 09:10:29 +02:00
GlStateManager.translate(0.5F + 0.5F / 16F, 0F, 0F);
GlStateManager.rotate(90F, 0F, 1F, 0F);
2015-11-29 13:17:45 +01:00
}
2019-05-02 09:10:29 +02:00
if (meta == 5) {
GlStateManager.translate(0F, -1F, 0F);
GlStateManager.translate(-0.5F, 0F, 0F);
GlStateManager.rotate(90F, 0F, 1F, 0F);
2015-11-29 13:17:45 +01:00
}
GlStateManager.scale(0.5F, 0.5F, 0.5F);
AssetUtil.renderItemInWorld(stack);
2015-11-29 13:17:45 +01:00
GlStateManager.popMatrix();
}
2015-11-29 13:17:45 +01:00
}
}