project_files/HedgewarsMobile/Classes/OverlayViewController.m
author koda
Sun, 20 Jun 2010 23:05:11 +0200
changeset 3525 1d7b056ff866
parent 3523 6592fbb969da
child 3535 9e78c1f3d8d8
permissions -rw-r--r--
some memory caring code
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     1
//
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     2
//  overlayViewController.m
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     3
//  HedgewarsMobile
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     4
//
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     5
//  Created by Vittorio on 16/03/10.
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     7
//
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     8
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
     9
#import "OverlayViewController.h"
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    10
#import "SDL_uikitappdelegate.h"
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    11
#import "PascalImports.h"
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    12
#import "CGPointUtils.h"
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    13
#import "SDL_mouse.h"
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    14
#import "SDL_config_iphoneos.h"
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
    15
#import "PopoverMenuViewController.h"
3335
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    16
#import "CommodityFunctions.h"
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    17
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    18
#define HIDING_TIME_DEFAULT [NSDate dateWithTimeIntervalSinceNow:2.7]
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    19
#define HIDING_TIME_NEVER   [NSDate dateWithTimeIntervalSinceNow:10000]
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    20
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    21
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    22
@implementation OverlayViewController
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
    23
@synthesize popoverController, popupMenu, writeChatTextField, spinningWheel;
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    24
3335
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    25
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    26
	return rotationManager(interfaceOrientation);
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    27
}
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    28
2520ee7a5484 new manager for handling (future) rotations
koda
parents: 3317
diff changeset
    29
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    30
-(void) didReceiveMemoryWarning {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    31
	// Releases the view if it doesn't have a superview.
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    32
    [super didReceiveMemoryWarning];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    33
	// Release any cached data, images, etc that aren't in use.
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
    34
    if (popupMenu.view.superview == nil) 
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
    35
        popupMenu = nil;
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    36
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
    37
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    38
-(void) didRotate:(NSNotification *)notification {	
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    39
    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    40
    CGRect rect = [[UIScreen mainScreen] bounds];
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    41
    CGRect usefulRect = CGRectMake(0, 0, rect.size.width, rect.size.height);
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    42
    UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:12345];
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    43
    
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    44
    [UIView beginAnimations:@"rotation" context:NULL];
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    45
    [UIView setAnimationDuration:0.8f];
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    46
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    47
	switch (orientation) {
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    48
        case UIDeviceOrientationLandscapeLeft:
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    49
            sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(0));
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    50
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    51
            [self chatDisappear];
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    52
            HW_setLandscape(YES);
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    53
            break;
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    54
        case UIDeviceOrientationLandscapeRight:
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    55
            sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(180));
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    56
            self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90));
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    57
            [self chatDisappear];
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    58
            HW_setLandscape(YES);
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    59
            break;
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    60
        case UIDeviceOrientationPortrait:
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    61
            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    62
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(270));
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    63
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(0));
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    64
                [self chatAppear];
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    65
                HW_setLandscape(NO);
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    66
            }
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    67
            break;
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    68
        case UIDeviceOrientationPortraitUpsideDown:
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    69
            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    70
                sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(90));
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    71
                self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(180));
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    72
                [self chatAppear];
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    73
                HW_setLandscape(NO);
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    74
            }
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    75
            break;
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    76
        default:
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    77
            break;
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    78
    }
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    79
    self.view.frame = usefulRect;
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    80
    //sdlView.frame = usefulRect;
3395
095273ad0e08 adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents: 3385
diff changeset
    81
    [UIView commitAnimations];
