mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 18:31:29 +01:00
145 lines
4.7 KiB
Diff
145 lines
4.7 KiB
Diff
--- a/net/minecraft/server/TileEntityBeacon.java
|
|
+++ b/net/minecraft/server/TileEntityBeacon.java
|
|
@@ -9,6 +9,13 @@
|
|
import java.util.Set;
|
|
import javax.annotation.Nullable;
|
|
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
+import org.bukkit.craftbukkit.potion.CraftPotionUtil;
|
|
+import org.bukkit.entity.HumanEntity;
|
|
+import org.bukkit.potion.PotionEffect;
|
|
+// CraftBukkit end
|
|
+
|
|
public class TileEntityBeacon extends TileEntityContainer implements ITickable, IWorldInventory {
|
|
|
|
public static final MobEffectList[][] a = new MobEffectList[][] { { MobEffects.FASTER_MOVEMENT, MobEffects.FASTER_DIG}, { MobEffects.RESISTANCE, MobEffects.JUMP}, { MobEffects.INCREASE_DAMAGE}, { MobEffects.REGENERATION}};
|
|
@@ -22,6 +29,38 @@
|
|
public MobEffectList secondaryEffect;
|
|
private ItemStack inventorySlot;
|
|
private String o;
|
|
+ // CraftBukkit start - add fields and methods
|
|
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
|
|
+ private int maxStack = MAX_STACK;
|
|
+
|
|
+ public List<ItemStack> getContents() {
|
|
+ return Arrays.asList(this.inventorySlot);
|
|
+ }
|
|
+
|
|
+ public void onOpen(CraftHumanEntity who) {
|
|
+ transaction.add(who);
|
|
+ }
|
|
+
|
|
+ public void onClose(CraftHumanEntity who) {
|
|
+ transaction.remove(who);
|
|
+ }
|
|
+
|
|
+ public List<HumanEntity> getViewers() {
|
|
+ return transaction;
|
|
+ }
|
|
+
|
|
+ public void setMaxStackSize(int size) {
|
|
+ maxStack = size;
|
|
+ }
|
|
+
|
|
+ public PotionEffect getPrimaryEffect() {
|
|
+ return (this.primaryEffect != null) ? CraftPotionUtil.toBukkit(new MobEffect(this.primaryEffect, getLevel(), getAmplification(), true, true)) : null;
|
|
+ }
|
|
+
|
|
+ public PotionEffect getSecondaryEffect() {
|
|
+ return (hasSecondaryEffect()) ? CraftPotionUtil.toBukkit(new MobEffect(this.secondaryEffect, getLevel(), getAmplification(), true, true)) : null;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
|
|
public TileEntityBeacon() {
|
|
this.inventorySlot = ItemStack.a;
|
|
@@ -42,41 +81,79 @@
|
|
|
|
}
|
|
|
|
- private void E() {
|
|
- if (this.j && this.levels > 0 && !this.world.isClientSide && this.primaryEffect != null) {
|
|
- double d0 = (double) (this.levels * 10 + 10);
|
|
+ // CraftBukkit start - split into components
|
|
+ private byte getAmplification() {
|
|
+ {
|
|
byte b0 = 0;
|
|
|
|
if (this.levels >= 4 && this.primaryEffect == this.secondaryEffect) {
|
|
b0 = 1;
|
|
}
|
|
|
|
+ return b0;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ private int getLevel() {
|
|
+ {
|
|
int i = (9 + this.levels * 2) * 20;
|
|
+ return i;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ public List getHumansInRange() {
|
|
+ {
|
|
+ double d0 = (double) (this.levels * 10 + 10);
|
|
+
|
|
int j = this.position.getX();
|
|
int k = this.position.getY();
|
|
int l = this.position.getZ();
|
|
AxisAlignedBB axisalignedbb = (new AxisAlignedBB((double) j, (double) k, (double) l, (double) (j + 1), (double) (k + 1), (double) (l + 1))).g(d0).b(0.0D, (double) this.world.getHeight(), 0.0D);
|
|
List list = this.world.a(EntityHuman.class, axisalignedbb);
|
|
+
|
|
+ return list;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ private void applyEffect(List list, MobEffectList effects, int i, int b0) {
|
|
+ {
|
|
Iterator iterator = list.iterator();
|
|
|
|
EntityHuman entityhuman;
|
|
|
|
while (iterator.hasNext()) {
|
|
entityhuman = (EntityHuman) iterator.next();
|
|
- entityhuman.addEffect(new MobEffect(this.primaryEffect, i, b0, true, true));
|
|
+ entityhuman.addEffect(new MobEffect(effects, i, b0, true, true));
|
|
}
|
|
+ }
|
|
+ }
|
|
|
|
+ private boolean hasSecondaryEffect() {
|
|
+ {
|
|
if (this.levels >= 4 && this.primaryEffect != this.secondaryEffect && this.secondaryEffect != null) {
|
|
- iterator = list.iterator();
|
|
+ return true;
|
|
+ }
|
|
+
|
|
+ return false;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ private void E() {
|
|
+ if (this.j && this.levels > 0 && !this.world.isClientSide && this.primaryEffect != null) {
|
|
+ byte b0 = getAmplification();
|
|
+
|
|
+ int i = getLevel();
|
|
+ List list = getHumansInRange();
|
|
+
|
|
+ applyEffect(list, this.primaryEffect, i, b0);
|
|
|
|
- while (iterator.hasNext()) {
|
|
- entityhuman = (EntityHuman) iterator.next();
|
|
- entityhuman.addEffect(new MobEffect(this.secondaryEffect, i, 0, true, true));
|
|
- }
|
|
+ if (hasSecondaryEffect()) {
|
|
+ applyEffect(list, this.secondaryEffect, i, 0);
|
|
}
|
|
}
|
|
|
|
}
|
|
+ // CraftBukkit end
|
|
|
|
private void F() {
|
|
int i = this.position.getX();
|