123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167 |
- this.initialize = function () {
- if(Object.getPrototypeOf(this).id.includes('ascene.vwf')){
- console.log("Initialize of Scene...", this.id);
- this.future(3).clientWatch();
- } else {
- console.log("Initialize proto Scene..", this.id);
- }
-
- //this.createDefaultXRCostume();
- };
- this.clientWatch = function () {
- var self = this;
- if (this.children.length !== 0) {
- var clients = this.find("doc('proxy/clients.vwf')")[0];
- if (clients !== undefined) {
- //console.log(clients.children);
- let clientsArray = [];
- clients.children.forEach(function (element) {
- clientsArray.push(element.name);
- });
- this.children.forEach(function (node) {
- if (node.id.indexOf('avatar-') != -1) {
- if (clientsArray.includes(node.id.slice(7))) {
- //console.log(node.id + 'is here!');
- } else {
- //console.log(node.id + " needed to delete!");
- let idToDelete = node.id.slice(7);
- let nodes = self.children.filter(el=>
- (el.id.includes(idToDelete) &&
- ( el.id.includes('avatar-') ||
- el.id.includes('xrcontroller-') ||
- el.id.includes('mouse-') ||
- el.id.includes('gearvr-')))
-
- );
- nodes.forEach(el => {
- self.children.delete(self.children[el.id])
- })
- // self.children.delete(self.children[node.id]);
- // //'gearvr-'
- // let controllerVR = self.children['gearvr-' + node.id.slice(7)];
- // if (controllerVR) {
- // self.children.delete(controllerVR);
- // }
- // let wmrvR = self.children['wmrvr-right-' + node.id.slice(7)];
- // if (wmrvR) {
- // self.children.delete(wmrvR);
- // }
- // let wmrvL = self.children['wmrvr-left-' + node.id.slice(7)];
- // if (wmrvL) {
- // self.children.delete(wmrvL);
- // }
- }
- }
- });
- }
- }
- this.future(5).clientWatch();
- };
- this.sphereProto = function () {
- let node = {
- "extends": "proxy/aframe/asphere.vwf",
- "properties": {
- "displayName": "sphere",
- "radius": 1,
- "class": "clickable intersectable"
- },
- children: {
- "material": {
- "extends": "proxy/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.cylinderProto = function () {
- let node = {
- "extends": "proxy/aframe/acylinder.vwf",
- "properties": {
- "displayName": "cylinder",
- "radius": 1,
- "height": 1,
- "class": "clickable intersectable"
- },
- children: {
- "material": {
- "extends": "proxy/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.coneProto = function () {
- let node = {
- "extends": "proxy/aframe/acone.vwf",
- "properties": {
- "displayName": "cone",
- "radius-bottom": 1,
- "radius-top": 0.01,
- "height": 1,
- "class": "clickable intersectable"
- },
- children: {
- "material": {
- "extends": "proxy/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.textProto = function (textValue) {
- let value = textValue ? textValue: "Text";
- let node = {
- "extends": "proxy/aframe/atext.vwf",
- "properties": {
- "displayName": "text",
- "color": "white",
- "value": value,
- "side": "double",
- "class": "clickable",
- //"font": "/vwf/model/aframe/fonts/custom-msdf.json",
- "negate": false
- },
- children: {
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.cubeProto = function () {
- let node = {
- "extends": "proxy/aframe/abox.vwf",
- "properties": {
- "displayName": "cube",
- "height": 1,
- "width": 1,
- "depth": 1,
- "class": "clickable intersectable"
- },
- children: {
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- },
- "material": {
- "extends": "proxy/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.lightProto = function (lightType) {
- var newLightType = lightType
- if (!newLightType){
- newLightType = "directional"
- }
- let node = {
- "extends": "proxy/aframe/alight.vwf",
- "properties": {
- "displayName": newLightType,
- "type": newLightType,
- "class": "clickable"
- },
- children: {
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.mirrorProto = function () {
- let newNode = this.cubeProto();
- newNode.properties.width = 3;
- newNode.properties.height = 4;
- newNode.properties.depth= 0.1;
- newNode.children.material.properties.color = "white";
- newNode.children.mirrorComponent = {
- "extends": "proxy/aframe/a-mirror-component.vwf",
- "type": "component",
- "properties": {
- "camera": "avatarControl"
- }
- }
- return newNode
- }
- this.cameraProto = function () {
- let newNode = this.cubeProto();
- newNode.properties.width = 0.3;
- newNode.properties.height = 0.3;
- newNode.properties.depth= 0.5;
- newNode.children.material.properties.opacity = 0.5;
- newNode.children.material.properties.color = "red";
- newNode.children.camera = {
- "extends": "proxy/aframe/acamera.vwf",
- "properties": {
- "look-controls-enabled": false,
- "wasd-controls-enabled": false,
- "user-height": 0
- }
- }
- return newNode
- }
- this.cameraProtoWithOffset = function () {
- let newNode = this.cubeProto();
- newNode.properties.width = 0.3;
- newNode.properties.height = 0.3;
- newNode.properties.depth= 0.5;
- newNode.children.material.properties.opacity = 0.5;
- newNode.children.material.properties.color = "red";
- newNode.children.camera = {
- "extends": "proxy/aframe/acamera.vwf",
- "properties": {
- "look-controls-enabled": false,
- "wasd-controls-enabled": false,
- "user-height": 0
- },
- children: {
- viewoffset: {
- extends: "proxy/aframe/viewOffsetCamera-component.vwf",
- properties: {
- }
- }
-
- }
- }
- return newNode
- }
- this.planeProto = function () {
- let node = {
- "extends": "proxy/aframe/aplane.vwf",
- "properties": {
- "displayName": "plane",
- "height": 1,
- "width": 1,
- "class": "clickable intersectable"
- },
- children: {
- "material": {
- "extends": "proxy/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties": {
- "side": "double",
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "proxy/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.createModelObj = function (mtlSrc, objSrc, name, avatar) {
- var self = this;
- var nodeName = this.GUID();
- let modelNode = {
- "extends": "proxy/aframe/aobjmodel.vwf",
- "properties": {
- "src": '#' + objSrc,
- "mtl": '#' + mtlSrc
- },
- children:{
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- }
- }
- }
- if (name) {
- modelNode.properties.displayName = name;
- }
- self.children.create(nodeName, modelNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
- }
- this.createClock = function (parentName, avatar) {
- var self = this;
- let nodeName = 'clock-' + this.smallRandomId();
- let node = {
- "extends": "proxy/objects/clock.vwf",
- "properties": {
- "displayName": nodeName
- }
- }
- let rootNode = parentName ? this.getChildByName(parentName) : this;
- rootNode.children.create(nodeName, node, function( child ) {
- if (avatar) child.placeInFrontOf(avatar, -2);
- child.init();
- child.run();
-
- })
- }
- this.createLegoBoost = function (boostID, parentName) {
- var self = this;
- let nodeName = 'legoboost-' + this.smallRandomId();
- let legoBoostNode = {
- "extends": "proxy/objects/legoboost.vwf",
- "properties": {
- "boostID": boostID,
- "position": "0 1 0",
- "displayName": boostID,
- "tracking": false
- }
- }
- let rootNode = parentName ? this.getChildByName(parentName) : this;
- rootNode.children.create(nodeName, legoBoostNode, function( child ) {
- child.createVisual();
- child.trackLego();
- })
- }
- this.createModel = function (modelType, modelSrc, avatar) {
- var self = this;
- let tagName = modelType + '-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "proxy/aframe/a-asset-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": modelSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- let nodeName = modelType + '-MODEL-'+self.GUID();
-
- const protos = {
- DAE: "proxy/aframe/acolladamodel.vwf",
- OBJ: "proxy/aframe/aobjmodel.vwf",
- GLTF: "proxy/aframe/agltfmodel.vwf"
- }
- let extendsName = Object.entries(protos).filter(el => el[0] == modelType)[0];
-
- let modelNode = {
- "extends": extendsName[1],
- "properties": {
- "src": '#' + child.itemID,
- "class": "intersectable clickable"
- },
- children:{
- "interpolation":
- {
- "extends": "proxy/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "raycasterListener": {
- "extends": "proxy/aframe/app-raycaster-listener-component.vwf",
- "type": "component"
- }
- }
- }
- self.children.create(nodeName, modelNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
- });
- }
- this.createAssetResource = function(resType, resSrc){
- var self = this;
- const protos = {
- IMG: "proxy/aframe/a-asset-image-item.vwf",
- AUDIO: "proxy/aframe/a-asset-audio-item.vwf",
- VIDEO: "proxy/aframe/a-asset-video-item.vwf",
- ITEM: "proxy/aframe/a-asset-item.vwf"
- };
- let extendsName = Object.entries(protos).filter(el => el[0] == resType)[0];
- let tagName = resType + '-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": extendsName[1],
- "properties": {
- "itemID": tagName,
- "itemSrc": resSrc
- }
- }
- this.children.create(tagName, tagNode);
- }
- this.createDrawNode = function(node, name, color, width, pos) {
- let newNode = {
- extends: "proxy/aframe/aentity.vwf",
- properties: {
- position: pos
- },
- children: {
- linepath: {
- extends: "proxy/aframe/linepath.vwf",
- properties: {
- color: color,
- path: [],
- width: width
- }
- }
- }
- }
- node.children.create(name, newNode);
- }
- this.createPrimitive = function (type, params, name, node, avatar) {
- var displayName = name;
- let nodeName = this.GUID();
- // if (!nodeName) {
- // nodeName = this.GUID();
- // }
- var newNode = {};
- switch (type) {
- case "cube":
- newNode = this.cubeProto();
- break;
- case "sphere":
- newNode = this.sphereProto();
- break;
- case "plane":
- newNode = this.planeProto();
- break;
- case "light":
- newNode = this.lightProto(params.type);
- break;
-
- case "text":
- newNode = this.textProto(params.text);
- break;
- case "cylinder":
- newNode = this.cylinderProto();
- break;
-
- case "cone":
- newNode = this.coneProto();
- break;
- default:
- newNode = undefined;
- break;
- }
- var self = this;
- if (newNode) {
- newNode.implements = [
- "proxy/objects/gui/drag.vwf"
- ]
- if (displayName) {
- newNode.properties.displayName = displayName;
- }
- this.children.create(nodeName, newNode, function( child ) {
- if (avatar) child.placeInFrontOf(avatar, -2)
- //child.lookAt(self.children[avatar].worldPosition());
-
- if (type == "text"){
- child.properties.font = "/drivers/model/aframe/fonts/custom-msdf.json"
- }
- });
- }
- }
- this.createMirror = function (name, node, avatar) {
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- // if (avatar) {
- // let myAvatar = this.children[avatar];
- // let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;
- // if (cursorNode) {
- // position = cursorNode.worldPosition();
- // //console.log(position);
- // }
- // }
- var newNode = this.mirrorProto();
- newNode.properties.displayName = "mirror";
- var self = this;
- if (newNode) {
- this.children.create(nodeName, newNode, function( child ) {
- if (avatar) child.placeInFrontOf(avatar, -2)
- //if (avatar) child.lookAt(self.children[avatar].worldPosition());
- });
- }
- }
- this.createCamera = function (name, node, avatar) {
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- var newNode = this.cameraProto();
- newNode.properties.displayName = "camera";
- var self = this;
- if (newNode) {
- this.children.create(nodeName, newNode, function( child ) {
- if (avatar) child.placeInFrontOf(avatar, -2)
- //if (avatar) child.lookAt(self.children[avatar].worldPosition());
- });
- }
- }
- this.createCameraWithOffset = function (name, node, avatar) {
- var position = "0 0 0";
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- var newNode = this.cameraProtoWithOffset();
- newNode.properties.displayName = "cameraWithOffset";
- var self = this;
- if (newNode) {
- newNode.properties.position = position;
- this.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition());
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
- }
- }
- this.createImage = function (imgSrc, name, node, avatar) {
- var self = this;
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- let tagName = 'IMG-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "proxy/aframe/a-asset-image-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": imgSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- var nodeName = 'IMAGE-'+self.GUID();
-
- let newNode = self.planeProto();
- newNode.properties.displayName = "image";
- newNode.children.material.properties.src = '#' + child.itemID;
- //newNode.properties.position = position;
- newNode.properties.scale = [0.003, 0.003, 0.003];
-
- if(child.width && child.height){
- newNode.properties.width = child.width;
- newNode.properties.height = child.height;
- self.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
-
- } else {
- let allNodes = vwf.models["/drivers/model/aframe"].model.state.nodes;
- let imgAssetNode = allNodes[child.id];
-
- imgAssetNode.aframeObj.onload = function(){
-
- // console.log(imgAssetNode);
- newNode.properties.width = child.width;
- newNode.properties.height = child.height;
-
- self.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
-
- }
- }
-
-
- });
- }
- this.createVideo = function (vidSrc, name, node, avatar) {
- var self = this;
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- let tagName = 'VIDEO-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "proxy/aframe/a-asset-video-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": vidSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- let nodeName = 'VIDEO-'+self.GUID();
-
- let newNode = self.planeProto();
- newNode.properties.displayName = "video";
- newNode.children.material.properties.src = '#' + child.itemID;
- //newNode.properties.position = position;
- // newNode.properties.width = 3;
- // newNode.properties.height = 1.75;
- newNode.properties.scale = [0.003, 0.003, 0.003];
- if (child.videoWidth && child.videoHeight) {
- newNode.properties.width = child.videoWidth;
- newNode.properties.height = child.videoHeight;
- self.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
- } else {
- let allNodes = vwf.models["/drivers/model/aframe"].model.state.nodes;
- let imgAssetNode = allNodes[child.id];
-
- imgAssetNode.aframeObj.onloadeddata = function(){
- newNode.properties.width = child.videoWidth;
- newNode.properties.height = child.videoHeight;
- self.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2)
- });
- }
-
- }
-
- });
- }
- this.createAudio = function (itemSrc, name, node, avatar) {
- var self = this;
- var nodeName = name;
- if (!nodeName) {
- nodeName = this.GUID();
- }
- let tagName = 'AUDIO-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "proxy/aframe/a-asset-audio-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": itemSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- // let allNodes = vwf.models["vwf/model/aframe"].model.state.nodes;
- // let itemAssetNode = allNodes[child.id];
- // itemAssetNode.aframeObj.onload = function(){
- // console.log(itemAssetNode);
- let nodeName = 'AUDIO-'+self.GUID();
-
- let newNode = self.cubeProto();
- newNode.properties.displayName = "audio";
- // newNode.properties.position = position;
- newNode.properties.width = 0.3;
- newNode.properties.height = 0.3;
- newNode.properties.depth= 0.3;
- newNode.children.material.properties.opacity = 0.5;
- newNode.children.material.properties.color = "yellow";
- newNode.children.sound = {
-
- "extends": "proxy/aframe/a-sound-component.vwf",
- "type": "component",
- "properties": {
- "autoplay": false,
- "loop": true,
- "isPlaying": false,
- "src": '#' + child.itemID
- }
-
- };
- self.children.create(nodeName, newNode, function( child ) {
- //if (avatar) child.lookAt(self.children[avatar].worldPosition())
- if (avatar) child.placeInFrontOf(avatar, -2);
- });
- // }
-
- });
- }
- this.createGooglePoly = function(polyID, name, node, avatar){
- // all done in aframe view driver
- let params = [polyID, name, node, avatar];
- this.loadGooglePolyAsset(params)
-
- }
- this.loadGooglePolyAsset = function( params ) {
- var self = this;
- const API_KEY = "AIzaSyCGx2_idlUJ88yW5GBkOllIkyxJyKbEgDk";
- const id = params[0];
- const avatarID = params[3];
- var url = `https://poly.googleapis.com/v1/assets/${id}/?key=${API_KEY}`;
- var request = new XMLHttpRequest();
- request.open( 'GET', url, true );
- request.addEventListener( 'load', function ( event ) {
- var asset = JSON.parse( event.target.response );
- // asset_name.textContent = asset.displayName;
- // asset_author.textContent = asset.authorName;
- var format = asset.formats.find( format => { return format.formatType === 'OBJ'; } );
- if ( format !== undefined ) {
- var obj = format.root;
- var mtl = format.resources.find( resource => { return resource.url.endsWith( 'mtl' ) } );
- var path = obj.url.slice( 0, obj.url.indexOf( obj.relativePath ) );
-
- //const createOnNodeID = vwf.application();
- let mtlName = 'MTL-ASSET-'+ self.GUID();
- let mtlNode = {
- "extends": "proxy/aframe/a-asset-item.vwf",
- "properties": {
- "itemID": mtlName,
- "itemSrc": mtl.url
- }
- }
-
- self.children.create(mtlName, mtlNode, function( mtlChild ) {
- let objName = 'OBJ-ASSET-'+ self.GUID();
- let objNode = {
- "extends": "proxy/aframe/a-asset-item.vwf",
- "properties": {
- "itemID": objName,
- "itemSrc": obj.url
- }
- }
- self.children.create(objName, objNode, function( objChild ) {
- self.createModelObj(mtlChild.itemID, objChild.itemID, asset.displayName, avatarID);
- })
- })
- }
- } );
- request.send( null );
- }
- this.GUID = function () {
- var self = this;
- var S4 = function () {
- return Math.floor(
- self.random() * 0x10000 /* 65536 */
- ).toString(16);
- };
- return (
- S4() + S4() + "-" +
- S4() + "-" +
- S4() + "-" +
- S4() + "-" +
- S4() + S4() + S4()
- );
- }
- this.smallRandomId = function() {
- return '_' + this.random().toString(36).substr(2, 9);
- }
- this.assetImgProto = function () {
- let node = {
- "extends": "proxy/aframe/a-asset-image-item.vwf",
- "properties": {
- },
- }
- return node
- }
- this.createAssetItemImg = function(){
- console.log("create new asset item for img");
- let nodeName = "asset-item-img-" + this.smallRandomId();
- let newNode = {
- "extends": "proxy/aframe/a-asset-image-item.vwf",
- "properties": {
- itemID: nodeName,
- itemSrc: ""
- }
- }
- this.children.create(nodeName, newNode);
- }
- this.deleteNode = function(nodeName){
- let node = this.children[nodeName];
- if (node) this.children.delete(node);
- }
- this.enterVR = function(){
- console.log("ENTER VR");
- }
- this.exitVR = function(){
- console.log("EXIT VR");
- }
- this.getChildByName = function (name) {
- let nodes = this.children.filter(el => el.displayName == name);
- return nodes[0]
- }
- this.getAllChildsByName = function (name) {
- let nodes = this.children.filter(el => el.displayName == name);
- return nodes
- }
- this.getDefaultXRCostume = function(){
- let myColor = "white";
-
- let defaultXRCostume = {
- "includes": "proxy/objects/xrcostume.vwf",
- "properties": {
- displayName: "defaultXRCostume",
- "position": "0 0 0",
- "avatarColor": myColor
- },
- children: {
- "cursorVisual": {
- "extends": "proxy/objects/cursorVisual.vwf",
- "type": "",
- "properties": {
- "color": myColor,
- "position": "0 0 0"
- }
- }
- }
- }
- return defaultXRCostume
- }
|