3340
96dd168b080b fix all of what was committed before
koda
parents: 3335
diff changeset
    82
}
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
    83
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    84
-(void) chatAppear {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    85
    if (writeChatTextField == nil) {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    86
        writeChatTextField = [[UITextField alloc] initWithFrame:CGRectMake(0, 100, 768, [UIFont systemFontSize]+8)];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    87
        writeChatTextField.textColor = [UIColor whiteColor];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    88
        writeChatTextField.backgroundColor = [UIColor blueColor];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    89
        writeChatTextField.autocapitalizationType = UITextAutocapitalizationTypeNone;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    90
        writeChatTextField.autocorrectionType = UITextAutocorrectionTypeNo;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    91
        writeChatTextField.enablesReturnKeyAutomatically = NO;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    92
        writeChatTextField.keyboardAppearance = UIKeyboardAppearanceDefault;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    93
        writeChatTextField.keyboardType = UIKeyboardTypeDefault;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    94
        writeChatTextField.returnKeyType = UIReturnKeyDefault;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    95
        writeChatTextField.secureTextEntry = NO;	
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    96
        [self.view addSubview:writeChatTextField];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    97
    }
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
    98
    writeChatTextField.alpha = 1;
3479
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3463
diff changeset
    99
    [self activateOverlay];
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3463
diff changeset
   100
    [dimTimer setFireDate:HIDING_TIME_NEVER];
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   101
}
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   102
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   103
-(void) chatDisappear {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   104
    writeChatTextField.alpha = 0;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   105
    [writeChatTextField resignFirstResponder];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   106
    [dimTimer setFireDate:HIDING_TIME_DEFAULT];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   107
}
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   108
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   109
#pragma mark -
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   110
#pragma mark View Management
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   111
-(void) viewDidLoad {
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   112
    isPopoverVisible = NO;
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   113
    singleton = self.spinningWheel;
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   114
    canDim = NO;
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   115
    self.view.alpha = 0;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   116
    self.view.center = CGPointMake(self.view.frame.size.height/2.0, self.view.frame.size.width/2.0);
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
   117
    
3317
198ec44b6d92 minor tweaks, icon for ipad, merged overlayviewcontroller, pop viewcontroller when selected a hat
koda
parents: 3308
diff changeset
   118
    
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   119
    dimTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:6]
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   120
                                        interval:1000
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   121
                                          target:self
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   122
                                        selector:@selector(dimOverlay)
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   123
                                        userInfo:nil
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   124
                                         repeats:YES];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   125
    
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   126
    // add timer too runloop, otherwise it doesn't work
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   127
    [[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode];
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   128
    
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   129
    // listen for dismissal of the popover (see below)
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   130
    [[NSNotificationCenter defaultCenter] addObserver:self
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   131
                                             selector:@selector(dismissPopover)
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   132
                                                 name:@"dismissPopover"
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3356
diff changeset
   133
                                               object:nil];
3385
361bd29293f4 add automatic rotation in ipad (landscape only)
koda
parents: 3364
diff changeset
   134
    
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   135
    [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];	
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   136
    [[NSNotificationCenter defaultCenter] addObserver:self
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   137
                                             selector:@selector(didRotate:)
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   138
                                                 name:@"UIDeviceOrientationDidChangeNotification"
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   139
                                               object:nil];
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   140
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   141
    //self.view.transform = CGAffineTransformRotate(self.view.transform, (M_PI/2.0)); 
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   142
	[UIView beginAnimations:@"showing overlay" context:NULL];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   143
	[UIView setAnimationDuration:1];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   144
	self.view.alpha = 1;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   145
	[UIView commitAnimations];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   146
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   147
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   148
-(void) viewDidUnload {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   149
    self.writeChatTextField = nil;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   150
    self.popoverController = nil;
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   151
    self.popupMenu = nil;
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   152
    self.spinningWheel = nil;
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   153
    [super viewDidUnload];
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   154
    MSG_DIDUNLOAD();
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   155
}
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   156
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   157
-(void) dealloc {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   158
	[dimTimer invalidate];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   159
    [writeChatTextField release];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   160
    [popupMenu release];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   161
    [popoverController release];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   162
    // dimTimer is autoreleased
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   163
    [spinningWheel release];
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   164
    [super dealloc];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   165
}
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   166
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   167
#pragma mark -
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   168
#pragma mark Overlay actions and members
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   169
// dim the overlay when there's no more input for a certain amount of time
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   170
-(IBAction) buttonReleased:(id) sender {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   171
	HW_allKeysUp();
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   172
    [dimTimer setFireDate:HIDING_TIME_DEFAULT];
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   173
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   174
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   175
// nice transition for dimming, should be called only by the timer himself
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   176
-(void) dimOverlay {
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   177
    if (canDim) {
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   178
        [UIView beginAnimations:@"overlay dim" context:NULL];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   179
        [UIView setAnimationDuration:0.6];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   180
        self.view.alpha = 0.2;
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   181
        [UIView commitAnimations];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   182
    }
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   183
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   184
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   185
// set the overlay visible and put off the timer for enough time
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   186
-(void) activateOverlay {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   187
    self.view.alpha = 1;
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   188
    [dimTimer setFireDate:HIDING_TIME_NEVER];
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   189
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   190
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   191
// issue certain action based on the tag of the button 
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   192
-(IBAction) buttonPressed:(id) sender {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   193
    [self activateOverlay];
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   194
    if (isPopoverVisible) {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   195
        [self dismissPopover];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   196
    }
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   197
    UIButton *theButton = (UIButton *)sender;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   198
    
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   199
    switch (theButton.tag) {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   200
        case 0:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   201
            HW_walkLeft();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   202
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   203
        case 1:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   204
            HW_walkRight();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   205
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   206
        case 2:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   207
            HW_aimUp();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   208
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   209
        case 3:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   210
            HW_aimDown();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   211
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   212
        case 4:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   213
            HW_shoot();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   214
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   215
        case 5:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   216
            HW_jump();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   217
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   218
        case 6:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   219
            HW_backjump();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   220
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   221
        case 7:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   222
            HW_tab();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   223
            break;
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   224
        case 10:
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   225
            [self showPopover];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   226
            break;
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   227
        default:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   228
            NSLog(@"Nope");
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   229
            break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   230
    }
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   231
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   232
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   233
// present a further check before closing game
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   234
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   235
	if ([actionSheet cancelButtonIndex] != buttonIndex)
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   236
	    HW_terminate(NO);
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   237
	else
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   238
        HW_pause();		
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   239
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   240
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   241
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   242
// on iphone instead just use the tableViewController directly (and implement manually all animations)
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   243
-(IBAction) showPopover{
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   244
    isPopoverVisible = YES;
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   245
    CGRect anchorForPopover;
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   246
    Class popoverControllerClass = NSClassFromString(@"UIPopoverController");
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   247
    if (popoverControllerClass) {
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
   248
#if __IPHONE_3_2
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   249
        if (popupMenu == nil) 
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   250
            popupMenu = [[PopoverMenuViewController alloc] initWithStyle:UITableViewStylePlain];
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   251
        popoverController = [[popoverControllerClass alloc] initWithContentViewController:popupMenu];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   252
        [popoverController setPopoverContentSize:CGSizeMake(220, 170) animated:YES];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   253
        [popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]];
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   254
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   255
        if (UIDeviceOrientationIsLandscape([[UIDevice currentDevice] orientation]))
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   256
            anchorForPopover = CGRectMake(960, 0, 220, 32);
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   257
        else
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   258
            anchorForPopover = CGRectMake(736, 0, 220, 32);
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   259
        
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   260
        [popoverController presentPopoverFromRect:anchorForPopover
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   261
                                           inView:self.view
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   262
                         permittedArrowDirections:UIPopoverArrowDirectionUp
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   263
                                         animated:YES];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   264
#endif
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   265
    } else {
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   266
        if (popupMenu == nil) 
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   267
            popupMenu = [[PopoverMenuViewController alloc] initWithStyle:UITableViewStyleGrouped];
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   268
        popupMenu.view.backgroundColor = [UIColor clearColor];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   269
        popupMenu.view.frame = CGRectMake(480, 0, 200, 170);
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   270
        [self.view addSubview:popupMenu.view];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   271
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   272
        [UIView beginAnimations:@"showing popover" context:NULL];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   273
        [UIView setAnimationDuration:0.35];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   274
        popupMenu.view.frame = CGRectMake(280, 0, 200, 170);
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   275
        [UIView commitAnimations];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   276
    }
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   277
    popupMenu.tableView.scrollEnabled = NO;
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   278
}
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   279
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   280
// on ipad just dismiss it, on iphone transtion to the right
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   281
-(void) dismissPopover {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   282
    if (YES == isPopoverVisible) {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   283
        isPopoverVisible = NO;
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   284
        
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   285
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3479
diff changeset
   286
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_3_2
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   287
            [popoverController dismissPopoverAnimated:YES];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   288
#endif
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   289
        } else {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   290
            [UIView beginAnimations:@"hiding popover" context:NULL];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   291
            [UIView setAnimationDuration:0.35];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   292
            popupMenu.view.frame = CGRectMake(480, 0, 200, 170);
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   293
            [UIView commitAnimations];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   294
        
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   295
            [popupMenu.view performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:0.35];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   296
            [popupMenu performSelector:@selector(release) withObject:nil afterDelay:0.35];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   297
        }
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   298
        [self buttonReleased:nil];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   299
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   300
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   301
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   302
-(void) textFieldDoneEditing:(id) sender{
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   303
    [sender resignFirstResponder];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   304
}
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   305
3525
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   306
// this function is called by pascal FinishProgress and removes the spinning wheel when loading is done
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   307
void spinningWheelDone (void) {
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   308
    [UIView beginAnimations:@"hiding spinning wheel" context:NULL];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   309
    [UIView setAnimationDuration:0.7];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   310
    singleton.alpha = 0;
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   311
    [UIView commitAnimations];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   312
    [singleton performSelector:@selector(stopAnimating) withObject:nil afterDelay:0.7];
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   313
    canDim = YES;
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   314
}
1d7b056ff866 some memory caring code
koda
parents: 3523
diff changeset
   315
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   316
#pragma mark -
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   317
#pragma mark Custom touch event handling
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   318
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   319
	NSArray *twoTouches;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   320
	UITouch *touch = [touches anyObject];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3117
diff changeset
   321
    
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   322
    if (isPopoverVisible) {
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   323
        [self dismissPopover];
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   324
    }
3463
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   325
    if (writeChatTextField) {
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   326
        [self.writeChatTextField resignFirstResponder];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   327
        [dimTimer setFireDate:HIDING_TIME_DEFAULT];
23c50be687a9 update sdl functions to latest revision
koda
parents: 3405
diff changeset
   328
    }
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   329
    
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   330
    gestureStartPoint = [touch locationInView:self.view];
3308
b6dcae4b6d2c make the tables work also on iphone
koda
parents: 3305
diff changeset
   331
        
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   332
	switch ([touches count]) {
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   333
		/*case 1:
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   334
			initialDistanceForPinching = 0;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   335
			switch ([touch tapCount]) {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   336
				case 1:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   337
					NSLog(@"X:%d Y:%d", (int)gestureStartPoint.x, (int)gestureStartPoint.y );
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   338
					//SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window, 
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   339
					//		      (int)gestureStartPoint.y, width - (int)gestureStartPoint.x);
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   340
					//HW_click();
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   341
					break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   342
				case 2:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   343
					HW_ammoMenu();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   344
					break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   345
				default:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   346
					break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   347
			}
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   348
			break;*/
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   349
		case 2:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   350
			if (2 == [touch tapCount]) {
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   351
				HW_zoomReset();
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   352
			}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   353
			
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   354
			// pinching
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   355
            gestureStartPoint = CGPointMake(0, 0);
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   356
			twoTouches = [touches allObjects];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   357
			UITouch *first = [twoTouches objectAtIndex:0];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   358
			UITouch *second = [twoTouches objectAtIndex:1];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   359
			initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   360
			break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   361
		default:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   362
			break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   363
	}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   364
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   365
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   366
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   367
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   368
    gestureStartPoint = CGPointMake(0, 0);
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   369
	initialDistanceForPinching = 0;
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   370
	//HW_allKeysUp();
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   371
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   372
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   373
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   374
	// this can happen if the user puts more than 5 touches on the screen at once, or perhaps in other circumstances
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   375
	[self touchesEnded:touches withEvent:event];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   376
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   377
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   378
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3357
diff changeset
   379
    CGFloat minimumGestureLength;
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   380
    int logCoeff;
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   381
    
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   382
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3357
diff changeset
   383
        minimumGestureLength = 5.0f;
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   384
        logCoeff = 19;
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   385
    } else {
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3357
diff changeset
   386
        minimumGestureLength = 3.0f;
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   387
        logCoeff = 3;
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   388
    }
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   389
    
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   390
	NSArray *twoTouches;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   391
	CGPoint currentPosition;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   392
	UITouch *touch = [touches anyObject];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   393
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   394
	switch ([touches count]) {
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   395
		/*case 1:
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   396
			currentPosition = [touch locationInView:self.view];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   397
			// panning
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   398
			CGFloat deltaX = fabsf(gestureStartPoint.x - currentPosition.x);
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   399
			CGFloat deltaY = fabsf(gestureStartPoint.y - currentPosition.y);
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   400
			
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   401
            // the two ifs are not mutually exclusive
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   402
            if (deltaX >= minimumGestureLength) {
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   403
                Dlog(@"deltaX: %f deltaY: %f", deltaX, deltaY);
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3357
diff changeset
   404
                if (currentPosition.x > gestureStartPoint.x) {
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3347
diff changeset
   405
                    HW_cursorLeft(logCoeff*log(deltaX));
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   406
                } else {
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3347
diff changeset
   407
                    HW_cursorRight(logCoeff*log(deltaX));
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   408
                }
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   409
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   410
            } 
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   411
            if (deltaY >= minimumGestureLength) {
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   412
                DLog(@"deltaX: %f deltaY: %f", deltaX, deltaY);
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3357
diff changeset
   413
                if (currentPosition.y < gestureStartPoint.y) {
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3347
diff changeset
   414
                    HW_cursorDown(logCoeff*log(deltaY));
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   415
                } else {
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3347
diff changeset
   416
                    HW_cursorUp(logCoeff*log(deltaY));
3347
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   417
                }            
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   418
            }
5d0ac8197eb7 camera panning ftw
koda
parents: 3340
diff changeset
   419
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   420
			break;*/
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   421
		case 2:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   422
			twoTouches = [touches allObjects];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   423
			UITouch *first = [twoTouches objectAtIndex:0];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   424
			UITouch *second = [twoTouches objectAtIndex:1];
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   425
			CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
3523
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   426
			const int pinchDelta = 40;
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   427
            
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   428
			if (0 != initialDistanceForPinching) {
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   429
                if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) {
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   430
                    HW_zoomIn();
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   431
                    initialDistanceForPinching = currentDistanceOfPinching;
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   432
                }
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   433
                else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) {
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   434
                    HW_zoomOut();
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   435
                    initialDistanceForPinching = currentDistanceOfPinching;
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   436
                }
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   437
            } else 
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   438
                initialDistanceForPinching = currentDistanceOfPinching;
6592fbb969da fix zoom smoothness
koda
parents: 3514
diff changeset
   439
            
3117
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   440
			break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   441
		default:
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   442
			break;
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   443
	}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   444
}
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   445
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   446
f3e363a9b7db complete previous commit (which broken my local copy as well)
koda
parents:
diff changeset
   447
@end