Author Topic: (thoughts about how to) reduce lag  (Read 1801 times)

titi

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 4,239
    • View Profile
    • http://www.titusgames.de
(thoughts about how to) reduce lag
« on: 28 February 2013, 18:14:28 »
In some svn versions we saw some lag after joining that made me think about lag in general.

What kind of lag do I talk about here is a lag related to multiplayer. Its the command delay lag. So if you give a unit a command it may take a  moment until it reacts.

How does it work in general:
Commands of all clients are send to the server. This collects all commands of one key frame and distributes them to all clients. for execution.
Now the client ( servers a client too in this logic ) receives the command list and executes all commands in the moment they were meant for.
If there are no commands for the next keyframe, the client stops and waits for them.
If the command list was already received it does not stop and just executes the command.

The following scenarios make trouble now: ( Client KeyFrame is c here and server KeyFrame is s )

A client sends his commands to the server. As this takes a while. It can cause one type of commad lag which is:
Delay d=Client to server send time+ time to next command distribution of server+ time to send commands from server to client.
If this delay is bigger than the duratoin of 1 keyframe the command is executed one keyfFame later which is the some lag you already feel.

so   
Code: [Select]
Delay d / keyFrameDuration is the number of keyframes the command is delayed.
This Lag is "natural" and nothing we can change! Its caused by the network speed and is the raw time needed to send packages to the server and back.

But I think there is another problem which makes this problem worse:
Its caused by the start of of the game and the fact that each clients has its own timing.

In the moment the server wants to start he sends a "Start" command to all clients. Once the clients receive this message they start their game and timer.
As the time such a single "start" message can vary a lot it can cause the folowing effect:
a) if a client reaches the next keyframe he might be there too early, because sending the command list takes a bit longer than the initial start message. By this the client has to pause and wait until ist received. This is bad and will result in visible stop and go. To solve this we delay the start of the client a bit to ensure the command list form the server is alreay received.

But what happens if the client starts too late ( for whatever reasonslike long time of sending first message or whatever) ?
This is is very bad and  because it will cause teh following:
As already said the client starts his game and timer after receiving his start comand. If this is delayed for something like 5 seconds we will never be able to catch up this delay at the moment, because the game is timed locally to the clock/timer we started when we received the start message.
5 seconds back means: send a command to the server. the server will queue this command for next command round, but as teh server is already 5 seconds further this command will be in a command list meant for the next server keyframe.  Sadly this command cycle will happen 5 seconds later on the client. For the player on this client this looks like a 5 second delay commanding his unit, also the connection might be fast enough.

I think/hope this can be fixed with the following idea:
On the client once we receive a command list from the server, we save the time ( or better the local game frame )when it was received. Now if we want to start executing this command we compare the current frame to the one we saved after receiving the game.  If this time difference gets too big its the time we need to catch up. This should not be done too exact as sending messages over network can differ a lot. We need to watch it for a longer time period like 10 key frames for example to be sure. Average/Min/And MAx should give us a good idea of what value we can use  to correct the lag.
On the other hand we must correct if clients need to wait for server commands like described before.


« Last Edit: 8 April 2013, 13:16:45 by titi »
Try Megaglest! Improved Engine / New factions / New tilesets / New maps / New scenarios

softcoder

  • MegaGlest Team
  • Battle Machine
  • ********
  • Posts: 2,238
    • View Profile
Re: thoughts about how to reduce lag
« Reply #1 on: 1 March 2013, 06:54:23 »
I think i've discovered how to deal with this without needing to pause the server.

For now please test the join in progress game and let me know if the current lag issue is resolved. We have lots of possibilities to fix lagging in general now that I understand the problem.

tomreyn

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 2,764
    • View Profile
    • MegaGlest - the free and open source cross platform 3D real-time strategy game
Re: thoughts about how to reduce lag
« Reply #2 on: 1 March 2013, 10:22:41 »
Playing with two processes (server, client) on my slow intelbox (specs below), using separate copies of MegaGlest and UserData_Root I get a constant lag of 2 FPS for the client who joined the game the server was already running, with some spikes of up to 8 FPS. So this is much improved, but could possibly be improved even further.

Note that I needed to activate the "wait for lagging clients" option to not get disconnected when the game starts (and a player joining the game takes about 2 or 3 minutes). I'm not sure whether this is due to this low spec hardware or whether it's mabe a general issue.
atibox: Ryzen 1800X (8 cores @3.6GHz), 32 GB RAM, MSI Radeon RX 580 Gaming X 8G, PCI subsystem ID [1462:3417], (Radeon RX 580 chipset, POLARIS10) @3440x1440; latest stable Ubuntu release, (open source) radeon (amdgpu) / mesa video driver
atibox (old): Core2Quad Q9400 (4 cores @2.66GHz), 8 GB RAM, XFX HD-467X-DDF2, PCI subsystem ID [1682:2931], (Radeon HD 4670, RV730 XT) @1680x1050; latest stable Ubuntu release, (open source) radeon / mesa video driver
notebook: HP envy13d020ng
internet access: VDSL2+

