From 204007cfd768490a364d9251115a7d43a2379f28 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 3 Apr 2021 23:16:18 +0200 Subject: [PATCH] fixed effect powders not being visible to clients --- .../entities/EntityEffectInhibitor.java | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/src/main/java/de/ellpeck/naturesaura/entities/EntityEffectInhibitor.java b/src/main/java/de/ellpeck/naturesaura/entities/EntityEffectInhibitor.java index d9a0a7f6..9d749707 100644 --- a/src/main/java/de/ellpeck/naturesaura/entities/EntityEffectInhibitor.java +++ b/src/main/java/de/ellpeck/naturesaura/entities/EntityEffectInhibitor.java @@ -35,6 +35,8 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { private static final DataParameter INHIBITED_EFFECT = EntityDataManager.createKey(EntityEffectInhibitor.class, DataSerializers.STRING); private static final DataParameter COLOR = EntityDataManager.createKey(EntityEffectInhibitor.class, DataSerializers.VARINT); private static final DataParameter AMOUNT = EntityDataManager.createKey(EntityEffectInhibitor.class, DataSerializers.VARINT); + private ResourceLocation lastEffect; + private boolean powderListDirty; @OnlyIn(Dist.CLIENT) public int renderTicks; @@ -56,13 +58,14 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { @Override public void onAddedToWorld() { super.onAddedToWorld(); - this.addToPowderList(); + this.powderListDirty = true; } @Override public void onRemovedFromWorld() { - this.removeFromPowderList(); super.onRemovedFromWorld(); + this.setInhibitedEffect(null); + this.updatePowderListStatus(); } @Override @@ -72,43 +75,27 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { this.dataManager.register(AMOUNT, 0); } + @Override + public void notifyDataManagerChange(DataParameter key) { + super.notifyDataManagerChange(key); + if (INHIBITED_EFFECT.equals(key) || AMOUNT.equals(key)) + this.powderListDirty = true; + } + @Override public void setPosition(double x, double y, double z) { - boolean should = x != this.getPosX() || y != this.getPosY() || z != this.getPosZ(); - if (should) - this.removeFromPowderList(); + if (x != this.getPosX() || y != this.getPosY() || z != this.getPosZ()) + this.powderListDirty = true; super.setPosition(x, y, z); - if (should) - this.addToPowderList(); - } - - private void addToPowderList() { - if (!this.isAddedToWorld() || this.getInhibitedEffect() == null) - return; - List> powders = this.getPowderList(); - powders.add(new Tuple<>(this.getPositionVec(), this.getAmount())); - } - - private void removeFromPowderList() { - if (!this.isAddedToWorld() || this.getInhibitedEffect() == null) - return; - List> powders = this.getPowderList(); - Vector3d pos = this.getPositionVec(); - for (int i = 0; i < powders.size(); i++) - if (pos.equals(powders.get(i).getA())) { - powders.remove(i); - break; - } - } - - private List> getPowderList() { - ListMultimap> powders = ((WorldData) IWorldData.getWorldData(this.world)).effectPowders; - return powders.get(this.getInhibitedEffect()); } @Override public void tick() { super.tick(); + + if (this.powderListDirty) + this.updatePowderListStatus(); + if (this.world.isRemote) { if (this.world.getGameTime() % 5 == 0) { NaturesAuraAPI.instance().spawnMagicParticle( @@ -170,9 +157,7 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { } public void setInhibitedEffect(ResourceLocation effect) { - this.removeFromPowderList(); - this.dataManager.set(INHIBITED_EFFECT, effect.toString()); - this.addToPowderList(); + this.dataManager.set(INHIBITED_EFFECT, effect != null ? effect.toString() : null); } public int getColor() { @@ -188,9 +173,7 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { } public void setAmount(int amount) { - this.removeFromPowderList(); this.dataManager.set(AMOUNT, amount); - this.addToPowderList(); } @Override @@ -204,4 +187,21 @@ public class EntityEffectInhibitor extends Entity implements IVisualizable { public int getVisualizationColor(World world, BlockPos pos) { return this.getColor(); } + + private void updatePowderListStatus() { + ListMultimap> powders = ((WorldData) IWorldData.getWorldData(this.world)).effectPowders; + if (this.lastEffect != null) { + List> oldList = powders.get(this.lastEffect); + oldList.removeIf(t -> this.getPositionVec().equals(t.getA())); + System.out.println("Removing from old list with effect " + this.lastEffect); + } + ResourceLocation effect = this.getInhibitedEffect(); + if (effect != null) { + List> newList = powders.get(effect); + newList.add(new Tuple<>(this.getPositionVec(), this.getAmount())); + System.out.println("Adding to new list with effect " + effect); + } + this.powderListDirty = false; + this.lastEffect = effect; + } }