mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 02:06:23 +02:00
152 lines
4.4 KiB
Java
Executable File
152 lines
4.4 KiB
Java
Executable File
package com.gmail.nossr50.util.blockmeta;
|
|
|
|
import org.bukkit.World;
|
|
import org.bukkit.block.Block;
|
|
|
|
public interface ChunkletManager {
|
|
/**
|
|
* Loads a specific chunklet
|
|
*
|
|
* @param cx Chunklet X coordinate that needs to be loaded
|
|
* @param cy Chunklet Y coordinate that needs to be loaded
|
|
* @param cz Chunklet Z coordinate that needs to be loaded
|
|
* @param world World that the chunklet needs to be loaded in
|
|
*/
|
|
void loadChunklet(int cx, int cy, int cz, World world);
|
|
|
|
/**
|
|
* Unload a specific chunklet
|
|
*
|
|
* @param cx Chunklet X coordinate that needs to be unloaded
|
|
* @param cy Chunklet Y coordinate that needs to be unloaded
|
|
* @param cz Chunklet Z coordinate that needs to be unloaded
|
|
* @param world World that the chunklet needs to be unloaded from
|
|
*/
|
|
void unloadChunklet(int cx, int cy, int cz, World world);
|
|
|
|
/**
|
|
* Load a given Chunk's Chunklet data
|
|
*
|
|
* @param cx Chunk X coordinate that is to be loaded
|
|
* @param cz Chunk Z coordinate that is to be loaded
|
|
* @param world World that the Chunk is in
|
|
*/
|
|
void loadChunk(int cx, int cz, World world);
|
|
|
|
/**
|
|
* Unload a given Chunk's Chunklet data
|
|
*
|
|
* @param cx Chunk X coordinate that is to be unloaded
|
|
* @param cz Chunk Z coordinate that is to be unloaded
|
|
* @param world World that the Chunk is in
|
|
*/
|
|
void unloadChunk(int cx, int cz, World world);
|
|
|
|
/**
|
|
* Informs the ChunkletManager a chunk is loaded
|
|
*
|
|
* @param cx Chunk X coordinate that is loaded
|
|
* @param cz Chunk Z coordinate that is loaded
|
|
* @param world World that the chunk was loaded in
|
|
*/
|
|
void chunkLoaded(int cx, int cz, World world);
|
|
|
|
/**
|
|
* Informs the ChunkletManager a chunk is unloaded
|
|
*
|
|
* @param cx Chunk X coordinate that is unloaded
|
|
* @param cz Chunk Z coordinate that is unloaded
|
|
* @param world World that the chunk was unloaded in
|
|
*/
|
|
void chunkUnloaded(int cx, int cz, World world);
|
|
|
|
/**
|
|
* Save all ChunkletStores related to the given world
|
|
*
|
|
* @param world World to save
|
|
*/
|
|
void saveWorld(World world);
|
|
|
|
/**
|
|
* Unload all ChunkletStores from memory related to the given world after saving them
|
|
*
|
|
* @param world World to unload
|
|
*/
|
|
void unloadWorld(World world);
|
|
|
|
/**
|
|
* Load all ChunkletStores from all loaded chunks from this world into memory
|
|
*
|
|
* @param world World to load
|
|
*/
|
|
void loadWorld(World world);
|
|
|
|
/**
|
|
* Save all ChunkletStores
|
|
*/
|
|
void saveAll();
|
|
|
|
/**
|
|
* Unload all ChunkletStores after saving them
|
|
*/
|
|
void unloadAll();
|
|
|
|
/**
|
|
* Check to see if a given location is set to true
|
|
*
|
|
* @param x X coordinate to check
|
|
* @param y Y coordinate to check
|
|
* @param z Z coordinate to check
|
|
* @param world World to check in
|
|
* @return true if the given location is set to true, false if otherwise
|
|
*/
|
|
boolean isTrue(int x, int y, int z, World world);
|
|
|
|
/**
|
|
* Check to see if a given block location is set to true
|
|
*
|
|
* @param block Block location to check
|
|
* @return true if the given block location is set to true, false if otherwise
|
|
*/
|
|
boolean isTrue(Block block);
|
|
|
|
/**
|
|
* Set a given location to true, should create stores as necessary if the location does not exist
|
|
*
|
|
* @param x X coordinate to set
|
|
* @param y Y coordinate to set
|
|
* @param z Z coordinate to set
|
|
* @param world World to set in
|
|
*/
|
|
void setTrue(int x, int y, int z, World world);
|
|
|
|
/**
|
|
* Set a given block location to true, should create stores as necessary if the location does not exist
|
|
*
|
|
* @param block Block location to set
|
|
*/
|
|
void setTrue(Block block);
|
|
|
|
/**
|
|
* Set a given location to false, should not create stores if one does not exist for the given location
|
|
*
|
|
* @param x X coordinate to set
|
|
* @param y Y coordinate to set
|
|
* @param z Z coordinate to set
|
|
* @param world World to set in
|
|
*/
|
|
void setFalse(int x, int y, int z, World world);
|
|
|
|
/**
|
|
* Set a given block location to false, should not create stores if one does not exist for the given location
|
|
*
|
|
* @param block Block location to set
|
|
*/
|
|
void setFalse(Block block);
|
|
|
|
/**
|
|
* Delete any ChunkletStores that are empty
|
|
*/
|
|
void cleanUp();
|
|
}
|