· · · How YOU can contribute to MG · Latest development snapshot · How to build yourself · Megapack techtree · Currently hosted MG games · · ·

Coldfusionstorm

  • Golem
  • ******
  • Posts: 868
    • View Profile
Re: thoughts about how to reduce lag
« Reply #3 on: 2 March 2013, 11:57:25 »
A thread devoted to fixing/reducing lag?, i love you guys!  :thumbup:
WiP Game developer.
I do danish translations.
"i break stuff"

titi

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 4,239
    • View Profile
    • http://www.titusgames.de
Re: thoughts about how to reduce lag
« Reply #4 on: 4 March 2013, 00:46:28 »
Current state: Revision 4162

I played several games and they all were a bit different.

game1:
First game ( 3 player ) was great with very constant command delay ( 1 second )  and no visible choppienes for anyone. In the end filus dropped out due to trouble with his system but that was all.

game2:
Player filux  crashed in the middle of the game !? But I don't know why Maybe someone tried to join the game while it was running or his system trouble again . Before all was good. 1 second command delay, displayed as 0(0) for me as server.

game 3 ( with carla form brasil so bad connection included ):
I was server and gameplay was very good for me. In the beginning I got one little freeze of maybe 0.5 seconds but thats all. For MuwuM the game was ok in general . Carla ( If I understood correctly ) had some problems  ( choppy  ).
On server she was listet with 1(0) and  one time I saw for a moment  2(0) .

game4:
Thats why we started game 4 where carla form brasil was the server :
For her all was fine. In the beginning I had a 2 or 3 litle stops but than it was much better then the game we played before with 3.7.1 .
But for MuwuM ( also germany ) it was very bad, He had unplayable parts but also very smooth parts with high framerates. 
( I think what happend here was caused by a lag from round about 1 second.  SOmetimes the packeges where there and sometimes he had to wait. so if this changes because one time it takes 1.02 seconds and the next time it takes 0.9 seconds things maybe get choppy . )

game 5:
German headless with tomreyn, filux(poland) and me testing:
For me the game was good. No freezes or anything. I constantly had 1 second command lag like for all games I played as client. This lag is typically displayed as 0(0) on the server ( so not in this case as we used headless ).
After a while filux and tomreyn talked about very bad fps ( the map had a camera position which was zoomed out a lot , so there was a lot to render and at least tomreyn had bad hardware )
Then filux dropped out because his client crahsed. After filux dropped out, suddenly  tomreyn had a lot less cpu load . ( he will write a bug report for this too ).
Later tomreyn crashed too , to look at  his coming bugreport too  ( looking at the stack some kind of memory corruption )
(update tomreyns bugreport: https://forum.megaglest.org/index.php?topic=8922.0 )

« Last Edit: 4 March 2013, 09:15:18 by titi »
Try Megaglest! Improved Engine / New factions / New tilesets / New maps / New scenarios

titi

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 4,239
    • View Profile
    • http://www.titusgames.de
Re: thoughts about how to reduce lag
« Reply #5 on: 8 April 2013, 08:32:57 »
Current state (rev 4218):
I now changed the implementation again and now every client records the last 30 networkframes. Its recorded how often and how much a message form the server was received too early and how often and how long we had to wait if the message arrived too late.
Based on these statistics a speedup or slowdown of the game is decided. So far this still makes problems with big lag (ping times of 1000 ms ) . And there are still many printfs in the code with interisting output.

Bad network ( lag and varying lag ) can be tested very good with tomreyns scripts, but you still need 2 seperate computers to test. (https://forum.megaglest.org/index.php?topic=8946.0)

Try Megaglest! Improved Engine / New factions / New tilesets / New maps / New scenarios

tomreyn

  • MegaGlest Team
  • Airship
  • ********
  • Posts: 2,764
    • View Profile
    • MegaGlest - the free and open source cross platform 3D real-time strategy game
Re: (thoughts about how to) reduce lag
« Reply #6 on: 9 April 2013, 11:12:13 »
Does it not work when you set the latency on the loopback interface and connect through that to a server running on the same system then? I don't think we're using Unix sockets for this purpose but TCP connections exclusively so I would expect it to work for running two instances on a single system, too.
atibox: Ryzen 1800X (8 cores @3.6GHz), 32 GB RAM, MSI Radeon RX 580 Gaming X 8G, PCI subsystem ID [1462:3417], (Radeon RX 580 chipset, POLARIS10) @3440x1440; latest stable Ubuntu release, (open source) radeon (amdgpu) / mesa video driver
atibox (old): Core2Quad Q9400 (4 cores @2.66GHz), 8 GB RAM, XFX HD-467X-DDF2, PCI subsystem ID [1682:2931], (Radeon HD 4670, RV730 XT) @1680x1050; latest stable Ubuntu release, (open source) radeon / mesa video driver
notebook: HP envy13d020ng
internet access: VDSL2+

· · · How YOU can contribute to MG · Latest development snapshot · How to build yourself · Megapack techtree · Currently hosted MG games · · ·

 

anything