forked from id-Software/DOOM-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapMenuView.h
More file actions
112 lines (86 loc) · 2.62 KB
/
MapMenuView.h
File metadata and controls
112 lines (86 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
=======================================================================================
Copyright (C) 2009-2011 id Software LLC, a ZeniMax Media company. All Right Reserved.
This file is part of the DOOM Classic iOS v2.1 GPL Source Code.
=======================================================================================
*/
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "UIFontLabel.h"
#import "UIFontButton.h"
@interface MapMenuView : UIView {
@public
IBOutlet UIScrollView * mapScroller1;
IBOutlet UIScrollView * mapScroller2;
IBOutlet UIScrollView * mapScroller3;
IBOutlet UIScrollView * mapScroller4;
IBOutlet UIButton * lastElement1;
IBOutlet UIButton * lastElement2;
IBOutlet UIButton * lastElement3;
IBOutlet UIButton * lastElement4;
IBOutlet UIImageView * easySelection;
IBOutlet UIImageView * mediumSelection;
IBOutlet UIImageView * hardSelection;
IBOutlet UIImageView * NightmareSelection;
UIScrollView * selectedScroller;
IBOutlet UIFontLabel * easySelectionLabel;
IBOutlet UIFontLabel * mediumSelectionLabel;
IBOutlet UIFontLabel * hardSelectionLabel;
IBOutlet UIFontLabel * nightmareSelectionLabel;
IBOutlet UIFontButton * playButton;
IBOutlet UIFontLabel * playLabel;
UIFontButton * selectedMap;
int episodeSelected;
int mapSelected;
}
- (int) getSkill;
- (void) playMap: (int) dataset: (int) episode: (int) map;
- (void) resetDifficulty;
- (void) setEpisode: (int) episode;
-(IBAction) BackPressed;
-(IBAction) Play;
-(IBAction) UpMission;
-(IBAction) DownMission;
// Difficulty Setting
-(IBAction) EasyPressed;
-(IBAction) MediumPressed;
-(IBAction) HardPressed;
-(IBAction) NightmarePressed;
// DOOM EPISODES
-(IBAction) E1M1;
-(IBAction) E1M2;
-(IBAction) E1M3;
-(IBAction) E1M4;
-(IBAction) E1M5;
-(IBAction) E1M6;
-(IBAction) E1M7;
-(IBAction) E1M8;
-(IBAction) E1M9;
-(IBAction) E2M1;
-(IBAction) E2M2;
-(IBAction) E2M3;
-(IBAction) E2M4;
-(IBAction) E2M5;
-(IBAction) E2M6;
-(IBAction) E2M7;
-(IBAction) E2M8;
-(IBAction) E2M9;
-(IBAction) E3M1;
-(IBAction) E3M2;
-(IBAction) E3M3;
-(IBAction) E3M4;
-(IBAction) E3M5;
-(IBAction) E3M6;
-(IBAction) E3M7;
-(IBAction) E3M8;
-(IBAction) E3M9;
-(IBAction) E4M1;
-(IBAction) E4M2;
-(IBAction) E4M3;
-(IBAction) E4M4;
-(IBAction) E4M5;
-(IBAction) E4M6;
-(IBAction) E4M7;
-(IBAction) E4M8;
-(IBAction) E4M9;
@end