Mekanism-tilera-Edition/common/mekanism/client/render/RenderPartTransmitter.java

412 lines
12 KiB
Java
Raw Normal View History

2013-10-03 01:10:20 +02:00
package mekanism.client.render;
import java.util.HashMap;
import java.util.Map;
import mekanism.api.transmitters.TransmissionType;
import mekanism.client.render.MekanismRenderer.DisplayInteger;
import mekanism.client.render.MekanismRenderer.Model3D;
import mekanism.common.multipart.PartMechanicalPipe;
import mekanism.common.multipart.PartPressurizedTube;
import mekanism.common.multipart.PartTransmitter;
import mekanism.common.multipart.PartUniversalCable;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.util.Icon;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.common.ForgeDirection;
import net.minecraftforge.fluids.Fluid;
2013-10-03 01:10:20 +02:00
import org.lwjgl.opengl.GL11;
import codechicken.lib.colour.Colour;
import codechicken.lib.colour.ColourRGBA;
import codechicken.lib.lighting.LightModel;
import codechicken.lib.render.CCModel;
import codechicken.lib.render.CCRenderState;
import codechicken.lib.render.ColourMultiplier;
import codechicken.lib.render.IconTransformation;
import codechicken.lib.render.TextureUtils;
import codechicken.lib.render.TextureUtils.IIconRegister;
import codechicken.lib.vec.Translation;
import codechicken.lib.vec.Vector3;
public class RenderPartTransmitter implements IIconRegister
{
public static RenderPartTransmitter INSTANCE;
public static Icon[] uniCableTextures = new Icon[2];
public static Icon[] mechPipeTextures = new Icon[2];
public static Icon[] pressTubeTextures = new Icon[2];
2013-12-03 16:54:50 +01:00
2013-10-03 01:10:20 +02:00
public static Icon sideTexture;
public static Map<TransmissionType, Icon[]> typeMap = new HashMap<TransmissionType, Icon[]>();
2013-12-03 14:42:13 +01:00
2013-10-03 01:10:20 +02:00
public static Map<String, CCModel> models;
public static Map<String, CCModel> cableContentsModels;
private static final int stages = 40;
2013-12-03 16:54:50 +01:00
private static final double height = 0.45;
2013-10-03 01:10:20 +02:00
private static final double offset = 0.015;
2013-12-03 17:24:23 +01:00
2013-10-03 01:10:20 +02:00
private HashMap<ForgeDirection, HashMap<Fluid, DisplayInteger[]>> cachedLiquids = new HashMap<ForgeDirection, HashMap<Fluid, DisplayInteger[]>>();
static
{
models = CCModel.parseObjModels(new ResourceLocation("mekanism", "models/transmitter.obj"), 7, null);
2013-12-03 16:54:50 +01:00
for(CCModel c : models.values())
{
2013-10-03 01:10:20 +02:00
c.apply(new Translation(.5, .5, .5));
c.computeLighting(LightModel.standardLightModel);
c.shrinkUVs(0.0005);
}
cableContentsModels = CCModel.parseObjModels(new ResourceLocation("mekanism", "models/transmitterEnergy.obj"), 7, null);
2013-12-03 16:54:50 +01:00
for(CCModel c : cableContentsModels.values())
{
2013-10-03 01:10:20 +02:00
c.apply(new Translation(.5, .5, .5));
c.computeLighting(LightModel.standardLightModel);
c.shrinkUVs(0.0005);
}
typeMap.put(TransmissionType.ENERGY, uniCableTextures);
typeMap.put(TransmissionType.FLUID, mechPipeTextures);
typeMap.put(TransmissionType.GAS, pressTubeTextures);
}
public static RenderPartTransmitter getInstance()
{
return INSTANCE;
}
public static void init()
{
INSTANCE = new RenderPartTransmitter();
TextureUtils.addIconRegistrar(INSTANCE);
}
private void push()
{
GL11.glPushMatrix();
GL11.glPushAttrib(GL11.GL_ENABLE_BIT);
GL11.glEnable(GL11.GL_CULL_FACE);
GL11.glEnable(GL11.GL_BLEND);
GL11.glDisable(GL11.GL_LIGHTING);
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
}
private void pop()
{
GL11.glPopAttrib();
GL11.glPopMatrix();
}
public void renderContents(PartUniversalCable cable, Vector3 pos)
{
2013-12-03 16:54:50 +01:00
if(cable.getTransmitterNetwork().clientEnergyScale == 0)
{
2013-10-03 01:10:20 +02:00
return;
2013-12-03 16:54:50 +01:00
}
2013-10-03 01:10:20 +02:00
GL11.glPushMatrix();
CCRenderState.reset();
CCRenderState.useNormals(true);
CCRenderState.useModelColours(true);
CCRenderState.startDrawing(7);
GL11.glTranslated(pos.x, pos.y, pos.z);
2013-12-03 16:54:50 +01:00
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
2013-10-03 01:10:20 +02:00
{
renderEnergySide(side, cable);
}
2013-12-03 16:54:50 +01:00
MekanismRenderer.glowOn();
2013-10-03 01:10:20 +02:00
CCRenderState.draw();
2013-12-03 16:54:50 +01:00
MekanismRenderer.glowOff();
2013-10-03 01:10:20 +02:00
GL11.glPopMatrix();
}
public void renderContents(PartMechanicalPipe pipe, Vector3 pos)
{
2013-12-03 17:24:23 +01:00
Fluid fluid = pipe.getTransmitterNetwork().refFluid;
float scale = pipe.getTransmitterNetwork().fluidScale;
if(scale > 0 && fluid != null)
{
2013-10-03 01:10:20 +02:00
push();
2013-12-03 16:54:50 +01:00
MekanismRenderer.glowOn(fluid.getLuminosity());
2013-10-03 01:10:20 +02:00
CCRenderState.changeTexture((MekanismRenderer.getBlocksTexture()));
2013-10-03 01:10:20 +02:00
GL11.glTranslated(pos.x, pos.y, pos.z);
2013-12-03 17:24:23 +01:00
boolean gas = fluid.isGaseous();
2013-12-03 16:54:50 +01:00
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
2013-10-03 01:10:20 +02:00
{
if(PartTransmitter.connectionMapContainsSide(pipe.getAllCurrentConnections(), side))
{
2013-12-03 16:54:50 +01:00
DisplayInteger[] displayLists = getListAndRender(side, fluid);
2013-10-03 01:10:20 +02:00
if(displayLists != null)
{
2013-12-03 17:24:23 +01:00
if(!gas)
{
displayLists[Math.max(3, (int)((float)scale*(stages-1)))].render();
}
else {
GL11.glColor4f(1F, 1F, 1F, scale);
displayLists[stages-1].render();
}
2013-10-03 01:10:20 +02:00
}
}
}
2013-12-03 16:54:50 +01:00
DisplayInteger[] displayLists = getListAndRender(ForgeDirection.UNKNOWN, fluid);
2013-10-03 01:10:20 +02:00
if(displayLists != null)
{
2013-12-03 17:24:23 +01:00
if(!gas)
{
displayLists[Math.max(3, (int)((float)scale*(stages-1)))].render();
}
else {
GL11.glColor4f(1F, 1F, 1F, scale);
displayLists[stages-1].render();
}
2013-10-03 01:10:20 +02:00
}
2013-12-03 16:54:50 +01:00
MekanismRenderer.glowOff();
2013-10-03 01:10:20 +02:00
pop();
}
}
private DisplayInteger[] getListAndRender(ForgeDirection side, Fluid fluid)
{
if(side == null || fluid == null || fluid.getIcon() == null)
{
return null;
}
if(cachedLiquids.containsKey(side) && cachedLiquids.get(side).containsKey(fluid))
{
return cachedLiquids.get(side).get(fluid);
}
Model3D toReturn = new Model3D();
toReturn.baseBlock = Block.waterStill;
toReturn.setTexture(fluid.getIcon());
toReturn.setSideRender(side, false);
toReturn.setSideRender(side.getOpposite(), false);
DisplayInteger[] displays = new DisplayInteger[stages];
if(cachedLiquids.containsKey(side))
{
cachedLiquids.get(side).put(fluid, displays);
}
else {
HashMap<Fluid, DisplayInteger[]> map = new HashMap<Fluid, DisplayInteger[]>();
map.put(fluid, displays);
cachedLiquids.put(side, map);
}
MekanismRenderer.colorFluid(fluid);
for(int i = 0; i < stages; i++)
{
displays[i] = DisplayInteger.createAndStart();
switch(side)
{
case UNKNOWN:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.25 + offset;
toReturn.minY = 0.25 + offset;
toReturn.minZ = 0.25 + offset;
2013-10-03 01:10:20 +02:00
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.75 - offset;
toReturn.maxY = 0.25 + offset + ((float)i / (float)stages)*height;
toReturn.maxZ = 0.75 - offset;
2013-10-03 01:10:20 +02:00
break;
}
case DOWN:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.5 - (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
toReturn.minY = 0.0;
2013-12-03 16:54:50 +01:00
toReturn.minZ = 0.5 - (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.5 + (((float)i / (float)stages)*height)/2;
toReturn.maxY = 0.25 + offset;
toReturn.maxZ = 0.5 + (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
break;
}
case UP:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.5 - (((float)i / (float)stages)*height)/2;
toReturn.minY = 0.25 - offset + ((float)i / (float)stages)*height;
toReturn.minZ = 0.5 - (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.5 + (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
toReturn.maxY = 1.0;
2013-12-03 16:54:50 +01:00
toReturn.maxZ = 0.5 + (((float)i / (float)stages)*height)/2;
2013-10-03 01:10:20 +02:00
break;
}
case NORTH:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.25 + offset;
toReturn.minY = 0.25 + offset;
2013-10-03 01:10:20 +02:00
toReturn.minZ = 0.0;
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.75 - offset;
toReturn.maxY = 0.25 + offset + ((float)i / (float)stages)*height;
toReturn.maxZ = 0.25 + offset;
2013-10-03 01:10:20 +02:00
break;
}
case SOUTH:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.25 + offset;
toReturn.minY = 0.25 + offset;
toReturn.minZ = 0.75 - offset;
2013-10-03 01:10:20 +02:00
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.75 - offset;
toReturn.maxY = 0.25 + offset + ((float)i / (float)stages)*height;
2013-10-03 01:10:20 +02:00
toReturn.maxZ = 1.0;
break;
}
case WEST:
{
toReturn.minX = 0.0;
2013-12-03 16:54:50 +01:00
toReturn.minY = 0.25 + offset;
toReturn.minZ = 0.25 + offset;
2013-10-03 01:10:20 +02:00
2013-12-03 16:54:50 +01:00
toReturn.maxX = 0.25 + offset;
toReturn.maxY = 0.25 + offset + ((float)i / (float)stages)*height;
toReturn.maxZ = 0.75 - offset;
2013-10-03 01:10:20 +02:00
break;
}
case EAST:
{
2013-12-03 16:54:50 +01:00
toReturn.minX = 0.75 - offset;
toReturn.minY = 0.25 + offset;
toReturn.minZ = 0.25 + offset;
2013-10-03 01:10:20 +02:00
toReturn.maxX = 1.0;
2013-12-03 16:54:50 +01:00
toReturn.maxY = 0.25 + offset + ((float)i / (float)stages)*height;
toReturn.maxZ = 0.75 - offset;
2013-10-03 01:10:20 +02:00
break;
}
}
MekanismRenderer.renderObject(toReturn);
DisplayInteger.endList();
}
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
return displays;
}
2013-12-03 22:23:08 +01:00
public void renderContents(PartPressurizedTube tube, Vector3 pos)
2013-10-03 01:10:20 +02:00
{
2013-12-03 22:23:08 +01:00
if(tube.getTransmitterNetwork().refGas == null || tube.getTransmitterNetwork().gasScale == 0)
{
return;
}
GL11.glPushMatrix();
CCRenderState.reset();
CCRenderState.useNormals(true);
CCRenderState.useModelColours(true);
CCRenderState.startDrawing(7);
GL11.glTranslated(pos.x, pos.y, pos.z);
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
{
renderGasSide(side, tube);
}
CCRenderState.draw();
GL11.glPopMatrix();
2013-10-03 01:10:20 +02:00
}
public void renderStatic(PartTransmitter<?, ?> transmitter)
{
TextureUtils.bindAtlas(0);
CCRenderState.reset();
CCRenderState.useModelColours(true);
CCRenderState.setBrightness(transmitter.world(), transmitter.x(), transmitter.y(), transmitter.z());
for(ForgeDirection side : ForgeDirection.VALID_DIRECTIONS)
2013-10-03 01:10:20 +02:00
{
renderSide(side, transmitter);
}
}
public void renderSide(ForgeDirection side, PartTransmitter<?, ?> transmitter)
{
boolean connected = PartTransmitter.connectionMapContainsSide(transmitter.getAllCurrentConnections(), side);
String name = side.name().toLowerCase();
name += connected ? "Out" : "In";
Icon renderIcon = connected ? sideTexture : getIconForPart(transmitter);
renderPart(renderIcon, models.get(name), transmitter.x(), transmitter.y(), transmitter.z());
}
public void renderEnergySide(ForgeDirection side, PartUniversalCable cable)
{
boolean connected = PartTransmitter.connectionMapContainsSide(cable.getAllCurrentConnections(), side);
String name = side.name().toLowerCase();
name += connected ? "Out" : "In";
2013-12-03 16:54:50 +01:00
renderTransparency(MekanismRenderer.energyIcon, cableContentsModels.get(name), new ColourRGBA(1.0, 1.0, 1.0, cable.getTransmitterNetwork().clientEnergyScale));
2013-10-03 01:10:20 +02:00
}
2013-12-03 22:23:08 +01:00
public void renderGasSide(ForgeDirection side, PartPressurizedTube tube)
{
boolean connected = PartTransmitter.connectionMapContainsSide(tube.getAllCurrentConnections(), side);
String name = side.name().toLowerCase();
name += connected ? "Out" : "In";
renderTransparency(tube.getTransmitterNetwork().refGas.getIcon(), cableContentsModels.get(name), new ColourRGBA(1.0, 1.0, 1.0, tube.getTransmitterNetwork().gasScale));
}
2013-10-03 01:10:20 +02:00
2013-12-03 22:23:08 +01:00
public void renderPart(Icon icon, CCModel cc, double x, double y, double z)
{
cc.render(0, cc.verts.length, new Translation(x, y, z), new IconTransformation(icon), null);
2013-10-03 01:10:20 +02:00
}
2013-12-03 22:23:08 +01:00
public void renderTransparency(Icon icon, CCModel cc, Colour colour)
{
cc.render(0, cc.verts.length, new Translation(0, 0, 0), new IconTransformation(icon), new ColourMultiplier(colour));
2013-10-03 01:10:20 +02:00
}
public Icon getIconForPart(PartTransmitter<?, ?> part)
{
Icon[] icons = typeMap.get(part.getTransmissionType());
return icons[part.isActive ? 1 : 0];
}
@Override
public void registerIcons(IconRegister register)
{
sideTexture = register.registerIcon("mekanism:models/TransmitterSide");
uniCableTextures[0] = register.registerIcon("mekanism:models/UniversalCable");
uniCableTextures[1] = uniCableTextures[0];
pressTubeTextures[0] = register.registerIcon("mekanism:models/PressurizedTube");
pressTubeTextures[1] = pressTubeTextures[0];
mechPipeTextures[0] = register.registerIcon("mekanism:models/MechanicalPipe");
mechPipeTextures[1] = register.registerIcon("mekanism:models/MechanicalPipeActive");
}
@Override
public int atlasIndex()
{
return 0;
}
}