project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.m
author koda
Mon, 25 Oct 2010 22:19:00 +0200
changeset 3996 eb549fd864a5
parent 3971 5c82ee165ed5
child 4034 634a8c8682de
permissions -rw-r--r--
the ios port is also iphone compatible
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     1
/*
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     2
 SDL - Simple DirectMedia Layer
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     3
 Copyright (C) 1997-2009 Sam Lantinga
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
     4
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     5
 This library is free software; you can redistribute it and/or
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     6
 modify it under the terms of the GNU Lesser General Public
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     7
 License as published by the Free Software Foundation; either
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     8
 version 2.1 of the License, or (at your option) any later version.
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
     9
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    10
 This library is distributed in the hope that it will be useful,
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    13
 Lesser General Public License for more details.
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    14
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    15
 You should have received a copy of the GNU Lesser General Public
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    16
 License along with this library; if not, write to the Free Software
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    17
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
    18
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    19
 Sam Lantinga, mods for Hedgewars by Vittorio Giovara
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    20
 slouken@libsdl.org, vittorio.giovara@gmail.com
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    21
*/
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    22
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    23
#import "SDL_uikitappdelegate.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    24
#import "SDL_uikitopenglview.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    25
#import "SDL_uikitwindow.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    26
#import "SDL_events_c.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    27
#import "../SDL_sysvideo.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    28
#import "jumphack.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    29
#import "SDL_video.h"
3668
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3663
diff changeset
    30
#import "SDL_mixer.h"
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3663
diff changeset
    31
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3663
diff changeset
    32
#import "PascalImports.h"
3f7a95234d8a tap to play piano notes, fix for audio and pause glitch
koda
parents: 3663
diff changeset
    33
#import "CommodityFunctions.h"
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
#import "GameSetup.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
#import "MainMenuViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    36
#import "OverlayViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
#ifdef main
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    39
#undef main
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    40
#endif
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    41
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    42
#define BLACKVIEW_TAG 17935
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    43
#define SECONDBLACKVIEW_TAG 48620
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    44
#define VALGRIND "/opt/valgrind/bin/valgrind"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    45
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    46
int main (int argc, char *argv[]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    47
#ifdef VALGRIND_REXEC
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
    // Using the valgrind build config, rexec ourself in valgrind
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
    // from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
    if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0))
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
        execl(VALGRIND, VALGRIND, "--leak-check=full", argv[0], "-valgrind", NULL);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
