I am currently creating a Game Center game, and am using the peer-to-peer functionality available. However, I would like to select one of the players (2 players) to act as a host, to ensure synchronization.

What is the best way to select a host (even randomly) from the players available and ensure that the other device knows which host was chosen?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

This is a nice, simple tutorial with code that demonstrates how to do this. They randomly choose one of the peers to be the host. Hope that Helps!

link|improve this answer
Thanks, the random number trick should work :). I guess I'd been so immersed in trying to find a constant and persistent playerID-like string, then comparing that, that I didn't even come close to thinking that. Thanks again – user1007649 Oct 21 '11 at 18:39
No problem, glad I could help! – MSgambel Oct 21 '11 at 19:18
feedback

already posted answer , still here is sample code to do that thing

NSString *uid = [[UIDevice currentDevice] uniqueIdentifier];
CoinTossID = [uid hash];

now in delegate Function

- (void)match:(GKMatch *)match didReceiveData:(NSData *)data fromPlayer:(NSString *)playerID
    {
        NSMutableArray *ReceivedArray = [[NSMutableArray alloc] init];
        ReceivedArray = [NSKeyedUnarchiver unarchiveObjectWithData:data];
        int flag = [[ReceivedArray objectAtIndex:0] intValue];
        [ReceivedArray removeObjectAtIndex:0];

        int CoinValue = [ReceivedCoinTossID intValue];
        if(CoinValue > CoinTossID)
        {
           isPlayer1 = YES;
        }
        else
        {
              isPlayer1 = NO;
        }
    }
link|improve this answer
Thanks, using the device id should work too. However, note that [[UIDevice currentDevice] uniqueIdentifier] is deprecated in iOS 5. Perhaps using [GKLocalPlayer localPlayer].playerID would work better. – user1007649 Oct 21 '11 at 19: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.