Jump to content

[1.11.2] Best Way To Render Item Above Block


LogicTechCorp

Recommended Posts

And you would be wrong. You can use an IModel implementation to get the Item's model and bake it into your block.

There's a few forum threads on this already.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Just now, Draco18s said:

And you would be wrong. You can use an IModel implementation to get the Item's model and bake it into your block.

There's a few forum threads on this already.

The Block has a TileEntity which has an inventory and allows it to store a single item. I would like for this Item to render on top of the Block like an item renders on the ground.

Link to comment
Share on other sites

17 minutes ago, Kokkie said:

The mighty Draco has spoken

Plays epic music

C.. can I be.. your disciple, oh mighty Draco

No

  • Like 2

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I have the Item rendering but it appears dark. What am I doing wrong?

 

public class RenderSummoningAltar extends TileEntitySpecialRenderer<TileEntitySummoningAltar>
{
    @Override
    public void renderTileEntityAt(TileEntitySummoningAltar altar, double x, double y, double z, float partialTicks, int destroyStage)
    {
        if(altar == null)
        {
            return;
        }

        ItemStack stack = altar.getInventory().getStackInSlot(0);

        if(!stack.isEmpty())
        {
            GlStateManager.pushMatrix();
            GlStateManager.translate(x + 0.5F, y + 1.225F, z + 0.5F);
            GlStateManager.disableLighting();

            GlStateManager.rotate((Minecraft.getSystemTime() / 720.0F) * (180.0F / (float)Math.PI), 0.0F, 1.0F, 0.0F);
            GlStateManager.scale(0.5F, 0.5F, 0.5F);
            GlStateManager.pushAttrib();

            RenderHelper.enableStandardItemLighting();
            Minecraft.getMinecraft().getRenderItem().renderItem(stack, ItemCameraTransforms.TransformType.FIXED);
            RenderHelper.disableStandardItemLighting();

            GlStateManager.popAttrib();
            GlStateManager.enableLighting();
            GlStateManager.popMatrix();
        }
    }
}

 

Link to comment
Share on other sites

28 minutes ago, diesieben07 said:

 

I looked through the forum and cannot find a thread that discuses how to do that. Just a couple of questions: Would using what Draco suggested allow any item to work with this. Also, will the item be able to spin like a dropped item?

Edited by LogicTechCorp
Link to comment
Share on other sites

6 hours ago, diesieben07 said:

Look at AnimationTESR.

I have made some progress. Items now render but blocks do not. How would I render blocks and scale/rotate the model?

 

Current code:

public class RenderSummoningAltar extends FastTESR<TileEntitySummoningAltar>
{
    @Override
    public void renderTileEntityFast(TileEntitySummoningAltar altar, double x, double y, double z, float partialTicks, int destroyStage, VertexBuffer vertexRenderer)
    {
        ItemStack stack = altar.getInventory().getStackInSlot(0);

        if(!stack.isEmpty())
        {
            World world = altar.getWorld();

            IBakedModel model = Minecraft.getMinecraft().getRenderItem().getItemModelWithOverrides(stack, world, null);
            List<BakedQuad> quads = model.getQuads(null, null, 0L);

            for(BakedQuad quad : quads)
            {
                vertexRenderer.addVertexData(quad.getVertexData());
                vertexRenderer.putPosition(x, y + 1, z);
            }
        }
    }
}

 

Edited by LogicTechCorp
Link to comment
Share on other sites

16 hours ago, diesieben07 said:

You never mentioned spinning

 

18 hours ago, LogicTechCorp said:

I would like to render an Item that turns on top of my Block

 

18 hours ago, LogicTechCorp said:

turns

I... I think he did. #Synonyms

Developer of Randores (adds 256^3 ores to the game) and Arcane Bags (adds ridiculous storage with ridiculous crafting recipes).

I know Java pretty well... So yeah...

Quote

This is where I'd put an inspirational and/or clever quote, but I can't think of one right now...

This is the output of the totally, 100% working compiler for my programming language, Planet9:

Beginning Compilation...
Failed compilation!
planet9.compiler.error.CompilationException: Compiler not yet implemented
	at planet9.compiler.Compiler.compile(Compiler.java:39)
	at planet9.compiler.app.CompilerApp.main(CompilerApp.java:147)

 

Link to comment
Share on other sites

I have blocks rendering now. There are a few issues: Blocks are rendered with color on them and the tops of blocks and items are transparent.

 

Current Code:

public class RenderSummoningAltar extends FastTESR<TileEntitySummoningAltar>
{
    @Override
    public void renderTileEntityFast(TileEntitySummoningAltar altar, double x, double y, double z, float partialTicks, int destroyStage, VertexBuffer vertexRenderer)
    {
        ItemStack stack = altar.getInventory().getStackInSlot(0);

        if(!stack.isEmpty())
        {
            World world = altar.getWorld();
            float time = (world.getTotalWorldTime() + partialTicks) / 20;

            IBakedModel model = Minecraft.getMinecraft().getRenderItem().getItemModelWithOverrides(stack, world, null);
            List<BakedQuad> quads;

            for(EnumFacing facing : EnumFacing.values())
            {
                quads = model.getQuads(null, facing, 0L);

                for(BakedQuad quad : quads)
                {
                    vertexRenderer.addVertexData(quad.getVertexData());
                    vertexRenderer.putPosition(x, y + 1.5D, z);
                }
            }

            quads = model.getQuads(null, null, 0L);

            for(BakedQuad quad : quads)
            {
                vertexRenderer.addVertexData(quad.getVertexData());
                vertexRenderer.putPosition(x, y + 1.5D, z);
            }
        }
    }
}

 

2017-02-20_18.51.32.png

2017-02-20_18.52.53.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • They were already updated, and just to double check I even did a cleanup and fresh update from that same page. I'm quite sure drivers are not the problem here. 
    • i tried downloading the drivers but it says no AMD graphics hardware has been detected    
    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • As the title says i keep on crashing on forge 1.20.1 even without any mods downloaded, i have the latest drivers (nvidia) and vanilla minecraft works perfectly fine for me logs: https://pastebin.com/5UR01yG9
    • Hello everyone, I'm making this post to seek help for my modded block, It's a special block called FrozenBlock supposed to take the place of an old block, then after a set amount of ticks, it's supposed to revert its Block State, Entity, data... to the old block like this :  The problem I have is that the system breaks when handling multi blocks (I tried some fix but none of them worked) :  The bug I have identified is that the function "setOldBlockFields" in the item's "setFrozenBlock" function gets called once for the 1st block of multiblock getting frozen (as it should), but gets called a second time BEFORE creating the first FrozenBlock with the data of the 1st block, hence giving the same data to the two FrozenBlock :   Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=head] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@73681674 BlockEntityData : id:"minecraft:bed",x:3,y:-60,z:-6} Old Block Fields set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=3, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} Frozen Block Entity set BlockState : Block{minecraft:black_bed}[facing=east,occupied=false,part=foot] BlockPos{x=2, y=-60, z=-6} BlockEntity : net.minecraft.world.level.block.entity.BedBlockEntity@6d1aa3da BlockEntityData : {id:"minecraft:bed",x:2,y:-60,z:-6} here is the code inside my custom "freeze" item :    @Override     public @NotNull InteractionResult useOn(@NotNull UseOnContext pContext) {         if (!pContext.getLevel().isClientSide() && pContext.getHand() == InteractionHand.MAIN_HAND) {             BlockPos blockPos = pContext.getClickedPos();             BlockPos secondBlockPos = getMultiblockPos(blockPos, pContext.getLevel().getBlockState(blockPos));             if (secondBlockPos != null) {                 createFrozenBlock(pContext, secondBlockPos);             }             createFrozenBlock(pContext, blockPos);             return InteractionResult.SUCCESS;         }         return super.useOn(pContext);     }     public static void createFrozenBlock(UseOnContext pContext, BlockPos blockPos) {         BlockState oldState = pContext.getLevel().getBlockState(blockPos);         BlockEntity oldBlockEntity = oldState.hasBlockEntity() ? pContext.getLevel().getBlockEntity(blockPos) : null;         CompoundTag oldBlockEntityData = oldState.hasBlockEntity() ? oldBlockEntity.serializeNBT() : null;         if (oldBlockEntity != null) {             pContext.getLevel().removeBlockEntity(blockPos);         }         BlockState FrozenBlock = setFrozenBlock(oldState, oldBlockEntity, oldBlockEntityData);         pContext.getLevel().setBlockAndUpdate(blockPos, FrozenBlock);     }     public static BlockState setFrozenBlock(BlockState blockState, @Nullable BlockEntity blockEntity, @Nullable CompoundTag blockEntityData) {         BlockState FrozenBlock = BlockRegister.FROZEN_BLOCK.get().defaultBlockState();         ((FrozenBlock) FrozenBlock.getBlock()).setOldBlockFields(blockState, blockEntity, blockEntityData);         return FrozenBlock;     }  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.