project_files/HedgewarsMobile/Classes/GameConfigViewController.m
author koda
Sat, 14 Aug 2010 02:10:27 +0200
changeset 3739 97cf933e5bd2
parent 3737 2ba6ac8a114b
child 3778 2e61bb50cc57
permissions -rw-r--r--
disable AI teleport show on screen controls only if hedgehog is not a hog fix reloading of teams
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 "TeamConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    13
#import "SchemeWeaponConfigViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    14
3705
e1959819a542 completing the ifrontend interface...
koda
parents: 3703
diff changeset
    15
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    16
@implementation GameConfigViewController
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    17
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    18
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    19
-(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
    20
    return rotationManager(interfaceOrientation);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    21
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    22
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    23
-(IBAction) buttonPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    24
    // works even if it's not actually a button
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    25
    UIButton *theButton = (UIButton *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
    switch (theButton.tag) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    27
        case 0:
3625
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    28
            if ([mapConfigViewController busy]) {
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    29
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    30
                                                                message:NSLocalizedString(@"Before returning the preview needs to be generated",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    31
                                                               delegate:nil
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    32
                                                      cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    33
                                                      otherButtonTitles:nil];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    34
                [alert show];
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    35
                [alert release];
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
    36
            } else
3625
9f1d79e01a60 icons \o/
koda
parents: 3623
diff changeset
    37
                [[self parentViewController] dismissModalViewControllerAnimated:YES];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    39
        case 1:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    40
            theButton.enabled = NO;
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    41
            [self startGame:theButton];
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    42
//            [self performSelector:@selector(startGame:)
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    43
//                       withObject:theButton
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
    44
//                       afterDelay:0.25];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    45
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    46
        default:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    47
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
-(IBAction) segmentPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
    UISegmentedControl *theSegment = (UISegmentedControl *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    53
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    54
    switch (theSegment.selectedSegmentIndex) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
        case 0:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
            // this init here is just aestetic as this controller was already set up in viewDidLoad
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    57
            if (mapConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
                mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    59
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
            activeController = mapConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    61
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
        case 1:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    63
            if (teamConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    64
                teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
                // this message is compulsory otherwise the table won't be loaded at all
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
            activeController = teamConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
        case 2:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
            if (schemeWeaponConfigViewController == nil) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    71
                schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
            activeController = schemeWeaponConfigViewController;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
    76
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
    // this message is compulsory otherwise the table won't be loaded at all
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
    78
    [activeController viewWillAppear:NO];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    79
    [self.view addSubview:activeController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    81
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    82
-(void) startGame:(UIButton *)button {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
    button.enabled = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    84
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
    // don't start playing if the preview is in progress
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
    if ([mapConfigViewController busy]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    88
                                                        message:NSLocalizedString(@"Before playing the preview needs to be generated",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    91
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    93
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    94
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    95
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
    96
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
    // play only if there is more than one team
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
    if ([teamConfigViewController.listOfSelectedTeams count] < 2) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    99
        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
   100
                                                        message:NSLocalizedString(@"Select at least two teams to play a game",@"")
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   101
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   104
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   105
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   106
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   107
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   108
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
    // play if there's room for enough hogs in the selected map
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   110
    int hogs = 0;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
    for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
        hogs += [[teamData objectForKey:@"number"] intValue];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   114
    if (hogs > mapConfigViewController.maxHogs) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
        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
   116
                                                        message:NSLocalizedString(@"The map is too small for that many hogs",@"")
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
                                                       delegate:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   118
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
                                              otherButtonTitles:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
        [alert show];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
        [alert release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   122
        return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   123
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   124
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   125
    if ([schemeWeaponConfigViewController.selectedScheme length] == 0 || [schemeWeaponConfigViewController.selectedWeapon length] == 0 ) {
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   126
        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
   127
                                                        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
   128
                                                       delegate:nil
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   129
                                              cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"")
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   130
                                              otherButtonTitles:nil];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   131
        [alert show];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   132
        [alert release];
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   133
        return;
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   134
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   135
3632
8e1bd8b5780e fix land check fo' real
koda
parents: 3630
diff changeset
   136
    // create the configuration file that is going to be sent to engine
8e1bd8b5780e fix land check fo' real
koda
parents: 3630
diff changeset
   137
    NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys:mapConfigViewController.seedCommand,@"seed_command",
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
                                                                      mapConfigViewController.templateFilterCommand,@"templatefilter_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
                                                                      mapConfigViewController.mapGenCommand,@"mapgen_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   140
                                                                      mapConfigViewController.mazeSizeCommand,@"mazesize_command",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   141
                                                                      mapConfigViewController.themeCommand,@"theme_command",
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3635
diff changeset
   142
                                                                      mapConfigViewController.staticMapCommand,@"staticmap_command",
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   143
                                                                      teamConfigViewController.listOfSelectedTeams,@"teams_list",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   144
                                                                      schemeWeaponConfigViewController.selectedScheme,@"scheme",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   145
                                                                      schemeWeaponConfigViewController.selectedWeapon,@"weapon",
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   146
                                                                      nil];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   147
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   148
    // 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
   149
    DLog(@"sending config %@", gameDictionary);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   150
3642
fb39fecca350 support for static map added to iFrontend
koda
parents: 3635
diff changeset
   151
    if ([[gameDictionary allKeys] count] == 9) {
3630
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   152
        [[SDLUIKitDelegate sharedAppDelegate] startSDLgame:gameDictionary];
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   153
    } else {
3632
8e1bd8b5780e fix land check fo' real
koda
parents: 3630
diff changeset
   154
        DLog(@"gameconfig data not complete!!\nmapConfigViewController = %@\nteamConfigViewController = %@\nschemeWeaponConfigViewController = %@\n",
8e1bd8b5780e fix land check fo' real
koda
parents: 3630
diff changeset
   155
             mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController);
3635
38d3e31556d3 improvements to touch interface (tap to select weap, don't move camera for spourious taps, ask for confirmation when using click-weapons)
koda
parents: 3632
diff changeset
   156
        [self.parentViewController dismissModalViewControllerAnimated:YES];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   157
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   158
        // present an alert to the user, with an image on the ipad (too big for the iphone)
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   159
        NSString *msg = NSLocalizedString(@"Something went wrong with your configuration. Please try again.",@"");
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   160
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   161
            msg = [msg stringByAppendingString:@"\n\n\n\n\n\n\n\n"];    // this makes space for the image
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   162
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   163
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Whoops"
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   164
                                                        message:msg
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   165
                                                       delegate:nil
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   166
                                              cancelButtonTitle:@"Ok"
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   167
                                              otherButtonTitles:nil];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   168
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   169
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   170
            UIImageView *deniedImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"denied.png"]];
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   171
            deniedImg.frame = CGRectMake(25, 80, 240, 160);
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   172
            [alert addSubview:deniedImg];
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   173
            [deniedImg release];
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   174
        }
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   175
        [alert show];
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3642
diff changeset
   176
        [alert release];
3630
2c7a9d5aa18c fix static land loading on desktop
koda
parents: 3629
diff changeset
   177
    }
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   178
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   179
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   180
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   181
-(void) viewDidLoad {
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3626
diff changeset
   182
    self.view.backgroundColor = [UIColor blackColor];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   183
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   184
    CGRect screen = [[UIScreen mainScreen] bounds];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   185
    self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   186
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   187
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   188
        if (mapConfigViewController == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   189
            mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil];
3705
e1959819a542 completing the ifrontend interface...
koda
parents: 3703
diff changeset
   190
        mapConfigViewController.delegate = self;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   191
        if (teamConfigViewController == nil)
3703
12d17c6e8855 halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents: 3697
diff changeset
   192
            teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
3737
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3705
diff changeset
   193
        teamConfigViewController.view.frame = CGRectMake(362, 200, 300, 480);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   194
        teamConfigViewController.view.backgroundColor = [UIColor clearColor];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   195
        [mapConfigViewController.view addSubview:teamConfigViewController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   196
        if (schemeWeaponConfigViewController == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   197
            schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped];
3737
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3705
diff changeset
   198
        schemeWeaponConfigViewController.view.frame = CGRectMake(10, 70, 300, 550);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   199
        [mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view];
3737
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3705
diff changeset
   200
        mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width);
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
   201
    } 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
   202
        // this is the visible controller
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   203
        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
   204
        // 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
   205
        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
   206
        [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
   207
    }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   208
    activeController = mapConfigViewController;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   209
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   210
    [self.view addSubview:mapConfigViewController.view];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   211
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   212
    [super viewDidLoad];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   213
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   214
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   215
-(void) viewWillAppear:(BOOL)animated {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   216
    [mapConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   217
    [teamConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   218
    [schemeWeaponConfigViewController viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   219
    // ADD other controllers here
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   220
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   221
    [super viewWillAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   222
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   223
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   224
-(void) viewDidAppear:(BOOL)animated {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   225
    [mapConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   226
    [teamConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   227
    [schemeWeaponConfigViewController viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   228
    [super viewDidAppear:animated];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   229
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   230
3739
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   231
-(void) viewWillDisappear:(BOOL)animated {
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   232
    [mapConfigViewController viewWillDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   233
    [teamConfigViewController viewWillDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   234
    [schemeWeaponConfigViewController viewWillDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   235
    [super viewWillDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   236
}
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   237
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   238
-(void) viewDidDisappear:(BOOL)animated {
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   239
    [mapConfigViewController viewDidDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   240
    [teamConfigViewController viewDidDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   241
    [schemeWeaponConfigViewController viewDidDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   242
    [super viewDidDisappear:animated];
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   243
}
97cf933e5bd2 disable AI teleport
koda
parents: 3737
diff changeset
   244
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   245
-(void) didReceiveMemoryWarning {
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   246
    if (activeController.view.superview == nil)
3661
2378ada8a6ee i can haz panning
koda
parents: 3659
diff changeset
   247
        activeController = nil;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   248
    // Releases the view if it doesn't have a superview.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   249
    [super didReceiveMemoryWarning];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   250
    // Release any cached data, images, etc that aren't in use.
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3662
diff changeset
   251
    if (mapConfigViewController.view.superview == nil)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   252
        mapConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   253
    if (teamConfigViewController.view.superview == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   254
        teamConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   255
    if (schemeWeaponConfigViewController.view.superview == nil)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   256
        schemeWeaponConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   257
    MSG_MEMCLEAN();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   258
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   259
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   260
-(void) viewDidUnload {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   261
    activeController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   262
    mapConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   263
    teamConfigViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   264
    schemeWeaponConfigViewController = nil;
3662
a44406f4369b polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents: 3661
diff changeset
   265
    MSG_DIDUNLOAD();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   266
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   267
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   268
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   269
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   270
    [mapConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   271
    [teamConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   272
    [schemeWeaponConfigViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   273
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   274
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   275
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   276
@end