Weapon firing prediction timing issue on Client / Server
#1 Members - Reputation: 201
Posted 15 September 2012 - 09:14 AM
For example, If I tell the server I'm starting to fire my weapon, it's going to simulate weapon firing until it gets told to stop weapon firing. I don't see how client timestamps of these two actions can solve that because it doesn't know the exact time duration the client held down fire until the stop firing messages comes in, this could come in late due to packet latency. So it's possible that server simulated weapon firing for 5 seconds but client did it for 4.9 seconds, that has a chance of popping off a weapon fire when its off cooldown on the server but the client didn't play the animation and effects. Ammo count is now out of sync (unless I then correct that prediction error but I still didn't see the weapon fire effects for the last fire and I think it would be too late to correct that and play the animation and effects)
#2 Moderators - Reputation: 3296
Posted 15 September 2012 - 09:53 AM
it doesn't know the exact time duration the client held down fire
Simulation should use a fixed time step. For example, 30 steps per second, or 60 steps per second.
Weapon fire only starts and stops on time steps.
Input data should be time stamped with the time step it applies to.
#3 Members - Reputation: 201
Posted 15 September 2012 - 12:41 PM
I can't wrap my head around how that fixes the problem. If input data is sent to the server to start firing and it happend at 10 seconds client time and ended at 11 seconds, what if the second input packet got to the server really late? The server would carry on simulating even though client isn't holding down fire any more.
#4 Members - Reputation: 633
Posted 15 September 2012 - 01:14 PM
You have to run the client at the right offset relative to the server time such that only a small percentage of the packets is late. But of course with a long prediction window you get other problems
#5 Members - Reputation: 201
Posted 15 September 2012 - 08:55 PM
If I timestamp packets, isn't that open for speed hacking because anyone could spoof that data.
Also I'm a bit wary of running the simulation at a fixed time step, wouldn't that make it frame rate dependant?
Edited by laylay, 15 September 2012 - 08:56 PM.
#7 Moderators - Reputation: 3296
Posted 16 September 2012 - 11:56 AM
I'm a bit confused. Should the weapon fire simulation run at a fixed time step on both client and server?
Yes.
I can't wrap my head around how that fixes the problem. If input data is sent to the server to start firing and it happend at 10 seconds client time and ended at 11 seconds, what if the second input packet got to the server really late? The server would carry on simulating even though client isn't holding down fire any more.
If the packet doesn't make it, then the server simulates firing, which means that the client will be told that it's wrong (corrected.) This is what it means to be server authoritative.
The alternative would be to delay the game for everybody until the input makes it, which is what some lock-step RTS games do.






