Java Code Examples for cn.nukkit.level.format.FullChunk#getBlockId()

The following examples show how to use cn.nukkit.level.format.FullChunk#getBlockId() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MushroomPopulator.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
protected int getHighestWorkableBlock(ChunkManager level, int x, int z, FullChunk chunk) {
    int y;
    x &= 0xF;
    z &= 0xF;
    for (y = 254; y > 0; --y) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.DIRT || b == Block.GRASS) {
            break;
        } else if (b != Block.AIR && b != Block.SNOW_LAYER) {
            return -1;
        }
    }

    return ++y;
}
 
Example 2
Source File: PopulatorLava.java    From Nukkit with GNU General Public License v3.0 6 votes vote down vote up
@Override
public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom random, FullChunk chunk) {
    this.random = random;
    if (random.nextRange(0, 100) < 5) {
        this.level = level;
        int amount = random.nextRange(0, this.randomAmount + 1) + this.baseAmount;
        int bx = chunkX << 4;
        int bz = chunkZ << 4;
        int tx = bx + 15;
        int tz = bz + 15;
        for (int i = 0; i < amount; ++i) {
            int x = random.nextRange(0, 15);
            int z = random.nextRange(0, 15);
            int y = this.getHighestWorkableBlock(chunk, x, z);
            if (y != -1 && chunk.getBlockId(x, y, z) == Block.AIR) {
                chunk.setBlock(x, y, z, Block.LAVA);
                chunk.setBlockLight(x, y, z, Block.light[Block.LAVA]);
                this.lavaSpread(bx + x, y, bz + z);
            }
        }
    }
}
 
Example 3
Source File: PopulatorGroundFire.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 0; y <= 127; ++y) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 4
Source File: SimpleChunkManager.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
@Override
public int getBlockIdAt(int x, int y, int z) {
    FullChunk chunk = this.getChunk(x >> 4, z >> 4);
    if (chunk != null) {
        return chunk.getBlockId(x & 0xf, y & 0xff, z & 0xf);
    }
    return 0;
}
 
Example 5
Source File: PopulatorLava.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 127; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 6
Source File: PopulatorGlowStone.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 127; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 7
Source File: SimpleChunkManager.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public int getBlockIdAt(int x, int y, int z) {
    FullChunk chunk = this.getChunk(x >> 4, z >> 4);
    if (chunk != null) {
        return chunk.getBlockId(x & 0xf, y & 0xff, z & 0xf);
    }
    return 0;
}
 
Example 8
Source File: PopulatorGroundFire.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
protected int getHighestWorkableBlock(ChunkManager level, int x, int z, FullChunk chunk) {
    int y;
    for (y = 0; y <= 127; ++y) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 9
Source File: PopulatorLava.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 127; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 10
Source File: WaterIcePopulator.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom random, FullChunk chunk) {
    for (int x = 0; x < 16; x++) {
        for (int z = 0; z < 16; z++) {
            Biome biome = EnumBiome.getBiome(chunk.getBiomeId(x, z));
            if (biome.isFreezing()) {
                int topBlock = chunk.getHighestBlockAt(x, z);
                if (chunk.getBlockId(x, topBlock, z) == STILL_WATER)     {
                    chunk.setBlockId(x, topBlock, z, ICE);
                }
            }
        }
    }
}
 
Example 11
Source File: PopulatorGlowStone.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    //start scanning a bit lower down to allow space for placing on top
    for (y = 120; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 12
Source File: SimpleChunkManager.java    From Nukkit with GNU General Public License v3.0 5 votes vote down vote up
@Override
public int getBlockIdAt(int x, int y, int z) {
    FullChunk chunk = this.getChunk(x >> 4, z >> 4);
    if (chunk != null) {
        return chunk.getBlockId(x & 0xf, y & 0xff, z & 0xf);
    }
    return 0;
}
 
Example 13
Source File: PopulatorGroundFire.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 0; y <= 127; ++y) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 14
Source File: PopulatorLava.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 127; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 15
Source File: PopulatorGlowStone.java    From Jupiter with GNU General Public License v3.0 5 votes vote down vote up
private int getHighestWorkableBlock(FullChunk chunk, int x, int z) {
    int y;
    for (y = 127; y >= 0; y--) {
        int b = chunk.getBlockId(x, y, z);
        if (b == Block.AIR) {
            break;
        }
    }
    return y == 0 ? -1 : y;
}
 
Example 16
Source File: EnsureCover.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
static boolean ensureCover(int x, int y, int z, FullChunk chunk)    {
    int id = chunk.getBlockId(x, y, z);
    return id == AIR || id == SNOW_LAYER;
}
 
Example 17
Source File: EnsureBelow.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
static boolean ensureBelow(int x, int y, int z, int id, FullChunk chunk)    {
    return chunk.getBlockId(x, y - 1, z) == id;
}
 
Example 18
Source File: PopulatorGroundFire.java    From Jupiter with GNU General Public License v3.0 4 votes vote down vote up
private boolean canGroundFireStay(FullChunk chunk, int x, int y, int z) {
    int b = chunk.getBlockId(x, y, z);
    return (b == Block.AIR) && chunk.getBlockId(x, y - 1, z) == Block.NETHERRACK;
}
 
Example 19
Source File: PopulatorGroundCover.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void populate(ChunkManager level, int chunkX, int chunkZ, NukkitRandom random) {
    FullChunk chunk = level.getChunk(chunkX, chunkZ);
    for (int x = 0; x < 16; ++x) {
        for (int z = 0; z < 16; ++z) {
            Biome biome = Biome.getBiome(chunk.getBiomeId(x, z));
            Block[] cover = biome.getGroundCover();
            if (cover != null && cover.length > 0) {
                int diffY = 0;
                if (!cover[0].isSolid()) {
                    diffY = 1;
                }

                int height = chunk.getHeightMap(x, z);
                if (height == 0 || height == 255) height = 126;

                int y;
                for (y = height + 1; y > 0; --y) {
                    int fullId = chunk.getFullBlock(x, y, z);
                    if (fullId != 0 && !Block.get(fullId >> 4).isTransparent()) {
                        break;
                    }
                }
                int startY = Math.min(127, y + diffY);
                int endY = startY - cover.length;
                for (y = startY; y > endY && y >= 0; --y) {
                    Block b = cover[startY - y];
                    int blockId = chunk.getBlockId(x, y, z);
                    if (blockId == 0 && b.isSolid()) {
                        break;
                    }
                    if (b.getDamage() == 0) {
                        chunk.setBlockId(x, y, z, b.getId());
                    } else {
                        chunk.setBlock(x, y, z, b.getId(), b.getDamage());
                    }
                }
            }
        }
    }
}
 
Example 20
Source File: PopulatorGroundFire.java    From Nukkit with GNU General Public License v3.0 4 votes vote down vote up
private boolean canGroundFireStay(FullChunk chunk, int x, int y, int z) {
    int b = chunk.getBlockId(x, y, z);
    return (b == Block.AIR) && chunk.getBlockId(x, y - 1, z) == Block.NETHERRACK;
}