author | koda |
Sat, 09 Oct 2010 18:00:53 +0200 | |
changeset 3935 | 5ca27a0e9a63 |
parent 3922 | 44804043b691 |
child 3940 | cc29628976cc |
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 |
|
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
32 |
#import "PascalImports.h" |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3663
diff
changeset
|
33 |
#import "CommodityFunctions.h" |
3547 | 34 |
#import "GameSetup.h" |
35 |
#import "MainMenuViewController.h" |
|
36 |
#import "OverlayViewController.h" |
|
37 |
||
38 |
#ifdef main |
|
39 |
#undef main |
|
40 |
#endif |
|
41 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
42 |
#define BLACKVIEW_TAG 17935 |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
43 |
#define SECONDBLACKVIEW_TAG 48620 |
3547 | 44 |
#define VALGRIND "/opt/valgrind/bin/valgrind" |
45 |
||
46 |
int main (int argc, char *argv[]) { |
|
47 |
#ifdef VALGRIND_REXEC |
|
48 |
// Using the valgrind build config, rexec ourself in valgrind |
|
49 |
// from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html |
|
50 |
if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0)) |
|
51 |
execl(VALGRIND, VALGRIND, "--leak-check=full", argv[0], "-valgrind", NULL); |
|
52 |
#endif |
|
53 |
||
54 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
55 |
int retVal = UIApplicationMain(argc, argv, nil, @"SDLUIKitDelegate"); |
|
56 |
[pool release]; |
|
57 |
return retVal; |
|
58 |
} |
|
59 |
||
60 |
@implementation SDLUIKitDelegate |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
61 |
@synthesize mainViewController, uiwindow, secondWindow; |
3547 | 62 |
|
63 |
// convenience method |
|
64 |
+(SDLUIKitDelegate *)sharedAppDelegate { |
|
65 |
// the delegate is set in UIApplicationMain(), which is guaranteed to be called before this method |
|
66 |
return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate]; |
|
67 |
} |
|
68 |
||
69 |
-(id) init { |
|
70 |
if (self = [super init]){ |
|
71 |
mainViewController = nil; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
72 |
uiwindow = nil; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
73 |
secondWindow = nil; |
3547 | 74 |
isInGame = NO; |
75 |
} |
|
76 |
return self; |
|
77 |
} |
|
78 |
||
79 |
-(void) dealloc { |
|
80 |
[mainViewController release]; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
81 |
[uiwindow release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
82 |
[secondWindow release]; |
3547 | 83 |
[super dealloc]; |
84 |
} |
|
85 |
||
86 |
// 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
|
87 |
-(void) startSDLgame:(NSDictionary *)gameDictionary { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
88 |
UIWindow *gameWindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
89 |
if ([[UIScreen screens] count] > 1) |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
90 |
gameWindow = self.secondWindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
91 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
92 |
gameWindow = self.uiwindow; |
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; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
97 |
[gameWindow addSubview:blackView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
98 |
[blackView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
99 |
|
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
100 |
if ([[UIScreen screens] count] > 1) { |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
101 |
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
|
102 |
secondBlackView.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
103 |
secondBlackView.opaque = YES; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
104 |
secondBlackView.tag = SECONDBLACKVIEW_TAG; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
105 |
secondBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
106 |
[self.uiwindow addSubview:secondBlackView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
107 |
[UIView beginAnimations:@"fading to game" context:NULL]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
108 |
[UIView setAnimationDuration:1]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
109 |
secondBlackView.alpha = 1; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
110 |
[UIView commitAnimations]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
111 |
[secondBlackView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
112 |
} |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
113 |
|
3547 | 114 |
// 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
|
115 |
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
|
116 |
NSNumber *isNetGameNum = [gameDictionary objectForKey:@"netgame"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
117 |
|
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
118 |
if ([isNetGameNum boolValue] == NO) |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
119 |
[setup startThread:@"engineProtocol"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
120 |
const char **gameArgs = [setup getSettings:[gameDictionary objectForKey:@"savefile"]]; |
3935 | 121 |
NSNumber *menuStyle = [NSNumber numberWithBool:setup.menuStyle]; |
3547 | 122 |
[setup release]; |
123 |
||
124 |
// since the sdlwindow is not yet created, we add the overlayController with a delay |
|
3935 | 125 |
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:isNetGameNum,@"net",menuStyle,@"menu",nil]; |
126 |
[self performSelector:@selector(displayOverlayLater:) withObject:dict afterDelay:0.1]; |
|
3697 | 127 |
|
3547 | 128 |
// this is the pascal fuction that starts the game (wrapped around isInGame) |
129 |
isInGame = YES; |
|
130 |
Game(gameArgs); |
|
131 |
isInGame = NO; |
|
3598 | 132 |
free(gameArgs); |
3697 | 133 |
|
3935 | 134 |
[self.uiwindow makeKeyAndVisible]; |
135 |
[self.uiwindow bringSubviewToFront:self.mainViewController.view]; |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
136 |
|
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
137 |
UIView *refBlackView = [gameWindow viewWithTag:BLACKVIEW_TAG]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
138 |
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
|
139 |
[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
|
140 |
[UIView setAnimationDuration:1]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
141 |
refBlackView.alpha = 0; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
142 |
refSecondBlackView.alpha = 0; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
143 |
[UIView commitAnimations]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
144 |
[refBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
145 |
[refSecondBlackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
3547 | 146 |
} |
147 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
148 |
// overlay with controls, become visible later, with a transparency effect |
3935 | 149 |
-(void) displayOverlayLater:(id) object { |
150 |
NSDictionary *dict = (NSDictionary *)object; |
|
3547 | 151 |
OverlayViewController *overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil]; |
3935 | 152 |
overlayController.isNetGame = [[dict objectForKey:@"net"] boolValue]; |
153 |
overlayController.useClassicMenu = [[dict objectForKey:@"menu"] boolValue]; |
|
154 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
155 |
UIWindow *gameWindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
156 |
if ([[UIScreen screens] count] > 1) |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
157 |
gameWindow = self.uiwindow; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
158 |
else |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
159 |
gameWindow = [[UIApplication sharedApplication] keyWindow]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
160 |
[gameWindow addSubview:overlayController.view]; |
3547 | 161 |
[overlayController release]; |
162 |
} |
|
163 |
||
164 |
// override the direct execution of SDL_main to allow us to implement the frontend (or even using a nib) |
|
165 |
-(void) applicationDidFinishLaunching:(UIApplication *)application { |
|
3697 | 166 |
[application setStatusBarHidden:YES]; |
167 |
||
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
168 |
self.uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
3697 | 169 |
|
3547 | 170 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
3659 | 171 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil]; |
3547 | 172 |
else |
3659 | 173 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil]; |
3547 | 174 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
175 |
[self.uiwindow addSubview:self.mainViewController.view]; |
3659 | 176 |
[self.mainViewController release]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
177 |
self.uiwindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
178 |
[self.uiwindow makeKeyAndVisible]; |
3547 | 179 |
|
3935 | 180 |
// set working directory to resource path |
181 |
[[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] resourcePath]]; |
|
182 |
||
183 |
// check for dual monitor support |
|
184 |
if ([[UIScreen screens] count] > 1) { |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
185 |
DLog(@"dual head mode ftw"); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
186 |
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
|
187 |
self.secondWindow.backgroundColor = [UIColor blackColor]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
188 |
self.secondWindow.screen = [[UIScreen screens] objectAtIndex:1]; |
3935 | 189 |
UIImage *titleImage = [UIImage imageWithContentsOfFile:@"title.png"]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
190 |
UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
191 |
titleView.center = self.secondWindow.center; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
192 |
[self.secondWindow addSubview:titleView]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
193 |
[titleView release]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
194 |
[self.secondWindow makeKeyAndVisible]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3898
diff
changeset
|
195 |
} |
3547 | 196 |
} |
197 |
||
198 |
-(void) applicationWillTerminate:(UIApplication *)application { |
|
199 |
SDL_SendQuit(); |
|
3697 | 200 |
|
3547 | 201 |
if (isInGame) { |
202 |
HW_terminate(YES); |
|
203 |
// hack to prevent automatic termination. See SDL_uikitevents.m for details |
|
204 |
longjmp(*(jump_env()), 1); |
|
205 |
} |
|
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 |
|
3547 | 214 |
-(void) applicationWillResignActive:(UIApplication *)application { |
215 |
if (isInGame) { |
|
216 |
HW_pause(); |
|
3697 | 217 |
|
3547 | 218 |
// Send every window on every screen a MINIMIZED event. |
219 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
220 |
if (!_this) |
|
221 |
return; |
|
222 |
||
223 |
int i; |
|
224 |
for (i = 0; i < _this->num_displays; i++) { |
|
225 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
226 |
SDL_Window *window; |
|
227 |
for (window = display->windows; window != nil; window = window->next) |
|
228 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0); |
|
229 |
} |
|
230 |
} |
|
231 |
} |
|
232 |
||
233 |
-(void) applicationDidBecomeActive:(UIApplication *)application { |
|
234 |
if (isInGame) { |
|
235 |
HW_pause(); |
|
236 |
||
237 |
// Send every window on every screen a RESTORED event. |
|
238 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
239 |
if (!_this) |
|
240 |
return; |
|
241 |
||
242 |
int i; |
|
243 |
for (i = 0; i < _this->num_displays; i++) { |
|
244 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
245 |
SDL_Window *window; |
|
246 |
for (window = display->windows; window != nil; window = window->next) |
|
247 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0); |
|
248 |
} |
|
249 |
} |
|
250 |
} |
|
251 |
||
252 |
@end |