1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
|
package com.anthonyhilyard.iceberg.renderer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Predicate;
import com.anthonyhilyard.iceberg.util.EntityCollector;
import com.anthonyhilyard.iceberg.util.GuiHelper;
import com.anthonyhilyard.iceberg.util.ItemUtil;
import com.google.common.collect.Maps;
import org.joml.Matrix4f;
import org.joml.Quaternionf;
import org.joml.Vector3f;
import org.lwjgl.opengl.GL11;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
import com.mojang.blaze3d.vertex.VertexSorting;
import com.mojang.datafixers.util.Pair;
import com.mojang.math.Axis;
import com.mojang.math.MatrixUtil;
import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.pipeline.MainTarget;
import com.mojang.blaze3d.pipeline.RenderTarget;
import com.mojang.blaze3d.platform.Lighting;
import com.mojang.blaze3d.platform.GlStateManager.SourceFactor;
import com.mojang.blaze3d.platform.GlStateManager.DestFactor;
import net.minecraft.CrashReport;
import net.minecraft.CrashReportCategory;
import net.minecraft.ReportedException;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.entity.EntityRenderDispatcher;
import net.minecraft.client.renderer.entity.ItemRenderer;
import net.minecraft.client.renderer.texture.OverlayTexture;
import net.minecraft.client.renderer.texture.TextureManager;
import net.minecraft.client.color.item.ItemColors;
import net.minecraft.client.gui.GuiGraphics;
import net.minecraft.client.renderer.BlockEntityWithoutLevelRenderer;
import net.minecraft.client.renderer.ItemBlockRenderTypes;
import net.minecraft.client.renderer.LightTexture;
import net.minecraft.client.renderer.MultiBufferSource;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.client.renderer.MultiBufferSource.BufferSource;
import net.minecraft.client.renderer.block.BlockModelShaper;
import net.minecraft.client.renderer.blockentity.BlockEntityRenderer;
import net.minecraft.client.resources.model.BakedModel;
import net.minecraft.client.resources.model.ModelManager;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.server.packs.resources.ReloadableResourceManager;
import net.minecraft.server.packs.resources.ResourceManager;
import net.minecraft.tags.ItemTags;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.EntityType;
import net.minecraft.world.entity.EquipmentSlot;
import net.minecraft.world.entity.animal.horse.Horse;
import net.minecraft.world.entity.decoration.ArmorStand;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.inventory.InventoryMenu;
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.HorseArmorItem;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemDisplayContext;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.EntityBlock;
import net.minecraft.world.level.block.HalfTransparentBlock;
import net.minecraft.world.level.block.StainedGlassPaneBlock;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.properties.BlockStateProperties;
import net.minecraft.world.level.block.state.properties.DoubleBlockHalf;
/**
* An extended ItemRenderer with extra functionality, such as allowing items to be rendered to a RenderTarget
* before drawing to screen for alpha support, and allowing handheld item models to be rendered into the gui.
*/
public class CustomItemRenderer extends ItemRenderer
{
/* Cylindrical bounds for a model. */
private record ModelBounds(Vector3f center, float height, float radius) {}
private static RenderTarget iconFrameBuffer = null;
private static ArmorStand armorStand = null;
private static Horse horse = null;
private static Entity entity = null;
private static Pair<Item, CompoundTag> cachedArmorStandItem = null;
private static Pair<Item, CompoundTag> cachedHorseArmorItem = null;
private static Pair<Item, CompoundTag> cachedEntityItem = null;
private static Map<Pair<Item, CompoundTag>, ModelBounds> modelBoundsCache = Maps.newHashMap();
private static final List<Direction> quadDirections;
static
{
quadDirections = new ArrayList<>(Arrays.asList(Direction.values()));
quadDirections.add(null);
}
private Minecraft minecraft;
private final ModelManager modelManager;
private final BlockEntityWithoutLevelRenderer blockEntityRenderer;
public CustomItemRenderer(TextureManager textureManagerIn, ModelManager modelManagerIn, ItemColors itemColorsIn, BlockEntityWithoutLevelRenderer blockEntityRendererIn, Minecraft mcIn)
{
super(mcIn, textureManagerIn, modelManagerIn, itemColorsIn, blockEntityRendererIn);
minecraft = mcIn;
modelManager = modelManagerIn;
blockEntityRenderer = blockEntityRendererIn;
if (minecraft.getResourceManager() instanceof ReloadableResourceManager resourceManager)
{
resourceManager.registerReloadListener(this);
}
// Initialize the icon framebuffer if needed.
if (iconFrameBuffer == null)
{
// Use 96 x 96 pixels for the icon frame buffer so at 1.5 scale we get 4x resolution (for smooth icons on larger gui scales).
iconFrameBuffer = new MainTarget(96, 96);
iconFrameBuffer.setClearColor(0.0f, 0.0f, 0.0f, 0.0f);
iconFrameBuffer.clear(Minecraft.ON_OSX);
}
}
private void renderGuiModel(ItemStack itemStack, int x, int y, Quaternionf rotation, BakedModel bakedModel, GuiGraphics graphics)
{
minecraft.getTextureManager().getTexture(InventoryMenu.BLOCK_ATLAS).setFilter(false, false);
RenderSystem.setShaderTexture(0, InventoryMenu.BLOCK_ATLAS);
RenderSystem.enableBlend();
RenderSystem.blendFunc(SourceFactor.SRC_ALPHA, DestFactor.ONE_MINUS_SRC_ALPHA);
RenderSystem.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
PoseStack modelViewStack = RenderSystem.getModelViewStack();
modelViewStack.pushPose();
modelViewStack.translate(x + 8.0f, y + 8.0f, 150.0f);
modelViewStack.mulPoseMatrix((new Matrix4f()).scaling(1.0f, -1.0f, 1.0f));
modelViewStack.scale(16.0f, 16.0f, 16.0f);
RenderSystem.applyModelViewMatrix();
BufferSource bufferSource = Minecraft.getInstance().renderBuffers().bufferSource();
boolean flatLighting = !bakedModel.usesBlockLight();
if (flatLighting) { Lighting.setupForFlatItems(); }
PoseStack poseStack = new PoseStack();
renderModel(itemStack, ItemDisplayContext.GUI, false, poseStack, rotation, bufferSource, LightTexture.FULL_BRIGHT, OverlayTexture.NO_OVERLAY, bakedModel);
RenderSystem.disableDepthTest();
bufferSource.endBatch();
RenderSystem.enableDepthTest();
if (flatLighting) { Lighting.setupFor3DItems(); }
modelViewStack.popPose();
RenderSystem.applyModelViewMatrix();
}
@SuppressWarnings("deprecation")
private void renderEntityModel(Entity entity, PoseStack poseStack, MultiBufferSource bufferSource, int packedLight)
{
Minecraft minecraft = Minecraft.getInstance();
EntityRenderDispatcher entityRenderDispatcher = minecraft.getEntityRenderDispatcher();
Lighting.setupForEntityInInventory();
RenderSystem.enableDepthTest();
RenderSystem.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
entityRenderDispatcher.setRenderShadow(false);
poseStack.pushPose();
poseStack.mulPose(Axis.YP.rotationDegrees(90.0f));
try
{
RenderSystem.runAsFancy(() -> entityRenderDispatcher.render(entity, 0.0, 0.0, 0.0, 0.0f, 1.0f, poseStack, bufferSource, packedLight));
}
catch (Exception e) {}
poseStack.popPose();
if (bufferSource instanceof BufferSource source)
{
source.endBatch();
}
entityRenderDispatcher.setRenderShadow(true);
RenderSystem.applyModelViewMatrix();
Lighting.setupFor3DItems();
}
private <T extends MultiBufferSource> void renderModelInternal(ItemStack itemStack, ItemDisplayContext displayContext, boolean leftHanded, PoseStack poseStack,
Quaternionf rotation, T bufferSource, int packedLight, int packedOverlay, BakedModel bakedModel,
Predicate<T> bufferSourceReady)
{
Minecraft minecraft = Minecraft.getInstance();
if (Player.getEquipmentSlotForItem(itemStack).isArmor())
{
if (updateArmorStand(itemStack))
{
poseStack.pushPose();
poseStack.mulPose(Axis.YP.rotationDegrees(-90.0f));
renderEntityModel(armorStand, poseStack, bufferSource, packedLight);
poseStack.popPose();
}
}
if (!bakedModel.isCustomRenderer() && !itemStack.is(Items.TRIDENT))
{
boolean fabulous;
if (displayContext != ItemDisplayContext.GUI && !displayContext.firstPerson() && itemStack.getItem() instanceof BlockItem blockItem)
{
Block block = blockItem.getBlock();
fabulous = !(block instanceof HalfTransparentBlock) && !(block instanceof StainedGlassPaneBlock);
}
else
{
fabulous = true;
}
if (bufferSourceReady.test(bufferSource) && itemStack.getItem() instanceof BlockItem blockItem)
{
Block block = blockItem.getBlock();
BakedModel blockModel = null;
BlockModelShaper blockModelShaper = minecraft.getBlockRenderer().getBlockModelShaper();
boolean isBlockEntity = false;
blockModel = blockModelShaper.getBlockModel(block.defaultBlockState());
if (blockModel != modelManager.getMissingModel())
{
// First try rendering via the BlockEntityWithoutLevelRenderer.
try
{
blockEntityRenderer.renderByItem(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay);
}
catch (Exception e)
{
// Do nothing if an exception occurs.
}
}
else
{
blockModel = null;
}
if (block.defaultBlockState().hasProperty(BlockStateProperties.DOUBLE_BLOCK_HALF))
{
// This is a double block, so we'll need to render both halves.
// First render the bottom half.
BlockState bottomState = block.defaultBlockState().setValue(BlockStateProperties.DOUBLE_BLOCK_HALF, DoubleBlockHalf.LOWER);
BakedModel bottomModel = blockModelShaper.getBlockModel(bottomState);
renderBakedModel(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay, bottomModel, fabulous);
// Then render the top half.
poseStack.pushPose();
poseStack.translate(0.0f, 1.0f, 0.0f);
BlockState topState = block.defaultBlockState().setValue(BlockStateProperties.DOUBLE_BLOCK_HALF, DoubleBlockHalf.UPPER);
BakedModel topModel = blockModelShaper.getBlockModel(topState);
renderBakedModel(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay, topModel, fabulous);
poseStack.popPose();
}
if (blockItem.getBlock() instanceof EntityBlock entityBlock)
{
isBlockEntity = true;
try
{
renderBlockEntity(itemStack, poseStack, bufferSource, packedLight, packedOverlay, minecraft, entityBlock, blockItem.getBlock().defaultBlockState());
}
catch (Exception e)
{
// This can fail for things like beacons that require a level. We'll just ignore it.
}
}
// If we still haven't rendered anything or this is a block entity, try rendering the block model.
if (blockModel != null && (bufferSourceReady.test(bufferSource) || isBlockEntity))
{
renderBakedModel(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay, blockModel, fabulous);
}
}
// Now try rendering entity models for items that spawn entities.
if (bufferSourceReady.test(bufferSource) && EntityCollector.itemCreatesEntity(itemStack, Entity.class))
{
if (updateEntity(itemStack))
{
renderEntityModel(entity, poseStack, bufferSource, packedLight);
}
}
// If this is horse armor, render it here.
if (bufferSourceReady.test(bufferSource) && itemStack.getItem() instanceof HorseArmorItem)
{
if (updateHorseArmor(itemStack))
{
renderEntityModel(horse, poseStack, bufferSource, packedLight);
}
}
// Finally, fall back to just rendering the item model.
if (bufferSourceReady.test(bufferSource))
{
renderBakedModel(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay, bakedModel, fabulous);
}
}
else if (bufferSourceReady.test(bufferSource))
{
blockEntityRenderer.renderByItem(itemStack, displayContext, poseStack, bufferSource, packedLight, packedOverlay);
}
}
private void renderModel(ItemStack itemStack, ItemDisplayContext displayContext, boolean leftHanded, PoseStack poseStack, Quaternionf rotation, MultiBufferSource bufferSource, int packedLight, int packedOverlay, BakedModel bakedModel)
{
if (!itemStack.isEmpty())
{
// If this model doesn't have a special transform for the given context type (most likely GUI), default to ground instead.
ItemDisplayContext previewContext = displayContext;
if (!bakedModel.getTransforms().hasTransform(displayContext))
{
previewContext = ItemDisplayContext.GROUND;
}
boolean isBlockItem = false, spawnsEntity = false, isArmor = false;
if (itemStack.getItem() instanceof BlockItem blockItem)
{
isBlockItem = true;
}
else if (EntityCollector.itemCreatesEntity(itemStack, Entity.class))
{
spawnsEntity = true;
}
if (Player.getEquipmentSlotForItem(itemStack).isArmor())
{
isArmor = true;
}
poseStack.pushPose();
poseStack.translate(0.5f, 0.5f, 0.5f);
if (isBlockItem || spawnsEntity)
{
// Apply the standard block rotation so block entities match other blocks.
poseStack.mulPose(new Quaternionf().rotationXYZ((float)Math.toRadians(30.0f), (float)Math.toRadians(225.0f), 0.0f));
}
else
{
bakedModel.getTransforms().getTransform(previewContext).apply(leftHanded, poseStack);
}
poseStack.translate(-0.5f, -0.5f, -0.5f);
// Get the model bounds.
ModelBounds modelBounds = getModelBounds(itemStack, previewContext, leftHanded, poseStack, rotation, bufferSource, packedLight, packedOverlay, bakedModel);
// Undo the camera transforms now that we have the model bounds.
poseStack.popPose();
poseStack.pushPose();
// Rotate the model.
poseStack.mulPose(rotation);
// Scale the model to fit.
float scale = 0.8f / Math.max(modelBounds.height, modelBounds.radius * 2.0f);
// Adjust the scale based on the armor type.
if (isArmor)
{
switch (Player.getEquipmentSlotForItem(itemStack))
{
case HEAD:
scale *= 0.75f;
break;
case LEGS:
scale *= 1.3f;
break;
case FEET:
scale *= 0.85f;
break;
default:
break;
}
}
poseStack.scale(scale, scale, scale);
// Translate the model to the center of the item.
poseStack.translate(-modelBounds.center.x(), -modelBounds.center.y(), -modelBounds.center.z());
poseStack.translate(0.5f, 0.5f, 0.5f);
// Reapply the camera transforms.
if (isBlockItem || spawnsEntity)
{
// Apply the standard block rotation so block entities match other blocks.
poseStack.mulPose(new Quaternionf().rotationXYZ((float)Math.toRadians(30.0f), (float)Math.toRadians(225.0f), 0.0f));
}
else
{
bakedModel.getTransforms().getTransform(previewContext).apply(leftHanded, poseStack);
}
poseStack.translate(-0.5f, -0.5f, -0.5f);
CheckedBufferSource checkedBufferSource = CheckedBufferSource.create(bufferSource);
renderModelInternal(itemStack, previewContext, leftHanded, poseStack, rotation, checkedBufferSource, packedLight, packedOverlay, bakedModel, b -> !b.hasRendered());
poseStack.popPose();
}
}
private void renderBlockEntity(ItemStack itemStack, PoseStack poseStack, MultiBufferSource bufferSource, int packedLight,
int packedOverlay, Minecraft minecraft, EntityBlock entityBlock, BlockState blockState) throws Exception
{
// If we didn't render via the BlockEntityWithoutLevelRenderer, now check if this is a block entity and render that.
BlockEntity blockEntity = entityBlock.newBlockEntity(BlockPos.ZERO, blockState);
if (blockEntity != null)
{
if (itemStack.hasTag())
{
blockEntity.load(ItemUtil.getItemNBT(itemStack));
}
BlockEntityRenderer<BlockEntity> renderer = minecraft.getBlockEntityRenderDispatcher().getRenderer(blockEntity);
if (renderer != null)
{
renderer.render(blockEntity, minecraft.getFrameTime(), poseStack, bufferSource, packedLight, packedOverlay);
}
}
}
private void renderBakedModel(ItemStack itemStack, ItemDisplayContext displayContext, PoseStack poseStack,
MultiBufferSource bufferSource, int packedLight, int packedOverlay, BakedModel bakedModel, boolean fabulous)
{
RenderType renderType = ItemBlockRenderTypes.getRenderType(itemStack, fabulous);
VertexConsumer vertexConsumer;
if (itemStack.is(ItemTags.COMPASSES) && itemStack.hasFoil())
{
poseStack.pushPose();
PoseStack.Pose posestack$pose = poseStack.last();
if (displayContext == ItemDisplayContext.GUI)
{
MatrixUtil.mulComponentWise(posestack$pose.pose(), 0.5F);
}
else if (displayContext.firstPerson())
{
MatrixUtil.mulComponentWise(posestack$pose.pose(), 0.75F);
}
if (fabulous)
{
vertexConsumer = getCompassFoilBufferDirect(bufferSource, renderType, posestack$pose);
}
else
{
vertexConsumer = getCompassFoilBuffer(bufferSource, renderType, posestack$pose);
}
poseStack.popPose();
}
else if (fabulous)
{
vertexConsumer = getFoilBufferDirect(bufferSource, renderType, true, itemStack.hasFoil());
}
else
{
vertexConsumer = getFoilBuffer(bufferSource, renderType, true, itemStack.hasFoil());
}
renderModelLists(bakedModel, itemStack, packedLight, packedOverlay, poseStack, vertexConsumer);
}
private boolean updateArmorStand(ItemStack itemStack)
{
EquipmentSlot equipmentSlot = Player.getEquipmentSlotForItem(itemStack);
if (!equipmentSlot.isArmor())
{
// This isn't armor, so don't render anything.
return false;
}
if (armorStand == null)
{
Minecraft minecraft = Minecraft.getInstance();
armorStand = EntityType.ARMOR_STAND.create(minecraft.level);
armorStand.setInvisible(true);
}
// If somehow the armor stand is still null, then we can't render anything.
if (armorStand == null)
{
return false;
}
// If the item has changed, then we need to update the armor stand.
if (cachedArmorStandItem != Pair.of(itemStack.getItem(), ItemUtil.getItemNBT(itemStack)))
{
// Clear the armor stand.
for (EquipmentSlot slot : EquipmentSlot.values())
{
armorStand.setItemSlot(slot, ItemStack.EMPTY);
}
// Equip the armor stand with the armor.
armorStand.setItemSlot(equipmentSlot, itemStack);
cachedArmorStandItem = Pair.of(itemStack.getItem(), ItemUtil.getItemNBT(itemStack));
}
return true;
}
private Entity getEntityFromItem(ItemStack itemStack)
{
Entity collectedEntity = null;
List<Entity> collectedEntities = EntityCollector.collectEntitiesFromItem(itemStack);
if (!collectedEntities.isEmpty())
{
// Just return the first entity collected.
// TODO: Should all entities be considered for weird items that spawn multiple?
collectedEntity = collectedEntities.get(0);
}
return collectedEntity;
}
private boolean updateEntity(ItemStack itemStack)
{
Pair<Item, CompoundTag> entityItem = Pair.of(itemStack.getItem(), ItemUtil.getItemNBT(itemStack));
if (entity == null || cachedEntityItem != entityItem)
{
entity = getEntityFromItem(itemStack);
cachedEntityItem = entityItem;
}
// If somehow the entity is still null, then we can't render anything.
return entity != null;
}
private boolean updateHorseArmor(ItemStack horseArmorItem)
{
// If this isn't a horse armor item, we can't render anything.
if (!(horseArmorItem.getItem() instanceof HorseArmorItem))
{
return false;
}
if (horse == null)
{
Minecraft minecraft = Minecraft.getInstance();
horse = EntityType.HORSE.create(minecraft.level);
horse.setInvisible(true);
}
// If somehow the horse is still null, then we can't render anything.
if (horse == null)
{
return false;
}
// If the item has changed, then we need to update the horse.
if (cachedHorseArmorItem != Pair.of(horseArmorItem.getItem(), ItemUtil.getItemNBT(horseArmorItem)))
{
// Equip the horse with the armor.
horse.setItemSlot(EquipmentSlot.CHEST, horseArmorItem);
cachedHorseArmorItem = Pair.of(horseArmorItem.getItem(), ItemUtil.getItemNBT(horseArmorItem));
}
return true;
}
private ModelBounds boundsFromVertices(Set<Vector3f> vertices)
{
Vector3f center = new Vector3f();
float radius = 0.0f;
float height = 0.0f;
float minX = Float.MAX_VALUE;
float minY = Float.MAX_VALUE;
float minZ = Float.MAX_VALUE;
float maxX = Float.MIN_VALUE;
float maxY = Float.MIN_VALUE;
float maxZ = Float.MIN_VALUE;
for (Vector3f vertex : vertices)
{
minX = Math.min(minX, vertex.x);
minY = Math.min(minY, vertex.y);
minZ = Math.min(minZ, vertex.z);
maxX = Math.max(maxX, vertex.x);
maxY = Math.max(maxY, vertex.y);
maxZ = Math.max(maxZ, vertex.z);
}
center = new Vector3f((minX + maxX) / 2.0f, (minY + maxY) / 2.0f, (minZ + maxZ) / 2.0f);
height = maxY - minY;
for (Vector3f vertex : vertices)
{
radius = Math.max(radius, (float) Math.sqrt((vertex.x - center.x) * (vertex.x - center.x) + (vertex.z - center.z) * (vertex.z - center.z)));
}
return new ModelBounds(center, height, radius);
}
private ModelBounds getModelBounds(ItemStack itemStack, ItemDisplayContext displayContext, boolean leftHanded, PoseStack poseStack,
Quaternionf rotation, MultiBufferSource bufferSource, int packedLight, int packedOverlay, BakedModel bakedModel)
{
Pair<Item, CompoundTag> key = Pair.of(itemStack.getItem(), ItemUtil.getItemNBT(itemStack));
if (!modelBoundsCache.containsKey(key))
{
VertexCollector vertexCollector = VertexCollector.create();
renderModelInternal(itemStack, displayContext, leftHanded, poseStack, rotation, vertexCollector, packedLight, packedOverlay, bakedModel, b -> b.getVertices().isEmpty());
// Now store the bounds in the cache.
modelBoundsCache.put(key, boundsFromVertices(vertexCollector.getVertices()));
}
return modelBoundsCache.get(key);
}
public void renderDetailModelIntoGUI(ItemStack stack, int x, int y, Quaternionf rotation, GuiGraphics graphics)
{
Minecraft minecraft = Minecraft.getInstance();
BakedModel bakedModel = minecraft.getItemRenderer().getModel(stack, minecraft.level, minecraft.player, 0);
try
{
renderGuiModel(stack, x, y, rotation, bakedModel, graphics);
}
catch (Throwable throwable)
{
CrashReport crashreport = CrashReport.forThrowable(throwable, "Rendering item");
CrashReportCategory crashreportcategory = crashreport.addCategory("Item being rendered");
crashreportcategory.setDetail("Item Type", () -> {
return String.valueOf((Object)stack.getItem());
});
crashreportcategory.setDetail("Registry Name", () -> String.valueOf(BuiltInRegistries.ITEM.getKey(stack.getItem())));
crashreportcategory.setDetail("Item Damage", () -> {
return String.valueOf(stack.getDamageValue());
});
crashreportcategory.setDetail("Item NBT", () -> {
return String.valueOf((Object)stack.getTag());
});
crashreportcategory.setDetail("Item Foil", () -> {
return String.valueOf(stack.hasFoil());
});
throw new ReportedException(crashreport);
}
}
public void renderItemModelIntoGUIWithAlpha(PoseStack poseStack, ItemStack stack, int x, int y, float alpha)
{
BakedModel bakedModel = minecraft.getItemRenderer().getModel(stack, null, null, 0);
RenderTarget lastFrameBuffer = minecraft.getMainRenderTarget();
// Bind the icon framebuffer so we can render to texture.
iconFrameBuffer.clear(Minecraft.ON_OSX);
iconFrameBuffer.bindWrite(true);
Matrix4f matrix = new Matrix4f();
matrix.setOrtho(0.0f, iconFrameBuffer.width, iconFrameBuffer.height, 0.0f, 1000.0f, 3000.0f);
RenderSystem.clear(GL11.GL_DEPTH_BUFFER_BIT, Minecraft.ON_OSX);
RenderSystem.backupProjectionMatrix();
RenderSystem.setProjectionMatrix(matrix, VertexSorting.ORTHOGRAPHIC_Z);
minecraft.getTextureManager().getTexture(InventoryMenu.BLOCK_ATLAS).setFilter(false, false);
RenderSystem.setShaderTexture(0, InventoryMenu.BLOCK_ATLAS);
RenderSystem.disableCull();
RenderSystem.enableBlend();
RenderSystem.blendFuncSeparate(SourceFactor.SRC_ALPHA, DestFactor.ONE_MINUS_SRC_ALPHA, SourceFactor.ONE, DestFactor.ONE_MINUS_SRC_ALPHA);
RenderSystem.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
PoseStack modelViewStack = RenderSystem.getModelViewStack();
modelViewStack.pushPose();
modelViewStack.setIdentity();
modelViewStack.translate(48.0f, 48.0f, -2000.0f);
modelViewStack.scale(96.0f, 96.0f, 96.0f);
RenderSystem.applyModelViewMatrix();
BufferSource bufferSource = minecraft.renderBuffers().bufferSource();
boolean flatLighting = !bakedModel.usesBlockLight();
if (flatLighting)
{
Lighting.setupForFlatItems();
}
render(stack, ItemDisplayContext.GUI, false, new PoseStack(), bufferSource, LightTexture.FULL_BRIGHT, OverlayTexture.NO_OVERLAY, bakedModel);
bufferSource.endBatch();
RenderSystem.enableDepthTest();
if (flatLighting)
{
Lighting.setupFor3DItems();
}
modelViewStack.popPose();
RenderSystem.applyModelViewMatrix();
RenderSystem.restoreProjectionMatrix();
// Rebind the previous framebuffer, if there was one.
if (lastFrameBuffer != null)
{
lastFrameBuffer.bindWrite(true);
// Blit from the texture we just rendered to, respecting the alpha value given.
RenderSystem.enableBlend();
RenderSystem.defaultBlendFunc();
RenderSystem.disableCull();
RenderSystem.setShaderColor(1.0f, 1.0f, 1.0f, alpha);
RenderSystem.setShaderTexture(0, iconFrameBuffer.getColorTextureId());
GuiHelper.blit(poseStack, x, y, 16, 16, 0, 0, iconFrameBuffer.width, iconFrameBuffer.height, iconFrameBuffer.width, iconFrameBuffer.height);
RenderSystem.setShaderColor(1.0f, 1.0f, 1.0f, 1.0f);
iconFrameBuffer.unbindRead();
}
else
{
iconFrameBuffer.unbindWrite();
}
}
@Override
public void onResourceManagerReload(ResourceManager resourceManager)
{
super.onResourceManagerReload(resourceManager);
// Clear the model bounds cache.
modelBoundsCache.clear();
}
}
|