From eaaf2c2cf387017ab7f34905ef8b916651c56254 Mon Sep 17 00:00:00 2001 From: Byteflux Date: Tue, 4 Aug 2015 15:25:37 -0700 Subject: [PATCH] Optimize getCubes() --- .../0064-Optimize-getCubes.patch | 45 +++++++++++++++++++ .../0064-Optimize-item-movement.patch | 22 --------- 2 files changed, 45 insertions(+), 22 deletions(-) create mode 100644 Spigot-Server-Patches/0064-Optimize-getCubes.patch delete mode 100644 Spigot-Server-Patches/0064-Optimize-item-movement.patch diff --git a/Spigot-Server-Patches/0064-Optimize-getCubes.patch b/Spigot-Server-Patches/0064-Optimize-getCubes.patch new file mode 100644 index 0000000000..33e4b54d32 --- /dev/null +++ b/Spigot-Server-Patches/0064-Optimize-getCubes.patch @@ -0,0 +1,45 @@ +From 758c7bfd2f600e5bd2dec410a18106ef72704eee Mon Sep 17 00:00:00 2001 +From: Byteflux +Date: Tue, 14 Jul 2015 10:03:45 -0700 +Subject: [PATCH] Optimize getCubes() + + +diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java +index 1fc0387..4e8ba43 100644 +--- a/src/main/java/net/minecraft/server/World.java ++++ b/src/main/java/net/minecraft/server/World.java +@@ -1162,11 +1162,12 @@ public abstract class World implements IBlockAccess { + int cx = chunkx << 4; + for ( int chunkz = ( i1 >> 4 ); chunkz <= ( ( j1 - 1 ) >> 4 ); chunkz++ ) + { +- if ( !this.isChunkLoaded( chunkx, chunkz, true ) ) ++ Chunk chunk = this.getChunkIfLoaded( chunkx, chunkz ); ++ if ( chunk == null ) + { + // PaperSpigot start + if (entity.loadChunks) { +- ((ChunkProviderServer) entity.world.chunkProvider).getChunkAt(chunkx, chunkz); ++ chunk = ((ChunkProviderServer) entity.world.chunkProvider).getChunkAt(chunkx, chunkz); + } else { + entity.inUnloadedChunk = true; // PaperSpigot - Remove entities in unloaded chunks + continue; +@@ -1174,7 +1175,6 @@ public abstract class World implements IBlockAccess { + // PaperSpigot end + } + int cz = chunkz << 4; +- Chunk chunk = this.getChunkAt( chunkx, chunkz ); + // Compute ranges within chunk + int xstart = ( i < cx ) ? cx : i; + int xend = ( j < ( cx + 16 ) ) ? j : ( cx + 16 ); +@@ -1222,6 +1222,8 @@ public abstract class World implements IBlockAccess { + } + // Spigot end + ++ if (entity instanceof EntityItem) return arraylist; // PaperSpigot - Optimize item movement ++ + double d0 = 0.25D; + List list = this.getEntities(entity, axisalignedbb.grow(d0, d0, d0)); + +-- +2.4.6.windows.1 + diff --git a/Spigot-Server-Patches/0064-Optimize-item-movement.patch b/Spigot-Server-Patches/0064-Optimize-item-movement.patch deleted file mode 100644 index ae332ea746..0000000000 --- a/Spigot-Server-Patches/0064-Optimize-item-movement.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 7ea0b75ec2b73d46cffd36cc8bf2db862735b16e Mon Sep 17 00:00:00 2001 -From: Byteflux -Date: Tue, 14 Jul 2015 10:03:45 -0700 -Subject: [PATCH] Optimize item movement - - -diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index eacd4b8..62b8b9e 100644 ---- a/src/main/java/net/minecraft/server/World.java -+++ b/src/main/java/net/minecraft/server/World.java -@@ -1222,6 +1222,8 @@ public abstract class World implements IBlockAccess { - } - // Spigot end - -+ if (entity instanceof EntityItem) return arraylist; // PaperSpigot - Optimize item movement -+ - double d0 = 0.25D; - List list = this.getEntities(entity, axisalignedbb.grow(d0, d0, d0)); - --- -1.9.5.msysgit.1 -