1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-04 05:21:01 +02:00

Expose all possible block data states ()

This commit is contained in:
masmc05 2025-01-13 00:56:56 +02:00 committed by GitHub
parent 50c2c59c4e
commit 3709150bc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions
paper-api/src/main/java/org/bukkit/block
paper-server/src/main/java/org/bukkit/craftbukkit/block

View file

@ -1,5 +1,6 @@
package org.bukkit.block;
import java.util.Collection;
import java.util.function.Consumer;
import org.bukkit.Keyed;
import org.bukkit.Material;
@ -120,6 +121,7 @@ import org.bukkit.inventory.ItemType;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.Unmodifiable;
/**
* While this API is in a public interface, it is not intended for use by
@ -169,6 +171,15 @@ public interface BlockType extends Keyed, Translatable, net.kyori.adventure.tran
@Override
B createBlockData();
/**
* Creates a collection of {@link BlockData} instances for this block type, with all
* possible combinations of properties values.
*
* @return new block data collection
*/
@Override
@Unmodifiable @NotNull Collection<B> createBlockDataStates();
/**
* Creates a new {@link BlockData} instance for this block type, with all
* properties initialized to unspecified defaults, except for those provided
@ -3480,6 +3491,14 @@ public interface BlockType extends Keyed, Translatable, net.kyori.adventure.tran
@NotNull
BlockData createBlockData();
/**
* Creates a collection of {@link BlockData} instances for this block type, with all
* possible combinations of properties values.
*
* @return new block data collection
*/
@Unmodifiable @NotNull Collection<? extends BlockData> createBlockDataStates();
/**
* Creates a new {@link BlockData} instance for this block type, with all
* properties initialized to unspecified defaults, except for those provided

View file

@ -3,7 +3,9 @@ package org.bukkit.craftbukkit.block;
import com.google.common.base.Preconditions;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Collection;
import java.util.function.Consumer;
import com.google.common.collect.ImmutableList;
import net.minecraft.core.BlockPos;
import net.minecraft.core.registries.Registries;
import net.minecraft.world.InteractionHand;
@ -147,6 +149,16 @@ public class CraftBlockType<B extends BlockData> implements BlockType.Typed<B>,
return this.createBlockData((String) null);
}
@Override
public @NotNull Collection<B> createBlockDataStates() {
final ImmutableList<BlockState> possibleStates = this.block.getStateDefinition().getPossibleStates();
final ImmutableList.Builder<B> builder = ImmutableList.builderWithExpectedSize(possibleStates.size());
for (final BlockState possibleState : possibleStates) {
builder.add(this.blockDataClass.cast(possibleState.createCraftBlockData()));
}
return builder.build();
}
@Override
public B createBlockData(Consumer<? super B> consumer) {
B data = this.createBlockData();