P2P and C/S networking in real-time multi-play in mobile games

by haley.choi / 2016. 07. 11. [06:52]

I will give an outline by comparing between P2P and C/S networking in real-time multi-play in mobile games.

 

If we go to the conclusions first, they are as in the following.

 

  •  If you play a game in the Wifi environment, you do P2P communication directly in a high probability.
  •  P2P is effective for games with sensitive latency such as FPS, racing genre, etc.
  •  P2P is tend to be vulnerable to hacking. C/S can be vulnerable to hacking depending on how you use it.
  •  In general, P2P shows better latency (response speed) than C/S

 

I will tell you in more details.

 

 

What is C/S and P2P networking?

When you do C/S networking or client-server networking in a multi-player game, messages from the client, such as movements of a player character or commands entered by a player, are transmitted to the server and the server sends them to other clients.

도식1-01

 

When you do P2P networking or peer-to-peer networking, a client directly sends messages to other clients.

도식2-01

 

 

  • It does direct P2P communication in a high probability when you play a game in Wifi environment

 

When you play a game, the success rate of hole-punching is very low if two devices are all celluar network, i.e., 3G or LTE. In other words, it is processed as relay

But if either one of both are Wifi, the hole-punching success rate becomes high.

도식3-01

 

In real-time multi-play games, data communication charge occurs. From the perspective of users, this is always on their mind.

In China, where communication charge is expensive, people go to places with free Wifi to check push alarms from messenger apps when they receive them.

Therefore, users tend to prefer Wifi, instead of 3G or LTE.

 

 

  • P2P is efficient for latency-sensitive games

When the quality of a mobile network (3G/LTE) not good, there is no difference between the latency of P2P and C/S.

However, if the quality of a mobile network (3G/LTE) is good, the difference between P2P and C/S becomes remarkable.

 

In a mobile network (3G/LTE) with a good quality, you can see the processing delay of

2ms in case of P2P and,

about 12ms in C/S

(you may see some difference depending on the environment.)

 

Perhaps people who mainly play FPS games can totally agree that the difference of 10ms of latency can mean so much

도식5-01

 

 

  •  P2P is vulnerable to hacking. C/S may be vulnerable to hacking depending on how you use it.

In the case of a multi-play on-line games in the C/S method, the method to synchronize multi-play is categorized into major ways.

도식6-01

–  Method  1: A “command” is sent from the client (Player 1 -> Player 1 Input(Scene Update))

–  Method 2:  A client sends only “calculated player movement information”

Method 1 is more resistant to client hacking compared to method 1.

The reason is that the movement calculation is of player characters is also processed in the server.

However, processing all scene updates in the server takes a considerable load in the server performance.

 

There is even a bigger problem; that is, there are more severe break-ups and lags occurring during game play than method 2.

 

image

<Lags seen in a game using method 1 https://www.youtube.com/watch?v=83i8Yzkkzvg>

 

In method 1, the client does the movement calculation on player characters compared to method 2. Therefore, compared to method 1, it is vulnerable to hacking. P2P is also vulnerable to hacking but method 1 is vulnerable to hacking as much as P2P. The best you can do is to inspect whether the calculation of the client is a result of hacking.

The advantage of method is more pleasant multi-play because it is less sensitive to latency.

 

Mobile games use wireless networks (WIFI/3G/LTE).

The problem is that the latency of wireless network is bigger compared to wired networks.

Even if the quality of a wireless network is satisfactory, sporadic big latencies cannot be avoided.

In method 2, even if there are sporadic big latencies, you cannot feel anything unusual during game play.

However, in method 1, stuttering occurs during game play whenever a big latency occurs. This is when your screen freezes for a short moment.

 

For such problems, in most of mobile games, you are forced to use method 2 when you do client-server networking.

 

In mobile P2P networking, processing the movements of a player is the responsibility of the client. Therefore it has to be vulnerable to hacking.

But even if you make it to a client-server networking, as long as you select method 2, it becomes vulnerable to P2P networking similar to P2P networking. If you want to solve the problem, you need to use method 1, but it is not preferred since it reduces the quality of any game.

 

 

  •  In general, P2P has better latency (response time) than C/S

Mainly, there are two ways to apply P2P networking in multi-play

  • Super peer method: one of the clients takes responsibility for scene updates of all players. Commonly, this is referred as the listen server method.
  • Replicated peer method: each client takes responsibility for scene updates of each player. This is not the listen server method.

슈퍼-대칭(영문)-01

 

The super peer method originated from package games and is used in some on-line games. It is sometimes used when there is much calculation of scene updates for a server to handle or a reason that makes it difficult to develop with the replicated server method.

 

Unless unavoidable, you have to avoid the super peer method.

In the case of the super peer method, there is the problem that when the player designated as the super peer breaks away during game play, the game stops for all the other players playing together, and if the processing performance of the super peer is bad, all the other players are affected negatively.

 

Therefore, in many on-line games, P2P networking is used in the replicated peer method.

In the replicated peer method, the location information of each player is directly transmitted to other clients.

Therefore, the player can experience faster response speed compared to playing in the C/S method.

Even if you are forced to relay because you cannot do P2P hole-punching and this slows down the play, you can confirm the same latency with the games that communicate in the C/S method.

 

In other words, the P2P method offers faster response speed than the C/S method and even in the worst case, the response speed becomes as same as the C/S method.

 

 

Many uses of the P2P networking

P2P networking is utilized for not only multi-plays with even faster response speed, but also utilized for the following uses.

 

  • When there is too much traffic generated among clients (e.g. voice, video communication, etc.)
  • When there has to be too much calculation to be done for a server to handle (e.g. game physical engine calculation, etc.)

 

For more details, you can refer to The chapter on P2P communication in the help menu in ProudNet (Korean).

Development Issues