author | koda |
Mon, 25 Apr 2011 06:38:59 +0200 | |
changeset 5174 | f5294509783e |
parent 5166 | d1eb1560b4d5 |
child 5175 | a3da220dbb3f |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 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 16/03/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import <UIKit/UIKit.h> |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
23 |
#import "SDL_sysvideo.h" |
3547 | 24 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
25 |
@class InGameMenuViewController; |
3792 | 26 |
@class HelpPageViewController; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3922
diff
changeset
|
27 |
@class AmmoMenuViewController; |
3547 | 28 |
|
29 |
@interface OverlayViewController : UIViewController { |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
30 |
// the timer that dims the overlay |
3547 | 31 |
NSTimer *dimTimer; |
32 |
||
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
33 |
// the in-game menu |
3971 | 34 |
UIPopoverController *popoverController; // iPad only, never set on iPhone |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
35 |
InGameMenuViewController *popupMenu; |
3547 | 36 |
BOOL isPopoverVisible; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3661
diff
changeset
|
37 |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3737
diff
changeset
|
38 |
// the help menu |
3792 | 39 |
HelpPageViewController *helpPage; |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3737
diff
changeset
|
40 |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3922
diff
changeset
|
41 |
// the objc ammomenu |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3922
diff
changeset
|
42 |
AmmoMenuViewController *amvc; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3922
diff
changeset
|
43 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
44 |
// ths touch section |
3547 | 45 |
CGFloat initialDistanceForPinching; |
3651 | 46 |
CGPoint startingPoint; |
3650 | 47 |
BOOL isSegmentVisible; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
48 |
BOOL isAttacking; |
3935 | 49 |
|
50 |
// stuff initialized externally |
|
51 |
BOOL useClassicMenu; |
|
4356 | 52 |
NSInteger initialOrientation; |
3941 | 53 |
|
54 |
// dual head support |
|
55 |
NSInteger initialScreenCount; |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
56 |
|
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
57 |
// spinning icons low |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
58 |
UIActivityIndicatorView *lowerIndicator; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
59 |
UIActivityIndicatorView *savesIndicator; |
3547 | 60 |
} |
61 |
||
62 |
@property (nonatomic,retain) id popoverController; |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
63 |
@property (nonatomic,retain) InGameMenuViewController *popupMenu; |
3792 | 64 |
@property (nonatomic,retain) HelpPageViewController *helpPage; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3922
diff
changeset
|
65 |
@property (nonatomic,retain) AmmoMenuViewController *amvc; |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
66 |
@property (nonatomic,retain) UIActivityIndicatorView *lowerIndicator; |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
67 |
@property (nonatomic,retain) UIActivityIndicatorView *savesIndicator; |
3935 | 68 |
@property (assign) BOOL useClassicMenu; |
4356 | 69 |
@property (assign) NSInteger initialOrientation; |
5166
d1eb1560b4d5
and now for something completely different, overlay refactoring!
koda
parents:
5155
diff
changeset
|
70 |
@property (assign) NSInteger initialScreenCount; |
3547 | 71 |
|
72 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
|
73 |
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; |
|
74 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; |
|
75 |
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event; |
|
76 |
||
77 |
-(IBAction) buttonReleased:(id) sender; |
|
78 |
-(IBAction) buttonPressed:(id) sender; |
|
79 |
||
80 |
-(void) showPopover; |
|
81 |
-(void) dismissPopover; |
|
82 |
-(void) dimOverlay; |
|
83 |
-(void) activateOverlay; |
|
5155
f2165724605c
more refactoring, less warnings, less stuff kept around
koda
parents:
5154
diff
changeset
|
84 |
-(void) removeOverlay; |
3547 | 85 |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
86 |
#define ANIMATION_DURATION 0.25 |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
87 |
#define CONFIRMATION_TAG 5959 |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
88 |
#define GRENADE_TAG 9595 |
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5166
diff
changeset
|
89 |
|
3547 | 90 |
@end |