Jump to content

Particle memory management


Ilandria

Recommended Posts

Hey,

 

I'm working on adding custom particles to some of my blocks, and I've gotten it working using a few different methods. However, all of them run into issues related to garbage collection/memory inefficiencies.

 

Currently what I'm doing is the following:

I create an object pool of particles on load (with the intent of not spamming GC memory) and trigger the effects from that pool. If it runs out of available particles it just loops and overwrites the first one:

In ClientProxy.java:
    @SubscribeEvent
	public static void onPostTextureStitch(TextureStitchEvent.Post a_event)
	{
		GlitterParticle[] particles = new GlitterParticle[500];

		for (int i = 0; i < particles.length; i++)
		{
			particles[i] = new GlitterParticle();
		}

		s_glitterEmitter = new Emitter(particles);
	}


In Emitter.java:
	@SideOnly(Side.CLIENT)
	public class Emitter<T extends SimpleParticle>
	{
		private SimpleParticle[] m_particles = null;
		private int m_nextIndex = 0;

		public Emitter(SimpleParticle[] a_particles)
		{
			m_particles = a_particles;
		}

		public void emit(World a_world, double a_x, double a_y, double a_z, Color a_colour)
		{
			SimpleParticle particle = m_particles[m_nextIndex++ % m_particles.length];
			particle.emit(a_world, a_x, a_y, a_z, a_colour);
			Minecraft.getMinecraft().effectRenderer.addEffect(particle);
		}
	}
    
emit() in SimpleParticle:
	public void emit(World a_world, double a_x, double a_y, double a_z, Color a_colour)
	{
		world = a_world;
		particleAge = 0;
		isExpired = false;
		posX = a_x;
		posY = a_y;
		posZ = a_z;
		prevPosX = posX;
		prevPosY = posY;
		prevPosZ = posZ;
		particleRed = a_colour.getRed() / 255.0f;
		particleGreen = a_colour.getGreen() / 255.0f;
		particleBlue = a_colour.getBlue() / 255.0f;
	}
    
Aaaand... How it's being used in randomDisplayTick on my blocks:
    if(a_world.isAirBlock(new BlockPos(x, y, z)))
	{
		ClientProxy.s_glitterEmitter.emit(a_world, x, y, z, colour);
	}

 

I figured if I made my own pool of particles and added them to the effect renderer on emission, it wouldn't make copies of particles and thus get around spamming tons of GC memory, and if I tried to add a duplicate particle it simply wouldn't add it to the renderer until the previous reference to it was "finished" and removed. I was sad when I looked into ParticleManager and found that no such precautions are built-in. My knowledge on Java's GC and value vs reference types definitely could be stronger, I'm mostly drawing from my experience with C# for this.

 

This is a concern for me since lots of the blocks and items in my mod emit particles and I'd like to make sure I'm doing things efficiently without allocating literal hundreds of megs of GC memory every few seconds just for particles that could easily be pre-allocated and pooled during load. If there's no built-in MC/Forge way of doing this, would anyone be able to suggest how I can do my own fully-custom rendering within the MC/Forge environment so I can be memory-efficient?

 

Thank you! :D

Edited by Ilandria
Link to comment
Share on other sites

Don't your particles "die" after a couple seconds? I think the vanilla system just relies on the fact that a small number of short-lived particles are in the world at any time. If you're producing particles faster than they die then that would be a problem no matter what. And the steady-state memory usage depends heavily on the ratio of rate of particles emitting versus particles dying.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Link to comment
Share on other sites

1 hour ago, jabelar said:

Don't your particles "die" after a couple seconds? I think the vanilla system just relies on the fact that a small number of short-lived particles are in the world at any time. If you're producing particles faster than they die then that would be a problem no matter what. And the steady-state memory usage depends heavily on the ratio of rate of particles emitting versus particles dying.

There’s a proper limit of 16,384 (from memory) particles allowed at any one time. If another particle is spawned the oldest existing particle is killed

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Link to comment
Share on other sites

Yah they do die, but the problem isn't that they're not dying or anything - like I said it works fine and looks exactly how I want it to. The issues I'm facing are just that although each particle is tiny (data-wise), having hundreds of them generated (which happens if you place a lot of the blocks that emit them) adds up memory allocations pretty quick, which the Java GC then has to clean up (which is not good for performance).

One solution to that problem is pre-allocating stuff (object pooling, etc.) then just re-using expired/the oldest one(s). I'm just having an issue where I don't know how to do that within the Minecraft engine/Forge API. I think the solution may be for me to do a 100% completely custom rendering solution (which I'd be fine with doing) instead of hooking into the MC/Forge particle system, but I'm unsure how to do that within this environment and am either hoping for references or an alternate solution to the problem.

It also doesn't help that Java isn't my strongest suit, I'm learning the quirks of the language as I go. C++ and C# are where I know the ins and outs.

Thank you for the reply though! :D

Edited by Ilandria
Link to comment
Share on other sites

In Java it’s usually better performance wise to do create & let the GC destroy than do Object pooling just because Java was designed this way (Taken from this answer on stackoverflow). So I think that it’s ok to use Minecraft & Forge’s system. ALSO - IMO trying to optimise anything in Minecraft is a waste of time.

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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.