#endif
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    53
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    54
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
    int retVal = UIApplicationMain(argc, argv, nil, @"SDLUIKitDelegate");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
    [pool release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    57
    return retVal;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    59
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
@implementation SDLUIKitDelegate
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
    61
@synthesize mainViewController, uiwindow, secondWindow, isInGame;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    63
// convenience method
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    64
+(SDLUIKitDelegate *)sharedAppDelegate {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
    // the delegate is set in UIApplicationMain(), which is guaranteed to be called before this method
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
    return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
-(id) init {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
    if (self = [super init]){
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    71
        mainViewController = nil;
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    72
        uiwindow = nil;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    73
        secondWindow = nil;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
        isInGame = NO;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
    return self;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    79
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
    [mainViewController release];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    81
    [uiwindow release];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    82
    [secondWindow release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    84
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
// main routine for calling the actual game engine
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
    87
-(void) startSDLgame:(NSDictionary *)gameDictionary {
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    88
    UIWindow *gameWindow;
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    89
    if (IS_DUALHEAD())
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    90
        gameWindow = self.secondWindow;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    91
    else
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    92
        gameWindow = self.uiwindow;
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    93
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    94
    UIView *blackView = [[UIView alloc] initWithFrame:gameWindow.frame];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    95
    blackView.backgroundColor = [UIColor blackColor];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
    96
    blackView.opaque = YES;
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
    97
    blackView.tag = BLACKVIEW_TAG;
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    98
    [gameWindow addSubview:blackView];    
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
    99
    if (IS_DUALHEAD()) {
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   100
        blackView.alpha = 0;
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   101
        [UIView beginAnimations:@"fading to game first" context:NULL];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   102
        [UIView setAnimationDuration:1];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   103
        blackView.alpha = 1;
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   104
        [UIView commitAnimations];
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   105
        
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   106
        UIView *secondBlackView = [[UIView alloc] initWithFrame:self.uiwindow.frame];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   107
        secondBlackView.backgroundColor = [UIColor blackColor];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   108
        secondBlackView.opaque = YES;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   109
        secondBlackView.tag = SECONDBLACKVIEW_TAG;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   110
        secondBlackView.alpha = 0;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   111
        [self.uiwindow addSubview:secondBlackView];
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   112
        [UIView beginAnimations:@"fading to game second" context:NULL];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   113
        [UIView setAnimationDuration:1];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   114
        secondBlackView.alpha = 1;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   115
        [UIView commitAnimations];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   116
        [secondBlackView release];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   117
    }
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   118
    [blackView release];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   119
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   120
    // pull out useful configuration info from various files
3616
85d69ddb41b6 tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents: 3598
diff changeset
   121
    GameSetup *setup = [[GameSetup alloc] initWithDictionary:gameDictionary];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   122
    NSNumber *isNetGameNum = [gameDictionary objectForKey:@"netgame"];
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   123
    
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   124
    if ([isNetGameNum boolValue] == NO)
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   125
        [setup startThread:@"engineProtocol"];
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   126
    const char **gameArgs = [setup getSettings:[gameDictionary objectForKey:@"savefile"]];
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   127
    NSNumber *menuStyle = [NSNumber numberWithBool:setup.menuStyle];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   128
    [setup release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   129
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   130
    // since the sdlwindow is not yet created, we add the overlayController with a delay
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   131
    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:isNetGameNum,@"net",menuStyle,@"menu",nil];
3952
d6412423da45 moved some utilities to a separate column with round buttons
koda
parents: 3941
diff changeset
   132
    [self performSelector:@selector(displayOverlayLater:) withObject:dict afterDelay:1];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   133
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   134
    // this is the pascal fuction that starts the game (wrapped around isInGame)
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   135
    self.isInGame = YES;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   136
    Game(gameArgs);
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   137
    self.isInGame = NO;
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   138
    free(gameArgs);
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   139
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   140
    [self.uiwindow makeKeyAndVisible];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   141
    [self.uiwindow bringSubviewToFront:self.mainViewController.view];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   142
    
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   143
    UIView *refBlackView = [gameWindow viewWithTag:BLACKVIEW_TAG];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   144
    UIView *refSecondBlackView = [self.uiwindow viewWithTag:SECONDBLACKVIEW_TAG];
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   145
    [UIView beginAnimations:@"fading in from ingame" context:NULL];
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   146
    [UIView setAnimationDuration:1];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   147
    refBlackView.alpha = 0;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   148
    refSecondBlackView.alpha = 0;
3893
568bfd083465 allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents: 3737
diff changeset
   149
    [UIView commitAnimations];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   150
    [refBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   151
    [refSecondBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   153
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   154
// overlay with controls, become visible later, with a transparency effect
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   155
-(void) displayOverlayLater:(id) object {
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   156
    NSDictionary *dict = (NSDictionary *)object;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   157
    OverlayViewController *overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil];
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   158
    overlayController.isNetGame = [[dict objectForKey:@"net"] boolValue];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   159
    overlayController.useClassicMenu = [[dict objectForKey:@"menu"] boolValue];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   160
    
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   161
    UIWindow *gameWindow;
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   162
    if (IS_DUALHEAD())
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   163
        gameWindow = self.uiwindow;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   164
    else
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   165
        gameWindow = [[UIApplication sharedApplication] keyWindow];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   166
    [gameWindow addSubview:overlayController.view];
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   167
    [overlayController release];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   168
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   169
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   170
// override the direct execution of SDL_main to allow us to implement the frontend (or even using a nib)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   171
-(void) applicationDidFinishLaunching:(UIApplication *)application {
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   172
    [application setStatusBarHidden:YES];
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   173
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   174
    self.uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   175
3996
eb549fd864a5 the ios port is also iphone compatible
koda
parents: 3971
diff changeset
   176
    if (IS_IPAD())
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   177
        self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   178
    else
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   179
        self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   180
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   181
    [self.uiwindow addSubview:self.mainViewController.view];
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   182
    [self.mainViewController release];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   183
    self.uiwindow.backgroundColor = [UIColor blackColor];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   184
    [self.uiwindow makeKeyAndVisible];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   185
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   186
    // set working directory to resource path
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   187
    [[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] resourcePath]];
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   188
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   189
    // check for dual monitor support
3941
017b2b31e1c6 integrate nicely with external display
koda
parents: 3940
diff changeset
   190
    if (IS_DUALHEAD()) {
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   191
        DLog(@"dual head mode ftw");
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   192
        self.secondWindow = [[UIWindow alloc] initWithFrame:[[[UIScreen screens] objectAtIndex:1] bounds]];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   193
        self.secondWindow.backgroundColor = [UIColor blackColor];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   194
        self.secondWindow.screen = [[UIScreen screens] objectAtIndex:1];
3935
5ca27a0e9a63 made the new menu toggable
koda
parents: 3922
diff changeset
   195
        UIImage *titleImage = [UIImage imageWithContentsOfFile:@"title.png"];
3922
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   196
        UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   197
        titleView.center = self.secondWindow.center;
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   198
        [self.secondWindow addSubview:titleView];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   199
        [titleView release];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   200
        [self.secondWindow makeKeyAndVisible];
44804043b691 iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents: 3898
diff changeset
   201
    }
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   202
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   203
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   204
-(void) applicationWillTerminate:(UIApplication *)application {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   205
    SDL_SendQuit();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   206
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   207
    if (self.isInGame) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   208
        HW_terminate(YES);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   209
        // hack to prevent automatic termination. See SDL_uikitevents.m for details
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   210
        longjmp(*(jump_env()), 1);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   211
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   212
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   213
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   214
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application {
3663
8c28abf427f5 reduce the number of keywords used and switch to BMP format for screenshots
koda
parents: 3662
diff changeset
   215
    // don't clean mainMenuViewController here!!!
3662
a44406f4369b polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents: 3661
diff changeset
   216
    MSG_MEMCLEAN();
3661
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   217
    print_free_memory();
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   218
}
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   219
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   220
-(void) applicationWillResignActive:(UIApplication *)application {
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   221
    if (self.isInGame) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   222
        HW_pause();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3668
diff changeset
   223
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   224
        // Send every window on every screen a MINIMIZED event.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   225
        SDL_VideoDevice *_this = SDL_GetVideoDevice();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   226
        if (!_this)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   227
            return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   228
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   229
        int i;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   230
        for (i = 0; i < _this->num_displays; i++) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   231
            const SDL_VideoDisplay *display = &_this->displays[i];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   232
            SDL_Window *window;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   233
            for (window = display->windows; window != nil; window = window->next)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   234
                SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   235
        }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   236
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   237
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   238
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   239
-(void) applicationDidBecomeActive:(UIApplication *)application {
3971
5c82ee165ed5 minor stuff
koda
parents: 3952
diff changeset
   240
    if (self.isInGame) {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   241
        HW_pause();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   242
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   243
        // Send every window on every screen a RESTORED event.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   244
        SDL_VideoDevice *_this = SDL_GetVideoDevice();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   245
        if (!_this)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   246
            return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   247
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   248
        int i;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   249
        for (i = 0; i < _this->num_displays; i++) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   250
            const SDL_VideoDisplay *display = &_this->displays[i];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   251
            SDL_Window *window;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   252
            for (window = display->windows; window != nil; window = window->next)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   253
                SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   254
        }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   255
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   256
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   257
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   258
@end