author | koda |
Thu, 23 Sep 2010 01:29:20 +0200 | |
changeset 3898 | 0a9c3735a713 |
parent 3895 | e7c202c08ac1 |
child 3922 | 44804043b691 |
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 |
||
42 |
#define VALGRIND "/opt/valgrind/bin/valgrind" |
|
43 |
||
44 |
int main (int argc, char *argv[]) { |
|
45 |
#ifdef VALGRIND_REXEC |
|
46 |
// Using the valgrind build config, rexec ourself in valgrind |
|
47 |
// from http://landonf.bikemonkey.org/code/iphone/iPhone_Simulator_Valgrind.20081224.html |
|
48 |
if (argc < 2 || (argc >= 2 && strcmp(argv[1], "-valgrind") != 0)) |
|
49 |
execl(VALGRIND, VALGRIND, "--leak-check=full", argv[0], "-valgrind", NULL); |
|
50 |
#endif |
|
51 |
||
52 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
|
53 |
int retVal = UIApplicationMain(argc, argv, nil, @"SDLUIKitDelegate"); |
|
54 |
[pool release]; |
|
55 |
return retVal; |
|
56 |
} |
|
57 |
||
58 |
@implementation SDLUIKitDelegate |
|
3659 | 59 |
@synthesize mainViewController; |
3547 | 60 |
|
61 |
// convenience method |
|
62 |
+(SDLUIKitDelegate *)sharedAppDelegate { |
|
63 |
// the delegate is set in UIApplicationMain(), which is guaranteed to be called before this method |
|
64 |
return (SDLUIKitDelegate *)[[UIApplication sharedApplication] delegate]; |
|
65 |
} |
|
66 |
||
67 |
-(id) init { |
|
68 |
if (self = [super init]){ |
|
69 |
mainViewController = nil; |
|
70 |
isInGame = NO; |
|
71 |
} |
|
72 |
return self; |
|
73 |
} |
|
74 |
||
75 |
-(void) dealloc { |
|
76 |
[mainViewController release]; |
|
77 |
[super dealloc]; |
|
78 |
} |
|
79 |
||
80 |
// 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
|
81 |
-(void) startSDLgame:(NSDictionary *)gameDictionary { |
3895
e7c202c08ac1
compilation bugfix and scaling down textures when bigger than screen
koda
parents:
3893
diff
changeset
|
82 |
UIWindow *aWin = [[[UIApplication sharedApplication] windows] objectAtIndex:0]; |
e7c202c08ac1
compilation bugfix and scaling down textures when bigger than screen
koda
parents:
3893
diff
changeset
|
83 |
|
3898 | 84 |
UIView *blackView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, aWin.frame.size.width, aWin.frame.size.height)]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
85 |
blackView.opaque = YES; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
86 |
blackView.backgroundColor = [UIColor blackColor]; |
3895
e7c202c08ac1
compilation bugfix and scaling down textures when bigger than screen
koda
parents:
3893
diff
changeset
|
87 |
[aWin addSubview:blackView]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
88 |
|
3547 | 89 |
// 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
|
90 |
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
|
91 |
NSNumber *isNetGameNum = [gameDictionary objectForKey:@"netgame"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
92 |
|
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
93 |
if ([isNetGameNum boolValue] == NO) |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
94 |
[setup startThread:@"engineProtocol"]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
95 |
const char **gameArgs = [setup getSettings:[gameDictionary objectForKey:@"savefile"]]; |
3547 | 96 |
[setup release]; |
97 |
||
98 |
// since the sdlwindow is not yet created, we add the overlayController with a delay |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
99 |
[self performSelector:@selector(displayOverlayLater:) withObject:isNetGameNum afterDelay:0.1]; |
3697 | 100 |
|
3547 | 101 |
// this is the pascal fuction that starts the game (wrapped around isInGame) |
102 |
isInGame = YES; |
|
103 |
Game(gameArgs); |
|
104 |
isInGame = NO; |
|
3598 | 105 |
free(gameArgs); |
3697 | 106 |
|
3895
e7c202c08ac1
compilation bugfix and scaling down textures when bigger than screen
koda
parents:
3893
diff
changeset
|
107 |
[aWin makeKeyAndVisible]; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
108 |
[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
|
109 |
[UIView setAnimationDuration:1]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
110 |
blackView.alpha = 0; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
111 |
[UIView commitAnimations]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
112 |
[blackView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
113 |
[blackView performSelector:@selector(release) withObject:nil afterDelay:1]; |
3547 | 114 |
} |
115 |
||
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3737
diff
changeset
|
116 |
-(void) displayOverlayLater:(NSNumber *)isNetGame { |
3598 | 117 |
// overlay with controls, become visible later, with a transparency effect |
3547 | 118 |
OverlayViewController *overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil]; |
3598 | 119 |
|
120 |
// keyWindow is the frontmost window |
|
3547 | 121 |
[[[UIApplication sharedApplication] keyWindow] addSubview:overlayController.view]; |
122 |
[overlayController release]; |
|
123 |
} |
|
124 |
||
125 |
// override the direct execution of SDL_main to allow us to implement the frontend (or even using a nib) |
|
126 |
-(void) applicationDidFinishLaunching:(UIApplication *)application { |
|
3697 | 127 |
[application setStatusBarHidden:YES]; |
128 |
||
3598 | 129 |
UIWindow *uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
3697 | 130 |
|
3547 | 131 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
3659 | 132 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil]; |
3547 | 133 |
else |
3659 | 134 |
self.mainViewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil]; |
3547 | 135 |
|
3659 | 136 |
[uiwindow addSubview:self.mainViewController.view]; |
137 |
[self.mainViewController release]; |
|
3660 | 138 |
uiwindow.backgroundColor = [UIColor blackColor]; |
3547 | 139 |
[uiwindow makeKeyAndVisible]; |
140 |
||
3660 | 141 |
// set working directory to resource path |
3547 | 142 |
[[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] resourcePath]]; |
143 |
} |
|
144 |
||
145 |
-(void) applicationWillTerminate:(UIApplication *)application { |
|
146 |
SDL_SendQuit(); |
|
3697 | 147 |
|
3547 | 148 |
if (isInGame) { |
149 |
HW_terminate(YES); |
|
150 |
// hack to prevent automatic termination. See SDL_uikitevents.m for details |
|
151 |
longjmp(*(jump_env()), 1); |
|
152 |
} |
|
153 |
} |
|
154 |
||
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
155 |
-(void) applicationDidReceiveMemoryWarning:(UIApplication *)application { |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3662
diff
changeset
|
156 |
// 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
|
157 |
MSG_MEMCLEAN(); |
3661 | 158 |
print_free_memory(); |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
159 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
160 |
|
3547 | 161 |
-(void) applicationWillResignActive:(UIApplication *)application { |
162 |
if (isInGame) { |
|
163 |
HW_pause(); |
|
3697 | 164 |
|
3547 | 165 |
// Send every window on every screen a MINIMIZED event. |
166 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
167 |
if (!_this) |
|
168 |
return; |
|
169 |
||
170 |
int i; |
|
171 |
for (i = 0; i < _this->num_displays; i++) { |
|
172 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
173 |
SDL_Window *window; |
|
174 |
for (window = display->windows; window != nil; window = window->next) |
|
175 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MINIMIZED, 0, 0); |
|
176 |
} |
|
177 |
} |
|
178 |
} |
|
179 |
||
180 |
-(void) applicationDidBecomeActive:(UIApplication *)application { |
|
181 |
if (isInGame) { |
|
182 |
HW_pause(); |
|
183 |
||
184 |
// Send every window on every screen a RESTORED event. |
|
185 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
|
186 |
if (!_this) |
|
187 |
return; |
|
188 |
||
189 |
int i; |
|
190 |
for (i = 0; i < _this->num_displays; i++) { |
|
191 |
const SDL_VideoDisplay *display = &_this->displays[i]; |
|
192 |
SDL_Window *window; |
|
193 |
for (window = display->windows; window != nil; window = window->next) |
|
194 |
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESTORED, 0, 0); |
|
195 |
} |
|
196 |
} |
|
197 |
} |
|
198 |
||
199 |
@end |