2014-08-31 20:56:05 +02:00
|
|
|
From 807522ab058396ece9c943ade1698f28fb476ed0 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Fri, 21 Jun 2013 17:29:54 +1000
|
|
|
|
Subject: [PATCH] Fix Mob Spawning Relative to View Distance
|
|
|
|
|
|
|
|
Changes the mob spawning algorithm to properly account for view distance and the range around players.
|
|
|
|
|
|
|
|
Needs better documentation.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
index 9acfe12..b6f3761 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Chunk.java
|
|
|
|
@@ -40,6 +40,7 @@ public class Chunk {
|
|
|
|
public int r;
|
|
|
|
public long s;
|
|
|
|
private int x;
|
|
|
|
+ protected net.minecraft.util.gnu.trove.map.hash.TObjectIntHashMap<Class> entityCount = new net.minecraft.util.gnu.trove.map.hash.TObjectIntHashMap<Class>(); // Spigot
|
|
|
|
|
|
|
|
// CraftBukkit start - Neighbor loaded cache for chunk lighting and entity ticking
|
|
|
|
private int neighbors = 0x1 << 12;
|
|
|
|
@@ -635,6 +636,22 @@ public class Chunk {
|
|
|
|
entity.ai = k;
|
|
|
|
entity.aj = this.locZ;
|
|
|
|
this.entitySlices[k].add(entity);
|
|
|
|
+ // Spigot start - increment creature type count
|
|
|
|
+ // Keep this synced up with World.a(Class)
|
|
|
|
+ if (entity instanceof EntityInsentient) {
|
|
|
|
+ EntityInsentient entityinsentient = (EntityInsentient) entity;
|
|
|
|
+ if (entityinsentient.isTypeNotPersistent() && entityinsentient.isPersistent()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ for ( EnumCreatureType creatureType : EnumCreatureType.values() )
|
|
|
|
+ {
|
|
|
|
+ if ( creatureType.a().isAssignableFrom( entity.getClass() ) )
|
|
|
|
+ {
|
|
|
|
+ this.entityCount.adjustOrPutValue( creatureType.a(), 1, 1 );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(Entity entity) {
|
|
|
|
@@ -651,6 +668,22 @@ public class Chunk {
|
|
|
|
}
|
|
|
|
|
|
|
|
this.entitySlices[i].remove(entity);
|
|
|
|
+ // Spigot start - decrement creature type count
|
|
|
|
+ // Keep this synced up with World.a(Class)
|
|
|
|
+ if (entity instanceof EntityInsentient) {
|
|
|
|
+ EntityInsentient entityinsentient = (EntityInsentient) entity;
|
|
|
|
+ if (entityinsentient.isTypeNotPersistent() && entityinsentient.isPersistent()) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ for ( EnumCreatureType creatureType : EnumCreatureType.values() )
|
|
|
|
+ {
|
|
|
|
+ if ( creatureType.a().isAssignableFrom( entity.getClass() ) )
|
|
|
|
+ {
|
|
|
|
+ this.entityCount.adjustValue( creatureType.a(), -1 );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean d(int i, int j, int k) {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/SpawnerCreature.java b/src/main/java/net/minecraft/server/SpawnerCreature.java
|
|
|
|
index 1dfc346..75427b5 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/SpawnerCreature.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/SpawnerCreature.java
|
|
|
|
@@ -27,6 +27,23 @@ public final class SpawnerCreature {
|
|
|
|
return new ChunkPosition(k, i1, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Spigot start - get entity count only from chunks being processed in b
|
|
|
|
+ private int getEntityCount(WorldServer server, Class oClass)
|
|
|
|
+ {
|
|
|
|
+ int i = 0;
|
|
|
|
+ for ( Long coord : this.a.keySet() )
|
|
|
|
+ {
|
|
|
|
+ int x = LongHash.msw( coord );
|
|
|
|
+ int z = LongHash.lsw( coord );
|
|
|
|
+ if ( !server.chunkProviderServer.unloadQueue.contains( coord ) && server.isChunkLoaded( x, z ) )
|
|
|
|
+ {
|
|
|
|
+ i += server.getChunkAt( x, z ).entityCount.get( oClass );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return i;
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
+
|
|
|
|
public int spawnEntities(WorldServer worldserver, boolean flag, boolean flag1, boolean flag2) {
|
|
|
|
if (!flag && !flag1) {
|
|
|
|
return 0;
|
|
|
|
@@ -42,6 +59,11 @@ public final class SpawnerCreature {
|
|
|
|
|
|
|
|
j = MathHelper.floor(entityhuman.locZ / 16.0D);
|
|
|
|
byte b0 = 8;
|
|
|
|
+ // Spigot Start
|
|
|
|
+ b0 = worldserver.spigotConfig.mobSpawnRange;
|
|
|
|
+ b0 = ( b0 > worldserver.spigotConfig.viewDistance ) ? (byte) worldserver.spigotConfig.viewDistance : b0;
|
|
|
|
+ b0 = ( b0 > 8 ) ? 8 : b0;
|
|
|
|
+ // Spigot End
|
|
|
|
|
|
|
|
for (int l = -b0; l <= b0; ++l) {
|
|
|
|
for (int i1 = -b0; i1 <= b0; ++i1) {
|
|
|
|
@@ -89,13 +111,15 @@ public final class SpawnerCreature {
|
|
|
|
if (limit == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
+ int mobcnt = 0;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
- if ((!enumcreaturetype.d() || flag1) && (enumcreaturetype.d() || flag) && (!enumcreaturetype.e() || flag2) && worldserver.a(enumcreaturetype.a()) <= limit * this.a.size() / 256) { // CraftBukkit - use per-world limits
|
|
|
|
+ if ((!enumcreaturetype.d() || flag1) && (enumcreaturetype.d() || flag) && (!enumcreaturetype.e() || flag2) && (mobcnt = getEntityCount(worldserver, enumcreaturetype.a())) <= limit * this.a.size() / 256) { // Spigot - use per-world limits and use all loaded chunks
|
|
|
|
Iterator iterator = this.a.keySet().iterator();
|
|
|
|
|
|
|
|
+ int moblimit = (limit * this.a.size() / 256) - mobcnt + 1; // Spigot - up to 1 more than limit
|
|
|
|
label110:
|
|
|
|
- while (iterator.hasNext()) {
|
|
|
|
+ while (iterator.hasNext() && (moblimit > 0)) { // Spigot - while more allowed
|
|
|
|
// CraftBukkit start = use LongHash and LongObjectHashMap
|
|
|
|
long key = ((Long) iterator.next()).longValue();
|
|
|
|
|
|
|
|
@@ -160,6 +184,13 @@ public final class SpawnerCreature {
|
|
|
|
groupdataentity = entityinsentient.prepare(groupdataentity);
|
|
|
|
worldserver.addEntity(entityinsentient, SpawnReason.NATURAL);
|
|
|
|
// CraftBukkit end
|
|
|
|
+ // Spigot start
|
|
|
|
+ if ( --moblimit <= 0 )
|
|
|
|
+ {
|
|
|
|
+ // If we're past limit, stop spawn
|
|
|
|
+ continue label110;
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
if (j2 >= entityinsentient.bB()) {
|
|
|
|
continue label110;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
index 6cc3a91..46249d7 100644
|
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
@@ -131,4 +131,11 @@ public class SpigotWorldConfig
|
|
|
|
viewDistance = getInt( "view-distance", Bukkit.getViewDistance() );
|
|
|
|
log( "View Distance: " + viewDistance );
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public byte mobSpawnRange;
|
|
|
|
+ private void mobSpawnRange()
|
|
|
|
+ {
|
|
|
|
+ mobSpawnRange = (byte) getInt( "mob-spawn-range", 4 );
|
|
|
|
+ log( "Mob Spawn Range: " + mobSpawnRange );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|