cocoaTouch/PopoverMenuViewController.m
author unc0rr
Mon, 10 May 2010 17:48:06 +0000
changeset 3458 11cd56019f00
parent 3357 3836a31879e7
child 3463 23c50be687a9
permissions -rw-r--r--
Make some more protocol commands work
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
    //
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  popupMenuViewController.m
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 25/03/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import "SDL_uikitappdelegate.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
#import "PopoverMenuViewController.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
#import "PascalImports.h"
3340
96dd168b080b fix all of what was committed before
koda
parents: 3335
diff changeset
    12
#import "CommodityFunctions.h"
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    13
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    14
@implementation PopoverMenuViewController
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    15
@synthesize menuList;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    16
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    17
3335
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3308
diff changeset
    18
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3308
diff changeset
    19
	return rotationManager(interfaceOrientation);
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    20
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    21
3335
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3308
diff changeset
    22
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    23
-(void) didReceiveMemoryWarning {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    24
    // Releases the view if it doesn't have a superview.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    25
    [super didReceiveMemoryWarning];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    26
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    27
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    28
-(void) viewDidLoad {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    29
    isPaused = NO;
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3340
diff changeset
    30
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    31
    menuList = [[NSArray alloc] initWithObjects:
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    32
                NSLocalizedString(@"Pause Game", @""),
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    33
                NSLocalizedString(@"Chat", @""),
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    34
                NSLocalizedString(@"End Game", @""),
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    35
                nil];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    36
    [super viewDidLoad];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    37
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    38
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    39
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    40
-(void) dealloc {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    41
    [menuList release];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    42
    [super dealloc];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    43
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    44
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    45
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    46
#pragma mark tableView methods
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    47
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    48
	return 1;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    49
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    50
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    51
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    52
	return 3;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    53
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    54
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    55
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    56
	static NSString *cellIdentifier = @"CellIdentifier";
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    57
	
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    58
	UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellIdentifier];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    59
    if (nil == cell) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    60
		cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    61
                                       reuseIdentifier:cellIdentifier] autorelease];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    62
	}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    63
    cell.textLabel.text = [menuList objectAtIndex:[indexPath row]];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    64
	
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    65
	return cell;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    66
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    67
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    68
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    69
    UIActionSheet *actionSheet;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    70
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    71
    switch ([indexPath row]) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    72
		case 0:
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    73
            HW_pause();
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    74
            isPaused = !isPaused;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    75
            break;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    76
        case 1:
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    77
			HW_chat();
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    78
            //SDL_iPhoneKeyboardShow([SDLUIKitDelegate sharedAppDelegate].window);
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    79
            break;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    80
        case 2:
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    81
            // expand the view (and table) so that the actionsheet can be selected on the iPhone
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    82
            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    83
                [self.tableView deselectRowAtIndexPath:indexPath animated:NO];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    84
                [UIView beginAnimations:@"table width more" context:NULL];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    85
                [UIView setAnimationDuration:0.2];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    86
                self.view.frame = CGRectMake(0, 0, 480, 320);
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    87
                [UIView commitAnimations];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
    88
            }
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    89
			actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    90
                                                      delegate:self
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    91
                                             cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    92
                                        destructiveButtonTitle:NSLocalizedString(@"Of course!", @"")
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    93
                                             otherButtonTitles:nil];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    94
            [actionSheet showInView:self.view];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    95
            [actionSheet release];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    96
            
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    97
            if (!isPaused) 
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    98
                HW_pause();
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    99
            break;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   100
        default:
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   101
			NSLog(@"Warning: unset case value in section!");
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   102
			break;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   103
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   104
    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   105
    [aTableView deselectRowAtIndexPath:indexPath animated:YES];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   106
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   107
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   108
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   109
#pragma mark actionSheet methods
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   110
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   111
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone){
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   112
        [UIView beginAnimations:@"table width less" context:NULL];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   113
        [UIView setAnimationDuration:0.2];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   114
        self.view.frame = CGRectMake(280, 0, 200, 170);
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   115
        [UIView commitAnimations];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   116
    }
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   117
    
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   118
	if ([actionSheet cancelButtonIndex] != buttonIndex) {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   119
        [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissPopover" object:nil];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   120
        HW_terminate(NO);
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   121
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   122
	else
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   123
        if (!isPaused) 
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   124
            HW_pause();		
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   125
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   126
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   127
@end