spigot/CraftBukkit-Patches/0014-Entity-Activation-Range.patch

576 lines
23 KiB
Diff
Raw Normal View History

From 2a5e800bf0b98678ab782edaa10a5aff719919ba Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Sun, 3 Feb 2013 05:10:21 -0500
Subject: [PATCH] Entity Activation Range
This feature gives 3 new configurable ranges that if an entity of the matching type is outside of this radius of any player, will tick at 5% of its normal rate.
This will drastically cut down on tick timings for entities that are not in range of a user to actually be "used".
This change can have dramatic impact on gameplay if configured too low. Balance according to your servers desired gameplay.
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
index d49a6e4f..33c9d696 100644
--- a/src/main/java/net/minecraft/server/Entity.java
+++ b/src/main/java/net/minecraft/server/Entity.java
2017-05-14 12:00:00 +10:00
@@ -110,7 +110,7 @@ public abstract class Entity implements ICommandListener {
2016-11-17 12:41:12 +11:00
protected Random random;
public int ticksLived;
public int fireTicks;
2016-03-01 08:33:06 +11:00
- public boolean inWater;
+ public boolean inWater; // Spigot - protected -> public // PAIL
public int noDamageTicks;
protected boolean justCreated;
protected boolean fireProof;
2017-11-07 17:30:57 +11:00
@@ -148,6 +148,12 @@ public abstract class Entity implements ICommandListener {
public org.bukkit.projectiles.ProjectileSource projectileSource; // For projectiles only
public boolean forceExplosionKnockback; // SPIGOT-949
public CustomTimingsHandler tickTimer = org.bukkit.craftbukkit.SpigotTimings.getEntityTimings(this); // Spigot
2016-03-01 08:33:06 +11:00
+ // Spigot start
2013-06-20 19:00:26 +10:00
+ public final byte activationType = org.spigotmc.ActivationRange.initializeEntityActivationType(this);
+ public final boolean defaultActivationState;
2014-12-21 09:01:55 +11:00
+ public long activatedTick = Integer.MIN_VALUE;
2013-06-08 09:27:14 +10:00
+ public void inactiveTick() { }
+ // Spigot end
2013-12-01 14:40:53 +11:00
2017-11-07 17:30:57 +11:00
public float getBukkitYaw() {
return this.yaw;
@@ -174,7 +180,12 @@ public abstract class Entity implements ICommandListener {
this.setPosition(0.0D, 0.0D, 0.0D);
if (world != null) {
2016-03-01 08:33:06 +11:00
this.dimension = world.worldProvider.getDimensionManager().getDimensionID();
+ // Spigot start
2013-06-20 19:00:26 +10:00
+ this.defaultActivationState = org.spigotmc.ActivationRange.initializeEntityActivationState(this, world.spigotConfig);
+ } else {
+ this.defaultActivationState = false;
}
+ // Spigot end
2013-12-01 14:40:53 +11:00
this.datawatcher = new DataWatcher(this);
2016-11-17 12:41:12 +11:00
this.datawatcher.register(Entity.Z, Byte.valueOf((byte) 0));
2013-06-08 09:27:14 +10:00
diff --git a/src/main/java/net/minecraft/server/EntityAgeable.java b/src/main/java/net/minecraft/server/EntityAgeable.java
index 2b0a970f..db23aedc 100644
2013-06-08 09:27:14 +10:00
--- a/src/main/java/net/minecraft/server/EntityAgeable.java
+++ b/src/main/java/net/minecraft/server/EntityAgeable.java
2016-05-10 21:48:25 +10:00
@@ -12,6 +12,31 @@ public abstract class EntityAgeable extends EntityCreature {
2017-05-14 12:00:00 +10:00
private float bz;
2016-03-01 08:33:06 +11:00
public boolean ageLocked; // CraftBukkit
2013-06-08 09:27:14 +10:00
+ // Spigot start
+ @Override
+ public void inactiveTick()
+ {
+ super.inactiveTick();
2015-02-28 11:36:22 +00:00
+ if ( this.world.isClientSide || this.ageLocked )
2013-06-08 09:27:14 +10:00
+ { // CraftBukkit
+ this.a( this.isBaby() );
+ } else
+ {
+ int i = this.getAge();
+
+ if ( i < 0 )
+ {
+ ++i;
2014-12-01 20:42:58 +00:00
+ this.setAgeRaw( i );
2013-06-08 09:27:14 +10:00
+ } else if ( i > 0 )
+ {
+ --i;
2014-12-01 20:42:58 +00:00
+ this.setAgeRaw( i );
2013-06-08 09:27:14 +10:00
+ }
+ }
+ }
+ // Spigot end
+
public EntityAgeable(World world) {
super(world);
}
diff --git a/src/main/java/net/minecraft/server/EntityArrow.java b/src/main/java/net/minecraft/server/EntityArrow.java
index 2463a90c..ba41470d 100644
--- a/src/main/java/net/minecraft/server/EntityArrow.java
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
2016-11-17 12:41:12 +11:00
@@ -39,6 +39,18 @@ public abstract class EntityArrow extends Entity implements IProjectile {
2016-03-01 08:33:06 +11:00
private double damage;
public int knockbackStrength;
+ // Spigot Start
+ @Override
+ public void inactiveTick()
+ {
+ if ( this.inGround )
+ {
2016-11-17 12:41:12 +11:00
+ this.ax += 1; // Despawn counter. First int after shooter
+ }
+ super.inactiveTick();
+ }
+ // Spigot End
+
public EntityArrow(World world) {
super(world);
2016-03-01 08:33:06 +11:00
this.h = -1;
diff --git a/src/main/java/net/minecraft/server/EntityFireworks.java b/src/main/java/net/minecraft/server/EntityFireworks.java
index f1f47962..48cdef5d 100644
--- a/src/main/java/net/minecraft/server/EntityFireworks.java
+++ b/src/main/java/net/minecraft/server/EntityFireworks.java
2017-01-18 10:14:37 +11:00
@@ -17,6 +17,14 @@ public class EntityFireworks extends Entity {
2016-03-01 08:33:06 +11:00
this.setSize(0.25F, 0.25F);
}
+ // Spigot Start
+ @Override
2016-03-01 08:33:06 +11:00
+ public void inactiveTick() {
+ this.ticksFlown += 1;
+ super.inactiveTick();
+ }
+ // Spigot End
+
2016-03-01 08:33:06 +11:00
protected void i() {
2016-11-17 12:41:12 +11:00
this.datawatcher.register(EntityFireworks.FIREWORK_ITEM, ItemStack.a);
2016-12-21 07:00:00 +11:00
this.datawatcher.register(EntityFireworks.b, Integer.valueOf(0));
diff --git a/src/main/java/net/minecraft/server/EntityItem.java b/src/main/java/net/minecraft/server/EntityItem.java
index 3f51880a..4d3aef96 100644
--- a/src/main/java/net/minecraft/server/EntityItem.java
+++ b/src/main/java/net/minecraft/server/EntityItem.java
2017-08-03 23:00:00 +10:00
@@ -143,6 +143,28 @@ public class EntityItem extends Entity {
}
}
+ // Spigot start - copied from above
+ @Override
+ public void inactiveTick() {
+ // CraftBukkit start - Use wall time for pickup and despawn timers
+ int elapsedTicks = MinecraftServer.currentTick - this.lastTick;
+ if (this.pickupDelay != 32767) this.pickupDelay -= elapsedTicks;
+ if (this.age != -32768) this.age += elapsedTicks;
+ this.lastTick = MinecraftServer.currentTick;
+ // CraftBukkit end
+
2015-02-28 11:36:22 +00:00
+ if (!this.world.isClientSide && this.age >= world.spigotConfig.itemDespawnRate) { // Spigot
+ // CraftBukkit start - fire ItemDespawnEvent
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
+ this.age = 0;
+ return;
+ }
+ // CraftBukkit end
+ this.die();
+ }
+ }
+ // Spigot end
+
2016-03-01 08:33:06 +11:00
private void x() {
// Spigot start
double radius = world.spigotConfig.itemMerge;
2013-06-08 09:27:14 +10:00
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
index 5f24de68..0026f29d 100644
2013-06-08 09:27:14 +10:00
--- a/src/main/java/net/minecraft/server/EntityLiving.java
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
2017-11-07 17:30:57 +11:00
@@ -122,6 +122,13 @@ public abstract class EntityLiving extends Entity {
return getHeadRotation();
}
2013-06-08 09:27:14 +10:00
// CraftBukkit end
+ // Spigot start
+ public void inactiveTick()
+ {
+ super.inactiveTick();
2015-02-28 11:36:22 +00:00
+ ++this.ticksFarFromPlayer; // Above all the floats
2013-06-08 09:27:14 +10:00
+ }
+ // Spigot end
2017-05-14 12:00:00 +10:00
public void killEntity() {
this.damageEntity(DamageSource.OUT_OF_WORLD, Float.MAX_VALUE);
diff --git a/src/main/java/net/minecraft/server/EntityVillager.java b/src/main/java/net/minecraft/server/EntityVillager.java
index fe137ed0..87ed31b2 100644
--- a/src/main/java/net/minecraft/server/EntityVillager.java
+++ b/src/main/java/net/minecraft/server/EntityVillager.java
@@ -97,6 +97,22 @@ public class EntityVillager extends EntityAgeable implements NPC, IMerchant {
this.getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue(0.5D);
}
+ // Spigot Start
+ @Override
+ public void inactiveTick() {
+ // SPIGOT-3874
+ if (world.spigotConfig.tickInactiveVillagers) {
+ // SPIGOT-3894
+ Chunk startingChunk = this.world.getChunkIfLoaded(MathHelper.floor(this.locX) >> 4, MathHelper.floor(this.locZ) >> 4);
+ if (!(startingChunk != null && startingChunk.areNeighborsLoaded(1))) {
+ return;
+ }
+ this.M(); // SPIGOT-3846
+ }
+ super.inactiveTick();
+ }
+ // Spigot End
+
protected void M() {
if (--this.profession <= 0) {
BlockPosition blockposition = new BlockPosition(this);
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
index 73e95167..b2786796 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2017-12-09 18:08:16 +11:00
@@ -1350,6 +1350,7 @@ public abstract class World implements IBlockAccess {
2016-03-01 08:33:06 +11:00
CrashReportSystemDetails crashreportsystemdetails1;
CrashReport crashreport1;
2013-06-20 19:00:26 +10:00
+ org.spigotmc.ActivationRange.activateEntities(this); // Spigot
timings.entityTick.startTiming(); // Spigot
2014-02-12 13:48:26 +00:00
// CraftBukkit start - Use field for loop variable
for (this.tickPosition = 0; this.tickPosition < this.entityList.size(); ++this.tickPosition) {
@@ -1541,6 +1542,13 @@ public abstract class World implements IBlockAccess {
}
// CraftBukkit end
+ // Spigot start
+ if (!org.spigotmc.ActivationRange.checkIfActive(entity, flag)) {
+ entity.ticksLived++;
2013-06-08 09:27:14 +10:00
+ entity.inactiveTick();
+ return;
+ }
+ // Spigot end
entity.tickTimer.startTiming(); // Spigot
entity.M = entity.locX;
entity.N = entity.locY;
2013-06-20 19:00:26 +10:00
diff --git a/src/main/java/org/bukkit/craftbukkit/SpigotTimings.java b/src/main/java/org/bukkit/craftbukkit/SpigotTimings.java
index fa88be0d..4c8ab2bc 100644
2013-06-20 19:00:26 +10:00
--- a/src/main/java/org/bukkit/craftbukkit/SpigotTimings.java
+++ b/src/main/java/org/bukkit/craftbukkit/SpigotTimings.java
2017-05-14 12:00:00 +10:00
@@ -40,6 +40,9 @@ public class SpigotTimings {
2013-06-20 19:00:26 +10:00
public static final CustomTimingsHandler playerCommandTimer = new CustomTimingsHandler("** playerCommand");
2013-06-20 19:00:26 +10:00
+ public static final CustomTimingsHandler entityActivationCheckTimer = new CustomTimingsHandler("entityActivationCheck");
+ public static final CustomTimingsHandler checkIfActiveTimer = new CustomTimingsHandler("** checkIfActive");
+
public static final HashMap<String, CustomTimingsHandler> entityTypeTimingMap = new HashMap<String, CustomTimingsHandler>();
public static final HashMap<String, CustomTimingsHandler> tileEntityTypeTimingMap = new HashMap<String, CustomTimingsHandler>();
public static final HashMap<String, CustomTimingsHandler> pluginTaskTimingMap = new HashMap<String, CustomTimingsHandler>();
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
index 364b8e36..11c79340 100644
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
2017-06-12 19:24:37 +10:00
@@ -287,6 +287,7 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
entity.setLocation(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());
2016-11-24 09:47:25 +11:00
// SPIGOT-619: Force sync head rotation also
entity.setHeadRotation(location.getYaw());
+ entity.world.entityJoinedWorld(entity, false); // Spigot - register to new chunk
2016-11-24 09:47:25 +11:00
return true;
}
2013-06-20 19:00:26 +10:00
diff --git a/src/main/java/org/spigotmc/ActivationRange.java b/src/main/java/org/spigotmc/ActivationRange.java
new file mode 100644
index 00000000..0cfab3e9
2013-06-20 19:00:26 +10:00
--- /dev/null
+++ b/src/main/java/org/spigotmc/ActivationRange.java
@@ -0,0 +1,287 @@
2013-06-20 19:00:26 +10:00
+package org.spigotmc;
+
+import java.util.Set;
+import net.minecraft.server.AxisAlignedBB;
+import net.minecraft.server.Chunk;
+import net.minecraft.server.Entity;
+import net.minecraft.server.EntityAmbient;
+import net.minecraft.server.EntityAnimal;
+import net.minecraft.server.EntityArrow;
+import net.minecraft.server.EntityComplexPart;
+import net.minecraft.server.EntityCreature;
+import net.minecraft.server.EntityCreeper;
+import net.minecraft.server.EntityEnderCrystal;
+import net.minecraft.server.EntityEnderDragon;
+import net.minecraft.server.EntityFireball;
+import net.minecraft.server.EntityFireworks;
+import net.minecraft.server.EntityHuman;
+import net.minecraft.server.EntityLiving;
+import net.minecraft.server.EntityMonster;
+import net.minecraft.server.EntityProjectile;
+import net.minecraft.server.EntitySheep;
+import net.minecraft.server.EntitySlice;
+import net.minecraft.server.EntitySlime;
+import net.minecraft.server.EntityTNTPrimed;
2013-06-08 09:27:14 +10:00
+import net.minecraft.server.EntityVillager;
+import net.minecraft.server.EntityWeather;
+import net.minecraft.server.EntityWither;
+import net.minecraft.server.MathHelper;
+import net.minecraft.server.MinecraftServer;
+import net.minecraft.server.World;
2013-06-20 19:00:26 +10:00
+import org.bukkit.craftbukkit.SpigotTimings;
+
2013-06-20 19:00:26 +10:00
+public class ActivationRange
+{
+
2016-03-01 08:33:06 +11:00
+ static AxisAlignedBB maxBB = new AxisAlignedBB( 0, 0, 0, 0, 0, 0 );
+ static AxisAlignedBB miscBB = new AxisAlignedBB( 0, 0, 0, 0, 0, 0 );
+ static AxisAlignedBB animalBB = new AxisAlignedBB( 0, 0, 0, 0, 0, 0 );
+ static AxisAlignedBB monsterBB = new AxisAlignedBB( 0, 0, 0, 0, 0, 0 );
+
+ /**
+ * Initializes an entities type on construction to specify what group this
+ * entity is in for activation ranges.
+ *
+ * @param entity
+ * @return group id
+ */
2013-06-20 19:00:26 +10:00
+ public static byte initializeEntityActivationType(Entity entity)
+ {
+ if ( entity instanceof EntityMonster || entity instanceof EntitySlime )
+ {
+ return 1; // Monster
2013-06-20 19:00:26 +10:00
+ } else if ( entity instanceof EntityCreature || entity instanceof EntityAmbient )
+ {
+ return 2; // Animal
2013-06-20 19:00:26 +10:00
+ } else
+ {
+ return 3; // Misc
+ }
+ }
+
+ /**
+ * These entities are excluded from Activation range checks.
+ *
+ * @param entity
+ * @param world
+ * @return boolean If it should always tick.
+ */
2013-06-20 19:00:26 +10:00
+ public static boolean initializeEntityActivationState(Entity entity, SpigotWorldConfig config)
+ {
+ if ( ( entity.activationType == 3 && config.miscActivationRange == 0 )
+ || ( entity.activationType == 2 && config.animalActivationRange == 0 )
+ || ( entity.activationType == 1 && config.monsterActivationRange == 0 )
+ || entity instanceof EntityHuman
+ || entity instanceof EntityProjectile
+ || entity instanceof EntityEnderDragon
+ || entity instanceof EntityComplexPart
+ || entity instanceof EntityWither
+ || entity instanceof EntityFireball
+ || entity instanceof EntityWeather
+ || entity instanceof EntityTNTPrimed
+ || entity instanceof EntityEnderCrystal
2013-06-20 19:00:26 +10:00
+ || entity instanceof EntityFireworks )
+ {
+ return true;
+ }
+
+ return false;
+ }
+
+ /**
+ * Find what entities are in range of the players in the world and set
+ * active if in range.
+ *
+ * @param world
+ */
2013-06-20 19:00:26 +10:00
+ public static void activateEntities(World world)
+ {
+ SpigotTimings.entityActivationCheckTimer.startTiming();
2013-06-20 19:00:26 +10:00
+ final int miscActivationRange = world.spigotConfig.miscActivationRange;
+ final int animalActivationRange = world.spigotConfig.animalActivationRange;
+ final int monsterActivationRange = world.spigotConfig.monsterActivationRange;
+
2013-06-20 19:00:26 +10:00
+ int maxRange = Math.max( monsterActivationRange, animalActivationRange );
+ maxRange = Math.max( maxRange, miscActivationRange );
+ maxRange = Math.min( ( world.spigotConfig.viewDistance << 4 ) - 8, maxRange );
+
2016-03-01 08:33:06 +11:00
+ for ( EntityHuman player : world.players )
2013-06-20 19:00:26 +10:00
+ {
+
+ player.activatedTick = MinecraftServer.currentTick;
+ maxBB = player.getBoundingBox().grow( maxRange, 256, maxRange );
+ miscBB = player.getBoundingBox().grow( miscActivationRange, 256, miscActivationRange );
+ animalBB = player.getBoundingBox().grow( animalActivationRange, 256, animalActivationRange );
+ monsterBB = player.getBoundingBox().grow( monsterActivationRange, 256, monsterActivationRange );
+
2013-06-20 19:00:26 +10:00
+ int i = MathHelper.floor( maxBB.a / 16.0D );
+ int j = MathHelper.floor( maxBB.d / 16.0D );
+ int k = MathHelper.floor( maxBB.c / 16.0D );
+ int l = MathHelper.floor( maxBB.f / 16.0D );
+
2013-06-20 19:00:26 +10:00
+ for ( int i1 = i; i1 <= j; ++i1 )
+ {
+ for ( int j1 = k; j1 <= l; ++j1 )
+ {
+ if ( world.getWorld().isChunkLoaded( i1, j1 ) )
+ {
+ activateChunkEntities( world.getChunkAt( i1, j1 ) );
+ }
+ }
+ }
+ }
+ SpigotTimings.entityActivationCheckTimer.stopTiming();
+ }
+
+ /**
+ * Checks for the activation state of all entities in this chunk.
+ *
+ * @param chunk
+ */
2013-06-20 19:00:26 +10:00
+ private static void activateChunkEntities(Chunk chunk)
+ {
+ for ( EntitySlice slice : chunk.entitySlices )
2013-06-20 19:00:26 +10:00
+ {
+ for ( Entity entity : (Set<Entity>) slice )
2013-06-20 19:00:26 +10:00
+ {
+ if ( MinecraftServer.currentTick > entity.activatedTick )
+ {
+ if ( entity.defaultActivationState )
+ {
+ entity.activatedTick = MinecraftServer.currentTick;
+ continue;
+ }
2013-06-20 19:00:26 +10:00
+ switch ( entity.activationType )
+ {
+ case 1:
2016-11-17 12:41:12 +11:00
+ if ( monsterBB.c( entity.getBoundingBox() ) )
2013-06-20 19:00:26 +10:00
+ {
+ entity.activatedTick = MinecraftServer.currentTick;
+ }
+ break;
+ case 2:
2016-11-17 12:41:12 +11:00
+ if ( animalBB.c( entity.getBoundingBox() ) )
2013-06-20 19:00:26 +10:00
+ {
+ entity.activatedTick = MinecraftServer.currentTick;
+ }
+ break;
+ case 3:
+ default:
2016-11-17 12:41:12 +11:00
+ if ( miscBB.c( entity.getBoundingBox() ) )
2013-06-20 19:00:26 +10:00
+ {
+ entity.activatedTick = MinecraftServer.currentTick;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ /**
+ * If an entity is not in range, do some more checks to see if we should
+ * give it a shot.
+ *
+ * @param entity
+ * @return
+ */
2013-06-20 19:00:26 +10:00
+ public static boolean checkEntityImmunities(Entity entity)
+ {
+ // quick checks.
2016-03-01 08:33:06 +11:00
+ if ( entity.inWater || entity.fireTicks > 0 )
2013-06-20 19:00:26 +10:00
+ {
+ return true;
+ }
2013-06-20 19:00:26 +10:00
+ if ( !( entity instanceof EntityArrow ) )
+ {
+ if ( !entity.onGround || !entity.passengers.isEmpty() || entity.isPassenger() )
2013-06-20 19:00:26 +10:00
+ {
+ return true;
+ }
2013-06-20 19:00:26 +10:00
+ } else if ( !( (EntityArrow) entity ).inGround )
+ {
+ return true;
+ }
+ // special cases.
2013-06-20 19:00:26 +10:00
+ if ( entity instanceof EntityLiving )
+ {
+ EntityLiving living = (EntityLiving) entity;
+ if ( /*TODO: Missed mapping? living.attackTicks > 0 || */ living.hurtTicks > 0 || living.effects.size() > 0 )
2013-06-20 19:00:26 +10:00
+ {
+ return true;
+ }
+ if ( entity instanceof EntityCreature && ( (EntityCreature) entity ).getGoalTarget() != null )
2013-06-20 19:00:26 +10:00
+ {
+ return true;
+ }
2017-06-08 18:00:00 +10:00
+ if ( entity instanceof EntityVillager && ( (EntityVillager) entity ).isInLove() )
2013-06-20 19:00:26 +10:00
+ {
2013-06-08 09:27:14 +10:00
+ return true;
+ }
2013-06-20 19:00:26 +10:00
+ if ( entity instanceof EntityAnimal )
+ {
+ EntityAnimal animal = (EntityAnimal) entity;
2016-03-01 08:33:06 +11:00
+ if ( animal.isBaby() || animal.isInLove() )
2013-06-20 19:00:26 +10:00
+ {
+ return true;
+ }
2013-06-20 19:00:26 +10:00
+ if ( entity instanceof EntitySheep && ( (EntitySheep) entity ).isSheared() )
+ {
+ return true;
+ }
+ }
2016-03-01 08:33:06 +11:00
+ if (entity instanceof EntityCreeper && ((EntityCreeper) entity).isIgnited()) { // isExplosive
+ return true;
+ }
+ }
+ return false;
+ }
+
+ /**
+ * Checks if the entity is active for this tick.
+ *
+ * @param entity
+ * @param skipOnEdge
+ * @return
+ */
+ public static boolean checkIfActive(Entity entity, boolean skipOnEdge)
2013-06-20 19:00:26 +10:00
+ {
+ SpigotTimings.checkIfActiveTimer.startTiming();
+ // Never safe to skip fireworks or entities not yet added to chunk
2016-11-17 12:41:12 +11:00
+ // PAIL: inChunk - boolean under datawatchers
+ if ( !entity.aa || entity instanceof EntityFireworks ) {
+ SpigotTimings.checkIfActiveTimer.stopTiming();
+ return true;
+ }
+
+ boolean isActive = entity.activatedTick >= MinecraftServer.currentTick || entity.defaultActivationState;
+
+ // Should this entity tick?
2013-06-20 19:00:26 +10:00
+ if ( !isActive )
+ {
+ if ( ( MinecraftServer.currentTick - entity.activatedTick - 1 ) % 20 == 0 )
+ {
+ // Check immunities every 20 ticks.
2013-06-20 19:00:26 +10:00
+ if ( checkEntityImmunities( entity ) )
+ {
+ // Triggered some sort of immunity, give 20 full ticks before we check again.
+ entity.activatedTick = MinecraftServer.currentTick + 20;
+ }
+ isActive = true;
+ }
+ // Add a little performance juice to active entities. Skip 1/4 if not immune.
2013-06-20 19:00:26 +10:00
+ } else if ( !entity.defaultActivationState && entity.ticksLived % 4 == 0 && !checkEntityImmunities( entity ) )
+ {
+ isActive = false;
+ }
2013-06-20 19:00:26 +10:00
+ int x = MathHelper.floor( entity.locX );
+ int z = MathHelper.floor( entity.locZ );
+ // Make sure not on edge of unloaded chunk
+ Chunk chunk = entity.world.getChunkIfLoaded( x >> 4, z >> 4 );
+ if ( isActive && skipOnEdge && !( chunk != null && chunk.areNeighborsLoaded( 1 ) ) )
2013-06-20 19:00:26 +10:00
+ {
+ isActive = false;
+ }
+ SpigotTimings.checkIfActiveTimer.stopTiming();
+ return isActive;
2013-06-20 19:00:26 +10:00
+ }
+}
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
index 6a8b5cd3..1d7544ee 100644
2013-06-20 19:00:26 +10:00
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
@@ -140,4 +140,17 @@ public class SpigotWorldConfig
2016-03-01 08:33:06 +11:00
itemDespawnRate = getInt( "item-despawn-rate", 6000 );
log( "Item Despawn Rate: " + itemDespawnRate );
}
+
2013-06-20 19:00:26 +10:00
+ public int animalActivationRange = 32;
+ public int monsterActivationRange = 32;
+ public int miscActivationRange = 16;
+ public boolean tickInactiveVillagers = true;
2013-06-20 19:00:26 +10:00
+ private void activationRange()
+ {
+ animalActivationRange = getInt( "entity-activation-range.animals", animalActivationRange );
+ monsterActivationRange = getInt( "entity-activation-range.monsters", monsterActivationRange );
+ miscActivationRange = getInt( "entity-activation-range.misc", miscActivationRange );
+ tickInactiveVillagers = getBoolean( "entity-activation-range.tick-inactive-villagers", tickInactiveVillagers );
+ log( "Entity Activation Range: An " + animalActivationRange + " / Mo " + monsterActivationRange + " / Mi " + miscActivationRange + " / Tiv " + tickInactiveVillagers );
2013-06-20 19:00:26 +10:00
+ }
}
--
2017-11-07 17:30:57 +11:00
2.14.1