author | koda |
Wed, 03 Nov 2010 00:48:42 +0100 | |
changeset 4098 | 40df542b5f62 |
parent 4034 | 634a8c8682de |
child 4354 | c4e1820fa792 |
permissions | -rw-r--r-- |
3547 | 1 |
/* |
2 |
SDL - Simple DirectMedia Layer |
|
3 |
Copyright (C) 1997-2009 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 |
||
23 |
#import "SDL_uikitappdelegate.h" |
|
24 |
#import "SDL_uikitopenglview.h" |
|
25 |
#import "SDL_uikitwindow.h" |
|
26 |
#import "SDL_events_c.h" |
|
27 |
#import "../SDL_sysvideo.h" |
|
28 |
#import "jumphack.h" |
|
29 |
#import "SDL_video.h" |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
30 |
#import "SDL_mixer.h" |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
31 |
#import "PascalImports.h" |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
32 |
#import "CommodityFunctions.h" |
3547 | 33 |
#import "GameSetup.h" |
34 |
#import "MainMenuViewController.h" |
|
35 |
#import "OverlayViewController.h" |
|
36 |
||
37 |
#ifdef main |
|
38 |
#undef main |
|
39 |
#endif |
|
40 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
41 |
#define BLACKVIEW_TAG 17935 |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
42 |
#define SECONDBLACKVIEW_TAG 48620 |
3547 | 43 |
#define VALGRIND "/opt/valgrind/bin/valgrind" |
44 |
||
45 |
int main (int argc, char *argv[]) { |
|
46 |
#ifdef VALGRIND_REXEC |
|
47 |
// Using the valgrind build config, rexec ourself in valgrind |
|
48 |
// from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html |
|
49 |
if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0)) |
|
50 |
execl(VALGRIND, VALGRIND, "--leak-check=full", argv[0], "-valgrind", NULL); |
|
51 |
#endif |
|
52 |
||
53 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
54 |
int retVal = UIApplicationMain(argc, argv, nil, @"SDLUIKitDelegate"); |
|
55 |
[pool release]; |
|
56 |
return retVal; |
|
57 |
} |
|
58 |
||
59 |
@implementation SDLUIKitDelegate |
|
3971 | 60 |
@synthesize mainViewController, uiwindow, secondWindow, isInGame; |
3547 | 61 |
|
62 |
// convenience method |
|
63 |
+(SDLUIKitDelegate *)sharedAppDelegate { |
|
64 |
// the delegate is set in UIApplicationMain(), which is guaranteed to be called before this method |
|
65 |
return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate]; |
|
66 |
} |
|
67 |
||
68 |
-(id) init { |
|
69 |
if (self = [super init]){ |
|
70 |
mainViewController = nil; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
71 |
uiwindow = nil; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
72 |
secondWindow = nil; |
3547 | 73 |
isInGame = NO; |
74 |
} |
|
75 |
return self; |
|
76 |
} |
|
77 |
||
78 |
-(void) dealloc { |
|
79 |
[mainViewController 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 |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
86 |
-(void) 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; |
3941 | 97 |
[gameWindow addSubview:blackView]; |
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]; |
|
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 |
|
3547 | 119 |
// 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
|
120 |
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
|
121 |
NSNumber *isNetGameNum = [gameDictionary objectForKey:@"netgame"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
122 |
|
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
123 |
if ([isNetGameNum boolValue] == NO) |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
124 |
[setup startThread:@"engineProtocol"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
125 |
const char **gameArgs = [setup getSettings:[gameDictionary objectForKey:@"savefile"]]; |
3935 | 126 |
NSNumber *menuStyle = [NSNumber numberWithBool:setup.menuStyle]; |
3547 | 127 |
[setup release]; |
128 |
||
129 |
// since the sdlwindow is not yet created, we add the overlayController with a delay |
|
3935 | 130 |
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:isNetGameNum,@"net",menuStyle,@"menu",nil]; |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3941
diff
changeset
|
131 |
[self performSelector:@selector(displayOverlayLater:) withObject:dict afterDelay:1]; |
3697 | 132 |
|
3547 | 133 |
// this is the pascal fuction that starts the game (wrapped around isInGame) |
3971 | 134 |
self.isInGame = YES; |
3547 | 135 |
Game(gameArgs); |
3971 | 136 |
self.isInGame = NO; |
3598 | 137 |
free(gameArgs); |
3697 | 138 |
|
3935 | 139 |
[self.uiwindow makeKeyAndVisible]; |
140 |
[self.uiwindow bringSubviewToFront:self.mainViewController.view]; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
141 |
|
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
142 |
UIView *refBlackView = [gameWindow viewWithTag:BLACKVIEW_TAG]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
143 |
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
|
144 |
[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
|
145 |
[UIView setAnimationDuration:1]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
146 |
refBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
147 |
refSecondBlackView.alpha = 0; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
148 |
[UIView commitAnimations]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
149 |
[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
|
150 |
[refSecondBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:2]; |
3547 | 151 |
} |
152 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
153 |
// overlay with controls, become visible later, with a transparency effect |
3935 | 154 |
-(void) displayOverlayLater:(id) object { |
155 |
NSDictionary *dict = (NSDictionary *)object; |
|
3547 | 156 |
OverlayViewController *overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil]; |
3935 | 157 |
overlayController.isNetGame = [[dict objectForKey:@"net"] boolValue]; |
158 |
overlayController.useClassicMenu = [[dict objectForKey:@"menu"] boolValue]; |
|
159 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
160 |
UIWindow *gameWindow; |
3941 | 161 |
if (IS_DUALHEAD()) |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
162 |
gameWindow = self.uiwindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
163 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
164 |
gameWindow = [[UIApplication sharedApplication] keyWindow]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
165 |
[gameWindow addSubview:overlayController.view]; |
4098
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4034
diff
changeset
|
166 |
//[[[gameWindow subviews] objectAtIndex:0] addSubview:overlayController.view]; |
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4034
diff
changeset
|
167 |
// don't release a controller according to http://developer.apple.com/library/ios/#qa/qa2010/qa1688.html |
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4034
diff
changeset
|
168 |
//[overlayController release]; |
3547 | 169 |
} |
170 |
||
171 |
// override the direct execution of SDL_main to allow us to implement the frontend (or even using a nib) |
|
172 |
-(void) applicationDidFinishLaunching:(UIApplication *)application { |
|
3697 | 173 |
[application setStatusBarHidden:YES]; |
174 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
175 |
self.uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
3697 | 176 |
|
3996 | 177 |
if (IS_IPAD()) |
3659 | 178 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil]; |
3547 | 179 |
else |
3659 | 180 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil]; |
3547 | 181 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
182 |
[self.uiwindow addSubview:self.mainViewController.view]; |
3659 | 183 |
[self.mainViewController release]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
184 |
self.uiwindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
185 |
[self.uiwindow makeKeyAndVisible]; |
3547 | 186 |
|
3935 | 187 |
// set working directory to resource path |
188 |
[[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] resourcePath]]; |
|
189 |
||
190 |
// check for dual monitor support |
|
3941 | 191 |
if (IS_DUALHEAD()) { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
192 |
DLog(@"dual head mode ftw"); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
193 |
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
|
194 |
self.secondWindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
195 |
self.secondWindow.screen = [[UIScreen screens] objectAtIndex:1]; |
3935 | 196 |
UIImage *titleImage = [UIImage imageWithContentsOfFile:@"title.png"]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
197 |
UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
198 |
titleView.center = self.secondWindow.center; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
199 |
[self.secondWindow addSubview:titleView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
200 |
[titleView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
201 |
[self.secondWindow makeKeyAndVisible]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
202 |
} |
3547 | 203 |
} |
204 |
||
205 |
-(void) applicationWillTerminate:(UIApplication *)application { |
|
206 |
SDL_SendQuit(); |
|
3697 | 207 |
|
3971 | 208 |
if (self.isInGame) { |
3547 | 209 |
HW_terminate(YES); |
210 |
// hack to prevent automatic termination. See SDL_uikitevents.m for details |
|
211 |
longjmp(*(jump_env()), 1); |
|
212 |
} |
|
213 |
} |
|
214 |
||
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
215 |
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application { |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3662
diff
changeset
|
216 |
// 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
|
217 |
MSG_MEMCLEAN(); |
3661 | 218 |
print_free_memory(); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
219 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
220 |
|
3547 | 221 |
-(void) applicationWillResignActive:(UIApplication *)application { |
3971 | 222 |
if (self.isInGame) { |
3547 | 223 |
HW_pause(); |
3697 | 224 |
|
3547 | 225 |
// Send every window on every screen a MINIMIZED event. |
226 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
227 |
if (!_this) |
|
228 |
return; |
|
229 |
||
230 |
int i; |
|
231 |
for (i = 0; i < _this->num_displays; i++) { |
|
232 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
233 |
SDL_Window *window; |
|
234 |
for (window = display->windows; window != nil; window = window->next) |
|
235 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0); |
|
236 |
} |
|
237 |
} |
|
238 |
} |
|
239 |
||
240 |
-(void) applicationDidBecomeActive:(UIApplication *)application { |
|
3971 | 241 |
if (self.isInGame) { |
3547 | 242 |
HW_pause(); |
243 |
||
244 |
// Send every window on every screen a RESTORED event. |
|
245 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
246 |
if (!_this) |
|
247 |
return; |
|
248 |
||
249 |
int i; |
|
250 |
for (i = 0; i < _this->num_displays; i++) { |
|
251 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
252 |
SDL_Window *window; |
|
253 |
for (window = display->windows; window != nil; window = window->next) |
|
254 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0); |
|
255 |
} |
|
256 |
} |
|
257 |
} |
|
258 |
||
259 |
@end |