Spaces:
Build error
Build error
File size: 8,115 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 |
package net.minecraft.world.entity;
import com.mojang.datafixers.util.Pair;
import com.mojang.logging.LogUtils;
import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;
import com.mojang.serialization.codecs.RecordCodecBuilder.Instance;
import java.util.UUID;
import javax.annotation.Nullable;
import net.minecraft.Util;
import net.minecraft.advancements.CriteriaTriggers;
import net.minecraft.core.UUIDUtil;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.nbt.NbtOps;
import net.minecraft.nbt.Tag;
import net.minecraft.network.syncher.EntityDataAccessor;
import net.minecraft.network.syncher.EntityDataSerializers;
import net.minecraft.network.syncher.SynchedEntityData;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.server.level.ServerPlayer;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.damagesource.DamageSource;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.material.PushReaction;
import net.minecraft.world.phys.AABB;
import net.minecraft.world.phys.Vec3;
import org.slf4j.Logger;
public class Interaction extends Entity implements Attackable, Targeting {
private static final Logger LOGGER = LogUtils.getLogger();
private static final EntityDataAccessor<Float> DATA_WIDTH_ID = SynchedEntityData.defineId(Interaction.class, EntityDataSerializers.FLOAT);
private static final EntityDataAccessor<Float> DATA_HEIGHT_ID = SynchedEntityData.defineId(Interaction.class, EntityDataSerializers.FLOAT);
private static final EntityDataAccessor<Boolean> DATA_RESPONSE_ID = SynchedEntityData.defineId(Interaction.class, EntityDataSerializers.BOOLEAN);
private static final String TAG_WIDTH = "width";
private static final String TAG_HEIGHT = "height";
private static final String TAG_ATTACK = "attack";
private static final String TAG_INTERACTION = "interaction";
private static final String TAG_RESPONSE = "response";
@Nullable
private Interaction.PlayerAction attack;
@Nullable
private Interaction.PlayerAction interaction;
public Interaction(EntityType<?> p_273319_, Level p_272713_) {
super(p_273319_, p_272713_);
this.noPhysics = true;
}
@Override
protected void defineSynchedData(SynchedEntityData.Builder p_333595_) {
p_333595_.define(DATA_WIDTH_ID, 1.0F);
p_333595_.define(DATA_HEIGHT_ID, 1.0F);
p_333595_.define(DATA_RESPONSE_ID, false);
}
@Override
protected void readAdditionalSaveData(CompoundTag p_272702_) {
if (p_272702_.contains("width", 99)) {
this.setWidth(p_272702_.getFloat("width"));
}
if (p_272702_.contains("height", 99)) {
this.setHeight(p_272702_.getFloat("height"));
}
if (p_272702_.contains("attack")) {
Interaction.PlayerAction.CODEC
.decode(NbtOps.INSTANCE, p_272702_.get("attack"))
.resultOrPartial(Util.prefix("Interaction entity", LOGGER::error))
.ifPresent(p_273699_ -> this.attack = p_273699_.getFirst());
} else {
this.attack = null;
}
if (p_272702_.contains("interaction")) {
Interaction.PlayerAction.CODEC
.decode(NbtOps.INSTANCE, p_272702_.get("interaction"))
.resultOrPartial(Util.prefix("Interaction entity", LOGGER::error))
.ifPresent(p_273686_ -> this.interaction = p_273686_.getFirst());
} else {
this.interaction = null;
}
this.setResponse(p_272702_.getBoolean("response"));
this.setBoundingBox(this.makeBoundingBox());
}
@Override
protected void addAdditionalSaveData(CompoundTag p_273772_) {
p_273772_.putFloat("width", this.getWidth());
p_273772_.putFloat("height", this.getHeight());
if (this.attack != null) {
Interaction.PlayerAction.CODEC.encodeStart(NbtOps.INSTANCE, this.attack).ifSuccess(p_272806_ -> p_273772_.put("attack", p_272806_));
}
if (this.interaction != null) {
Interaction.PlayerAction.CODEC
.encodeStart(NbtOps.INSTANCE, this.interaction)
.ifSuccess(p_272925_ -> p_273772_.put("interaction", p_272925_));
}
p_273772_.putBoolean("response", this.getResponse());
}
@Override
public void onSyncedDataUpdated(EntityDataAccessor<?> p_272722_) {
super.onSyncedDataUpdated(p_272722_);
if (DATA_HEIGHT_ID.equals(p_272722_) || DATA_WIDTH_ID.equals(p_272722_)) {
this.refreshDimensions();
}
}
@Override
public boolean canBeHitByProjectile() {
return false;
}
@Override
public boolean isPickable() {
return true;
}
@Override
public PushReaction getPistonPushReaction() {
return PushReaction.IGNORE;
}
@Override
public boolean isIgnoringBlockTriggers() {
return true;
}
@Override
public boolean skipAttackInteraction(Entity p_273553_) {
if (p_273553_ instanceof Player player) {
this.attack = new Interaction.PlayerAction(player.getUUID(), this.level().getGameTime());
if (player instanceof ServerPlayer serverplayer) {
CriteriaTriggers.PLAYER_HURT_ENTITY.trigger(serverplayer, this, player.damageSources().generic(), 1.0F, 1.0F, false);
}
return !this.getResponse();
} else {
return false;
}
}
@Override
public final boolean hurtServer(ServerLevel p_367768_, DamageSource p_367095_, float p_369043_) {
return false;
}
@Override
public InteractionResult interact(Player p_273507_, InteractionHand p_273048_) {
if (this.level().isClientSide) {
return this.getResponse() ? InteractionResult.SUCCESS : InteractionResult.CONSUME;
} else {
this.interaction = new Interaction.PlayerAction(p_273507_.getUUID(), this.level().getGameTime());
return InteractionResult.CONSUME;
}
}
@Override
public void tick() {
}
@Nullable
@Override
public LivingEntity getLastAttacker() {
return this.attack != null ? this.level().getPlayerByUUID(this.attack.player()) : null;
}
@Nullable
@Override
public LivingEntity getTarget() {
return this.interaction != null ? this.level().getPlayerByUUID(this.interaction.player()) : null;
}
private void setWidth(float p_273385_) {
this.entityData.set(DATA_WIDTH_ID, p_273385_);
}
private float getWidth() {
return this.entityData.get(DATA_WIDTH_ID);
}
private void setHeight(float p_273733_) {
this.entityData.set(DATA_HEIGHT_ID, p_273733_);
}
private float getHeight() {
return this.entityData.get(DATA_HEIGHT_ID);
}
private void setResponse(boolean p_273657_) {
this.entityData.set(DATA_RESPONSE_ID, p_273657_);
}
private boolean getResponse() {
return this.entityData.get(DATA_RESPONSE_ID);
}
private EntityDimensions getDimensions() {
return EntityDimensions.scalable(this.getWidth(), this.getHeight());
}
@Override
public EntityDimensions getDimensions(Pose p_273111_) {
return this.getDimensions();
}
@Override
protected AABB makeBoundingBox(Vec3 p_377271_) {
return this.getDimensions().makeBoundingBox(p_377271_);
}
static record PlayerAction(UUID player, long timestamp) {
public static final Codec<Interaction.PlayerAction> CODEC = RecordCodecBuilder.create(
p_273237_ -> p_273237_.group(
UUIDUtil.CODEC.fieldOf("player").forGetter(Interaction.PlayerAction::player),
Codec.LONG.fieldOf("timestamp").forGetter(Interaction.PlayerAction::timestamp)
)
.apply(p_273237_, Interaction.PlayerAction::new)
);
}
} |