cocoaTouch/overlayViewController.m
author nemo
Fri, 26 Mar 2010 15:52:47 +0000
changeset 3077 8bf3b6d9839c
parent 3073 c22b395b6a2e
child 3090 51629e69da51
permissions -rw-r--r--
Uppercase all theme and map names
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"
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
    14
#import "SettingsViewController.h"
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
    15
#import "popupMenuViewController.h"
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    16
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    17
@implementation overlayViewController
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    18
@synthesize dimTimer;
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    19
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    20
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    21
-(void) didReceiveMemoryWarning {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    22
	// Releases the view if it doesn't have a superview.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    23
    [super didReceiveMemoryWarning];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    24
	
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    25
	// Release any cached data, images, etc that aren't in use.
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    26
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    27
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    28
-(void) viewDidLoad {
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    29
    self.view.alpha = 0;
3034
b576460ba8ad fix a rotation glitch
koda
parents: 3029
diff changeset
    30
    
b576460ba8ad fix a rotation glitch
koda
parents: 3029
diff changeset
    31
    // needed for rotation to work on os < 3.2
b576460ba8ad fix a rotation glitch
koda
parents: 3029
diff changeset
    32
    self.view.center = CGPointMake(self.view.frame.size.height/2.0, self.view.frame.size.width/2.0);
b576460ba8ad fix a rotation glitch
koda
parents: 3029
diff changeset
    33
    self.view.transform = CGAffineTransformRotate(self.view.transform, (M_PI/2.0));
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    34
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    35
    dimTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:6]
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    36
                                        interval:1000
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    37
                                          target:self
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    38
                                        selector:@selector(dimOverlay)
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    39
                                        userInfo:nil
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    40
                                         repeats:YES];
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    41
    
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    42
    [[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
    43
    
67483e87590c a couple of smaller cleanups that didn't get in previous commit
koda
parents: 3027
diff changeset
    44
    [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(showMenuAfterwards) userInfo:nil repeats:NO];
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    45
}
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    46
3034
b576460ba8ad fix a rotation glitch
koda
parents: 3029
diff changeset
    47
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    48
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    49
}
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    50
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    51
-(void) viewDidUnload {
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    52
	[dimTimer invalidate];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    53
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    54
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    55
-(void) dealloc {
3029
67483e87590c a couple of smaller cleanups that didn't get in previous commit
koda
parents: 3027
diff changeset
    56
    // dimTimer is autoreleased
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    57
    [super dealloc];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    58
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    59
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    60
// draws the controller overlay after the sdl window has taken control
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    61
-(void) showMenuAfterwards {
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    62
    [[SDLUIKitDelegate sharedAppDelegate].uiwindow bringSubviewToFront:self.view];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    63
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    64
	[UIView beginAnimations:@"showing overlay" context:NULL];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    65
	[UIView setAnimationDuration:1];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    66
	self.view.alpha = 1;
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    67
	[UIView commitAnimations];
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 3026
diff changeset
    68
}
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    69
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    70
// 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
    71
-(IBAction) buttonReleased:(id) sender {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    72
	HW_allKeysUp();
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    73
    [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:2.7]];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    74
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    75
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    76
// nice transition for dimming
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    77
-(void) dimOverlay {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    78
    [UIView beginAnimations:@"overlay dim" context:NULL];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    79
   	[UIView setAnimationDuration:0.6];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    80
    self.view.alpha = 0.2;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    81
	[UIView commitAnimations];
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    82
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    83
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    84
// set the overlay visible and put off the timer for enough time
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    85
-(void) activateOverlay {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    86
    self.view.alpha = 1;
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    87
    [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:1000]];
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    88
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    89
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    90
// issue certain action based on the tag of the button 
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    91
-(IBAction) buttonPressed:(id) sender {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    92
    [self activateOverlay];
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
    93
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
    94
    UIButton *theButton = (UIButton *)sender;
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    95
    switch (theButton.tag) {
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
    96
        case 0:
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
    97
            HW_walkLeft();
3006
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 1:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   100
            HW_walkRight();
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 2:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   103
            HW_aimUp();
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 3:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   106
            HW_aimDown();
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 4:
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   109
            HW_shoot();
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
        case 5:
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
   112
            HW_jump();
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
        case 6:
3015
20a9c8160e82 add jump and backjump controls
koda
parents: 3006
diff changeset
   115
            HW_backjump();
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   116
            break;
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   117
        case 7:
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   118
            HW_pause();
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   119
            break;
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   120
        case 8:
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   121
            HW_chat();
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   122
            break;
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   123
	case 9:
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   124
	    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   125
								 delegate:self
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   126
							cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   127
						   destructiveButtonTitle:NSLocalizedString(@"As sure as I can be!", @"")
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   128
							otherButtonTitles:nil];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   129
	    [actionSheet showInView:self.view];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   130
	    [actionSheet release];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   131
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   132
            HW_pause();
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   133
	    break;
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   134
	case 10:
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   135
	    HW_tab();
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   136
	    break;
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   137
        default:
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   138
            NSLog(@"Nope");
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   139
            break;
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   140
    }
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   141
}
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   142
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   143
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   144
	if ([actionSheet cancelButtonIndex] != buttonIndex)
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   145
	    HW_terminate(NO);
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   146
	else
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   147
            HW_pause();		
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   148
}
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   149
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   150
-(IBAction) showPopover{
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   151
    //UIViewController *content = [[UIViewController alloc]  initWithNibName: nil bundle:nil];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   152
    //CGRect rectArea = CGRectMake(0, 0, 320, 480);
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   153
    //content.view.frame = rectArea;
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   154
    //settings.view.frame = rectArea;
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   155
    //popupMenuViewController *popupMenu = [[UIViewController alloc] initWithNibName:@"popupMenuViewController" bundle:nil];
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   156
    
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   157
    UIViewController *popupMenu = [[UIViewController alloc] init];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   158
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   159
    UIButton *buttonPause = [UIButton buttonWithType:UIButtonTypeRoundedRect];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   160
    buttonPause.tag = 7;
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   161
    buttonPause.frame = CGRectMake(100, 170, 170, 30);
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   162
    [buttonPause setTitle:@"Pause Game" forState:UIControlStateNormal];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   163
    [buttonPause addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   164
    [popupMenu.view addSubview:buttonPause];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   165
    
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   166
    UIButton *buttonChat = [UIButton buttonWithType:UIButtonTypeRoundedRect];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   167
    buttonChat.tag = 8;
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   168
    buttonChat.frame = CGRectMake(100, 220, 170, 30);
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   169
    [buttonChat setTitle:@"Chat" forState:UIControlStateNormal];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   170
    [buttonChat addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   171
    [popupMenu.view addSubview:buttonChat];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   172
    
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   173
    UIButton *buttonEnd = [UIButton buttonWithType:UIButtonTypeRoundedRect];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   174
    buttonEnd.tag = 9;
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   175
    buttonEnd.frame = CGRectMake(100, 270, 170, 30);
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   176
    [buttonEnd setTitle:@"End Game" forState:UIControlStateNormal];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   177
    [buttonEnd addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   178
    [popupMenu.view addSubview:buttonEnd];
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   179
    
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   180
    UIPopoverController* aPopover = [[UIPopoverController alloc] initWithContentViewController:popupMenu];
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   181
    [aPopover setPopoverContentSize:CGSizeMake(220, 480) animated:YES];
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   182
3073
c22b395b6a2e add another button to close the game and return to the iFrontend (untested)
koda
parents: 3063
diff changeset
   183
    [aPopover presentPopoverFromRect:CGRectMake(1024, 0, 320, 480) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];
3063
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   184
    //UIBarButtonItem *sender = [[useless items] objectAtIndex:1];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   185
    //[self.popoverController presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   186
}
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   187
0092dc37fbd6 reworked interaction of engine/frontend when closing
koda
parents: 3034
diff changeset
   188
3025
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   189
#pragma mark -
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   190
#pragma mark Custom SDL_UIView input handling
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   191
#define kMinimumPinchDelta      50
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   192
#define kMinimumGestureLength	10
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   193
#define kMaximumVariance        3
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   194
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   195
// we override default touch input to implement our own gestures
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   196
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   197
	NSArray *twoTouches;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   198
	UITouch *touch = [touches anyObject];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   199
	
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   200
	switch ([touches count]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   201
		case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   202
			gestureStartPoint = [touch locationInView:self.view];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   203
			initialDistanceForPinching = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   204
			switch ([touch tapCount]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   205
				case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   206
					NSLog(@"X:%d Y:%d", (int)gestureStartPoint.x, (int)gestureStartPoint.y );
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   207
					SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window, 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   208
							      (int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   209
					HW_click();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   210
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   211
				case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   212
					HW_ammoMenu();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   213
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   214
				default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   215
					break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   216
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   217
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   218
		case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   219
			if (2 == [touch tapCount]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   220
				HW_zoomReset();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   221
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   222
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   223
			// pinching
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   224
			twoTouches = [touches allObjects];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   225
			UITouch *first = [twoTouches objectAtIndex:0];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   226
			UITouch *second = [twoTouches objectAtIndex:1];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   227
			initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   228
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   229
		default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   230
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   231
	}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   232
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   233
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   234
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   235
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   236
	initialDistanceForPinching = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   237
	gestureStartPoint.x = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   238
	gestureStartPoint.y = 0;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   239
	HW_allKeysUp();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   240
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   241
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   242
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   243
	// 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
   244
	[self touchesEnded:touches withEvent:event];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   245
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   246
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   247
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   248
	NSArray *twoTouches;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   249
	CGPoint currentPosition;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   250
	UITouch *touch = [touches anyObject];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   251
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   252
	switch ([touches count]) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   253
		case 1:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   254
			currentPosition = [touch locationInView:self.view];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   255
			// panning
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   256
			SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window, 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   257
							(int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   258
			// remember that we have x and y inverted
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   259
			/* temporarily disabling hog movements for camera panning testing
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   260
			CGFloat vertDiff = gestureStartPoint.x - currentPosition.x;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   261
			CGFloat horizDiff = gestureStartPoint.y - currentPosition.y;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   262
			CGFloat deltaX = fabsf(vertDiff);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   263
			CGFloat deltaY = fabsf(horizDiff);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   264
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   265
			if (deltaY >= kMinimumGestureLength && deltaX <= kMaximumVariance) {
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   266
				NSLog(@"Horizontal swipe detected, begX:%f curX:%f", gestureStartPoint.x, currentPosition.x);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   267
				if (horizDiff > 0) HW_walkLeft();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   268
				else HW_walkRight();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   269
			} else if (deltaX >= kMinimumGestureLength && deltaY <= kMaximumVariance){
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   270
				NSLog(@"Vertical swipe detected, begY:%f curY:%f", gestureStartPoint.y, currentPosition.y);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   271
				if (vertDiff < 0) HW_aimUp();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   272
				else HW_aimDown();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   273
			}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   274
			*/
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   275
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   276
		case 2:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   277
			twoTouches = [touches allObjects];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   278
			UITouch *first = [twoTouches objectAtIndex:0];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   279
			UITouch *second = [twoTouches objectAtIndex:1];
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   280
			CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   281
			
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   282
			if (0 == initialDistanceForPinching) 
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   283
				initialDistanceForPinching = currentDistanceOfPinching;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   284
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   285
			if (currentDistanceOfPinching < initialDistanceForPinching + kMinimumPinchDelta)
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   286
				HW_zoomOut();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   287
			else if (currentDistanceOfPinching > initialDistanceForPinching + kMinimumPinchDelta)
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   288
				HW_zoomIn();
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   289
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   290
			currentDistanceOfPinching = initialDistanceForPinching;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   291
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   292
		default:
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   293
			break;
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   294
	}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   295
}
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   296
01682ec58eb0 update project for ipad target
koda
parents: 3015
diff changeset
   297
3006
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   298
da6023c2745b restore compilation on simulator and device
koda
parents:
diff changeset
   299
@end