minecraft-src/net/minecraft/client/model/AxolotlModel.java
2025-07-04 01:41:11 +03:00

282 lines
13 KiB
Java

package net.minecraft.client.model;
import com.google.common.collect.ImmutableList;
import java.util.Map;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.model.geom.ModelPart;
import net.minecraft.client.model.geom.PartPose;
import net.minecraft.client.model.geom.builders.CubeDeformation;
import net.minecraft.client.model.geom.builders.CubeListBuilder;
import net.minecraft.client.model.geom.builders.LayerDefinition;
import net.minecraft.client.model.geom.builders.MeshDefinition;
import net.minecraft.client.model.geom.builders.PartDefinition;
import net.minecraft.util.Mth;
import net.minecraft.world.entity.LerpingModel;
import net.minecraft.world.entity.animal.axolotl.Axolotl;
import org.joml.Vector3f;
@Environment(EnvType.CLIENT)
public class AxolotlModel<T extends Axolotl & LerpingModel> extends AgeableListModel<T> {
public static final float SWIMMING_LEG_XROT = 1.8849558F;
private final ModelPart tail;
private final ModelPart leftHindLeg;
private final ModelPart rightHindLeg;
private final ModelPart leftFrontLeg;
private final ModelPart rightFrontLeg;
private final ModelPart body;
private final ModelPart head;
private final ModelPart topGills;
private final ModelPart leftGills;
private final ModelPart rightGills;
public AxolotlModel(ModelPart root) {
super(true, 8.0F, 3.35F);
this.body = root.getChild("body");
this.head = this.body.getChild("head");
this.rightHindLeg = this.body.getChild("right_hind_leg");
this.leftHindLeg = this.body.getChild("left_hind_leg");
this.rightFrontLeg = this.body.getChild("right_front_leg");
this.leftFrontLeg = this.body.getChild("left_front_leg");
this.tail = this.body.getChild("tail");
this.topGills = this.head.getChild("top_gills");
this.leftGills = this.head.getChild("left_gills");
this.rightGills = this.head.getChild("right_gills");
}
public static LayerDefinition createBodyLayer() {
MeshDefinition meshDefinition = new MeshDefinition();
PartDefinition partDefinition = meshDefinition.getRoot();
PartDefinition partDefinition2 = partDefinition.addOrReplaceChild(
"body",
CubeListBuilder.create().texOffs(0, 11).addBox(-4.0F, -2.0F, -9.0F, 8.0F, 4.0F, 10.0F).texOffs(2, 17).addBox(0.0F, -3.0F, -8.0F, 0.0F, 5.0F, 9.0F),
PartPose.offset(0.0F, 20.0F, 5.0F)
);
CubeDeformation cubeDeformation = new CubeDeformation(0.001F);
PartDefinition partDefinition3 = partDefinition2.addOrReplaceChild(
"head", CubeListBuilder.create().texOffs(0, 1).addBox(-4.0F, -3.0F, -5.0F, 8.0F, 5.0F, 5.0F, cubeDeformation), PartPose.offset(0.0F, 0.0F, -9.0F)
);
CubeListBuilder cubeListBuilder = CubeListBuilder.create().texOffs(3, 37).addBox(-4.0F, -3.0F, 0.0F, 8.0F, 3.0F, 0.0F, cubeDeformation);
CubeListBuilder cubeListBuilder2 = CubeListBuilder.create().texOffs(0, 40).addBox(-3.0F, -5.0F, 0.0F, 3.0F, 7.0F, 0.0F, cubeDeformation);
CubeListBuilder cubeListBuilder3 = CubeListBuilder.create().texOffs(11, 40).addBox(0.0F, -5.0F, 0.0F, 3.0F, 7.0F, 0.0F, cubeDeformation);
partDefinition3.addOrReplaceChild("top_gills", cubeListBuilder, PartPose.offset(0.0F, -3.0F, -1.0F));
partDefinition3.addOrReplaceChild("left_gills", cubeListBuilder2, PartPose.offset(-4.0F, 0.0F, -1.0F));
partDefinition3.addOrReplaceChild("right_gills", cubeListBuilder3, PartPose.offset(4.0F, 0.0F, -1.0F));
CubeListBuilder cubeListBuilder4 = CubeListBuilder.create().texOffs(2, 13).addBox(-1.0F, 0.0F, 0.0F, 3.0F, 5.0F, 0.0F, cubeDeformation);
CubeListBuilder cubeListBuilder5 = CubeListBuilder.create().texOffs(2, 13).addBox(-2.0F, 0.0F, 0.0F, 3.0F, 5.0F, 0.0F, cubeDeformation);
partDefinition2.addOrReplaceChild("right_hind_leg", cubeListBuilder5, PartPose.offset(-3.5F, 1.0F, -1.0F));
partDefinition2.addOrReplaceChild("left_hind_leg", cubeListBuilder4, PartPose.offset(3.5F, 1.0F, -1.0F));
partDefinition2.addOrReplaceChild("right_front_leg", cubeListBuilder5, PartPose.offset(-3.5F, 1.0F, -8.0F));
partDefinition2.addOrReplaceChild("left_front_leg", cubeListBuilder4, PartPose.offset(3.5F, 1.0F, -8.0F));
partDefinition2.addOrReplaceChild(
"tail", CubeListBuilder.create().texOffs(2, 19).addBox(0.0F, -3.0F, 0.0F, 0.0F, 5.0F, 12.0F), PartPose.offset(0.0F, 0.0F, 1.0F)
);
return LayerDefinition.create(meshDefinition, 64, 64);
}
@Override
protected Iterable<ModelPart> headParts() {
return ImmutableList.<ModelPart>of();
}
@Override
protected Iterable<ModelPart> bodyParts() {
return ImmutableList.<ModelPart>of(this.body);
}
/**
* Sets this entity's model rotation angles
*/
public void setupAnim(T entity, float limbSwing, float limbSwingAmount, float ageInTicks, float netHeadYaw, float headPitch) {
this.setupInitialAnimationValues(entity, netHeadYaw, headPitch);
if (entity.isPlayingDead()) {
this.setupPlayDeadAnimation(netHeadYaw);
this.saveAnimationValues(entity);
} else {
boolean bl = limbSwingAmount > 1.0E-5F || entity.getXRot() != entity.xRotO || entity.getYRot() != entity.yRotO;
if (entity.isInWaterOrBubble()) {
if (bl) {
this.setupSwimmingAnimation(ageInTicks, headPitch);
} else {
this.setupWaterHoveringAnimation(ageInTicks);
}
this.saveAnimationValues(entity);
} else {
if (entity.onGround()) {
if (bl) {
this.setupGroundCrawlingAnimation(ageInTicks, netHeadYaw);
} else {
this.setupLayStillOnGroundAnimation(ageInTicks, netHeadYaw);
}
}
this.saveAnimationValues(entity);
}
}
}
private void saveAnimationValues(T axolotl) {
Map<String, Vector3f> map = axolotl.getModelRotationValues();
map.put("body", this.getRotationVector(this.body));
map.put("head", this.getRotationVector(this.head));
map.put("right_hind_leg", this.getRotationVector(this.rightHindLeg));
map.put("left_hind_leg", this.getRotationVector(this.leftHindLeg));
map.put("right_front_leg", this.getRotationVector(this.rightFrontLeg));
map.put("left_front_leg", this.getRotationVector(this.leftFrontLeg));
map.put("tail", this.getRotationVector(this.tail));
map.put("top_gills", this.getRotationVector(this.topGills));
map.put("left_gills", this.getRotationVector(this.leftGills));
map.put("right_gills", this.getRotationVector(this.rightGills));
}
private Vector3f getRotationVector(ModelPart part) {
return new Vector3f(part.xRot, part.yRot, part.zRot);
}
private void setRotationFromVector(ModelPart part, Vector3f rotation) {
part.setRotation(rotation.x(), rotation.y(), rotation.z());
}
private void setupInitialAnimationValues(T axolotl, float netHeadYaw, float headPitch) {
this.body.x = 0.0F;
this.head.y = 0.0F;
this.body.y = 20.0F;
Map<String, Vector3f> map = axolotl.getModelRotationValues();
if (map.isEmpty()) {
this.body.setRotation(headPitch * (float) (Math.PI / 180.0), netHeadYaw * (float) (Math.PI / 180.0), 0.0F);
this.head.setRotation(0.0F, 0.0F, 0.0F);
this.leftHindLeg.setRotation(0.0F, 0.0F, 0.0F);
this.rightHindLeg.setRotation(0.0F, 0.0F, 0.0F);
this.leftFrontLeg.setRotation(0.0F, 0.0F, 0.0F);
this.rightFrontLeg.setRotation(0.0F, 0.0F, 0.0F);
this.leftGills.setRotation(0.0F, 0.0F, 0.0F);
this.rightGills.setRotation(0.0F, 0.0F, 0.0F);
this.topGills.setRotation(0.0F, 0.0F, 0.0F);
this.tail.setRotation(0.0F, 0.0F, 0.0F);
} else {
this.setRotationFromVector(this.body, (Vector3f)map.get("body"));
this.setRotationFromVector(this.head, (Vector3f)map.get("head"));
this.setRotationFromVector(this.leftHindLeg, (Vector3f)map.get("left_hind_leg"));
this.setRotationFromVector(this.rightHindLeg, (Vector3f)map.get("right_hind_leg"));
this.setRotationFromVector(this.leftFrontLeg, (Vector3f)map.get("left_front_leg"));
this.setRotationFromVector(this.rightFrontLeg, (Vector3f)map.get("right_front_leg"));
this.setRotationFromVector(this.leftGills, (Vector3f)map.get("left_gills"));
this.setRotationFromVector(this.rightGills, (Vector3f)map.get("right_gills"));
this.setRotationFromVector(this.topGills, (Vector3f)map.get("top_gills"));
this.setRotationFromVector(this.tail, (Vector3f)map.get("tail"));
}
}
private float lerpTo(float start, float end) {
return this.lerpTo(0.05F, start, end);
}
private float lerpTo(float delta, float start, float end) {
return Mth.rotLerp(delta, start, end);
}
private void lerpPart(ModelPart part, float xDelta, float yDelta, float zDelta) {
part.setRotation(this.lerpTo(part.xRot, xDelta), this.lerpTo(part.yRot, yDelta), this.lerpTo(part.zRot, zDelta));
}
private void setupLayStillOnGroundAnimation(float ageInTicks, float netHeadYaw) {
float f = ageInTicks * 0.09F;
float g = Mth.sin(f);
float h = Mth.cos(f);
float i = g * g - 2.0F * g;
float j = h * h - 3.0F * g;
this.head.xRot = this.lerpTo(this.head.xRot, -0.09F * i);
this.head.yRot = this.lerpTo(this.head.yRot, 0.0F);
this.head.zRot = this.lerpTo(this.head.zRot, -0.2F);
this.tail.yRot = this.lerpTo(this.tail.yRot, -0.1F + 0.1F * i);
this.topGills.xRot = this.lerpTo(this.topGills.xRot, 0.6F + 0.05F * j);
this.leftGills.yRot = this.lerpTo(this.leftGills.yRot, -this.topGills.xRot);
this.rightGills.yRot = this.lerpTo(this.rightGills.yRot, -this.leftGills.yRot);
this.lerpPart(this.leftHindLeg, 1.1F, 1.0F, 0.0F);
this.lerpPart(this.leftFrontLeg, 0.8F, 2.3F, -0.5F);
this.applyMirrorLegRotations();
this.body.xRot = this.lerpTo(0.2F, this.body.xRot, 0.0F);
this.body.yRot = this.lerpTo(this.body.yRot, netHeadYaw * (float) (Math.PI / 180.0));
this.body.zRot = this.lerpTo(this.body.zRot, 0.0F);
}
private void setupGroundCrawlingAnimation(float ageInTicks, float netHeadYaw) {
float f = ageInTicks * 0.11F;
float g = Mth.cos(f);
float h = (g * g - 2.0F * g) / 5.0F;
float i = 0.7F * g;
this.head.xRot = this.lerpTo(this.head.xRot, 0.0F);
this.head.yRot = this.lerpTo(this.head.yRot, 0.09F * g);
this.head.zRot = this.lerpTo(this.head.zRot, 0.0F);
this.tail.yRot = this.lerpTo(this.tail.yRot, this.head.yRot);
this.topGills.xRot = this.lerpTo(this.topGills.xRot, 0.6F - 0.08F * (g * g + 2.0F * Mth.sin(f)));
this.leftGills.yRot = this.lerpTo(this.leftGills.yRot, -this.topGills.xRot);
this.rightGills.yRot = this.lerpTo(this.rightGills.yRot, -this.leftGills.yRot);
this.lerpPart(this.leftHindLeg, 0.9424779F, 1.5F - h, -0.1F);
this.lerpPart(this.leftFrontLeg, 1.0995574F, (float) (Math.PI / 2) - i, 0.0F);
this.lerpPart(this.rightHindLeg, this.leftHindLeg.xRot, -1.0F - h, 0.0F);
this.lerpPart(this.rightFrontLeg, this.leftFrontLeg.xRot, (float) (-Math.PI / 2) - i, 0.0F);
this.body.xRot = this.lerpTo(0.2F, this.body.xRot, 0.0F);
this.body.yRot = this.lerpTo(this.body.yRot, netHeadYaw * (float) (Math.PI / 180.0));
this.body.zRot = this.lerpTo(this.body.zRot, 0.0F);
}
private void setupWaterHoveringAnimation(float ageInTicks) {
float f = ageInTicks * 0.075F;
float g = Mth.cos(f);
float h = Mth.sin(f) * 0.15F;
this.body.xRot = this.lerpTo(this.body.xRot, -0.15F + 0.075F * g);
this.body.y -= h;
this.head.xRot = this.lerpTo(this.head.xRot, -this.body.xRot);
this.topGills.xRot = this.lerpTo(this.topGills.xRot, 0.2F * g);
this.leftGills.yRot = this.lerpTo(this.leftGills.yRot, -0.3F * g - 0.19F);
this.rightGills.yRot = this.lerpTo(this.rightGills.yRot, -this.leftGills.yRot);
this.lerpPart(this.leftHindLeg, (float) (Math.PI * 3.0 / 4.0) - g * 0.11F, 0.47123894F, 1.7278761F);
this.lerpPart(this.leftFrontLeg, (float) (Math.PI / 4) - g * 0.2F, 2.042035F, 0.0F);
this.applyMirrorLegRotations();
this.tail.yRot = this.lerpTo(this.tail.yRot, 0.5F * g);
this.head.yRot = this.lerpTo(this.head.yRot, 0.0F);
this.head.zRot = this.lerpTo(this.head.zRot, 0.0F);
}
private void setupSwimmingAnimation(float ageInTicks, float headPitch) {
float f = ageInTicks * 0.33F;
float g = Mth.sin(f);
float h = Mth.cos(f);
float i = 0.13F * g;
this.body.xRot = this.lerpTo(0.1F, this.body.xRot, headPitch * (float) (Math.PI / 180.0) + i);
this.head.xRot = -i * 1.8F;
this.body.y -= 0.45F * h;
this.topGills.xRot = this.lerpTo(this.topGills.xRot, -0.5F * g - 0.8F);
this.leftGills.yRot = this.lerpTo(this.leftGills.yRot, 0.3F * g + 0.9F);
this.rightGills.yRot = this.lerpTo(this.rightGills.yRot, -this.leftGills.yRot);
this.tail.yRot = this.lerpTo(this.tail.yRot, 0.3F * Mth.cos(f * 0.9F));
this.lerpPart(this.leftHindLeg, 1.8849558F, -0.4F * g, (float) (Math.PI / 2));
this.lerpPart(this.leftFrontLeg, 1.8849558F, -0.2F * h - 0.1F, (float) (Math.PI / 2));
this.applyMirrorLegRotations();
this.head.yRot = this.lerpTo(this.head.yRot, 0.0F);
this.head.zRot = this.lerpTo(this.head.zRot, 0.0F);
}
private void setupPlayDeadAnimation(float netHeadYaw) {
this.lerpPart(this.leftHindLeg, 1.4137167F, 1.0995574F, (float) (Math.PI / 4));
this.lerpPart(this.leftFrontLeg, (float) (Math.PI / 4), 2.042035F, 0.0F);
this.body.xRot = this.lerpTo(this.body.xRot, -0.15F);
this.body.zRot = this.lerpTo(this.body.zRot, 0.35F);
this.applyMirrorLegRotations();
this.body.yRot = this.lerpTo(this.body.yRot, netHeadYaw * (float) (Math.PI / 180.0));
this.head.xRot = this.lerpTo(this.head.xRot, 0.0F);
this.head.yRot = this.lerpTo(this.head.yRot, 0.0F);
this.head.zRot = this.lerpTo(this.head.zRot, 0.0F);
this.tail.yRot = this.lerpTo(this.tail.yRot, 0.0F);
this.lerpPart(this.topGills, 0.0F, 0.0F, 0.0F);
this.lerpPart(this.leftGills, 0.0F, 0.0F, 0.0F);
this.lerpPart(this.rightGills, 0.0F, 0.0F, 0.0F);
}
private void applyMirrorLegRotations() {
this.lerpPart(this.rightHindLeg, this.leftHindLeg.xRot, -this.leftHindLeg.yRot, -this.leftHindLeg.zRot);
this.lerpPart(this.rightFrontLeg, this.leftFrontLeg.xRot, -this.leftFrontLeg.yRot, -this.leftFrontLeg.zRot);
}
}