1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
package tectech.rendering.EOH;
import static tectech.rendering.EOH.EOHRenderingUtils.renderBlockInWorld;
import static tectech.rendering.EOH.EOHRenderingUtils.renderOuterSpaceShell;
import static tectech.rendering.EOH.EOHRenderingUtils.renderStar;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.client.IItemRenderer;
import net.minecraftforge.client.model.AdvancedModelLoader;
import net.minecraftforge.client.model.IModelCustom;
import org.lwjgl.opengl.GL11;
import tectech.Reference;
import tectech.thing.block.TileEntityEyeOfHarmony;
public class EOHTileEntitySR extends TileEntitySpecialRenderer {
public static final ResourceLocation STAR_LAYER_0 = new ResourceLocation(Reference.MODID, "models/StarLayer0.png");
public static final ResourceLocation STAR_LAYER_1 = new ResourceLocation(Reference.MODID, "models/StarLayer1.png");
public static final ResourceLocation STAR_LAYER_2 = new ResourceLocation(Reference.MODID, "models/StarLayer2.png");
public static IModelCustom starModel;
public static IModelCustom spaceModel;
public EOHTileEntitySR() {
starModel = AdvancedModelLoader.loadModel(new ResourceLocation(Reference.MODID, "models/Star.obj"));
spaceModel = AdvancedModelLoader.loadModel(new ResourceLocation(Reference.MODID, "models/Space.obj"));
}
@Override
public void renderTileEntityAt(TileEntity tile, double x, double y, double z, float timeSinceLastTick) {
if (!(tile instanceof TileEntityEyeOfHarmony EOHRenderTile)) return;
GL11.glPushMatrix();
// Required to centre the render to the middle of the block.
GL11.glTranslated(x + 0.5, y + 0.5, z + 0.5);
GL11.glPushAttrib(GL11.GL_ALL_ATTRIB_BITS);
GL11.glDisable(GL11.GL_LIGHTING);
GL11.glDisable(GL11.GL_BLEND);
// Space shell.
renderOuterSpaceShell();
// Render the planets.
renderOrbitObjects(EOHRenderTile);
// Render the star itself.
renderStar(IItemRenderer.ItemRenderType.INVENTORY, 1);
GL11.glPopAttrib();
GL11.glPopMatrix();
}
private void renderOrbitObjects(final TileEntityEyeOfHarmony EOHRenderTile) {
if (EOHRenderTile.getOrbitingObjects() != null) {
if (EOHRenderTile.getOrbitingObjects()
.size() == 0) {
EOHRenderTile.generateImportantInfo();
}
for (TileEntityEyeOfHarmony.OrbitingObject t : EOHRenderTile.getOrbitingObjects()) {
renderOrbit(EOHRenderTile, t);
}
}
}
void renderOrbit(final TileEntityEyeOfHarmony EOHRenderTile,
final TileEntityEyeOfHarmony.OrbitingObject orbitingObject) {
// Render orbiting body.
GL11.glPushMatrix();
GL11.glRotatef(orbitingObject.zAngle, 0, 0, 1);
GL11.glRotatef(orbitingObject.xAngle, 1, 0, 0);
GL11.glRotatef((orbitingObject.rotationSpeed * 0.1f * EOHRenderTile.angle) % 360.0f, 0F, 1F, 0F);
GL11.glTranslated(-0.2 - orbitingObject.distance - STAR_RESCALE * EOHRenderTile.getSize(), 0, 0);
GL11.glRotatef((orbitingObject.orbitSpeed * 0.1f * EOHRenderTile.angle) % 360.0f, 0F, 1F, 0F);
this.bindTexture(TextureMap.locationBlocksTexture);
renderBlockInWorld(orbitingObject.block, 0, orbitingObject.scale);
GL11.glPopMatrix();
}
private static final float STAR_RESCALE = 0.2f;
}
|