I've written a very basic application using game center. Two devices connect over the cellular network (using matchmaking), and start transmitting empty byte arrays (as NSData) to each other every 100ms. The size of the data increases by 10 bytes each time.
(Almost) every time I get to ~1300 bytes, one of the messages does not get transmitted. There is no error in the sending side. The receiving side just does not get the packet, and it doesn't get any future packets.
It doesn't matter if I use GKSendDataReliable or GKSendDataUnreliable.
This bug is intermittent. I can re-run the code and it will transmit all the data fine. Re-run the exact same code, and it will not transmit the byte. It fails 80% of the time. on wi-fi it works great!
I know that I am still connected to the match object, because the device that is no longer receiving can still transmit data. My code is not hanging.
Please help! Has anyone else had trouble transmitting data using gameCenter?
-(void) startDataTest{
messageNumber++;
messageLength += 50;
NSData * data = [NSData dataWithBytes:dummyMessage length:messageLength];
NSLog(@"Send Message # %i. Length %i",messageNumber, messageLength);
NSError * error;
[_match sendData:data toPlayers:_match.playerIDs withDataMode:GKSendDataReliable error:&error];
int64_t delayInMSeconds = 100;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, delayInMSeconds * NSEC_PER_MSEC), dispatch_get_main_queue(), ^(void){
[self startDataTest];
});
}
- (void) match:(GKMatch *)match didReceiveData:(NSData *)data fromPlayer:(NSString *)playerID {
receivedMessageNumber++;
NSLog(@"** GAME CENTER ** Received message %i. Length: %i",receivedMessageNumber,data.length);
_viewController.ReceiveText.text = [NSString stringWithFormat:@"Receive #%i. Length %i",receivedMessageNumber, data.length];
}