12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241 |
- this.initialize = function () {
- this.future(3).clientWatch();
- //this.createDefaultXRCostume();
- };
- this.clientWatch = function () {
- var self = this;
- if (this.children.length !== 0) {
- var clients = this.find("doc('http://vwf.example.com/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('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": "http://vwf.example.com/aframe/asphere.vwf",
- "properties": {
- "displayName": "sphere",
- "radius": 1,
- "class": "intersectable"
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.cylinderProto = function () {
- let node = {
- "extends": "http://vwf.example.com/aframe/acylinder.vwf",
- "properties": {
- "displayName": "cylinder",
- "radius": 1,
- "height": 1,
- "class": "clickable"
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.coneProto = function () {
- let node = {
- "extends": "http://vwf.example.com/aframe/acone.vwf",
- "properties": {
- "displayName": "cone",
- "radius-bottom": 1,
- "radius-top": 0.01,
- "height": 1,
- "class": "clickable"
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.textProto = function (textValue) {
- let value = textValue ? textValue: "Text";
- let node = {
- "extends": "http://vwf.example.com/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": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.cubeProto = function () {
- let node = {
- "extends": "http://vwf.example.com/aframe/abox.vwf",
- "properties": {
- "displayName": "cube",
- "height": 1,
- "width": 1,
- "depth": 1,
- "class": "clickable"
- },
- children: {
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- },
- "material": {
- "extends": "http://vwf.example.com/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": "http://vwf.example.com/aframe/alight.vwf",
- "properties": {
- "displayName": newLightType,
- "type": newLightType,
- "class": "clickable"
- },
- children: {
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/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": "http://vwf.example.com/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": "http://vwf.example.com/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": "http://vwf.example.com/aframe/acamera.vwf",
- "properties": {
- "look-controls-enabled": false,
- "wasd-controls-enabled": false,
- "user-height": 0
- },
- children: {
- viewoffset: {
- extends: "http://vwf.example.com/aframe/viewOffsetCamera-component.vwf",
- properties: {
- }
- }
-
- }
- }
- return newNode
- }
- this.planeProto = function () {
- let node = {
- "extends": "http://vwf.example.com/aframe/aplane.vwf",
- "properties": {
- "displayName": "plane",
- "height": 1,
- "width": 1,
- "class": "clickable"
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties": {
- "side": "double",
- "color": "white"
- }
- },
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- },
- "cursor-listener": {
- "extends": "http://vwf.example.com/aframe/app-cursor-listener-component.vwf",
- "type": "component"
- }
- },
- events: {
- "clickEvent": {
- "body": ""
- }
- }
- }
- return node
- }
- this.createModelObj = function (mtlSrc, objSrc, name, avatar) {
- var self = this;
- var position = "0 0 0";
- var 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);
- }
- }
- let modelNode = {
- "extends": "http://vwf.example.com/aframe/aobjmodel.vwf",
- "properties": {
- "src": '#' + objSrc,
- "mtl": '#' + mtlSrc,
- "position": position
- },
- children:{
- "interpolation":
- {
- "extends": "http://vwf.example.com/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())
- });
- }
- this.createModel = function (modelType, modelSrc, avatar) {
- var self = this;
- let tagName = modelType + '-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "http://vwf.example.com/aframe/a-asset-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": modelSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- let nodeName = modelType + '-MODEL-'+self.GUID();
- var position = "0 0 0";
- if (avatar) {
-
- let myAvatar = self.children[avatar];
- let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;
-
- if (cursorNode) {
- position = cursorNode.worldPosition();
- //console.log(position);
- }
-
- }
-
- const protos = {
- DAE: "http://vwf.example.com/aframe/acolladamodel.vwf",
- OBJ: "http://vwf.example.com/aframe/aobjmodel.vwf",
- GLTF: "http://vwf.example.com/aframe/agltfmodel.vwf"
- }
- let extendsName = Object.entries(protos).filter(el => el[0] == modelType)[0];
-
- let modelNode = {
- "extends": extendsName[1],
- "properties": {
- "src": '#' + child.itemID,
- "position": position
- },
- children:{
- "interpolation":
- {
- "extends": "http://vwf.example.com/aframe/interpolation-component.vwf",
- "type": "component",
- "properties": {
- "enabled": true
- }
- }
- }
- }
- self.children.create(nodeName, modelNode, function( child ) {
- if (avatar) child.lookAt(self.children[avatar].worldPosition())
- });
- });
- }
- this.createAssetResource = function(resType, resSrc){
- var self = this;
- const protos = {
- IMG: "http://vwf.example.com/aframe/a-asset-image-item.vwf",
- AUDIO: "http://vwf.example.com/aframe/a-asset-audio-item.vwf",
- VIDEO: "http://vwf.example.com/aframe/a-asset-video-item.vwf",
- ITEM: "http://vwf.example.com/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: "http://vwf.example.com/aframe/aentity.vwf",
- properties: {
- position: pos
- },
- children: {
- linepath: {
- extends: "http://vwf.example.com/aframe/linepath.vwf",
- properties: {
- color: color,
- path: [],
- width: width
- }
- }
- }
- }
- node.children.create(name, newNode);
- }
- this.createPrimitive = function (type, params, name, node, avatar) {
- var position = "0 0 0";
- var displayName = name;
- let nodeName = this.GUID();
- // 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 = {};
- 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);
- break;
-
- case "text":
- newNode = this.textProto(params);
- break;
- case "cylinder":
- newNode = this.cylinderProto();
- break;
-
- case "cone":
- newNode = this.coneProto();
- break;
- default:
- newNode = undefined;
- break;
- }
- var self = this;
- if (newNode) {
- newNode.properties.position = position;
- if (displayName) {
- newNode.properties.displayName = displayName;
- }
- this.children.create(nodeName, newNode, function( child ) {
- if (avatar) child.lookAt(self.children[avatar].worldPosition());
-
- if (type == "text"){
- child.properties.font = "/vwf/model/aframe/fonts/custom-msdf.json"
- }
- });
- }
- }
- this.createMirror = function (name, node, avatar) {
- var position = "0 0 0";
- 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) {
- newNode.properties.position = position;
- this.children.create(nodeName, newNode, function( child ) {
- if (avatar) child.lookAt(self.children[avatar].worldPosition());
- });
- }
- }
- this.createCamera = function (name, node, avatar) {
- var position = "0 0 0";
- 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.cameraProto();
- newNode.properties.displayName = "camera";
- var self = this;
- if (newNode) {
- newNode.properties.position = position;
- this.children.create(nodeName, newNode, function( child ) {
- 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();
- }
- 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.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());
- });
- }
- }
- this.createImage = function (imgSrc, name, node, avatar) {
- var self = this;
- var position = "0 0 0";
- 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);
- }
- }
- let tagName = 'IMG-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "http://vwf.example.com/aframe/a-asset-image-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": imgSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- var nodeName = 'IMAGE-'+self.GUID();
- var position = "0 0 0";
- if (avatar) {
-
- let myAvatar = self.children[avatar];
- let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;
-
- if (cursorNode) {
- position = cursorNode.worldPosition();
- //console.log(position);
- }
-
- }
-
- 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())
- });
-
- } else {
- let allNodes = vwf.models["vwf/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())
- });
-
- }
- }
-
-
- });
- }
- this.createVideo = function (vidSrc, name, node, avatar) {
- var self = this;
- var position = "0 0 0";
- 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);
- }
- }
- let tagName = 'VIDEO-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "http://vwf.example.com/aframe/a-asset-video-item.vwf",
- "properties": {
- "itemID": tagName,
- "itemSrc": vidSrc
- }
- }
- this.children.create(tagName, tagNode, function( child ) {
- let nodeName = 'VIDEO-'+self.GUID();
- var position = "0 0 0";
- if (avatar) {
-
- let myAvatar = self.children[avatar];
- let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;
-
- if (cursorNode) {
- position = cursorNode.worldPosition();
- //console.log(position);
- }
-
- }
-
- 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())
- });
- } else {
- let allNodes = vwf.models["vwf/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())
- });
- }
-
- }
-
- });
- }
- this.createAudio = function (itemSrc, name, node, avatar) {
- var self = this;
- var position = "0 0 0";
- 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);
- }
- }
- let tagName = 'AUDIO-ASSET-'+ this.GUID();
- let tagNode = {
- "extends": "http://vwf.example.com/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();
- var position = "0 0 0";
- if (avatar) {
-
- let myAvatar = self.children[avatar];
- let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;
-
- if (cursorNode) {
- position = cursorNode.worldPosition();
- //console.log(position);
- }
-
- }
-
- 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": "http://vwf.example.com/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())
- });
- // }
-
- });
- }
- 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": "http://vwf.example.com/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": "http://vwf.example.com/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": "http://vwf.example.com/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": "http://vwf.example.com/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 defaultXRCostume = {
- "extends": "http://vwf.example.com/aframe/abox.vwf",
- "properties": {
- displayName: "defaultXRCostume",
- "position": "0 0 0",
- "height": 0.01,
- "width": 0.01,
- "depth": 1
- },
- "methods":{
- triggerdown:{
- body:'\/\/do on trigger down \n this.pointer.material.color = "red"',
- type: "application/javascript"
- },
- triggerup:{
- body:'\/\/do on trigger up \n this.pointer.material.color = "green"',
- type: "application/javascript"
- },
- onMove:{
- body:'\/\/do on move \n ',
- type: "application/javascript"
- }
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "white"
- }
- },
- "pointer": {
- "extends": "http://vwf.example.com/aframe/abox.vwf",
- "properties": {
- "position": "0 0 -0.7",
- "height": 0.1,
- "width": 0.1,
- "depth": 0.1
- },
- children: {
- "material": {
- "extends": "http://vwf.example.com/aframe/aMaterialComponent.vwf",
- "type": "component",
- "properties":{
- "color": "green"
- }
- }
- }
- }
- }
-
- }
- return defaultXRCostume
- }
|