diff -r 3fd3f116f2fc -r ac5d14a35482 cocoaTouch/LevelViewController.m --- a/cocoaTouch/LevelViewController.m Fri Apr 16 17:17:43 2010 +0000 +++ b/cocoaTouch/LevelViewController.m Sat Apr 17 04:59:10 2010 +0000 @@ -1,5 +1,5 @@ // -// HogHatViewController.m +// LevelViewController.m // HedgewarsMobile // // Created by Vittorio on 02/04/10. @@ -26,24 +26,26 @@ NSArray *array = [[NSArray alloc] initWithObjects: NSLocalizedString(@"Human",@""), - NSLocalizedString(@"Weaky",@""), + NSLocalizedString(@"Brutal",@""), + NSLocalizedString(@"Aggressive",@""), + NSLocalizedString(@"Bully",@""), NSLocalizedString(@"Average",@""), - NSLocalizedString(@"Bully",@""), - NSLocalizedString(@"Aggressive",@""),nil]; + NSLocalizedString(@"Weaky",@""), + nil]; self.levelArray = array; [array release]; -/* - NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[graveArray count]; - for (NSString *graveName in graveArray) { - NSString *gravePath = [[NSString alloc] initWithFormat@"%@/%@",GRAVES_DIRECTORY(),graveName]; - UIImage *image = [[UIImage alloc] initWithContentsOfFile:gravePath]; - [gravePath release]; - [sprites addObject:image]; - [image release]; + + NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[levelArray count]]; + for (int i = 0; i < [levelArray count]; i++) { + NSString *botlevelPath = [[NSString alloc] initWithFormat:@"%@/%d.png",BOTLEVELS_DIRECTORY(),i]; + UIImage *image = [[UIImage alloc] initWithContentsOfFile:botlevelPath]; + [botlevelPath release]; + [sprites addObject:image]; + [image release]; } - self.graveSprites = sprites; + self.levelSprites = sprites; [sprites release]; -*/ + } - (void)viewWillAppear:(BOOL)animated {