Google Play Game Services multiplayer with Activity switching

后端 未结 3 2121
情书的邮戳
情书的邮戳 2020-12-09 10:38

In my Android game I have a turn-based multiplayer. Users wait for opponents in the lobby and whenever exactly 3 are matched, they go to a new game room together, which is a

相关标签:
3条回答
  • 2020-12-09 11:04

    The documentation explains how to use the Game Services without the BaseGameActivity whenever is needed.

    For example, during signin:

    https://developers.google.com/games/services/training/signin

    Clicking the Sign in button should initiate the sign in flow. If you are using the BaseGameActivity base class provided in the samples, simply call the beginUserInitiatedSignIn() method. Otherwise, you must manually call the connect() method of your GamesClient object.

    For your specific question, I don't think it is an issue, all the control is inside Google Play, you just need to get the GamesClient and as far as I understood, the connection made on one activity will be there if you access it from another activity (but I didn't test the multiplayer yet).

    0 讨论(0)
  • 2020-12-09 11:20

    I am in the process of developing a multiplayer game using these new Google Play Game Services. It includes achievements and leaderboards, along with multiplayer.

    From the button click sample project, I found that they (Google) used fragments extensively, and stayed within the bounds of a single activity. In my custom game, I jump between activities without a problem.

    You'll need to keep a few portions of Google Play Game Services objects around, but a service might be overkill, unless your game requires long-running non-UI code to be executed. From what I've experienced, if you switch between activities, you'll want to keep the id of the Room(s) and participant id(s) that are currently involved in the game.

    Since the "connectivity parts" are stateless, just reconnect as needed. You can even pass the room/participant id(s) in to each activity via the Intent bundle (or use the singleton pattern approach). This way, you'll save on battery life, performance, etc.

    0 讨论(0)
  • 2020-12-09 11:30

    So, one of the reasons we wrote all the Google Play game services samples as single-Activity games is because switching between Activities require you to disconnect from the GamesClient and connect a new one from the new Activity.

    So using Fragments is probably the easiest way to go about this. It's also pretty clean and allows you to make a tablet layout by combining them if you want to.

    In particular, if you are setting up a multiplayer game, disconnecting will disconnect you from the room, so you can't switch to a different Activity after starting the handshake :-)

    0 讨论(0)
提交回复
热议问题