So I have this problem that I can't figure out. I am trying to code a version of the game "Simon" in cocos2d. Simon is a memory game which shows a sequence of buttons being pressed and then asks the user to repeat the sequence. I have a scene telling the user "Watch Closely!!!" which should then change into the demo sequence after a few seconds. The "Watch Closely" scene displays, then I hear the sounds that indicate the buttons being pressed, but only after that the scene loads. I'm not sure how to fix this problem and would appreciate any help! (I'm not getting any errors)
Relevant code:
This is in the applicationDidFinishLoading of my AppDelegate:
TweenScene *tween= [TweenScene scene];
[tween.layer.label setString:@"Watch Closely!!!"];
[[CCDirector sharedDirector] runWithScene: tween];
[self toDemo];
Here are the relevant methods in TweenScene:
- (void)resetToDemo {
[self runAction:[CCSequence actions:
[CCDelayTime actionWithDuration:2],
[CCCallFunc actionWithTarget:self selector:@selector(toDemo)],
nil]];
}
-(id) init
{
if( (self=[super initWithColor:ccc4(255,255,255,255)] )) {
CGSize winSize = [[CCDirector sharedDirector] winSize];
self.label = [CCLabelTTF labelWithString:@"" fontName:@"Arial" fontSize:32];
_label.color = ccc3(0,0,0);
_label.position = ccp(winSize.width/2, winSize.height/2);
[self addChild:_label];
}
return self;
}
- (void)toDemo {
AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate toDemo];
}
Then the toDemo method in my delegate:
- (void) toDemo{
DemoScene *demo= [DemoScene scene];
[[CCDirector sharedDirector] replaceScene:demo];
[demo playSequence];
}
and the playSequence in DemoScene (musicArray holds the objects, react tells them to play a noise and flash a different sprite- these methods work by themselves)
-(void) playSequence{
AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
for (int a=0; a<delegate.curLevel.lengthOfInitialSong+delegate.subLevelIndex; a++){
[[delegate.master.musicArray objectAtIndex:a] react];
[NSThread sleepForTimeInterval:1];
}
}
And finally, the playSequence in DemoScene (musicArray holds the objects, react tells them to play a noise and flash a different sprite- these methods work by themselves)
-(void) playSequence{
AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
for (int a=0; a<delegate.curLevel.lengthOfInitialSong+delegate.subLevelIndex; a++){
[[delegate.master.musicArray objectAtIndex:a] react];
[NSThread sleepForTimeInterval:1];
}
}
Cheers!!