Jump to content

[1.19.2] Rendering "ghost" blocks


zskamljic

Recommended Posts

I was looking into this topic, and trying to update it to 1.19.2, and came up with this so far.

As it happens, it seems like the block is rendered at camera origin, despite my intention to render it in a specific block position. Am I even using the right event? Am I rendering the block correctly? 

Translating the poseStack to all 0 does not seem to be helping either.

Edited by zskamljic
Link to comment
Share on other sites

If you look at LevelRender.renderHitOutline() it uses (pseudo code)

blockPos - camera.getPosition()

So, the PoseStack must be at the camera position when that event is called.

 

You can't translate to anywhere. PoseStack.translate() is a relative operation so passing all 0 does nothing. 🙂 

 

Try something like:

                var target = event.getTarget();
                var cpos = event.getCamera().getPosition(); // camera
                var bpos = target.getBlockPos().relative(target.getDirection()); // block

                var poseStack = event.getPoseStack();
                poseStack.pushPose();
                poseStack.translate(bpos.getX() - cpos.x, bpos.getY() - cpos.y, bpos.getZ() - cpos.z);
                // your code here
                poseStack.popPose();

 

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

If you look at the code for the method you are using, it uses the BlockAndTintGetter (the player.level) you pass to do its calculations of light levels.

If you want to alter things, you will probably need to create a wrapper/delegate implementation of that interface that changes the values returned by the real ClientLevel?

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

I have tried creating a "proxy" BlockAndTintGetter, based on my debugging only getShade, getLightEngine and getBlockState are called, changing values returned by getShade seems to darken the block (closer to 0f) or use default color (closer to 1f), getBlockTint (which I expected to return ARGB int does not seem to get called at all.

I have also tried changing buffer color, but it appears to be ignored there.

Link to comment
Share on other sites

You know as much as about this as I do.  It's not really my area of expertise.

I do know there is some caching code in there. So maybe you are hitting that? See for example AmbientOcclusionFace.calculate() and BlockModelRenderer.Cache

I've tried a couple of times to understand how minecraft's lighting code works, but it is spaghetti. 🙂 

 

Maybe you can use your debugger to disable the cache to see if that is your problem? 

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Link to comment
Share on other sites

I have tried creating a "proxy" BlockAndTintGetter, based on my debugging only getShade, getLightEngine and getBlockState are called, changing values returned by getShade seems to darken the block (closer to 0f) or use default color (closer to 1f), getBlockTint (which I expected to return ARGB int does not seem to get called at all.

I have also tried changing buffer color, but it appears to be ignored there.

By digging through the code, I have discovered that in VertexConsumer interface, one of the overloads of putBulkData is used, with alpha set to 1. The answer was to proxy the VertextConsumer and override the default method putBulkData, using custom alpha value.

I have updated the original gist with the "solution", but it still feels like there should be a cleaner way to achieve this. 

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



×
×
  • Create New...

Important Information

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