9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-30 04:19:27 +00:00

refactor(block): 解决瑕疵

This commit is contained in:
jhqwqmc
2025-09-10 10:31:48 +08:00
parent b936b4853a
commit 10a35e3798
2 changed files with 9 additions and 4 deletions

View File

@@ -7,7 +7,6 @@ import net.momirealms.craftengine.core.block.CustomBlock;
import net.momirealms.craftengine.core.block.behavior.BlockBehaviorFactory;
import net.momirealms.craftengine.core.util.ResourceConfigUtils;
import net.momirealms.craftengine.core.util.VersionHelper;
import org.bukkit.util.Vector;
import java.util.Map;
import java.util.concurrent.Callable;
@@ -15,10 +14,12 @@ import java.util.concurrent.Callable;
public class BouncingBlockBehavior extends BukkitBlockBehavior {
public static final Factory FACTORY = new Factory();
private final double bounceHeight;
private final boolean syncPlayerSelf;
public BouncingBlockBehavior(CustomBlock customBlock, double bounceHeight) {
public BouncingBlockBehavior(CustomBlock customBlock, double bounceHeight, boolean syncPlayerSelf) {
super(customBlock);
this.bounceHeight = bounceHeight;
this.syncPlayerSelf = syncPlayerSelf;
}
@Override
@@ -57,7 +58,9 @@ public class BouncingBlockBehavior extends BukkitBlockBehavior {
-FastNMS.INSTANCE.field$Vec3$y(deltaMovement) * this.bounceHeight * d,
FastNMS.INSTANCE.field$Vec3$z(deltaMovement)
);
FastNMS.INSTANCE.field$Entity$hurtMarked(entity, true);
if (this.syncPlayerSelf) {
FastNMS.INSTANCE.field$Entity$hurtMarked(entity, true);
}
}
}
@@ -66,7 +69,8 @@ public class BouncingBlockBehavior extends BukkitBlockBehavior {
@Override
public BlockBehavior create(CustomBlock block, Map<String, Object> arguments) {
double bounceHeight = ResourceConfigUtils.getAsDouble(arguments.getOrDefault("bounce-height", 0.66), "bounce-height");
return new BouncingBlockBehavior(block, bounceHeight);
boolean syncPlayerSelf = ResourceConfigUtils.getAsBoolean(arguments.getOrDefault("sync-player-self", true), "sync-player-self");
return new BouncingBlockBehavior(block, bounceHeight, syncPlayerSelf);
}
}
}