How to implement unity client to get notification from game session placement?

0

I'm making multiplayer game using Unity Mirror and GameLift. I have uploaded my build, create gamefleet, create queue and want to create game session using StartGameSessionPlacementAsync method. In the documentation, I have to set up event notification for game session placement. ( link: https://docs.amazonaws.cn/en_us/gamelift/latest/developerguide/queue-notification.html ) so following this guide, I have set up an SNS topic. But then? How my unity client subscribe to that topic and get notification when game session placement state is changed to FULFILLED ? I can't find any tutorial about that. Please help me! Thank you very much!

質問済み 3年前322ビュー
8回答
0

Hi @REDACTEDUSER

This should be exactly what you need: https://github.com/aws-samples/aws-gamelift-and-serverless-backend-sample (It uses FlexMatch events as an example but it should apply similarly to Queue events)

Let me know if you have questions when trying to understand the samples.

Thanks, James

回答済み 3年前
0

Thank you, I'll check this project. I'll ask you when I have a problem with running or understanding this project :D

回答済み 3年前
0

I've seen the sample project. The method use in sample project is after send match making request, client using a loop to check status of match making until it get success. It's similar with Queue that I can use DescribeGameSessionPlacementAsync to get status of game session placement. This is not what I'm looking for because in documentation: REMOVEDUPLOAD

So I'm still looking for how to get status of game session placement with SNS.

回答済み 3年前
0

Do you have anything subscribed to the topic currently? Perhaps a Lambda function that triggers a web socket API that the client is listening on or writes info to a DynamoDB table that a client is reading from.

Here's a link of what can subscribe to a topic but I personally think Lambda would be the easiest.

回答済み 3年前
0

So does it mean I need a backend? Because currently, my game doesn't have backend service. It only use Unity + mirror for connection, and Firebase as backend for Login, Save user data. Is there anyway I can use SNS with Firebase?

回答済み 3年前
0

I haven't tried it myself, but it seems that it is possible to create a Lambda function that writes to FireBase according to this.

回答済み 3年前
0

Hi @REDACTEDUSER

Please checkout https://github.com/aws/amazon-gamelift-plugin-unity/releases. This Unity plugin contains a example backend with GameLift Queue + SNS. (See Multi-Region Fleets with Queue and Custom Matchmaker in doc)

This would help you deploy a working backend with a few simple clicks.

I wasn't able to share this with you in my last answer since it wasn't launched, but now I can! Hopefully this helps!

Thanks, James

回答済み 3年前
0

Thank you very much, I'll check it now :D

回答済み 3年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