trying to implement a multiplayer. Using the sample from Game Center - Sending and receiving data.

Everything seems okay, but in apple documentation there is also said about invitation handler.

[GKMatchmaker sharedMatchmaker].inviteHandler = ^(GKInvite *acceptedInvite, NSArray *playersToInvite) {
   // Insert application-specific code here to clean up any games in progress.
   if (acceptedInvite)
    {
        GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithInvite:acceptedInvite] autorelease];
        mmvc.matchmakerDelegate = self;
        [self presentModalViewController:mmvc animated:YES];
    }
    else if (playersToInvite)
    {
        GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
        request.minPlayers = 2;
        request.maxPlayers = 4;
        request.playersToInvite = playersToInvite;

        GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
        mmvc.matchmakerDelegate = self;
        [self presentModalViewController:mmvc animated:YES];
    }
};

The problem is quite simple: I do not know where to add this code.

link|improve this question

EXACT same question came to my mind ;)\ – Mazyod Jun 8 '11 at 20:29
feedback

2 Answers

up vote 8 down vote accepted

As stated in the docs

Your application should set the invitation handler as early as possible after your application is launched; an appropriate place to set the handler is in the completion block you provided that executes after the local player is authenticated.

Somewhere in your code, you should have authenticated the local player with something like this

[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
    if (error == nil) {
        // Insert your piece of code here
    } else {
        // Handle the error
    }
}];

Hope that helps

link|improve this answer
My problem. Have not read everything. Sorry for silly question. – URLArenzo Jan 9 '11 at 13:28
1  
We've all done this, no big deal :) – Jilouc Jan 9 '11 at 13:31
feedback

I think that I'm facing the same issue, Till now I succeded to :

  • Connect to GameCenter.
  • To submit scores to different leaderboards
  • To view high scores.

Now for multiplayer, I have the following issues :

  1. Auto Match list is empty after I request a auto match, It have only the possibility to invite friends and this is also not working. see 2
  2. when sending an invitation to a friend,
    • From the simulator : I have a failed status.
    • From real device it shows an infinite loop till I stop it using UnInvite friend.

Here After steps that I followed. I tried to follow hints from apple docs but some thing still wrong in my code. So I proceeded like this.

  • I use the same apps version on both device & simulator.
  • I authenticate successfully on both devices.
  • In one of devices I request a match make using following code.

myCode

(IBAction)hostMatch: (id) sender
{
  GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
  request.minPlayers = 2;
  request.maxPlayers = 2;
  GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
  mmvc.matchmakerDelegate = self;
  [self presentModalViewController:mmvc animated:YES];
}

This views a controller view of GameCenter with a ready status of the local player and an empty auto-match zone with only a button Invite Friend.

  • If I select Invite Friend this shows another controller view with list of my friends. Once I select one of them and I click send invitation

    • From the simulator : I have a failed status.
    • From real device it shows an infinite loop till I stop it using UnInvite friend.

    verified al steps, I don't know what's wrong, This my code used after notification to set invitation handler.

Your help is appreciated.

-(void) AuthenticateToGameCenter
{
  BOOL bResult = FALSE;
  bResult = isGameCenterAvailable();
  if (bResult == TRUE)
  {
    NSLog(@"GameCenter : Is Supported");
    [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
      if (error == nil)
      {
        // Insert code here to handle a successful authentication.
        NSLog(@"GameCenter : Authentification OK");

        // Add block for invitation handler
        [GKMatchmaker sharedMatchmaker].inviteHandler = ^(GKInvite *acceptedInvite, NSArray *playersToInvite) {
          // Insert application-specific code here to clean up any games in progress.
          if (acceptedInvite)
          {
            GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithInvite:acceptedInvite] autorelease];
            mmvc.matchmakerDelegate = self;
            [self presentModalViewController:mmvc animated:YES];
          }
          else if (playersToInvite)
          {
            GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
            request.minPlayers = 2;
            request.maxPlayers = 2;
            request.playersToInvite = playersToInvite;

            GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
            mmvc.matchmakerDelegate = self;
            [self presentModalViewController:mmvc animated:YES];
          }
        };
      }
      else
      {
        // Your application can process the error parameter to report the error to the player.
        NSLog(@"GameCenter : Error in Authentification");
      }
    }];
  }else
  {
    NSLog(@"GameCenter : Is Not Supported");
  }
}
link|improve this answer
1  
I have asked a question about similar issue, and got answer, that you cannot test application on simulator and on device at the same time for multiplayer. You need device+ device. stackoverflow.com/questions/4628137/gamecenter-invitefailed check this question – URLArenzo Jan 9 '11 at 21:44
1  
Yes that's it. It's not possible to test a multiplayer protocol with a simulator + device. Thanks for the hint. – user546673 Jan 11 '11 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.