project_files/HedgewarsMobile/Classes/OverlayViewController.m
author koda
Sat, 05 Feb 2011 15:45:44 +0100
changeset 4920 bc3c077e15a2
parent 4861 91f889289a47
child 4924 616b618814b5
permissions -rw-r--r--
cleaning up how chat is handled on idevices updated project to use updated libs some leaks resolved (maybe)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3829
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     1
/*
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     2
 * Hedgewars-iOS, a Hedgewars port for iOS devices
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     3
 * Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com>
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     4
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
81db3c85784b headers ftw, also right project file
koda
parents: 3792
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: 3792
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     8
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    12
 * GNU General Public License for more details.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    13
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    14
 * You should have received a copy of the GNU General Public License
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    15
 * along with this program; if not, write to the Free Software
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    17
 *
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    18
 * File created on 16/03/2010.
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    19
 */
81db3c85784b headers ftw, also right project file
koda
parents: 3792
diff changeset
    20
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    21
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    22
#import "OverlayViewController.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    23
#import "InGameMenuViewController.h"
3792
dd9345e74b66 help page for lobby
koda
parents: 3791
diff changeset
    24
#import "HelpPageViewController.h"
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3922
diff changeset
    25
#import "AmmoMenuViewController.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
#import "PascalImports.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    27
#import "CommodityFunctions.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    28
#import "CGPointUtils.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    29
#import "SDL_config_iphoneos.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
#import "SDL_mouse.h"
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
    31
#import "ObjcExports.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    32
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    33
#define HIDING_TIME_DEFAULT [NSDate dateWithTimeIntervalSinceNow:2.7]
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
#define HIDING_TIME_NEVER   [NSDate dateWithTimeIntervalSinceNow:10000]
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    35
#define doDim()             [dimTimer setFireDate: (IS_DUALHEAD()) ? HIDING_TIME_NEVER : HIDING_TIME_DEFAULT]
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
    36
#define doNotDim()          [dimTimer setFireDate:HIDING_TIME_NEVER]
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
4855
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
    38
#define removeInputWidget() [[self.view viewWithTag:CONFIRMATION_TAG] removeFromSuperview]; \
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
    39
                            [[self.view viewWithTag:GRENADE_TAG] removeFromSuperview];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    40
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    41
@implementation OverlayViewController
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
    42
@synthesize popoverController, popupMenu, helpPage, amvc, isNetGame, useClassicMenu, initialOrientation, containerWindow;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    43
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    44
#pragma mark -
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    45
#pragma mark rotation
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    46
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    47
    // don't rotate until the game is running for performance and synchronization with the sdlview
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    48
    if (isGameRunning() == NO)
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    49
        return (interfaceOrientation == (UIInterfaceOrientation) self.initialOrientation);
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
    50
    return rotationManager(interfaceOrientation);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    53
// pause the game and remove objc menus so that animation is smoother
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    54
-(void) willRotateToInterfaceOrientation:(UIInterfaceOrientation) toInterfaceOrientation duration:(NSTimeInterval) duration{
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    55
    if (isGameRunning() == NO)
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    56
        return;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    57
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
    58
    HW_pause();
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    59
    [self dismissPopover];
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
    60
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    61
    if (self.amvc.isVisible && IS_DUALHEAD() == NO) {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    62
        [self.amvc disappear];
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    63
        wasVisible = YES;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    64
    } else
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    65
        wasVisible = NO;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    66
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    67
    [super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
4078
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    68
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    69
    UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG];
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    70
    switch (toInterfaceOrientation) {
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    71
        case UIDeviceOrientationLandscapeLeft:
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    72
            sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(a));
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    73
            break;
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    74
        case UIDeviceOrientationLandscapeRight:
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    75
            sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(b));
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    76
            break;
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    77
        default:
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    78
            // a debug log would spam too much
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    79
            break;
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    80
    }
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    81
}
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    82
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    83
// now restore previous state
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    84
-(void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation) fromInterfaceOrientation {
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    85
    if (isGameRunning() == NO)
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    86
        return;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    87
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    88
    if (wasVisible || IS_DUALHEAD())
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    89
        [self.amvc appearInView:self.view];
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
    90
    HW_pauseToggle();
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    91
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    92
    [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    93
}
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
    94
4078
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    95
// while in dual head the above rotation functions are not called
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
    96
-(void) dualHeadRotation:(NSNotification *)notification {
4356
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    97
    if (isGameRunning() == NO)
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    98
        return;
d1d26f8963a3 update some files for new graphics and new ios4.2
koda
parents: 4144
diff changeset
    99
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   100
    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   101
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
    [UIView beginAnimations:@"rotation" context:NULL];
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   103
    [UIView setAnimationDuration:0.7];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   104
    switch (orientation) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   105
        case UIDeviceOrientationLandscapeLeft:
4078
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   106
            self.view.frame = [[UIScreen mainScreen] bounds];
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   107
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90));
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   108
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
        case UIDeviceOrientationLandscapeRight:
