118 lines
4.1 KiB
Java
118 lines
4.1 KiB
Java
package com.pahimar.ee3.client.model;
|
|
|
|
import net.minecraft.client.model.ModelBase;
|
|
import net.minecraft.client.renderer.Tessellator;
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
import org.lwjgl.opengl.GL11;
|
|
|
|
import com.obj.Face;
|
|
import com.obj.Group;
|
|
import com.obj.WavefrontObject;
|
|
import com.pahimar.ee3.lib.Models;
|
|
import com.pahimar.ee3.lib.Reference;
|
|
import com.pahimar.ee3.lib.Sprites;
|
|
import com.pahimar.ee3.tileentity.TileAludel;
|
|
|
|
import cpw.mods.fml.client.FMLClientHandler;
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
/**
|
|
* Equivalent-Exchange-3
|
|
*
|
|
* ModelAludel
|
|
*
|
|
* @author pahimar
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
*
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public class ModelAludel extends ModelBase {
|
|
|
|
private float scale;
|
|
|
|
private WavefrontObject modelAludelOBJ;
|
|
|
|
public ModelAludel() {
|
|
|
|
scale = 1F;
|
|
modelAludelOBJ = new WavefrontObject(this.getClass().getResource("/" + Models.ALUDEL).getFile());
|
|
}
|
|
|
|
public ModelAludel(float scale) {
|
|
|
|
this.scale = scale;
|
|
modelAludelOBJ = new WavefrontObject(this.getClass().getResource("/" + Models.ALUDEL).getFile());
|
|
}
|
|
|
|
public void render(Tessellator tessellator, float scale) {
|
|
|
|
if (modelAludelOBJ.getGroups().size() != 0) {
|
|
for (Group group : modelAludelOBJ.getGroups()) {
|
|
if (group.getFaces().size() != 0) {
|
|
for (Face face : group.getFaces()) {
|
|
tessellator.startDrawing(GL11.GL_TRIANGLES);
|
|
|
|
float sumU = 0F;
|
|
float sumV = 0F;
|
|
|
|
for (int i = 0; i < face.getTextures().length; ++i) {
|
|
sumU += face.getTextures()[i].getU();
|
|
sumV += face.getTextures()[i].getV();
|
|
}
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
float offsetU = Reference.MODEL_TEXTURE_OFFSET;
|
|
float offsetV = Reference.MODEL_TEXTURE_OFFSET;
|
|
if (face.getTextures()[i].getU() > sumU / face.getTextures().length) {
|
|
offsetU = -offsetU;
|
|
}
|
|
if (face.getTextures()[i].getV() > sumV / face.getTextures().length) {
|
|
offsetV = -offsetV;
|
|
}
|
|
tessellator.addVertexWithUV(face.getVertices()[i].getX() * scale, face.getVertices()[i].getY() * scale, face.getVertices()[i].getZ() * scale, face.getTextures()[i].getU() + offsetU, face.getTextures()[i].getV() + offsetV);
|
|
}
|
|
|
|
tessellator.draw();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public void render(TileAludel aludel, double x, double y, double z) {
|
|
|
|
GL11.glPushMatrix();
|
|
GL11.glDisable(GL11.GL_LIGHTING);
|
|
correctRotation(x, y, z, aludel.getOrientation());
|
|
FMLClientHandler.instance().getClient().renderEngine.func_98187_b(Sprites.MODEL_ALUDEL);
|
|
this.render(Tessellator.instance, scale);
|
|
GL11.glEnable(GL11.GL_LIGHTING);
|
|
GL11.glPopMatrix();
|
|
}
|
|
|
|
private void correctRotation(double x, double y, double z, ForgeDirection orientation) {
|
|
|
|
if (orientation == ForgeDirection.NORTH) {
|
|
GL11.glTranslated(x + 1, y, z);
|
|
GL11.glRotatef(180F, 0F, 1F, 0F);
|
|
GL11.glRotatef(-90F, 1F, 0F, 0F);
|
|
}
|
|
else if (orientation == ForgeDirection.EAST) {
|
|
GL11.glTranslated(x + 1, y, z + 1);
|
|
GL11.glRotatef(90F, 0F, 1F, 0F);
|
|
GL11.glRotatef(-90F, 1F, 0F, 0F);
|
|
}
|
|
else if (orientation == ForgeDirection.SOUTH) {
|
|
GL11.glTranslated(x, y, z + 1);
|
|
GL11.glRotatef(0F, 0F, 1F, 0F);
|
|
GL11.glRotatef(-90F, 1F, 0F, 0F);
|
|
}
|
|
else if (orientation == ForgeDirection.WEST) {
|
|
GL11.glTranslated(x, y, z);
|
|
GL11.glRotatef(-90F, 0F, 1F, 0F);
|
|
GL11.glRotatef(-90F, 1F, 0F, 0F);
|
|
}
|
|
}
|
|
}
|