123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- define(["module", "vwf/view", "vwf/view/oscjs/dist/osc-module"], function(module, view, osc) {
- return view.load(module, {
- initialize: function() {
-
- self = this;
- this.osc = osc;
- this.portValue = '8081';
- this.hostValue = 'localhost';
- this.port = null;
-
- window._OSCManager = this;
- },
- firedEvent: function (nodeID, eventName, eventParameters) {
-
-
- if (eventName == 'sendOSC'){
- var clientThatSatProperty = self.kernel.client();
- var me = self.kernel.moniker();
-
- if (clientThatSatProperty == me) {
- if (self.osc !== null) {
- if (this.getStatus() == 1) {
- self.port.send(eventParameters[0]);
- console.log('send: ' + eventParameters[0]);
- }
- }
- }
- }
-
- },
-
- calledMethod: function( nodeID, methodName, methodParameters, methodValue ) {
-
-
-
-
-
-
-
-
-
-
- if (methodName == "sendOSCBundle") {
- if (self.osc !== null) {
- if (this.getStatus() == 1) {
- self.port.send({
- timeTag: self.osc.timeTag(1),
- packets: [methodParameters[0]]
- }
- );
- console.log('send: ' + methodParameters[0]);
- }
- }
-
- }
-
- },
-
- setOSCHostAndPort: function(h,p) {
- this.hostValue = h;
- this.portValue = p;
-
- },
- connect: function() {
-
- this.disconnect();
- this.port = new osc.WebSocketPort({
- url: 'wss://' + this.hostValue + ':' + this.portValue
-
- });
-
- this.port.on("message", function (oscMessage) {
- console.log("message", oscMessage);
- findAllNodesWithOSC(oscMessage);
- });
- this.port.open();
- },
- disconnect: function() {
- console.log('disconnect');
- if (this.port !== null)
- this.port.close(1000, 'manual close');
- },
- getStatus: function() {
- if (self.port){
- return self.port.socket.readyState
- }
- return 3
- }
-
- })
- function findAllNodesWithOSC(oscMessage){
- let appID = vwf.application();
- var oscSceneProp = vwf.getProperty(appID, 'osc');
- if (oscSceneProp !== undefined){
- if (oscSceneProp){
-
- vwf_view.kernel.callMethod(appID, 'getOSC', [oscMessage]);
- }
- }
- var children = vwf.children(appID);
- children.forEach(function(child){
- var oscprop = vwf.getProperty(child, 'osc');
- if (oscprop !== undefined){
- if (oscprop){
-
- vwf_view.kernel.callMethod(child, 'getOSC', [oscMessage]);
- }
- }
- })
-
-
-
-
-
-
-
- }
- });
|