Jump to content

[SOLVED] Minecraft is crashing when Screen::tick called


Recommended Posts

Posted (edited)
  Reveal hidden contents

This is my code about GUI and when I call this GUI screen with,

Minecraft.getInstance().displayGuiScreen(ImageGui(commandContext.getArgument("message", String::class.java)))

Minecraft crashes with after just one times of tick() with native error.

 

This is error info (hs_err_pid***)

  Reveal hidden contents

Thanks

Edited by Dayo
Mark as solved
Posted

I found that It has caused by stack-overflow but output of image is strange. I think this is not error about forge so I'm going to found other forum to ask :D

Posted
  On 2/7/2022 at 3:50 PM, Dayo said:
Minecraft.getInstance().displayGuiScreen
Expand  

99.99% chance that this is being used incorrectly. Show the whole class where this line is.

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.

Posted
  On 2/7/2022 at 7:56 PM, Draco18s said:

99.99% chance that this is being used incorrectly. Show the whole class where this line is.

Expand  

I've solve my question.

The problem is caused by size of direct buffer and I change calculation of pixels for

val file: BufferedImage = ImageIO.read(File(ResourceUtil.baseDir, image))
val buf = ByteBuffer.allocateDirect(file.width * file.height * 4)
for(pix in file.getRGB(0, 0, file.width, file.height, null, 0, file.width).asSequence().map{it.toUInt() and 0xFFFFFFFFu }) {
    buf.put((pix and 255u).toByte()) //R
    buf.put(((pix shr 8) and 255u).toByte()) //G
    buf.put(((pix shr 16) and 255u).toByte()) //B
    buf.put((pix shr 24).toByte()) //A
}
buf.flip()
texture = GL11.glGenTextures()
GL11.glBindTexture(GL11.GL_TEXTURE_2D, texture)
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST)
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST)
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_S, GL11.GL_CLAMP)
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_T, GL11.GL_CLAMP)
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGBA, file.width, file.height, 0, GL11.GL_RGBA, GL11.GL_UNSIGNED_BYTE, buf.asIntBuffer())

Thanks for reply

  • Dayo changed the title to [SOLVED] Minecraft is crashing when Screen::tick called

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.