Jump to content

Recommended Posts

Posted

I have googled it already. but everything is outdated and should be done different with the current version (the methods are changed). so how to do it with the current forge?

Posted

Where do you get the BufferedImage from? If it is a static image, you might be able to use a ResourceLocation with a custom IResourcePack implementation.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted

Use DynamicTexture. You can easily construct a DynamicTexture with BufferedImage,

and get its ResourceLocation from TextureManager#getDynamicTextureLocation(String key, BufferedImage img);

 

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

How can I edit the texture and update the dynamic texture? When I reinitialized the texture with getDynamicTextureLocation() in drawscreen() of my gui I get an memory overflow error.

Posted

How can I edit the texture and update the dynamic texture? When I reinitialized the texture with getDynamicTextureLocation() in drawscreen() of my gui I get an memory overflow error.

That means your texture is too big. How big is it?

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

The image is 600 X 600 px. It crashes in about 10 seconds after the gui was opened.

 

crash:

 

java.lang.OutOfMemoryError: Java heap space

at net.minecraft.client.renderer.texture.DynamicTexture.<init>(DynamicTexture.java:28)

at net.minecraft.client.renderer.texture.DynamicTexture.<init>(DynamicTexture.java:19)

at com.superbas11.modcontrol.client.Gui.TestGUI.drawScreen(GuiBasic.java:230)

at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:427)

at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1078)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1048)

at net.minecraft.client.Minecraft.run(Minecraft.java:345)

at net.minecraft.client.main.Main.main(Main.java:117)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

 

Posted

this does not work:

 

Dynamic.deleteGlTexture();

Dynamic = null;

Dynamic = new DynamicTexture(Image);

Texturelocation = this.mc.getTextureManager().getDynamicTextureLocation("ModControl.Graph",Dynamic); 

 

How should the texture be discarded?

Posted

600x600? Thats huge. Thats bigger than default texturemap...

 

I'd suggest you calculate the image once per tick. Not every frame and reuse that image in rendering instead of recalculating it every frame.

The image itself takes up roughly 1.3 mb in ram. Not to mention variables used in the calculation process. If you run this every frame your heap space gets full really fast.

 

By calculation once per tick or several ticks you give the garbage collector time to catch up.

 

 

How much wood could a woodchuck chuck if a wood chuck could chuck wood - Guybrush Treepwood

 

I wrote my own mod ish... still a few bugs to fix. http://thaumcraft.duckdns.org/downloads/MagicCookies-1.0.6.4.jar

Posted

This should work

 

public static void loadBind(BufferedImage image) {

	int[] pixels = new int[image.getWidth() * image.getHeight()];

	image.getRGB(0, 0, image.getWidth(), image.getHeight(), pixels, 0, image.getWidth());

	ByteBuffer buffer = BufferUtils.createByteBuffer(image.getWidth() * image.getHeight() * BYTES_PER_PIXEL);

	for (int y = 0; y < image.getHeight(); y++) {
		for (int x = 0; x < image.getWidth(); x++) {
			int pixel = pixels[y * image.getWidth() + x];
			buffer.put((byte) ((pixel >> 16) & 0xFF));
			buffer.put((byte) ((pixel >>  & 0xFF));
			buffer.put((byte) (pixel & 0xFF));
			buffer.put((byte) ((pixel >> 24) & 0xFF));
		}
	}

	glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, image.getWidth(), image.getHeight(), 0, GL_RGBA, GL_UNSIGNED_BYTE, (ByteBuffer) buffer.flip());
}

Posted

600x600? Thats huge. Thats bigger than default texturemap...

 

I'd suggest you calculate the image once per tick. Not every frame and reuse that image in rendering instead of recalculating it every frame.

The image itself takes up roughly 1.3 mb in ram. Not to mention variables used in the calculation process. If you run this every frame your heap space gets full really fast.

 

By calculation once per tick or several ticks you give the garbage collector time to catch up.

 

thanks that worked!

 

One last question:

How to set the scale of the image?

 

got this:

this.mc.getTextureManager().bindTexture(Texturelocation);

drawTexturedModalRect(150, 50, 0, 0, 600, 600);

 

Now it renders the image small and multiple times on the screen but I want it to render on a big part of the screen, ones.

 

Posted

o_O

 

You render a big ass image of 600x600 and then you cut it up into a smaller image?

Why not render it into a smaller image? saves spaces on bandwidth to graphics card.

 

Please post of a screenshot of what you have... and what you want it to look because I have the feeling I don't understand what you want

How much wood could a woodchuck chuck if a wood chuck could chuck wood - Guybrush Treepwood

 

I wrote my own mod ish... still a few bugs to fix. http://thaumcraft.duckdns.org/downloads/MagicCookies-1.0.6.4.jar

Posted

That's simply size problem. Please post the rendering code.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

code:

 

 

public TestGui(){

 

...

 

Image = new BufferedImage(600, 600, BufferedImage.TYPE_INT_ARGB);

 

...

 

}

 

@Override

public void drawScreen(int mouseX, int mouseY, float par3) {

   

          ...

 

           

          this.mc.getTextureManager().bindTexture(Texturelocation);

          drawTexturedModalRect(150, 120, 0, 0, 600, 600);

           

           

          RenderHelper.enableGUIStandardItemLighting();RenderHelper.disableStandardItemLighting();

          super.drawScreen(mouseX, mouseY, par3);

          RenderHelper.enableStandardItemLighting();

}

 

 

 

Subscribed to the game tick with some checks to prevent executing when it's not needed:

 

 

        DrawGraph(Image);

        Dynamic = new DynamicTexture(Image);

        Texturelocation = this.mc.getTextureManager().getDynamicTextureLocation("ModControl.Graph",Dynamic);

 

 

Posted

Do not use drawTexturedModalRect. It has several problems with texture size, etc.

Make your custom implementation replacing that. (Texture u,v should be 0,1 -> 1,1 -> 1,0 -> 0,0)

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

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

    • UPDATE: This seems to be happening every time I leave the Beneath dimension (2 for 2). Not sure why those 2 dimensions specifically. I have no problems with the nether or Twilight Forest.
    • I was exploring my world that is hosted on a server and when I go to a certain place that is not yet loaded on the map I get disconnected and the server closes. Could you help me, since I don't know what is causing this? crashlog https://gist.github.com/Dwolfwoood/89438cd77dd8796a6dfa6783c20adaed   log server https://gist.github.com/Dwolfwoood/2aa08cc2c554098c7833b2a02f70e6e6
    • I can launch the game, but whenever I try to get in my server I get the error: java.lang.indexoutofboundsexception: readerIndex(5) + length(8) exceeds writerIndex(9): PooledUnsafeByteBuf(ridx: 5, widx: 9, cap: 9)    I don't really know what's going on. https://pastebin.com/ujr0sRDZ I put the whole log in the Pastebin link.
    • I recently built a mod pack ,RLMCC Insanity Unfolds, and Ive been playing it to make sure its stable and playable, these last few days the game has been running fine with the exception of a few player loading quirks here and there but nothing game breaking, fast forward to this morning attempting to load into my survival world results in the game crashing, I will reach 100% on world loading, the joining game prompt will appear, the loading terrain prompt will appear, I get a large lag spike, and then the game says Saving world and then crashes throwing an unknown error in the launcher when checking the logs I can see that right before the world gets shut down better combat throws a fatal error, I had assumed at first that maybe when the world got shutdown last that something got stuck in an invalid state so I removed the mod and played for a bit to hopefully un-stick whatever it was, no luck there. When I placed the mod back into the game the world continued to crash the game when loading in. I figured that maybe there was a bug introduced in the latest version so I downgraded a couple versions and worked my way back up. The original version of Better Combat the mod pack was using was better combat 1.8.6 - 1.20.1, I tried better combat 1.8.1 - 1.20.1 and worked my way up to version 1.8.5 - 1.20.1, still running into the problem. Removing Better combat solves the problem but removing the mod renders a major part of my mod pack broken as one of the major aspects of the pack was focused around better combat. As mentioned the mod pack was working and running stable prior to this morning with Better Combat 1.8.6 - 1.20.1, and there was no change in the mod list this morning I do not believe that this is a mod compatibility issue as I am still able to generate a new world perfectly fine and the mod pack was working fine these last few days. The loading issue seems to only occur with my original survival world that I made when I built the mod pack.   Here is the last section from my latest.log file https://pastebin.com/6Q9e9ZLf  
×
×
  • Create New...

Important Information

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