2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.client;
|
|
|
|
|
2022-09-25 00:14:29 +02:00
|
|
|
import com.minelittlepony.unicopia.block.*;
|
2020-04-22 16:28:20 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.ChangelingMagicParticle;
|
2021-02-19 15:56:01 +01:00
|
|
|
import com.minelittlepony.unicopia.client.particle.CloudsEscapingParticle;
|
2020-04-22 16:28:20 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.DiskParticle;
|
2021-02-05 20:19:41 +01:00
|
|
|
import com.minelittlepony.unicopia.client.particle.GroundPoundParticle;
|
2021-02-02 11:52:50 +01:00
|
|
|
import com.minelittlepony.unicopia.client.particle.HealthDrainParticle;
|
2021-12-28 01:19:26 +01:00
|
|
|
import com.minelittlepony.unicopia.client.particle.LightningBoltParticle;
|
2020-04-22 16:28:20 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.MagicParticle;
|
2020-10-13 17:44:49 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.RainboomParticle;
|
2020-10-14 21:07:36 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.RainbowTrailParticle;
|
2020-04-22 16:28:20 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.RaindropsParticle;
|
2021-03-03 19:03:16 +01:00
|
|
|
import com.minelittlepony.unicopia.client.particle.RunesParticle;
|
2020-04-22 16:28:20 +02:00
|
|
|
import com.minelittlepony.unicopia.client.particle.SphereParticle;
|
2022-09-11 15:42:26 +02:00
|
|
|
import com.minelittlepony.unicopia.client.render.*;
|
2022-09-15 00:51:07 +02:00
|
|
|
import com.minelittlepony.unicopia.client.render.entity.*;
|
2021-08-24 21:15:43 +02:00
|
|
|
import com.minelittlepony.unicopia.entity.UEntities;
|
2021-02-14 21:15:30 +01:00
|
|
|
import com.minelittlepony.unicopia.item.ChameleonItem;
|
2021-03-02 14:40:37 +01:00
|
|
|
import com.minelittlepony.unicopia.item.GemstoneItem;
|
2021-02-03 21:25:42 +01:00
|
|
|
import com.minelittlepony.unicopia.item.UItems;
|
2020-09-22 15:11:20 +02:00
|
|
|
import com.minelittlepony.unicopia.particle.UParticles;
|
2022-09-11 15:42:26 +02:00
|
|
|
|
|
|
|
import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap;
|
2020-04-22 16:28:20 +02:00
|
|
|
import net.fabricmc.fabric.api.client.particle.v1.ParticleFactoryRegistry;
|
2020-09-27 17:44:39 +02:00
|
|
|
import net.fabricmc.fabric.api.client.particle.v1.ParticleFactoryRegistry.PendingParticleFactory;
|
2021-12-22 10:15:09 +01:00
|
|
|
import net.fabricmc.fabric.api.client.rendering.v1.EntityRendererRegistry;
|
2021-02-14 21:15:30 +01:00
|
|
|
import net.fabricmc.fabric.api.client.rendering.v1.BuiltinItemRendererRegistry;
|
2021-02-03 21:25:42 +01:00
|
|
|
import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry;
|
2022-09-25 00:14:29 +02:00
|
|
|
import net.minecraft.block.Block;
|
2021-02-14 21:15:30 +01:00
|
|
|
import net.minecraft.client.MinecraftClient;
|
2022-09-25 00:14:29 +02:00
|
|
|
import net.minecraft.client.color.block.BlockColorProvider;
|
2022-09-23 23:25:00 +02:00
|
|
|
import net.minecraft.client.color.world.BiomeColors;
|
|
|
|
import net.minecraft.client.color.world.FoliageColors;
|
2022-06-25 00:19:55 +02:00
|
|
|
import net.minecraft.client.item.ModelPredicateProviderRegistry;
|
2020-09-27 17:44:39 +02:00
|
|
|
import net.minecraft.client.particle.Particle;
|
|
|
|
import net.minecraft.client.particle.SpriteProvider;
|
2022-09-25 01:55:29 +02:00
|
|
|
import net.minecraft.client.render.*;
|
2020-09-22 15:11:20 +02:00
|
|
|
import net.minecraft.client.render.entity.FlyingItemEntityRenderer;
|
2021-02-14 21:15:30 +01:00
|
|
|
import net.minecraft.client.render.item.ItemRenderer;
|
|
|
|
import net.minecraft.client.render.model.json.ModelTransformation;
|
2020-09-27 17:44:39 +02:00
|
|
|
import net.minecraft.client.world.ClientWorld;
|
2022-09-11 15:42:26 +02:00
|
|
|
import net.minecraft.fluid.Fluids;
|
2022-09-25 00:14:29 +02:00
|
|
|
import net.minecraft.item.*;
|
2020-09-27 17:44:39 +02:00
|
|
|
import net.minecraft.particle.ParticleEffect;
|
2021-03-02 14:40:37 +01:00
|
|
|
import net.minecraft.util.Identifier;
|
2020-04-15 14:22:03 +02:00
|
|
|
|
|
|
|
public interface URenderers {
|
|
|
|
static void bootstrap() {
|
2020-09-27 17:44:39 +02:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.UNICORN_MAGIC, createFactory(MagicParticle::new));
|
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.CHANGELING_MAGIC, createFactory(ChangelingMagicParticle::new));
|
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.RAIN_DROPS, createFactory(RaindropsParticle::new));
|
2021-12-26 09:49:04 +01:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.HEALTH_DRAIN, createFactory(HealthDrainParticle::create));
|
2020-10-13 17:44:49 +02:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.RAINBOOM_RING, RainboomParticle::new);
|
2020-10-14 21:07:36 +02:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.RAINBOOM_TRAIL, RainbowTrailParticle::new);
|
2021-03-03 19:03:16 +01:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.MAGIC_RUNES, RunesParticle::new);
|
2020-05-03 19:20:51 +02:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.SPHERE, SphereParticle::new);
|
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.DISK, DiskParticle::new);
|
2021-02-05 20:19:41 +01:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.GROUND_POUND, GroundPoundParticle::new);
|
2021-02-19 15:56:01 +01:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.CLOUDS_ESCAPING, CloudsEscapingParticle::new);
|
2021-12-28 01:19:26 +01:00
|
|
|
ParticleFactoryRegistry.getInstance().register(UParticles.LIGHTNING_BOLT, LightningBoltParticle::new);
|
2020-04-26 22:40:43 +02:00
|
|
|
|
2021-02-27 16:47:54 +01:00
|
|
|
AccessoryFeatureRenderer.register(BraceletFeatureRenderer::new);
|
|
|
|
AccessoryFeatureRenderer.register(AmuletFeatureRenderer::new);
|
2021-02-27 21:05:57 +01:00
|
|
|
AccessoryFeatureRenderer.register(WingsFeatureRenderer::new);
|
2021-08-08 18:36:56 +02:00
|
|
|
AccessoryFeatureRenderer.register(IcarusWingsFeatureRenderer::new);
|
|
|
|
AccessoryFeatureRenderer.register(BatWingsFeatureRenderer::new);
|
2021-02-27 16:47:54 +01:00
|
|
|
|
2021-12-22 10:15:09 +01:00
|
|
|
EntityRendererRegistry.register(UEntities.THROWN_ITEM, FlyingItemEntityRenderer::new);
|
2022-03-27 16:02:14 +02:00
|
|
|
EntityRendererRegistry.register(UEntities.MUFFIN, FlyingItemEntityRenderer::new);
|
2022-01-11 17:19:36 +01:00
|
|
|
EntityRendererRegistry.register(UEntities.MAGIC_BEAM, MagicBeamEntityRenderer::new);
|
2021-12-22 10:15:09 +01:00
|
|
|
EntityRendererRegistry.register(UEntities.BUTTERFLY, ButterflyEntityRenderer::new);
|
|
|
|
EntityRendererRegistry.register(UEntities.FLOATING_ARTEFACT, FloatingArtefactEntityRenderer::new);
|
|
|
|
EntityRendererRegistry.register(UEntities.CAST_SPELL, CastSpellEntityRenderer::new);
|
2021-12-27 13:05:31 +01:00
|
|
|
EntityRendererRegistry.register(UEntities.TWITTERMITE, FairyEntityRenderer::new);
|
2021-12-22 10:15:09 +01:00
|
|
|
EntityRendererRegistry.register(UEntities.SPELLBOOK, SpellbookEntityRenderer::new);
|
2022-09-15 00:51:07 +02:00
|
|
|
EntityRendererRegistry.register(UEntities.AIR_BALLOON, AirBalloonEntityRenderer::new);
|
2021-02-03 21:25:42 +01:00
|
|
|
|
|
|
|
ColorProviderRegistry.ITEM.register((stack, i) -> i > 0 ? -1 : ((DyeableItem)stack.getItem()).getColor(stack), UItems.FRIENDSHIP_BRACELET);
|
2021-02-14 21:15:30 +01:00
|
|
|
BuiltinItemRendererRegistry.INSTANCE.register(UItems.FILLED_JAR, (stack, mode, matrices, vertexConsumers, light, overlay) -> {
|
|
|
|
|
|
|
|
ItemRenderer renderer = MinecraftClient.getInstance().getItemRenderer();
|
|
|
|
|
|
|
|
ChameleonItem item = (ChameleonItem)stack.getItem();
|
|
|
|
|
|
|
|
// Reset stuff done in the beforelands
|
|
|
|
matrices.pop();
|
|
|
|
|
|
|
|
if (mode == ModelTransformation.Mode.GUI) {
|
|
|
|
DiffuseLighting.disableGuiDepthLighting();
|
|
|
|
}
|
|
|
|
|
|
|
|
VertexConsumerProvider.Immediate immediate = MinecraftClient.getInstance().getBufferBuilders().getEntityVertexConsumers();
|
|
|
|
|
|
|
|
if (item.hasAppearance(stack)) {
|
|
|
|
matrices.push();
|
|
|
|
matrices.scale(0.5F, 0.5F, 0.5F);
|
|
|
|
matrices.translate(0.0125, 0.1, 0);
|
2021-08-04 15:38:03 +02:00
|
|
|
renderer.renderItem(item.getAppearanceStack(stack), mode, light, overlay, matrices, immediate, 0);
|
2021-02-14 21:15:30 +01:00
|
|
|
matrices.pop();
|
|
|
|
}
|
2021-08-04 15:38:03 +02:00
|
|
|
renderer.renderItem(item.createAppearanceStack(stack, UItems.EMPTY_JAR), mode, light, OverlayTexture.DEFAULT_UV, matrices, immediate, 0);
|
2021-02-14 21:15:30 +01:00
|
|
|
immediate.draw();
|
|
|
|
|
|
|
|
if (mode == ModelTransformation.Mode.GUI) {
|
|
|
|
DiffuseLighting.enableGuiDepthLighting();
|
|
|
|
}
|
|
|
|
matrices.push();
|
|
|
|
|
|
|
|
});
|
2022-09-18 21:39:42 +02:00
|
|
|
PolearmRenderer.register(UItems.WOODEN_POLEARM);
|
|
|
|
PolearmRenderer.register(UItems.STONE_POLEARM);
|
|
|
|
PolearmRenderer.register(UItems.IRON_POLEARM);
|
|
|
|
PolearmRenderer.register(UItems.GOLDEN_POLEARM);
|
|
|
|
PolearmRenderer.register(UItems.DIAMOND_POLEARM);
|
|
|
|
PolearmRenderer.register(UItems.NETHERITE_POLEARM);
|
2022-06-25 00:19:55 +02:00
|
|
|
ModelPredicateProviderRegistry.register(UItems.GEMSTONE, new Identifier("affinity"), (stack, world, entity, seed) -> {
|
2021-03-02 21:10:52 +01:00
|
|
|
return GemstoneItem.isEnchanted(stack) ? 1 + GemstoneItem.getSpellKey(stack).getAffinity().ordinal() : 0;
|
2021-03-02 14:40:37 +01:00
|
|
|
});
|
|
|
|
ColorProviderRegistry.ITEM.register((stack, i) -> {
|
|
|
|
return i > 0 || !GemstoneItem.isEnchanted(stack) ? -1 : GemstoneItem.getSpellKey(stack).getColor();
|
|
|
|
}, UItems.GEMSTONE);
|
2022-09-25 00:14:29 +02:00
|
|
|
|
|
|
|
BlockColorProvider tintedProvider = (state, view, pos, color) -> {
|
2022-09-23 23:25:00 +02:00
|
|
|
if (view == null || pos == null) {
|
|
|
|
color = FoliageColors.getDefaultColor();
|
|
|
|
} else {
|
|
|
|
color = BiomeColors.getFoliageColor(view, pos);
|
|
|
|
}
|
|
|
|
|
2022-09-25 00:14:29 +02:00
|
|
|
return ((TintedBlock)state.getBlock()).getTint(state, view, pos, color);
|
|
|
|
};
|
|
|
|
|
|
|
|
ColorProviderRegistry.BLOCK.register(tintedProvider, TintedBlock.REGISTRY.stream().toArray(Block[]::new));
|
|
|
|
ColorProviderRegistry.ITEM.register((stack, i) -> {
|
2022-09-25 01:55:29 +02:00
|
|
|
return tintedProvider.getColor(Block.getBlockFromItem(stack.getItem()).getDefaultState(), null, null, i);
|
2022-09-25 00:14:29 +02:00
|
|
|
}, TintedBlock.REGISTRY.stream().map(Block::asItem).filter(i -> i != Items.AIR).toArray(Item[]::new));
|
2022-09-11 15:42:26 +02:00
|
|
|
|
2022-09-25 01:55:29 +02:00
|
|
|
BlockRenderLayerMap.INSTANCE.putBlocks(RenderLayer.getCutout(), UBlocks.TRANSLUCENT_BLOCKS.stream().toArray(Block[]::new));
|
2022-09-11 15:42:26 +02:00
|
|
|
// for lava boats
|
2022-09-25 01:55:29 +02:00
|
|
|
BlockRenderLayerMap.INSTANCE.putFluids(RenderLayer.getTranslucent(), Fluids.LAVA, Fluids.FLOWING_LAVA);
|
2020-04-15 14:22:03 +02:00
|
|
|
}
|
2020-09-27 17:44:39 +02:00
|
|
|
|
|
|
|
static <T extends ParticleEffect> PendingParticleFactory<T> createFactory(ParticleSupplier<T> supplier) {
|
2021-02-02 11:52:50 +01:00
|
|
|
return provider -> (effect, world, x, y, z, dx, dy, dz) -> supplier.get(effect, provider, world, x, y, z, dx, dy, dz);
|
2020-09-27 17:44:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
interface ParticleSupplier<T extends ParticleEffect> {
|
2021-02-02 11:52:50 +01:00
|
|
|
Particle get(T effect, SpriteProvider provider, ClientWorld world, double x, double y, double z, double dx, double dy, double dz);
|
2020-09-27 17:44:39 +02:00
|
|
|
}
|
2020-04-15 14:22:03 +02:00
|
|
|
}
|