2020-02-04 14:48:21 +01:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
|
|
|
import static net.minecraft.state.properties.BlockStateProperties.FACING;
|
|
|
|
import static net.minecraft.state.properties.BlockStateProperties.HORIZONTAL_FACING;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
2020-04-05 03:54:24 +02:00
|
|
|
import com.mojang.blaze3d.matrix.MatrixStack;
|
2020-02-04 14:48:21 +01:00
|
|
|
import com.simibubi.create.foundation.utility.AngleHelper;
|
|
|
|
import com.simibubi.create.foundation.utility.Lang;
|
2020-05-25 23:09:36 +02:00
|
|
|
import com.simibubi.create.foundation.utility.MatrixStacker;
|
2020-02-04 14:48:21 +01:00
|
|
|
import com.simibubi.create.foundation.utility.SuperByteBuffer;
|
|
|
|
|
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.client.renderer.model.IBakedModel;
|
|
|
|
import net.minecraft.util.Direction;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import net.minecraftforge.client.event.ModelBakeEvent;
|
|
|
|
import net.minecraftforge.client.event.ModelRegistryEvent;
|
|
|
|
import net.minecraftforge.client.model.ModelLoader;
|
|
|
|
|
|
|
|
public enum AllBlockPartials {
|
|
|
|
|
|
|
|
SCHEMATICANNON_CONNECTOR("schematicannon/connector"),
|
|
|
|
SCHEMATICANNON_PIPE("schematicannon/pipe"),
|
|
|
|
|
|
|
|
SHAFTLESS_COGWHEEL("cogwheel_shaftless"),
|
|
|
|
BELT_PULLEY,
|
|
|
|
SHAFT_HALF,
|
|
|
|
|
|
|
|
ENCASED_FAN_INNER("encased_fan/propeller"),
|
|
|
|
HAND_CRANK_HANDLE("hand_crank/handle"),
|
2020-05-21 00:15:02 +02:00
|
|
|
MECHANICAL_PRESS_HEAD("mechanical_press/head"),
|
|
|
|
MECHANICAL_MIXER_POLE("mechanical_mixer/pole"),
|
|
|
|
MECHANICAL_MIXER_HEAD("mechanical_mixer/head"),
|
|
|
|
MECHANICAL_CRAFTER_LID("mechanical_crafter/lid"),
|
|
|
|
MECHANICAL_CRAFTER_ARROW("mechanical_crafter/arrow"),
|
|
|
|
MECHANICAL_CRAFTER_BELT_FRAME("mechanical_crafter/belt"),
|
|
|
|
MECHANICAL_CRAFTER_BELT("mechanical_crafter/belt_animated"),
|
2020-02-04 14:48:21 +01:00
|
|
|
GAUGE_DIAL("gauge/dial"),
|
|
|
|
GAUGE_INDICATOR("gauge/indicator"),
|
2020-05-21 00:15:02 +02:00
|
|
|
GAUGE_HEAD_SPEED("gauge/speedometer/head"),
|
|
|
|
GAUGE_HEAD_STRESS("gauge/stressometer/head"),
|
|
|
|
BEARING_TOP("bearing/top"),
|
2020-05-31 19:17:00 +02:00
|
|
|
DRILL_HEAD("mechanical_drill/head"),
|
|
|
|
HARVESTER_BLADE("mechanical_harvester/blade"),
|
2020-02-04 14:48:21 +01:00
|
|
|
DEPLOYER_POLE("deployer/pole"),
|
|
|
|
DEPLOYER_HAND_POINTING("deployer/hand_pointing"),
|
|
|
|
DEPLOYER_HAND_PUNCHING("deployer/hand_punching"),
|
|
|
|
DEPLOYER_HAND_HOLDING("deployer/hand_holding"),
|
|
|
|
ANALOG_LEVER_HANDLE("analog_lever/handle"),
|
|
|
|
ANALOG_LEVER_INDICATOR("analog_lever/indicator"),
|
|
|
|
BELT_TUNNEL_FLAP("belt_tunnel/flap"),
|
|
|
|
BELT_TUNNEL_INDICATOR("belt_tunnel/indicator"),
|
2020-05-22 20:02:07 +02:00
|
|
|
FLEXPEATER_INDICATOR("diodes/indicator"),
|
2020-02-05 12:36:22 +01:00
|
|
|
FLYWHEEL("flywheel/wheel"),
|
|
|
|
FLYWHEEL_UPPER_ROTATING("flywheel/upper_rotating_connector"),
|
|
|
|
FLYWHEEL_LOWER_ROTATING("flywheel/lower_rotating_connector"),
|
|
|
|
FLYWHEEL_UPPER_SLIDING("flywheel/upper_sliding_connector"),
|
|
|
|
FLYWHEEL_LOWER_SLIDING("flywheel/lower_sliding_connector"),
|
|
|
|
FURNACE_GENERATOR_FRAME("furnace_engine/frame"),
|
2020-02-05 23:34:23 +01:00
|
|
|
CUCKOO_MINUTE_HAND("cuckoo_clock/minute_hand"),
|
|
|
|
CUCKOO_HOUR_HAND("cuckoo_clock/hour_hand"),
|
|
|
|
CUCKOO_LEFT_DOOR("cuckoo_clock/left_door"),
|
|
|
|
CUCKOO_RIGHT_DOOR("cuckoo_clock/right_door"),
|
|
|
|
CUCKOO_PIG("cuckoo_clock/pig"),
|
|
|
|
CUCKOO_CREEPER("cuckoo_clock/creeper"),
|
2020-05-21 00:15:02 +02:00
|
|
|
ROPE_COIL("rope_pulley/rope_coil"),
|
|
|
|
ROPE_HALF("rope_pulley/rope_half"),
|
|
|
|
ROPE_HALF_MAGNET("rope_pulley/rope_half_magnet"),
|
2020-03-27 17:52:05 +01:00
|
|
|
MILLSTONE_COG("millstone/inner"),
|
2020-05-25 23:09:36 +02:00
|
|
|
|
2020-05-18 15:51:24 +02:00
|
|
|
SYMMETRY_PLANE("symmetry_effect/plane"),
|
|
|
|
SYMMETRY_CROSSPLANE("symmetry_effect/crossplane"),
|
|
|
|
SYMMETRY_TRIPLEPLANE("symmetry_effect/tripleplane"),
|
2020-06-14 22:24:46 +02:00
|
|
|
|
|
|
|
COPPER_PIPE_CASING("copper_pipe/casing"),
|
|
|
|
COPPER_PIPE_RIM_UP("copper_pipe/rim/up"),
|
|
|
|
COPPER_PIPE_RIM_DOWN("copper_pipe/rim/down"),
|
|
|
|
COPPER_PIPE_RIM_EAST("copper_pipe/rim/east"),
|
|
|
|
COPPER_PIPE_RIM_WEST("copper_pipe/rim/west"),
|
|
|
|
COPPER_PIPE_RIM_NORTH("copper_pipe/rim/north"),
|
|
|
|
COPPER_PIPE_RIM_SOUTH("copper_pipe/rim/south"),
|
2020-06-15 02:25:33 +02:00
|
|
|
|
|
|
|
MECHANICAL_PUMP_ARROW("mechanical_pump/arrow"),
|
|
|
|
MECHANICAL_PUMP_COG("mechanical_pump/cog"),
|
2020-05-25 23:09:36 +02:00
|
|
|
|
2020-02-04 14:48:21 +01:00
|
|
|
;
|
2020-06-14 22:24:46 +02:00
|
|
|
|
2020-02-04 14:48:21 +01:00
|
|
|
private ResourceLocation modelLocation;
|
|
|
|
private IBakedModel bakedModel;
|
|
|
|
|
2020-05-25 23:09:36 +02:00
|
|
|
private AllBlockPartials() {}
|
2020-02-04 14:48:21 +01:00
|
|
|
|
|
|
|
private AllBlockPartials(String path) {
|
|
|
|
modelLocation = new ResourceLocation(Create.ID, "block/" + path);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void onModelRegistry(ModelRegistryEvent event) {
|
|
|
|
for (AllBlockPartials partial : AllBlockPartials.values()) {
|
|
|
|
partial.createModelLocation();
|
|
|
|
ModelLoader.addSpecialModel(partial.modelLocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void onModelBake(ModelBakeEvent event) {
|
|
|
|
Map<ResourceLocation, IBakedModel> modelRegistry = event.getModelRegistry();
|
|
|
|
for (AllBlockPartials partial : AllBlockPartials.values()) {
|
|
|
|
partial.createModelLocation();
|
|
|
|
partial.bakedModel = modelRegistry.get(partial.modelLocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void createModelLocation() {
|
|
|
|
if (modelLocation == null)
|
|
|
|
modelLocation = new ResourceLocation(Create.ID, "block/" + Lang.asId(name()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public IBakedModel get() {
|
|
|
|
return bakedModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public SuperByteBuffer renderOn(BlockState referenceState) {
|
|
|
|
return CreateClient.bufferCache.renderPartial(this, referenceState);
|
|
|
|
}
|
|
|
|
|
|
|
|
public SuperByteBuffer renderOnDirectional(BlockState referenceState) {
|
|
|
|
Direction facing = referenceState.get(FACING);
|
|
|
|
return renderOnDirectional(referenceState, facing);
|
|
|
|
}
|
2020-05-25 23:09:36 +02:00
|
|
|
|
2020-02-04 14:48:21 +01:00
|
|
|
public SuperByteBuffer renderOnHorizontal(BlockState referenceState) {
|
|
|
|
Direction facing = referenceState.get(HORIZONTAL_FACING);
|
|
|
|
return renderOnDirectional(referenceState, facing);
|
|
|
|
}
|
2020-05-25 23:09:36 +02:00
|
|
|
|
2020-02-04 14:48:21 +01:00
|
|
|
public SuperByteBuffer renderOnDirectional(BlockState referenceState, Direction facing) {
|
2020-04-05 03:54:24 +02:00
|
|
|
MatrixStack ms = new MatrixStack();
|
|
|
|
// TODO 1.15 find a way to cache this model matrix computation
|
2020-05-25 23:09:36 +02:00
|
|
|
MatrixStacker.of(ms)
|
|
|
|
.centre()
|
|
|
|
.rotateY(AngleHelper.horizontalAngle(facing))
|
|
|
|
.rotateX(AngleHelper.verticalAngle(facing))
|
|
|
|
.unCentre();
|
|
|
|
SuperByteBuffer renderPartial =
|
|
|
|
CreateClient.bufferCache.renderDirectionalPartial(this, referenceState, facing, ms);
|
2020-02-04 14:48:21 +01:00
|
|
|
return renderPartial;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|