Search in sources :

Example 6 with SectionTypeArray

use of thpmc.vanilla_source.util.SectionTypeArray in project VanillaSource by TheHollowPlanetMC.

the class ImplParallelChunk method setType.

@Override
public void setType(int blockX, int blockY, int blockZ, Material material) {
    int sectionIndex = ChunkUtil.getSectionIndex(blockY);
    SectionTypeArray sectionTypeArray = sectionTypeArrays[sectionIndex];
    if (sectionTypeArray == null) {
        sectionTypeArray = new SectionTypeArray();
        sectionTypeArrays[sectionIndex] = sectionTypeArray;
    }
    Object iBlockData = NMSManager.getNMSHandler().getIBlockData(material.createBlockData());
    sectionTypeArray.setType(blockX & 0xF, blockY & 0xF, blockZ & 0xF, iBlockData);
    mapChunkPacketCache = null;
}
Also used : SectionTypeArray(thpmc.vanilla_source.util.SectionTypeArray)

Example 7 with SectionTypeArray

use of thpmc.vanilla_source.util.SectionTypeArray in project VanillaSource by TheHollowPlanetMC.

the class ImplParallelChunk method getType.

@Override
@Nullable
public Material getType(int blockX, int blockY, int blockZ) {
    int sectionIndex = ChunkUtil.getSectionIndex(blockY);
    SectionTypeArray sectionTypeArray = sectionTypeArrays[sectionIndex];
    if (sectionTypeArray == null)
        return null;
    Object iBlockData = sectionTypeArray.getType(blockX & 0xF, blockY & 0xF, blockZ & 0xF);
    if (iBlockData == null)
        return null;
    return NMSManager.getNMSHandler().getBukkitBlockData(iBlockData).getMaterial();
}
Also used : SectionTypeArray(thpmc.vanilla_source.util.SectionTypeArray) Nullable(org.jetbrains.annotations.Nullable)

Example 8 with SectionTypeArray

use of thpmc.vanilla_source.util.SectionTypeArray in project VanillaSource by TheHollowPlanetMC.

the class ImplParallelUniverse method addDiffs.

@Override
public void addDiffs(ParallelUniverse universe) {
    int indexStart = NMSManager.isHigher_v1_18_R1() ? -4 : 0;
    int indexEnd = NMSManager.isHigher_v1_18_R1() ? 20 : 16;
    for (ParallelWorld diffWorld : universe.getAllWorld()) {
        for (ParallelChunk diffChunk : diffWorld.getAllChunk()) {
            for (int i = indexStart; i < indexEnd; i++) {
                ParallelWorld thisWorld = null;
                ParallelChunk thisChunk = null;
                SectionTypeArray sectionTypeArray = diffChunk.getSectionTypeArray(i);
                if (sectionTypeArray != null) {
                    thisWorld = this.getWorld(diffWorld.getName());
                    thisChunk = ((ImplParallelWorld) thisWorld).createChunkIfAbsent(diffChunk.getChunkX(), diffChunk.getChunkZ());
                    SectionTypeArray thisType = ((ImplParallelChunk) thisChunk).createSectionTypeArrayIfAbsent(i);
                    sectionTypeArray.threadsafeIteration(thisType::setType);
                }
                SectionLevelArray blockLightLevelArray = diffChunk.getBlockLightSectionLevelArray(i);
                if (blockLightLevelArray != null) {
                    if (thisWorld == null)
                        thisWorld = this.getWorld(diffWorld.getName());
                    if (thisChunk == null)
                        thisChunk = ((ImplParallelWorld) thisWorld).createChunkIfAbsent(diffChunk.getChunkX(), diffChunk.getChunkZ());
                    SectionLevelArray thisLevel = ((ImplParallelChunk) thisChunk).createBlockLightSectionLevelArrayIfAbsent(i);
                    blockLightLevelArray.threadsafeIteration(thisLevel::setLevel);
                }
                SectionLevelArray skyLightLevelArray = diffChunk.getSkyLightSectionLevelArray(i);
                if (skyLightLevelArray != null) {
                    if (thisWorld == null)
                        thisWorld = this.getWorld(diffWorld.getName());
                    if (thisChunk == null)
                        thisChunk = ((ImplParallelWorld) thisWorld).createChunkIfAbsent(diffChunk.getChunkX(), diffChunk.getChunkZ());
                    SectionLevelArray thisLevel = ((ImplParallelChunk) thisChunk).createSkyLightSectionLevelArrayIfAbsent(i);
                    skyLightLevelArray.threadsafeIteration(thisLevel::setLevel);
                }
            }
        }
    }
    for (EnginePlayer EnginePlayer : this.getResidents()) {
        ((ImplEnginePlayer) EnginePlayer).setUniverseRaw(null);
        EnginePlayer.setUniverse(this);
    }
}
Also used : ParallelWorld(thpmc.vanilla_source.api.world.parallel.ParallelWorld) ParallelChunk(thpmc.vanilla_source.api.world.parallel.ParallelChunk) EnginePlayer(thpmc.vanilla_source.api.player.EnginePlayer) SectionTypeArray(thpmc.vanilla_source.util.SectionTypeArray) SectionLevelArray(thpmc.vanilla_source.util.SectionLevelArray)

