1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432 |
- "use strict";
- // VWF & A-Frame model driver
- // Copyright 2017 Krestianstvo.org project
- //
- // Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
- // Secretary of Defense (Personnel & Readiness).
- //
- // 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.
- /// vwf/model/scenejs.js is a placeholder for a 3-D scene manager.
- ///
- /// @module vwf/model/aframe
- /// @requires vwf/model
- define(["module", "vwf/model", "vwf/utility"], function (module, model, utility) {
- var self;
- return model.load(module, {
- // == Module Definition ====================================================================
- // -- initialize ---------------------------------------------------------------------------
- initialize: function () {
- self = this;
- this.state = {
- nodes: {},
- scenes: {},
- prototypes: {},
- createLocalNode: function (nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback) {
- return {
- "parentID": nodeID,
- "ID": childID,
- "extendsID": childExtendsID,
- "implementsIDs": childImplementsIDs,
- "source": childSource,
- "type": childType,
- "name": childName,
- "prototypes": undefined,
- "aframeObj": undefined,
- "scene": undefined,
- "componentName": undefined,
- "events": {
- "clickable": false
- }
- };
- },
- isAFrameClass: function (prototypes, classID) {
- if (prototypes) {
- for (var i = 0; i < prototypes.length; i++) {
- if (prototypes[i] === classID) {
- //console.info( "prototypes[ i ]: " + prototypes[ i ] );
- return true;
- }
- }
- }
- return false;
- },
- isAFrameComponent: function (prototypes) {
- var found = false;
- if (prototypes) {
- for (var i = 0; i < prototypes.length && !found; i++) {
- found = (prototypes[i] === "http://vwf.example.com/aframe/node.vwf");
- }
- }
- return found;
- },
- setAFrameProperty: function (propertyName, propertyValue, aframeObject) {
- //console.log(propertyValue);
- if (propertyValue.hasOwnProperty('x')) {
- aframeObject.setAttribute(propertyName, propertyValue)
- } else
- if (Array.isArray(propertyValue)) {
- aframeObject.setAttribute(propertyName, { x: propertyValue[0], y: propertyValue[1], z: propertyValue[2] })
- } else if (typeof propertyValue === 'string') {
- aframeObject.setAttribute(propertyName, AFRAME.utils.coordinates.parse(propertyValue))
- }
-
- }
- };
- this.state.kernel = this.kernel.kernel.kernel;
- this.aframeDef = {
- 'A-BOX': [
- 'depth', 'height', 'segments-depth',
- 'segments-height', 'segments-width',
- 'width'],
- 'A-SPHERE': [
- 'phi-length', 'phi-start', 'radius',
- 'segments-depth',
- 'segments-height', 'segments-width',
- 'theta-length', 'theta-start'
- ],
- 'A-CYLINDER': [
- 'height', 'radius',
- 'open-ended', 'radius-bottom', 'radius-top',
- 'segments-height', 'segments-radial',
- 'theta-length', 'theta-start'
- ],
- 'A-CONE': [
- 'height',
- 'open-ended', 'radius-bottom', 'radius-top',
- 'segments-height', 'segments-radial',
- 'theta-length', 'theta-start'
- ],
- 'A-PLANE': [
- 'height', 'segments-height', 'segments-width','width'
- ],
- 'A-TEXT': [
- 'align', 'alpha-test', 'anchor',
- 'baseline', 'color', 'font',
- 'font-image', 'height',
- 'letter-spacing', 'line-height',
- 'opacity', 'shader',
- 'side', 'tab-size',
- 'transparent', 'value',
- 'white-space', 'width',
- 'wrap-count', 'wrap-pixels',
- 'z-offset'
- ],
- 'A-SKY': [
- 'phi-length', 'phi-start', 'radius','segments-height',
- 'segments-width',
- 'theta-length', 'theta-start',
- ],
- 'A-LIGHT': [
- 'angle', 'color', 'decay', 'distance',
- 'ground-color', 'intensity', 'penumbra',
- 'type', 'target'
- ]
- }
-
-
- },
- // == Model API ============================================================================
- // -- creatingNode -------------------------------------------------------------------------
- creatingNode: function (nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback /* ( ready ) */) {
- // If the parent nodeID is 0, this node is attached directly to the root and is therefore either
- // the scene or a prototype. In either of those cases, save the uri of the new node
- var childURI = (nodeID === 0 ? childIndex : undefined);
- var appID = this.kernel.application();
- // If the node being created is a prototype, construct it and add it to the array of prototypes,
- // and then return
- var prototypeID = utility.ifPrototypeGetId(appID, this.state.prototypes, nodeID, childID);
- if (prototypeID !== undefined) {
- this.state.prototypes[prototypeID] = {
- parentID: nodeID,
- ID: childID,
- extendsID: childExtendsID,
- implementsID: childImplementsIDs,
- source: childSource,
- type: childType,
- name: childName
- };
- return;
- }
- var protos = getPrototypes(this.kernel, childExtendsID);
- //var kernel = this.kernel.kernel.kernel;
- var node;
- if (this.state.isAFrameComponent(protos)) {
- // Create the local copy of the node properties
- if (this.state.nodes[childID] === undefined) {
- this.state.nodes[childID] = this.state.createLocalNode(nodeID, childID, childExtendsID, childImplementsIDs,
- childSource, childType, childIndex, childName, callback);
- }
- node = this.state.nodes[childID];
- node.prototypes = protos;
- // if (childType == "component") {
- // if (nodeID !== undefined) {
- // node.aframeObj = setAFrameObjectComponents(node);
- // addNodeToHierarchy(node);
- // }
- // } else {
- node.aframeObj = createAFrameObject(node);
- addNodeToHierarchy(node);
- //notifyDriverOfPrototypeAndBehaviorProps();
- // }
- //addNodeToHierarchy(node);
- }
- },
- // initializingNode: function( nodeID, childID, childExtendsID, childImplementsIDs,
- // childSource, childType, childIndex, childName ) {
- // var node = this.state.nodes[childID];
- // if ( node && childType == "component" ) {
- // }
- // },
- // -- initializingProperty -----------------------------------------------------------------
- initializingProperty: function (nodeID, propertyName, propertyValue) {
- var value = undefined;
- var node = this.state.nodes[nodeID];
- if (node !== undefined) {
- value = this.settingProperty(nodeID, propertyName, propertyValue);
- }
- return value;
- },
- // -- creatingProperty ---------------------------------------------------------------------
- creatingProperty: function (nodeID, propertyName, propertyValue) {
- return this.initializingProperty(nodeID, propertyName, propertyValue);
- },
- // -- callingMethod ------------------------------------------------------------------------
- callingMethod: function( nodeID, methodName, methodParameters ) {
- var node = this.state.nodes[nodeID];
- if(!node) return;
- if (node && node.aframeObj ) {
- if (methodName == 'lookAt') {
- console.log('lookAt: ' + methodParameters[0]);
- let target = methodParameters[0];
- node.aframeObj.object3D.lookAt(new THREE.Vector3(target.x, target.y, target.z));
- let newRotation = node.aframeObj.getAttribute('rotation');
- self.kernel.setProperty(nodeID, "rotation", {x: 0, y: newRotation.y, z: 0});
- }
- if (methodName == 'worldRotation') {
- var worldQuat = new THREE.Quaternion();
- node.aframeObj.object3D.getWorldQuaternion(worldQuat);
- let angle = (new THREE.Euler()).setFromQuaternion(worldQuat, 'YXZ');
- let rotation = (new THREE.Vector3(THREE.Math.radToDeg(angle.x),
- THREE.Math.radToDeg(angle.y), THREE.Math.radToDeg(angle.z) ));
- return rotation
- }
- if (methodName == 'worldPosition') {
- var position = new THREE.Vector3();
- node.aframeObj.object3D.getWorldPosition(position);
- return position
- }
- }
-
- },
- // -- deletingNode -------------------------------------------------------------------------
- //deletingNode: function( nodeID ) {
- //},
- // -- deletingNode -------------------------------------------------------------------------
- deletingNode: function (nodeID) {
- if (nodeID) {
- var childNode = this.state.nodes[nodeID];
- if (!childNode) return;
- if (childNode !== undefined) {
- if (childNode.children) {
- for (var i = 0; i < childNode.children.length; i++) {
- this.deletingNode(childNode.children[i]);
- }
- }
- if (childNode.aframeObj !== undefined) {
- // removes and destroys object
- childNode.aframeObj.parentNode.removeChild(childNode.aframeObj);
- childNode.aframeObj = undefined;
- }
- delete this.state.nodes[nodeID];
- }
- }
- },
- // -- settingProperty ----------------------------------------------------------------------
- settingProperty: function (nodeID, propertyName, propertyValue) {
- var node = this.state.nodes[nodeID];
- var value = undefined;
- // if (node.componentName == 'line') {
- // console.log(node.aframeObj);
- // }
- if (node && node.aframeObj && utility.validObject(propertyValue)) {
- var aframeObject = node.aframeObj;
- if (isNodeDefinition(node.prototypes)) {
- // 'id' will be set to the nodeID
- value = propertyValue;
- switch (propertyName) {
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && isAEntityDefinition(node.prototypes)) {
- value = propertyValue;
- switch (propertyName) {
- case "position":
- this.state.setAFrameProperty('position', propertyValue, aframeObject);
- break;
- case "rotation":
- this.state.setAFrameProperty('rotation', propertyValue, aframeObject);
- break;
- case "scale":
- this.state.setAFrameProperty('scale', propertyValue, aframeObject);
- break;
- case "clickable":
- if (propertyValue) {
- aframeObject.setAttribute('class', 'intersectable');
- } else {
- aframeObject.setAttribute('class', 'nonintersectable');
- }
- node.events.clickable = propertyValue;
- break;
- case "visible":
- aframeObject.setAttribute('visible', propertyValue);
- break;
- // case "clickable":
- // console.log("set clickable!");
- // value = propertyValue;
- // break;
- // case "clickable":
- // if (propertyValue) {
- // aframeObject.addEventListener('click', function (evt) {
- // console.log("click!");
- // vwf_view.kernel.fireEvent(node.ID, "clickEvent",evt.detail.cursorEl.id);
- // });
- // }
- // break;
- // case "look-controls-enabled":
- // aframeObject.setAttribute('look-controls', 'enabled', propertyValue);
- // break;
- case "wasd-controls":
- aframeObject.setAttribute('wasd-controls', 'enabled', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-ASSET-ITEM") {
- value = propertyValue;
- switch (propertyName) {
- case "itemID":
- aframeObject.setAttribute('id', propertyValue);
- break;
- case "itemSrc":
- aframeObject.setAttribute('src', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "IMG") {
- value = propertyValue;
- switch (propertyName) {
- case "itemID":
- aframeObject.setAttribute('id', propertyValue);
- break;
- case "itemSrc":
- aframeObject.setAttribute('src', propertyValue);
- break;
- // case "width":
- // aframeObject.width = propertyValue;
- // break;
- // case "height":
- // aframeObject.height = propertyValue;
- // break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "AUDIO") {
- value = propertyValue;
- switch (propertyName) {
- case "itemID":
- aframeObject.setAttribute('id', propertyValue);
- break;
- case "itemSrc":
- aframeObject.setAttribute('src', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "VIDEO") {
- value = propertyValue;
- switch (propertyName) {
- case "itemID":
- aframeObject.setAttribute('id', propertyValue);
- break;
- case "itemSrc":
- aframeObject.setAttribute('src', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-SKY") {
- value = propertyValue;
- self.aframeDef['A-SKY'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-TEXT") {
- value = propertyValue;
- self.aframeDef['A-TEXT'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
-
- }
- if (value === undefined && aframeObject.nodeName == "A-SCENE") {
- value = propertyValue;
- switch (propertyName) {
- case "color":
- aframeObject.setAttribute('background', {'color': propertyValue} );
- break;
- case "transparent":
- aframeObject.setAttribute('background', {'transparent': propertyValue} );
- break;
- // case "fog":
- // aframeObject.setAttribute('fog', propertyValue);
- // break;
- case "assets":
- let assetsEl = document.querySelector('a-assets');
- if (!assetsEl) {
- let newAssetsEl = document.createElement('a-assets');
- aframeObject.appendChild(newAssetsEl);
- }
- var assetsElement = document.querySelector('a-assets');
- if (propertyValue) {
- httpGetJson(propertyValue).then(function (response) {
- console.log(JSON.parse(response));
- let assets = JSON.parse(response);
- for (var prop in assets) {
- var elm = document.createElement(assets[prop].tag);
- elm.setAttribute('id', prop);
- elm.setAttribute('src', assets[prop].src);
- assetsElement.appendChild(elm);
- }
- }).catch(function (error) {
- console.log(error);
- });
- }
- break;
- default:
- value = undefined;
- break;
- }
- }
-
-
-
- if (value === undefined && aframeObject.nodeName == "A-BOX") {
- value = propertyValue;
- self.aframeDef['A-BOX'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-LIGHT") {
- value = propertyValue;
- self.aframeDef['A-LIGHT'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- switch (propertyName) {
- case "castShadow":
- aframeObject.setAttribute('light', 'castShadow', propertyValue);
- break;
- case "shadowCameraVisible":
- aframeObject.setAttribute('light', 'shadowCameraVisible', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-GLTF-MODEL") {
- value = propertyValue;
- switch (propertyName) {
- case "src":
- aframeObject.setAttribute('src', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-COLLADA-MODEL") {
- value = propertyValue;
- switch (propertyName) {
- case "src":
- aframeObject.setAttribute('src', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-OBJ-MODEL") {
- value = propertyValue;
- switch (propertyName) {
- case "src":
- aframeObject.setAttribute('src', propertyValue);
- break;
- case "mtl":
- aframeObject.setAttribute('mtl', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-PLANE") {
- value = propertyValue;
- self.aframeDef['A-PLANE'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-SPHERE") {
- value = propertyValue;
- self.aframeDef['A-SPHERE'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-CYLINDER") {
- value = propertyValue;
- self.aframeDef['A-CYLINDER'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-CONE") {
- value = propertyValue;
- self.aframeDef['A-CONE'].forEach(element => {
- element == propertyName ? aframeObject.setAttribute(element, propertyValue) :
- value = undefined;
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-ANIMATION") {
- value = propertyValue;
- switch (propertyName) {
- // attribute:
- // dur:
- // from:
- // to:
- // repeat:
- case "dur":
- aframeObject.setAttribute('dur', propertyValue);
- break;
- case "from":
- aframeObject.setAttribute('from', propertyValue);
- break;
- case "to":
- aframeObject.setAttribute('to', propertyValue);
- break;
- case "repeat":
- aframeObject.setAttribute('repeat', propertyValue);
- break;
- case "attribute":
- aframeObject.setAttribute('attribute', propertyValue);
- break;
- case "begin":
- aframeObject.setAttribute('begin', propertyValue);
- break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-CAMERA") {
- value = propertyValue;
- switch (propertyName) {
- case "user-height":
- aframeObject.setAttribute('user-height', propertyValue);
- break;
- case "look-controls-enabled":
- aframeObject.setAttribute('look-controls-enabled', propertyValue);
- break;
- case "wasd-controls-enabled":
- aframeObject.setAttribute('wasd-controls-enabled', propertyValue);
- break;
- // case "active":
- // aframeObject.setAttribute('camera', 'active', propertyValue);
- // break;
- default:
- value = undefined;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-SUN-SKY") {
- value = propertyValue;
- switch (propertyName) {
- case "sunPosition":
- aframeObject.setAttribute('material', 'sunPosition', propertyValue);
- break;
- // case "active":
- // aframeObject.setAttribute('camera', 'active', propertyValue);
- // break;
- default:
- value = undefined;
- break;
- }
- }
- }
- return value;
- },
- // -- gettingProperty ----------------------------------------------------------------------
- gettingProperty: function (nodeID, propertyName, propertyValue) {
- var node = this.state.nodes[nodeID];
- var value = undefined;
- if (node && node.aframeObj) {
- var aframeObject = node.aframeObj;
- if (isNodeDefinition(node.prototypes)) {
- switch (propertyName) {
- }
- }
- if (value === undefined && isAEntityDefinition(node.prototypes)) {
- switch (propertyName) {
- case "position":
- var pos = aframeObject.getAttribute('position');
- if (pos !== undefined) {
- value = pos//[pos.x, pos.y, pos.z]//AFRAME.utils.coordinates.stringify(pos);
- }
- break;
- case "scale":
- var scale = aframeObject.getAttribute('scale');
- if (scale !== undefined) {
- value = scale//AFRAME.utils.coordinates.stringify(scale);
- }
- break;
- case "rotation":
- var rot = aframeObject.getAttribute('rotation');
- if (rot !== undefined) {
- value = rot//AFRAME.utils.coordinates.stringify(rot);
- }
- break;
- case "clickable":
- value = node.events.clickable;
- break;
- // case "look-controls-enabled":
- // var look = aframeObject.getAttribute('look-controls-enabled');
- // if (look !== null && look !== undefined) {
- // value = aframeObject.getAttribute('look-controls').enabled;
- // }
- // break;
- // case "wasd-controls":
- // var wasd = aframeObject.getAttribute('wasd-controls');
- // if (wasd !== null && wasd !== undefined) {
- // value = aframeObject.getAttribute('wasd-controls').enabled;
- // }
- // break;
- case "visible":
- value = aframeObject.getAttribute('visible');
- break;
- }
- }
-
- if (value === undefined && aframeObject.nodeName == "A-ASSET-ITEM") {
- switch (propertyName) {
-
- case "itemID":
- value = aframeObject.getAttribute('id');
- break;
-
- case "itemSrc":
- value = aframeObject.getAttribute('src');
- break;
-
- }
- }
- if (value === undefined && aframeObject.nodeName == "IMG") {
- switch (propertyName) {
-
- case "itemID":
- value = aframeObject.getAttribute('id');
- break;
-
- case "itemSrc":
- value = aframeObject.getAttribute('src');
- break;
- case "width":
- value = aframeObject.width;
- break;
- case "height":
- value = aframeObject.height;
- break;
-
- }
- }
- if (value === undefined && aframeObject.nodeName == "AUDIO") {
- switch (propertyName) {
-
- case "itemID":
- value = aframeObject.getAttribute('id');
- break;
-
- case "itemSrc":
- value = aframeObject.getAttribute('src');
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "VIDEO") {
- switch (propertyName) {
-
- case "itemID":
- value = aframeObject.getAttribute('id');
- break;
-
- case "itemSrc":
- value = aframeObject.getAttribute('src');
- break;
- case "videoWidth":
- value = aframeObject.videoWidth;
- break;
- case "videoHeight":
- value = aframeObject.videoHeight;
- break;
-
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-SCENE") {
- switch (propertyName) {
- // case "fog":
- // value = aframeObject.getAttribute('fog');
- // break;
-
- case "color":
- if (aframeObject.getAttribute('background')) {
- value = aframeObject.getAttribute('background').color;
- }
- break;
- case "transparent":
- if (aframeObject.getAttribute('background')) {
- value = aframeObject.getAttribute('background').transparent;
- }
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-SKY") {
-
- self.aframeDef['A-SKY'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
-
- if (value === undefined && aframeObject.nodeName == "A-LIGHT") {
- self.aframeDef['A-LIGHT'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- switch (propertyName) {
- case "castShadow":
- value = aframeObject.getAttribute('light').castShadow;
- break;
- case "shadowCameraVisible":
- value = aframeObject.getAttribute('light').shadowCameraVisible;
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-BOX") {
-
- self.aframeDef['A-BOX'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-PLANE") {
- self.aframeDef['A-PLANE'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-SPHERE") {
- self.aframeDef['A-SPHERE'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-CYLINDER") {
- self.aframeDef['A-CYLINDER'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-CONE") {
- self.aframeDef['A-CONE'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-TEXT") {
- self.aframeDef['A-TEXT'].forEach(element => {
- if (element == propertyName) {
- value = aframeObject.getAttribute(element);
- }
- })
- }
- if (value === undefined && aframeObject.nodeName == "A-ANIMATION") {
- switch (propertyName) {
- case "attribute":
- value = aframeObject.getAttribute('attribute');
- break;
- case "dur":
- value = aframeObject.getAttribute('dur');
- break;
- case "from":
- value = aframeObject.getAttribute('from');
- break;
- case "to":
- value = aframeObject.getAttribute('to');
- break;
- case "repeat":
- value = aframeObject.getAttribute('repeat');
- break;
- case "begin":
- value = aframeObject.getAttribute('begin');
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-CAMERA") {
- switch (propertyName) {
- case "user-height":
- value = aframeObject.getAttribute('user-height');
- break;
- case "look-controls-enabled":
- value = aframeObject.getAttribute('look-controls-enabled');
- break;
- case "wasd-controls-enabled":
- value = aframeObject.getAttribute('wasd-controls-enabled');
- break;
- }
- // switch (propertyName) {
- // case "active":
- // value = aframeObject.getAttribute('camera').active;
- // break;
- // }
- }
- if (value === undefined && aframeObject.nodeName == "A-SUN-SKY") {
-
-
- switch (propertyName) {
- case "sunPosition":
- value = aframeObject.getAttribute('material').sunPosition;
- break;
- }
-
- // switch (propertyName) {
- // case "active":
- // value = aframeObject.getAttribute('camera').active;
- // break;
- // }
- }
- if (value === undefined && aframeObject.nodeName == "A-COLLADA-MODEL") {
- switch (propertyName) {
- case "src":
- value = aframeObject.getAttribute('src');
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-OBJ-MODEL") {
- switch (propertyName) {
- case "src":
- value = aframeObject.getAttribute('src');
- break;
- case "mtl":
- value = aframeObject.getAttribute('mtl');
- break;
- }
- }
- if (value === undefined && aframeObject.nodeName == "A-GLTF-MODEL") {
-
- switch (propertyName) {
- case "src":
- value = aframeObject.getAttribute('src');
- break;
- }
- }
- }
- if (value !== undefined) {
- propertyValue = value;
- }
- return value;
- }
- });
- function createAFrameObject(node, config) {
- var protos = node.prototypes;
- var aframeObj = undefined;
- if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/ascene.vwf")) {
- aframeObj = document.createElement('a-scene');
- let assetsElement = document.createElement('a-assets');
- aframeObj.appendChild(assetsElement);
- aframeObj.setAttribute('scene-utils', "");
- self.state.scenes[node.ID] = aframeObj;
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/a-asset-item.vwf")) {
- let assets = document.querySelector('a-assets');
- if (assets){
- aframeObj = document.createElement('a-asset-item');
- aframeObj.setAttribute('id', "item-"+GUID());
- aframeObj.setAttribute('src', "");
- aframeObj.setAttribute('crossorigin', "anonymous");
- assets.appendChild(aframeObj);
- }
-
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/a-asset-image-item.vwf")) {
- let assets = document.querySelector('a-assets');
- if (assets){
- aframeObj = document.createElement('img');
- aframeObj.setAttribute('id', "item-"+GUID());
- aframeObj.setAttribute('src', "");
- aframeObj.setAttribute('crossorigin', "anonymous");
- assets.appendChild(aframeObj);
- }
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/a-asset-audio-item.vwf")) {
- let assets = document.querySelector('a-assets');
- if (assets){
- aframeObj = document.createElement('audio');
- aframeObj.setAttribute('id', "item-"+GUID());
- aframeObj.setAttribute('src', "");
- aframeObj.setAttribute('crossorigin', "anonymous");
- assets.appendChild(aframeObj);
- }
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/a-asset-video-item.vwf")) {
- let assets = document.querySelector('a-assets');
- if (assets){
- aframeObj = document.createElement('video');
- aframeObj.setAttribute('id', "item-"+GUID());
- aframeObj.setAttribute('src', "");
- aframeObj.setAttribute('crossorigin', "anonymous");
- aframeObj.setAttribute('autoplay', "");
- aframeObj.setAttribute('loop', true);
- assets.appendChild(aframeObj);
- }
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/asky.vwf")) {
- aframeObj = document.createElement('a-sky');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/acamera.vwf")) {
- aframeObj = document.createElement('a-camera');
- aframeObj.setAttribute('camera', 'active', false);
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/alight.vwf")) {
- aframeObj = document.createElement('a-light');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/acursor.vwf")) {
- aframeObj = document.createElement('a-cursor');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/a-sun-sky.vwf")) {
- aframeObj = document.createElement('a-sun-sky');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/abox.vwf")) {
- aframeObj = document.createElement('a-box');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/aplane.vwf")) {
- aframeObj = document.createElement('a-plane');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/acylinder.vwf")) {
- aframeObj = document.createElement('a-cylinder');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/acone.vwf")) {
- aframeObj = document.createElement('a-cone');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/atext.vwf")) {
- aframeObj = document.createElement('a-text');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/acolladamodel.vwf")) {
- aframeObj = document.createElement('a-collada-model');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/aobjmodel.vwf")) {
- aframeObj = document.createElement('a-obj-model');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/agltfmodel.vwf")) {
- aframeObj = document.createElement('a-gltf-model');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/asphere.vwf")) {
- aframeObj = document.createElement('a-sphere');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/aanimation.vwf")) {
- aframeObj = document.createElement('a-animation');
- } else if (self.state.isAFrameClass(protos, "http://vwf.example.com/aframe/aentity.vwf")) {
- aframeObj = document.createElement('a-entity');
- }
- if (aframeObj.nodeName !== "A-ASSET-ITEM" &&
- aframeObj.nodeName !== "IMG" &&
- aframeObj.nodeName !== "AUDIO" &&
- aframeObj.nodeName !== "VIDEO"
- ){
- aframeObj.setAttribute('id', node.ID);
- }
-
- return aframeObj;
- }
- function addNodeToHierarchy(node) {
- if (node.aframeObj) {
- if (self.state.nodes[node.parentID] !== undefined) {
- var parent = self.state.nodes[node.parentID];
- if (parent.aframeObj) {
- if (parent.children === undefined) {
- parent.children = [];
- }
- parent.children.push(node.ID);
- //console.info( "Adding child: " + childID + " to " + nodeID );
- if (node.aframeObj.nodeName !== "A-ASSET-ITEM" &&
- node.aframeObj.nodeName !== "IMG" &&
- node.aframeObj.nodeName !== "AUDIO" &&
- node.aframeObj.nodeName !== "VIDEO"
- ){
- parent.aframeObj.appendChild(node.aframeObj);
- }
- }
- }
- if (node.aframeObj.nodeName !== "A-SCENE") {
- node.scene = self.state.scenes[self.kernel.application()];
- }
- }
- }
- function getPrototypes(kernel, extendsID) {
- var prototypes = [];
- var id = extendsID;
- while (id !== undefined) {
- prototypes.push(id);
- id = kernel.prototype(id);
- }
- return prototypes;
- }
- function isNodeDefinition(prototypes) {
- var found = false;
- if (prototypes) {
- for (var i = 0; i < prototypes.length && !found; i++) {
- found = (prototypes[i] == "http://vwf.example.com/aframe/node.vwf");
- }
- }
- return found;
- }
- function isAEntityDefinition(prototypes) {
- var found = false;
- if (prototypes) {
- for (var i = 0; i < prototypes.length && !found; i++) {
- found = (prototypes[i] == "http://vwf.example.com/aframe/aentity.vwf");
- }
- }
- return found;
- }
- // Changing this function significantly from the GLGE code
- // Will search hierarchy down until encountering a matching child
- // Will look into nodes that don't match.... this might not be desirable
- function FindChildByName(obj, childName, childType, recursive) {
- var child = undefined;
- if (recursive) {
- // TODO: If the obj itself has the child name, the object will be returned by this function
- // I don't think this this desirable.
- if (nameTest.call(this, obj, childName)) {
- child = obj;
- } else if (obj.children && obj.children.length > 0) {
- for (var i = 0; i < obj.children.length && child === undefined; i++) {
- child = FindChildByName(obj.children[i], childName, childType, true);
- }
- }
- } else {
- if (obj.children) {
- for (var i = 0; i < obj.children.length && child === undefined; i++) {
- if (nameTest.call(this, obj.children[i], childName)) {
- child = obj.children[i];
- }
- }
- }
- }
- return child;
- }
- function nameTest(obj, name) {
- if (obj.name == "") {
- return (obj.parent.name + "Child" == name);
- } else {
- return (obj.name == name || obj.id == name || obj.vwfID == name);
- }
- }
- function httpGet(url) {
- return new Promise(function (resolve, reject) {
- // do the usual Http request
- let request = new XMLHttpRequest();
- request.open('GET', url);
- request.onload = function () {
- if (request.status == 200) {
- resolve(request.response);
- } else {
- reject(Error(request.statusText));
- }
- };
- request.onerror = function () {
- reject(Error('Network Error'));
- };
- request.send();
- });
- }
- async function httpGetJson(url) {
- // check if the URL looks like a JSON file and call httpGet.
- let regex = /\.(json)$/i;
- if (regex.test(url)) {
- // call the async function, wait for the result
- return await httpGet(url);
- } else {
- throw Error('Bad Url Format');
- }
- }
- function GUID() {
- var S4 = function () {
- return Math.floor(
- Math.random() * 0x10000 /* 65536 */
- ).toString(16);
- };
- return (
- S4() + S4() + "-" +
- S4() + "-" +
- S4() + "-" +
- S4() + "-" +
- S4() + S4() + S4()
- );
- }
- });
|