summary refs log tree commit diff stats
path: root/Classes/MainMenuLayer.m
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-08-12 09:51:50 -0400
committerStarla Insigna <starla4444@gmail.com>2011-08-12 09:51:50 -0400
commitd19677f9f73d8fe7436982bdf8d40f69d69d1b43 (patch)
tree74853f369ef51bc9f9f595ff31153ce1a718e651 /Classes/MainMenuLayer.m
parent07f40d804de35d1cead13217c448811e774e6e67 (diff)
downloadcartcollect-d19677f9f73d8fe7436982bdf8d40f69d69d1b43.tar.gz
cartcollect-d19677f9f73d8fe7436982bdf8d40f69d69d1b43.tar.bz2
cartcollect-d19677f9f73d8fe7436982bdf8d40f69d69d1b43.zip
Added tutorial mode
GameLayer was also renamed to ClassicGameMode and its pause functionality and score/lives counters were moved out to GameMode. FallingObjectDelegate was created to allow for custom code to be run when items were caught/missed, something that is used extensively by tutorial mode.

Important: Cart Collect's bundle identifier was changed in this revision from com.fourisland.Cart-Collect to com.apatheticink.Cart-Collect, so ensure that before attempting to compile/run this build, you clear your build directory and remove the old version of Cart Collect from your device.

Closes #193
Diffstat (limited to 'Classes/MainMenuLayer.m')
-rwxr-xr-xClasses/MainMenuLayer.m12
1 files changed, 10 insertions, 2 deletions
diff --git a/Classes/MainMenuLayer.m b/Classes/MainMenuLayer.m index 11cffd7..50c595f 100755 --- a/Classes/MainMenuLayer.m +++ b/Classes/MainMenuLayer.m
@@ -8,7 +8,8 @@
8 8
9#import "MainMenuLayer.h" 9#import "MainMenuLayer.h"
10#import "HighscoreListController.h" 10#import "HighscoreListController.h"
11#import "GameLayer.h" 11#import "ClassicGameMode.h"
12#import "TutorialMode.h"
12#import "Cart_CollectAppDelegate.h" 13#import "Cart_CollectAppDelegate.h"
13 14
14@implementation MainMenuLayer 15@implementation MainMenuLayer
@@ -57,7 +58,14 @@
57 58
58- (void)newgame 59- (void)newgame
59{ 60{
60 [[CCDirector sharedDirector] replaceScene:[GameLayer scene]]; 61 NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
62
63 if ([defaults boolForKey:@"hasDoneTutorial"])
64 {
65 [[CCDirector sharedDirector] replaceScene:[ClassicGameMode scene]];
66 } else {
67 [[CCDirector sharedDirector] replaceScene:[TutorialMode scene]];
68 }
61} 69}
62 70
63- (void)highscores 71- (void)highscores