Minestom/src/main/java/fr/themode/minestom/instance/Chunk.java

92 lines
2.5 KiB
Java

package fr.themode.minestom.instance;
import fr.themode.minestom.entity.Entity;
import fr.themode.minestom.entity.EntityCreature;
import fr.themode.minestom.entity.Player;
import java.util.Collections;
import java.util.HashMap;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;
public class Chunk {
protected Set<EntityCreature> creatures = new CopyOnWriteArraySet<>();
protected Set<Player> players = new CopyOnWriteArraySet<>();
private int chunkX, chunkZ;
private Biome biome;
private HashMap<Short, Short> blocks = new HashMap<>(); // Index/BlockID
public Chunk(Biome biome, int chunkX, int chunkZ) {
this.biome = biome;
this.chunkX = chunkX;
this.chunkZ = chunkZ;
}
protected void setBlock(int x, int y, int z, short blockId) {
short index = (short) (x & 0x000F);
index |= (y << 4) & 0x0FF0;
index |= (z << 12) & 0xF000;
this.blocks.put(index, blockId);
}
public short getBlockId(int x, int y, int z) {
short index = (short) (x & 0x000F);
index |= (y << 4) & 0x0FF0;
index |= (z << 12) & 0xF000;
return this.blocks.getOrDefault(index, (short) 0);
}
public void addEntity(Entity entity) {
if (entity instanceof Player) {
synchronized (players) {
if (this.players.contains(entity))
return;
this.players.add((Player) entity);
}
} else if (entity instanceof EntityCreature) {
synchronized (creatures) {
if (this.creatures.contains(entity))
return;
this.creatures.add((EntityCreature) entity);
}
}
}
public void removeEntity(Entity entity) {
if (entity instanceof Player) {
synchronized (players) {
this.players.remove(entity);
}
} else if (entity instanceof EntityCreature) {
synchronized (creatures) {
this.creatures.remove(entity);
}
}
}
public HashMap<Short, Short> getBlocks() {
return blocks;
}
public Biome getBiome() {
return biome;
}
public int getChunkX() {
return chunkX;
}
public int getChunkZ() {
return chunkZ;
}
public Set<EntityCreature> getCreatures() {
return Collections.unmodifiableSet(creatures);
}
public Set<Player> getPlayers() {
return Collections.unmodifiableSet(players);
}
}