92 lines
3.0 KiB
Java
92 lines
3.0 KiB
Java
/*
|
|
* This file is part of Applied Energistics 2.
|
|
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
|
|
*
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
*/
|
|
|
|
package appeng.entity;
|
|
|
|
|
|
import com.mojang.blaze3d.matrix.MatrixStack;
|
|
|
|
import net.minecraft.block.Blocks;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.renderer.BlockRendererDispatcher;
|
|
import net.minecraft.client.renderer.IRenderTypeBuffer;
|
|
import net.minecraft.client.renderer.Vector3f;
|
|
import net.minecraft.client.renderer.entity.EntityRenderer;
|
|
import net.minecraft.client.renderer.entity.EntityRendererManager;
|
|
import net.minecraft.client.renderer.entity.TNTMinecartRenderer;
|
|
import net.minecraft.client.renderer.texture.AtlasTexture;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
|
|
@OnlyIn( Dist.CLIENT )
|
|
public class RenderTinyTNTPrimed extends EntityRenderer<EntityTinyTNTPrimed>
|
|
{
|
|
|
|
public RenderTinyTNTPrimed( final EntityRendererManager manager )
|
|
{
|
|
super( manager );
|
|
this.shadowSize = 0.5F;
|
|
}
|
|
|
|
@Override
|
|
public void render( EntityTinyTNTPrimed tnt, float entityYaw, float partialTicks, MatrixStack mStack, IRenderTypeBuffer buffers, int packedLight )
|
|
{
|
|
final BlockRendererDispatcher blockrendererdispatcher = Minecraft.getInstance().getBlockRendererDispatcher();
|
|
mStack.push();
|
|
mStack.translate( 0, 0.25F, 0 );
|
|
float f2;
|
|
|
|
if( tnt.getFuse() - partialTicks + 1.0F < 10.0F )
|
|
{
|
|
f2 = 1.0F - ( tnt.getFuse() - partialTicks + 1.0F ) / 10.0F;
|
|
|
|
if( f2 < 0.0F )
|
|
{
|
|
f2 = 0.0F;
|
|
}
|
|
|
|
if( f2 > 1.0F )
|
|
{
|
|
f2 = 1.0F;
|
|
}
|
|
|
|
f2 *= f2;
|
|
f2 *= f2;
|
|
final float f3 = 1.0F + f2 * 0.3F;
|
|
mStack.scale( f3, f3, f3 );
|
|
}
|
|
|
|
mStack.scale( 0.5f, 0.5f, 0.5f );
|
|
f2 = ( 1.0F - ( tnt.getFuse() - partialTicks + 1.0F ) / 100.0F ) * 0.8F;
|
|
mStack.rotate( Vector3f.YP.rotationDegrees( -90.0F ) );
|
|
mStack.translate( -0.5D, -0.5D, 0.5D );
|
|
mStack.rotate( Vector3f.YP.rotationDegrees( 90.0F ) );
|
|
TNTMinecartRenderer.renderTntFlash( Blocks.TNT.getDefaultState(), mStack, buffers, packedLight, tnt.getFuse() / 5 % 2 == 0 );
|
|
mStack.pop();
|
|
super.render( tnt, entityYaw, partialTicks, mStack, buffers, packedLight );
|
|
}
|
|
|
|
@Override
|
|
public ResourceLocation getEntityTexture( final EntityTinyTNTPrimed entity )
|
|
{
|
|
return AtlasTexture.LOCATION_BLOCKS_TEXTURE;
|
|
}
|
|
}
|