All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.scenekit.SCNSceneSource Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013-2015 RoboVM AB
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.bugvm.apple.scenekit;

/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.dispatch.*;
import com.bugvm.apple.glkit.*;
import com.bugvm.apple.spritekit.*;
import com.bugvm.apple.opengles.*;
/**/

/**/
/**
 * @since Available in iOS 8.0 and later.
 */
/**/
/**/@Library("SceneKit") @NativeClass/**/
/**/public/**/ class /**/SCNSceneSource/**/ 
    extends /**/NSObject/**/ 
    /**//**/ {

    /**/public static class SCNSceneSourcePtr extends Ptr {}/**/
    /**/static { ObjCRuntime.bind(SCNSceneSource.class); }/**/
    /**//**/
    /**/
    public SCNSceneSource() {}
    protected SCNSceneSource(SkipInit skipInit) { super(skipInit); }
    public SCNSceneSource(NSURL url, SCNSceneSourceOptions options) { super((SkipInit) null); initObject(init(url, options)); }
    public SCNSceneSource(NSData data, SCNSceneSourceOptions options) { super((SkipInit) null); initObject(init(data, options)); }
    /**/
    /**/
    @Property(selector = "url")
    public native NSURL getUrl();
    @Property(selector = "data")
    public native NSData getData();
    /**/
    /**//**/
    
    /* Convenience methods */
    @SuppressWarnings("unchecked")
    public SCNSceneSourceContributor getContributors() {
        NSDictionary val = (NSDictionary) getProperty(SCNSceneSourceProperty.Contributors);
        if (val != null) {
            return new SCNSceneSourceContributor(val);
        }
        return null;
    }
    public NSDate getCreatedDate() {
        return (NSDate) getProperty(SCNSceneSourceProperty.CreatedDate);
    }
    public NSDate getModifiedDate() {
        return (NSDate) getProperty(SCNSceneSourceProperty.ModifiedDate);
    }
    public String getUpAxis() {
        NSString val = (NSString) getProperty(SCNSceneSourceProperty.UpAxis);
        return val.toString();
    }
    @SuppressWarnings("unchecked")
    public SCNSceneSourceUnit getUnit() {
        NSDictionary val = (NSDictionary) getProperty(SCNSceneSourceProperty.Unit);
        if (val != null) {
            return new SCNSceneSourceUnit(val);
        }
        return null;
    }
    /**/
    @Method(selector = "initWithURL:options:")
    protected native @Pointer long init(NSURL url, SCNSceneSourceOptions options);
    @Method(selector = "initWithData:options:")
    protected native @Pointer long init(NSData data, SCNSceneSourceOptions options);
    @Method(selector = "sceneWithOptions:statusHandler:")
    public native SCNScene newScene(SCNSceneSourceOptions options, @Block VoidBlock4 statusHandler);
    public SCNScene newScene(SCNSceneSourceOptions options) throws NSErrorException {
       NSError.NSErrorPtr ptr = new NSError.NSErrorPtr();
       SCNScene result = newScene(options, ptr);
       if (ptr.get() != null) { throw new NSErrorException(ptr.get()); }
       return result;
    }
    @Method(selector = "sceneWithOptions:error:")
    private native SCNScene newScene(SCNSceneSourceOptions options, NSError.NSErrorPtr error);
    @Method(selector = "propertyForKey:")
    public native NSObject getProperty(SCNSceneSourceProperty key);
    @Method(selector = "entryWithIdentifier:withClass:")
    public native NSObject getEntryWithIdentifier(String uid, Class entryClass);
    @Method(selector = "identifiersOfEntriesWithClass:")
    public native @com.bugvm.rt.bro.annotation.Marshaler(NSArray.AsStringListMarshaler.class) List getIdentifiersOfEntriesWithClass(Class entryClass);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "entriesPassingTest:")
    public native NSArray getEntriesPassingTest(@Block Block3 predicate);
    @Method(selector = "sceneSourceWithURL:options:")
    public static native SCNSceneSource create(NSURL url, SCNSceneSourceOptions options);
    @Method(selector = "sceneSourceWithData:options:")
    public static native SCNSceneSource create(NSData data, SCNSceneSourceOptions options);
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy