vote up 18 vote down star
16

How to simulating two client-controlled vehicles colliding (sensibly) in a typical client/server setup for a network game? I did read this eminent blog post on how to do distributed network physics in general (without traditional client prediction), but this question is specifically on how to handle collisions of owned objects.

Example

Say client A is 20 ms ahead of server, client B 300 ms ahead of server (counting both latency and maximum jitter). This means that when the two vehicles collide, both clients will see the other as 320 ms behind - in the opposite direction of the velocity of the other vehicle. Head-to-head on a Swedish highway means a difference of 16 meters/17.5 yards!

What not to try

It is virtually impossible to extrapolate the positions, since I also have very complex vehicles with joints and bodies all over, which in turn have linear and angular positions, velocities and accelerations, not to mention states from user input.

flag

I wrote a 3d networked game for in my final year in college, so I can sympathise (20 years ago, and much simpler physics). The only solution I can think of involves time travel, so I'm no good to you pal. I'd be interested in any solutions you find though. – Binary Worrier May 7 at 16:04
1  
@Jonas: This is an awesome question. I can't wait to see what people come up with. – eJames May 7 at 19:12
1  
Play some Mario Kart Wii online and you'll get a feel for how lag affects its physics/collisions. – FogleBird May 7 at 20:13
Wow, I have always wondered this. Out of all the questions I have favorited on SO, this is definitely the best. +1 – Zifre May 7 at 21:45

5 Answers

vote up 0 vote down

In addition to predicting on the client side where the other user might be and sending the collision information and how you handled it to the server, what most mmo's do to deal with lag is they have the server run "in the past" as it were. Basically they buffer the recent inputs but only react to what happened .1sec in the past. This lets you "peek into the future" when you need to (ie when a collision is about to happen in your time frame, you can look at the buffered input to see what will happen and decide if the collision is real).

Of course, this adds an extra layer of complexity to your program as you have to consider what data to send to your clients and how they should react to it. For example you could send the entire "future" buffer to the clients and let them see which possible collisions will actually happen and which won't.

link|flag
This makes the server run even more behind the client. Or do you mean that both clients and server run "in the past", so that the normal pipe can be overridden by the more current but inaccurate "approximation pipe"? – Jonas Byström Jul 14 at 17:30
Everything runs "in the past" but with information about some of the immediate future events. It really doesn't have to be too far into the past, certainly not far enough to really notice, just enough to give you an uniform buffer to help predict collisions (and other things). – Blindy Jul 15 at 11:19
vote up -1 vote down

Ross has a good point. You could simplify the model you use to detect collisions by abstracting it to some simpler volume (i.e. the rough boxy outline of the vehicle). Then you can do the predictions based on the simple volume and the detailed calculations on the exact volumes while you have the user distracted by the "explosion". It may not be perfect but would allow you to speed up your collision detection.

link|flag
vote up 8 vote down

I don't know of a perfect solution, and I have a feeling that one does not exist. Even if you could accurately predict the future position of the vehicle, you would be unable to predict the way the user will operate the controls. So the problem comes down to minimizing the negative effects of client/server lag. With that in mind, I would approach this from the position of the principle of least astonishment (paraphrased from Wikipedia):

In user interface design, the principle of least astonishment (or surprise) states that, when two elements of an interface conflict, or are ambiguous, the behaviour should be that which will least surprise the human user at the time the conflict arises.

In your example, each user sees two vehicles. Their own, and that of another player. The user expects their own vehicle to behave exactly the way they control it, so we are unable to play with that aspect of the simulation. However, the user can not know exactly how the other user is controlling their vehicle, and I would use this ambiguity to hide the lag from the user.

Here is the basic idea:

  1. The server has to make the decision about an impending collision. The collision detection algorithm doesn't have to be 100% perfect, it just has to be close enough to avoid obvious inconsistencies.
  2. Once the server has determined that two vehicles will collide, it sends each of the two users a message indicating that a collision is imminent.
  3. On client A, the position of vehicle B is adjusted (realistically) to guarantee that the collision occurs.
  4. On client B, the position of vehicle A is adjusted (realistically) to guarantee that the collision occurs.
  5. During the aftermath of the collision, the position of each vehicle can be adjusted, as necessary, so that the end result is in keeping with the rest of the game. This part is exactly what MedicineMan proposed in his answer.

In this way, each user is still in complete control of their own vehicle. When the collision occurs, it will not be unexpected. Each user will see the other vehicle move towards them, and they will still have the feeling of a real-time simulation. The nice thing is that this method reacts well in low-lag conditions. If both clients have low-latency connections to the server, the amount of adjustment will be small. The end result will, of course, get worse as the lag increases, but that is unavoidable. If someone is playing a fast-paced action game over a connection with several seconds worth of lag, they simply aren't going to get the full exeperience.

link|flag
Hmm. Like my previous comment. My dumb luck led me to a similar suggestion, but not nearly so eloquent. restated: "Let them eat cake!" – MedicineMan May 7 at 19:39
Exactly! Your idea of hiding the post-collision calculations in the aftermath is very good. Step 5 should be dedicated to you :) The crux of my suggestion is to take small liberties with the apparent position of the other vehicle before the collision takes place. I hope I made that distinction clear in my answer. – eJames May 7 at 20:07
One problem with step 1 is that the server will have to extrapolate 600 ms ahead of current server time to get position of client B. To say the least, 0.6 seconds is looong time in a fast-paced racing game. – Jonas Byström May 8 at 8:55
vote up 1 vote down

Sorry to answer with "What not to try", but I've never heard of a solution that doesn't involve predicting the outcome on client side. Consider a simplified example:

Client A is stationary, and watching client B's vehicle approach a cliff. Client B's vehicle is capable of reducing speed to 0 instantly, and does so at the last possible moment before going over the cliff.

If Client A is attempting to show Client B's state in real time, Client A has no choice but to predict that Client B fell off the cliff. You see this a lot in MMORPGs designed such that a player's character is capable of stopping immediately when running full-speed. Otherwise, Client A could just show Client B's state as the state updates come in, but this isn't viable, as Client A needs to be able to interact with Client B in real time in your scenario (I assume).

Could you try simplifying the collision models so that extrapolation is possible for real time prediction? Maybe make your "joints and bodies all over" have processor-less-intensive physical models, like a few cubes or spheres. I'm not too familiar with how to improve the efficiency of collision detection, but I assume it's done by detecting collisions of models that are less complex than the visual models.

link|flag
vote up 4 vote down

Perhaps the best thing that you can do is not so show the actual collision real time, but give the illusion that things are happening in real time.

Since the client is behind the server (lag), and the server needs to show the result of the collision, perhaps what you can do, client side, is to show a flash or explosion or some other graphic to distract the user and buy enough time on the server side to calculate the result of the collision.. When you are finished with the prediction, you ship it back to the client side for presentation.

link|flag
Isn't that solution too naive? What if the collision never happens on the server? – Jonas Byström May 7 at 16:41
3  
People watch racing secretly hoping that they'll see a crash. - Let them eat cake! – MedicineMan May 7 at 16:57
Voting up for the cool idea. Perhaps this could work by pretending that predicted collisions that never happened were actually collisions that were not severe enough to cause any type of feedback to the colliding objects. – Ross May 7 at 17:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.