4078
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   110
            self.view.frame = [[UIScreen mainScreen] bounds];
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   111
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90));
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   112
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
        default:
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: 3701
diff changeset
   114
            // a debug log would spam too much
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   115
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   116
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   117
    [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   118
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
#pragma mark View Management
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   122
-(id) initWithCoder:(NSCoder *)aDecoder {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   123
    if ((self = [super initWithCoder:aDecoder])) {
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   124
        objcExportsInit();
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   125
        isAttacking = NO;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   126
        wasVisible = NO;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   127
        isPopoverVisible = NO;    // it is called "popover" even on the iphone
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   128
    }
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   129
    return self;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   130
}
3948
24daa33a3114 some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents: 3941
diff changeset
   131
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   132
-(void) viewDidLoad {
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   133
    CGRect screenRect = [[UIScreen mainScreen] bounds];
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   134
    self.view.frame = CGRectMake(0, 0, screenRect.size.height, screenRect.size.width);
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   135
    self.view.center = CGPointMake(self.view.frame.size.height/2, self.view.frame.size.width/2);
3978
9660600e43cb fix some glitches
koda
parents: 3977
diff changeset
   136
    self.view.alpha = 0;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   137
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   138
    // detrmine the quanitiy and direction of the rotation
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   139
    if (self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft) {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   140
        a = 180;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   141
        b = 0;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   142
    } else {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   143
        a = 0;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   144
        b = 180;
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   145
    }
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   146
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   147
    // get the number of screens to know the previous state whan a display is connected or detached
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   148
    if ([UIScreen respondsToSelector:@selector(screens)])
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   149
        initialScreenCount = [[UIScreen screens] count];
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   150
    else
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   151
        initialScreenCount = 1;
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   152
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   153
    // set initial orientation of the controller orientation
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   154
    if (IS_DUALHEAD()) {
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   155
        switch (self.interfaceOrientation) {
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   156
            case UIDeviceOrientationLandscapeLeft:
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   157
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90));
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   158
                break;
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   159
            case UIDeviceOrientationLandscapeRight:
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   160
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90));
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   161
                break;
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   162
            default:
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   163
                DLog(@"Nope");
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   164
                break;
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   165
        }
4078
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   166
        [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   167
        [[NSNotificationCenter defaultCenter] addObserver:self
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   168
                                                 selector:@selector(dualHeadRotation:)
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   169
                                                     name:UIDeviceOrientationDidChangeNotification
da01196fb5ab rotation stuff for iphone now works
koda
parents: 4028
diff changeset
   170
                                                   object:nil];
3977
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   171
    }
