Last active
September 18, 2016 01:49
-
-
Save capnslipp/6d3e4d3a5f0aeb96eda416774e22dd1f to your computer and use it in GitHub Desktop.
An adaptable UIViewController subclass for SceneKit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// @creator: Slipp Douglas Thompson | |
/// @license: WTFPL | |
/// @purpose: A `UIViewController` subclass (instantiable from code or XIB/Storyboard) that initializes its `SCNView` using the specified `viewFrame` & `viewOptions`. | |
/// @why: Because this functionality should be built-into SceneKit. | |
/// @usage: _FILL_IN_ | |
/// @interwebsouce: https://gist.github.com/capnslipp/6d3e4d3a5f0aeb96eda416774e22dd1f | |
import UIKit | |
import SceneKit | |
public class SCNViewController : UIViewController | |
{ | |
enum Error : Swift.Error { | |
case nibStoryboardViewIsNotAnSCNView | |
} | |
/// Unfortunately, SCNView's API hasn't yet been fully updated for Swift, so if you use `viewOptions`s they need to be specified similar to the following: | |
/// viewOptions: [ | |
/// SCNView.Option.preferredRenderingAPI.rawValue: NSNumber(value: SCNRenderingAPI.metal.rawValue), | |
/// SCNView.Option.preferredDevice.rawValue: MTLCreateSystemDefaultDevice()!, | |
/// SCNView.Option.preferLowPowerDevice.rawValue: NSNumber(value: true) | |
/// ] | |
public required init(nibName:String?, bundle nibBundle:Bundle?=nil, viewFrame:CGRect?, viewOptions:[String:Any]?=[:]) | |
{ | |
if nibName == nil { | |
_initViewFrame = viewFrame | |
_initViewOptions = viewOptions | |
} else { | |
_initViewFrame = nil | |
_initViewOptions = nil | |
} | |
super.init(nibName: nibName, bundle: nibBundle) | |
} | |
public convenience init(viewFrame:CGRect?, viewOptions:[String:Any]? = [:]) { | |
self.init(nibName: nil, bundle: nil, viewFrame: viewFrame, viewOptions: viewOptions) | |
} | |
public convenience override init(nibName:String?, bundle nibBundle:Bundle?=nil) { | |
self.init(nibName: nibName, bundle: nibBundle, viewFrame: nil, viewOptions: nil) | |
} | |
public required init?(coder aDecoder:NSCoder) { | |
_initViewFrame = nil | |
_initViewOptions = nil | |
super.init(coder: aDecoder) | |
} | |
private let _initViewFrame:CGRect? | |
private var initViewFrame:CGRect { | |
return _initViewFrame ?? CGRect.null | |
} | |
private let _initViewOptions:[String:Any]? | |
private var initViewOptions:[String:Any]? { | |
return _initViewOptions | |
} | |
public var scnView:SCNView { | |
return self.view as! SCNView | |
} | |
public var scene:SCNScene? { | |
return self.scnView.scene | |
} | |
public override func loadView() | |
{ | |
guard self.nibName == nil && self.storyboard == nil else { | |
super.loadView() | |
try! { guard self.view is SCNView else { throw Error.nibStoryboardViewIsNotAnSCNView } }() | |
return | |
} | |
self.view = SCNView(frame: self.initViewFrame, options: self.initViewOptions) | |
} | |
public override func viewDidLoad() | |
{ | |
self.scnView.scene = SCNScene() | |
super.viewDidLoad() | |
} | |
public override var shouldAutorotate:Bool { return true } | |
public override var prefersStatusBarHidden:Bool { return true } | |
public override var supportedInterfaceOrientations:UIInterfaceOrientationMask { | |
switch UIDevice.current.userInterfaceIdiom { | |
case .phone: | |
return .allButUpsideDown | |
default: | |
return .all | |
} | |
} | |
/// Release any cached data, images, etc that aren't in use. | |
public override func didReceiveMemoryWarning() { | |
super.didReceiveMemoryWarning() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment