Package dev.lone.itemsadder.api
Class CustomBlock.Advanced
java.lang.Object
dev.lone.itemsadder.api.CustomBlock.Advanced
- Enclosing class:
- CustomBlock
This class contains advanced static methods to perform various uncommon tasks, for example read/write directly
into the ItemsAdder CustomBlocks region files.
Use them only if you know what you're doing.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
deleteAllCustomBlocksInChunk
(org.bukkit.Chunk chunk) static void
deleteAllCustomBlocksInChunk
(org.bukkit.Chunk chunk, boolean removeVanillaBlock, boolean sendChunkPacket) getAllBlocksLocations
(org.bukkit.Chunk chunk) static @Nullable List<org.bukkit.Location>
getAllBlocksLocationsList
(org.bukkit.Chunk chunk) static @Nullable String
getInCustomRegion
(org.bukkit.Location location) Gets the Namespace and ID in the formatnamespace:id
of the placed CustomBlock in a specific location.static void
placeInCustomRegion
(@NotNull CustomBlock customBlock, org.bukkit.Location location) Saves a block into the ItemsAdder custom region file.static boolean
placeInCustomRegion
(String namespacedId, org.bukkit.Location location) Saves a block into the ItemsAdder custom region file.static boolean
removeFromCustomRegion
(org.bukkit.Location location) Remove a CustomBlock from the custom region file.static void
runActionOnBlocks
(org.bukkit.Chunk chunk, BiConsumer<String, org.bukkit.Location> action)
-
Constructor Details
-
Advanced
public Advanced()
-
-
Method Details
-
getInCustomRegion
Gets the Namespace and ID in the formatnamespace:id
of the placed CustomBlock in a specific location.- Parameters:
location
- the location to check- Returns:
- the Namespace and ID in the format
namespace:id
or null if it's not a CustomBlock.
-
placeInCustomRegion
public static void placeInCustomRegion(@NotNull @NotNull CustomBlock customBlock, org.bukkit.Location location) Saves a block into the ItemsAdder custom region file.- Parameters:
customBlock
- the CustomBlock to place.location
- the location where the block must be placed.
-
placeInCustomRegion
Saves a block into the ItemsAdder custom region file.- Parameters:
namespacedId
- the Namespace and ID in the formatnamespace:id
of the CustomBlock to be placed.location
- the location where the block must be placed.- Returns:
- true if the namespacedId is a registered CustomBlock, otherwise false.
-
removeFromCustomRegion
public static boolean removeFromCustomRegion(org.bukkit.Location location) Remove a CustomBlock from the custom region file.- Parameters:
location
- the location of the block to remove.- Returns:
- true if the block was removed because it was actually a CustomBlock, otherwise false in case the block wasn't custom (wasn't in the custom region file).
-
deleteAllCustomBlocksInChunk
public static void deleteAllCustomBlocksInChunk(org.bukkit.Chunk chunk) -
deleteAllCustomBlocksInChunk
public static void deleteAllCustomBlocksInChunk(org.bukkit.Chunk chunk, boolean removeVanillaBlock, boolean sendChunkPacket) -
getAllBlocksLocationsList
@Nullable public static @Nullable List<org.bukkit.Location> getAllBlocksLocationsList(org.bukkit.Chunk chunk) -
getAllBlocksLocations
-
runActionOnBlocks
public static void runActionOnBlocks(org.bukkit.Chunk chunk, BiConsumer<String, org.bukkit.Location> action)
-