123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- The MIT License (MIT)
- Copyright (c) 2014-2018 Nikolai Suslov and the Krestianstvo.org project contributors. (https://github.com/NikolaySuslov/livecodingspace/blob/master/LICENSE.md)
- Virtual World Framework Apache 2.0 license (https://github.com/NikolaySuslov/livecodingspace/blob/master/licenses/LICENSE_VWF.md)
- */
- // VWF & OSC model driver
- define( [ "module", "vwf/model" ], function( module, model ) {
- // vwf/model/example/scene.js is a demonstration of a scene manager.
- return model.load( module, {
- // == Module Definition ====================================================================
- // -- pipeline -----------------------------------------------------------------------------
- // pipeline: [ log ], // vwf <=> log <=> scene
- // -- initialize ---------------------------------------------------------------------------
- initialize: function() {
-
- this.objects = {}; // maps id => { property: value, ... }
- self = this;
- this.osc = null;
- //window._OSCModel = this;
- },
- // == Model API ============================================================================
- // -- creatingNode -------------------------------------------------------------------------
- creatingNode: function( nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childURI, childName, callback /* ( ready ) */ ) {
- },
- // -- deletingNode -------------------------------------------------------------------------
- deletingNode: function( nodeID ) {
- },
- // -- addingChild --------------------------------------------------------------------------
- addingChild: function( nodeID, childID, childName ) {
- },
- // -- removingChild ------------------------------------------------------------------------
- removingChild: function( nodeID, childID ) {
- },
- // -- parenting ----------------------------------------------------------------------------
- parenting: function( nodeID ) {
- },
- // -- childrening --------------------------------------------------------------------------
- childrening: function( nodeID ) {
- },
- // -- naming -------------------------------------------------------------------------------
- naming: function( nodeID ) {
- },
- // -- creatingProperty ---------------------------------------------------------------------
- creatingProperty: function( nodeID, propertyName, propertyValue ) {
- // var object = this.objects[nodeID] || ( this.objects[nodeID] = {} );
- // return object[propertyName] = propertyValue;
- },
- // -- initializingProperty -----------------------------------------------------------------
- initializingProperty: function( nodeID, propertyName, propertyValue ) {
- // var object = this.objects[nodeID] || ( this.objects[nodeID] = {} );
- // return object[propertyName] = propertyValue;
- },
- // TODO: deletingProperty
- // -- settingProperty ----------------------------------------------------------------------
- settingProperty: function( nodeID, propertyName, propertyValue ) {
- // var object = this.objects[nodeID] || ( this.objects[nodeID] = {} );
- // return object[propertyName] = propertyValue;
- },
- // -- gettingProperty ----------------------------------------------------------------------
- gettingProperty: function( nodeID, propertyName, propertyValue ) {
- // var object = this.objects[nodeID];
- // return object && object[propertyName];
- },
- // -- creatingMethod -----------------------------------------------------------------------
- creatingMethod: function( nodeID, methodName, methodParameters, methodBody ) {
- },
- // TODO: deletingMethod
- // -- callingMethod ------------------------------------------------------------------------
- callingMethod: function( nodeID, methodName, methodParameters ) {
- // if (methodName == 'sendOSC') {
- // if (this.osc == null) {
- // this.osc = _OSCManager;
- // }
- // // var msg = {
- // // address: "/hello/from/oscjs",
- // // args: [Math.random()]
- // // };
- // this.osc.port.send(methodParameters);
- // console.log('send: ' + methodParameters);
- // }
- },
- // -- creatingEvent ------------------------------------------------------------------------
- creatingEvent: function( nodeID, eventName, eventParameters ) {
- },
- // TODO: deletingEvent
- // -- firingEvent --------------------------------------------------------------------------
- firingEvent: function( nodeID, eventName, eventParameters ) {
- },
- // -- executing ----------------------------------------------------------------------------
- executing: function( nodeID, scriptText, scriptType ) {
- }
- } );
- } );
|