Spaces:
Build error
Build error
File size: 10,545 Bytes
d46f4a3 |
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
package net.minecraft.client;
import java.util.Arrays;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.tags.FluidTags;
import net.minecraft.util.Mth;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.entity.vehicle.Minecart;
import net.minecraft.world.entity.vehicle.NewMinecartBehavior;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.ClipContext;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.material.FluidState;
import net.minecraft.world.level.material.FogType;
import net.minecraft.world.phys.HitResult;
import net.minecraft.world.phys.Vec3;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import org.joml.Quaternionf;
import org.joml.Vector3f;
@OnlyIn(Dist.CLIENT)
public class Camera {
private static final float DEFAULT_CAMERA_DISTANCE = 4.0F;
private static final Vector3f FORWARDS = new Vector3f(0.0F, 0.0F, -1.0F);
private static final Vector3f UP = new Vector3f(0.0F, 1.0F, 0.0F);
private static final Vector3f LEFT = new Vector3f(-1.0F, 0.0F, 0.0F);
private boolean initialized;
private BlockGetter level;
private Entity entity;
private Vec3 position = Vec3.ZERO;
private final BlockPos.MutableBlockPos blockPosition = new BlockPos.MutableBlockPos();
private final Vector3f forwards = new Vector3f(FORWARDS);
private final Vector3f up = new Vector3f(UP);
private final Vector3f left = new Vector3f(LEFT);
private float xRot;
private float yRot;
private final Quaternionf rotation = new Quaternionf();
private boolean detached;
private float eyeHeight;
private float eyeHeightOld;
private float partialTickTime;
public static final float FOG_DISTANCE_SCALE = 0.083333336F;
public void setup(BlockGetter p_90576_, Entity p_90577_, boolean p_90578_, boolean p_90579_, float p_90580_) {
this.initialized = true;
this.level = p_90576_;
this.entity = p_90577_;
this.detached = p_90578_;
this.partialTickTime = p_90580_;
if (p_90577_.isPassenger()
&& p_90577_.getVehicle() instanceof Minecart minecart
&& minecart.getBehavior() instanceof NewMinecartBehavior newminecartbehavior
&& newminecartbehavior.cartHasPosRotLerp()) {
Vec3 vec3 = minecart.getPassengerRidingPosition(p_90577_)
.subtract(minecart.position())
.subtract(p_90577_.getVehicleAttachmentPoint(minecart))
.add(new Vec3(0.0, (double)Mth.lerp(p_90580_, this.eyeHeightOld, this.eyeHeight), 0.0));
this.setRotation(p_90577_.getViewYRot(p_90580_), p_90577_.getViewXRot(p_90580_));
this.setPosition(newminecartbehavior.getCartLerpPosition(p_90580_).add(vec3));
} else {
this.setRotation(p_90577_.getViewYRot(p_90580_), p_90577_.getViewXRot(p_90580_));
this.setPosition(
Mth.lerp((double)p_90580_, p_90577_.xo, p_90577_.getX()),
Mth.lerp((double)p_90580_, p_90577_.yo, p_90577_.getY()) + (double)Mth.lerp(p_90580_, this.eyeHeightOld, this.eyeHeight),
Mth.lerp((double)p_90580_, p_90577_.zo, p_90577_.getZ())
);
}
if (p_90578_) {
if (p_90579_) {
this.setRotation(this.yRot + 180.0F, -this.xRot);
}
float f = p_90577_ instanceof LivingEntity livingentity ? livingentity.getScale() : 1.0F;
this.move(-this.getMaxZoom(4.0F * f), 0.0F, 0.0F);
} else if (p_90577_ instanceof LivingEntity && ((LivingEntity)p_90577_).isSleeping()) {
Direction direction = ((LivingEntity)p_90577_).getBedOrientation();
this.setRotation(direction != null ? direction.toYRot() - 180.0F : 0.0F, 0.0F);
this.move(0.0F, 0.3F, 0.0F);
}
}
public void tick() {
if (this.entity != null) {
this.eyeHeightOld = this.eyeHeight;
this.eyeHeight = this.eyeHeight + (this.entity.getEyeHeight() - this.eyeHeight) * 0.5F;
}
}
private float getMaxZoom(float p_345111_) {
float f = 0.1F;
for (int i = 0; i < 8; i++) {
float f1 = (float)((i & 1) * 2 - 1);
float f2 = (float)((i >> 1 & 1) * 2 - 1);
float f3 = (float)((i >> 2 & 1) * 2 - 1);
Vec3 vec3 = this.position.add((double)(f1 * 0.1F), (double)(f2 * 0.1F), (double)(f3 * 0.1F));
Vec3 vec31 = vec3.add(new Vec3(this.forwards).scale((double)(-p_345111_)));
HitResult hitresult = this.level.clip(new ClipContext(vec3, vec31, ClipContext.Block.VISUAL, ClipContext.Fluid.NONE, this.entity));
if (hitresult.getType() != HitResult.Type.MISS) {
float f4 = (float)hitresult.getLocation().distanceToSqr(this.position);
if (f4 < Mth.square(p_345111_)) {
p_345111_ = Mth.sqrt(f4);
}
}
}
return p_345111_;
}
protected void move(float p_343871_, float p_343008_, float p_343953_) {
Vector3f vector3f = new Vector3f(p_343953_, p_343008_, -p_343871_).rotate(this.rotation);
this.setPosition(
new Vec3(this.position.x + (double)vector3f.x, this.position.y + (double)vector3f.y, this.position.z + (double)vector3f.z)
);
}
protected void setRotation(float p_90573_, float p_90574_) {
this.xRot = p_90574_;
this.yRot = p_90573_;
this.rotation.rotationYXZ((float) Math.PI - p_90573_ * (float) (Math.PI / 180.0), -p_90574_ * (float) (Math.PI / 180.0), 0.0F);
FORWARDS.rotate(this.rotation, this.forwards);
UP.rotate(this.rotation, this.up);
LEFT.rotate(this.rotation, this.left);
}
protected void setPosition(double p_90585_, double p_90586_, double p_90587_) {
this.setPosition(new Vec3(p_90585_, p_90586_, p_90587_));
}
protected void setPosition(Vec3 p_90582_) {
this.position = p_90582_;
this.blockPosition.set(p_90582_.x, p_90582_.y, p_90582_.z);
}
public Vec3 getPosition() {
return this.position;
}
public BlockPos getBlockPosition() {
return this.blockPosition;
}
public float getXRot() {
return this.xRot;
}
public float getYRot() {
return this.yRot;
}
public Quaternionf rotation() {
return this.rotation;
}
public Entity getEntity() {
return this.entity;
}
public boolean isInitialized() {
return this.initialized;
}
public boolean isDetached() {
return this.detached;
}
public Camera.NearPlane getNearPlane() {
Minecraft minecraft = Minecraft.getInstance();
double d0 = (double)minecraft.getWindow().getWidth() / (double)minecraft.getWindow().getHeight();
double d1 = Math.tan((double)((float)minecraft.options.fov().get().intValue() * (float) (Math.PI / 180.0)) / 2.0) * 0.05F;
double d2 = d1 * d0;
Vec3 vec3 = new Vec3(this.forwards).scale(0.05F);
Vec3 vec31 = new Vec3(this.left).scale(d2);
Vec3 vec32 = new Vec3(this.up).scale(d1);
return new Camera.NearPlane(vec3, vec31, vec32);
}
public FogType getFluidInCamera() {
if (!this.initialized) {
return FogType.NONE;
} else {
FluidState fluidstate = this.level.getFluidState(this.blockPosition);
if (fluidstate.is(FluidTags.WATER)
&& this.position.y < (double)((float)this.blockPosition.getY() + fluidstate.getHeight(this.level, this.blockPosition))) {
return FogType.WATER;
} else {
Camera.NearPlane camera$nearplane = this.getNearPlane();
for (Vec3 vec3 : Arrays.asList(
camera$nearplane.forward,
camera$nearplane.getTopLeft(),
camera$nearplane.getTopRight(),
camera$nearplane.getBottomLeft(),
camera$nearplane.getBottomRight()
)) {
Vec3 vec31 = this.position.add(vec3);
BlockPos blockpos = BlockPos.containing(vec31);
FluidState fluidstate1 = this.level.getFluidState(blockpos);
if (fluidstate1.is(FluidTags.LAVA)) {
if (vec31.y <= (double)(fluidstate1.getHeight(this.level, blockpos) + (float)blockpos.getY())) {
return FogType.LAVA;
}
} else {
BlockState blockstate = this.level.getBlockState(blockpos);
if (blockstate.is(Blocks.POWDER_SNOW)) {
return FogType.POWDER_SNOW;
}
}
}
return FogType.NONE;
}
}
}
public final Vector3f getLookVector() {
return this.forwards;
}
public final Vector3f getUpVector() {
return this.up;
}
public final Vector3f getLeftVector() {
return this.left;
}
public void reset() {
this.level = null;
this.entity = null;
this.initialized = false;
}
public float getPartialTickTime() {
return this.partialTickTime;
}
@OnlyIn(Dist.CLIENT)
public static class NearPlane {
final Vec3 forward;
private final Vec3 left;
private final Vec3 up;
NearPlane(Vec3 p_167691_, Vec3 p_167692_, Vec3 p_167693_) {
this.forward = p_167691_;
this.left = p_167692_;
this.up = p_167693_;
}
public Vec3 getTopLeft() {
return this.forward.add(this.up).add(this.left);
}
public Vec3 getTopRight() {
return this.forward.add(this.up).subtract(this.left);
}
public Vec3 getBottomLeft() {
return this.forward.subtract(this.up).add(this.left);
}
public Vec3 getBottomRight() {
return this.forward.subtract(this.up).subtract(this.left);
}
public Vec3 getPointOnPlane(float p_167696_, float p_167697_) {
return this.forward.add(this.up.scale((double)p_167697_)).subtract(this.left.scale((double)p_167696_));
}
}
} |