project_files/HedgewarsMobile/Classes/OverlayViewController.m
author koda
Sun, 10 Oct 2010 03:16:25 +0200
changeset 3941 017b2b31e1c6
parent 3940 cc29628976cc
child 3948 24daa33a3114
permissions -rw-r--r--
integrate nicely with external display
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"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    23
#import "SDL_uikitappdelegate.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    24
#import "InGameMenuViewController.h"
3792
dd9345e74b66 help page for lobby
koda
parents: 3791
diff changeset
    25
#import "HelpPageViewController.h"
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3922
diff changeset
    26
#import "AmmoMenuViewController.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    27
#import "PascalImports.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    28
#import "CommodityFunctions.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    29
#import "CGPointUtils.h"
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
    30
#import "SDL_config_iphoneos.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    31
#import "SDL_mouse.h"
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
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
    38
#define CONFIRMATION_TAG 5959
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
    39
#define GRENADE_TAG 9595
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
    40
#define REPLAYBLACKVIEW_TAG 9955
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
    41
#define ACTIVITYINDICATOR_TAG 987654
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
    42
#define ANIMATION_DURATION 0.25
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
    43
#define removeConfirmationInput()   [[self.view viewWithTag:CONFIRMATION_TAG] removeFromSuperview];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    44
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    45
@implementation OverlayViewController
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
    46
@synthesize popoverController, popupMenu, helpPage, amvc, isNetGame, useClassicMenu;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    47
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
    return rotationManager(interfaceOrientation);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
    52
-(void) didRotate:(NSNotification *)notification {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    53
    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    54
    CGRect rect = [[UIScreen mainScreen] bounds];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
    CGRect usefulRect = CGRectMake(0, 0, rect.size.width, rect.size.height);
3648
2477029463ed some further chat polishing
koda
parents: 3647
diff changeset
    56
    UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
    57
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
    [UIView beginAnimations:@"rotation" context:NULL];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    59
    [UIView setAnimationDuration:0.8f];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    61
    switch (orientation) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
        case UIDeviceOrientationLandscapeLeft:
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    63
            if (IS_DUALHEAD() == NO)
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
    64
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(0));
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    65
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90));
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
            HW_setLandscape(YES);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
        case UIDeviceOrientationLandscapeRight:
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    69
            if (IS_DUALHEAD() == NO)
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
    70
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(180));
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
    71
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90));
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
            HW_setLandscape(YES);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
            break;
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
    74
        /*
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
        case UIDeviceOrientationPortrait:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(270));
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(0));
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    79
                [self chatAppear];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
                HW_setLandscape(NO);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    81
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    82
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
        case UIDeviceOrientationPortraitUpsideDown:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    84
            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(180));
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
                [self chatAppear];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    88
                HW_setLandscape(NO);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
            }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
            break;
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
    91
        */
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
        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
    93
            // a debug log would spam too much
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    94
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    95
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    96
    self.view.frame = usefulRect;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    97
    //sdlView.frame = usefulRect;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    98
    [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    99
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   100
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   101
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
#pragma mark View Management
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
-(void) viewDidLoad {
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   104
    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
   105
    isReplay = NO;
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   106
    cachedGrenadeTime = 2;
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
   107
    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
   108
    
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
   109
    // i called it a popover even on the iphone
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   110
    isPopoverVisible = NO;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
    self.view.alpha = 0;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
    self.view.center = CGPointMake(self.view.frame.size.height/2.0, self.view.frame.size.width/2.0);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   113
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   114
    initialScreenCount = [[UIScreen screens] count];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   115
    
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
   116
    // set initial orientation wrt the controller orientation
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
   117
    UIDeviceOrientation orientation = self.interfaceOrientation;
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   118
    UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG];
3627
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   119
    switch (orientation) {
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   120
        case UIDeviceOrientationLandscapeLeft:
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   121
            if (IS_DUALHEAD() == NO)
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   122
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(0));
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   123
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90));
3627
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   124
            break;
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   125
        case UIDeviceOrientationLandscapeRight:
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   126
            if (IS_DUALHEAD() == NO)
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   127
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(180));
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   128
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90));
3627
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   129
            break;
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   130
        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
   131
            DLog(@"unknown orientation");
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   132
            break;
