project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.m
author koda
Tue, 20 Jul 2010 23:30:54 +0200
changeset 3661 2378ada8a6ee
parent 3660 bc125bea5849
child 3662 a44406f4369b
permissions -rw-r--r--
i can haz panning
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
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     4
 
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.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
     9
 
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.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    14
 
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
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    18
 
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"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    30
#import "GameSetup.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    31
#import "PascalImports.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    32
#import "MainMenuViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    33
#import "OverlayViewController.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    34
#import "CommodityFunctions.h"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    35
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    36
#ifdef main
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    37
#undef main
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    38
#endif
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    39
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    40
#define VALGRIND "/opt/valgrind/bin/valgrind"
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    41
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    42
int main (int argc, char *argv[]) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    43
#ifdef VALGRIND_REXEC
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    44
    // Using the valgrind build config, rexec ourself in valgrind
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    45
    // from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    46
    if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0))
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    47
        execl(VALGRIND, VALGRIND, "--leak-check=full", argv[0], "-valgrind", NULL);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    48
#endif
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    49
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    50
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    51
    int retVal = UIApplicationMain(argc, argv, nil, @"SDLUIKitDelegate");
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    52
    [pool release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    53
    return retVal;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    54
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    55
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    56
@implementation SDLUIKitDelegate
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
    57
@synthesize mainViewController;
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    58
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    59
// convenience method
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    60
+(SDLUIKitDelegate *)sharedAppDelegate {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    61
    // the delegate is set in UIApplicationMain(), which is guaranteed to be called before this method
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    62
    return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    63
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    64
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    65
-(id) init {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    66
    if (self = [super init]){
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    67
        mainViewController = nil;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    68
        isInGame = NO;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    69
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    70
    return self;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    71
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    72
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    73
-(void) dealloc {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    74
    [mainViewController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    75
    [super dealloc];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    76
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    77
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    78
// main routine for calling the actual game engine
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
    79
-(IBAction) startSDLgame: (NSDictionary *)gameDictionary {
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    80
    // 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
    81
    GameSetup *setup = [[GameSetup alloc] initWithDictionary:gameDictionary];
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
    82
    
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    83
    [setup startThread:@"engineProtocol"];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    84
    const char **gameArgs = [setup getSettings];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    85
    [setup release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    86
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    87
    // since the sdlwindow is not yet created, we add the overlayController with a delay
3627
f1da1d8fb56c the game now respects the orientation of the frontend
koda
parents: 3626
diff changeset
    88
    [self performSelector:@selector(displayOverlayLater) withObject:nil afterDelay:0.1];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    89
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    90
    // this is the pascal fuction that starts the game (wrapped around isInGame)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    91
    isInGame = YES;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    92
    Game(gameArgs);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    93
    isInGame = NO;
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
    94
    free(gameArgs);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
    95
    
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
    96
    // bring the uiwindow below in front
3650
ec90e573f47a add a timer selection for grenades
koda
parents: 3629
diff changeset
    97
    UIWindow *aWin = [[[UIApplication sharedApplication] windows] objectAtIndex:0];
ec90e573f47a add a timer selection for grenades
koda
parents: 3629
diff changeset
    98
    [aWin makeKeyAndVisible];
3629
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
    99
    
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   100
    // notice that in the simulator this reports 2 windows
86212d2b116a redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents: 3628
diff changeset
   101
    DLog(@"%@",[[UIApplication sharedApplication] windows]);
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   102
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   103
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   104
-(void) displayOverlayLater {
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   105
    // overlay with controls, become visible later, with a transparency effect
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   106
    OverlayViewController *overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil];
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   107
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   108
    // keyWindow is the frontmost window
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   109
    [[[UIApplication sharedApplication] keyWindow] addSubview:overlayController.view];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   110
    [overlayController release];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   111
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   112
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   113
// 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
   114
-(void) applicationDidFinishLaunching:(UIApplication *)application {
3625
9f1d79e01a60 icons \o/
koda
parents: 3616
diff changeset
   115
    [application setStatusBarHidden:YES]; 
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   116
    
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   117
    UIWindow *uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   118
    
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   119
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   120
        self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   121
    else
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   122
        self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   123
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   124
    [uiwindow addSubview:self.mainViewController.view];
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   125
    [self.mainViewController release];
3660
bc125bea5849 complete settings page rework
koda
parents: 3659
diff changeset
   126
    uiwindow.backgroundColor = [UIColor blackColor];
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   127
    [uiwindow makeKeyAndVisible];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   128
3660
bc125bea5849 complete settings page rework
koda
parents: 3659
diff changeset
   129
    // set working directory to resource path
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   130
    [[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] resourcePath]];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   131
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   132
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   133
-(void) applicationWillTerminate:(UIApplication *)application {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   134
    SDL_SendQuit();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   135
    if (isInGame) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   136
        HW_terminate(YES);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   137
        // hack to prevent automatic termination. See SDL_uikitevents.m for details
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   138
        longjmp(*(jump_env()), 1);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   139
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   140
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   141
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   142
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application {
3661
2378ada8a6ee i can haz panning
koda
parents: 3660
diff changeset
   143
    print_free_memory();
3659
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   144
    if (self.mainViewController.view.superview == nil)
f8d5ac50e307 half reworking of the settings page with delegation
koda
parents: 3650
diff changeset
   145
        self.mainViewController = nil;
3598
a8aa06bae895 tiy new overlay graphics
koda
parents: 3548
diff changeset
   146
    MSG_MEMCLEAN();
3548
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   147
}
4d220ee7c75f server somewhat simplified and correct sporadic crasher
koda
parents: 3547
diff changeset
   148
3547
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   149
-(void) applicationWillResignActive:(UIApplication *)application {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   150
    if (isInGame) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   151
        HW_pause();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   152
        
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   153
        // Send every window on every screen a MINIMIZED event.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   154
        SDL_VideoDevice *_this = SDL_GetVideoDevice();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   155
        if (!_this)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   156
            return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   157
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   158
        int i;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   159
        for (i = 0; i < _this->num_displays; i++) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   160
            const SDL_VideoDisplay *display = &_this->displays[i];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   161
            SDL_Window *window;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   162
            for (window = display->windows; window != nil; window = window->next)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   163
                SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   164
        }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   165
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   166
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   167
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   168
-(void) applicationDidBecomeActive:(UIApplication *)application {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   169
    if (isInGame) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   170
        HW_pause();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   171
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   172
        // Send every window on every screen a RESTORED event.
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   173
        SDL_VideoDevice *_this = SDL_GetVideoDevice();
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   174
        if (!_this)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   175
            return;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   176
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   177
        int i;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   178
        for (i = 0; i < _this->num_displays; i++) {
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   179
            const SDL_VideoDisplay *display = &_this->displays[i];
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   180
            SDL_Window *window;
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   181
            for (window = display->windows; window != nil; window = window->next)
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   182
                SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0);
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   183
        }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   184
    }
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   185
}
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   186
02875b1145b7 i <3 mercurial
koda
parents: 3546
diff changeset
   187
@end