2013-04-21 06:34:54 +02:00
|
|
|
package mekanism.client;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.client.renderer.RenderBlocks;
|
|
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
|
|
import net.minecraft.util.Icon;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
|
2013-05-01 03:30:43 +02:00
|
|
|
/*
|
|
|
|
* Credit to BuildCraft
|
|
|
|
*/
|
2013-04-21 06:34:54 +02:00
|
|
|
public class ObjectRenderer
|
|
|
|
{
|
|
|
|
private static RenderBlocks renderBlocks = new RenderBlocks();
|
|
|
|
|
2013-04-23 21:36:43 +02:00
|
|
|
public static class Model3D
|
2013-04-21 06:34:54 +02:00
|
|
|
{
|
|
|
|
public double minX;
|
|
|
|
public double minY;
|
|
|
|
public double minZ;
|
|
|
|
public double maxX;
|
|
|
|
public double maxY;
|
|
|
|
public double maxZ;
|
|
|
|
|
|
|
|
public Block baseBlock = Block.sand;
|
|
|
|
|
|
|
|
public Icon texture = null;
|
|
|
|
|
|
|
|
public Icon getBlockTextureFromSide(int i)
|
|
|
|
{
|
|
|
|
if(texture == null)
|
|
|
|
{
|
|
|
|
return baseBlock.getBlockTextureFromSide(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getBlockBrightness(IBlockAccess iblockaccess, int i, int j, int k)
|
|
|
|
{
|
|
|
|
return baseBlock.getBlockBrightness(iblockaccess, i, j, k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-23 21:36:43 +02:00
|
|
|
public static void renderObject(Model3D object, IBlockAccess blockAccess, int i, int j, int k, boolean doLight, boolean doTessellating)
|
2013-04-21 06:34:54 +02:00
|
|
|
{
|
|
|
|
float f = 0.5F;
|
|
|
|
float f1 = 1.0F;
|
|
|
|
float f2 = 0.8F;
|
|
|
|
float f3 = 0.6F;
|
|
|
|
|
|
|
|
renderBlocks.renderMaxX = object.maxX;
|
|
|
|
renderBlocks.renderMinX = object.minX;
|
|
|
|
renderBlocks.renderMaxY = object.maxY;
|
|
|
|
renderBlocks.renderMinY = object.minY;
|
|
|
|
renderBlocks.renderMaxZ = object.maxZ;
|
|
|
|
renderBlocks.renderMinZ = object.minZ;
|
|
|
|
|
|
|
|
renderBlocks.enableAO = false;
|
|
|
|
|
|
|
|
|
|
|
|
Tessellator tessellator = Tessellator.instance;
|
|
|
|
|
|
|
|
if(doTessellating)
|
|
|
|
{
|
|
|
|
tessellator.startDrawingQuads();
|
|
|
|
}
|
|
|
|
|
|
|
|
float f4 = 0, f5 = 0;
|
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f4 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f * f5, f * f5, f * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceYNeg(null, 0, 0, 0, object.getBlockTextureFromSide(0));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f1 * f5, f1 * f5, f1 * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceYPos(null, 0, 0, 0, object.getBlockTextureFromSide(1));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f2 * f5, f2 * f5, f2 * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceZNeg(null, 0, 0, 0, object.getBlockTextureFromSide(2));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f2 * f5, f2 * f5, f2 * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceZPos(null, 0, 0, 0, object.getBlockTextureFromSide(3));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f3 * f5, f3 * f5, f3 * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceXNeg(null, 0, 0, 0, object.getBlockTextureFromSide(4));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doLight)
|
|
|
|
{
|
|
|
|
f5 = object.getBlockBrightness(blockAccess, i, j, k);
|
|
|
|
|
|
|
|
if(f5 < f4)
|
|
|
|
{
|
|
|
|
f5 = f4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tessellator.setColorOpaque_F(f3 * f5, f3 * f5, f3 * f5);
|
|
|
|
}
|
|
|
|
|
2013-05-07 21:57:55 +02:00
|
|
|
renderBlocks.renderFaceXPos(null, 0, 0, 0, object.getBlockTextureFromSide(5));
|
2013-04-21 06:34:54 +02:00
|
|
|
|
|
|
|
if(doTessellating)
|
|
|
|
{
|
|
|
|
tessellator.draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|