author | koda |
Mon, 25 Apr 2011 06:38:59 +0200 | |
changeset 5174 | f5294509783e |
parent 5106 | 517bdd3865f1 |
child 5175 | a3da220dbb3f |
permissions | -rw-r--r-- |
4028 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
4028 | 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 30/10/2010. |
|
19 |
*/ |
|
20 |
||
21 |
||
22 |
#import "ObjcExports.h" |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
23 |
#import "OverlayViewController.h" |
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4034
diff
changeset
|
24 |
#import "AmmoMenuViewController.h" |
4028 | 25 |
|
26 |
#pragma mark - |
|
27 |
#pragma mark internal variables |
|
28 |
// actual game started (controls should be enabled) |
|
29 |
BOOL gameRunning; |
|
30 |
// black screen present |
|
31 |
BOOL savedGame; |
|
32 |
// cache the grenade time |
|
33 |
NSInteger grenadeTime; |
|
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4034
diff
changeset
|
34 |
// the reference to the newMenu instance |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
35 |
OverlayViewController *overlay_instance; |
4461
2f4f5d649bcd
add a simple check to prevent loading sounds when device is muted
koda
parents:
4362
diff
changeset
|
36 |
// the audiosession must be initialized before using properties |
2f4f5d649bcd
add a simple check to prevent loading sounds when device is muted
koda
parents:
4362
diff
changeset
|
37 |
BOOL gAudioSessionInited = NO; |
4028 | 38 |
|
39 |
#pragma mark - |
|
40 |
#pragma mark functions called like oop |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
41 |
void objcExportsInit(OverlayViewController* instance) { |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
42 |
overlay_instance = instance; |
4034
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
43 |
gameRunning = NO; |
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
44 |
savedGame = NO; |
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
45 |
grenadeTime = 2; |
4028 | 46 |
} |
47 |
||
48 |
BOOL inline isGameRunning() { |
|
49 |
return gameRunning; |
|
50 |
} |
|
51 |
||
52 |
void inline setGameRunning(BOOL value) { |
|
53 |
gameRunning = value; |
|
54 |
} |
|
55 |
||
56 |
NSInteger cachedGrenadeTime() { |
|
57 |
return grenadeTime; |
|
58 |
} |
|
59 |
||
60 |
void inline setGrenadeTime(NSInteger value) { |
|
61 |
grenadeTime = value; |
|
62 |
} |
|
63 |
||
64 |
#pragma mark - |
|
65 |
#pragma mark functions called by pascal code |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
66 |
void startSpinningProgress() { |
4028 | 67 |
gameRunning = NO; |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
68 |
overlay_instance.lowerIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
69 |
|
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
70 |
CGPoint center = overlay_instance.view.center; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
71 |
overlay_instance.lowerIndicator.center = (IS_DUALHEAD() ? CGPointMake(center.y, center.x) |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
72 |
: CGPointMake(center.y, center.x * 5/3)); |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
73 |
|
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
74 |
[overlay_instance.lowerIndicator startAnimating]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
75 |
[overlay_instance.view addSubview:overlay_instance.lowerIndicator]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
76 |
[overlay_instance.lowerIndicator release]; |
4028 | 77 |
} |
78 |
||
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
79 |
void stopSpinningProgress() { |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
80 |
[overlay_instance.lowerIndicator stopAnimating]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
81 |
[overlay_instance.lowerIndicator removeFromSuperview]; |
4028 | 82 |
HW_zoomSet(1.7); |
83 |
if (savedGame == NO) |
|
84 |
gameRunning = YES; |
|
85 |
} |
|
86 |
||
87 |
void clearView() { |
|
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4488
diff
changeset
|
88 |
// don't use any engine calls here as this function is called every time the ammomenu is opened |
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
|
89 |
UIWindow *theWindow = (IS_DUALHEAD()) ? [HedgewarsAppDelegate sharedAppDelegate].uiwindow : [[UIApplication sharedApplication] keyWindow]; |
4028 | 90 |
UIButton *theButton = (UIButton *)[theWindow viewWithTag:CONFIRMATION_TAG]; |
91 |
UISegmentedControl *theSegment = (UISegmentedControl *)[theWindow viewWithTag:GRENADE_TAG]; |
|
92 |
||
93 |
[UIView beginAnimations:@"remove button" context:NULL]; |
|
94 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
95 |
theButton.alpha = 0; |
|
96 |
theSegment.alpha = 0; |
|
97 |
[UIView commitAnimations]; |
|
98 |
||
99 |
if (theButton) |
|
100 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theButton afterDelay:ANIMATION_DURATION]; |
|
101 |
if (theSegment) |
|
102 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theSegment afterDelay:ANIMATION_DURATION]; |
|
103 |
||
104 |
grenadeTime = 2; |
|
105 |
} |
|
106 |
||
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
107 |
void saveBeganSynching() { |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
108 |
overlay_instance.view.backgroundColor = [UIColor blackColor]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
109 |
overlay_instance.view.alpha = 0.75; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
110 |
overlay_instance.view.userInteractionEnabled = NO; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
111 |
|
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
112 |
overlay_instance.savesIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
4028 | 113 |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
114 |
CGPoint center = overlay_instance.view.center; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
115 |
overlay_instance.savesIndicator.center = CGPointMake(center.y, center.x); |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
116 |
overlay_instance.savesIndicator.hidesWhenStopped = YES; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
117 |
|
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
118 |
[overlay_instance.savesIndicator startAnimating]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
119 |
[overlay_instance.view addSubview:overlay_instance.savesIndicator]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
120 |
[overlay_instance.savesIndicator release]; |
4028 | 121 |
|
122 |
savedGame = YES; |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
123 |
stopSpinningProgress(); |
4028 | 124 |
} |
125 |
||
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
126 |
void saveFinishedSynching() { |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
127 |
[UIView beginAnimations:@"fading from save synch" context:NULL]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
128 |
[UIView setAnimationDuration:1]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
129 |
overlay_instance.view.backgroundColor = [UIColor clearColor]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
130 |
overlay_instance.view.alpha = 1; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
131 |
overlay_instance.view.userInteractionEnabled = YES; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
132 |
[UIView commitAnimations]; |
4028 | 133 |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
134 |
[overlay_instance.savesIndicator stopAnimating]; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
135 |
[overlay_instance.savesIndicator performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
4028 | 136 |
|
137 |
gameRunning = YES; |
|
138 |
savedGame = NO; |
|
139 |
} |
|
4034
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
140 |
|
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
141 |
void updateVisualsNewTurn(void) { |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5106
diff
changeset
|
142 |
[overlay_instance.amvc updateAmmoVisuals]; |
4034
634a8c8682de
add some phone rumbling to big explosions, airbomb and sinegun
koda
parents:
4028
diff
changeset
|
143 |
} |
5106
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5002
diff
changeset
|
144 |
|
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5002
diff
changeset
|
145 |
// dummy function to prevent linkage fail |
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5002
diff
changeset
|
146 |
int SDL_main(int argc, char **argv) { |
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5002
diff
changeset
|
147 |
return 0; |
517bdd3865f1
wow we're getting famous http://hg.libsdl.org/SDL/rev/8a04b596b472
koda
parents:
5002
diff
changeset
|
148 |
} |