cocoaTouch/overlayViewController.m
author koda
Sun, 21 Mar 2010 03:51:58 +0000
changeset 3029 67483e87590c
parent 3027 32890edaa483
child 3034 b576460ba8ad
permissions -rw-r--r--
a couple of smaller cleanups that didn't get in previous commit
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     1
//
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     2
//  overlayViewController.m
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     3
//  HedgewarsMobile
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     4
//
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     5
//  Created by Vittorio on 16/03/10.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     7
//
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     8
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
     9
#import "overlayViewController.h"
3025
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
    10
#import "SDL_uikitappdelegate.h"
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    11
#import "PascalImports.h"
3026
1a44c0f2b83b move interface files around to use standard names in different versions
koda
parents: 3025
diff changeset
    12
#import "CGPointUtils.h"
3025
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
    13
#import "SDL_mouse.h"
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    14
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    15
@implementation overlayViewController
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    16
@synthesize dimTimer;
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    17
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    18
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    19
-(void) didReceiveMemoryWarning {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    20
	// Releases the view if it doesn't have a superview.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    21
    [super didReceiveMemoryWarning];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    22
	
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    23
	// Release any cached data, images, etc that aren't in use.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    24
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    25
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    26
-(void) viewDidLoad {
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    27
    self.view.alpha = 0;
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    28
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    29
    dimTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:6]
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    30
                                        interval:1000
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    31
                                          target:self
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    32
                                        selector:@selector(dimOverlay)
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    33
                                        userInfo:nil
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    34
                                         repeats:YES];
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    35
    
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    36
    [[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode];
3029
67483e87590c a couple of smaller cleanups that didn't get in previous commit
koda
parents: 3027
diff changeset
    37
    
67483e87590c a couple of smaller cleanups that didn't get in previous commit
koda
parents: 3027
diff changeset
    38
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(showMenuAfterwards) userInfo:nil repeats:NO];
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    39
}
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    40
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    41
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    42
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    43
}
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    44
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    45
-(void) viewDidUnload {
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    46
	[dimTimer invalidate];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    47
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    48
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    49
-(void) dealloc {
3029
67483e87590c a couple of smaller cleanups that didn't get in previous commit
koda
parents: 3027
diff changeset
    50
    // dimTimer is autoreleased
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    51
    [super dealloc];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    52
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    53
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    54
// draws the controller overlay after the sdl window has taken control
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    55
-(void) showMenuAfterwards {
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    56
    [[SDLUIKitDelegate sharedAppDelegate].uiwindow bringSubviewToFront:self.view];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    57
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    58
	[UIView beginAnimations:@"showing overlay" context:NULL];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    59
	[UIView setAnimationDuration:1];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    60
	self.view.alpha = 1;
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    61
	[UIView commitAnimations];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    62
}
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    63
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    64
// dim the overlay when there's no more input for a certain amount of time
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    65
-(IBAction) buttonReleased:(id) sender {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    66
	HW_allKeysUp();
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    67
    [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:2.7]];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    68
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    69
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    70
// nice transition for dimming
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    71
-(void) dimOverlay {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    72
    [UIView beginAnimations:@"overlay dim" context:NULL];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    73
   	[UIView setAnimationDuration:0.6];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    74
    self.view.alpha = 0.2;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    75
	[UIView commitAnimations];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    76
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    77
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    78
// set the overlay visible and put off the timer for enough time
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    79
-(void) activateOverlay {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    80
    self.view.alpha = 1;
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    81
    [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:1000]];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    82
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    83
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    84
// issue certain action based on the tag of the button 
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    85
-(IBAction) buttonPressed:(id) sender {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    86
    [self activateOverlay];
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    87
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    88
    UIButton *theButton = (UIButton*)sender;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    89
    switch (theButton.tag) {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    90
        case 0:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    91
           	HW_walkLeft();
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    92
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    93
        case 1:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    94
            HW_walkRight();
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    95
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    96
        case 2:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    97
            HW_aimUp();
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    98
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    99
        case 3:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   100
            HW_aimDown();
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   101
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   102
        case 4:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   103
            HW_shoot();
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   104
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   105
        case 5:
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
   106
            HW_jump();
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   107
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   108
        case 6:
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
   109
            HW_backjump();
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   110
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   111
        default:
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
   112
            // HW_chat() HW_tab() HW_pause()
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   113
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   114
    }
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   115
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   116
3025
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   117
#pragma mark -
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   118
#pragma mark Custom SDL_UIView input handling
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   119
#define kMinimumPinchDelta      50
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   120
#define kMinimumGestureLength	10
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   121
#define kMaximumVariance        3
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   122
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   123
// we override default touch input to implement our own gestures
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   124
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   125
	NSArray *twoTouches;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   126
	UITouch *touch = [touches anyObject];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   127
	
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   128
	switch ([touches count]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   129
		case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   130
			gestureStartPoint = [touch locationInView:self.view];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   131
			initialDistanceForPinching = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   132
			switch ([touch tapCount]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   133
				case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   134
					NSLog(@"X:%d Y:%d", (int)gestureStartPoint.x, (int)gestureStartPoint.y );
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   135
					SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window, 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   136
							      (int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   137
					HW_click();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   138
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   139
				case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   140
					HW_ammoMenu();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   141
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   142
				default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   143
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   144
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   145
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   146
		case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   147
			if (2 == [touch tapCount]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   148
				HW_zoomReset();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   149
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   150
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   151
			// pinching
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   152
			twoTouches = [touches allObjects];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   153
			UITouch *first = [twoTouches objectAtIndex:0];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   154
			UITouch *second = [twoTouches objectAtIndex:1];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   155
			initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   156
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   157
		default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   158
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   159
	}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   160
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   161
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   162
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   163
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   164
	initialDistanceForPinching = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   165
	gestureStartPoint.x = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   166
	gestureStartPoint.y = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   167
	HW_allKeysUp();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   168
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   169
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   170
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   171
	// this can happen if the user puts more than 5 touches on the screen at once, or perhaps in other circumstances.
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   172
	[self touchesEnded:touches withEvent:event];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   173
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   174
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   175
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   176
	NSArray *twoTouches;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   177
	CGPoint currentPosition;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   178
	UITouch *touch = [touches anyObject];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   179
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   180
	switch ([touches count]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   181
		case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   182
			currentPosition = [touch locationInView:self.view];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   183
			// panning
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   184
			SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window, 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   185
							(int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   186
			// remember that we have x and y inverted
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   187
			/* temporarily disabling hog movements for camera panning testing
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   188
			CGFloat vertDiff = gestureStartPoint.x - currentPosition.x;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   189
			CGFloat horizDiff = gestureStartPoint.y - currentPosition.y;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   190
			CGFloat deltaX = fabsf(vertDiff);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   191
			CGFloat deltaY = fabsf(horizDiff);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   192
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   193
			if (deltaY >= kMinimumGestureLength && deltaX <= kMaximumVariance) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   194
				NSLog(@"Horizontal swipe detected, begX:%f curX:%f", gestureStartPoint.x, currentPosition.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   195
				if (horizDiff > 0) HW_walkLeft();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   196
				else HW_walkRight();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   197
			} else if (deltaX >= kMinimumGestureLength && deltaY <= kMaximumVariance){
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   198
				NSLog(@"Vertical swipe detected, begY:%f curY:%f", gestureStartPoint.y, currentPosition.y);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   199
				if (vertDiff < 0) HW_aimUp();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   200
				else HW_aimDown();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   201
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   202
			*/
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   203
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   204
		case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   205
			twoTouches = [touches allObjects];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   206
			UITouch *first = [twoTouches objectAtIndex:0];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   207
			UITouch *second = [twoTouches objectAtIndex:1];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   208
			CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   209
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   210
			if (0 == initialDistanceForPinching) 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   211
				initialDistanceForPinching = currentDistanceOfPinching;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   212
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   213
			if (currentDistanceOfPinching < initialDistanceForPinching + kMinimumPinchDelta)
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   214
				HW_zoomOut();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   215
			else if (currentDistanceOfPinching > initialDistanceForPinching + kMinimumPinchDelta)
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   216
				HW_zoomIn();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   217
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   218
			currentDistanceOfPinching = initialDistanceForPinching;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   219
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   220
		default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   221
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   222
	}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   223
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   224
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   225
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   226
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   227
@end