cocoaTouch/SDLOverrides/SDL_uikitappdelegate.m
author koda
Fri, 15 Jan 2010 10:03:31 +0000
changeset 2696 41aa7b56c17b
parent 2693 3207e0eacd43
child 2697 75880595a9f1
permissions -rw-r--r--
settings are applied to game launch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     1
/*
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     2
 SDL - Simple DirectMedia Layer
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     3
 Copyright (C) 1997-2009 Sam Lantinga
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     4
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     5
 This library is free software; you can redistribute it and/or
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     6
 modify it under the terms of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     7
 License as published by the Free Software Foundation; either
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     8
 version 2.1 of the License, or (at your option) any later version.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     9
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    10
 This library is distributed in the hope that it will be useful,
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    13
 Lesser General Public License for more details.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    14
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    15
 You should have received a copy of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    16
 License along with this library; if not, write to the Free Software
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    17
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    18
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    19
 Sam Lantinga, mods for Hedgewars by Vittorio Giovara
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    20
 slouken@libsdl.org, vittorio.giovara@gmail.com
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    21
*/
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    22
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2689
diff changeset
    23
#import <pthread.h>
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    24
#import "SDL_uikitappdelegate.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    25
#import "SDL_uikitopenglview.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    26
#import "SDL_events_c.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    27
#import "jumphack.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    28
#import "SDL_video.h"
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    29
#import "GameSetup.h"
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    30
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    31
//#import "SoundEffect.h"	
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    32
//	SoundEffect *erasingSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Erase" ofType:@"caf"]];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    33
//	SoundEffect *selectSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Select" ofType:@"caf"]];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    34
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    35
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    36
#ifdef main
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    37
#undef main
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    38
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    39
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    40
extern int SDL_main(int argc, char *argv[]);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    41
int main (int argc, char **argv) {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    42
	int i;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    43
	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    44
	
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    45
	/* store arguments */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    46
	forward_argc = argc;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    47
	forward_argv = (char **)malloc(argc * sizeof(char *));
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    48
	for (i = 0; i < argc; i++) {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    49
		forward_argv[i] = malloc( (strlen(argv[i])+1) * sizeof(char));
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    50
		strcpy(forward_argv[i], argv[i]);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    51
	}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    52
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    53
	/* Give over control to run loop, SDLUIKitDelegate will handle most things from here */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    54
	UIApplicationMain(argc, argv, NULL, @"SDLUIKitDelegate");
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    55
	
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    56
	[pool release];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    57
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    58
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    59
@implementation SDLUIKitDelegate
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    60
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    61
@synthesize window, windowID, controller, setup;
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    62
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    63
/* convenience method */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    64
+(SDLUIKitDelegate *)sharedAppDelegate {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    65
	/* the delegate is set in UIApplicationMain(), which is garaunteed to be called before this method */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    66
	return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    67
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    68
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    69
-(void) dealloc {
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    70
	[setup release];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    71
	[controller release];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    72
	[window release];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    73
	[super dealloc];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    74
}
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    75
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    76
-(void) launchSDL_main{
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    77
	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    78
	
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    79
	// must setup arguments in the same thread
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    80
	[setup setArgsForLocalPlay];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    81
	
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    82
	// run the user's application, passing argc and argv
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    83
	SDL_main(forward_argc, forward_argv);
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    84
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    85
	[pool release];
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    86
}
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2689
diff changeset
    87
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    88
-(IBAction) startSDLgame {
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    89
	
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
    90
	[setup startThread:@"engineProtocol"];
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    91
	[setup loadSettingsFromFile:@"settings.plist" forKey:@"systemSettings"];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    92
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    93
	// remove the current view to free resources
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    94
	[UIView beginAnimations:nil context:NULL];
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    95
	[UIView setAnimationDuration:1.5];
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    96
	controller.view.alpha = 0;
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    97
	[UIView commitAnimations];
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
    98
	[controller.view performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1.5];
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
    99
2691
c0da3a98c01c initial support for engine protocol
koda
parents: 2689
diff changeset
   100
	NSLog(@"Game is launching...");
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   101
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   102
	[NSThread detachNewThreadSelector:@selector(launchSDL_main) toTarget:self withObject:nil];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   103
	
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   104
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   105
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   106
// override the direct execution of SDL_main to allow us to implement the frontend (even using a nib)
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   107
-(void) applicationDidFinishLaunching:(UIApplication *)application {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   108
	[application setStatusBarHidden:YES animated:NO];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   109
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   110
	setup = [[GameSetup alloc] init];
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   111
	/* Set working directory to resource path */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   112
	[[NSFileManager defaultManager] changeCurrentDirectoryPath: [[NSBundle mainBundle] resourcePath]];
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   113
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   114
	[window addSubview:controller.view];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   115
	[window makeKeyAndVisible];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   116
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   117
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   118
-(void) applicationWillTerminate:(UIApplication *)application {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   119
	/* free the memory we used to hold copies of argc and argv */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   120
	int i;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   121
	for (i=0; i < forward_argc; i++) {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   122
		free(forward_argv[i]);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   123
	}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   124
	free(forward_argv);	
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   125
	SDL_SendQuit();
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   126
	/* hack to prevent automatic termination.  See SDL_uikitevents.m for details */
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   127
	// have to remove this otherwise game goes on when pushing the home button
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   128
	//longjmp(*(jump_env()), 1);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   129
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   130
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   131
-(void) applicationWillResignActive:(UIApplication*)application
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   132
{
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   133
//	NSLog(@"%@", NSStringFromSelector(_cmd));
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   134
	SDL_SendWindowEvent(self.windowID, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   135
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   136
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   137
-(void) applicationDidBecomeActive:(UIApplication*)application
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   138
{
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   139
//	NSLog(@"%@", NSStringFromSelector(_cmd));
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   140
	SDL_SendWindowEvent(self.windowID, SDL_WINDOWEVENT_RESTORED, 0, 0);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   141
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   142
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   143
/*
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   144
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   145
	NSLog(@"Rotating...");
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   146
	return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   147
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   148
*/
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   149
+(void) resetFrontend {
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   150
	[[[SDLUIKitDelegate sharedAppDelegate].window viewWithTag:54867] removeFromSuperview];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   151
	[[SDLUIKitDelegate sharedAppDelegate].window addSubview:[SDLUIKitDelegate sharedAppDelegate].controller.view];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   152
	
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   153
	[UIView beginAnimations:nil context:NULL];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   154
	[UIView setAnimationDuration:1];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   155
	[SDLUIKitDelegate sharedAppDelegate].controller.view.alpha = 1;
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   156
	[UIView commitAnimations];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   157
	
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   158
	[[SDLUIKitDelegate sharedAppDelegate].setup unloadSettings];
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   159
	[[SDLUIKitDelegate sharedAppDelegate].window makeKeyAndVisible];
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   160
}
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   161
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   162
#pragma mark -
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   163
#pragma mark Convenience methods
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   164
void IPH_returnFrontend (void) {
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   165
	NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   166
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   167
	[SDLUIKitDelegate resetFrontend];
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   168
	NSLog(@"Game exited...");
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   169
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   170
	[pool release];
2693
3207e0eacd43 GameSetup is now a class, use of NSThread instead of pthreads, game doesn't quit after first execution (but crashes aftewards - the irony)
koda
parents: 2692
diff changeset
   171
	[NSThread exit];
2692
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   172
}
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   173
ce9992075118 better network support + initial work for returning to frontend
koda
parents: 2691
diff changeset
   174
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   175
+(NSString *)dataFilePath: (NSString *)fileName {
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   176
	NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   177
	NSString *documentsDirectory = [paths objectAtIndex:0];
41aa7b56c17b settings are applied to game launch
koda
parents: 2693
diff changeset
   178
	return [documentsDirectory stringByAppendingPathComponent:fileName];
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   179
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   180
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
   181
@end