mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-28 14:27:44 +01:00
78 lines
2.8 KiB
Java
78 lines
2.8 KiB
Java
package com.minelittlepony.model.components;
|
|
|
|
import static com.minelittlepony.model.PonyModelConstants.*;
|
|
|
|
import com.minelittlepony.model.AbstractPonyModel;
|
|
import com.minelittlepony.model.capabilities.IModelPegasus;
|
|
import com.minelittlepony.pony.data.PonyWearable;
|
|
import com.minelittlepony.render.PonyRenderer;
|
|
import net.minecraft.client.renderer.GlStateManager;
|
|
|
|
public class ModelWing {
|
|
|
|
private final IModelPegasus pegasus;
|
|
|
|
private final PonyRenderer extended;
|
|
private final PonyRenderer folded;
|
|
|
|
public <T extends AbstractPonyModel & IModelPegasus> ModelWing(T pegasus, boolean right, boolean legacy, float y, float scale, int texX, int texY) {
|
|
this.pegasus = pegasus;
|
|
|
|
folded = new PonyRenderer(pegasus, 56, texY).mirror(legacy);
|
|
extended = new PonyRenderer(pegasus, texX, texY + 3);
|
|
|
|
addClosedWing(right, y, scale);
|
|
addFeathers(right, legacy, y, scale);
|
|
}
|
|
|
|
private void addClosedWing(boolean right, float y, float scale) {
|
|
float x = right ? -6 : 4;
|
|
|
|
folded.around(HEAD_RP_X, WING_FOLDED_RP_Y + y, WING_FOLDED_RP_Z)
|
|
.box(x, 5, 2, 2, 6, 2, scale)
|
|
.box(x, 5, 4, 2, 8, 2, scale)
|
|
.box(x, 5, 6, 2, 6, 2, scale)
|
|
.rotateAngleX = ROTATE_90;
|
|
}
|
|
|
|
private void addFeathers(boolean right, boolean l, float rotationPointY, float scale) {
|
|
float r = right ? -1 : 1;
|
|
|
|
extended.around(r * EXT_WING_RP_X, EXT_WING_RP_Y + rotationPointY, EXT_WING_RP_Z)
|
|
.rotateAngleY = r * 3;
|
|
addFeather(0, l, 6, 0, 8, scale + 0.1F);
|
|
addFeather(1, l, -1, -0.3F, 8, scale + 0.1F) .rotateAngleX = -0.85F;
|
|
addFeather(2, l, 1.8F, 1.3F, 8, scale - 0.1F) .rotateAngleX = -0.75F;
|
|
addFeather(3, l, 5, 2, 8, scale) .rotateAngleX = -0.5F;
|
|
addFeather(4, l, 0, -0.2F, 6, scale + 0.3F);
|
|
addFeather(5, l, 0, 0, 3, scale + 0.19F).rotateAngleX = -0.85F;
|
|
}
|
|
|
|
private PonyRenderer addFeather(int i, boolean l, float y, float z, int h, float scale) {
|
|
return extended.child(i).around(0, 0, 0).mirror(l).box(-0.5F, y, z, 1, h, 2, scale);
|
|
}
|
|
|
|
public void rotateWalking(float swing) {
|
|
folded.rotateAngleY = swing * 0.2F;
|
|
}
|
|
|
|
public void rotateFlying(float angle) {
|
|
extended.rotateAngleZ = angle;
|
|
}
|
|
|
|
public void render(float scale) {
|
|
if (pegasus.wingsAreOpen()) {
|
|
extended.render(scale);
|
|
} else {
|
|
boolean bags = pegasus.isWearing(PonyWearable.SADDLE_BAGS);
|
|
if (bags) {
|
|
GlStateManager.pushMatrix();
|
|
GlStateManager.translate(0, 0, 0.198F);
|
|
}
|
|
folded.render(scale);
|
|
if (bags) {
|
|
GlStateManager.popMatrix();
|
|
}
|
|
}
|
|
}
|
|
}
|