|
22 | 22 | import dev.lambdaurora.quakecraft.block.entity.TeamBarrierBlockEntity;
|
23 | 23 | import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
|
24 | 24 | import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
| 25 | +import net.minecraft.block.AbstractBlock; |
25 | 26 | import net.minecraft.block.Block;
|
26 | 27 | import net.minecraft.block.Blocks;
|
27 | 28 | import net.minecraft.block.entity.BlockEntityType;
|
28 | 29 | import net.minecraft.registry.Registries;
|
29 | 30 | import net.minecraft.registry.Registry;
|
| 31 | +import net.minecraft.registry.RegistryKey; |
| 32 | +import net.minecraft.registry.RegistryKeys; |
| 33 | + |
| 34 | +import java.util.function.Function; |
30 | 35 |
|
31 | 36 | /**
|
32 | 37 | * The Quakecraft registry.
|
|
38 | 43 | * @since 1.6.1
|
39 | 44 | */
|
40 | 45 | public class QuakecraftRegistry {
|
41 |
| - public static LaunchPadBlock STONE_LAUNCHPAD_BLOCK = register("stone_launchpad", new LaunchPadBlock(Blocks.STONE_PRESSURE_PLATE)); |
42 |
| - public static LaunchPadBlock OAK_LAUNCHPAD_BLOCK = register("oak_launchpad", new LaunchPadBlock(Blocks.OAK_PRESSURE_PLATE)); |
43 |
| - public static LaunchPadBlock SPRUCE_LAUNCHPAD_BLOCK = register("spruce_launchpad", new LaunchPadBlock(Blocks.SPRUCE_PRESSURE_PLATE)); |
44 |
| - public static LaunchPadBlock BIRCH_LAUNCHPAD_BLOCK = register("birch_launchpad", new LaunchPadBlock(Blocks.BIRCH_PRESSURE_PLATE)); |
45 |
| - public static LaunchPadBlock JUNGLE_LAUNCHPAD_BLOCK = register("jungle_launchpad", new LaunchPadBlock(Blocks.JUNGLE_PRESSURE_PLATE)); |
46 |
| - public static LaunchPadBlock ACACIA_LAUNCHPAD_BLOCK = register("acacia_launchpad", new LaunchPadBlock(Blocks.ACACIA_PRESSURE_PLATE)); |
47 |
| - public static LaunchPadBlock DARK_OAK_LAUNCHPAD_BLOCK = register("dark_oak_launchpad", new LaunchPadBlock(Blocks.DARK_OAK_PRESSURE_PLATE)); |
48 |
| - public static LaunchPadBlock LIGHT_WEIGHTED_LAUNCHPAD_BLOCK = register("light_weighted_launchpad", new LaunchPadBlock(Blocks.LIGHT_WEIGHTED_PRESSURE_PLATE)); |
49 |
| - public static LaunchPadBlock HEAVY_WEIGHTED_LAUNCHPAD_BLOCK = register("heavy_weighted_launchpad", new LaunchPadBlock(Blocks.HEAVY_WEIGHTED_PRESSURE_PLATE)); |
50 |
| - public static LaunchPadBlock CRIMSON_LAUNCHPAD_BLOCK = register("crimson_launchpad", new LaunchPadBlock(Blocks.CRIMSON_PRESSURE_PLATE)); |
51 |
| - public static LaunchPadBlock WARPED_LAUNCHPAD_BLOCK = register("warped_launchpad", new LaunchPadBlock(Blocks.WARPED_PRESSURE_PLATE)); |
52 |
| - public static LaunchPadBlock POLISHED_BLACKSTONE_LAUNCHPAD_BLOCK = register("polished_blackstone_launchpad", new LaunchPadBlock(Blocks.POLISHED_BLACKSTONE_PRESSURE_PLATE)); |
| 46 | + public static LaunchPadBlock STONE_LAUNCHPAD_BLOCK = register("stone_launchpad", settings -> new LaunchPadBlock(settings, Blocks.STONE_PRESSURE_PLATE)); |
| 47 | + public static LaunchPadBlock OAK_LAUNCHPAD_BLOCK = register("oak_launchpad", settings -> new LaunchPadBlock(settings, Blocks.OAK_PRESSURE_PLATE)); |
| 48 | + public static LaunchPadBlock SPRUCE_LAUNCHPAD_BLOCK = register("spruce_launchpad", settings -> new LaunchPadBlock(settings, Blocks.SPRUCE_PRESSURE_PLATE)); |
| 49 | + public static LaunchPadBlock BIRCH_LAUNCHPAD_BLOCK = register("birch_launchpad", settings -> new LaunchPadBlock(settings, Blocks.BIRCH_PRESSURE_PLATE)); |
| 50 | + public static LaunchPadBlock JUNGLE_LAUNCHPAD_BLOCK = register("jungle_launchpad", settings -> new LaunchPadBlock(settings, Blocks.JUNGLE_PRESSURE_PLATE)); |
| 51 | + public static LaunchPadBlock ACACIA_LAUNCHPAD_BLOCK = register("acacia_launchpad", settings -> new LaunchPadBlock(settings, Blocks.ACACIA_PRESSURE_PLATE)); |
| 52 | + public static LaunchPadBlock DARK_OAK_LAUNCHPAD_BLOCK = register("dark_oak_launchpad", settings -> new LaunchPadBlock(settings, Blocks.DARK_OAK_PRESSURE_PLATE)); |
| 53 | + public static LaunchPadBlock LIGHT_WEIGHTED_LAUNCHPAD_BLOCK = register("light_weighted_launchpad", settings -> new LaunchPadBlock(settings, Blocks.LIGHT_WEIGHTED_PRESSURE_PLATE)); |
| 54 | + public static LaunchPadBlock HEAVY_WEIGHTED_LAUNCHPAD_BLOCK = register("heavy_weighted_launchpad", settings -> new LaunchPadBlock(settings, Blocks.HEAVY_WEIGHTED_PRESSURE_PLATE)); |
| 55 | + public static LaunchPadBlock CRIMSON_LAUNCHPAD_BLOCK = register("crimson_launchpad", settings -> new LaunchPadBlock(settings, Blocks.CRIMSON_PRESSURE_PLATE)); |
| 56 | + public static LaunchPadBlock WARPED_LAUNCHPAD_BLOCK = register("warped_launchpad", settings -> new LaunchPadBlock(settings, Blocks.WARPED_PRESSURE_PLATE)); |
| 57 | + public static LaunchPadBlock POLISHED_BLACKSTONE_LAUNCHPAD_BLOCK = register("polished_blackstone_launchpad", settings -> new LaunchPadBlock(settings, Blocks.POLISHED_BLACKSTONE_PRESSURE_PLATE)); |
53 | 58 |
|
54 |
| - public static TeamBarrierBlock TEAM_BARRIER_BLOCK = register("team_barrier", new TeamBarrierBlock()); |
| 59 | + public static TeamBarrierBlock TEAM_BARRIER_BLOCK = register("team_barrier", TeamBarrierBlock::new); |
55 | 60 |
|
56 | 61 | public static BlockEntityType<TeamBarrierBlockEntity> TEAM_BARRIER_BLOCK_ENTITY = Registry.register(Registries.BLOCK_ENTITY_TYPE,
|
57 | 62 | Quakecraft.id("team_barrier"),
|
58 | 63 | FabricBlockEntityTypeBuilder.create(TeamBarrierBlockEntity::new, TEAM_BARRIER_BLOCK).build()
|
59 | 64 | );
|
60 | 65 |
|
61 |
| - private static <T extends Block> T register(String identifier, T block) { |
62 |
| - return register(Registries.BLOCK, identifier, block); |
| 66 | + private static <T extends Block> T register(String identifier, Function<AbstractBlock.Settings, T> function) { |
| 67 | + return register(Registries.BLOCK, identifier, function.apply(AbstractBlock.Settings.create().registryKey(RegistryKey.of(RegistryKeys.BLOCK, Quakecraft.id(identifier))))); |
63 | 68 | }
|
64 | 69 |
|
65 | 70 | private static <P, T extends P> T register(Registry<P> registry, String name, T item) {
|
|
0 commit comments