2019-07-11 09:03:08 +02:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
import javax.annotation.Nonnull;
|
2020-04-05 18:02:46 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
|
|
|
|
|
|
import com.google.common.collect.ImmutableList;
|
2019-12-22 01:31:40 +01:00
|
|
|
import com.simibubi.create.foundation.block.IHaveColorHandler;
|
2019-08-25 10:14:15 +02:00
|
|
|
import com.simibubi.create.foundation.block.ProperStairsBlock;
|
2019-10-15 22:22:19 +02:00
|
|
|
import com.simibubi.create.foundation.utility.Lang;
|
2020-03-28 02:27:43 +01:00
|
|
|
import com.simibubi.create.foundation.utility.data.ITaggable;
|
2020-01-20 13:41:41 +01:00
|
|
|
import com.simibubi.create.foundation.world.OxidizingBlock;
|
2020-05-02 18:07:46 +02:00
|
|
|
import com.simibubi.create.modules.Sections;
|
2020-01-21 01:52:23 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.CasingBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.actors.DrillBlock;
|
2019-12-12 11:58:29 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.actors.HarvesterBlock;
|
2020-04-29 19:12:42 +02:00
|
|
|
import com.simibubi.create.modules.contraptions.components.actors.PloughBlock;
|
2020-02-12 01:36:18 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.actors.PortableStorageInterfaceBlock;
|
2020-02-05 23:34:23 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.clock.CuckooClockBlock;
|
2020-02-15 18:54:23 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.bearing.ClockworkBearingBlock;
|
2019-12-12 11:58:29 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.bearing.MechanicalBearingBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.chassis.LinearChassisBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.chassis.RadialChassisBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.mounted.CartAssemblerBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.mounted.CartAssemblerBlock.MinecartAnchorBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.piston.MechanicalPistonBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.piston.MechanicalPistonHeadBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.piston.PistonPoleBlock;
|
2020-02-15 18:54:23 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.contraptions.pulley.PulleyBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.crafter.MechanicalCrafterBlock;
|
2020-01-28 20:35:46 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.crank.HandCrankBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.crusher.CrushingWheelBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.crusher.CrushingWheelControllerBlock;
|
2020-01-23 22:23:00 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.deployer.DeployerBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.fan.EncasedFanBlock;
|
2020-01-28 20:35:46 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.fan.NozzleBlock;
|
2020-02-05 12:36:22 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.flywheel.FlywheelBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.flywheel.engine.FurnaceEngineBlock;
|
2020-03-26 23:03:56 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.millstone.MillstoneBlock;
|
2020-04-13 08:58:57 +02:00
|
|
|
import com.simibubi.create.modules.contraptions.components.mixer.BasinOperatorBlockItem;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.components.mixer.MechanicalMixerBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.motor.MotorBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.press.MechanicalPressBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.saw.SawBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.turntable.TurntableBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.components.waterwheel.WaterWheelBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.processing.BasinBlock;
|
2020-02-03 00:31:55 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.redstone.AnalogLeverBlock;
|
2019-08-17 00:57:36 +02:00
|
|
|
import com.simibubi.create.modules.contraptions.redstone.ContactBlock;
|
2020-02-28 22:17:40 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.advanced.SpeedControllerBlock;
|
2020-03-11 21:40:55 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.advanced.sequencer.SequencedGearshiftBlock;
|
2019-08-31 08:37:57 +02:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.belt.BeltBlock;
|
2020-02-03 00:31:55 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.encased.AdjustablePulleyBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.encased.ClutchBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.relays.encased.EncasedBeltBlock;
|
|
|
|
import com.simibubi.create.modules.contraptions.relays.encased.GearshiftBlock;
|
2019-12-09 22:58:06 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.gauge.GaugeBlock;
|
2019-12-12 10:56:34 +01:00
|
|
|
import com.simibubi.create.modules.contraptions.relays.gearbox.GearboxBlock;
|
2020-05-02 18:07:46 +02:00
|
|
|
import com.simibubi.create.modules.curiosities.CocoaLogBlock;
|
2019-09-24 14:40:01 +02:00
|
|
|
import com.simibubi.create.modules.curiosities.partialWindows.WindowInABlockBlock;
|
2019-09-14 18:21:30 +02:00
|
|
|
import com.simibubi.create.modules.curiosities.symmetry.block.CrossPlaneSymmetryBlock;
|
|
|
|
import com.simibubi.create.modules.curiosities.symmetry.block.PlaneSymmetryBlock;
|
|
|
|
import com.simibubi.create.modules.curiosities.symmetry.block.TriplePlaneSymmetryBlock;
|
2020-01-05 19:41:38 +01:00
|
|
|
import com.simibubi.create.modules.logistics.block.RedstoneLinkBlock;
|
2019-08-27 17:35:34 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.StockswitchBlock;
|
2020-04-05 18:02:46 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.belts.observer.BeltObserverBlock;
|
|
|
|
import com.simibubi.create.modules.logistics.block.belts.tunnel.BeltTunnelBlock;
|
2019-09-13 18:36:18 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.diodes.FlexpeaterBlock;
|
2020-02-27 18:09:41 +01:00
|
|
|
import com.simibubi.create.modules.logistics.block.diodes.LatchBlock;
|
2019-09-13 18:36:18 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.diodes.PulseRepeaterBlock;
|
2020-02-27 18:09:41 +01:00
|
|
|
import com.simibubi.create.modules.logistics.block.diodes.ToggleLatchBlock;
|
2020-01-05 19:41:38 +01:00
|
|
|
import com.simibubi.create.modules.logistics.block.extractor.ExtractorBlock;
|
|
|
|
import com.simibubi.create.modules.logistics.block.extractor.LinkedExtractorBlock;
|
2020-04-05 18:02:46 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.funnel.FunnelBlock;
|
2019-10-05 19:00:43 +02:00
|
|
|
import com.simibubi.create.modules.logistics.block.inventories.FlexcrateBlock;
|
2020-01-05 19:41:38 +01:00
|
|
|
import com.simibubi.create.modules.logistics.block.transposer.LinkedTransposerBlock;
|
|
|
|
import com.simibubi.create.modules.logistics.block.transposer.TransposerBlock;
|
2019-11-17 21:25:59 +01:00
|
|
|
import com.simibubi.create.modules.palettes.CTGlassBlock;
|
2020-01-30 22:16:04 +01:00
|
|
|
import com.simibubi.create.modules.palettes.CTGlassPaneBlock;
|
2020-02-04 14:48:21 +01:00
|
|
|
import com.simibubi.create.modules.palettes.CTWindowBlock;
|
2019-09-24 14:40:01 +02:00
|
|
|
import com.simibubi.create.modules.palettes.GlassPaneBlock;
|
2020-01-30 22:16:04 +01:00
|
|
|
import com.simibubi.create.modules.palettes.HorizontalCTGlassBlock;
|
2020-01-13 21:59:26 +01:00
|
|
|
import com.simibubi.create.modules.palettes.LayeredCTBlock;
|
2020-02-07 19:25:38 +01:00
|
|
|
import com.simibubi.create.modules.palettes.ScoriaBlock;
|
2020-02-12 01:36:18 +01:00
|
|
|
import com.simibubi.create.modules.palettes.VerticalCTGlassBlock;
|
2020-04-13 08:58:57 +02:00
|
|
|
import com.tterrag.registrate.builders.BlockBuilder;
|
|
|
|
import com.tterrag.registrate.builders.ItemBuilder;
|
2020-04-26 18:11:44 +02:00
|
|
|
import com.tterrag.registrate.providers.ProviderType;
|
2020-04-13 08:58:57 +02:00
|
|
|
import com.tterrag.registrate.util.RegistryEntry;
|
2020-04-26 06:58:38 +02:00
|
|
|
import com.tterrag.registrate.util.nullness.NonNullBiConsumer;
|
2020-04-13 08:58:57 +02:00
|
|
|
import com.tterrag.registrate.util.nullness.NonNullBiFunction;
|
|
|
|
import com.tterrag.registrate.util.nullness.NonNullFunction;
|
|
|
|
import com.tterrag.registrate.util.nullness.NonNullSupplier;
|
|
|
|
import com.tterrag.registrate.util.nullness.NonNullUnaryOperator;
|
2019-07-11 09:03:08 +02:00
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
2019-08-06 18:13:33 +02:00
|
|
|
import net.minecraft.block.Block.Properties;
|
2019-07-11 09:03:08 +02:00
|
|
|
import net.minecraft.block.BlockState;
|
2019-08-06 18:13:33 +02:00
|
|
|
import net.minecraft.block.Blocks;
|
2019-09-22 20:23:26 +02:00
|
|
|
import net.minecraft.block.FallingBlock;
|
2019-08-25 10:14:15 +02:00
|
|
|
import net.minecraft.block.FenceBlock;
|
|
|
|
import net.minecraft.block.FenceGateBlock;
|
2019-09-24 14:40:01 +02:00
|
|
|
import net.minecraft.block.GlassBlock;
|
2019-08-17 00:57:36 +02:00
|
|
|
import net.minecraft.block.RotatedPillarBlock;
|
2019-08-25 10:14:15 +02:00
|
|
|
import net.minecraft.block.SlabBlock;
|
|
|
|
import net.minecraft.block.WallBlock;
|
2019-09-13 18:36:18 +02:00
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.renderer.color.BlockColors;
|
2019-07-11 09:03:08 +02:00
|
|
|
import net.minecraft.item.BlockItem;
|
|
|
|
import net.minecraft.item.Item;
|
2020-04-13 08:58:57 +02:00
|
|
|
import net.minecraft.tags.BlockTags;
|
|
|
|
import net.minecraft.tags.Tag;
|
2019-09-13 18:36:18 +02:00
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
2020-01-20 13:41:41 +01:00
|
|
|
import net.minecraftforge.common.ToolType;
|
2019-07-11 09:03:08 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
public enum AllBlocks implements NonNullSupplier<Block> {
|
2019-07-11 09:03:08 +02:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
_1_(Sections.KINETICS),
|
2019-08-06 18:13:33 +02:00
|
|
|
|
2020-05-04 19:57:16 +02:00
|
|
|
// SHAFT(() -> new ShaftBlock(Properties.from(Blocks.ANDESITE))),
|
|
|
|
// COGWHEEL(() -> new CogWheelBlock(false), (b, p) -> new CogwheelBlockItem(b, p, false)),
|
|
|
|
// LARGE_COGWHEEL(() -> new CogWheelBlock(true), (b, p) -> new CogwheelBlockItem(b, p, true)),
|
|
|
|
// ENCASED_SHAFT(EncasedShaftBlock::new),
|
2020-04-13 08:58:57 +02:00
|
|
|
GEARBOX(GearboxBlock::new),
|
|
|
|
CLUTCH(ClutchBlock::new),
|
|
|
|
GEARSHIFT(GearshiftBlock::new),
|
2020-05-04 19:57:16 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
ENCASED_BELT(EncasedBeltBlock::new),
|
|
|
|
ADJUSTABLE_PULLEY(AdjustablePulleyBlock::new),
|
|
|
|
BELT(BeltBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
CREATIVE_MOTOR(MotorBlock::new),
|
|
|
|
WATER_WHEEL(WaterWheelBlock::new),
|
|
|
|
ENCASED_FAN(EncasedFanBlock::new),
|
|
|
|
NOZZLE(NozzleBlock::new),
|
|
|
|
TURNTABLE(TurntableBlock::new),
|
|
|
|
HAND_CRANK(HandCrankBlock::new),
|
|
|
|
CUCKOO_CLOCK(() -> new CuckooClockBlock(false)),
|
|
|
|
MYSTERIOUS_CUCKOO_CLOCK(() -> new CuckooClockBlock(true)),
|
|
|
|
|
|
|
|
MILLSTONE(MillstoneBlock::new),
|
|
|
|
CRUSHING_WHEEL(CrushingWheelBlock::new),
|
|
|
|
CRUSHING_WHEEL_CONTROLLER(CrushingWheelControllerBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
MECHANICAL_PRESS(MechanicalPressBlock::new, BasinOperatorBlockItem::new),
|
|
|
|
MECHANICAL_MIXER(MechanicalMixerBlock::new, BasinOperatorBlockItem::new),
|
|
|
|
BASIN(BasinBlock::new),
|
|
|
|
SPEED_GAUGE(() -> new GaugeBlock(GaugeBlock.Type.SPEED)),
|
|
|
|
STRESS_GAUGE(() -> new GaugeBlock(GaugeBlock.Type.STRESS)),
|
|
|
|
|
|
|
|
MECHANICAL_PISTON(() -> new MechanicalPistonBlock(false)),
|
|
|
|
STICKY_MECHANICAL_PISTON(() -> new MechanicalPistonBlock(true)),
|
|
|
|
MECHANICAL_PISTON_HEAD(MechanicalPistonHeadBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
PISTON_POLE(PistonPoleBlock::new),
|
|
|
|
MECHANICAL_BEARING(MechanicalBearingBlock::new),
|
|
|
|
CLOCKWORK_BEARING(ClockworkBearingBlock::new),
|
|
|
|
ROPE_PULLEY(PulleyBlock::new),
|
|
|
|
ROPE(PulleyBlock.RopeBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
PULLEY_MAGNET(PulleyBlock.MagnetBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
CART_ASSEMBLER(CartAssemblerBlock::new, ITaggable.create().withVanillaTags(ITaggable.BLOCK, "rails")),
|
|
|
|
MINECART_ANCHOR(MinecartAnchorBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
TRANSLATION_CHASSIS(LinearChassisBlock::new),
|
|
|
|
TRANSLATION_CHASSIS_SECONDARY(LinearChassisBlock::new),
|
|
|
|
ROTATION_CHASSIS(RadialChassisBlock::new),
|
|
|
|
DRILL(DrillBlock::new),
|
|
|
|
SAW(SawBlock::new),
|
|
|
|
DEPLOYER(DeployerBlock::new),
|
|
|
|
PORTABLE_STORAGE_INTERFACE(PortableStorageInterfaceBlock::new),
|
2020-05-02 00:34:36 +02:00
|
|
|
HARVESTER(HarvesterBlock::new),
|
|
|
|
PLOUGH(PloughBlock::new),
|
2020-04-13 08:58:57 +02:00
|
|
|
ANALOG_LEVER(AnalogLeverBlock::new),
|
|
|
|
|
|
|
|
ANDESITE_CASING(() -> new CasingBlock("andesite_casing")),
|
|
|
|
COPPER_CASING(() -> new CasingBlock("copper_casing")),
|
|
|
|
BRASS_CASING(() -> new CasingBlock("crafter_top")),
|
|
|
|
|
|
|
|
MECHANICAL_CRAFTER(MechanicalCrafterBlock::new),
|
|
|
|
SEQUENCED_GEARSHIFT(SequencedGearshiftBlock::new),
|
|
|
|
FLYWHEEL(FlywheelBlock::new),
|
|
|
|
FURNACE_ENGINE(FurnaceEngineBlock::new),
|
|
|
|
ROTATION_SPEED_CONTROLLER(SpeedControllerBlock::new),
|
2020-03-23 17:04:09 +01:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
_2_(Sections.LOGISTICS),
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
CONTACT(ContactBlock::new),
|
|
|
|
REDSTONE_BRIDGE(RedstoneLinkBlock::new),
|
|
|
|
STOCKSWITCH(StockswitchBlock::new),
|
|
|
|
FLEXCRATE(FlexcrateBlock::new),
|
|
|
|
EXTRACTOR(ExtractorBlock::new),
|
|
|
|
VERTICAL_EXTRACTOR(ExtractorBlock.Vertical::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
LINKED_EXTRACTOR(LinkedExtractorBlock::new),
|
|
|
|
VERTICAL_LINKED_EXTRACTOR(LinkedExtractorBlock.Vertical::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
TRANSPOSER(TransposerBlock::new),
|
|
|
|
VERTICAL_TRANSPOSER(TransposerBlock.Vertical::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
LINKED_TRANSPOSER(LinkedTransposerBlock::new),
|
|
|
|
VERTICAL_LINKED_TRANSPOSER(LinkedTransposerBlock.Vertical::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
BELT_FUNNEL(FunnelBlock::new),
|
|
|
|
VERTICAL_FUNNEL(FunnelBlock.Vertical::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
BELT_TUNNEL(BeltTunnelBlock::new),
|
|
|
|
ENTITY_DETECTOR(BeltObserverBlock::new),
|
|
|
|
PULSE_REPEATER(PulseRepeaterBlock::new),
|
|
|
|
FLEXPEATER(FlexpeaterBlock::new),
|
|
|
|
FLEXPULSEPEATER(FlexpeaterBlock::new),
|
|
|
|
REDSTONE_LATCH(LatchBlock::new),
|
|
|
|
TOGGLE_LATCH(ToggleLatchBlock::new),
|
2020-05-02 18:07:46 +02:00
|
|
|
|
|
|
|
_3_(Sections.MATERIALS),
|
|
|
|
|
|
|
|
COPPER_ORE(() -> new OxidizingBlock(Properties.from(Blocks.IRON_ORE), 1),
|
|
|
|
ITaggable.create().withForgeTags("ores/copper")),
|
|
|
|
ZINC_ORE(() -> new Block(Properties.from(Blocks.GOLD_ORE).harvestLevel(2).harvestTool(ToolType.PICKAXE)),
|
|
|
|
ITaggable.create().withForgeTags("ores/zinc")),
|
|
|
|
COPPER_BLOCK(() -> new OxidizingBlock(Properties.from(Blocks.IRON_BLOCK), 1 / 32f),
|
|
|
|
ITaggable.create().withForgeTags("storage_blocks/copper")),
|
|
|
|
COPPER_SHINGLES(() -> new OxidizingBlock(Properties.from(Blocks.IRON_BLOCK), 1 / 32f)),
|
|
|
|
ZINC_BLOCK(() -> new Block(Properties.from(Blocks.IRON_BLOCK)),
|
|
|
|
ITaggable.create().withForgeTags("storage_blocks/zinc")),
|
|
|
|
BRASS_BLOCK(() -> new Block(Properties.from(Blocks.IRON_BLOCK)),
|
|
|
|
ITaggable.create().withForgeTags("storage_blocks/brass")),
|
|
|
|
|
|
|
|
_4_(Sections.CURIOSITIES),
|
2019-08-25 10:14:15 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
SYMMETRY_PLANE(PlaneSymmetryBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
SYMMETRY_CROSSPLANE(CrossPlaneSymmetryBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
SYMMETRY_TRIPLEPLANE(TriplePlaneSymmetryBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
WINDOW_IN_A_BLOCK(WindowInABlockBlock::new, ComesWith.NO_BLOCKITEM),
|
|
|
|
COCOA_LOG(CocoaLogBlock::new, ITaggable.create().withVanillaTags(ITaggable.BLOCK, "jungle_logs")),
|
2019-08-25 10:14:15 +02:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
_5_(Sections.SCHEMATICS),
|
|
|
|
|
|
|
|
// SCHEMATICANNON(SchematicannonBlock::new),
|
|
|
|
// CREATIVE_CRATE(CreativeCrateBlock::new),
|
|
|
|
// SCHEMATIC_TABLE(SchematicTableBlock::new),
|
|
|
|
|
|
|
|
_6_(Sections.PALETTES),
|
|
|
|
|
|
|
|
TILED_GLASS(() -> new GlassBlock(Properties.from(Blocks.GLASS)),
|
|
|
|
ITaggable.create().withVanillaTags(ITaggable.BLOCK, "impermeable").withForgeTags("glass")),
|
2020-04-13 08:58:57 +02:00
|
|
|
FRAMED_GLASS(() -> new CTGlassBlock(AllCTs.FRAMED_GLASS, false)),
|
2020-05-02 18:07:46 +02:00
|
|
|
HORIZONTAL_FRAMED_GLASS(
|
|
|
|
() -> new HorizontalCTGlassBlock(AllCTs.HORIZONTAL_FRAMED_GLASS, AllCTs.FRAMED_GLASS, false)),
|
2020-04-13 08:58:57 +02:00
|
|
|
VERTICAL_FRAMED_GLASS(() -> new VerticalCTGlassBlock(AllCTs.VERTICAL_FRAMED_GLASS, false)),
|
|
|
|
|
|
|
|
OAK_GLASS(() -> new CTWindowBlock(AllCTs.OAK_GLASS, false)),
|
|
|
|
SPRUCE_GLASS(() -> new CTWindowBlock(AllCTs.SPRUCE_GLASS, false)),
|
|
|
|
BIRCH_GLASS(() -> new CTWindowBlock(AllCTs.BIRCH_GLASS, true)),
|
|
|
|
JUNGLE_GLASS(() -> new CTWindowBlock(AllCTs.JUNGLE_GLASS, false)),
|
|
|
|
DARK_OAK_GLASS(() -> new CTWindowBlock(AllCTs.DARK_OAK_GLASS, false)),
|
|
|
|
ACACIA_GLASS(() -> new CTWindowBlock(AllCTs.ACACIA_GLASS, false)),
|
|
|
|
IRON_GLASS(() -> new CTWindowBlock(AllCTs.IRON_GLASS, false)),
|
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
TILED_GLASS_PANE(() -> new GlassPaneBlock(Properties.from(Blocks.GLASS)),
|
|
|
|
ITaggable.create().withForgeTags("glass_panes")),
|
2020-04-13 08:58:57 +02:00
|
|
|
FRAMED_GLASS_PANE(() -> new CTGlassPaneBlock(FRAMED_GLASS.get())),
|
|
|
|
HORIZONTAL_FRAMED_GLASS_PANE(() -> new CTGlassPaneBlock(HORIZONTAL_FRAMED_GLASS.get())),
|
|
|
|
VERTICAL_FRAMED_GLASS_PANE(() -> new CTGlassPaneBlock(VERTICAL_FRAMED_GLASS.get())),
|
|
|
|
OAK_GLASS_PANE(() -> new CTGlassPaneBlock(OAK_GLASS.get())),
|
|
|
|
SPRUCE_GLASS_PANE(() -> new CTGlassPaneBlock(SPRUCE_GLASS.get())),
|
|
|
|
BIRCH_GLASS_PANE(() -> new CTGlassPaneBlock(BIRCH_GLASS.get())),
|
|
|
|
JUNGLE_GLASS_PANE(() -> new CTGlassPaneBlock(JUNGLE_GLASS.get())),
|
|
|
|
DARK_OAK_GLASS_PANE(() -> new CTGlassPaneBlock(DARK_OAK_GLASS.get())),
|
|
|
|
ACACIA_GLASS_PANE(() -> new CTGlassPaneBlock(ACACIA_GLASS.get())),
|
|
|
|
IRON_GLASS_PANE(() -> new CTGlassPaneBlock(IRON_GLASS.get())),
|
|
|
|
|
|
|
|
GRANITE_BRICKS(() -> new Block(Properties.from(Blocks.GRANITE))),
|
2020-05-02 18:07:46 +02:00
|
|
|
GRANITE_LAYERS(
|
|
|
|
() -> new LayeredCTBlock(Properties.from(Blocks.GRANITE), AllCTs.GRANITE_LAYERS, AllCTs.POLISHED_GRANITE)),
|
2020-04-13 08:58:57 +02:00
|
|
|
DIORITE_BRICKS(() -> new Block(Properties.from(Blocks.DIORITE))),
|
2020-05-02 18:07:46 +02:00
|
|
|
DIORITE_LAYERS(
|
|
|
|
() -> new LayeredCTBlock(Properties.from(Blocks.DIORITE), AllCTs.DIORITE_LAYERS, AllCTs.POLISHED_DIORITE)),
|
2020-04-13 08:58:57 +02:00
|
|
|
ANDESITE_BRICKS(() -> new Block(Properties.from(Blocks.ANDESITE))),
|
2020-05-02 18:07:46 +02:00
|
|
|
ANDESITE_LAYERS(() -> new LayeredCTBlock(Properties.from(Blocks.ANDESITE), AllCTs.ANDESITE_LAYERS,
|
|
|
|
AllCTs.POLISHED_ANDESITE)),
|
2020-01-21 01:52:23 +01:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
GABBRO(() -> new Block(Properties.from(Blocks.GRANITE)), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
2020-04-13 08:58:57 +02:00
|
|
|
POLISHED_GABBRO(() -> new Block(Properties.from(GABBRO.get())), ITaggable.create().withForgeTags("stone")),
|
|
|
|
GABBRO_BRICKS(() -> new Block(Properties.from(GABBRO.get())), ComesWith.STAIRS, ComesWith.WALL),
|
|
|
|
PAVED_GABBRO_BRICKS(() -> new Block(Properties.from(GABBRO.get())), ComesWith.SLAB),
|
|
|
|
INDENTED_GABBRO(() -> new Block(Properties.from(GABBRO.get())), ComesWith.SLAB),
|
|
|
|
SLIGHTLY_MOSSY_GABBRO_BRICKS(() -> new Block(Properties.from(GABBRO.get()))),
|
|
|
|
MOSSY_GABBRO_BRICKS(() -> new Block(Properties.from(GABBRO.get()))),
|
2020-05-02 18:07:46 +02:00
|
|
|
GABBRO_LAYERS(
|
|
|
|
() -> new LayeredCTBlock(Properties.from(GABBRO.get()), AllCTs.GABBRO_LAYERS, AllCTs.POLISHED_GABBRO)),
|
2020-04-13 08:58:57 +02:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
DOLOMITE(() -> new Block(Properties.from(Blocks.QUARTZ_BLOCK)), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
2020-04-13 08:58:57 +02:00
|
|
|
DOLOMITE_BRICKS(() -> new Block(Properties.from(DOLOMITE.get()))),
|
|
|
|
POLISHED_DOLOMITE(() -> new Block(Properties.from(DOLOMITE.get())), ITaggable.create().withForgeTags("stone")),
|
|
|
|
DOLOMITE_PILLAR(() -> new RotatedPillarBlock(Properties.from(DOLOMITE.get()))),
|
2020-05-02 18:07:46 +02:00
|
|
|
DOLOMITE_LAYERS(() -> new LayeredCTBlock(Properties.from(DOLOMITE.get()), AllCTs.DOLOMITE_LAYERS,
|
|
|
|
AllCTs.POLISHED_DOLOMITE)),
|
2020-02-08 03:47:27 +01:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
LIMESAND(() -> new FallingBlock(Properties.from(Blocks.SAND))),
|
2020-05-02 18:07:46 +02:00
|
|
|
LIMESTONE(() -> new Block(Properties.from(Blocks.SANDSTONE)), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
|
|
|
LIMESTONE_BRICKS(() -> new Block(Properties.from(LIMESTONE.get())), ComesWith.STAIRS, ComesWith.SLAB,
|
2019-09-05 22:23:58 +02:00
|
|
|
ComesWith.WALL),
|
2020-05-02 18:07:46 +02:00
|
|
|
POLISHED_LIMESTONE(() -> new Block(Properties.from(LIMESTONE.get())), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.SLAB),
|
|
|
|
LIMESTONE_PILLAR(() -> new RotatedPillarBlock(Properties.from(LIMESTONE.get()))),
|
|
|
|
LIMESTONE_LAYERS(() -> new LayeredCTBlock(Properties.from(LIMESTONE.get()), AllCTs.LIMESTONE_LAYERS,
|
|
|
|
AllCTs.POLISHED_LIMESTONE)),
|
|
|
|
WEATHERED_LIMESTONE(() -> new Block(Properties.from(Blocks.ANDESITE)), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
|
|
|
WEATHERED_LIMESTONE_BRICKS(() -> new Block(Properties.from(WEATHERED_LIMESTONE.get())), ComesWith.STAIRS,
|
|
|
|
ComesWith.SLAB, ComesWith.WALL),
|
|
|
|
POLISHED_WEATHERED_LIMESTONE(() -> new Block(Properties.from(WEATHERED_LIMESTONE.get())),
|
|
|
|
ITaggable.create().withForgeTags("stone"), ComesWith.SLAB),
|
2020-04-13 08:58:57 +02:00
|
|
|
WEATHERED_LIMESTONE_PILLAR(() -> new RotatedPillarBlock(Properties.from(WEATHERED_LIMESTONE.get()))),
|
|
|
|
WEATHERED_LIMESTONE_LAYERS(() -> new LayeredCTBlock(Properties.from(WEATHERED_LIMESTONE.get()),
|
2020-01-30 22:16:04 +01:00
|
|
|
AllCTs.WEATHERED_LIMESTONE_LAYERS, AllCTs.POLISHED_WEATHERED_LIMESTONE)),
|
2019-08-25 10:14:15 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
NATURAL_SCORIA(ScoriaBlock::new),
|
2020-05-02 18:07:46 +02:00
|
|
|
SCORIA(() -> new Block(Properties.from(Blocks.ANDESITE)), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.STAIRS, ComesWith.SLAB, ComesWith.WALL),
|
|
|
|
POLISHED_SCORIA(() -> new Block(Properties.from(SCORIA.get())), ITaggable.create().withForgeTags("stone"),
|
|
|
|
ComesWith.SLAB),
|
2020-04-13 08:58:57 +02:00
|
|
|
SCORIA_BRICKS(() -> new Block(Properties.from(SCORIA.get()))),
|
2020-05-02 18:07:46 +02:00
|
|
|
SCORIA_LAYERS(
|
|
|
|
() -> new LayeredCTBlock(Properties.from(SCORIA.get()), AllCTs.SCORIA_LAYERS, AllCTs.POLISHED_SCORIA)),
|
2020-04-13 08:58:57 +02:00
|
|
|
SCORIA_PILLAR(() -> new RotatedPillarBlock(Properties.from(SCORIA.get()))),
|
2020-02-08 03:47:27 +01:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
DARK_SCORIA(() -> new Block(Properties.from(Blocks.ANDESITE))),
|
|
|
|
POLISHED_DARK_SCORIA(() -> new Block(Properties.from(DARK_SCORIA.get()))),
|
|
|
|
DARK_SCORIA_TILES(() -> new Block(Properties.from(DARK_SCORIA.get())), ComesWith.STAIRS, ComesWith.SLAB),
|
2020-05-02 18:07:46 +02:00
|
|
|
DARK_SCORIA_BRICKS(() -> new Block(Properties.from(DARK_SCORIA.get())), ComesWith.STAIRS, ComesWith.SLAB,
|
|
|
|
ComesWith.WALL),
|
2020-01-15 21:56:53 +01:00
|
|
|
|
2019-08-06 18:13:33 +02:00
|
|
|
;
|
2020-05-02 18:07:46 +02:00
|
|
|
|
2019-08-25 10:14:15 +02:00
|
|
|
private enum ComesWith {
|
2020-04-13 08:58:57 +02:00
|
|
|
NO_BLOCKITEM, WALL, FENCE, FENCE_GATE, SLAB, STAIRS
|
2019-08-25 10:14:15 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
public final RegistryEntry<? extends Block> block;
|
|
|
|
public final ImmutableList<RegistryEntry<? extends Block>> alsoRegistered;
|
2020-05-02 18:07:46 +02:00
|
|
|
public final Sections section;
|
2019-09-12 10:00:15 +02:00
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
AllBlocks(Sections section) {
|
|
|
|
Create.registrate().startSection(section);
|
2020-04-13 08:58:57 +02:00
|
|
|
this.block = null;
|
|
|
|
this.alsoRegistered = ImmutableList.of();
|
2020-05-02 18:07:46 +02:00
|
|
|
this.section = Create.registrate().currentSection();
|
2020-03-28 02:27:43 +01:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
AllBlocks(NonNullSupplier<? extends Block> block, ComesWith... comesWith) {
|
|
|
|
this(block, ITaggable.create(), comesWith);
|
2019-09-12 10:00:15 +02:00
|
|
|
}
|
2020-05-02 18:07:46 +02:00
|
|
|
|
|
|
|
AllBlocks(NonNullSupplier<? extends Block> block,
|
|
|
|
NonNullBiFunction<? super Block, Item.Properties, ? extends BlockItem> customItemCreator,
|
|
|
|
ComesWith... comesWith) {
|
|
|
|
this(block, customItemCreator, ITaggable.create(), comesWith);
|
|
|
|
}
|
2019-07-11 09:03:08 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
AllBlocks(NonNullSupplier<? extends Block> block, ITaggable<?> tags, ComesWith... comesWith) {
|
2020-05-02 18:07:46 +02:00
|
|
|
this(block, null, tags, comesWith);
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
AllBlocks(NonNullSupplier<? extends Block> block,
|
|
|
|
NonNullBiFunction<? super Block, Item.Properties, ? extends BlockItem> customItemCreator, ITaggable<?> tags,
|
|
|
|
ComesWith... comesWith) {
|
|
|
|
this.section = Create.registrate().currentSection();
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
this.block = Create.registrate().block(Lang.asId(name()), $ -> block.get()) // TODO take properties as input
|
2020-05-02 18:07:46 +02:00
|
|
|
.blockstate(NonNullBiConsumer.noop()) // TODO
|
2020-04-26 06:58:38 +02:00
|
|
|
.loot(NonNullBiConsumer.noop()) // TODO
|
2020-04-26 18:11:44 +02:00
|
|
|
.setData(ProviderType.LANG, NonNullBiConsumer.noop()) // TODO
|
2020-05-02 18:07:46 +02:00
|
|
|
.transform(applyTags(tags)).transform(b -> registerItemBlock(b, customItemCreator, comesWith))
|
|
|
|
.register();
|
2020-04-13 08:58:57 +02:00
|
|
|
|
|
|
|
ImmutableList.Builder<RegistryEntry<? extends Block>> alsoRegistered = ImmutableList.builder();
|
|
|
|
for (ComesWith with : comesWith) {
|
2020-05-02 18:07:46 +02:00
|
|
|
if (with != ComesWith.NO_BLOCKITEM) {
|
|
|
|
alsoRegistered.add(makeRelatedBlock(this.block, with));
|
|
|
|
}
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
2020-04-13 08:58:57 +02:00
|
|
|
this.alsoRegistered = alsoRegistered.build();
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
public static void register() {
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
public <B extends Block, P> BlockBuilder<B, P> registerItemBlock(BlockBuilder<B, P> builder,
|
|
|
|
NonNullBiFunction<? super B, Item.Properties, ? extends BlockItem> customItemCreator,
|
|
|
|
ComesWith... comesWith) {
|
|
|
|
if (ArrayUtils.contains(comesWith, ComesWith.NO_BLOCKITEM)) {
|
|
|
|
return builder;
|
|
|
|
}
|
2020-04-13 08:58:57 +02:00
|
|
|
return registerAsItem(builder, customItemCreator);
|
2019-08-25 10:14:15 +02:00
|
|
|
}
|
|
|
|
|
2020-05-02 18:07:46 +02:00
|
|
|
private <B extends Block, P> BlockBuilder<B, P> registerAsItem(BlockBuilder<B, P> builder,
|
|
|
|
NonNullBiFunction<? super B, Item.Properties, ? extends BlockItem> customItemCreator) {
|
|
|
|
ItemBuilder<? extends BlockItem, BlockBuilder<B, P>> itemBuilder =
|
|
|
|
customItemCreator == null ? builder.item() : builder.item(customItemCreator);
|
|
|
|
return itemBuilder.model(NonNullBiConsumer.noop()) // TODO
|
|
|
|
.properties($ -> AllItems.includeInItemGroup()).build();
|
2020-03-28 02:27:43 +01:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
@Override
|
|
|
|
public @Nonnull Block get() {
|
|
|
|
return block == null ? Blocks.AIR : block.get();
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
2020-01-05 19:41:38 +01:00
|
|
|
public BlockState getDefault() {
|
2020-03-28 02:27:43 +01:00
|
|
|
return get().getDefaultState();
|
2020-01-05 19:41:38 +01:00
|
|
|
}
|
|
|
|
|
2019-07-11 09:03:08 +02:00
|
|
|
public boolean typeOf(BlockState state) {
|
2020-03-28 02:27:43 +01:00
|
|
|
return state.getBlock() == get();
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
private RegistryEntry<? extends Block> makeRelatedBlock(RegistryEntry<? extends Block> block, ComesWith feature) {
|
|
|
|
NonNullFunction<Block.Properties, ? extends Block> creator;
|
|
|
|
final Tag<Block> tag;
|
2019-08-25 10:14:15 +02:00
|
|
|
|
|
|
|
switch (feature) {
|
|
|
|
case FENCE:
|
2020-05-02 18:07:46 +02:00
|
|
|
creator = FenceBlock::new;
|
|
|
|
tag = BlockTags.FENCES;
|
2019-08-25 10:14:15 +02:00
|
|
|
break;
|
|
|
|
case SLAB:
|
2020-05-02 18:07:46 +02:00
|
|
|
creator = SlabBlock::new;
|
|
|
|
tag = BlockTags.SLABS;
|
2019-08-25 10:14:15 +02:00
|
|
|
break;
|
|
|
|
case STAIRS:
|
2020-05-02 18:07:46 +02:00
|
|
|
creator = p -> new ProperStairsBlock(block.get());
|
|
|
|
tag = BlockTags.STAIRS;
|
2019-08-25 10:14:15 +02:00
|
|
|
break;
|
|
|
|
case WALL:
|
2020-05-02 18:07:46 +02:00
|
|
|
creator = WallBlock::new;
|
|
|
|
tag = BlockTags.WALLS;
|
2019-08-25 10:14:15 +02:00
|
|
|
break;
|
|
|
|
case FENCE_GATE:
|
2020-05-02 18:07:46 +02:00
|
|
|
creator = FenceGateBlock::new;
|
|
|
|
tag = null;
|
2019-08-25 10:14:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
2020-05-02 18:07:46 +02:00
|
|
|
throw new IllegalArgumentException("Unknown ComesWith type?");
|
2019-08-25 10:14:15 +02:00
|
|
|
}
|
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
return Create.registrate().block(block.getId().getPath() + "_" + Lang.asId(feature.name()), creator)
|
2020-05-02 18:07:46 +02:00
|
|
|
.blockstate(NonNullBiConsumer.noop()) // TODO
|
2020-04-26 06:58:38 +02:00
|
|
|
.loot(NonNullBiConsumer.noop()) // TODO
|
2020-05-02 18:07:46 +02:00
|
|
|
.item().model(NonNullBiConsumer.noop()) // TODO
|
|
|
|
.build().transform(b -> tag != null ? b.tag(tag) : b).register();
|
2020-04-13 08:58:57 +02:00
|
|
|
}
|
2020-05-02 18:07:46 +02:00
|
|
|
|
2020-04-13 08:58:57 +02:00
|
|
|
private <B extends Block, P> NonNullUnaryOperator<BlockBuilder<B, P>> applyTags(ITaggable<?> tags) {
|
2020-05-02 18:07:46 +02:00
|
|
|
return b -> {
|
|
|
|
tags.getDataTags(ITaggable.BLOCK).forEach(b::tag);
|
|
|
|
return b;
|
|
|
|
};
|
2019-08-25 10:14:15 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 18:36:18 +02:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
|
|
public static void registerColorHandlers() {
|
|
|
|
BlockColors blockColors = Minecraft.getInstance().getBlockColors();
|
|
|
|
for (AllBlocks block : values()) {
|
2020-03-28 02:27:43 +01:00
|
|
|
if (block.get() instanceof IHaveColorHandler) {
|
|
|
|
blockColors.register(((IHaveColorHandler) block.get()).getColorHandler(), block.get());
|
2019-09-13 18:36:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-11 09:03:08 +02:00
|
|
|
}
|