How can I create a friends list with GameLift?

0

Hey, How can I implement a friends list in GameLift? I am still a beginner in GameLift. Currently I have built my own server and client on which my game is already running, but the individual clients only communicate with each other when the game session is started and only these clients can communicate with each other via the server. For a friends list, however, all players in the region must be able to communicate with each other, so that they receive invitations and more.

How can I implement this?

I am grateful for any help!

已提問 3 年前檢視次數 338 次
1 個回答
0

GameLift doesn't have a notion of client -> client communication, it 'enables' some of this by bringing a group of players to a common server and the server can then facilitate chat between the connected players.

You'd probably need to look at some form of:

  • Player/Identity management: Players are registered when then first come into your game. Tracks which client is which identity (and links identities you use to some common based identity)
  • Presence: Tracks if players are active/online.
  • Notification/Communicator: Allows direct client->client communication (can route messages between clients as required). Handles notifications, receipts, invites.

Its a lot to build.

Theres a lot of examples of pieces of this, ie Presence (https://aws.amazon.com/blogs/gametech/building-a-presence-api-using-aws-appsync-aws-lambda-amazon-elasticache-and-amazon-eventbridge/) but you really need to know your requirements and have a good design first.

已回答 3 年前

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

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

回答問題指南