Paper/src/main/java/net/minecraft/server/SpawnerCreature.java

257 Zeilen
12 KiB
Java

2011-06-22 17:55:04 +02:00
package net.minecraft.server;
2011-09-15 02:23:52 +02:00
import java.util.Collection;
2011-11-20 09:01:14 +01:00
import java.util.HashMap;
2011-06-22 17:55:04 +02:00
import java.util.Iterator;
import java.util.List;
2011-09-15 02:23:52 +02:00
import java.util.Random;
2011-06-22 17:55:04 +02:00
2012-02-10 06:43:12 +01:00
// CraftBukkit start
import org.bukkit.craftbukkit.util.LongHash;
import org.bukkit.craftbukkit.util.LongObjectHashMap;
2011-06-22 17:55:04 +02:00
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
2012-02-10 06:43:12 +01:00
// CraftBukkit end
2011-06-22 17:55:04 +02:00
public final class SpawnerCreature {
private static LongObjectHashMap<Boolean> b = new LongObjectHashMap<Boolean>(); // CraftBukkit - HashMap -> LongObjectHashMap
2011-06-22 17:55:04 +02:00
protected static final Class[] a = new Class[] { EntitySpider.class, EntityZombie.class, EntitySkeleton.class};
protected static ChunkPosition getRandomPosition(World world, int i, int j) {
2012-03-01 11:49:23 +01:00
Chunk chunk = world.getChunkAt(i, j);
int k = i * 16 + world.random.nextInt(16);
2012-07-29 09:33:13 +02:00
int l = j * 16 + world.random.nextInt(16);
2013-03-13 23:33:27 +01:00
int i1 = world.random.nextInt(chunk == null ? world.Q() : chunk.h() + 16 - 1);
2011-06-22 17:55:04 +02:00
2012-07-29 09:33:13 +02:00
return new ChunkPosition(k, i1, l);
2011-06-22 17:55:04 +02:00
}
public static final int spawnEntities(WorldServer worldserver, boolean flag, boolean flag1, boolean flag2) {
2011-06-22 17:55:04 +02:00
if (!flag && !flag1) {
return 0;
} else {
b.clear();
2011-06-22 17:55:04 +02:00
int i;
int j;
2012-07-29 09:33:13 +02:00
for (i = 0; i < worldserver.players.size(); ++i) {
EntityHuman entityhuman = (EntityHuman) worldserver.players.get(i);
2011-06-22 17:55:04 +02:00
int k = MathHelper.floor(entityhuman.locX / 16.0D);
j = MathHelper.floor(entityhuman.locZ / 16.0D);
byte b0 = 8;
for (int l = -b0; l <= b0; ++l) {
for (int i1 = -b0; i1 <= b0; ++i1) {
boolean flag3 = l == -b0 || l == b0 || i1 == -b0 || i1 == b0;
// CraftBukkit start
long chunkCoords = LongHash.toLong(l + k, i1 + j);
2011-11-20 09:01:14 +01:00
if (!flag3) {
b.put(chunkCoords, false);
} else if (!b.containsKey(chunkCoords)) {
b.put(chunkCoords, true);
2011-11-20 09:01:14 +01:00
}
// CraftBukkit end
2011-06-22 17:55:04 +02:00
}
}
}
i = 0;
2012-07-29 09:33:13 +02:00
ChunkCoordinates chunkcoordinates = worldserver.getSpawn();
2011-06-22 17:55:04 +02:00
EnumCreatureType[] aenumcreaturetype = EnumCreatureType.values();
j = aenumcreaturetype.length;
for (int j1 = 0; j1 < j; ++j1) {
EnumCreatureType enumcreaturetype = aenumcreaturetype[j1];
// CraftBukkit start - use per-world spawn limits
int limit = enumcreaturetype.b();
switch (enumcreaturetype) {
case MONSTER:
2012-07-29 09:33:13 +02:00
limit = worldserver.getWorld().getMonsterSpawnLimit();
break;
case CREATURE:
2012-07-29 09:33:13 +02:00
limit = worldserver.getWorld().getAnimalSpawnLimit();
break;
case WATER_CREATURE:
2012-07-29 09:33:13 +02:00
limit = worldserver.getWorld().getWaterAnimalSpawnLimit();
break;
case AMBIENT:
limit = worldserver.getWorld().getAmbientSpawnLimit();
break;
}
if (limit == 0) {
continue;
}
// CraftBukkit end
if ((!enumcreaturetype.d() || flag1) && (enumcreaturetype.d() || flag) && (!enumcreaturetype.e() || flag2) && worldserver.a(enumcreaturetype.a()) <= limit * b.size() / 256) { // CraftBukkit - use per-world limits
Iterator iterator = b.keySet().iterator();
2011-06-22 17:55:04 +02:00
label110:
while (iterator.hasNext()) {
// CraftBukkit start
long key = ((Long) iterator.next()).longValue();
if (!b.get(key)) {
ChunkPosition chunkposition = getRandomPosition(worldserver, LongHash.msw(key), LongHash.lsw(key));
// CraftBukkit end
2011-09-15 02:23:52 +02:00
int k1 = chunkposition.x;
int l1 = chunkposition.y;
int i2 = chunkposition.z;
2011-06-22 17:55:04 +02:00
2013-03-13 23:33:27 +01:00
if (!worldserver.u(k1, l1, i2) && worldserver.getMaterial(k1, l1, i2) == enumcreaturetype.c()) {
2011-09-15 02:23:52 +02:00
int j2 = 0;
2011-11-20 09:01:14 +01:00
int k2 = 0;
2011-06-22 17:55:04 +02:00
2011-11-20 09:01:14 +01:00
while (k2 < 3) {
2011-09-15 02:23:52 +02:00
int l2 = k1;
int i3 = l1;
2011-06-22 17:55:04 +02:00
int j3 = i2;
byte b1 = 6;
2011-11-20 09:01:14 +01:00
BiomeMeta biomemeta = null;
int k3 = 0;
while (true) {
if (k3 < 4) {
label103: {
2012-07-29 09:33:13 +02:00
l2 += worldserver.random.nextInt(b1) - worldserver.random.nextInt(b1);
i3 += worldserver.random.nextInt(1) - worldserver.random.nextInt(1);
j3 += worldserver.random.nextInt(b1) - worldserver.random.nextInt(b1);
if (a(enumcreaturetype, worldserver, l2, i3, j3)) {
2011-11-20 09:01:14 +01:00
float f = (float) l2 + 0.5F;
float f1 = (float) i3;
float f2 = (float) j3 + 0.5F;
2012-07-29 09:33:13 +02:00
if (worldserver.findNearbyPlayer((double) f, (double) f1, (double) f2, 24.0D) == null) {
2011-11-20 09:01:14 +01:00
float f3 = f - (float) chunkcoordinates.x;
float f4 = f1 - (float) chunkcoordinates.y;
float f5 = f2 - (float) chunkcoordinates.z;
float f6 = f3 * f3 + f4 * f4 + f5 * f5;
if (f6 >= 576.0F) {
if (biomemeta == null) {
2012-07-29 09:33:13 +02:00
biomemeta = worldserver.a(enumcreaturetype, l2, i3, j3);
2011-11-20 09:01:14 +01:00
if (biomemeta == null) {
break label103;
2011-11-20 09:01:14 +01:00
}
}
EntityLiving entityliving;
try {
2012-07-29 09:33:13 +02:00
entityliving = (EntityLiving) biomemeta.b.getConstructor(new Class[] { World.class}).newInstance(new Object[] { worldserver});
2011-11-20 09:01:14 +01:00
} catch (Exception exception) {
exception.printStackTrace();
return i;
}
2012-07-29 09:33:13 +02:00
entityliving.setPositionRotation((double) f, (double) f1, (double) f2, worldserver.random.nextFloat() * 360.0F, 0.0F);
if (entityliving.canSpawn()) {
2011-11-20 09:01:14 +01:00
++j2;
// CraftBukkit start - added a reason for spawning this creature, moved a(entityliving, world...) up
2012-07-29 09:33:13 +02:00
a(entityliving, worldserver, f, f1, f2);
worldserver.addEntity(entityliving, SpawnReason.NATURAL);
// CraftBukkit end
2013-03-13 23:33:27 +01:00
if (j2 >= entityliving.by()) {
continue label110;
2011-11-20 09:01:14 +01:00
}
}
i += j2;
2011-06-22 17:55:04 +02:00
}
}
}
2011-11-20 09:01:14 +01:00
++k3;
continue;
2011-06-22 17:55:04 +02:00
}
}
2011-11-20 09:01:14 +01:00
++k2;
break;
2011-06-22 17:55:04 +02:00
}
}
}
}
}
}
}
return i;
}
}
2012-03-01 11:49:23 +01:00
public static boolean a(EnumCreatureType enumcreaturetype, World world, int i, int j, int k) {
if (enumcreaturetype.c() == Material.WATER) {
2013-03-13 23:33:27 +01:00
return world.getMaterial(i, j, k).isLiquid() && world.getMaterial(i, j - 1, k).isLiquid() && !world.u(i, j + 1, k);
} else if (!world.w(i, j - 1, k)) {
2012-07-29 09:33:13 +02:00
return false;
2012-03-01 11:49:23 +01:00
} else {
int l = world.getTypeId(i, j - 1, k);
2013-03-13 23:33:27 +01:00
return l != Block.BEDROCK.id && !world.u(i, j, k) && !world.getMaterial(i, j, k).isLiquid() && !world.u(i, j + 1, k);
2012-03-01 11:49:23 +01:00
}
2011-06-22 17:55:04 +02:00
}
private static void a(EntityLiving entityliving, World world, float f, float f1, float f2) {
2013-03-13 23:33:27 +01:00
entityliving.bJ();
2011-06-22 17:55:04 +02:00
}
2011-09-15 02:23:52 +02:00
public static void a(World world, BiomeBase biomebase, int i, int j, int k, int l, Random random) {
2012-01-12 16:27:39 +01:00
List list = biomebase.getMobs(EnumCreatureType.CREATURE);
2011-09-15 02:23:52 +02:00
if (!list.isEmpty()) {
while (random.nextFloat() < biomebase.f()) {
2011-09-15 02:23:52 +02:00
BiomeMeta biomemeta = (BiomeMeta) WeightedRandom.a(world.random, (Collection) list);
2012-07-29 09:33:13 +02:00
int i1 = biomemeta.c + random.nextInt(1 + biomemeta.d - biomemeta.c);
2011-09-15 02:23:52 +02:00
int j1 = i + random.nextInt(k);
int k1 = j + random.nextInt(l);
int l1 = j1;
int i2 = k1;
for (int j2 = 0; j2 < i1; ++j2) {
boolean flag = false;
for (int k2 = 0; !flag && k2 < 4; ++k2) {
int l2 = world.i(j1, k1);
2011-09-15 02:23:52 +02:00
if (a(EnumCreatureType.CREATURE, world, j1, l2, k1)) {
float f = (float) j1 + 0.5F;
float f1 = (float) l2;
float f2 = (float) k1 + 0.5F;
EntityLiving entityliving;
try {
2012-07-29 09:33:13 +02:00
entityliving = (EntityLiving) biomemeta.b.getConstructor(new Class[] { World.class}).newInstance(new Object[] { world});
2011-09-15 02:23:52 +02:00
} catch (Exception exception) {
exception.printStackTrace();
continue;
}
entityliving.setPositionRotation((double) f, (double) f1, (double) f2, random.nextFloat() * 360.0F, 0.0F);
// CraftBukkit start - added a reason for spawning this creature, moved a(entity, world...) up
2011-09-15 02:23:52 +02:00
a(entityliving, world, f, f1, f2);
world.addEntity(entityliving, SpawnReason.CHUNK_GEN);
// CraftBukkit end
2011-09-15 02:23:52 +02:00
flag = true;
}
j1 += random.nextInt(5) - random.nextInt(5);
for (k1 += random.nextInt(5) - random.nextInt(5); j1 < i || j1 >= i + k || k1 < j || k1 >= j + k; k1 = i2 + random.nextInt(5) - random.nextInt(5)) {
j1 = l1 + random.nextInt(5) - random.nextInt(5);
}
}
}
}
}
}
}