mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-04 05:21:01 +02:00
Expose all possible block data states (#11958)
This commit is contained in:
parent
50c2c59c4e
commit
3709150bc1
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
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue