Page 1 of 1

Raising ParticleTransformer::ColorTrans

Posted: Fri Aug 14, 2009 12:58 pm
by theultimat
I was wondering, is there a way to fix the error:

Code: Select all

Message Severity: 2
C:\Battlefront2\main\RedEngineFL\Memory\RedMemoryPool.cpp(170)
Memory pool "ParticleTransformer::ColorTrans" is full; raise count to at least 2860
If so, how? And yes, I know it doesn't matter or crash my map, but I was just wondering if I could fix it. Thanks in advance.

Re: RaisingParticleTransformer::ColorTrans

Posted: Fri Aug 14, 2009 1:17 pm
by AQT
From the BFront2.log errors explained topic:
Teancum wrote:These errors were here when the game shipped, and don't hurt anything whatsoever.

Code: Select all

Message Severity: 2
C:\Battlefront2\main\RedEngineFL\Memory\RedMemoryPool.cpp(170)
Memory pool "ParticleTransformer::SizeTransf" is full; raise count to at least 1075
All ParticleTransformer memory pool errors can be ignored. When playing the actual game (not the debug exe) the game will automatically update these pools as needed.
:wink:

Re: Raising ParticleTransformer::ColorTrans

Posted: Fri Aug 14, 2009 2:25 pm
by theultimat
Ah...oops. :oops: Thanks for pointing that out for me AQT. I guess this should be locked now.

Re: Raising ParticleTransformer::ColorTrans

Posted: Fri Aug 14, 2009 10:19 pm
by KnightsFan
May I note that if you really want to not see that error, put

Code: Select all

SetMemoryPoolSize("ParticleTransformer::SizeTransf", 2860)
somewhere near the other code that looks like this. (Under setup teams)

Re: Raising ParticleTransformer::ColorTrans

Posted: Sat Aug 15, 2009 4:30 pm
by Teancum
That won't work, if I recall. ParticleTransformer pools can't be set by LUA, or at least don't recognize it.

Re: Raising ParticleTransformer::ColorTrans

Posted: Sat Aug 15, 2009 4:56 pm
by destos
are you sure? i put it in my lua and i never got the error again, or at least my map stopped crashing.... it might still be there, i would check it out but i 4got which map had it >.<

Re: Raising ParticleTransformer::ColorTrans

Posted: Sun Aug 16, 2009 1:16 pm
by KnightsFan
Agreed with destos. I put it in and I stopped getting the errors. May not change anything in-game, though.

Re: Raising ParticleTransformer::ColorTrans

Posted: Mon Aug 17, 2009 4:37 am
by MercuryNoodles
I have to be the oddball, here. For me, filling the pool doesn't do anything more than add the "Set item count after being allocated" error.

Re: Raising ParticleTransformer::ColorTrans

Posted: Mon Aug 17, 2009 1:32 pm
by Teancum
MercuryNoodles wrote:I have to be the oddball, here. For me, filling the pool doesn't do anything more than add the "Set item count after being allocated" error.
Yep -- in a cryptic way that's what it does. The game sets that pool automatically, but for some reason the log still reports it.

Re: Raising ParticleTransformer::ColorTrans

Posted: Mon Aug 17, 2009 2:54 pm
by [RDH]Zerted
MercuryNoodles wrote:"Set item count after being allocated" error.
Move memory pools that give you that message above the ReadDataFile('ingame.lvl') line in ScriptInit().