From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: William Blake Galbreath Date: Thu, 26 Dec 2019 18:52:55 -0600 Subject: [PATCH] Cat spawning options diff --git a/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlace.java b/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlace.java index 13d94ecd703b3cd0412e138532d2dd74e5bf250d..6082eed2d28f3be65daa7e7eb6f2c2a89bb28ff1 100644 --- a/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlace.java +++ b/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlace.java @@ -191,6 +191,7 @@ public class VillagePlace extends RegionFileSection { ((VillagePlaceSection) this.e(SectionPosition.a(blockposition).s())).a(blockposition); } + public long count(Predicate predicate, BlockPosition blockposition, int i, VillagePlace.Occupancy villageplace_occupancy) { return a(predicate, blockposition, i, villageplace_occupancy); } // Purpur - OBFHELPER public long a(Predicate predicate, BlockPosition blockposition, int i, VillagePlace.Occupancy villageplace_occupancy) { return this.c(predicate, blockposition, i, villageplace_occupancy).count(); } diff --git a/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlaceType.java b/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlaceType.java index db1ddce5774754891dc8a3ea5b66951ebc3a07a8..6a45ab049a4beeeaf7b3b5acf2946767f6e1198f 100644 --- a/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlaceType.java +++ b/src/main/java/net/minecraft/world/entity/ai/village/poi/VillagePlaceType.java @@ -53,7 +53,7 @@ public class VillagePlaceType { public static final VillagePlaceType o = a("shepherd", a(Blocks.LOOM), 1, 1); public static final VillagePlaceType p = a("toolsmith", a(Blocks.SMITHING_TABLE), 1, 1); public static final VillagePlaceType q = a("weaponsmith", a(Blocks.GRINDSTONE), 1, 1); - public static final VillagePlaceType r = a("home", VillagePlaceType.z, 1, 1); + public static final VillagePlaceType r = a("home", VillagePlaceType.z, 1, 1); public static VillagePlaceType home() { return r; } // Purpur - OBFHELPER public static final VillagePlaceType s = a("meeting", a(Blocks.BELL), 32, 6); public static final VillagePlaceType t = a("beehive", a(Blocks.BEEHIVE), 0, 1); public static final VillagePlaceType u = a("bee_nest", a(Blocks.BEE_NEST), 0, 1); @@ -92,6 +92,7 @@ public class VillagePlaceType { return this.D; } + public Predicate predicate() { return c(); } // Purpur - OBFHELPER public Predicate c() { return this.E; } diff --git a/src/main/java/net/minecraft/world/entity/npc/MobSpawnerCat.java b/src/main/java/net/minecraft/world/entity/npc/MobSpawnerCat.java index 7a495cf88d723790ee3f63645cb4792052284f32..2f54c26151c049df9d071c887dd33e48df041437 100644 --- a/src/main/java/net/minecraft/world/entity/npc/MobSpawnerCat.java +++ b/src/main/java/net/minecraft/world/entity/npc/MobSpawnerCat.java @@ -34,7 +34,7 @@ public class MobSpawnerCat implements MobSpawner { if (this.a > 0) { return 0; } else { - this.a = 1200; + this.a = worldserver.purpurConfig.catSpawnDelay; // Purpur; EntityPlayer entityplayer = worldserver.q_(); if (entityplayer == null) { @@ -68,10 +68,12 @@ public class MobSpawnerCat implements MobSpawner { } private int a(WorldServer worldserver, BlockPosition blockposition) { - boolean flag = true; - - if (worldserver.y().a(VillagePlaceType.r.c(), blockposition, 48, VillagePlace.Occupancy.IS_OCCUPIED) > 4L) { - List list = worldserver.a(EntityCat.class, (new AxisAlignedBB(blockposition)).grow(48.0D, 8.0D, 48.0D)); + // Purpur start + int range = worldserver.purpurConfig.catSpawnVillageScanRange; + if (range <= 0) return 0; + if (worldserver.getPoiStorage().count(VillagePlaceType.home().predicate(), blockposition, range, VillagePlace.Occupancy.IS_OCCUPIED) > 4L) { + List list = worldserver.getEntitiesInAABB(EntityCat.class, (new AxisAlignedBB(blockposition)).grow(range, 8.0D, range)); + // Purpur end if (list.size() < 5) { return this.a(blockposition, worldserver); @@ -82,9 +84,11 @@ public class MobSpawnerCat implements MobSpawner { } private int b(WorldServer worldserver, BlockPosition blockposition) { - boolean flag = true; - List list = worldserver.a(EntityCat.class, (new AxisAlignedBB(blockposition)).grow(16.0D, 8.0D, 16.0D)); - + // Purpur start + int range = worldserver.purpurConfig.catSpawnSwampHutScanRange; + if (range <= 0) return 0; + List list = worldserver.getEntitiesInAABB(EntityCat.class, (new AxisAlignedBB(blockposition)).grow(range, 8.0D, range)); + // Purpur end return list.size() < 1 ? this.a(blockposition, worldserver) : 0; } diff --git a/src/main/java/net/minecraft/world/level/IEntityAccess.java b/src/main/java/net/minecraft/world/level/IEntityAccess.java index fd56b2f15e570f266a79c25823a3b3530a693510..18a5d11cce748695c8f03be565d2ea37a276a981 100644 --- a/src/main/java/net/minecraft/world/level/IEntityAccess.java +++ b/src/main/java/net/minecraft/world/level/IEntityAccess.java @@ -56,6 +56,7 @@ public interface IEntityAccess { } } + default List getEntitiesInAABB(Class oclass, AxisAlignedBB axisalignedbb) { return a(oclass, axisalignedbb); } // Purpur - OBFHELPER default List a(Class oclass, AxisAlignedBB axisalignedbb) { return this.a(oclass, axisalignedbb, IEntitySelector.g); } diff --git a/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java b/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java index 90f367f2f04f9bf66b7f54ffe784db16c7ca868b..9e935668147d1cd822f33c9e8d41e9541022aa8a 100644 --- a/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java +++ b/src/main/java/net/pl3x/purpur/PurpurWorldConfig.java @@ -118,6 +118,15 @@ public class PurpurWorldConfig { turtleEggsBreakFromMinecarts = getBoolean("blocks.turtle_egg.break-from-minecarts", turtleEggsBreakFromMinecarts); } + public int catSpawnDelay = 1200; + public int catSpawnSwampHutScanRange = 16; + public int catSpawnVillageScanRange = 48; + private void catSettings() { + catSpawnDelay = getInt("mobs.cat.spawn-delay", catSpawnDelay); + catSpawnSwampHutScanRange = getInt("mobs.cat.scan-range-for-other-cats.swamp-hut", catSpawnSwampHutScanRange); + catSpawnVillageScanRange = getInt("mobs.cat.scan-range-for-other-cats.village", catSpawnVillageScanRange); + } + public boolean chickenRetaliate = false; private void chickenSettings() { chickenRetaliate = getBoolean("mobs.chicken.retaliate", chickenRetaliate);