2014-11-14 12:02:52 +01:00
|
|
|
/*
|
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
|
2014-01-27 05:00:36 +01:00
|
|
|
package appeng.client.render.blocks;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2014-01-27 05:00:36 +01:00
|
|
|
import java.util.EnumSet;
|
|
|
|
|
|
|
|
import net.minecraft.client.renderer.RenderBlocks;
|
|
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.util.IIcon;
|
2014-01-27 05:00:36 +01:00
|
|
|
import net.minecraft.world.IBlockAccess;
|
2014-03-02 09:35:11 +01:00
|
|
|
import net.minecraftforge.client.IItemRenderer.ItemRenderType;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-12-29 21:59:05 +01:00
|
|
|
|
2014-07-17 06:44:02 +02:00
|
|
|
import appeng.api.util.AEColor;
|
2015-05-09 12:18:43 +02:00
|
|
|
import appeng.block.misc.BlockSecurity;
|
2014-01-27 05:00:36 +01:00
|
|
|
import appeng.client.render.BaseBlockRender;
|
2014-05-26 03:58:44 +02:00
|
|
|
import appeng.client.texture.ExtraBlockTextures;
|
2014-01-27 05:00:36 +01:00
|
|
|
import appeng.tile.misc.TileSecurity;
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
public class RendererSecurity extends BaseBlockRender<BlockSecurity, TileSecurity>
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
public RendererSecurity()
|
|
|
|
{
|
2014-01-27 05:00:36 +01:00
|
|
|
super( false, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public void renderInventory( final BlockSecurity block, final ItemStack is, final RenderBlocks renderer, final ItemRenderType type, final Object[] obj )
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
2014-05-26 03:58:44 +02:00
|
|
|
renderer.overrideBlockTexture = ExtraBlockTextures.getMissing();
|
2014-03-01 04:45:30 +01:00
|
|
|
this.renderInvBlock( EnumSet.of( ForgeDirection.SOUTH ), block, is, Tessellator.instance, 0x000000, renderer );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
2014-05-26 03:58:44 +02:00
|
|
|
renderer.overrideBlockTexture = ExtraBlockTextures.MEChest.getIcon();
|
2015-04-03 08:54:31 +02:00
|
|
|
this.renderInvBlock( EnumSet.of( ForgeDirection.UP ), block, is, Tessellator.instance, this.adjustBrightness( AEColor.Transparent.whiteVariant, 0.7 ), renderer );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
|
|
|
renderer.overrideBlockTexture = null;
|
2014-03-05 04:12:23 +01:00
|
|
|
super.renderInventory( block, is, renderer, type, obj );
|
2014-01-27 05:00:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public boolean renderInWorld( final BlockSecurity imb, final IBlockAccess world, final int x, final int y, final int z, final RenderBlocks renderer )
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
2015-09-25 23:10:56 +02:00
|
|
|
final TileSecurity sp = imb.getTileEntity( world, x, y, z );
|
2014-01-27 05:00:36 +01:00
|
|
|
renderer.setRenderBounds( 0, 0, 0, 1, 1, 1 );
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final ForgeDirection up = sp.getUp();
|
2014-01-27 05:00:36 +01:00
|
|
|
|
2014-12-29 15:13:47 +01:00
|
|
|
this.preRenderInWorld( imb, world, x, y, z, renderer );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final boolean result = renderer.renderStandardBlock( imb, x, y, z );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
|
|
|
int b = world.getLightBrightnessForSkyBlocks( x + up.offsetX, y + up.offsetY, z + up.offsetZ, 0 );
|
2015-09-16 18:03:07 +02:00
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
if( sp.isActive() )
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
|
|
|
b = 15 << 20 | 15 << 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tessellator.instance.setBrightness( b );
|
|
|
|
Tessellator.instance.setColorOpaque_I( 0xffffff );
|
|
|
|
renderer.setRenderBounds( 0, 0, 0, 1, 1, 1 );
|
|
|
|
|
2014-07-17 06:44:02 +02:00
|
|
|
Tessellator.instance.setColorOpaque_I( sp.getColor().whiteVariant );
|
|
|
|
IIcon ico = sp.isActive() ? ExtraBlockTextures.BlockMESecurityOn_Light.getIcon() : ExtraBlockTextures.MEChest.getIcon();
|
2014-12-29 15:13:47 +01:00
|
|
|
this.renderFace( x, y, z, imb, ico, renderer, up );
|
2015-09-16 18:03:07 +02:00
|
|
|
|
2015-04-03 08:54:31 +02:00
|
|
|
if( sp.isActive() )
|
2014-07-17 06:44:02 +02:00
|
|
|
{
|
|
|
|
Tessellator.instance.setColorOpaque_I( sp.getColor().mediumVariant );
|
|
|
|
ico = sp.isActive() ? ExtraBlockTextures.BlockMESecurityOn_Medium.getIcon() : ExtraBlockTextures.MEChest.getIcon();
|
2014-12-29 15:13:47 +01:00
|
|
|
this.renderFace( x, y, z, imb, ico, renderer, up );
|
2014-07-17 06:44:02 +02:00
|
|
|
|
|
|
|
Tessellator.instance.setColorOpaque_I( sp.getColor().blackVariant );
|
|
|
|
ico = sp.isActive() ? ExtraBlockTextures.BlockMESecurityOn_Dark.getIcon() : ExtraBlockTextures.MEChest.getIcon();
|
2014-12-29 15:13:47 +01:00
|
|
|
this.renderFace( x, y, z, imb, ico, renderer, up );
|
2014-07-17 06:44:02 +02:00
|
|
|
}
|
2014-01-27 05:00:36 +01:00
|
|
|
|
|
|
|
renderer.overrideBlockTexture = null;
|
2014-12-29 15:13:47 +01:00
|
|
|
this.postRenderInWorld( renderer );
|
2014-01-27 05:00:36 +01:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|