mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Improve disguise arm rendering
This commit is contained in:
parent
e69749300d
commit
1c32d71d46
1 changed files with 108 additions and 27 deletions
|
@ -1,5 +1,14 @@
|
|||
package com.minelittlepony.unicopia.client.render;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import com.google.common.base.MoreObjects;
|
||||
import com.minelittlepony.unicopia.ability.magic.Caster;
|
||||
import com.minelittlepony.unicopia.ability.magic.SpellPredicate;
|
||||
|
@ -8,6 +17,7 @@ import com.minelittlepony.unicopia.client.minelittlepony.MineLPDelegate;
|
|||
import com.minelittlepony.unicopia.entity.behaviour.Disguise;
|
||||
import com.minelittlepony.unicopia.entity.behaviour.EntityAppearance;
|
||||
import com.mojang.blaze3d.systems.RenderSystem;
|
||||
import com.mojang.datafixers.util.Pair;
|
||||
|
||||
import net.minecraft.client.MinecraftClient;
|
||||
import net.minecraft.client.model.ModelPart;
|
||||
|
@ -17,13 +27,20 @@ import net.minecraft.client.render.VertexConsumerProvider;
|
|||
import net.minecraft.client.render.entity.LivingEntityRenderer;
|
||||
import net.minecraft.client.render.entity.feature.FeatureRendererContext;
|
||||
import net.minecraft.client.render.entity.model.BipedEntityModel;
|
||||
import net.minecraft.client.render.entity.model.EntityModel;
|
||||
import net.minecraft.client.render.entity.model.EntityModelLayers;
|
||||
import net.minecraft.client.render.entity.model.EntityModelPartNames;
|
||||
import net.minecraft.client.render.entity.model.SinglePartEntityModel;
|
||||
import net.minecraft.client.util.math.MatrixStack;
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.EntityType;
|
||||
import net.minecraft.entity.LivingEntity;
|
||||
import net.minecraft.entity.mob.ZombieEntity;
|
||||
import net.minecraft.entity.passive.IronGolemEntity;
|
||||
import net.minecraft.util.Arm;
|
||||
import net.minecraft.util.Hand;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.Util;
|
||||
import net.minecraft.util.math.MathHelper;
|
||||
import net.minecraft.util.math.RotationAxis;
|
||||
|
||||
|
@ -31,6 +48,33 @@ public class DisguisedArmsFeatureRenderer<E extends LivingEntity> implements Acc
|
|||
|
||||
private final MinecraftClient client = MinecraftClient.getInstance();
|
||||
|
||||
private static final Map<EntityType<?>, Identifier> OVERLAY_TEXTURES = Map.of(
|
||||
EntityType.DROWNED, new Identifier("textures/entity/zombie/drowned_outer_layer.png"),
|
||||
EntityType.STRAY, new Identifier("textures/entity/skeleton/stray_overlay.png")
|
||||
);
|
||||
|
||||
private final Function<EntityType<?>, Set<Pair<ModelPart, ModelPart>>> overlayModelCache = Util.memoize(type -> {
|
||||
return EntityModelLayers.getLayers()
|
||||
.filter(layer -> layer.getId().equals(EntityType.getId(type)) && !"main".equals(layer.getName()))
|
||||
.map(MinecraftClient.getInstance().getEntityModelLoader()::getModelPart)
|
||||
.map(model -> {
|
||||
ModelPart arms = getPart(model, EntityModelPartNames.ARMS).orElse(null);
|
||||
ModelPart leftArm = getPart(model, EntityModelPartNames.LEFT_ARM)
|
||||
.or(() -> getPart(model, EntityModelPartNames.LEFT_FRONT_LEG))
|
||||
.orElse(arms);
|
||||
ModelPart rightArm = getPart(model, EntityModelPartNames.RIGHT_ARM)
|
||||
.or(() -> getPart(model, EntityModelPartNames.RIGHT_FRONT_LEG))
|
||||
.orElse(arms);
|
||||
return leftArm != null && rightArm != null ? Pair.of(leftArm, rightArm) : null;
|
||||
})
|
||||
.filter(Objects::nonNull)
|
||||
.collect(Collectors.toSet());
|
||||
});
|
||||
|
||||
private static Optional<ModelPart> getPart(ModelPart part, String childName) {
|
||||
return part.hasChild(childName) ? Optional.of(part.getChild(childName)) : Optional.empty();
|
||||
}
|
||||
|
||||
public DisguisedArmsFeatureRenderer(FeatureRendererContext<E, ? extends BipedEntityModel<E>> context) {
|
||||
|
||||
}
|
||||
|
@ -43,13 +87,11 @@ public class DisguisedArmsFeatureRenderer<E extends LivingEntity> implements Acc
|
|||
public boolean beforeRenderArms(ArmRenderer sender, float tickDelta, MatrixStack matrices, VertexConsumerProvider vertexConsumers, E entity, int light) {
|
||||
Entity appearance = getAppearance(entity);
|
||||
if (appearance instanceof LivingEntity l) {
|
||||
float swingProgress = entity.getHandSwingProgress(MinecraftClient.getInstance().getTickDelta());
|
||||
float swingProgress = entity.getHandSwingProgress(tickDelta);
|
||||
|
||||
Hand hand = MoreObjects.firstNonNull(entity.preferredHand, Hand.MAIN_HAND);
|
||||
|
||||
//renderArmHoldingItem(l, matrices, vertexConsumers, light, 0, swingProgress, Arm.RIGHT);
|
||||
|
||||
boolean bothHands = l instanceof ZombieEntity;
|
||||
boolean bothHands = l instanceof ZombieEntity || l instanceof IronGolemEntity;
|
||||
|
||||
if (bothHands || hand == Hand.MAIN_HAND) {
|
||||
if (entity.getMainHandStack().isEmpty()) {
|
||||
|
@ -78,45 +120,84 @@ public class DisguisedArmsFeatureRenderer<E extends LivingEntity> implements Acc
|
|||
.orElse(null);
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Nullable
|
||||
private ModelPart getArmModel(@Nullable EntityModel<?> model, boolean right) {
|
||||
|
||||
if (model instanceof BipedEntityModel bipedModel) {
|
||||
return right ? bipedModel.rightArm : bipedModel.leftArm;
|
||||
}
|
||||
if (model instanceof SinglePartEntityModel quad) {
|
||||
ModelPart arms = (ModelPart)quad.getChild(EntityModelPartNames.ARMS).orElse((ModelPart)null);
|
||||
return (ModelPart)quad.getChild(right ? EntityModelPartNames.RIGHT_ARM : EntityModelPartNames.LEFT_ARM)
|
||||
.or(() -> quad.getChild(right ? EntityModelPartNames.RIGHT_FRONT_LEG : EntityModelPartNames.LEFT_FRONT_LEG))
|
||||
.orElse(arms);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private void renderArmHoldingItem(LivingEntity entity, MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, float equipProgress, float swingProgress, Arm arm) {
|
||||
if (!(client.getEntityRenderDispatcher().getRenderer(entity) instanceof LivingEntityRenderer renderer)) {
|
||||
return;
|
||||
}
|
||||
if (!(renderer.getModel() instanceof BipedEntityModel bipedModel)) {
|
||||
|
||||
boolean right = arm != Arm.LEFT;
|
||||
EntityModel<Entity> model = renderer.getModel();
|
||||
@Nullable
|
||||
ModelPart part = getArmModel(model, right);
|
||||
|
||||
if (part == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
boolean bl = arm != Arm.LEFT;
|
||||
float f = bl ? 1.0f : -1.0f;
|
||||
float g = MathHelper.sqrt(swingProgress);
|
||||
float h = -0.3f * MathHelper.sin(g * (float)Math.PI);
|
||||
float i = 0.4f * MathHelper.sin(g * ((float)Math.PI * 2));
|
||||
float j = -0.4f * MathHelper.sin(swingProgress * (float)Math.PI);
|
||||
matrices.translate(f * (h + 0.64000005f), i + -0.6f + equipProgress * -0.6f, j + -0.71999997f);
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(f * 45.0f));
|
||||
float k = MathHelper.sin(swingProgress * swingProgress * (float)Math.PI);
|
||||
float l = MathHelper.sin(g * (float)Math.PI);
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(f * l * 70.0f));
|
||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(f * k * -20.0f));
|
||||
model.animateModel(entity, 0, 0, 0);
|
||||
model.setAngles(entity, 0, 0, 0, 0, client.getTickDelta());
|
||||
|
||||
Identifier texture = renderer.getTexture(entity);
|
||||
RenderSystem.setShaderTexture(0, texture);
|
||||
matrices.translate(f * -1.0f, 3.6f, 3.5f);
|
||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(f * 120.0f));
|
||||
matrices.multiply(RotationAxis.POSITIVE_X.rotationDegrees(200.0f));
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(f * -135.0f));
|
||||
matrices.translate(f * 5.6f, 0.0f, 0.0f);
|
||||
float signum = right ? 1 : -1;
|
||||
float srtSwingProgress = MathHelper.sqrt(swingProgress);
|
||||
float xOffset = -0.3F * MathHelper.sin(srtSwingProgress * MathHelper.PI);
|
||||
float yOffset = 0.4F * MathHelper.sin(srtSwingProgress * (MathHelper.TAU));
|
||||
float swingAmount = -0.4F * MathHelper.sin(swingProgress * MathHelper.PI);
|
||||
matrices.translate(signum * (xOffset + 0.64000005F), yOffset + -0.6F + equipProgress * -0.6F, swingAmount + -0.71999997f);
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(signum * 45));
|
||||
float zRot = MathHelper.sin(swingProgress * swingProgress * MathHelper.PI);
|
||||
float yRot = MathHelper.sin(srtSwingProgress * MathHelper.PI);
|
||||
|
||||
bipedModel.animateModel(entity, 0, 0, 0);
|
||||
bipedModel.setAngles(entity, 0, 0, 0, 0, 0);
|
||||
ModelPart part = bl ? bipedModel.rightArm : bipedModel.leftArm;
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(signum * yRot * 70));
|
||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(signum * zRot * -20));
|
||||
matrices.translate(signum * -1, 3.6F, 3.5F);
|
||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(signum * 120));
|
||||
matrices.multiply(RotationAxis.POSITIVE_X.rotationDegrees(200));
|
||||
matrices.multiply(RotationAxis.POSITIVE_Y.rotationDegrees(signum * -135));
|
||||
matrices.translate(signum * 5.6F, 0, 0);
|
||||
|
||||
if (entity instanceof IronGolemEntity golem) {
|
||||
int attackTicks = golem.getAttackTicksLeft();
|
||||
if (attackTicks > 0) {
|
||||
matrices.multiply(RotationAxis.POSITIVE_Z.rotationDegrees(-signum * part.pitch * MathHelper.DEGREES_PER_RADIAN - 90 * signum));
|
||||
}
|
||||
}
|
||||
part.pitch = 0;
|
||||
|
||||
if (MineLPDelegate.getInstance().getRace(entity).isEquine()) {
|
||||
matrices.translate(0, -part.pivotY / 16F, 0);
|
||||
}
|
||||
|
||||
Identifier texture = renderer.getTexture(entity);
|
||||
RenderSystem.setShaderTexture(0, texture);
|
||||
part.render(matrices, vertexConsumers.getBuffer(RenderLayer.getEntityTranslucent(texture)), light, OverlayTexture.DEFAULT_UV);
|
||||
|
||||
Identifier overlayTexture = OVERLAY_TEXTURES.get(entity.getType());
|
||||
if (overlayTexture != null) {
|
||||
overlayModelCache.apply(entity.getType()).forEach(arms -> {
|
||||
ModelPart armPart = right ? arms.getSecond() : arms.getFirst();
|
||||
armPart.copyTransform(part);
|
||||
|
||||
RenderSystem.setShaderTexture(0, overlayTexture);
|
||||
part.render(matrices, vertexConsumers.getBuffer(RenderLayer.getEntityTranslucent(overlayTexture)), light, OverlayTexture.DEFAULT_UV);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue