summary refs log tree commit diff stats
path: root/Classes/HighscoreListController.m
diff options
context:
space:
mode:
authorStarla Insigna <starla4444@gmail.com>2011-08-09 21:36:09 -0400
committerStarla Insigna <starla4444@gmail.com>2011-08-09 21:36:09 -0400
commit002dc99a071a4a8f7d2afc15d1fdf2ae0312faed (patch)
tree82808d85a131ed0f970b374828a3e80ee1fb8d35 /Classes/HighscoreListController.m
parent1ed37fda409479769c8d110aa22d5dadc9d2cb85 (diff)
downloadcartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.tar.gz
cartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.tar.bz2
cartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.zip
Abstracted a lot of GameLayer's functionality out
In order to prepare for tutorial mode (and eventually, the other game modes), a lot of GameLayer's functionality (reading the accelerometer, moving the cart, moving falling objects, reacting to collisions…) has been abstracted out to FallingObject and subclasses of FallingObject, as well as a new Cart class, and GameMode, a new superclass of GameLayer. The only things that were not abstracted out that probably will be in the future are the pause functionality and the tutorial bubble functionality (which will in fact be moved to the tutorial mode class).

A lot of work was also done to cut down on compiler warnings and a lot of #imports were moved from header files to implementation files because I realized THAT'S HOW YOU'RE SUPPOSED TO DO IT.

Refs #193
Diffstat (limited to 'Classes/HighscoreListController.m')
-rwxr-xr-xClasses/HighscoreListController.m13
1 files changed, 9 insertions, 4 deletions
diff --git a/Classes/HighscoreListController.m b/Classes/HighscoreListController.m index 4d108e4..932b147 100755 --- a/Classes/HighscoreListController.m +++ b/Classes/HighscoreListController.m
@@ -7,7 +7,11 @@
7// 7//
8 8
9#import "HighscoreListController.h" 9#import "HighscoreListController.h"
10 10#import "Highscore.h"
11#import "RootViewController.h"
12#import "cocoslive.h"
13#import <sqlite3.h>
14#import "Cart_CollectAppDelegate.h"
11 15
12@implementation HighscoreListController 16@implementation HighscoreListController
13 17
@@ -290,9 +294,10 @@
290 294
291- (void)back 295- (void)back
292{ 296{
293 RootViewController* viewController = [[[UIApplication sharedApplication] delegate] viewController]; 297 Cart_CollectAppDelegate* appDelegate = ((Cart_CollectAppDelegate*) [[UIApplication sharedApplication] delegate]);
294 [[[[UIApplication sharedApplication] delegate] window] setRootViewController:nil]; 298 RootViewController* viewController = [appDelegate viewController];
295 [[[[UIApplication sharedApplication] delegate] window] addSubview:viewController.view]; 299 [[appDelegate window] setRootViewController:nil];
300 [[appDelegate window] addSubview:viewController.view];
296} 301}
297 302
298- (void)switchLists:(id)sender 303- (void)switchLists:(id)sender