forked from dev2dev/Molecules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSLSMoleculeiPadRootViewController.m
352 lines (284 loc) · 12.8 KB
/
SLSMoleculeiPadRootViewController.m
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
//
// SLSMoleculeiPadRootViewController.m
// Molecules
//
// The source code for Molecules is available under a BSD license. See License.txt for details.
//
// Created by Brad Larson on 2/20/2010.
//
// The download toolbar icon in this application is courtesy of Joseph Wain / glyphish.com
// See the GlyphishIconLicense.txt file for more information on these icons
#import "SLSMoleculeiPadRootViewController.h"
#import "SLSMoleculeGLViewController.h"
#import "SLSMoleculeDataSourceViewController.h"
#import "SLSMoleculeGLView.h"
@implementation SLSMoleculeiPadRootViewController
/*
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
// Custom initialization
}
return self;
}
*/
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView
{
CGRect mainScreenFrame = [[UIScreen mainScreen] applicationFrame];
UIView *backgroundView = [[UIView alloc] initWithFrame:mainScreenFrame];
backgroundView.opaque = YES;
backgroundView.backgroundColor = [UIColor blackColor];
backgroundView.autoresizesSubviews = YES;
self.view = backgroundView;
[backgroundView release];
SLSMoleculeGLViewController *viewController = [[SLSMoleculeGLViewController alloc] initWithNibName:nil bundle:nil];
self.glViewController = viewController;
[viewController release];
[self.view addSubview:glViewController.view];
glViewController.view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
mainToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0.0f, 0.0f, glViewController.view.frame.size.width, 44.0f)];
mainToolbar.autoresizingMask = UIViewAutoresizingFlexibleWidth;
mainToolbar.tintColor = [UIColor blackColor];
[backgroundView addSubview:mainToolbar];
UIImage *screenImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"69-display" ofType:@"png"]];
screenBarButton = [[UIBarButtonItem alloc] initWithImage:screenImage style:UIBarButtonItemStylePlain target:self action:@selector(displayOnExternalOrLocalScreen:)];
screenBarButton.width = 44.0f;
[screenImage release];
UIImage *downloadImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"57-download" ofType:@"png"]];
UIBarButtonItem *downloadBarButton = [[UIBarButtonItem alloc] initWithImage:downloadImage style:UIBarButtonItemStylePlain target:self action:@selector(showDownloadOptions:)];
downloadBarButton.width = 44.0f;
[downloadImage release];
UIImage *visualizationImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"VisualizationIcon" ofType:@"png"]];
visualizationBarButton = [[UIBarButtonItem alloc] initWithImage:visualizationImage style:UIBarButtonItemStylePlain target:self action:@selector(showVisualizationModes:)];
visualizationBarButton.width = 44.0f;
[visualizationImage release];
spacerItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
unselectedRotationImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"RotationIconiPad" ofType:@"png"]];
rotationBarButton = [[UIBarButtonItem alloc] initWithImage:unselectedRotationImage style:UIBarButtonItemStylePlain target:glViewController action:@selector(startOrStopAutorotation:)];
rotationBarButton.width = 44.0f;
// [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleConnectionOfMonitor:) name:UIScreenDidConnectNotification object:nil];
// [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleDisconnectionOfMonitor:) name:UIScreenDidDisconnectNotification object:nil];
if ([[UIScreen screens] count] > 1)
{
for (UIScreen *currentScreen in [UIScreen screens])
{
if (currentScreen != [UIScreen mainScreen])
externalScreen = currentScreen;
}
[mainToolbar setItems:[NSArray arrayWithObjects:spacerItem, screenBarButton, downloadBarButton, visualizationBarButton, rotationBarButton, nil] animated:NO];
}
else
{
[mainToolbar setItems:[NSArray arrayWithObjects:spacerItem, downloadBarButton, visualizationBarButton, rotationBarButton, nil] animated:NO];
}
[downloadBarButton release];
glViewController.view.frame = CGRectMake(mainScreenFrame.origin.x, mainToolbar.bounds.size.height, mainScreenFrame.size.width, mainScreenFrame.size.height - mainToolbar.bounds.size.height);
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Overriden to allow any orientation.
return YES;
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc
{
[visualizationBarButton release];
[spacerItem release];
[mainToolbar release];
[selectedRotationImage release];
[unselectedRotationImage release];
[rotationBarButton release];
[super dealloc];
}
#pragma mark -
#pragma mark Bar response methods
/*- (void)showMolecules:(id)sender;
{
moleculeListPopover = [[UIPopoverController alloc] initWithContentViewController:self.tableNavigationController];
[self.tableNavigationController setContentSizeForViewInPopover:CGSizeMake(320.0f, round(0.5f * self.view.bounds.size.height))];
[moleculeListPopover setDelegate:self];
[moleculeListPopover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}*/
- (void)showVisualizationModes:(id)sender;
{
if (glViewController.visualizationActionSheet != nil)
return;
UIActionSheet *actionSheet = [glViewController actionSheetForVisualizationState];
[actionSheet showFromBarButtonItem:visualizationBarButton animated:YES];
glViewController.visualizationActionSheet = actionSheet;
[moleculeTablePopover dismissPopoverAnimated:YES];
moleculeTablePopover = nil;
[downloadOptionsPopover dismissPopoverAnimated:YES];
[downloadOptionsPopover release];
downloadOptionsPopover = nil;
}
- (void)showDownloadOptions:(id)sender;
{
if (downloadOptionsPopover != nil)
return;
UINavigationController *downloadNavigationController = [[UINavigationController alloc] init];
downloadNavigationController.navigationBar.barStyle = UIBarStyleBlackOpaque;
SLSMoleculeDataSourceViewController *dataSourceViewController = [[SLSMoleculeDataSourceViewController alloc] initWithStyle:UITableViewStylePlain];
// dataSourceViewController.delegate = self;
[downloadNavigationController pushViewController:dataSourceViewController animated:NO];
[dataSourceViewController release];
downloadOptionsPopover = [[UIPopoverController alloc] initWithContentViewController:downloadNavigationController];
[downloadNavigationController release];
[downloadOptionsPopover setDelegate:self];
[downloadOptionsPopover presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
// [downloadOptionsPopover release];
[glViewController.visualizationActionSheet dismissWithClickedButtonIndex:2 animated:YES];
glViewController.visualizationActionSheet = nil;
[moleculeTablePopover dismissPopoverAnimated:YES];
moleculeTablePopover = nil;
}
#pragma mark -
#pragma mark Passthroughs for managing molecules
- (void)selectedMoleculeDidChange:(NSInteger)newMoleculeIndex;
{
[super selectedMoleculeDidChange:newMoleculeIndex];
glViewController.moleculeToDisplay = bufferedMolecule;
[moleculeTablePopover dismissPopoverAnimated:YES];
moleculeTablePopover = nil;
}
#pragma mark -
#pragma mark Manage the switching of rotation state
- (void)toggleRotationButton:(NSNotification *)note;
{
if ([[note object] boolValue])
{
if (selectedRotationImage == nil)
selectedRotationImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"RotationIconiPadCancel" ofType:@"png"]];
rotationBarButton.image = selectedRotationImage;
}
else
{
rotationBarButton.image = unselectedRotationImage;
}
}
#pragma mark -
#pragma mark External monitor support
- (void)handleConnectionOfMonitor:(NSNotification *)note;
{
externalScreen = [note object];
NSMutableArray *items = [[mainToolbar items] mutableCopy];
[items insertObject:screenBarButton atIndex:[items indexOfObject:spacerItem] + 1];
[mainToolbar setItems:items animated:YES];
[items release];
}
- (void)handleDisconnectionOfMonitor:(NSNotification *)note;
{
NSMutableArray *items = [[mainToolbar items] mutableCopy];
[items removeObject:screenBarButton];
[mainToolbar setItems:items animated:YES];
[items release];
if (externalWindow != nil)
{
[self.view addSubview:glViewController.view];
[glViewController updateSizeOfGLView:nil];
[externalWindow release];
externalWindow = nil;
}
externalScreen = nil;
}
- (void)displayOnExternalOrLocalScreen:(id)sender;
{
if (externalWindow != nil)
{
// External window exists, need to move back locally
[self.view addSubview:glViewController.view];
CGRect mainScreenFrame = [[UIScreen mainScreen] applicationFrame];
glViewController.view.frame = CGRectMake(mainScreenFrame.origin.x, mainToolbar.bounds.size.height, mainScreenFrame.size.width, mainScreenFrame.size.height - mainToolbar.bounds.size.height);
// Move view back to local window
[externalWindow release];
externalWindow = nil;
}
else
{
// Being displayed locally, move to external window
CGRect externalBounds = [externalScreen bounds];
externalWindow = [[UIWindow alloc] initWithFrame:externalBounds];
// if (glViewController.is
// [glViewController.view removeFromSuperview];
// glViewController.view = nil;
//
// glViewController.view = [[SLSMoleculeGLView alloc] initWithFrame:externalBounds];
// SLSMoleculeGLView *glView = (SLSMoleculeGLView *)glViewController.view;
// [EAGLContext setCurrentContext:glView.context];
// [glView destroyFramebuffer];
//
//
//// glView.context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
[externalWindow addSubview:glViewController.view];
//
// [EAGLContext setCurrentContext:glView.context];
// [glView createFramebuffer];
// [glView configureProjection];
// [glViewController _drawViewByRotatingAroundX:0.0f rotatingAroundY:0.0f scaling:1.0f translationInX:0.0f translationInY:0.0f];
UILabel *helloWorld = [[UILabel alloc] initWithFrame:CGRectMake(200.0f, 400.0f, 400.0f, 60.0f)];
helloWorld.text = @"This page intentionally left blank.";
[externalWindow addSubview:helloWorld];
[helloWorld release];
externalWindow.screen = externalScreen;
glViewController.view.frame = externalBounds;
[externalWindow makeKeyAndVisible];
}
}
#pragma mark -
#pragma mark UISplitViewControllerDelegate methods
- (void)splitViewController:(UISplitViewController*)svc popoverController:(UIPopoverController*)pc willPresentViewController:(UIViewController *)aViewController
{
[downloadOptionsPopover dismissPopoverAnimated:YES];
[downloadOptionsPopover release];
downloadOptionsPopover = nil;
// [downloadOptionsPopover release];
[glViewController.visualizationActionSheet dismissWithClickedButtonIndex:2 animated:YES];
glViewController.visualizationActionSheet = nil;
moleculeTablePopover = pc;
}
- (void)splitViewController:(UISplitViewController*)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem*)barButtonItem forPopoverController:(UIPopoverController*)pc
{
[(UINavigationController *)aViewController navigationBar].barStyle = UIBarStyleBlackOpaque;
// barButtonItem.title = @"Molecules";
NSMutableArray *items = [[mainToolbar items] mutableCopy];
[items insertObject:barButtonItem atIndex:0];
[mainToolbar setItems:items animated:YES];
[items release];
}
- (void)splitViewController:(UISplitViewController*)svc willShowViewController:(UIViewController *)aViewController invalidatingBarButtonItem:(UIBarButtonItem *)button
{
[(UINavigationController *)aViewController navigationBar].barStyle = UIBarStyleBlackOpaque;
NSMutableArray *items = [[mainToolbar items] mutableCopy];
[items removeObjectAtIndex:0];
[mainToolbar setItems:items animated:YES];
[items release];
}
#pragma mark -
#pragma mark UIPopoverControllerDelegate methods
- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController;
{
if (popoverController == downloadOptionsPopover)
{
[downloadOptionsPopover release];
downloadOptionsPopover = nil;
}
else if (popoverController == moleculeTablePopover)
{
moleculeTablePopover = nil;
}
}
#pragma mark -
#pragma mark Accessors
@end