use of thpmc.engine.api.world.parallel.ParallelChunk in project THP-Engine by TheHollowPlanetMC.
the class MultiBlockChangePacketHandler method rewrite.
@Override
public Object rewrite(Object packet, EnginePlayer EnginePlayer, boolean cacheSetting) {
ParallelUniverse universe = EnginePlayer.getUniverse();
if (universe == null)
return packet;
String worldName = EnginePlayer.getBukkitPlayer().getWorld().getName();
ParallelWorld parallelWorld = universe.getWorld(worldName);
try {
SectionPosition aValue = (SectionPosition) a.get(packet);
int chunkX = aValue.getX();
int chunkZ = aValue.getZ();
ParallelChunk parallelChunk = parallelWorld.getChunk(chunkX, chunkZ);
if (parallelChunk == null)
return packet;
SectionTypeArray sectionTypeArray = parallelChunk.getSectionTypeArray(aValue.getY());
if (sectionTypeArray == null)
return packet;
short[] bValue = (short[]) b.get(packet);
IBlockData[] cValueClone = ((IBlockData[]) c.get(packet)).clone();
for (int i = 0; i < bValue.length; i++) {
short coord = bValue[i];
int x = coord >> 8;
int y = coord & 0xF;
int z = (coord >> 4) & 0xF;
IBlockData iBlockData = (IBlockData) sectionTypeArray.getType(x, y, z);
if (iBlockData != null) {
cValueClone[i] = iBlockData;
}
}
boolean dValue = d.getBoolean(packet);
PacketPlayOutMultiBlockChange newPacket = new PacketPlayOutMultiBlockChange();
a.set(newPacket, aValue);
b.set(newPacket, bValue);
c.set(newPacket, cValueClone);
d.set(newPacket, dValue);
return newPacket;
} catch (Exception e) {
e.printStackTrace();
}
return packet;
}
use of thpmc.engine.api.world.parallel.ParallelChunk in project THP-Engine by TheHollowPlanetMC.
the class ImplEnginePlayer method setUniverse.
@Override
public synchronized void setUniverse(@Nullable ParallelUniverse parallelUniverse) {
if (currentUniverse == parallelUniverse)
return;
if (currentUniverse != null) {
((ImplParallelUniverse) currentUniverse).getPlayers().remove(this);
ParallelWorld currentWorld = currentUniverse.getWorld(player.getWorld().getName());
this.currentUniverse = parallelUniverse;
int range = Bukkit.getViewDistance();
int chunkX = player.getLocation().getBlockX() >> 4;
int chunkZ = player.getLocation().getBlockZ() >> 4;
for (int x = -range; x < range; x++) {
for (int z = -range; z < range; z++) {
ParallelChunk chunk = currentWorld.getChunk(chunkX + x, chunkZ + z);
if (chunk == null)
continue;
((ImplParallelChunk) chunk).sendClearPacket(player);
}
}
}
if (parallelUniverse != null) {
((ImplParallelUniverse) parallelUniverse).getPlayers().add(this);
ParallelWorld nextWorld = parallelUniverse.getWorld(player.getWorld().getName());
this.currentUniverse = parallelUniverse;
int range = Bukkit.getViewDistance();
int chunkX = player.getLocation().getBlockX() >> 4;
int chunkZ = player.getLocation().getBlockZ() >> 4;
for (int x = -range; x < range; x++) {
for (int z = -range; z < range; z++) {
ParallelChunk chunk = nextWorld.getChunk(chunkX + x, chunkZ + z);
if (chunk == null)
continue;
chunk.sendUpdate(player);
}
}
}
this.currentUniverse = parallelUniverse;
}
use of thpmc.engine.api.world.parallel.ParallelChunk in project THP-Engine by TheHollowPlanetMC.
the class ImplParallelWorld method getBlockLightLevel.
@Override
public int getBlockLightLevel(int blockX, int blockY, int blockZ) {
int chunkX = blockX >> 4;
int chunkZ = blockZ >> 4;
long coord = ChunkUtil.getCoordinateKey(chunkX, chunkZ);
ParallelChunk parallelChunk = chunkMap.get(coord);
if (parallelChunk == null)
return 0;
return parallelChunk.getBlockLightLevel(blockX, blockY, blockZ);
}
use of thpmc.engine.api.world.parallel.ParallelChunk in project THP-Engine by TheHollowPlanetMC.
the class ImplParallelWorld method removeSkyLight.
@Override
public void removeSkyLight(int blockX, int blockY, int blockZ) {
int chunkX = blockX >> 4;
int chunkZ = blockZ >> 4;
long coord = ChunkUtil.getCoordinateKey(chunkX, chunkZ);
ParallelChunk parallelChunk = chunkMap.get(coord);
if (parallelChunk == null)
return;
parallelChunk.removeSkyLight(blockX, blockY, blockZ);
}
use of thpmc.engine.api.world.parallel.ParallelChunk in project THP-Engine by TheHollowPlanetMC.
the class ImplParallelWorld method getSkyLightLevel.
@Override
public int getSkyLightLevel(int blockX, int blockY, int blockZ) {
int chunkX = blockX >> 4;
int chunkZ = blockZ >> 4;
long coord = ChunkUtil.getCoordinateKey(chunkX, chunkZ);
ParallelChunk parallelChunk = chunkMap.get(coord);
if (parallelChunk == null)
return 0;
return parallelChunk.getSkyLightLevel(blockX, blockY, blockZ);
}
Aggregations