Example 9 with SectionTypeArray

use of thpmc.vanilla_source.util.SectionTypeArray in project VanillaSource by TheHollowPlanetMC.

the class ImplParallelChunk method setBlockData.

@Override
public void setBlockData(int blockX, int blockY, int blockZ, BlockData blockData) {
    int sectionIndex = ChunkUtil.getSectionIndex(blockY);
    SectionTypeArray sectionTypeArray = sectionTypeArrays[sectionIndex];
    if (sectionTypeArray == null) {
        sectionTypeArray = new SectionTypeArray();
        sectionTypeArrays[sectionIndex] = sectionTypeArray;
    }
    Object iBlockData = NMSManager.getNMSHandler().getIBlockData(blockData);
    sectionTypeArray.setType(blockX & 0xF, blockY & 0xF, blockZ & 0xF, iBlockData);
    mapChunkPacketCache = null;
}
Also used : SectionTypeArray(thpmc.vanilla_source.util.SectionTypeArray)

Example 10 with SectionTypeArray

use of thpmc.vanilla_source.util.SectionTypeArray in project VanillaSource by TheHollowPlanetMC.

the class ImplParallelChunk method hasBlockData.

@Override
public boolean hasBlockData(int blockX, int blockY, int blockZ) {
    int sectionIndex = ChunkUtil.getSectionIndex(blockY);
    SectionTypeArray sectionTypeArray = sectionTypeArrays[sectionIndex];
    if (sectionTypeArray == null)
        return false;
    return sectionTypeArray.contains(blockX & 0xF, blockY & 0xF, blockZ & 0xF);
}
Also used : SectionTypeArray(thpmc.vanilla_source.util.SectionTypeArray)

Aggregations

SectionTypeArray (thpmc.vanilla_source.util.SectionTypeArray)18 ParallelChunk (thpmc.vanilla_source.api.world.parallel.ParallelChunk)5 ParallelWorld (thpmc.vanilla_source.api.world.parallel.ParallelWorld)5 Nullable (org.jetbrains.annotations.Nullable)4 ParallelUniverse (thpmc.vanilla_source.api.world.parallel.ParallelUniverse)3 List (java.util.List)2 net.minecraft.server.v1_16_R3 (net.minecraft.server.v1_16_R3)2 ChunkSnapshot (org.bukkit.ChunkSnapshot)2 World (org.bukkit.World)2 CraftChunk (org.bukkit.craftbukkit.v1_16_R3.CraftChunk)2 CraftWorld (org.bukkit.craftbukkit.v1_16_R3.CraftWorld)2 CraftBlockData (org.bukkit.craftbukkit.v1_16_R3.block.data.CraftBlockData)2 SectionLevelArray (thpmc.vanilla_source.util.SectionLevelArray)2 java.util (java.util)1 net.minecraft.server.v1_15_R1 (net.minecraft.server.v1_15_R1)1 IBlockData (net.minecraft.server.v1_16_R3.IBlockData)1 PacketPlayOutMultiBlockChange (net.minecraft.server.v1_16_R3.PacketPlayOutMultiBlockChange)1 SectionPosition (net.minecraft.server.v1_16_R3.SectionPosition)1 Bukkit (org.bukkit.Bukkit)1 BlockData (org.bukkit.block.data.BlockData)1