What exactly is the difference between Custom vs Realtime servers in gamelift?

0

Arent all multiplayer game realtime? im going thru all the "getting started" documents and tutorials but I cant grasps the difference between the two

Custom game servers https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-integration.html

Realtime game servers https://docs.aws.amazon.com/gamelift/latest/developerguide/realtime-plan.html

已提問 2 年前檢視次數 594 次
2 個答案
0

Hi @REDACTEDUSER

RTS (Realtime server) is aimed to provide a much simplified experience in setting up a GameLift server. You only need to pass in a few javascript files, and things like server-client communication, server broadcasting message, player group messaging functionality, TLS encryption are handled for you out of the box (provided that you also use the client sdk to integrate with RTS: https://docs.aws.amazon.com/gamelift/latest/developerguide/realtime-sdk-csharp-ref.html)

However, RTS underneath the hood is just a nodejs websocket server, so it may not have the battery/optimization needed for complex game simulations compared to server executables generated by Unreal/Unity.

So, the more accurate summary should be: If your game has complex states and/or needs complex physics simulation, use custom If you game is has simple state (e.g. a poker game), use RTS

已回答 2 年前
0

Custom game servers are for more complex projects. For example if I'm making a multiplayer shooter where the server needs to be communicating constantly to a client (the client always needs to know exactly where the player is), I would use custom game servers.

Let's say I'm making a strategy or card game where my game server only needs to send a message to a client every once in a while. This would be perfect for a realtime server. In a card game, I only need to update the client when something happens (a player plays a card, a player draws a card, etc)

So if: My client needs to receive a message from the server 30 times per second: custom My client needs to receive a message from the server on average once every 3 seconds: realtime

This is the way I understand it, if I'm wrong I hope somebody corrects me!

已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南