author | koda |
Sun, 13 Mar 2011 03:43:18 +0100 | |
changeset 5002 | a9c44a8ffec8 |
parent 4976 | project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.m@088d40d8aba2 |
child 5017 | d29cf06d7d11 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
2 |
SDL - Simple DirectMedia Layer |
|
4976 | 3 |
Copyright (C) 1997-2011 Sam Lantinga |
3697 | 4 |
|
3547 | 5 |
This library is free software; you can redistribute it and/or |
6 |
modify it under the terms of the GNU Lesser General Public |
|
7 |
License as published by the Free Software Foundation; either |
|
8 |
version 2.1 of the License, or (at your option) any later version. |
|
3697 | 9 |
|
3547 | 10 |
This library is distributed in the hope that it will be useful, |
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 |
Lesser General Public License for more details. |
|
3697 | 14 |
|
3547 | 15 |
You should have received a copy of the GNU Lesser General Public |
16 |
License along with this library; if not, write to the Free Software |
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
3697 | 18 |
|
3547 | 19 |
Sam Lantinga, mods for Hedgewars by Vittorio Giovara |
20 |
slouken@libsdl.org, vittorio.giovara@gmail.com |
|
21 |
*/ |
|
22 |
||
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
23 |
#import "HedgewarsAppDelegate.h" |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
24 |
#import "PascalImports.h" |
4454 | 25 |
#import "ObjcExports.h" |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
26 |
#import "CommodityFunctions.h" |
3547 | 27 |
#import "GameSetup.h" |
28 |
#import "MainMenuViewController.h" |
|
29 |
#import "OverlayViewController.h" |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
30 |
#import "Appirater.h" |
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
31 |
#include <unistd.h> |
3547 | 32 |
|
33 |
#ifdef main |
|
34 |
#undef main |
|
35 |
#endif |
|
36 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
37 |
#define BLACKVIEW_TAG 17935 |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
38 |
#define SECONDBLACKVIEW_TAG 48620 |
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
39 |
#define VALGRIND "/opt/fink/bin/valgrind" |
3547 | 40 |
|
41 |
int main (int argc, char *argv[]) { |
|
42 |
#ifdef VALGRIND_REXEC |
|
43 |
// Using the valgrind build config, rexec ourself in valgrind |
|
44 |
// from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html |
|
45 |
if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0)) |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
46 |
execl(VALGRIND, VALGRIND, "--leak-check=full", "--dsymutil=yes", argv[0], "-valgrind", NULL); |
3547 | 47 |
#endif |
48 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
49 |
int retVal = UIApplicationMain(argc, argv, nil, @"HedgewarsAppDelegate"); |
3547 | 50 |
[pool release]; |
51 |
return retVal; |
|
52 |
} |
|
53 |
||
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
54 |
int SDL_main(int argc, char **argv) { |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
55 |
// dummy function to prevent linkage fail |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
56 |
return 0; |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
57 |
} |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
58 |
|
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
59 |
@implementation HedgewarsAppDelegate |
4354 | 60 |
@synthesize mainViewController, overlayController, uiwindow, secondWindow, isInGame; |
3547 | 61 |
|
62 |
// convenience method |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
63 |
+(HedgewarsAppDelegate *)sharedAppDelegate { |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
64 |
return (HedgewarsAppDelegate *)[[UIApplication sharedApplication] delegate]; |
3547 | 65 |
} |
66 |
||
67 |
-(id) init { |
|
68 |
if (self = [super init]){ |
|
69 |
mainViewController = nil; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
70 |
uiwindow = nil; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
71 |
secondWindow = nil; |
3547 | 72 |
isInGame = NO; |
73 |
} |
|
74 |
return self; |
|
75 |
} |
|
76 |
||
77 |
-(void) dealloc { |
|
78 |
[mainViewController release]; |
|
4354 | 79 |
[overlayController release]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
80 |
[uiwindow release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
81 |
[secondWindow release]; |
3547 | 82 |
[super dealloc]; |
83 |
} |
|
84 |
||
85 |
// main routine for calling the actual game engine |
|
4760 | 86 |
-(NSArray *)startSDLgame:(NSDictionary *)gameDictionary { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
87 |
UIWindow *gameWindow; |
3941 | 88 |
if (IS_DUALHEAD()) |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
89 |
gameWindow = self.secondWindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
90 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
91 |
gameWindow = self.uiwindow; |
3941 | 92 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
93 |
UIView *blackView = [[UIView alloc] initWithFrame:gameWindow.frame]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
94 |
blackView.backgroundColor = [UIColor blackColor]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
95 |
blackView.opaque = YES; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
96 |
blackView.tag = BLACKVIEW_TAG; |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
97 |
[gameWindow addSubview:blackView]; |
3941 | 98 |
if (IS_DUALHEAD()) { |
99 |
blackView.alpha = 0; |
|
100 |
[UIView beginAnimations:@"fading to game first" context:NULL]; |
|
101 |
[UIView setAnimationDuration:1]; |
|
102 |
blackView.alpha = 1; |
|
103 |
[UIView commitAnimations]; |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
104 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
105 |
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
|
106 |
secondBlackView.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
107 |
secondBlackView.opaque = YES; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
108 |
secondBlackView.tag = SECONDBLACKVIEW_TAG; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
109 |
secondBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
110 |
[self.uiwindow addSubview:secondBlackView]; |
3941 | 111 |
[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
|
112 |
[UIView setAnimationDuration:1]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
113 |
secondBlackView.alpha = 1; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
114 |
[UIView commitAnimations]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
115 |
[secondBlackView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
116 |
} |
3941 | 117 |
[blackView release]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
118 |
|
4754 | 119 |
|
3547 | 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"]; |
4547 | 123 |
|
124 |
[NSThread detachNewThreadSelector:@selector(engineProtocol) |
|
125 |
toTarget:setup |
|
126 |
withObject:nil]; |
|
4510 | 127 |
|
3935 | 128 |
NSNumber *menuStyle = [NSNumber numberWithBool:setup.menuStyle]; |
4754 | 129 |
NSNumber *orientation = [[gameDictionary objectForKey:@"game_dictionary"] objectForKey:@"orientation"]; |
4356 | 130 |
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys: |
131 |
isNetGameNum,@"net", |
|
132 |
menuStyle,@"menu", |
|
4754 | 133 |
orientation,@"orientation", |
4356 | 134 |
nil]; |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3941
diff
changeset
|
135 |
[self performSelector:@selector(displayOverlayLater:) withObject:dict afterDelay:1]; |
3697 | 136 |
|
4754 | 137 |
// need to set again [gameDictionary objectForKey:@"savefile"] because if it's empty it means it's a normal game |
138 |
const char **gameArgs = [setup getGameSettings:[gameDictionary objectForKey:@"savefile"]]; |
|
3971 | 139 |
self.isInGame = YES; |
4754 | 140 |
// this is the pascal fuction that starts the game |
3547 | 141 |
Game(gameArgs); |
3971 | 142 |
self.isInGame = NO; |
3598 | 143 |
free(gameArgs); |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
144 |
|
4760 | 145 |
NSArray *stats = setup.statsArray; |
4754 | 146 |
[setup release]; |
147 |
||
3697 | 148 |
|
3935 | 149 |
[self.uiwindow makeKeyAndVisible]; |
150 |
[self.uiwindow bringSubviewToFront:self.mainViewController.view]; |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
151 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
152 |
UIView *refBlackView = [gameWindow viewWithTag:BLACKVIEW_TAG]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
153 |
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
|
154 |
[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
|
155 |
[UIView setAnimationDuration:1]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
156 |
refBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
157 |
refSecondBlackView.alpha = 0; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
158 |
[UIView commitAnimations]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
159 |
[refBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
4098
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4034
diff
changeset
|
160 |
[refSecondBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:2]; |
4754 | 161 |
|
4760 | 162 |
return stats; |
3547 | 163 |
} |
164 |
||
4754 | 165 |
// overlay with controls, become visible later, with a transparency effect since the sdlwindow is not yet created |
3935 | 166 |
-(void) displayOverlayLater:(id) object { |
167 |
NSDictionary *dict = (NSDictionary *)object; |
|
4354 | 168 |
self.overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil]; |
169 |
self.overlayController.isNetGame = [[dict objectForKey:@"net"] boolValue]; |
|
170 |
self.overlayController.useClassicMenu = [[dict objectForKey:@"menu"] boolValue]; |
|
4356 | 171 |
self.overlayController.initialOrientation = [[dict objectForKey:@"orientation"] intValue]; |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
172 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
173 |
UIWindow *gameWindow; |
3941 | 174 |
if (IS_DUALHEAD()) |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
175 |
gameWindow = self.uiwindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
176 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
177 |
gameWindow = [[UIApplication sharedApplication] keyWindow]; |
4354 | 178 |
[gameWindow addSubview:self.overlayController.view]; |
3547 | 179 |
} |
180 |
||
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
181 |
// override the direct execution of SDL_main to allow us to implement our own frontend |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
182 |
-(void) postFinishLaunch { |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
183 |
[[UIApplication sharedApplication] setStatusBarHidden:YES]; |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
184 |
[Appirater appLaunched]; |
3697 | 185 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
186 |
self.uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
3697 | 187 |
|
3996 | 188 |
if (IS_IPAD()) |
3659 | 189 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil]; |
3547 | 190 |
else |
3659 | 191 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil]; |
3547 | 192 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
193 |
[self.uiwindow addSubview:self.mainViewController.view]; |
3659 | 194 |
[self.mainViewController release]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
195 |
self.uiwindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
196 |
[self.uiwindow makeKeyAndVisible]; |
3547 | 197 |
|
3935 | 198 |
// check for dual monitor support |
3941 | 199 |
if (IS_DUALHEAD()) { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
200 |
DLog(@"dual head mode ftw"); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
201 |
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
|
202 |
self.secondWindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
203 |
self.secondWindow.screen = [[UIScreen screens] objectAtIndex:1]; |
3935 | 204 |
UIImage *titleImage = [UIImage imageWithContentsOfFile:@"title.png"]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
205 |
UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
206 |
titleView.center = self.secondWindow.center; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
207 |
[self.secondWindow addSubview:titleView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
208 |
[titleView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
209 |
[self.secondWindow makeKeyAndVisible]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
210 |
} |
3547 | 211 |
} |
212 |
||
213 |
-(void) applicationWillTerminate:(UIApplication *)application { |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
214 |
if (self.isInGame) |
3547 | 215 |
HW_terminate(YES); |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
216 |
|
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
217 |
[super applicationWillTerminate:application]; |
3547 | 218 |
} |
219 |
||
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
220 |
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application { |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3662
diff
changeset
|
221 |
// 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
|
222 |
MSG_MEMCLEAN(); |
3661 | 223 |
print_free_memory(); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
224 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
225 |
|
3547 | 226 |
-(void) applicationWillResignActive:(UIApplication *)application { |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
227 |
[super applicationWillResignActive: application]; |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
228 |
|
4454 | 229 |
UIDevice* device = [UIDevice currentDevice]; |
230 |
if ([device respondsToSelector:@selector(isMultitaskingSupported)] && |
|
231 |
device.multitaskingSupported && |
|
232 |
self.isInGame) { |
|
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
233 |
// let's try to be permissive with multitasking here... |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
234 |
NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:SETTINGS_FILE()]; |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
235 |
if ([[settings objectForKey:@"multitasking"] boolValue]) |
4454 | 236 |
HW_suspend(); |
237 |
else { |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
238 |
// so the game returns to the configuration view |
4454 | 239 |
if (isGameRunning()) |
240 |
HW_terminate(NO); |
|
241 |
else { |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
242 |
// while screen is loading you can't call HW_terminate() so we close the app |
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
243 |
[self applicationWillTerminate:application]; |
4454 | 244 |
} |
3547 | 245 |
} |
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
246 |
[settings release]; |
3547 | 247 |
} |
248 |
} |
|
249 |
||
250 |
-(void) applicationDidBecomeActive:(UIApplication *)application { |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
251 |
[super applicationDidBecomeActive:application]; |
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
252 |
|
4454 | 253 |
UIDevice* device = [UIDevice currentDevice]; |
254 |
if ([device respondsToSelector:@selector(isMultitaskingSupported)] && |
|
255 |
device.multitaskingSupported && |
|
256 |
self.isInGame) { |
|
257 |
HW_resume(); |
|
3547 | 258 |
} |
259 |
} |
|
260 |
||
261 |
@end |