project_files/HedgewarsMobile/Classes/InGameMenuViewController.m
author koda
Sat, 12 Nov 2011 19:00:31 +0100
branchhedgeroid
changeset 6344 cba81e10235c
parent 6269 57523ab57218
child 6409 ca93f38a1aab
permissions -rw-r--r--
iOS works again (also native touch interface \o/)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     1
/*
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4939
diff changeset
     3
 * Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com>
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     4
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     8
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    12
 * GNU General Public License for more details.
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    13
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    14
 * You should have received a copy of the GNU General Public License
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    15
 * along with this program; if not, write to the Free Software
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    17
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    18
 * File created on 25/03/2010.
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    19
 */
81db3c85784b headers ftw, also right project file
koda
parents: 3791
diff changeset
    20
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    21
3647
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3598
diff changeset
    22
#import "InGameMenuViewController.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    23
#import "SDL_sysvideo.h"
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3829
diff changeset
    24
#import "SDL_uikitkeyboard.h"
6078
8c0cc07731e5 headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents: 6076
diff changeset
    25
6260
025d50a6aeb0 slight simplification
koda
parents: 6078
diff changeset
    26
//FIXME: add a proper #import when this is exposed in SDL
025d50a6aeb0 slight simplification
koda
parents: 6078
diff changeset
    27
extern UIView *SDL_getUikitView(void *);
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
    28
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
    29
#define VIEW_HEIGHT 200
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
3647
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3598
diff changeset
    31
@implementation InGameMenuViewController
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    32
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    33
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
    return rotationManager(interfaceOrientation);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    36
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
#pragma mark -
3648
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    39
#pragma mark animating
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    40
-(void) present {
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    41
    CGRect screen = [[UIScreen mainScreen] bounds];
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    42
    self.view.backgroundColor = [UIColor clearColor];
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
    43
    self.view.frame = CGRectMake(screen.size.height, 0, 200, VIEW_HEIGHT);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    44
3648
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    45
    [UIView beginAnimations:@"showing popover" context:NULL];
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    46
    [UIView setAnimationDuration:0.35];
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
    47
    self.view.frame = CGRectMake(screen.size.height-200, 0, 200, VIEW_HEIGHT);
3648
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    48
    [UIView commitAnimations];
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    49
}
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    50
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    51
-(void) dismiss {
4912
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    52
    if (IS_IPAD() == NO) {
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    53
        CGRect screen = [[UIScreen mainScreen] bounds];
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    54
        [UIView beginAnimations:@"hiding popover" context:NULL];
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    55
        [UIView setAnimationDuration:0.35];
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
    56
        self.view.frame = CGRectMake(screen.size.height, 0, 200, VIEW_HEIGHT);
4912
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    57
        [UIView commitAnimations];
4924
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
    58
        [self.view performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:0.35];
4912
862b134284b2 change order of statspage/gamerun when running in dual screen
koda
parents: 4861
diff changeset
    59
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    60
5166
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5156
diff changeset
    61
    SDL_iPhoneKeyboardHide((SDL_Window *)HW_getSDLWindow());
3648
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    62
}
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    63
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    64
#pragma mark -
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
#pragma mark tableView methods
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
    return 1;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
5711
cba92708277b disable ios screenshooting for now
koda
parents: 5662
diff changeset
    71
    return 3;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
    static NSString *cellIdentifier = @"CellIdentifier";
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    76
6269
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    77
    NSInteger row = [indexPath row];
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    78
    NSString *cellTitle;
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    79
    if (row == 0)
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    80
        cellTitle = NSLocalizedString(@"Show Help", @"");
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    81
    else if (row == 1)
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    82
        cellTitle = NSLocalizedString(@"Tag", @"");
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    83
    else
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    84
        cellTitle = NSLocalizedString(@"End Game", @"");
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    85
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
    UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellIdentifier];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
    if (nil == cell) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    88
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
                                       reuseIdentifier:cellIdentifier] autorelease];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
    }
6269
57523ab57218 small tweak to ingamemenu class
koda
parents: 6268
diff changeset
    91
    cell.textLabel.text = cellTitle;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    92
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3971
diff changeset
    93
    if (IS_IPAD())
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3667
diff changeset
    94
        cell.textLabel.textAlignment = UITextAlignmentCenter;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    95
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    96
    return cell;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    99
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   100
    UIActionSheet *actionSheet;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   101
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
    switch ([indexPath row]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
        case 0:
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3737
diff changeset
   104
            [[NSNotificationCenter defaultCenter] postNotificationName:@"show help ingame" object:nil];
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
   105
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   106
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   107
        case 1:
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4912
diff changeset
   108
            HW_chat();
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4912
diff changeset
   109
            SDL_iPhoneKeyboardShow((SDL_Window *)HW_getSDLWindow());
4935
27fb500dd6b1 screenshots 4 ios
koda
parents: 4924
diff changeset
   110
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
        case 2:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
            actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   114
                                                      delegate:self
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
                                             cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   116
                                        destructiveButtonTitle:NSLocalizedString(@"Of course!", @"")
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
                                             otherButtonTitles:nil];
6260
025d50a6aeb0 slight simplification
koda
parents: 6078
diff changeset
   118
            [actionSheet showInView:(IS_IPAD() ? self.view : SDL_getUikitView(HW_getSDLWindow()))];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
            [actionSheet release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   120
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   122
        default:
3660
bc125bea5849 complete settings page rework
koda
parents: 3649
diff changeset
   123
            DLog(@"Warning: unset case value in section!");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   124
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   125
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   126
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   127
    [aTableView deselectRowAtIndexPath:indexPath animated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   128
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   129
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   130
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   131
#pragma mark actionSheet methods
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   132
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
4924
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   133
    if ([actionSheet cancelButtonIndex] != buttonIndex) {
5166
d1eb1560b4d5 and now for something completely different, overlay refactoring!
koda
parents: 5156
diff changeset
   134
        SDL_iPhoneKeyboardHide((SDL_Window *)HW_getSDLWindow());
4861
91f889289a47 (ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents: 4358
diff changeset
   135
        HW_terminate(NO);
4924
616b618814b5 show dual head mode some love
koda
parents: 4920
diff changeset
   136
    }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   137
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
@end