2011-06-07 09:34:23 +02:00
|
|
|
package org.bukkit.craftbukkit;
|
|
|
|
|
|
|
|
import org.bukkit.ChunkSnapshot;
|
2011-06-17 15:23:19 +02:00
|
|
|
import org.bukkit.block.Biome;
|
2011-07-14 21:05:43 +02:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-06-17 15:23:19 +02:00
|
|
|
|
|
|
|
import net.minecraft.server.BiomeBase;
|
2012-01-14 23:02:10 +01:00
|
|
|
|
2011-06-07 09:34:23 +02:00
|
|
|
/**
|
|
|
|
* Represents a static, thread-safe snapshot of chunk of blocks
|
|
|
|
* Purpose is to allow clean, efficient copy of a chunk data to be made, and then handed off for processing in another thread (e.g. map rendering)
|
|
|
|
*/
|
|
|
|
public class CraftChunkSnapshot implements ChunkSnapshot {
|
|
|
|
private final int x, z;
|
|
|
|
private final String worldname;
|
2012-03-01 20:54:59 +01:00
|
|
|
private final short[][] blockids; /* Block IDs, by section */
|
|
|
|
private final byte[][] blockdata;
|
|
|
|
private final byte[][] skylight;
|
|
|
|
private final byte[][] emitlight;
|
|
|
|
private final boolean[] empty;
|
|
|
|
private final int[] hmap; // Height map
|
2011-06-17 15:23:19 +02:00
|
|
|
private final long captureFulltime;
|
|
|
|
private final BiomeBase[] biome;
|
|
|
|
private final double[] biomeTemp;
|
|
|
|
private final double[] biomeRain;
|
2011-06-07 09:34:23 +02:00
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
CraftChunkSnapshot(int x, int z, String wname, long wtime, short[][] sectionBlockIDs, byte[][] sectionBlockData, byte[][] sectionSkyLights, byte[][] sectionEmitLights, boolean[] sectionEmpty, int[] hmap, BiomeBase[] biome, double[] biomeTemp, double[] biomeRain) {
|
2011-06-07 09:34:23 +02:00
|
|
|
this.x = x;
|
|
|
|
this.z = z;
|
|
|
|
this.worldname = wname;
|
2011-06-17 15:23:19 +02:00
|
|
|
this.captureFulltime = wtime;
|
2012-03-01 20:54:59 +01:00
|
|
|
this.blockids = sectionBlockIDs;
|
|
|
|
this.blockdata = sectionBlockData;
|
|
|
|
this.skylight = sectionSkyLights;
|
|
|
|
this.emitlight = sectionEmitLights;
|
|
|
|
this.empty = sectionEmpty;
|
2011-06-07 09:34:23 +02:00
|
|
|
this.hmap = hmap;
|
2011-06-17 15:23:19 +02:00
|
|
|
this.biome = biome;
|
|
|
|
this.biomeTemp = biomeTemp;
|
|
|
|
this.biomeRain = biomeRain;
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getX() {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getZ() {
|
|
|
|
return z;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWorldName() {
|
|
|
|
return worldname;
|
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final int getBlockTypeId(int x, int y, int z) {
|
|
|
|
return blockids[y >> 4][((y & 0xF) << 8) | (z << 4) | x];
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final int getBlockData(int x, int y, int z) {
|
|
|
|
int off = ((y & 0xF) << 7) | (z << 3) | (x >> 1);
|
|
|
|
return (blockdata[y >> 4][off] >> ((x & 1) << 2)) & 0xF;
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final int getBlockSkyLight(int x, int y, int z) {
|
|
|
|
int off = ((y & 0xF) << 7) | (z << 3) | (x >> 1);
|
|
|
|
return (skylight[y >> 4][off] >> ((x & 1) << 2)) & 0xF;
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final int getBlockEmittedLight(int x, int y, int z) {
|
|
|
|
int off = ((y & 0xF) << 7) | (z << 3) | (x >> 1);
|
|
|
|
return (emitlight[y >> 4][off] >> ((x & 1) << 2)) & 0xF;
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final int getHighestBlockYAt(int x, int z) {
|
|
|
|
return hmap[z << 4 | x];
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final Biome getBiome(int x, int z) {
|
2011-09-15 22:57:37 +02:00
|
|
|
return CraftBlock.biomeBaseToBiome(biome[z << 4 | x]);
|
2011-06-17 15:23:19 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final double getRawBiomeTemperature(int x, int z) {
|
2011-09-15 22:57:37 +02:00
|
|
|
return biomeTemp[z << 4 | x];
|
2011-06-17 15:23:19 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final double getRawBiomeRainfall(int x, int z) {
|
2011-09-15 22:57:37 +02:00
|
|
|
return biomeRain[z << 4 | x];
|
2011-06-17 15:23:19 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 20:54:59 +01:00
|
|
|
public final long getCaptureFullTime() {
|
2011-06-17 15:23:19 +02:00
|
|
|
return captureFulltime;
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|
2012-03-01 20:54:59 +01:00
|
|
|
|
|
|
|
public final boolean isSectionEmpty(int sy) {
|
|
|
|
return empty[sy];
|
|
|
|
}
|
2011-06-07 09:34:23 +02:00
|
|
|
}
|