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

102 lines
4.6 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("RenderSmileyCloud.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02: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-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks.render;
2019-05-02 09:10:29 +02:00
import java.util.Locale;
import de.ellpeck.actuallyadditions.mod.blocks.InitBlocks;
2016-02-17 23:15:56 +01:00
import de.ellpeck.actuallyadditions.mod.misc.cloud.ISmileyCloudEasterEgg;
import de.ellpeck.actuallyadditions.mod.misc.cloud.SmileyCloudEasterEggs;
import de.ellpeck.actuallyadditions.mod.misc.special.RenderSpecial;
import de.ellpeck.actuallyadditions.mod.misc.special.SpecialRenderInit;
import de.ellpeck.actuallyadditions.mod.tile.TileEntitySmileyCloud;
2016-02-17 23:15:56 +01:00
import de.ellpeck.actuallyadditions.mod.util.AssetUtil;
2017-02-14 18:18:38 +01:00
import net.minecraft.block.BlockHorizontal;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public class RenderSmileyCloud extends TileEntitySpecialRenderer<TileEntitySmileyCloud> {
@Override
2019-05-02 09:10:29 +02:00
public void render(TileEntitySmileyCloud theCloud, double x, double y, double z, float par5, int partial, float f) {
if (theCloud instanceof TileEntitySmileyCloud) {
2015-08-25 17:59:50 +02:00
2016-02-17 23:15:56 +01:00
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);
GlStateManager.translate(0.0F, -2F, 0.0F);
2019-05-02 09:10:29 +02:00
if (theCloud.name != null && !theCloud.name.isEmpty()) {
boolean renderedEaster = false;
2019-05-02 09:10:29 +02:00
easterEggs: for (ISmileyCloudEasterEgg cloud : SmileyCloudEasterEggs.CLOUD_STUFF) {
for (String triggerName : cloud.getTriggerNames()) {
if (triggerName != null && theCloud.name != null) {
if (triggerName.equalsIgnoreCase(theCloud.name)) {
GlStateManager.pushMatrix();
2017-02-14 18:18:38 +01:00
2019-05-02 09:10:29 +02:00
IBlockState state = theCloud.getWorld().getBlockState(theCloud.getPos());
if (state.getBlock() == InitBlocks.blockSmileyCloud) {
switch (state.getValue(BlockHorizontal.FACING)) {
case NORTH:
GlStateManager.rotate(180, 0, 1, 0);
break;
case EAST:
GlStateManager.rotate(270, 0, 1, 0);
break;
case WEST:
GlStateManager.rotate(90, 0, 1, 0);
break;
default:
break;
}
2019-05-02 09:10:29 +02:00
}
2017-02-14 18:18:38 +01:00
2019-05-02 09:10:29 +02:00
cloud.renderExtra(0.0625F);
GlStateManager.popMatrix();
2019-05-02 09:10:29 +02:00
renderedEaster = true;
break easterEggs;
2015-08-24 17:57:11 +02:00
}
2015-10-03 10:16:18 +02:00
}
}
2019-05-02 09:10:29 +02:00
}
String nameLower = theCloud.name.toLowerCase(Locale.ROOT);
2019-05-02 09:10:29 +02:00
if (SpecialRenderInit.SPECIAL_LIST.containsKey(nameLower)) {
RenderSpecial render = SpecialRenderInit.SPECIAL_LIST.get(nameLower);
2019-05-02 09:10:29 +02:00
if (render != null) {
GlStateManager.pushMatrix();
GlStateManager.translate(0F, renderedEaster ? 0.05F : 0.25F, 0F);
GlStateManager.rotate(180F, 1.0F, 0.0F, 1.0F);
GlStateManager.scale(0.75F, 0.75F, 0.75F);
render.render();
GlStateManager.popMatrix();
}
}
}
GlStateManager.popMatrix();
2015-08-24 17:57:11 +02:00
Minecraft mc = Minecraft.getMinecraft();
2019-05-02 09:10:29 +02:00
if (theCloud.name != null && !theCloud.name.isEmpty() && !mc.gameSettings.hideGUI) {
if (mc.player.getDistanceSq(theCloud.getPos()) <= 36) {
AssetUtil.renderNameTag(theCloud.name, x + 0.5F, y + 1.5F, z + 0.5F);
}
}
}
}
}