Welcome, Guest

Author Topic: White planet lag glitch  (Read 3993 times)

BrandCollision

  • *****
  • Posts: 95
  • I am a major fanboy of space games :)
White planet lag glitch
« on: December 21, 2014, 12:12:19 PM »
Sometimes when impacting large bodies into each other (it happens more commonly with gas giants), the object that survives will become a white orb with a reddish glow around it, When this happens, the game lags like crazy, even when that's the only body loaded, whats weird is it shouldn't be having trouble loading such a thing, all it is is a white ball with a red blur around it. Is there a reason for this? and if so, can i fix it? and if so, how?

Gordon Freeman

  • *****
  • Posts: 480
Re: White planet lag glitch
« Reply #1 on: December 21, 2014, 12:37:38 PM »
You do realize that most of what US2 processes is calculations and not actual rendering of bodies, right?

BrandCollision

  • *****
  • Posts: 95
  • I am a major fanboy of space games :)
Re: White planet lag glitch
« Reply #2 on: December 21, 2014, 12:50:45 PM »
Yes, but it doesnt have any gravity or anything to prosess, only that white orb with red glow glow guy, all it is is a spherical SOI (Sphere Of Influince) and rendering the planet on-screen, yet it still lags like crazy

Gordon Freeman

  • *****
  • Posts: 480
Re: White planet lag glitch
« Reply #3 on: December 21, 2014, 12:55:40 PM »
No, it does have to calculate the gravity of that object. It also has to process the velocity, angular momentum, fragments, glow, temperature, etc. etc.

BrandCollision

  • *****
  • Posts: 95
  • I am a major fanboy of space games :)
Re: White planet lag glitch
« Reply #4 on: December 21, 2014, 01:40:29 PM »
Well, really, from my veiws, i theorise that its caused by alot of ground shockwaves sweeping acrost the surface when alot of fragments slam into it, so, is there a way to prevent the ground shockwaves from lagging my game?

C7

  • Development Team
  • *****
  • Posts: 544
Re: White planet lag glitch
« Reply #5 on: December 21, 2014, 01:58:19 PM »
To give you a little bit of technical information about what's going on here.

When the impacts happen, a lot of extra bodies are instantly created, they're in very close proximity to the parent body, and because of this, the Physics engine has to step in small increments to make sure that collisions are not missed. It's a whole cloud of colliders very close to a larger one. As well, it needs to calculate the gravitational influence of the parent on all the bodies that are spawned.

As well, it tends to create a lot of sub impacts and every impact is carrying mass and requires a transfer from one body to the other, there's also sound FX, visual FX and other systems that come in to play. Long story short it's a whole flurry of activity in a short time and it will temporarily bog things down.

One of the current things we're working on is improving how our impact events work, so we're not sending a ton of events for a single collision (they've been sent every step of the collision in the past), Instead we now send one event and keep it updated with relevant information about the ongoing event. This allows us to budget the fragments, particles and FX a lot better then we ever could before.

We're also making changes to how the physics engine steps, and what it sees as important enough to globally slow down things for increased accuracy. It's now giving lower importance to things like the particles so they don't cause such a problem. As well, we discovered a bit of a bug with the automatic performance controls, they were relying on information that wasn't being reported, so it was actually increasing the requested step length when performance got bad instead of easing up on things.

All of these changes require a lot of testing, and it will be a little while yet till they all get incorporated into a release. Getting the game running smoothly and reliably is a priority for us.

BrandCollision

  • *****
  • Posts: 95
  • I am a major fanboy of space games :)
Re: White planet lag glitch
« Reply #6 on: December 21, 2014, 07:43:48 PM »
Thing is, all the impacters have already collided with the bigger plannet, theres  only one body still there, and the planet is glowing white (with redish glow around it) and the engine still lags, i mean its just a white orb with a red glow at this point

smjjames

  • *****
  • Posts: 1128
Re: White planet lag glitch
« Reply #7 on: December 22, 2014, 06:58:10 AM »
As well, we discovered a bit of a bug with the automatic performance controls, they were relying on information that wasn't being reported, so it was actually increasing the requested step length when performance got bad instead of easing up on things.

That could explain why the step length kept flunctuating and increasing step length whenever 'things got bad' and the timestep was going in the yellow and red.