9df7b4812da9 optimizations to new ammomenu and overlay
koda
parents: 3976
diff changeset
   172
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   173
    // the timer used to dim the overlay
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   174
    dimTimer = [[NSTimer alloc] initWithFireDate:(IS_DUALHEAD()) ? HIDING_TIME_NEVER : [NSDate dateWithTimeIntervalSinceNow:6]
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   175
                                        interval:1000
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   176
                                          target:self
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   177
                                        selector:@selector(dimOverlay)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   178
                                        userInfo:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   179
                                         repeats:YES];
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   180
    // add timer to runloop, otherwise it doesn't work
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   181
    [[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   182
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   183
    // become listener of some notifications
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   184
    [[NSNotificationCenter defaultCenter] addObserver:self
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   185
                                             selector:@selector(showHelp:)
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   186
                                                 name:@"show help ingame"
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   187
                                               object:nil];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   188
4098
40df542b5f62 i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents: 4082
diff changeset
   189
    // for iOS >= 3.2
4082
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   190
    if ([UIScreen respondsToSelector:@selector(screens)]) {
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   191
        [[NSNotificationCenter defaultCenter] addObserver:self
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   192
                                                 selector:@selector(numberOfScreensIncreased)
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   193
                                                     name:UIScreenDidConnectNotification
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   194
                                                   object:nil];
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   195
        
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   196
        [[NSNotificationCenter defaultCenter] addObserver:self
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   197
                                                 selector:@selector(numberOfScreensDecreased)
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   198
                                                     name:UIScreenDidDisconnectNotification
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   199
                                                   object:nil];
bfe14b38dad1 better support for wimpier i-devices
koda
parents: 4078
diff changeset
   200
    }
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
   201
    
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
   202
    self.containerWindow = [[UIApplication sharedApplication] keyWindow];
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   203
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   204
    // present the overlay
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   205
    [UIView beginAnimations:@"showing overlay" context:NULL];
4098
40df542b5f62 i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents: 4082
diff changeset
   206
    [UIView setAnimationDuration:2];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   207
    self.view.alpha = 1;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   208
    [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   209
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   210
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   211
-(void) numberOfScreensIncreased {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   212
    if (initialScreenCount == 1) {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   213
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"New display detected"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   214
                                                        message:NSLocalizedString(@"Hedgewars supports multi-monitor configurations, but the screen has to be connected before launching the game.",@"")
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   215
                                                       delegate:nil
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   216
                                              cancelButtonTitle:@"Ok"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   217
                                              otherButtonTitles:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   218
        [alert show];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   219
        [alert release];
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
   220
        HW_pause();
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   221
    }
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   222
}
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   223
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   224
-(void) numberOfScreensDecreased {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   225
    if (initialScreenCount == 2) {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   226
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Oh noes! Display disconnected"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   227
                                                        message:NSLocalizedString(@"A monitor has been disconnected while playing and this has ended the match! You need to restart the game if you wish to use the second display again.",@"")
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   228
                                                       delegate:nil
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   229
                                              cancelButtonTitle:@"Ok"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   230
                                              otherButtonTitles:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   231
        [alert show];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   232
        [alert release];
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: 4856
diff changeset
   233
        HW_terminate(NO);
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   234
    }
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   235
}
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   236
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   237
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   238
-(void) showHelp:(id) sender {
4144
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   239
    if (self.helpPage == nil) {
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   240
        NSString *xib;
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   241
        if (IS_IPAD())
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   242
            xib = @"HelpPageInGameViewController-iPad";
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   243
        else
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   244
            xib = @"HelpPageInGameViewController-iPhone";
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   245
        self.helpPage = [[HelpPageViewController alloc] initWithNibName:xib bundle:nil];
cda2685feeb4 help pages for iphone
koda
parents: 4098
diff changeset
   246
    }
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   247
    self.helpPage.view.alpha = 0;
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   248
    [self.view addSubview:helpPage.view];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   249
    [UIView beginAnimations:@"helpingame" context:NULL];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   250
    self.helpPage.view.alpha = 1;
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   251
    [UIView commitAnimations];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   252
    doNotDim();
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   253
}
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   254
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   255
-(void) didReceiveMemoryWarning {
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   256
    if (self.popupMenu.view.superview == nil)
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   257
        self.popupMenu = nil;
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   258
    if (self.helpPage.view.superview == nil)
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   259
        self.helpPage = nil;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   260
    if (self.amvc.view.superview == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   261
        self.amvc = nil;
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3978
diff changeset
   262
    if (IS_IPAD())
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   263
        if (((UIPopoverController *)self.popoverController).contentViewController.view.superview == nil)
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   264
            self.popoverController = nil;
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   265
    
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   266
    MSG_MEMCLEAN();
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   267
    [super didReceiveMemoryWarning];
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   268
}
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   269
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   270
-(void) viewDidUnload {
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   271
    // only objects initialized in viewDidLoad should be here
4098
40df542b5f62 i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents: 4082
diff changeset
   272
    if (IS_DUALHEAD())
40df542b5f62 i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents: 4082
diff changeset
   273
        [[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   274
    [[NSNotificationCenter defaultCenter] removeObserver:self];
3978
9660600e43cb fix some glitches
koda
parents: 3977
diff changeset
   275
    [NSObject cancelPreviousPerformRequestsWithTarget:self
9660600e43cb fix some glitches
koda
parents: 3977
diff changeset
   276
                                             selector:@selector(unsetPreciseStatus)
9660600e43cb fix some glitches
koda
parents: 3977
diff changeset
   277
                                               object: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
   278
    dimTimer = nil;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   279
    self.helpPage = nil;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   280
    [self dismissPopover];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   281
    self.popoverController = nil;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   282
    self.amvc = 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
   283
    MSG_DIDUNLOAD();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   284
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   285
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   286
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   287
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   288
    [popupMenu release];
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   289
    [helpPage release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   290
    [popoverController release];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   291
    [amvc release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   292
    // dimTimer is autoreleased
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   293
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   294
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   295
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   296
#pragma mark -
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   297
#pragma mark overlay user interaction
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   298
// nice transition for dimming, should be called only by the timer himself
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   299
-(void) dimOverlay {
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   300
    if (isGameRunning()) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   301
        [UIView beginAnimations:@"overlay dim" context:NULL];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   302
        [UIView setAnimationDuration:0.6];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   303
        self.view.alpha = 0.2;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   304
        [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   305
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   306
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   307
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   308
// set the overlay visible and put off the timer for enough time
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   309
-(void) activateOverlay {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   310
    self.view.alpha = 1;
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   311
    doNotDim();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   312
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   313
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   314
// dim the overlay when there's no more input for a certain amount of time
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   315
-(IBAction) buttonReleased:(id) sender {
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   316
    if (isGameRunning() == NO)
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   317
        return;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   318
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   319
    UIButton *theButton = (UIButton *)sender;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   320
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   321
    switch (theButton.tag) {
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   322
        case 0:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   323
        case 1:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   324
        case 2:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   325
        case 3:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   326
            [NSObject cancelPreviousPerformRequestsWithTarget:self
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   327
                                                     selector:@selector(unsetPreciseStatus)
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   328
                                                       object:nil];
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   329
            HW_walkingKeysUp();
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   330
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   331
        case 4:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   332
        case 5:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   333
        case 6:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   334
            HW_otherKeysUp();
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   335
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   336
        default:
3660
bc125bea5849 complete settings page rework
koda
parents: 3651
diff changeset
   337
            DLog(@"Nope");
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   338
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   339
    }
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   340
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: 3701
diff changeset
   341
    isAttacking = NO;
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   342
    doDim();
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   343
}
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   344
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   345
// issue certain action based on the tag of the button
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   346
-(IBAction) buttonPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   347
    [self activateOverlay];
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   348
    
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   349
    if (isGameRunning() == NO)
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   350
        return;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   351
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   352
    if (isPopoverVisible)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   353
        [self dismissPopover];
3779
3351a017d4ad tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents: 3765
diff changeset
   354
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   355
    UIButton *theButton = (UIButton *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   356
    switch (theButton.tag) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   357
        case 0:
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: 3701
diff changeset
   358
            if (isAttacking == NO)
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3701
diff changeset
   359
                HW_walkLeft();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   360
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   361
        case 1:
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: 3701
diff changeset
   362
            if (isAttacking == NO)
2ba6ac8a114b reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents: 3701
diff changeset
   363
                HW_walkRight();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   364
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   365
        case 2:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   366
            [self performSelector:@selector(unsetPreciseStatus) withObject:nil afterDelay:0.8];
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: 3701
diff changeset
   367
            HW_preciseSet(!HW_isWeaponRope());
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   368
            HW_aimUp();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   369
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   370
        case 3:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   371
            [self performSelector:@selector(unsetPreciseStatus) withObject:nil afterDelay:0.8];
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: 3701
diff changeset
   372
            HW_preciseSet(!HW_isWeaponRope());
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   373
            HW_aimDown();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   374
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   375
        case 4:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   376
            HW_shoot();
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: 3701
diff changeset
   377
            isAttacking = YES;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   378
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   379
        case 5:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   380
            HW_jump();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   381
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   382
        case 6:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   383
            HW_backjump();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   384
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   385
        case 10:
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   386
            playSound(@"clickSound");
4504
8906b2409d97 add the appirater class for getting more positive reviews
koda
parents: 4454
diff changeset
   387
            clearView();
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   388
            HW_pause();
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   389
            if (self.amvc.isVisible && IS_DUALHEAD() == NO) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   390
                doDim();
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   391
                [self.amvc disappear];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   392
            }
4855
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   393
            removeInputWidget();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   394
            [self showPopover];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   395
            break;
3624
304c6d32383a button to open ammomenu
koda
parents: 3617
diff changeset
   396
        case 11:
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   397
            playSound(@"clickSound");
4504
8906b2409d97 add the appirater class for getting more positive reviews
koda
parents: 4454
diff changeset
   398
            clearView();
4855
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   399
            removeInputWidget();
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   400
            
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   401
            if (IS_DUALHEAD() || self.useClassicMenu == NO) {
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   402
                if (self.amvc == nil)
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   403
                    self.amvc = [[AmmoMenuViewController alloc] init];
4362
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4356
diff changeset
   404
                setAmmoMenuInstance(amvc);
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   405
                if (self.amvc.isVisible) {
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   406
                    doDim();
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   407
                    [self.amvc disappear];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   408
                } else {
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   409
                    if (HW_isAmmoMenuNotAllowed() == NO) {
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   410
                        doNotDim();
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   411
                        [self.amvc appearInView:self.view];
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   412
                    }
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   413
                }
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   414
            } else {
4362
8dae325dc625 added missing graphics and fixed some glitches/crashes/bugs
koda
parents: 4356
diff changeset
   415
                setAmmoMenuInstance(nil);
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   416
                HW_ammoMenu();
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   417
            }
3624
304c6d32383a button to open ammomenu
koda
parents: 3617
diff changeset
   418
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   419
        default:
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   420
            DLog(@"Nope");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   421
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   422
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   423
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   424
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   425
-(void) unsetPreciseStatus {
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   426
    HW_preciseSet(NO);
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   427
}
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   428
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   429
-(void) sendHWClick {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   430
    HW_click();
4855
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   431
    removeInputWidget();
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   432
    doDim();
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   433
}
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   434
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   435
-(void) setGrenadeTime:(id) sender {
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   436
    UISegmentedControl *theSegment = (UISegmentedControl *)sender;
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   437
    if (cachedGrenadeTime() != theSegment.selectedSegmentIndex) {
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   438
        HW_setGrenadeTime(theSegment.selectedSegmentIndex + 1);
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   439
        setGrenadeTime(theSegment.selectedSegmentIndex);
3976
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   440
    }
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   441
}
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   442
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   443
#pragma mark -
abaf741a4e21 less warning, no rotation glitch, more comments
koda
parents: 3971
diff changeset
   444
#pragma mark other menu
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   445
// present a further check before closing game
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   446
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   447
    if ([actionSheet cancelButtonIndex] != buttonIndex)
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: 4856
diff changeset
   448
        HW_terminate(NO);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   449
    else
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   450
        HW_pause();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   451
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   452
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   453
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   454
// on iphone instead just use the tableViewController directly (and implement manually all animations)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   455
-(IBAction) showPopover{
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   456
    CGRect screen = [[UIScreen mainScreen] bounds];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   457
    isPopoverVisible = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   458
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3978
diff changeset
   459
    if (IS_IPAD()) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   460
        if (self.popupMenu == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   461
            self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStylePlain];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   462
        if (self.popoverController == nil) {
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   463
            self.popoverController = [[UIPopoverController alloc] initWithContentViewController:self.popupMenu];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   464
            [self.popoverController setPopoverContentSize:CGSizeMake(220, 170) animated:YES];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   465
            [self.popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   466
        }
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   467
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   468
        [self.popoverController presentPopoverFromRect:CGRectMake(screen.size.height / 2, screen.size.width / 2, 1, 1)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   469
                                           inView:self.view
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   470
                         permittedArrowDirections:UIPopoverArrowDirectionAny
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   471
                                         animated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   472
    } else {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   473
        if (self.popupMenu == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   474
            self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStyleGrouped];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   475
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   476
        [self.view addSubview:popupMenu.view];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   477
        [self.popupMenu present];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   478
    }
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   479
    self.popupMenu.tableView.scrollEnabled = NO;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   480
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   481
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   482
// on ipad just dismiss it, on iphone transtion to the right
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   483
-(void) dismissPopover {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   484
    if (YES == isPopoverVisible) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   485
        isPopoverVisible = NO;
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   486
        if (HW_isPaused())
4454
42bfc1a70968 more retina support and multitasking support
koda
parents: 4362
diff changeset
   487
            HW_pauseToggle();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   488
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   489
        [self.popupMenu dismiss];
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   490
        if (IS_IPAD())
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   491
            [self.popoverController dismissPopoverAnimated:YES];
4920
bc3c077e15a2 cleaning up how chat is handled on idevices
koda
parents: 4861
diff changeset
   492
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   493
        [self buttonReleased:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   494
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   495
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   496
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   497
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   498
#pragma mark Custom touch event handling
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   499
-(BOOL) shouldIgnoreTouch:(NSSet *)allTouches {
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   500
    if (isGameRunning() == NO)
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   501
        return YES;
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   502
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   503
    // ignore activity near the dpad and buttons
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   504
    CGPoint touchPoint = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view];
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   505
    CGSize screen = [[UIScreen mainScreen] bounds].size;
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   506
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   507
    if ((touchPoint.x < 160 && touchPoint.y > screen.width - 155 ) || 
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   508
        (touchPoint.x > screen.height - 135 && touchPoint.y > screen.width - 140))
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   509
        return YES;
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   510
    return NO;
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   511
}
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   512
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   513
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   514
    NSSet *allTouches = [event allTouches];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   515
    UITouch *first, *second;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   516
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   517
    if ([self shouldIgnoreTouch:allTouches] == YES)
3765
ebfe7c9b3085 set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place
koda
parents: 3739
diff changeset
   518
        return;
ebfe7c9b3085 set flake to non critical, no touches until game is starding, moved some variables to be initialized in the right place
koda
parents: 3739
diff changeset
   519
3647
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3646
diff changeset
   520
    // hide in-game menu
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3646
diff changeset
   521
    if (isPopoverVisible)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   522
        [self dismissPopover];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   523
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   524
    if (self.amvc.isVisible && IS_DUALHEAD() == NO) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   525
        doDim();
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   526
        [self.amvc disappear];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   527
    }
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   528
    // reset default dimming
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   529
    doDim();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   530
4855
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   531
    // remove other widgets
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   532
    removeInputWidget();
2480ab325057 when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents: 4541
diff changeset
   533
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3667
diff changeset
   534
    HW_setPianoSound([allTouches count]);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   535
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   536
    switch ([allTouches count]) {
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   537
        case 1:
3651
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   538
            startingPoint = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   539
            if (2 == [[[allTouches allObjects] objectAtIndex:0] tapCount])
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   540
                HW_zoomReset();
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   541
            break;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   542
        case 2:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   543
            // pinching
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   544
            first = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   545
            second = [[allTouches allObjects] objectAtIndex:1];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   546
            initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   547
            break;
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   548
        default:
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   549
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   550
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   551
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   552
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   553
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
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: 3629
diff changeset
   554
    CGRect screen = [[UIScreen mainScreen] bounds];
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   555
    NSSet *allTouches = [event allTouches];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   556
    CGPoint currentPosition = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   557
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   558
    if ([self shouldIgnoreTouch:allTouches] == YES)
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   559
        return;
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   560
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   561
    switch ([allTouches count]) {
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   562
        case 1:
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   563
            // if we're in the menu we just click in the point
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   564
            if (HW_isAmmoMenuOpen()) {
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   565
                HW_setCursor(HWXZ(currentPosition.x), HWYZ(currentPosition.y));
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   566
                // this click doesn't need any wrapping because the ammoMenu already limits the cursor
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   567
                HW_click();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   568
            } else
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   569
                // if weapon requires a further click, ask for tapping again
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   570
                if (HW_isWeaponRequiringClick()) {
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   571
                    // here don't have to wrap thanks to isCursorVisible magic
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   572
                    HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y));
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   573
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   574
                    // draw the button at the last touched point (which is the current position)
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   575
                    UIButton *tapAgain = [UIButton buttonWithType:UIButtonTypeRoundedRect];
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   576
                    tapAgain.frame = CGRectMake(currentPosition.x - 75, currentPosition.y + 25, 150, 40);
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   577
                    tapAgain.tag = CONFIRMATION_TAG;
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   578
                    tapAgain.alpha = 0;
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   579
                    [tapAgain addTarget:self action:@selector(sendHWClick) forControlEvents:UIControlEventTouchUpInside];
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   580
                    [tapAgain setTitle:NSLocalizedString(@"Tap to set!",@"from the overlay") forState:UIControlStateNormal];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   581
                    [self.view addSubview:tapAgain];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   582
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   583
                    // animation ftw!
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   584
                    [UIView beginAnimations:@"inserting button" context:NULL];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   585
                    [UIView setAnimationDuration:ANIMATION_DURATION];
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   586
                    [self.view viewWithTag:CONFIRMATION_TAG].alpha = 1;
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   587
                    [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   588
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   589
                    // keep the overlay active, or the button will fade
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   590
                    [self activateOverlay];
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   591
                    doNotDim();
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   592
                } else
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   593
                    if (HW_isWeaponTimerable()) {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   594
                        if (isSegmentVisible) {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   595
                            UISegmentedControl *grenadeTime = (UISegmentedControl *)[self.view viewWithTag:GRENADE_TAG];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   596
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   597
                            [UIView beginAnimations:@"removing segmented control" context:NULL];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   598
                            [UIView setAnimationDuration:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   599
                            [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   600
                            grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50);
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   601
                            [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   602
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   603
                            [grenadeTime performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   604
                        } else {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   605
                            NSArray *items = [[NSArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   606
                            UISegmentedControl *grenadeTime = [[UISegmentedControl alloc] initWithItems:items];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   607
                            [items release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   608
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   609
                            [grenadeTime addTarget:self action:@selector(setGrenadeTime:) forControlEvents:UIControlEventValueChanged];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   610
                            grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50);
4028
eb371ada631d move functions called by pascal code outside controller
koda
parents: 3996
diff changeset
   611
                            grenadeTime.selectedSegmentIndex = cachedGrenadeTime();
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   612
                            grenadeTime.tag = GRENADE_TAG;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   613
                            [self.view addSubview:grenadeTime];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   614
                            [grenadeTime release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   615
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   616
                            [UIView beginAnimations:@"inserting segmented control" context:NULL];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   617
                            [UIView setAnimationDuration:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   618
                            [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   619
                            grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width - 100, 250, 50);
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   620
                            [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   621
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   622
                            [self activateOverlay];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   623
                            doNotDim();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   624
                        }
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   625
                        isSegmentVisible = !isSegmentVisible;
3661
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   626
                    } else
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   627
                        if (HW_isWeaponSwitch())
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   628
                            HW_tab();
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   629
            break;
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   630
        case 2:
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   631
            HW_allKeysUp();
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   632
            break;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   633
        default:
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   634
            break;
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   635
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   636
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: 3629
diff changeset
   637
    initialDistanceForPinching = 0;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   638
}
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   639
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   640
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   641
    [self touchesEnded:touches withEvent:event];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   642
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   643
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   644
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   645
    CGRect screen = [[UIScreen mainScreen] bounds];
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   646
    NSSet *allTouches = [event allTouches];
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
   647
    int x, y, dx, dy;
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   648
    UITouch *touch, *first, *second;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   649
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   650
    if ([self shouldIgnoreTouch:allTouches] == YES)
3904
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   651
        return;
4541
c77c4f5d49d3 ignore touches around dpad and buttons (for real)
koda
parents: 4504
diff changeset
   652
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   653
    switch ([allTouches count]) {
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   654
        case 1:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   655
            touch = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   656
            CGPoint currentPosition = [touch locationInView:self.view];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   657
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3948
diff changeset
   658
            if (HW_isAmmoMenuOpen()) {
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   659
                // no zoom consideration for this
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   660
                HW_setCursor(HWXZ(currentPosition.x), HWYZ(currentPosition.y));
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   661
            } else
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   662
                if (HW_isWeaponRequiringClick()) {
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   663
                    // moves the cursor around wrt zoom
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   664
                    HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y));
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   665
                } else {
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   666
                    // panning \o/
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   667
                    dx = startingPoint.x - currentPosition.x;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   668
                    dy = currentPosition.y - startingPoint.y;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   669
                    HW_getCursor(&x, &y);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   670
                    // momentum (or something like that)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   671
                    /*if (abs(dx) > 40)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   672
                        dx *= log(abs(dx)/4);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   673
                    if (abs(dy) > 40)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   674
                        dy *= log(abs(dy)/4);*/
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   675
                    HW_setCursor(x + dx/HW_zoomFactor(), y + dy/HW_zoomFactor());
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   676
                    startingPoint = currentPosition;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   677
                }
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   678
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   679
        case 2:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   680
            first = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   681
            second = [[allTouches allObjects] objectAtIndex:1];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   682
            CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   683
            const int pinchDelta = 40;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   684
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   685
            if (0 != initialDistanceForPinching) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   686
                if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   687
                    HW_zoomIn();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   688
                    initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   689
                }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   690
                else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   691
                    HW_zoomOut();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   692
                    initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   693
                }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   694
            } else
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   695
                initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   696
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   697
        default:
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   698
            DLog(@"Nope");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   699
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   700
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   701
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   702
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   703
@end