mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-25 05:00:55 +01:00
221 lines
7.1 KiB
Java
221 lines
7.1 KiB
Java
package com.minelittlepony.client.pony;
|
|
|
|
import com.google.common.base.MoreObjects;
|
|
import com.minelittlepony.client.PonyRenderManager;
|
|
import com.minelittlepony.client.render.IPonyRender;
|
|
import com.minelittlepony.client.transform.PonyTransformation;
|
|
import com.minelittlepony.pony.IPony;
|
|
import com.minelittlepony.pony.IPonyData;
|
|
import com.minelittlepony.pony.meta.Race;
|
|
import com.minelittlepony.pony.meta.Size;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.block.Material;
|
|
import net.minecraft.block.StairsBlock;
|
|
import net.minecraft.client.MinecraftClient;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EquipmentSlot;
|
|
import net.minecraft.entity.LivingEntity;
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.item.ArmorItem;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.Identifier;
|
|
import net.minecraft.util.math.Box;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.util.math.MathHelper;
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
import javax.annotation.concurrent.Immutable;
|
|
|
|
@Immutable
|
|
public class Pony implements IPony {
|
|
|
|
private final Identifier texture;
|
|
private final IPonyData metadata;
|
|
|
|
private boolean initialized = false;
|
|
|
|
Pony(Identifier resource, IPonyData data) {
|
|
texture = resource;
|
|
metadata = data;
|
|
}
|
|
|
|
Pony(Identifier resource) {
|
|
this(resource, PonyData.parse(resource));
|
|
}
|
|
|
|
@Override
|
|
public void updateForEntity(Entity entity) {
|
|
if (!initialized) {
|
|
initialized = true;
|
|
entity.calculateDimensions();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean isPerformingRainboom(LivingEntity entity) {
|
|
Vec3d motion = entity.getVelocity();
|
|
double zMotion = Math.sqrt(motion.x * motion.x + motion.z * motion.z);
|
|
|
|
return (isFlying(entity) && canFly()) || entity.isFallFlying() & zMotion > 0.4F;
|
|
}
|
|
|
|
@Override
|
|
public boolean isCrouching(LivingEntity entity) {
|
|
|
|
boolean isSneak = entity.isInSneakingPose();
|
|
boolean isFlying = isFlying(entity);
|
|
boolean isSwimming = isSwimming(entity);
|
|
|
|
return !isPerformingRainboom(entity) && !isSwimming && isSneak && !isFlying;
|
|
}
|
|
|
|
@Override
|
|
public boolean isFlying(LivingEntity entity) {
|
|
return !(isOnGround(entity)
|
|
|| entity.hasVehicle()
|
|
|| (entity.isClimbing() && !(entity instanceof PlayerEntity && ((PlayerEntity)entity).abilities.allowFlying))
|
|
|| entity.isInWater()
|
|
|| entity.isSleeping());
|
|
}
|
|
|
|
/**
|
|
* Checks if the entity is on the ground, or close enough to be "effectively" grounded.
|
|
* this is to keep Pegasus wings from flapping in odd situations (Hypixel).
|
|
*/
|
|
private boolean isOnGround(LivingEntity entity) {
|
|
if (entity.onGround) {
|
|
return true;
|
|
}
|
|
|
|
BlockState below = entity.getEntityWorld()
|
|
.getBlockState(entity.getBlockPos().down(1));
|
|
|
|
// Check for stairs so we can keep Pegasi from flailing their wings as they descend
|
|
double offsetAmount = below.getBlock() instanceof StairsBlock ? 1 : 0.05;
|
|
|
|
Vec3d pos = entity.getPos();
|
|
BlockPos blockpos = new BlockPos(
|
|
Math.floor(pos.x),
|
|
Math.floor(pos.y - offsetAmount),
|
|
Math.floor(pos.z));
|
|
|
|
return !entity.getEntityWorld().isAir(blockpos);
|
|
}
|
|
|
|
@Override
|
|
public boolean isSwimming(LivingEntity entity) {
|
|
return entity.isSwimming() || entity.isInSwimmingPose();
|
|
}
|
|
|
|
@Override
|
|
public boolean isPartiallySubmerged(LivingEntity entity) {
|
|
return entity.isInWater()
|
|
|| entity.getEntityWorld().getBlockState(entity.getBlockPos()).getMaterial() == Material.WATER;
|
|
}
|
|
|
|
@Override
|
|
public boolean isFullySubmerged(LivingEntity entity) {
|
|
return entity.isInWater()
|
|
&& entity.getEntityWorld().getBlockState(new BlockPos(getVisualEyePosition(entity))).getMaterial() == Material.WATER;
|
|
}
|
|
|
|
protected Vec3d getVisualEyePosition(LivingEntity entity) {
|
|
Size size = entity.isBaby() ? Size.FOAL : metadata.getSize();
|
|
|
|
return new Vec3d(entity.getX(), entity.getY() + (double) entity.getEyeHeight(entity.getPose()) * size.getScaleFactor(), entity.getZ());
|
|
}
|
|
|
|
@Override
|
|
public boolean isWearingHeadgear(LivingEntity entity) {
|
|
ItemStack stack = entity.getEquippedStack(EquipmentSlot.HEAD);
|
|
|
|
if (stack.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
Item item = stack.getItem();
|
|
|
|
return !(item instanceof ArmorItem) || ((ArmorItem) item).getSlotType() != EquipmentSlot.HEAD;
|
|
}
|
|
|
|
@Override
|
|
public Race getRace(boolean ignorePony) {
|
|
return metadata.getRace().getEffectiveRace(ignorePony);
|
|
}
|
|
|
|
@Override
|
|
public Identifier getTexture() {
|
|
return texture;
|
|
}
|
|
|
|
@Override
|
|
public IPonyData getMetadata() {
|
|
return metadata;
|
|
}
|
|
|
|
@Override
|
|
public boolean isRidingInteractive(LivingEntity entity) {
|
|
if (entity.hasVehicle() && entity.getVehicle() instanceof LivingEntity) {
|
|
return PonyRenderManager.getInstance().getPonyRenderer((LivingEntity) entity.getVehicle()) != null;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public IPony getMountedPony(LivingEntity entity) {
|
|
if (entity.hasVehicle() && entity.getVehicle() instanceof LivingEntity) {
|
|
LivingEntity mount = (LivingEntity) entity.getVehicle();
|
|
|
|
IPonyRender<LivingEntity, ?> render = PonyRenderManager.getInstance().getPonyRenderer(mount);
|
|
|
|
return render == null ? null : render.getEntityPony(mount);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Vec3d getAbsoluteRidingOffset(LivingEntity entity) {
|
|
IPony ridingPony = getMountedPony(entity);
|
|
|
|
if (ridingPony != null) {
|
|
LivingEntity ridee = (LivingEntity)entity.getVehicle();
|
|
|
|
Vec3d offset = PonyTransformation.forSize(ridingPony.getMetadata().getSize()).getRiderOffset();
|
|
float scale = ridingPony.getMetadata().getSize().getScaleFactor();
|
|
|
|
return ridingPony.getAbsoluteRidingOffset(ridee)
|
|
.add(0, offset.y - ridee.getHeight() * 1/scale, 0);
|
|
}
|
|
|
|
float delta = MinecraftClient.getInstance().getTickDelta();
|
|
|
|
return new Vec3d(
|
|
MathHelper.lerp(delta, entity.prevRenderX, entity.getX()),
|
|
MathHelper.lerp(delta, entity.prevRenderY, entity.getY()),
|
|
MathHelper.lerp(delta, entity.prevRenderZ, entity.getZ())
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public Box getComputedBoundingBox(LivingEntity entity) {
|
|
float scale = getMetadata().getSize().getScaleFactor() + 0.1F;
|
|
|
|
Vec3d pos = getAbsoluteRidingOffset(entity);
|
|
|
|
float width = entity.getWidth() * scale;
|
|
|
|
return new Box(
|
|
- width, (entity.getHeight() * scale), -width,
|
|
width, 0, width).offset(pos);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return MoreObjects.toStringHelper(this)
|
|
.add("texture", texture)
|
|
.add("metadata", metadata)
|
|
.toString();
|
|
}
|
|
}
|