3627
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
   133
    }
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   134
    CGRect screenRect = [[UIScreen mainScreen] bounds];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   135
    self.view.frame = CGRectMake(0, 0, screenRect.size.width, screenRect.size.height);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   136
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   137
    dimTimer = [[NSTimer alloc] initWithFireDate:(IS_DUALHEAD()) ? HIDING_TIME_NEVER : [NSDate dateWithTimeIntervalSinceNow:6]
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
                                        interval:1000
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
                                          target:self
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   140
                                        selector:@selector(dimOverlay)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   141
                                        userInfo:nil
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   142
                                         repeats:YES];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   143
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   144
    // add timer too runloop, otherwise it doesn't work
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   145
    [[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   146
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   147
    [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   148
    [[NSNotificationCenter defaultCenter] addObserver:self
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   149
                                             selector:@selector(didRotate:)
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3551
diff changeset
   150
                                                 name:UIDeviceOrientationDidChangeNotification
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   151
                                               object:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   153
    [[NSNotificationCenter defaultCenter] addObserver:self
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   154
                                             selector:@selector(showHelp:)
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   155
                                                 name:@"show help ingame"
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   156
                                               object:nil];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   157
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   158
    [[NSNotificationCenter defaultCenter] addObserver:self
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   159
                                             selector:@selector(cleanup)
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   160
                                                 name:@"remove overlay"
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   161
                                               object:nil];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   162
    
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   163
    [[NSNotificationCenter defaultCenter] addObserver:self
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   164
                                             selector:@selector(numberOfScreensIncreased)
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   165
                                                 name:UIScreenDidConnectNotification
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   166
                                               object:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   167
    
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   168
    [[NSNotificationCenter defaultCenter] addObserver:self
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   169
                                             selector:@selector(numberOfScreensDecreased)
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   170
                                                 name:UIScreenDidDisconnectNotification
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   171
                                               object:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   172
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   173
    [UIView beginAnimations:@"showing overlay" context:NULL];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   174
    [UIView setAnimationDuration:1];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   175
    self.view.alpha = 1;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   176
    [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   177
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   178
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   179
-(void) numberOfScreensIncreased {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   180
    if (initialScreenCount == 1) {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   181
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"New display detected"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   182
                                                        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
   183
                                                       delegate:nil
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   184
                                              cancelButtonTitle:@"Ok"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   185
                                              otherButtonTitles:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   186
        [alert show];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   187
        [alert release];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   188
        if (HW_isPaused() == NO)
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   189
            HW_pause();
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   190
    }
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   191
}
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   192
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   193
-(void) numberOfScreensDecreased {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   194
    if (initialScreenCount == 2) {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   195
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Oh noes! Display disconnected"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   196
                                                        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
   197
                                                       delegate:nil
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   198
                                              cancelButtonTitle:@"Ok"
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   199
                                              otherButtonTitles:nil];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   200
        [alert show];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   201
        [alert release];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   202
        [self cleanup];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   203
    }
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   204
}
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   205
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   206
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   207
-(void) showHelp:(id) sender {
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   208
    if (self.helpPage == nil)
3792
dd9345e74b66 help page for lobby
koda
parents: 3791
diff changeset
   209
        self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageInGameViewController" bundle:nil];
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   210
    self.helpPage.view.alpha = 0;
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   211
    [self.view addSubview:helpPage.view];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   212
    [UIView beginAnimations:@"helpingame" context:NULL];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   213
    self.helpPage.view.alpha = 1;
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   214
    [UIView commitAnimations];
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   215
    doNotDim();
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   216
}
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   217
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   218
-(void) didReceiveMemoryWarning {
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   219
    [super didReceiveMemoryWarning];
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   220
    if (self.popupMenu.view.superview == nil)
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   221
        self.popupMenu = nil;
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   222
    if (self.helpPage.view.superview == nil)
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   223
        self.helpPage = nil;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   224
    if (((UIPopoverController *)self.popoverController).contentViewController.view.superview == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   225
        self.popoverController = nil;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   226
    if (self.amvc.view.superview == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   227
        self.amvc = nil;
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   228
    MSG_MEMCLEAN();
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   229
}
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   230
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   231
-(void) viewDidUnload {
3783
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   232
    // only objects initialized in viewDidLoad should be here
8e9daf967406 X&Y buttons, sounds for some buttons, cleanup
koda
parents: 3779
diff changeset
   233
    [[NSNotificationCenter defaultCenter] removeObserver:self];
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
   234
    dimTimer = nil;
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   235
    self.helpPage = nil;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   236
    [self dismissPopover];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   237
    self.popoverController = nil;
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   238
    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
   239
    MSG_DIDUNLOAD();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   240
    [super viewDidUnload];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   241
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   242
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   243
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   244
    [popupMenu release];
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   245
    [helpPage release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   246
    [popoverController release];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   247
    [amvc release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   248
    // dimTimer is autoreleased
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   249
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   250
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   251
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   252
-(void) cleanup {
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   253
    [self dismissPopover];
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3922
diff changeset
   254
    HW_terminate(NO);
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   255
    [self.view removeFromSuperview];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   256
}
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   257
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   258
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   259
#pragma mark Overlay actions and members
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   260
// nice transition for dimming, should be called only by the timer himself
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   261
-(void) dimOverlay {
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   262
    if (isGameRunning) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   263
        [UIView beginAnimations:@"overlay dim" context:NULL];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   264
        [UIView setAnimationDuration:0.6];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   265
        self.view.alpha = 0.2;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   266
        [UIView commitAnimations];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   267
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   268
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   269
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   270
// set the overlay visible and put off the timer for enough time
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   271
-(void) activateOverlay {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   272
    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
   273
    doNotDim();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   274
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   275
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   276
// 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
   277
-(IBAction) buttonReleased:(id) sender {
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
   278
    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
   279
        return;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   280
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   281
    UIButton *theButton = (UIButton *)sender;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   282
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   283
    switch (theButton.tag) {
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   284
        case 0:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   285
        case 1:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   286
        case 2:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   287
        case 3:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   288
            [NSObject cancelPreviousPerformRequestsWithTarget:self
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   289
                                                     selector:@selector(unsetPreciseStatus)
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   290
                                                       object:nil];
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   291
            HW_walkingKeysUp();
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   292
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   293
        case 4:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   294
        case 5:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   295
        case 6:
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   296
            HW_otherKeysUp();
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   297
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   298
        default:
3660
bc125bea5849 complete settings page rework
koda
parents: 3651
diff changeset
   299
            DLog(@"Nope");
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   300
            break;
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   301
    }
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   302
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
   303
    isAttacking = NO;
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   304
    doDim();
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   305
}
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   306
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   307
// issue certain action based on the tag of the button
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   308
-(IBAction) buttonPressed:(id) sender {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   309
    [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
   310
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   311
    if (isGameRunning == NO)
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   312
        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
   313
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   314
    if (isPopoverVisible)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   315
        [self dismissPopover];
3779
3351a017d4ad tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents: 3765
diff changeset
   316
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   317
    UIButton *theButton = (UIButton *)sender;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   318
    switch (theButton.tag) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   319
        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
   320
            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
   321
                HW_walkLeft();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   322
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   323
        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
   324
            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
   325
                HW_walkRight();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   326
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   327
        case 2:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   328
            [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
   329
            HW_preciseSet(!HW_isWeaponRope());
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   330
            HW_aimUp();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   331
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   332
        case 3:
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   333
            [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
   334
            HW_preciseSet(!HW_isWeaponRope());
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   335
            HW_aimDown();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   336
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   337
        case 4:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   338
            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
   339
            isAttacking = YES;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   340
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   341
        case 5:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   342
            HW_jump();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   343
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   344
        case 6:
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   345
            HW_backjump();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   346
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   347
        case 10:
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   348
            playSound(@"clickSound");
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   349
            HW_pause();
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   350
            if (self.amvc.isVisible && IS_DUALHEAD() == NO) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   351
                doDim();
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   352
                [self.amvc disappear];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   353
            }
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   354
            removeConfirmationInput();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   355
            [self showPopover];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   356
            break;
3624
304c6d32383a button to open ammomenu
koda
parents: 3617
diff changeset
   357
        case 11:
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   358
            playSound(@"clickSound");
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   359
            removeConfirmationInput();
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   360
            
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   361
            if (IS_DUALHEAD() || self.useClassicMenu == NO) {
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   362
                if (self.amvc == nil)
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   363
                    self.amvc = [[AmmoMenuViewController alloc] init];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   364
                
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   365
                if (self.amvc.isVisible) {
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   366
                    doDim();
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   367
                    [self.amvc disappear];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   368
                } else {
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   369
                    doNotDim();
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   370
                    [self.amvc appearInView:self.view];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3933
diff changeset
   371
                }
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   372
            } else {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   373
                HW_ammoMenu();
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   374
            }
3624
304c6d32383a button to open ammomenu
koda
parents: 3617
diff changeset
   375
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   376
        default:
3626
19f78afa0188 fix the multitouch shooting and moving
koda
parents: 3625
diff changeset
   377
            DLog(@"Nope");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   378
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   379
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   380
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   381
3649
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   382
-(void) unsetPreciseStatus {
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   383
    HW_preciseSet(NO);
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   384
}
bc35f8fee587 aim now starts slow and then moves faster
koda
parents: 3648
diff changeset
   385
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   386
// present a further check before closing game
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   387
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   388
    if ([actionSheet cancelButtonIndex] != buttonIndex)
3924
2a9ace189288 WIP for an objc ammomenu implementation
koda
parents: 3922
diff changeset
   389
        [self cleanup];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   390
    else
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   391
        HW_pause();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   392
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   393
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   394
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   395
// on iphone instead just use the tableViewController directly (and implement manually all animations)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   396
-(IBAction) showPopover{
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   397
    CGRect screen = [[UIScreen mainScreen] bounds];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   398
    isPopoverVisible = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   399
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   400
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   401
        if (self.popupMenu == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   402
            self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStylePlain];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   403
        if (self.popoverController == nil) {
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   404
            self.popoverController = [[UIPopoverController alloc] initWithContentViewController:self.popupMenu];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   405
            [self.popoverController setPopoverContentSize:CGSizeMake(220, 170) animated:YES];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   406
            [self.popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   407
        }
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   408
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   409
        [self.popoverController presentPopoverFromRect:CGRectMake(screen.size.height / 2, screen.size.width / 2, 1, 1)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   410
                                           inView:self.view
3667
9359a70df013 use external libs more consistently
koda
parents: 3662
diff changeset
   411
                         permittedArrowDirections:UIPopoverArrowDirectionAny
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   412
                                         animated:YES];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   413
    } else {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   414
        if (self.popupMenu == nil)
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   415
            self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStyleGrouped];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   416
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   417
        [self.view addSubview:popupMenu.view];
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   418
        [self.popupMenu present];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   419
    }
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   420
    self.popupMenu.tableView.scrollEnabled = NO;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   421
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   422
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   423
// on ipad just dismiss it, on iphone transtion to the right
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   424
-(void) dismissPopover {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   425
    if (YES == isPopoverVisible) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   426
        isPopoverVisible = NO;
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   427
        if (HW_isPaused())
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   428
            HW_pause();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   429
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   430
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   431
            [(InGameMenuViewController *)[[self popoverController] contentViewController] removeChat];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   432
            [self.popoverController dismissPopoverAnimated:YES];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   433
        } else {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   434
            [self.popupMenu dismiss];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   435
        }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   436
        [self buttonReleased:nil];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   437
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   438
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   439
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   440
#pragma mark -
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   441
#pragma mark Custom touch event handling
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   442
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   443
    NSSet *allTouches = [event allTouches];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   444
    UITouch *first, *second;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   445
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
   446
    if (isGameRunning == NO)
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
   447
        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
   448
3647
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3646
diff changeset
   449
    // hide in-game menu
0d0df215fb52 making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents: 3646
diff changeset
   450
    if (isPopoverVisible)
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   451
        [self dismissPopover];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   452
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   453
    if (self.amvc.isVisible && IS_DUALHEAD() == NO) {
3933
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   454
        doDim();
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   455
        [self.amvc disappear];
1a873262f5dd polishing the cocoa ammomenu a little, still requires work
koda
parents: 3926
diff changeset
   456
    }
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   457
    // reset default dimming
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   458
    doDim();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   459
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3667
diff changeset
   460
    HW_setPianoSound([allTouches count]);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   461
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   462
    switch ([allTouches count]) {
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   463
        case 1:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   464
            removeConfirmationInput();
3651
7058ca178f3b switching hogs now works
koda
parents: 3650
diff changeset
   465
            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
   466
            if (2 == [[[allTouches allObjects] objectAtIndex:0] tapCount])
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   467
                HW_zoomReset();
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   468
            break;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   469
        case 2:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   470
            // pinching
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   471
            first = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   472
            second = [[allTouches allObjects] objectAtIndex:1];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   473
            initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   474
            break;
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   475
        default:
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   476
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   477
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   478
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   479
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   480
    //if (currentPosition.y < screen.size.width - 130 || (currentPosition.x > 130 && currentPosition.x < screen.size.height - 130)) {
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   481
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   482
-(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
   483
    CGRect screen = [[UIScreen mainScreen] bounds];
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   484
    NSSet *allTouches = [event allTouches];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   485
    CGPoint currentPosition = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   486
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
   487
    if (isGameRunning == NO)
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   488
        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
   489
    
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   490
    switch ([allTouches count]) {
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   491
        case 1:
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   492
            // if we're in the menu we just click in the point
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   493
            if (HW_isAmmoOpen()) {
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   494
                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
   495
                // 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
   496
                HW_click();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   497
            } else
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   498
                // 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
   499
                if (HW_isWeaponRequiringClick()) {
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   500
                    // 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
   501
                    HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y));
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   502
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   503
                    // 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
   504
                    UIButton *tapAgain = [UIButton buttonWithType:UIButtonTypeRoundedRect];
3672
f225b94a4411 shrink confirmation button, double tap resets zoom and centers hog
koda
parents: 3668
diff changeset
   505
                    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
   506
                    tapAgain.tag = CONFIRMATION_TAG;
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   507
                    tapAgain.alpha = 0;
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   508
                    [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
   509
                    [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
   510
                    [self.view addSubview:tapAgain];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   511
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   512
                    // animation ftw!
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   513
                    [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
   514
                    [UIView setAnimationDuration:ANIMATION_DURATION];
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   515
                    [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
   516
                    [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   517
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   518
                    // keep the overlay active, or the button will fade
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   519
                    [self activateOverlay];
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   520
                    doNotDim();
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   521
                } else
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   522
                    if (HW_isWeaponTimerable()) {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   523
                        if (isSegmentVisible) {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   524
                            UISegmentedControl *grenadeTime = (UISegmentedControl *)[self.view viewWithTag:GRENADE_TAG];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   525
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   526
                            [UIView beginAnimations:@"removing segmented control" context:NULL];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   527
                            [UIView setAnimationDuration:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   528
                            [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   529
                            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
   530
                            [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   531
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   532
                            [grenadeTime performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   533
                        } else {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   534
                            NSArray *items = [[NSArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   535
                            UISegmentedControl *grenadeTime = [[UISegmentedControl alloc] initWithItems:items];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   536
                            [items release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   537
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   538
                            [grenadeTime addTarget:self action:@selector(setGrenadeTime:) forControlEvents:UIControlEventValueChanged];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   539
                            grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50);
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   540
                            grenadeTime.selectedSegmentIndex = cachedGrenadeTime;
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   541
                            grenadeTime.tag = GRENADE_TAG;
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   542
                            [self.view addSubview:grenadeTime];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   543
                            [grenadeTime release];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   544
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   545
                            [UIView beginAnimations:@"inserting segmented control" context:NULL];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   546
                            [UIView setAnimationDuration:ANIMATION_DURATION];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   547
                            [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   548
                            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
   549
                            [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   550
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   551
                            [self activateOverlay];
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   552
                            doNotDim();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   553
                        }
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   554
                        isSegmentVisible = !isSegmentVisible;
3661
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   555
                    } else
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   556
                        if (HW_isWeaponSwitch())
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   557
                            HW_tab();
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   558
            break;
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   559
        case 2:
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   560
            HW_allKeysUp();
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   561
            break;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   562
        default:
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   563
            break;
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   564
    }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   565
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
   566
    initialDistanceForPinching = 0;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   567
}
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   568
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   569
-(void) sendHWClick {
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   570
    HW_click();
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   571
    removeConfirmationInput();
3646
a3271158d93b don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents: 3639
diff changeset
   572
    doDim();
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   573
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   574
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   575
-(void) setGrenadeTime:(id) sender {
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   576
    UISegmentedControl *theSegment = (UISegmentedControl *)sender;
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   577
    if (cachedGrenadeTime != theSegment.selectedSegmentIndex) {
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   578
        HW_setGrenadeTime(theSegment.selectedSegmentIndex + 1);
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   579
        cachedGrenadeTime = theSegment.selectedSegmentIndex;
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   580
    }
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   581
}
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   582
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   583
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   584
    [self touchesEnded:touches withEvent:event];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   585
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   586
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   587
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   588
    CGRect screen = [[UIScreen mainScreen] bounds];
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   589
    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
   590
    int x, y, dx, dy;
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   591
    UITouch *touch, *first, *second;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   592
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
   593
    if (isGameRunning == NO)
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   594
        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
   595
    
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   596
    switch ([allTouches count]) {
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   597
        case 1:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   598
            touch = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   599
            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
   600
3680
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   601
            if (HW_isAmmoOpen()) {
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   602
                // no zoom consideration for this
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   603
                HW_setCursor(HWXZ(currentPosition.x), HWYZ(currentPosition.y));
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   604
            } else
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   605
                if (HW_isWeaponRequiringClick()) {
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   606
                    // moves the cursor around wrt zoom
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   607
                    HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y));
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   608
                } else {
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   609
                    // panning \o/
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   610
                    dx = startingPoint.x - currentPosition.x;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   611
                    dy = currentPosition.y - startingPoint.y;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   612
                    HW_getCursor(&x, &y);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   613
                    // momentum (or something like that)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   614
                    /*if (abs(dx) > 40)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   615
                        dx *= log(abs(dx)/4);
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   616
                    if (abs(dy) > 40)
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   617
                        dy *= log(abs(dy)/4);*/
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   618
                    HW_setCursor(x + dx/HW_zoomFactor(), y + dy/HW_zoomFactor());
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   619
                    startingPoint = currentPosition;
aaf832c6fbd7 fix panning when zoomed (finally)
koda
parents: 3672
diff changeset
   620
                }
3551
d4de36b3801a moar zoom, fixed fort mode, other glitches
koda
parents: 3547
diff changeset
   621
            break;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   622
        case 2:
3638
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   623
            first = [[allTouches allObjects] objectAtIndex:0];
33ee433749ba touch overlay reworked, improvements to zoom and confirmation
koda
parents: 3637
diff changeset
   624
            second = [[allTouches allObjects] objectAtIndex:1];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   625
            CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   626
            const int pinchDelta = 40;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   627
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   628
            if (0 != initialDistanceForPinching) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   629
                if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   630
                    HW_zoomIn();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   631
                    initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   632
                }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   633
                else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   634
                    HW_zoomOut();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   635
                    initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   636
                }
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   637
            } else
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   638
                initialDistanceForPinching = currentDistanceOfPinching;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   639
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   640
        default:
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   641
            DLog(@"Nope");
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   642
            break;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   643
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   644
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   645
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   646
#pragma mark -
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   647
#pragma mark Functions called by pascal
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   648
void inline setGameRunning(BOOL value) {
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
   649
    isGameRunning = value;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   650
}
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
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   652
// called by uStore from AddProgress
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   653
void startSpinning() {
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
   654
    setGameRunning(NO);
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   655
    UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   656
    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   657
    indicator.tag = ACTIVITYINDICATOR_TAG;
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   658
    int offset;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   659
    if ([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft)
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   660
        offset = -120;
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   661
    else
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   662
        offset = 120;
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   663
    if (IS_DUALHEAD())
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   664
        indicator.center = CGPointMake(theWindow.frame.size.width/2, theWindow.frame.size.height/2 + offset);
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   665
    else
3926
668b71f31e51 use dynamic data from engine instead of using hardcoded values
koda
parents: 3924
diff changeset
   666
        indicator.center = CGPointMake(theWindow.frame.size.width/2 + offset, theWindow.frame.size.height/2);
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   667
    indicator.hidesWhenStopped = YES;
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   668
    [indicator startAnimating];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   669
    [theWindow addSubview:indicator];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   670
    [indicator release];
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   671
}
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   672
3906
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   673
// called by uStore from FinishProgress and by OverlayViewController by replayBegan
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   674
void stopSpinning() {
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   675
    UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   676
    UIActivityIndicatorView *indicator = (UIActivityIndicatorView *)[theWindow viewWithTag:ACTIVITYINDICATOR_TAG];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   677
    [indicator stopAnimating];
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
   678
    HW_zoomSet(1.7);
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
   679
    if (isReplay == NO)
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   680
        setGameRunning(YES);
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   681
}
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   682
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
   683
// called by CCHandlers from chNextTurn
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   684
void clearView() {
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   685
    UIWindow *theWindow = (IS_DUALHEAD()) ? [SDLUIKitDelegate sharedAppDelegate].uiwindow : [[UIApplication sharedApplication] keyWindow];
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   686
    UIButton *theButton = (UIButton *)[theWindow viewWithTag:CONFIRMATION_TAG];
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   687
    UISegmentedControl *theSegment = (UISegmentedControl *)[theWindow viewWithTag:GRENADE_TAG];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   688
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   689
    [UIView beginAnimations:@"remove button" context:NULL];
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   690
    [UIView setAnimationDuration:ANIMATION_DURATION];
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   691
    theButton.alpha = 0;
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3649
diff changeset
   692
    theSegment.alpha = 0;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   693
    [UIView commitAnimations];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3680
diff changeset
   694
3940
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   695
    if (theButton)
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   696
        [theWindow performSelector:@selector(removeFromSuperview) withObject:theButton afterDelay:ANIMATION_DURATION];
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   697
    if (theSegment)
cc29628976cc some optimizations to drawing and fetching data of new ammomenu
koda
parents: 3935
diff changeset
   698
        [theWindow performSelector:@selector(removeFromSuperview) withObject:theSegment afterDelay:ANIMATION_DURATION];
3791
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   699
98072b3871c1 help page for ingame, some other fixes here and there
koda
parents: 3789
diff changeset
   700
    cachedGrenadeTime = 2;
3639
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   701
}
b5cdbcc89b61 use a button instead of label and simplify a lot touch interaction
koda
parents: 3638
diff changeset
   702
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
   703
// called by hwengine
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   704
void replayBegan() {
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   705
    UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   706
    UIView *blackView = [[UIView alloc] initWithFrame:theWindow.frame];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   707
    blackView.backgroundColor = [UIColor blackColor];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   708
    blackView.alpha = 0.6;
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   709
    blackView.tag = REPLAYBLACKVIEW_TAG;
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
   710
    blackView.exclusiveTouch = NO;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   711
    blackView.multipleTouchEnabled = NO;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   712
    blackView.userInteractionEnabled = NO;
3906
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   713
    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   714
    indicator.center = theWindow.center;
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   715
    [indicator startAnimating];
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   716
    [blackView addSubview:indicator];
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   717
    [indicator release];
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
   718
    [theWindow addSubview:blackView];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   719
    [blackView release];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   720
    isReplay = YES;
3906
c5da430cb3fd enable Lua for iOS (hooks for frontend to be done)
koda
parents: 3904
diff changeset
   721
    stopSpinning();
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
   722
}
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   723
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   724
// called by uGame
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   725
void replayFinished() {
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   726
    UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3906
diff changeset
   727
    UIView *blackView = (UIView *)[theWindow viewWithTag:REPLAYBLACKVIEW_TAG];
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
   728
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   729
    [UIView beginAnimations:@"removing black" context:NULL];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   730
    [UIView setAnimationDuration:1];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   731
    blackView.alpha = 0;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   732
    [UIView commitAnimations];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   733
    [theWindow performSelector:@selector(removeFromSuperview) withObject:blackView afterDelay:1];
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   734
    
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   735
    setGameRunning(YES);
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   736
    isReplay = NO;
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   737
}
22e4d74240e5 finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents: 3829
diff changeset
   738
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   739
@end