123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- this.getChildByName = function (name) {
- let nodes = this.children.filter(el => el.displayName == name);
- return nodes[0]
- }
- this.nodeDef = function () {
- let def = _app.helpers.getNodeDef(this.id);
- return def
- }
- this.clone = function () {
- let nodeDef = _app.helpers.getNodeDef(this.id);
- return nodeDef
- }
- this.getScene = function () {
- let scene = this.find("/")[0];
- return scene
- }
- this.setGizmoMode = function (mode) {
- if (this.gizmo) {
- this.gizmo.properties.mode = mode
- }
- }
- this.showCloseGizmo = function () {
- let gizmoNode =
- {
- "extends": "proxy/aframe/gizmoComponent.vwf",
- "type": "component",
- "properties":
- {
- "mode": "translate"
- }
- }
- if (this.properties.edit) {
- this.children.create("gizmo", gizmoNode);
- } else {
- if (this.gizmo) {
- this.children.delete(this.gizmo)
- }
- }
- }
- // Parse a parameter as a translation specification.
- this.translationFromValue = function (propertyValue) {
- var value = new THREE.Vector3();//goog.vec.Vec3.create();
- if (propertyValue.hasOwnProperty('x')) {
- value = value.set(propertyValue.x, propertyValue.y, propertyValue.z)
- }
- else if (Array.isArray(propertyValue)) {
- value = value.fromArray(propertyValue);
- }
- else if (typeof propertyValue === 'string') {
- let val = propertyValue.includes(',') ? AFRAME.utils.coordinates.parse(propertyValue.split(',').join(' ')) : AFRAME.utils.coordinates.parse(propertyValue);
- value = value.set(val.x, val.y, val.z)
- } else if (propertyValue.hasOwnProperty('0')) {
- value = value.set(propertyValue[0], propertyValue[1], propertyValue[2])
- }
- return value
- // return value && value.length >= 3 ?
- // value :
- // goog.vec.Vec3.create();
- };
- this.sendOSC = function (msg) {
- //sending OSC msg
- vwf_view.kernel.fireEvent(this.id, "sendOSC", [msg]);
- // if (_OSCManager.port !== null) {
- // _OSCManager.port.send(msg);
- // }
- //on driver side
- }
- // this.clickEvent = function () {
- // //this.intersectEventMethod();
- // }
- // this.intersectEvent = function () {
- // //this.intersectEventMethod();
- // }
- // this.clearIntersectEvent = function () {
- // //this.clearIntersectEventMethod();
- // }
- this.intersectEventMethod = function (point) {
- //intersect method
- }
- this.clearIntersectEventMethod = function () {
- //clearIntersect method
- }
- this.hitstartEventMethod = function () {
- //intersect method
- }
- this.hitendEventMethod = function () {
- //clearIntersect method
- }
- this.fromhitstartEventMethod = function (value) {
- //intersect method
- }
- this.fromhitendEventMethod = function (value) {
- //clearIntersect method
- }
- this.clickEventMethod = function (value) {
- //clickEventMethod
- }
- this.mousedownEventMethod = function (value) {
- //clickEventMethod
- }
- this.mouseupEventMethod = function (value) {
- //clickEventMethod
- }
- this.setOwner = function (param) {
- 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);
- });
- //console.log(clientsArray);
- if (this.ownedBy) {
- if (clientsArray.includes(this.ownedBy)) {
- console.log(this.id + " already owned by: " + param);
- } else {
- this.ownedBy = param;
- //console.log(this.id + ' set owner to: ' + param);
- }
- } else {
- this.ownedBy = param;
- //console.log(this.id + ' set owner to: ' + param);
- }
- }
- }
- this.updateMethod = function (methodName, methodBody, params) {
- vwf.setMethod(this.id, methodName, { body: methodBody, type: "application/javascript", parameters: params });
- }
- this.callMethod = function (methodName, params) {
- vwf.callMethod(this.id, methodName, params)
- }
- this.do = function () {
- //do in step
- }
- this.step = function () {
- if (this.stepping) {
- this.do();
- }
- let t = this.stepTime ? this.stepTime : 0.05;
- this.future(t).step();
- }
- this.onGlobalBeat = function (obj) {
- //dispatch the beat example send OSC
- let transportNode = this.find('//' + obj.name)[0];
- let rate = transportNode.animationRate; // 1 by default
- let drumSeq = [
- { beat: 0, msg: 0 },
- { beat: 30, msg: 0 }];
- drumSeq.forEach(el => {
- if (el.beat / rate == obj.beat) {
- let msg = {
- address: "/trigger/sample01",
- args: [this.time, 'bd_808', 3]
- };
- //for synth {beat:0, msg: "A"}
- //let msg = {
- // address: "/trigger/synth01",
- // args: [this.time, 'piano', el.msg, 0.1, 1]};
- // this.sendOSC(msg);
- // this.changeVisual();
- }
- })
- }
- this.changeVisual = function () {
- //code for changing me
- this.future(0.1).resetVisual();
- }
- this.resetVisual = function () {
- }
- this.getRandomColor = function () {
- var letters = '0123456789ABCDEF';
- var color = '#';
- for (var i = 0; i < 6; i++) {
- color += letters[Math.floor(this.random() * 16)];
- }
- return color;
- }
- this.randomize = function () {
- }
- // this.position_set = function (value) {
- // var position = this.translationFromValue(value); // parse incoming value
- // if (!position || !this.position) {
- // this.position = new THREE.Vector3();
- // } else if (!this.position.equals(position)){ //!goog.vec.Vec3.equals(this.position || goog.vec.Vec3.create(), position)) {
- // this.position = position;
- // this.positionChanged(position);
- // }
- // }
- // this.position_get = function () {
- // return this.position || new THREE.Vector3();
- // }
- // this.rotation_set = function (value) {
- // var rotation = this.translationFromValue(value); // parse incoming value
- // if (!rotation || !this.rotation) {
- // this.rotation = new THREE.Vector3();
- // } else if (!this.rotation.equals(rotation)){ //!goog.vec.Vec3.equals(this.rotation || goog.vec.Vec3.create(), rotation)) {
- // this.rotation = rotation;
- // this.rotationChanged(rotation);
- // }
- // }
- // this.rotation_get = function () {
- // return this.rotation || new THREE.Vector3();
- // }
- // this.scale_set = function (value) {
- // var scale = this.translationFromValue( value ); // parse incoming value
- // if(!scale || !this.scale){
- // this.scale = new THREE.Vector3();
- // } else if (!this.scale.equals(scale)){ //! goog.vec.Vec3.equals( this.scale || goog.vec.Vec3.create(), scale ) ) {
- // this.scale = scale;
- // this.scaleChanged( scale);
- // }
- // }
- // this.scale_get = function () {
- // return this.scale || new THREE.Vector3();
- // }
- this.createEditTool = function() {
- var self = this;
- //let scene = this.getScene();
- if(!this.editTool){
- let nodeName = 'editTool';
- let node = {
- "extends": "proxy/objects/edittool.vwf",
- "properties": {}
- }
- this.children.create(nodeName, node, function( child ) {
- child.createVisual();
- })
- }
- }
- this.globalToLocalRotation = function(aQ, order){
- let ord = order ? order: 'XYZ';
- let q = this.localQuaternion().invert().multiply(aQ); //new THREE.Quaternion().setFromEuler(euler)
- let localEuler = new THREE.Euler().setFromQuaternion(q, ord);
- return [
- THREE.Math.radToDeg(localEuler.x),
- THREE.Math.radToDeg(localEuler.y),
- THREE.Math.radToDeg(localEuler.z)
- ]
- }
- this.placeInFrontOf = function(nodeID, dist) {
- // fixed distance from camera to the object
- let node = this.getScene().findNodeByID(nodeID);
-
- let cwd = node.worldDirection(); //new THREE.Vector3();
- cwd.multiplyScalar(dist);
- cwd.add(node.position);
-
- let nodeQ = node.localQuaternion();
- let localEuler = new THREE.Euler().setFromQuaternion(nodeQ, 'XYZ');
- let rotation = [
- THREE.Math.radToDeg(localEuler.x),
- THREE.Math.radToDeg(localEuler.y),
- THREE.Math.radToDeg(localEuler.z)
- ];
- this.position = cwd;
- this.rotation = rotation;
- }
- this.doButtonTriggerdownAction = function(button, controllerID, point){
- //do button action
- console.log('TriggerdownAction form: ', button)
- }
- this.triggerdownAction = function(){
- }
- this.triggerupAction = function(){
- }
- this.mousedownAction = function(){
- }
- this.mouseupAction = function(){
- }
- this.createChild = function(id,nodeDef){
- let self = this;
- this.children.create(id, nodeDef, function(child){
- if(child.stepping){
- child.step();
- }
- })
- }
- this.createChildComponent = function(name,nodeDef){
- let self = this;
- if(this[name]){
- this.children.delete(this[name])
- }
- let dn = nodeDef.properties.displayName;
- if(this[dn]){
- this.children.delete(this[dn])
- }
-
-
- this.children.create(name, nodeDef, function(child){})
- }
- this.positionChanged = function(){
-
- }
- this.setPosition = function(value){
- this.position = value;
- this.positionChanged();
- }
|