project_files/HedgewarsMobile/Classes/GameConfigViewController.m
author koda
Thu, 08 Jul 2010 23:06:21 +0200
changeset 3630 2c7a9d5aa18c
parent 3629 86212d2b116a
child 3632 8e1bd8b5780e
permissions -rw-r--r--
fix static land loading on desktop add further checks to the sporadic init bug on iFoos
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     1
    //
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     2
//  GameConfigViewController.m
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     3
//  HedgewarsMobile
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     4
//
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     5
//  Created by Vittorio on 18/04/10.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     7
//
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     8
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     9
#import "GameConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    10
#import "SDL_uikitappdelegate.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    11
#import "CommodityFunctions.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    12
#import "MapConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    13
#import "TeamConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    14
#import "SchemeWeaponConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    15
3619
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    16
// draw background image in uitoolbar
3625
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    17
/*@implementation UIToolbar (CustomImage)
3619
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    18
-(void) drawRect:(CGRect)rect {
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    19
    UIImage *image = [UIImage imageWithContentsOfFile:@"toolbarBackground.png"];
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    20
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    21
}
1155d8970646 partially apply new graphics to code
koda
parents: 3616
diff changeset
    22
@end
3625
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    23
*/
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    24
@implementation GameConfigViewController
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    25
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    27
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
    28
    return rotationManager(interfaceOrientation);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    29
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    31
-(IBAction) buttonPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    32
    // works even if it's not actually a button
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    33
    UIButton *theButton = (UIButton *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
    switch (theButton.tag) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
        case 0:
3625
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    36
            if ([mapConfigViewController busy]) {
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    37
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    38
                                                                message:NSLocalizedString(@"Before returning the preview needs to be generated",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    39
                                                               delegate:nil
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    40
                                                      cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    41
                                                      otherButtonTitles:nil];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    42
                [alert show];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    43
                [alert release];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    44
            } else {
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    45
                [[self parentViewController] dismissModalViewControllerAnimated:YES];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    46
                
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    47
            }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
        case 1:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
            theButton.enabled = NO;
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    51
            [self startGame:theButton];
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    52
//            [self performSelector:@selector(startGame:)
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    53
//                       withObject:theButton
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    54
//                       afterDelay:0.25];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
        default:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    57
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    59
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    61
-(IBAction) segmentPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
    UISegmentedControl *theSegment = (UISegmentedControl *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    63
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    64
    switch (theSegment.selectedSegmentIndex) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
        case 0:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
            // this init here is just aestetic as this controller was already set up in viewDidLoad
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
            if (mapConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
                mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
            activeController = mapConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    71
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
        case 1:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
            if (teamConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
                teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
                // this message is compulsory otherwise the table won't be loaded at all
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
            activeController = teamConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    79
        case 2:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
            if (schemeWeaponConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    81
                schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    82
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
            activeController = schemeWeaponConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    84
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
    // this message is compulsory otherwise the table won't be loaded at all
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    88
    [activeController viewWillAppear:NO];      
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
    [self.view addSubview:activeController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    91
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
-(void) startGame:(UIButton *)button {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    93
    button.enabled = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    94
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    95
    // don't start playing if the preview is in progress
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    96
    if ([mapConfigViewController busy]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
                                                        message:NSLocalizedString(@"Before playing the preview needs to be generated",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    99
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   100
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   101
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   104
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   105
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   106
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   107
    // play only if there is more than one team
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   108
    if ([teamConfigViewController.listOfSelectedTeams count] < 2) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too few teams playing",@"")
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   110
                                                        message:NSLocalizedString(@"Select at least two teams to play a game",@"")
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   114
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   116
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   118
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
    // play if there's room for enough hogs in the selected map
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
    int hogs = 0;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
    for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   122
        hogs += [[teamData objectForKey:@"number"] intValue];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   123
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   124
    if (hogs > mapConfigViewController.maxHogs) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   125
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too many hogs",@"")
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   126
                                                        message:NSLocalizedString(@"The map is too small for that many hogs",@"")
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   127
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   128
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   129
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   130
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   131
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   132
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   133
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   134
    
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   135
    if ([schemeWeaponConfigViewController.selectedScheme length] == 0 || [schemeWeaponConfigViewController.selectedWeapon length] == 0 ) {
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   136
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Missing detail",@"")
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   137
                                                        message:NSLocalizedString(@"Select one Scheme and one Weapon for this game",@"")
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   138
                                                       delegate:nil
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   139
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   140
                                              otherButtonTitles:nil];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   141
        [alert show];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   142
        [alert release];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   143
        return;
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   144
    }
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   145
    
3630
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   146
    /*
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   147
    NSDictionary *gameDictionary = [[NSDictionary alloc] initWithObjectsAndKeys:mapConfigViewController.seedCommand,@"seed_command",
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   148
                                                                      mapConfigViewController.templateFilterCommand,@"templatefilter_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   149
                                                                      mapConfigViewController.mapGenCommand,@"mapgen_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   150
                                                                      mapConfigViewController.mazeSizeCommand,@"mazesize_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   151
                                                                      mapConfigViewController.themeCommand,@"theme_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
                                                                      teamConfigViewController.listOfSelectedTeams,@"teams_list",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   153
                                                                      schemeWeaponConfigViewController.selectedScheme,@"scheme",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   154
                                                                      schemeWeaponConfigViewController.selectedWeapon,@"weapon",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   155
                                                                      nil];
3630
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   156
    */
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   157
    
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   158
    // create the configuration file that is going to be sent to engine
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   159
    NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   160
                                                                        mapConfigViewController.seedCommand,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   161
                                                                        mapConfigViewController.templateFilterCommand,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   162
                                                                        mapConfigViewController.mapGenCommand,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   163
                                                                        mapConfigViewController.mazeSizeCommand,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   164
                                                                        mapConfigViewController.themeCommand,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   165
                                                                        teamConfigViewController.listOfSelectedTeams,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   166
                                                                        schemeWeaponConfigViewController.selectedScheme,
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   167
                                                                        schemeWeaponConfigViewController.selectedWeapon,nil]
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   168
                                                               forKeys:[NSArray arrayWithObjects:
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   169
                                                                        @"seed_command",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   170
                                                                        @"templatefilter_command",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   171
                                                                        @"mapgen_command",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   172
                                                                        @"mazesize_command",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   173
                                                                        @"theme_command",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   174
                                                                        @"teams_list",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   175
                                                                        @"scheme",
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   176
                                                                        @"weapon",nil]];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   177
    // finally launch game and remove this controller
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   178
    DLog(@"sending config %@", gameDictionary);
3630
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   179
    
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   180
    if ([[gameDictionary allKeys] count] == 8) {
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   181
        [[SDLUIKitDelegate sharedAppDelegate] startSDLgame:gameDictionary];
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   182
    } else {
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   183
        DLog(@"gameconfig data not complete\n%@\nWHY???", gameDictionary);
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   184
    }
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   185
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   186
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   187
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   188
-(void) viewDidLoad {
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   189
    self.view.backgroundColor = [UIColor blackColor];
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   190
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   191
    CGRect screen = [[UIScreen mainScreen] bounds];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   192
    self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   193
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   194
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   195
        if (mapConfigViewController == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   196
            mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   197
        if (teamConfigViewController == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   198
            teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStylePlain];
3623
f14db208f2fa graphics applied and fixes here and there
koda
parents: 3619
diff changeset
   199
        teamConfigViewController.view.frame = CGRectMake(0, 224, 300, 472);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   200
        teamConfigViewController.view.backgroundColor = [UIColor clearColor];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   201
        [mapConfigViewController.view addSubview:teamConfigViewController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   202
        if (schemeWeaponConfigViewController == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   203
            schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
3623
f14db208f2fa graphics applied and fixes here and there
koda
parents: 3619
diff changeset
   204
        schemeWeaponConfigViewController.view.frame = CGRectMake(362, 224, 300, 472);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   205
        [mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   206
        for (UIView *oneView in self.view.subviews) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   207
            if ([oneView isMemberOfClass:[UIToolbar class]]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   208
                [[oneView viewWithTag:12345] setHidden:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   209
                break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   210
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   211
        }
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   212
    } else {
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   213
        // this is the visible controller
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   214
        mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   215
        // this must be loaded & added to auto set default scheme and ammo
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   216
        schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   217
        [self.view addSubview:schemeWeaponConfigViewController.view];
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3548
diff changeset
   218
    }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   219
    activeController = mapConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   220
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   221
    [self.view addSubview:mapConfigViewController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   222
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   223
    [super viewDidLoad];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   224
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   225
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   226
-(void) viewWillAppear:(BOOL)animated {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   227
    [mapConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   228
    [teamConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   229
    [schemeWeaponConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   230
    // ADD other controllers here
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   231
     
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   232
    [super viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   233
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   234
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   235
-(void) viewDidAppear:(BOOL)animated {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   236
    [mapConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   237
    [teamConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   238
    [schemeWeaponConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   239
    [super viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   240
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   241
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   242
-(void) didReceiveMemoryWarning {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   243
    // Releases the view if it doesn't have a superview.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   244
    [super didReceiveMemoryWarning];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   245
    // Release any cached data, images, etc that aren't in use.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   246
    if (mapConfigViewController.view.superview == nil) 
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   247
        mapConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   248
    if (teamConfigViewController.view.superview == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   249
        teamConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   250
    if (schemeWeaponConfigViewController.view.superview == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   251
        schemeWeaponConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   252
    activeController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   253
    MSG_MEMCLEAN();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   254
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   255
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   256
-(void) viewDidUnload {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   257
    activeController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   258
    mapConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   259
    teamConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   260
    schemeWeaponConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   261
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   262
    MSG_DIDUNLOAD();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   263
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   264
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   265
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   266
    [activeController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   267
    [mapConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   268
    [teamConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   269
    [schemeWeaponConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   270
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   271
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   272
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   273
@end