author | unc0rr |
Sun, 17 Apr 2011 22:16:36 +0400 | |
branch | cursor_issues |
changeset 5149 | 9aa840fdf922 |
parent 5109 | 6d2e8a24277e |
child 5154 | 851f36579ed4 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
5017 | 2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 13/03/2011. |
|
19 |
*/ |
|
3697 | 20 |
|
3547 | 21 |
|
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
|
22 |
#import "HedgewarsAppDelegate.h" |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
23 |
#import "PascalImports.h" |
4454 | 24 |
#import "ObjcExports.h" |
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
25 |
#import "CommodityFunctions.h" |
3547 | 26 |
#import "GameSetup.h" |
27 |
#import "MainMenuViewController.h" |
|
28 |
#import "OverlayViewController.h" |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
29 |
#import "Appirater.h" |
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
30 |
#include <unistd.h> |
3547 | 31 |
|
32 |
#ifdef main |
|
33 |
#undef main |
|
34 |
#endif |
|
35 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
36 |
#define BLACKVIEW_TAG 17935 |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
37 |
#define SECONDBLACKVIEW_TAG 48620 |
5106
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5017
diff
changeset
|
38 |
|
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5017
diff
changeset
|
39 |
@implementation SDLUIKitDelegate (customDelegate) |
3547 | 40 |
|
5106
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5017
diff
changeset
|
41 |
+(NSString *)getAppDelegateClassName { |
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5017
diff
changeset
|
42 |
return @"HedgewarsAppDelegate"; |
3547 | 43 |
} |
44 |
||
5106
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5017
diff
changeset
|
45 |
@end |
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
|
46 |
|
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
|
47 |
@implementation HedgewarsAppDelegate |
4354 | 48 |
@synthesize mainViewController, overlayController, uiwindow, secondWindow, isInGame; |
3547 | 49 |
|
50 |
// 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
|
51 |
+(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
|
52 |
return (HedgewarsAppDelegate *)[[UIApplication sharedApplication] delegate]; |
3547 | 53 |
} |
54 |
||
55 |
-(id) init { |
|
56 |
if (self = [super init]){ |
|
57 |
mainViewController = nil; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
58 |
uiwindow = nil; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
59 |
secondWindow = nil; |
3547 | 60 |
isInGame = NO; |
61 |
} |
|
62 |
return self; |
|
63 |
} |
|
64 |
||
65 |
-(void) dealloc { |
|
66 |
[mainViewController release]; |
|
4354 | 67 |
[overlayController release]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
68 |
[uiwindow release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
69 |
[secondWindow release]; |
3547 | 70 |
[super dealloc]; |
71 |
} |
|
72 |
||
73 |
// main routine for calling the actual game engine |
|
4760 | 74 |
-(NSArray *)startSDLgame:(NSDictionary *)gameDictionary { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
75 |
UIWindow *gameWindow; |
3941 | 76 |
if (IS_DUALHEAD()) |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
77 |
gameWindow = self.secondWindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
78 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
79 |
gameWindow = self.uiwindow; |
3941 | 80 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
81 |
UIView *blackView = [[UIView alloc] initWithFrame:gameWindow.frame]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
82 |
blackView.backgroundColor = [UIColor blackColor]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
83 |
blackView.opaque = YES; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
84 |
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
|
85 |
[gameWindow addSubview:blackView]; |
3941 | 86 |
if (IS_DUALHEAD()) { |
87 |
blackView.alpha = 0; |
|
88 |
[UIView beginAnimations:@"fading to game first" context:NULL]; |
|
89 |
[UIView setAnimationDuration:1]; |
|
90 |
blackView.alpha = 1; |
|
91 |
[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
|
92 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
93 |
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
|
94 |
secondBlackView.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
95 |
secondBlackView.opaque = YES; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
96 |
secondBlackView.tag = SECONDBLACKVIEW_TAG; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
97 |
secondBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
98 |
[self.uiwindow addSubview:secondBlackView]; |
3941 | 99 |
[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
|
100 |
[UIView setAnimationDuration:1]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
101 |
secondBlackView.alpha = 1; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
102 |
[UIView commitAnimations]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
103 |
[secondBlackView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
104 |
} |
3941 | 105 |
[blackView release]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
106 |
|
4754 | 107 |
|
3547 | 108 |
// 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
|
109 |
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
|
110 |
NSNumber *isNetGameNum = [gameDictionary objectForKey:@"netgame"]; |
4547 | 111 |
|
112 |
[NSThread detachNewThreadSelector:@selector(engineProtocol) |
|
113 |
toTarget:setup |
|
114 |
withObject:nil]; |
|
4510 | 115 |
|
3935 | 116 |
NSNumber *menuStyle = [NSNumber numberWithBool:setup.menuStyle]; |
4754 | 117 |
NSNumber *orientation = [[gameDictionary objectForKey:@"game_dictionary"] objectForKey:@"orientation"]; |
4356 | 118 |
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys: |
119 |
isNetGameNum,@"net", |
|
120 |
menuStyle,@"menu", |
|
4754 | 121 |
orientation,@"orientation", |
4356 | 122 |
nil]; |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3941
diff
changeset
|
123 |
[self performSelector:@selector(displayOverlayLater:) withObject:dict afterDelay:1]; |
3697 | 124 |
|
4754 | 125 |
// need to set again [gameDictionary objectForKey:@"savefile"] because if it's empty it means it's a normal game |
126 |
const char **gameArgs = [setup getGameSettings:[gameDictionary objectForKey:@"savefile"]]; |
|
3971 | 127 |
self.isInGame = YES; |
4754 | 128 |
// this is the pascal fuction that starts the game |
3547 | 129 |
Game(gameArgs); |
3971 | 130 |
self.isInGame = NO; |
3598 | 131 |
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
|
132 |
|
4760 | 133 |
NSArray *stats = setup.statsArray; |
4754 | 134 |
[setup release]; |
135 |
||
3697 | 136 |
|
3935 | 137 |
[self.uiwindow makeKeyAndVisible]; |
138 |
[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
|
139 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
140 |
UIView *refBlackView = [gameWindow viewWithTag:BLACKVIEW_TAG]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
141 |
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
|
142 |
[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
|
143 |
[UIView setAnimationDuration:1]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
144 |
refBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
145 |
refSecondBlackView.alpha = 0; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
146 |
[UIView commitAnimations]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
147 |
[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
|
148 |
[refSecondBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:2]; |
4754 | 149 |
|
4760 | 150 |
return stats; |
3547 | 151 |
} |
152 |
||
4754 | 153 |
// overlay with controls, become visible later, with a transparency effect since the sdlwindow is not yet created |
3935 | 154 |
-(void) displayOverlayLater:(id) object { |
155 |
NSDictionary *dict = (NSDictionary *)object; |
|
4354 | 156 |
self.overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil]; |
157 |
self.overlayController.isNetGame = [[dict objectForKey:@"net"] boolValue]; |
|
158 |
self.overlayController.useClassicMenu = [[dict objectForKey:@"menu"] boolValue]; |
|
4356 | 159 |
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
|
160 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
161 |
UIWindow *gameWindow; |
3941 | 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]; |
4354 | 166 |
[gameWindow addSubview:self.overlayController.view]; |
3547 | 167 |
} |
168 |
||
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
|
169 |
// 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
|
170 |
-(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
|
171 |
[[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
|
172 |
[Appirater appLaunched]; |
3697 | 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 | 175 |
|
3996 | 176 |
if (IS_IPAD()) |
3659 | 177 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil]; |
3547 | 178 |
else |
3659 | 179 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil]; |
3547 | 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 | 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 | 185 |
|
3935 | 186 |
// check for dual monitor support |
3941 | 187 |
if (IS_DUALHEAD()) { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
188 |
DLog(@"dual head mode ftw"); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
189 |
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
|
190 |
self.secondWindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
191 |
self.secondWindow.screen = [[UIScreen screens] objectAtIndex:1]; |
3935 | 192 |
UIImage *titleImage = [UIImage imageWithContentsOfFile:@"title.png"]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
193 |
UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
194 |
titleView.center = self.secondWindow.center; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
195 |
[self.secondWindow addSubview:titleView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
196 |
[titleView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
197 |
[self.secondWindow makeKeyAndVisible]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
198 |
} |
3547 | 199 |
} |
200 |
||
201 |
-(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
|
202 |
if (self.isInGame) |
3547 | 203 |
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
|
204 |
|
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
|
205 |
[super applicationWillTerminate:application]; |
3547 | 206 |
} |
207 |
||
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
208 |
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application { |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3662
diff
changeset
|
209 |
// 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
|
210 |
MSG_MEMCLEAN(); |
3661 | 211 |
print_free_memory(); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
212 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
213 |
|
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
214 |
//TODO: when the SDLUIKitDelegate methods applicationWillResignActive and applicationDidBecomeActive do work |
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
215 |
// you'll be able to remove the methods below and just handle the SDL_WINDOWEVENT_MINIMIZED/SDL_WINDOWEVENT_RESTORED |
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
216 |
// events in the MainLoop |
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
217 |
|
3547 | 218 |
-(void) applicationWillResignActive:(UIApplication *)application { |
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
219 |
//[super applicationWillResignActive: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
|
220 |
|
4454 | 221 |
UIDevice* device = [UIDevice currentDevice]; |
222 |
if ([device respondsToSelector:@selector(isMultitaskingSupported)] && |
|
223 |
device.multitaskingSupported && |
|
224 |
self.isInGame) { |
|
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
225 |
// 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
|
226 |
NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:SETTINGS_FILE()]; |
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
227 |
if ([[settings objectForKey:@"multitasking"] boolValue]) |
4454 | 228 |
HW_suspend(); |
229 |
else { |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
230 |
// so the game returns to the configuration view |
4454 | 231 |
if (isGameRunning()) |
232 |
HW_terminate(NO); |
|
233 |
else { |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
234 |
// 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
|
235 |
[self applicationWillTerminate:application]; |
4454 | 236 |
} |
3547 | 237 |
} |
4540
9b614e420de5
add two preferences for enabling/disabling blurry land and multitasking
koda
parents:
4510
diff
changeset
|
238 |
[settings release]; |
3547 | 239 |
} |
240 |
} |
|
241 |
||
242 |
-(void) applicationDidBecomeActive:(UIApplication *)application { |
|
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5106
diff
changeset
|
243 |
//[super applicationDidBecomeActive: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
|
244 |
|
4454 | 245 |
UIDevice* device = [UIDevice currentDevice]; |
246 |
if ([device respondsToSelector:@selector(isMultitaskingSupported)] && |
|
247 |
device.multitaskingSupported && |
|
248 |
self.isInGame) { |
|
249 |
HW_resume(); |
|
3547 | 250 |
} |
251 |
} |
|
252 |
||
253 |
@end |