2019-07-11 09:03:08 +02:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
2019-07-23 12:54:53 +02:00
|
|
|
import com.simibubi.create.foundation.block.IRenderUtilityBlock;
|
|
|
|
import com.simibubi.create.foundation.block.RenderUtilityBlock;
|
|
|
|
import com.simibubi.create.modules.schematics.block.CreativeCrateBlock;
|
|
|
|
import com.simibubi.create.modules.schematics.block.SchematicTableBlock;
|
|
|
|
import com.simibubi.create.modules.schematics.block.SchematicannonBlock;
|
|
|
|
import com.simibubi.create.modules.symmetry.block.CrossPlaneSymmetryBlock;
|
|
|
|
import com.simibubi.create.modules.symmetry.block.PlaneSymmetryBlock;
|
|
|
|
import com.simibubi.create.modules.symmetry.block.TriplePlaneSymmetryBlock;
|
2019-07-11 09:03:08 +02:00
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.item.BlockItem;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraftforge.registries.IForgeRegistry;
|
|
|
|
|
|
|
|
public enum AllBlocks {
|
|
|
|
|
2019-07-11 19:55:11 +02:00
|
|
|
SCHEMATICANNON(new SchematicannonBlock()),
|
2019-07-23 12:54:53 +02:00
|
|
|
SCHEMATICANNON_CONNECTOR(new RenderUtilityBlock()),
|
|
|
|
SCHEMATICANNON_PIPE(new RenderUtilityBlock()),
|
2019-07-13 12:55:28 +02:00
|
|
|
CREATIVE_CRATE(new CreativeCrateBlock()),
|
|
|
|
|
2019-07-11 19:55:11 +02:00
|
|
|
SCHEMATIC_TABLE(new SchematicTableBlock()),
|
|
|
|
|
2019-07-19 17:50:23 +02:00
|
|
|
SYMMETRY_PLANE(new PlaneSymmetryBlock()),
|
|
|
|
SYMMETRY_CROSSPLANE(new CrossPlaneSymmetryBlock()),
|
|
|
|
SYMMETRY_TRIPLEPLANE(new TriplePlaneSymmetryBlock());
|
2019-07-11 09:03:08 +02:00
|
|
|
|
|
|
|
public Block block;
|
|
|
|
|
|
|
|
private AllBlocks(Block block) {
|
|
|
|
this.block = block;
|
|
|
|
this.block.setRegistryName(Create.ID, this.name().toLowerCase());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void registerBlocks(IForgeRegistry<Block> registry) {
|
|
|
|
for (AllBlocks block : values()) {
|
|
|
|
registry.register(block.block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void registerItemBlocks(IForgeRegistry<Item> registry) {
|
|
|
|
for (AllBlocks block : values()) {
|
2019-07-23 12:54:53 +02:00
|
|
|
if (block.get() instanceof IRenderUtilityBlock)
|
2019-07-11 09:03:08 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
registry.register(new BlockItem(block.get(), AllItems.standardProperties())
|
|
|
|
.setRegistryName(block.get().getRegistryName()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Block get() {
|
|
|
|
return block;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean typeOf(BlockState state) {
|
|
|
|
return state.getBlock() == block;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|