From 35d930c77bfddee17873a473544a45814f226351 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Fri, 5 Jan 2018 09:14:03 +0100 Subject: [PATCH 1/8] Fixed local grunt --- package-lock.json | 14 +++++++++++++- package.json | 3 ++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index e48980a46..2f3ac586f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.3.0-1", + "version": "0.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -1786,6 +1786,18 @@ } } }, + "grunt-cli": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz", + "integrity": "sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=", + "dev": true, + "requires": { + "findup-sync": "0.3.0", + "grunt-known-options": "1.1.0", + "nopt": "3.0.6", + "resolve": "1.1.7" + } + }, "grunt-closure-tools": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/grunt-closure-tools/-/grunt-closure-tools-1.0.0.tgz", diff --git a/package.json b/package.json index 005dbbbd2..1ca300c83 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "scripts": { "prebuild": "grunt clean:build", "build": "grunt build", - "start": "npx nodemon utils/server.js", + "start": "nodemon utils/server.js", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { @@ -31,6 +31,7 @@ "express": "^4.16.2", "google-closure-compiler": "^20171112.0.0", "grunt": "^1.0.1", + "grunt-cli": "^1.2.0", "grunt-closure-tools": "^1.0.0", "grunt-contrib-clean": "^1.1.0", "grunt-contrib-concat": "^1.0.1", From fd8eab3de8b15d613eeed9ee16590d943152a571 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Fri, 23 Mar 2018 18:16:10 +0100 Subject: [PATCH 2/8] 0.4.0 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2f3ac586f..43c52c90c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1ca300c83..5e13d1da5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.3.0", + "version": "0.4.0", "description": "A graph node editor similar to PD or UDK Blueprints, it works in a HTML5 Canvas and allow to exported graphs to be included in applications.", "main": "build/litegraph.js", "directories": { From 270941b4cf06097fbc3f0dd659dea4935091900a Mon Sep 17 00:00:00 2001 From: Kristofer Date: Fri, 23 Mar 2018 18:25:06 +0100 Subject: [PATCH 3/8] Build 0.4.0 --- build/litegraph.js | 4279 ++++++++++++------------ build/litegraph.min.js | 7117 +++++++++++++++++++++++++++++++++++++--- gruntfile.js | 23 - package-lock.json | 54 +- package.json | 7 +- 5 files changed, 8740 insertions(+), 2740 deletions(-) diff --git a/build/litegraph.js b/build/litegraph.js index da8bdfb83..4160cc453 100644 --- a/build/litegraph.js +++ b/build/litegraph.js @@ -1,5 +1,3 @@ -//packer version - (function(global){ // ************************************************************* // LiteGraph CLASS ******* @@ -6213,471 +6211,471 @@ if( typeof(window) != "undefined" && !window["requestAnimationFrame"] ) if(typeof(exports) != "undefined") exports.LiteGraph = this.LiteGraph; - -//basic nodes -(function(global){ -var LiteGraph = global.LiteGraph; - -//Constant -function Time() -{ - this.addOutput("in ms","number"); - this.addOutput("in sec","number"); -} - -Time.title = "Time"; -Time.desc = "Time"; - -Time.prototype.onExecute = function() -{ - this.setOutputData(0, this.graph.globaltime * 1000 ); - this.setOutputData(1, this.graph.globaltime ); -} - -LiteGraph.registerNodeType("basic/time", Time); - - -//Subgraph: a node that contains a graph -function Subgraph() -{ - var that = this; - this.size = [120,60]; - - //create inner graph - this.subgraph = new LGraph(); - this.subgraph._subgraph_node = this; - this.subgraph._is_subgraph = true; - - this.subgraph.onGlobalInputAdded = this.onSubgraphNewGlobalInput.bind(this); - this.subgraph.onGlobalInputRenamed = this.onSubgraphRenamedGlobalInput.bind(this); - this.subgraph.onGlobalInputTypeChanged = this.onSubgraphTypeChangeGlobalInput.bind(this); - - this.subgraph.onGlobalOutputAdded = this.onSubgraphNewGlobalOutput.bind(this); - this.subgraph.onGlobalOutputRenamed = this.onSubgraphRenamedGlobalOutput.bind(this); - this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); - - - this.bgcolor = "#663"; -} - -Subgraph.title = "Subgraph"; -Subgraph.desc = "Graph inside a node"; - -Subgraph.prototype.onSubgraphNewGlobalInput = function(name, type) -{ - //add input to the node - this.addInput(name, type); -} - -Subgraph.prototype.onSubgraphRenamedGlobalInput = function(oldname, name) -{ - var slot = this.findInputSlot( oldname ); - if(slot == -1) - return; - var info = this.getInputInfo(slot); - info.name = name; -} - -Subgraph.prototype.onSubgraphTypeChangeGlobalInput = function(name, type) -{ - var slot = this.findInputSlot( name ); - if(slot == -1) - return; - var info = this.getInputInfo(slot); - info.type = type; -} - - -Subgraph.prototype.onSubgraphNewGlobalOutput = function(name, type) -{ - //add output to the node - this.addOutput(name, type); -} - - -Subgraph.prototype.onSubgraphRenamedGlobalOutput = function(oldname, name) -{ - var slot = this.findOutputSlot( oldname ); - if(slot == -1) - return; - var info = this.getOutputInfo(slot); - info.name = name; -} - -Subgraph.prototype.onSubgraphTypeChangeGlobalOutput = function(name, type) -{ - var slot = this.findOutputSlot( name ); - if(slot == -1) - return; - var info = this.getOutputInfo(slot); - info.type = type; -} - - -Subgraph.prototype.getExtraMenuOptions = function(graphcanvas) -{ - var that = this; - return [ {content:"Open", callback: - function() { - graphcanvas.openSubgraph( that.subgraph ); - } - }]; -} - -Subgraph.prototype.onExecute = function() -{ - //send inputs to subgraph global inputs - if(this.inputs) - for(var i = 0; i < this.inputs.length; i++) - { - var input = this.inputs[i]; - var value = this.getInputData(i); - this.subgraph.setGlobalInputData( input.name, value ); - } - - //execute - this.subgraph.runStep(); - - //send subgraph global outputs to outputs - if(this.outputs) - for(var i = 0; i < this.outputs.length; i++) - { - var output = this.outputs[i]; - var value = this.subgraph.getGlobalOutputData( output.name ); - this.setOutputData(i, value); - } -} - -Subgraph.prototype.configure = function(o) -{ - LGraphNode.prototype.configure.call(this, o); - //this.subgraph.configure(o.graph); -} - -Subgraph.prototype.serialize = function() -{ - var data = LGraphNode.prototype.serialize.call(this); - data.subgraph = this.subgraph.serialize(); - return data; -} - -Subgraph.prototype.clone = function() -{ - var node = LiteGraph.createNode(this.type); - var data = this.serialize(); - delete data["id"]; - delete data["inputs"]; - delete data["outputs"]; - node.configure(data); - return node; -} - - -LiteGraph.registerNodeType("graph/subgraph", Subgraph ); - - -//Input for a subgraph -function GlobalInput() -{ - - //random name to avoid problems with other outputs when added - var input_name = "input_" + (Math.random()*1000).toFixed(); - - this.addOutput(input_name, null ); - - this.properties = { name: input_name, type: null }; - - var that = this; - - Object.defineProperty( this.properties, "name", { - get: function() { - return input_name; - }, - set: function(v) { - if(v == "") - return; - - var info = that.getOutputInfo(0); - if(info.name == v) - return; - info.name = v; - if(that.graph) - that.graph.renameGlobalInput(input_name, v); - input_name = v; - }, - enumerable: true - }); - - Object.defineProperty( this.properties, "type", { - get: function() { return that.outputs[0].type; }, - set: function(v) { - that.outputs[0].type = v; - if(that.graph) - that.graph.changeGlobalInputType(input_name, that.outputs[0].type); - }, - enumerable: true - }); -} - -GlobalInput.title = "Input"; -GlobalInput.desc = "Input of the graph"; - -//When added to graph tell the graph this is a new global input -GlobalInput.prototype.onAdded = function() -{ - this.graph.addGlobalInput( this.properties.name, this.properties.type ); -} - -GlobalInput.prototype.onExecute = function() -{ - var name = this.properties.name; - - //read from global input - var data = this.graph.global_inputs[name]; - if(!data) return; - - //put through output - this.setOutputData(0,data.value); -} - -LiteGraph.registerNodeType("graph/input", GlobalInput); - - - -//Output for a subgraph -function GlobalOutput() -{ - //random name to avoid problems with other outputs when added - var output_name = "output_" + (Math.random()*1000).toFixed(); - - this.addInput(output_name, null); - - this.properties = {name: output_name, type: null }; - - var that = this; - - Object.defineProperty(this.properties, "name", { - get: function() { - return output_name; - }, - set: function(v) { - if(v == "") - return; - - var info = that.getInputInfo(0); - if(info.name == v) - return; - info.name = v; - if(that.graph) - that.graph.renameGlobalOutput(output_name, v); - output_name = v; - }, - enumerable: true - }); - - Object.defineProperty(this.properties, "type", { - get: function() { return that.inputs[0].type; }, - set: function(v) { - that.inputs[0].type = v; - if(that.graph) - that.graph.changeGlobalInputType( output_name, that.inputs[0].type ); - }, - enumerable: true - }); -} - -GlobalOutput.title = "Ouput"; -GlobalOutput.desc = "Output of the graph"; - -GlobalOutput.prototype.onAdded = function() -{ - var name = this.graph.addGlobalOutput( this.properties.name, this.properties.type ); -} - -GlobalOutput.prototype.onExecute = function() -{ - this.graph.setGlobalOutputData( this.properties.name, this.getInputData(0) ); -} - -LiteGraph.registerNodeType("graph/output", GlobalOutput); - - - -//Constant -function Constant() -{ - this.addOutput("value","number"); - this.addProperty( "value", 1.0 ); - this.editable = { property:"value", type:"number" }; -} - -Constant.title = "Const"; -Constant.desc = "Constant value"; - - -Constant.prototype.setValue = function(v) -{ - if( typeof(v) == "string") v = parseFloat(v); - this.properties["value"] = v; - this.setDirtyCanvas(true); -}; - -Constant.prototype.onExecute = function() -{ - this.setOutputData(0, parseFloat( this.properties["value"] ) ); -} - -Constant.prototype.onDrawBackground = function(ctx) -{ - //show the current value - this.outputs[0].label = this.properties["value"].toFixed(3); -} - -Constant.prototype.onWidget = function(e,widget) -{ - if(widget.name == "value") - this.setValue(widget.value); -} - -LiteGraph.registerNodeType("basic/const", Constant); - - -//Watch a value in the editor -function Watch() -{ - this.size = [60,20]; - this.addInput("value",0,{label:""}); - this.addOutput("value",0,{label:""}); - this.addProperty( "value", "" ); -} - -Watch.title = "Watch"; -Watch.desc = "Show value of input"; - -Watch.prototype.onExecute = function() -{ - this.properties.value = this.getInputData(0); - this.setOutputData(0, this.properties.value); -} - -Watch.prototype.onDrawBackground = function(ctx) -{ - //show the current value - if(this.inputs[0] && this.properties["value"] != null) - { - if (this.properties["value"].constructor === Number ) - this.inputs[0].label = this.properties["value"].toFixed(3); - else - { - var str = this.properties["value"]; - if(str && str.length) //convert typed to array - str = Array.prototype.slice.call(str).join(","); - this.inputs[0].label = str; - } - } -} - -LiteGraph.registerNodeType("basic/watch", Watch); - - -//Show value inside the debug console -function Console() -{ - this.mode = LiteGraph.ON_EVENT; - this.size = [60,20]; - this.addProperty( "msg", "" ); - this.addInput("log", LiteGraph.EVENT); - this.addInput("msg",0); -} - -Console.title = "Console"; -Console.desc = "Show value inside the console"; - -Console.prototype.onAction = function(action, param) -{ - if(action == "log") - console.log( param ); - else if(action == "warn") - console.warn( param ); - else if(action == "error") - console.error( param ); -} - -Console.prototype.onExecute = function() -{ - var msg = this.getInputData(1); - if(msg !== null) - this.properties.msg = msg; - console.log(msg); -} - -Console.prototype.onGetInputs = function() -{ - return [["log",LiteGraph.ACTION],["warn",LiteGraph.ACTION],["error",LiteGraph.ACTION]]; -} - -LiteGraph.registerNodeType("basic/console", Console ); - - - -//Show value inside the debug console -function NodeScript() -{ - this.size = [60,20]; - this.addProperty( "onExecute", "" ); - this.addInput("in", ""); - this.addInput("in2", ""); - this.addOutput("out", ""); - this.addOutput("out2", ""); - - this._func = null; -} - -NodeScript.title = "Script"; -NodeScript.desc = "executes a code"; - -NodeScript.widgets_info = { - "onExecute": { type:"code" } -}; - -NodeScript.prototype.onPropertyChanged = function(name,value) -{ - if(name == "onExecute" && LiteGraph.allow_scripts ) - { - this._func = null; - try - { - this._func = new Function( value ); - } - catch (err) - { - console.error("Error parsing script"); - console.error(err); - } - } -} - -NodeScript.prototype.onExecute = function() -{ - if(!this._func) - return; - - try - { - this._func.call(this); - } - catch (err) - { - console.error("Error in script"); - console.error(err); - } -} - -LiteGraph.registerNodeType("basic/script", NodeScript ); - - - -})(this); + +//basic nodes +(function(global){ +var LiteGraph = global.LiteGraph; + +//Constant +function Time() +{ + this.addOutput("in ms","number"); + this.addOutput("in sec","number"); +} + +Time.title = "Time"; +Time.desc = "Time"; + +Time.prototype.onExecute = function() +{ + this.setOutputData(0, this.graph.globaltime * 1000 ); + this.setOutputData(1, this.graph.globaltime ); +} + +LiteGraph.registerNodeType("basic/time", Time); + + +//Subgraph: a node that contains a graph +function Subgraph() +{ + var that = this; + this.size = [120,60]; + + //create inner graph + this.subgraph = new LGraph(); + this.subgraph._subgraph_node = this; + this.subgraph._is_subgraph = true; + + this.subgraph.onGlobalInputAdded = this.onSubgraphNewGlobalInput.bind(this); + this.subgraph.onGlobalInputRenamed = this.onSubgraphRenamedGlobalInput.bind(this); + this.subgraph.onGlobalInputTypeChanged = this.onSubgraphTypeChangeGlobalInput.bind(this); + + this.subgraph.onGlobalOutputAdded = this.onSubgraphNewGlobalOutput.bind(this); + this.subgraph.onGlobalOutputRenamed = this.onSubgraphRenamedGlobalOutput.bind(this); + this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); + + + this.bgcolor = "#663"; +} + +Subgraph.title = "Subgraph"; +Subgraph.desc = "Graph inside a node"; + +Subgraph.prototype.onSubgraphNewGlobalInput = function(name, type) +{ + //add input to the node + this.addInput(name, type); +} + +Subgraph.prototype.onSubgraphRenamedGlobalInput = function(oldname, name) +{ + var slot = this.findInputSlot( oldname ); + if(slot == -1) + return; + var info = this.getInputInfo(slot); + info.name = name; +} + +Subgraph.prototype.onSubgraphTypeChangeGlobalInput = function(name, type) +{ + var slot = this.findInputSlot( name ); + if(slot == -1) + return; + var info = this.getInputInfo(slot); + info.type = type; +} + + +Subgraph.prototype.onSubgraphNewGlobalOutput = function(name, type) +{ + //add output to the node + this.addOutput(name, type); +} + + +Subgraph.prototype.onSubgraphRenamedGlobalOutput = function(oldname, name) +{ + var slot = this.findOutputSlot( oldname ); + if(slot == -1) + return; + var info = this.getOutputInfo(slot); + info.name = name; +} + +Subgraph.prototype.onSubgraphTypeChangeGlobalOutput = function(name, type) +{ + var slot = this.findOutputSlot( name ); + if(slot == -1) + return; + var info = this.getOutputInfo(slot); + info.type = type; +} + + +Subgraph.prototype.getExtraMenuOptions = function(graphcanvas) +{ + var that = this; + return [ {content:"Open", callback: + function() { + graphcanvas.openSubgraph( that.subgraph ); + } + }]; +} + +Subgraph.prototype.onExecute = function() +{ + //send inputs to subgraph global inputs + if(this.inputs) + for(var i = 0; i < this.inputs.length; i++) + { + var input = this.inputs[i]; + var value = this.getInputData(i); + this.subgraph.setGlobalInputData( input.name, value ); + } + + //execute + this.subgraph.runStep(); + + //send subgraph global outputs to outputs + if(this.outputs) + for(var i = 0; i < this.outputs.length; i++) + { + var output = this.outputs[i]; + var value = this.subgraph.getGlobalOutputData( output.name ); + this.setOutputData(i, value); + } +} + +Subgraph.prototype.configure = function(o) +{ + LGraphNode.prototype.configure.call(this, o); + //this.subgraph.configure(o.graph); +} + +Subgraph.prototype.serialize = function() +{ + var data = LGraphNode.prototype.serialize.call(this); + data.subgraph = this.subgraph.serialize(); + return data; +} + +Subgraph.prototype.clone = function() +{ + var node = LiteGraph.createNode(this.type); + var data = this.serialize(); + delete data["id"]; + delete data["inputs"]; + delete data["outputs"]; + node.configure(data); + return node; +} + + +LiteGraph.registerNodeType("graph/subgraph", Subgraph ); + + +//Input for a subgraph +function GlobalInput() +{ + + //random name to avoid problems with other outputs when added + var input_name = "input_" + (Math.random()*1000).toFixed(); + + this.addOutput(input_name, null ); + + this.properties = { name: input_name, type: null }; + + var that = this; + + Object.defineProperty( this.properties, "name", { + get: function() { + return input_name; + }, + set: function(v) { + if(v == "") + return; + + var info = that.getOutputInfo(0); + if(info.name == v) + return; + info.name = v; + if(that.graph) + that.graph.renameGlobalInput(input_name, v); + input_name = v; + }, + enumerable: true + }); + + Object.defineProperty( this.properties, "type", { + get: function() { return that.outputs[0].type; }, + set: function(v) { + that.outputs[0].type = v; + if(that.graph) + that.graph.changeGlobalInputType(input_name, that.outputs[0].type); + }, + enumerable: true + }); +} + +GlobalInput.title = "Input"; +GlobalInput.desc = "Input of the graph"; + +//When added to graph tell the graph this is a new global input +GlobalInput.prototype.onAdded = function() +{ + this.graph.addGlobalInput( this.properties.name, this.properties.type ); +} + +GlobalInput.prototype.onExecute = function() +{ + var name = this.properties.name; + + //read from global input + var data = this.graph.global_inputs[name]; + if(!data) return; + + //put through output + this.setOutputData(0,data.value); +} + +LiteGraph.registerNodeType("graph/input", GlobalInput); + + + +//Output for a subgraph +function GlobalOutput() +{ + //random name to avoid problems with other outputs when added + var output_name = "output_" + (Math.random()*1000).toFixed(); + + this.addInput(output_name, null); + + this.properties = {name: output_name, type: null }; + + var that = this; + + Object.defineProperty(this.properties, "name", { + get: function() { + return output_name; + }, + set: function(v) { + if(v == "") + return; + + var info = that.getInputInfo(0); + if(info.name == v) + return; + info.name = v; + if(that.graph) + that.graph.renameGlobalOutput(output_name, v); + output_name = v; + }, + enumerable: true + }); + + Object.defineProperty(this.properties, "type", { + get: function() { return that.inputs[0].type; }, + set: function(v) { + that.inputs[0].type = v; + if(that.graph) + that.graph.changeGlobalInputType( output_name, that.inputs[0].type ); + }, + enumerable: true + }); +} + +GlobalOutput.title = "Ouput"; +GlobalOutput.desc = "Output of the graph"; + +GlobalOutput.prototype.onAdded = function() +{ + var name = this.graph.addGlobalOutput( this.properties.name, this.properties.type ); +} + +GlobalOutput.prototype.onExecute = function() +{ + this.graph.setGlobalOutputData( this.properties.name, this.getInputData(0) ); +} + +LiteGraph.registerNodeType("graph/output", GlobalOutput); + + + +//Constant +function Constant() +{ + this.addOutput("value","number"); + this.addProperty( "value", 1.0 ); + this.editable = { property:"value", type:"number" }; +} + +Constant.title = "Const"; +Constant.desc = "Constant value"; + + +Constant.prototype.setValue = function(v) +{ + if( typeof(v) == "string") v = parseFloat(v); + this.properties["value"] = v; + this.setDirtyCanvas(true); +}; + +Constant.prototype.onExecute = function() +{ + this.setOutputData(0, parseFloat( this.properties["value"] ) ); +} + +Constant.prototype.onDrawBackground = function(ctx) +{ + //show the current value + this.outputs[0].label = this.properties["value"].toFixed(3); +} + +Constant.prototype.onWidget = function(e,widget) +{ + if(widget.name == "value") + this.setValue(widget.value); +} + +LiteGraph.registerNodeType("basic/const", Constant); + + +//Watch a value in the editor +function Watch() +{ + this.size = [60,20]; + this.addInput("value",0,{label:""}); + this.addOutput("value",0,{label:""}); + this.addProperty( "value", "" ); +} + +Watch.title = "Watch"; +Watch.desc = "Show value of input"; + +Watch.prototype.onExecute = function() +{ + this.properties.value = this.getInputData(0); + this.setOutputData(0, this.properties.value); +} + +Watch.prototype.onDrawBackground = function(ctx) +{ + //show the current value + if(this.inputs[0] && this.properties["value"] != null) + { + if (this.properties["value"].constructor === Number ) + this.inputs[0].label = this.properties["value"].toFixed(3); + else + { + var str = this.properties["value"]; + if(str && str.length) //convert typed to array + str = Array.prototype.slice.call(str).join(","); + this.inputs[0].label = str; + } + } +} + +LiteGraph.registerNodeType("basic/watch", Watch); + + +//Show value inside the debug console +function Console() +{ + this.mode = LiteGraph.ON_EVENT; + this.size = [60,20]; + this.addProperty( "msg", "" ); + this.addInput("log", LiteGraph.EVENT); + this.addInput("msg",0); +} + +Console.title = "Console"; +Console.desc = "Show value inside the console"; + +Console.prototype.onAction = function(action, param) +{ + if(action == "log") + console.log( param ); + else if(action == "warn") + console.warn( param ); + else if(action == "error") + console.error( param ); +} + +Console.prototype.onExecute = function() +{ + var msg = this.getInputData(1); + if(msg !== null) + this.properties.msg = msg; + console.log(msg); +} + +Console.prototype.onGetInputs = function() +{ + return [["log",LiteGraph.ACTION],["warn",LiteGraph.ACTION],["error",LiteGraph.ACTION]]; +} + +LiteGraph.registerNodeType("basic/console", Console ); + + + +//Show value inside the debug console +function NodeScript() +{ + this.size = [60,20]; + this.addProperty( "onExecute", "" ); + this.addInput("in", ""); + this.addInput("in2", ""); + this.addOutput("out", ""); + this.addOutput("out2", ""); + + this._func = null; +} + +NodeScript.title = "Script"; +NodeScript.desc = "executes a code"; + +NodeScript.widgets_info = { + "onExecute": { type:"code" } +}; + +NodeScript.prototype.onPropertyChanged = function(name,value) +{ + if(name == "onExecute" && LiteGraph.allow_scripts ) + { + this._func = null; + try + { + this._func = new Function( value ); + } + catch (err) + { + console.error("Error parsing script"); + console.error(err); + } + } +} + +NodeScript.prototype.onExecute = function() +{ + if(!this._func) + return; + + try + { + this._func.call(this); + } + catch (err) + { + console.error("Error in script"); + console.error(err); + } +} + +LiteGraph.registerNodeType("basic/script", NodeScript ); + + + +})(this); //event related nodes (function(global){ var LiteGraph = global.LiteGraph; @@ -6827,787 +6825,787 @@ DelayEvent.prototype.onGetInputs = function() LiteGraph.registerNodeType("events/delay", DelayEvent ); -})(this); -//widgets -(function(global){ -var LiteGraph = global.LiteGraph; - - /* Button ****************/ - - function WidgetButton() - { - this.addOutput( "clicked", LiteGraph.EVENT ); - this.addProperty( "text","" ); - this.addProperty( "font","40px Arial" ); - this.addProperty( "message", "" ); - this.size = [64,84]; - } - - WidgetButton.title = "Button"; - WidgetButton.desc = "Triggers an event"; - - WidgetButton.prototype.onDrawForeground = function(ctx) - { - if(this.flags.collapsed) - return; - - //ctx.font = "40px Arial"; - //ctx.textAlign = "center"; - ctx.fillStyle = "black"; - ctx.fillRect(1,1,this.size[0] - 3, this.size[1] - 3); - ctx.fillStyle = "#AAF"; - ctx.fillRect(0,0,this.size[0] - 3, this.size[1] - 3); - ctx.fillStyle = this.clicked ? "white" : (this.mouseOver ? "#668" : "#334"); - ctx.fillRect(1,1,this.size[0] - 4, this.size[1] - 4); - - if( this.properties.text || this.properties.text === 0 ) - { - ctx.textAlign = "center"; - ctx.fillStyle = this.clicked ? "black" : "white"; - if( this.properties.font ) - ctx.font = this.properties.font; - ctx.fillText(this.properties.text, this.size[0] * 0.5, this.size[1] * 0.85 ); - ctx.textAlign = "left"; - } - } - - WidgetButton.prototype.onMouseDown = function(e, local_pos) - { - if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) - { - this.clicked = true; - this.trigger( "clicked", this.properties.message ); - return true; - } - } - - WidgetButton.prototype.onMouseUp = function(e) - { - this.clicked = false; - } - - - LiteGraph.registerNodeType("widget/button", WidgetButton ); - - /* Knob ****************/ - - function WidgetKnob() - { - this.addOutput("",'number'); - this.size = [64,84]; - this.properties = {min:0,max:1,value:0.5,wcolor:"#7AF",size:50}; - } - - WidgetKnob.title = "Knob"; - WidgetKnob.desc = "Circular controller"; - WidgetKnob.widgets = [{name:"increase",text:"+",type:"minibutton"},{name:"decrease",text:"-",type:"minibutton"}]; - - - WidgetKnob.prototype.onAdded = function() - { - this.value = (this.properties["value"] - this.properties["min"]) / (this.properties["max"] - this.properties["min"]); - - this.imgbg = this.loadImage("imgs/knob_bg.png"); - this.imgfg = this.loadImage("imgs/knob_fg.png"); - } - - WidgetKnob.prototype.onDrawImageKnob = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - var d = this.imgbg.width*0.5; - var scale = this.size[0] / this.imgfg.width; - - ctx.save(); - ctx.translate(0,20); - ctx.scale(scale,scale); - ctx.drawImage(this.imgbg,0,0); - //ctx.drawImage(this.imgfg,0,20); - - ctx.translate(d,d); - ctx.rotate(this.value * (Math.PI*2) * 6/8 + Math.PI * 10/8); - //ctx.rotate(this.value * (Math.PI*2)); - ctx.translate(-d,-d); - ctx.drawImage(this.imgfg,0,0); - - ctx.restore(); - - if(this.title) - { - ctx.font = "bold 16px Criticized,Tahoma"; - ctx.fillStyle="rgba(100,100,100,0.8)"; - ctx.textAlign = "center"; - ctx.fillText(this.title.toUpperCase(), this.size[0] * 0.5, 18 ); - ctx.textAlign = "left"; - } - } - - WidgetKnob.prototype.onDrawVectorKnob = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - //circle around - ctx.lineWidth = 1; - ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; - ctx.fillStyle="#000"; - ctx.beginPath(); - ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.5,0,Math.PI*2,true); - ctx.stroke(); - - if(this.value > 0) - { - ctx.strokeStyle=this.properties["wcolor"]; - ctx.lineWidth = (this.properties.size * 0.2); - ctx.beginPath(); - ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.35,Math.PI * -0.5 + Math.PI*2 * this.value,Math.PI * -0.5,true); - ctx.stroke(); - ctx.lineWidth = 1; - } - - ctx.font = (this.properties.size * 0.2) + "px Arial"; - ctx.fillStyle="#AAA"; - ctx.textAlign = "center"; - - var str = this.properties["value"]; - if(typeof(str) == 'number') - str = str.toFixed(2); - - ctx.fillText(str,this.size[0] * 0.5,this.size[1]*0.65); - ctx.textAlign = "left"; - } - - WidgetKnob.prototype.onDrawForeground = function(ctx) - { - this.onDrawImageKnob(ctx); - } - - WidgetKnob.prototype.onExecute = function() - { - this.setOutputData(0, this.properties["value"] ); - - this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); - } - - WidgetKnob.prototype.onMouseDown = function(e) - { - if(!this.imgfg || !this.imgfg.width) return; - - //this.center = [this.imgbg.width * 0.5, this.imgbg.height * 0.5 + 20]; - //this.radius = this.imgbg.width * 0.5; - this.center = [this.size[0] * 0.5, this.size[1] * 0.5 + 20]; - this.radius = this.size[0] * 0.5; - - if(e.canvasY - this.pos[1] < 20 || LiteGraph.distance([e.canvasX,e.canvasY],[this.pos[0] + this.center[0],this.pos[1] + this.center[1]]) > this.radius) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - - /* - var tmp = this.localToScreenSpace(0,0); - this.trace(tmp[0] + "," + tmp[1]); */ - return true; - } - - WidgetKnob.prototype.onMouseMove = function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - var v = this.value; - v -= (m[1] - this.oldmouse[1]) * 0.01; - if(v > 1.0) v = 1.0; - else if(v < 0.0) v = 0.0; - - this.value = v; - this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; - - this.oldmouse = m; - this.setDirtyCanvas(true); - } - - WidgetKnob.prototype.onMouseUp = function(e) - { - if(this.oldmouse) - { - this.oldmouse = null; - this.captureInput(false); - } - } - - WidgetKnob.prototype.onMouseLeave = function(e) - { - //this.oldmouse = null; - } - - WidgetKnob.prototype.onWidget = function(e,widget) - { - if(widget.name=="increase") - this.onPropertyChanged("size", this.properties.size + 10); - else if(widget.name=="decrease") - this.onPropertyChanged("size", this.properties.size - 10); - } - - WidgetKnob.prototype.onPropertyChanged = function(name,value) - { - if(name=="wcolor") - this.properties[name] = value; - else if(name=="size") - { - value = parseInt(value); - this.properties[name] = value; - this.size = [value+4,value+24]; - this.setDirtyCanvas(true,true); - } - else if(name=="min" || name=="max" || name=="value") - { - this.properties[name] = parseFloat(value); - } - else - return false; - return true; - } - - LiteGraph.registerNodeType("widget/knob", WidgetKnob); - - //Widget H SLIDER - function WidgetHSlider() - { - this.size = [160,26]; - this.addOutput("",'number'); - this.properties = {wcolor:"#7AF",min:0,max:1,value:0.5}; - } - - WidgetHSlider.title = "H.Slider"; - WidgetHSlider.desc = "Linear slider controller"; - - WidgetHSlider.prototype.onInit = function() - { - this.value = 0.5; - this.imgfg = this.loadImage("imgs/slider_fg.png"); - } - - WidgetHSlider.prototype.onDrawVectorial = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - //border - ctx.lineWidth = 1; - ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; - ctx.fillStyle="#000"; - ctx.beginPath(); - ctx.rect(2,0,this.size[0]-4,20); - ctx.stroke(); - - ctx.fillStyle=this.properties["wcolor"]; - ctx.beginPath(); - ctx.rect(2+(this.size[0]-4-20)*this.value,0, 20,20); - ctx.fill(); - } - - WidgetHSlider.prototype.onDrawImage = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) - return; - - //border - ctx.lineWidth = 1; - ctx.fillStyle="#000"; - ctx.fillRect(2,9,this.size[0]-4,2); - - ctx.strokeStyle= "#333"; - ctx.beginPath(); - ctx.moveTo(2,9); - ctx.lineTo(this.size[0]-4,9); - ctx.stroke(); - - ctx.strokeStyle= "#AAA"; - ctx.beginPath(); - ctx.moveTo(2,11); - ctx.lineTo(this.size[0]-4,11); - ctx.stroke(); - - ctx.drawImage(this.imgfg, 2+(this.size[0]-4)*this.value - this.imgfg.width*0.5,-this.imgfg.height*0.5 + 10); - }, - - WidgetHSlider.prototype.onDrawForeground = function(ctx) - { - this.onDrawImage(ctx); - } - - WidgetHSlider.prototype.onExecute = function() - { - this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; - this.setOutputData(0, this.properties["value"] ); - this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); - } - - WidgetHSlider.prototype.onMouseDown = function(e) - { - if(e.canvasY - this.pos[1] < 0) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - return true; - } - - WidgetHSlider.prototype.onMouseMove = function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - var v = this.value; - var delta = (m[0] - this.oldmouse[0]); - v += delta / this.size[0]; - if(v > 1.0) v = 1.0; - else if(v < 0.0) v = 0.0; - - this.value = v; - - this.oldmouse = m; - this.setDirtyCanvas(true); - } - - WidgetHSlider.prototype.onMouseUp = function(e) - { - this.oldmouse = null; - this.captureInput(false); - } - - WidgetHSlider.prototype.onMouseLeave = function(e) - { - //this.oldmouse = null; - } - - WidgetHSlider.prototype.onPropertyChanged = function(name,value) - { - if(name=="wcolor") - this.properties[name] = value; - else - return false; - return true; - } - - LiteGraph.registerNodeType("widget/hslider", WidgetHSlider ); - - - function WidgetProgress() - { - this.size = [160,26]; - this.addInput("",'number'); - this.properties = {min:0,max:1,value:0,wcolor:"#AAF"}; - } - - WidgetProgress.title = "Progress"; - WidgetProgress.desc = "Shows data in linear progress"; - - WidgetProgress.prototype.onExecute = function() - { - var v = this.getInputData(0); - if( v != undefined ) - this.properties["value"] = v; - } - - WidgetProgress.prototype.onDrawForeground = function(ctx) - { - //border - ctx.lineWidth = 1; - ctx.fillStyle=this.properties.wcolor; - var v = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); - v = Math.min(1,v); - v = Math.max(0,v); - ctx.fillRect(2,2,(this.size[0]-4)*v,this.size[1]-4); - } - - LiteGraph.registerNodeType("widget/progress", WidgetProgress); - - - /* - LiteGraph.registerNodeType("widget/kpad",{ - title: "KPad", - desc: "bidimensional slider", - size: [200,200], - outputs: [["x",'number'],["y",'number']], - properties:{x:0,y:0,borderColor:"#333",bgcolorTop:"#444",bgcolorBottom:"#000",shadowSize:1, borderRadius:2}, - - createGradient: function(ctx) - { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - }, - - onDrawBackground: function(ctx) - { - if(!this.lineargradient) - this.createGradient(ctx); - - ctx.lineWidth = 1; - ctx.strokeStyle = this.properties["borderColor"]; - //ctx.fillStyle = "#ebebeb"; - ctx.fillStyle = this.lineargradient; - - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - ctx.roundRect(0,0,this.size[0],this.size[1],this.properties["shadowSize"]); - ctx.fill(); - ctx.shadowColor = "rgba(0,0,0,0)"; - ctx.stroke(); - - ctx.fillStyle = "#A00"; - ctx.fillRect(this.size[0] * this.properties["x"] - 5, this.size[1] * this.properties["y"] - 5,10,10); - }, - - onWidget: function(e,widget) - { - if(widget.name == "update") - { - this.lineargradient = null; - this.setDirtyCanvas(true); - } - }, - - onExecute: function() - { - this.setOutputData(0, this.properties["x"] ); - this.setOutputData(1, this.properties["y"] ); - }, - - onMouseDown: function(e) - { - if(e.canvasY - this.pos[1] < 0) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - return true; - }, - - onMouseMove: function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - this.properties.x = m[0] / this.size[0]; - this.properties.y = m[1] / this.size[1]; - - if(this.properties.x > 1.0) this.properties.x = 1.0; - else if(this.properties.x < 0.0) this.properties.x = 0.0; - - if(this.properties.y > 1.0) this.properties.y = 1.0; - else if(this.properties.y < 0.0) this.properties.y = 0.0; - - this.oldmouse = m; - this.setDirtyCanvas(true); - }, - - onMouseUp: function(e) - { - if(this.oldmouse) - { - this.oldmouse = null; - this.captureInput(false); - } - }, - - onMouseLeave: function(e) - { - //this.oldmouse = null; - } - }); - - - - LiteGraph.registerNodeType("widget/button", { - title: "Button", - desc: "A send command button", - - widgets: [{name:"test",text:"Test Button",type:"button"}], - size: [100,40], - properties:{text:"clickme",command:"",color:"#7AF",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",fontsize:"16"}, - outputs:[["M","module"]], - - createGradient: function(ctx) - { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - }, - - drawVectorShape: function(ctx) - { - ctx.fillStyle = this.mouseOver ? this.properties["color"] : "#AAA"; - - if(this.clicking) - ctx.fillStyle = "#FFF"; - - ctx.strokeStyle = "#AAA"; - ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); - ctx.stroke(); - - if(this.mouseOver) - ctx.fill(); - - //ctx.fillRect(5,20,this.size[0] - 10,this.size[1] - 30); - - ctx.fillStyle = this.mouseOver ? "#000" : "#AAA"; - ctx.font = "bold " + this.properties["fontsize"] + "px Criticized,Tahoma"; - ctx.textAlign = "center"; - ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.5*parseInt(this.properties["fontsize"])); - ctx.textAlign = "left"; - }, - - drawBevelShape: function(ctx) - { - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - - if(!this.lineargradient) - this.createGradient(ctx); - - ctx.fillStyle = this.mouseOver ? this.properties["color"] : this.lineargradient; - if(this.clicking) - ctx.fillStyle = "#444"; - - ctx.strokeStyle = "#FFF"; - ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); - ctx.fill(); - ctx.shadowColor = "rgba(0,0,0,0)"; - ctx.stroke(); - - ctx.fillStyle = this.mouseOver ? "#000" : "#444"; - ctx.font = "bold " + this.properties["fontsize"] + "px Century Gothic"; - ctx.textAlign = "center"; - ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.40*parseInt(this.properties["fontsize"])); - ctx.textAlign = "left"; - }, - - onDrawForeground: function(ctx) - { - this.drawBevelShape(ctx); - }, - - clickButton: function() - { - var module = this.getOutputModule(0); - if(this.properties["command"] && this.properties["command"] != "") - { - if (! module.executeAction(this.properties["command"]) ) - this.trace("Error executing action in other module"); - } - else if(module && module.onTrigger) - { - module.onTrigger(); - } - }, - - onMouseDown: function(e) - { - if(e.canvasY - this.pos[1] < 2) - return false; - this.clickButton(); - this.clicking = true; - return true; - }, - - onMouseUp: function(e) - { - this.clicking = false; - }, - - onExecute: function() - { - }, - - onWidget: function(e,widget) - { - if(widget.name == "test") - { - this.clickButton(); - } - }, - - onPropertyChanged: function(name,value) - { - this.properties[name] = value; - return true; - } - }); - */ - - - function WidgetText() - { - this.addInputs("",0); - this.properties = { value:"...",font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1 }; - } - - WidgetText.title = "Text"; - WidgetText.desc = "Shows the input value"; - WidgetText.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}]; - - WidgetText.prototype.onDrawForeground = function(ctx) - { - //ctx.fillStyle="#000"; - //ctx.fillRect(0,0,100,60); - ctx.fillStyle = this.properties["color"]; - var v = this.properties["value"]; - - if(this.properties["glowSize"]) - { - ctx.shadowColor = this.properties["color"]; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["glowSize"]; - } - else - ctx.shadowColor = "transparent"; - - var fontsize = this.properties["fontsize"]; - - ctx.textAlign = this.properties["align"]; - ctx.font = fontsize.toString() + "px " + this.properties["font"]; - this.str = typeof(v) == 'number' ? v.toFixed(this.properties["decimals"]) : v; - - if( typeof(this.str) == 'string') - { - var lines = this.str.split("\\n"); - for(var i in lines) - ctx.fillText(lines[i],this.properties["align"] == "left" ? 15 : this.size[0] - 15, fontsize * -0.15 + fontsize * (parseInt(i)+1) ); - } - - ctx.shadowColor = "transparent"; - this.last_ctx = ctx; - ctx.textAlign = "left"; - } - - WidgetText.prototype.onExecute = function() - { - var v = this.getInputData(0); - if(v != null) - this.properties["value"] = v; - //this.setDirtyCanvas(true); - } - - WidgetText.prototype.resize = function() - { - if(!this.last_ctx) return; - - var lines = this.str.split("\\n"); - this.last_ctx.font = this.properties["fontsize"] + "px " + this.properties["font"]; - var max = 0; - for(var i in lines) - { - var w = this.last_ctx.measureText(lines[i]).width; - if(max < w) max = w; - } - this.size[0] = max + 20; - this.size[1] = 4 + lines.length * this.properties["fontsize"]; - - this.setDirtyCanvas(true); - } - - WidgetText.prototype.onWidget = function(e,widget) - { - if(widget.name == "resize") - this.resize(); - else if (widget.name == "led_text") - { - this.properties["font"] = "Digital"; - this.properties["glowSize"] = 4; - this.setDirtyCanvas(true); - } - else if (widget.name == "normal_text") - { - this.properties["font"] = "Arial"; - this.setDirtyCanvas(true); - } - } - - WidgetText.prototype.onPropertyChanged = function(name,value) - { - this.properties[name] = value; - this.str = typeof(value) == 'number' ? value.toFixed(3) : value; - //this.resize(); - return true; - } - - LiteGraph.registerNodeType("widget/text", WidgetText ); - - - function WidgetPanel() - { - this.size = [200,100]; - this.properties = {borderColor:"#ffffff",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",shadowSize:2, borderRadius:3}; - } - - WidgetPanel.title = "Panel"; - WidgetPanel.desc = "Non interactive panel"; - WidgetPanel.widgets = [{name:"update",text:"Update",type:"button"}]; - - - WidgetPanel.prototype.createGradient = function(ctx) - { - if(this.properties["bgcolorTop"] == "" || this.properties["bgcolorBottom"] == "") - { - this.lineargradient = 0; - return; - } - - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - } - - WidgetPanel.prototype.onDrawForeground = function(ctx) - { - if(this.lineargradient == null) - this.createGradient(ctx); - - if(!this.lineargradient) - return; - - ctx.lineWidth = 1; - ctx.strokeStyle = this.properties["borderColor"]; - //ctx.fillStyle = "#ebebeb"; - ctx.fillStyle = this.lineargradient; - - if(this.properties["shadowSize"]) - { - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - } - else - ctx.shadowColor = "transparent"; - - ctx.roundRect(0,0,this.size[0]-1,this.size[1]-1,this.properties["shadowSize"]); - ctx.fill(); - ctx.shadowColor = "transparent"; - ctx.stroke(); - } - - WidgetPanel.prototype.onWidget = function(e,widget) - { - if(widget.name == "update") - { - this.lineargradient = null; - this.setDirtyCanvas(true); - } - } - - LiteGraph.registerNodeType("widget/panel", WidgetPanel ); - -})(this); +})(this); +//widgets +(function(global){ +var LiteGraph = global.LiteGraph; + + /* Button ****************/ + + function WidgetButton() + { + this.addOutput( "clicked", LiteGraph.EVENT ); + this.addProperty( "text","" ); + this.addProperty( "font","40px Arial" ); + this.addProperty( "message", "" ); + this.size = [64,84]; + } + + WidgetButton.title = "Button"; + WidgetButton.desc = "Triggers an event"; + + WidgetButton.prototype.onDrawForeground = function(ctx) + { + if(this.flags.collapsed) + return; + + //ctx.font = "40px Arial"; + //ctx.textAlign = "center"; + ctx.fillStyle = "black"; + ctx.fillRect(1,1,this.size[0] - 3, this.size[1] - 3); + ctx.fillStyle = "#AAF"; + ctx.fillRect(0,0,this.size[0] - 3, this.size[1] - 3); + ctx.fillStyle = this.clicked ? "white" : (this.mouseOver ? "#668" : "#334"); + ctx.fillRect(1,1,this.size[0] - 4, this.size[1] - 4); + + if( this.properties.text || this.properties.text === 0 ) + { + ctx.textAlign = "center"; + ctx.fillStyle = this.clicked ? "black" : "white"; + if( this.properties.font ) + ctx.font = this.properties.font; + ctx.fillText(this.properties.text, this.size[0] * 0.5, this.size[1] * 0.85 ); + ctx.textAlign = "left"; + } + } + + WidgetButton.prototype.onMouseDown = function(e, local_pos) + { + if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) + { + this.clicked = true; + this.trigger( "clicked", this.properties.message ); + return true; + } + } + + WidgetButton.prototype.onMouseUp = function(e) + { + this.clicked = false; + } + + + LiteGraph.registerNodeType("widget/button", WidgetButton ); + + /* Knob ****************/ + + function WidgetKnob() + { + this.addOutput("",'number'); + this.size = [64,84]; + this.properties = {min:0,max:1,value:0.5,wcolor:"#7AF",size:50}; + } + + WidgetKnob.title = "Knob"; + WidgetKnob.desc = "Circular controller"; + WidgetKnob.widgets = [{name:"increase",text:"+",type:"minibutton"},{name:"decrease",text:"-",type:"minibutton"}]; + + + WidgetKnob.prototype.onAdded = function() + { + this.value = (this.properties["value"] - this.properties["min"]) / (this.properties["max"] - this.properties["min"]); + + this.imgbg = this.loadImage("imgs/knob_bg.png"); + this.imgfg = this.loadImage("imgs/knob_fg.png"); + } + + WidgetKnob.prototype.onDrawImageKnob = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + var d = this.imgbg.width*0.5; + var scale = this.size[0] / this.imgfg.width; + + ctx.save(); + ctx.translate(0,20); + ctx.scale(scale,scale); + ctx.drawImage(this.imgbg,0,0); + //ctx.drawImage(this.imgfg,0,20); + + ctx.translate(d,d); + ctx.rotate(this.value * (Math.PI*2) * 6/8 + Math.PI * 10/8); + //ctx.rotate(this.value * (Math.PI*2)); + ctx.translate(-d,-d); + ctx.drawImage(this.imgfg,0,0); + + ctx.restore(); + + if(this.title) + { + ctx.font = "bold 16px Criticized,Tahoma"; + ctx.fillStyle="rgba(100,100,100,0.8)"; + ctx.textAlign = "center"; + ctx.fillText(this.title.toUpperCase(), this.size[0] * 0.5, 18 ); + ctx.textAlign = "left"; + } + } + + WidgetKnob.prototype.onDrawVectorKnob = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + //circle around + ctx.lineWidth = 1; + ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; + ctx.fillStyle="#000"; + ctx.beginPath(); + ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.5,0,Math.PI*2,true); + ctx.stroke(); + + if(this.value > 0) + { + ctx.strokeStyle=this.properties["wcolor"]; + ctx.lineWidth = (this.properties.size * 0.2); + ctx.beginPath(); + ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.35,Math.PI * -0.5 + Math.PI*2 * this.value,Math.PI * -0.5,true); + ctx.stroke(); + ctx.lineWidth = 1; + } + + ctx.font = (this.properties.size * 0.2) + "px Arial"; + ctx.fillStyle="#AAA"; + ctx.textAlign = "center"; + + var str = this.properties["value"]; + if(typeof(str) == 'number') + str = str.toFixed(2); + + ctx.fillText(str,this.size[0] * 0.5,this.size[1]*0.65); + ctx.textAlign = "left"; + } + + WidgetKnob.prototype.onDrawForeground = function(ctx) + { + this.onDrawImageKnob(ctx); + } + + WidgetKnob.prototype.onExecute = function() + { + this.setOutputData(0, this.properties["value"] ); + + this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); + } + + WidgetKnob.prototype.onMouseDown = function(e) + { + if(!this.imgfg || !this.imgfg.width) return; + + //this.center = [this.imgbg.width * 0.5, this.imgbg.height * 0.5 + 20]; + //this.radius = this.imgbg.width * 0.5; + this.center = [this.size[0] * 0.5, this.size[1] * 0.5 + 20]; + this.radius = this.size[0] * 0.5; + + if(e.canvasY - this.pos[1] < 20 || LiteGraph.distance([e.canvasX,e.canvasY],[this.pos[0] + this.center[0],this.pos[1] + this.center[1]]) > this.radius) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + + /* + var tmp = this.localToScreenSpace(0,0); + this.trace(tmp[0] + "," + tmp[1]); */ + return true; + } + + WidgetKnob.prototype.onMouseMove = function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + var v = this.value; + v -= (m[1] - this.oldmouse[1]) * 0.01; + if(v > 1.0) v = 1.0; + else if(v < 0.0) v = 0.0; + + this.value = v; + this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; + + this.oldmouse = m; + this.setDirtyCanvas(true); + } + + WidgetKnob.prototype.onMouseUp = function(e) + { + if(this.oldmouse) + { + this.oldmouse = null; + this.captureInput(false); + } + } + + WidgetKnob.prototype.onMouseLeave = function(e) + { + //this.oldmouse = null; + } + + WidgetKnob.prototype.onWidget = function(e,widget) + { + if(widget.name=="increase") + this.onPropertyChanged("size", this.properties.size + 10); + else if(widget.name=="decrease") + this.onPropertyChanged("size", this.properties.size - 10); + } + + WidgetKnob.prototype.onPropertyChanged = function(name,value) + { + if(name=="wcolor") + this.properties[name] = value; + else if(name=="size") + { + value = parseInt(value); + this.properties[name] = value; + this.size = [value+4,value+24]; + this.setDirtyCanvas(true,true); + } + else if(name=="min" || name=="max" || name=="value") + { + this.properties[name] = parseFloat(value); + } + else + return false; + return true; + } + + LiteGraph.registerNodeType("widget/knob", WidgetKnob); + + //Widget H SLIDER + function WidgetHSlider() + { + this.size = [160,26]; + this.addOutput("",'number'); + this.properties = {wcolor:"#7AF",min:0,max:1,value:0.5}; + } + + WidgetHSlider.title = "H.Slider"; + WidgetHSlider.desc = "Linear slider controller"; + + WidgetHSlider.prototype.onInit = function() + { + this.value = 0.5; + this.imgfg = this.loadImage("imgs/slider_fg.png"); + } + + WidgetHSlider.prototype.onDrawVectorial = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + //border + ctx.lineWidth = 1; + ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; + ctx.fillStyle="#000"; + ctx.beginPath(); + ctx.rect(2,0,this.size[0]-4,20); + ctx.stroke(); + + ctx.fillStyle=this.properties["wcolor"]; + ctx.beginPath(); + ctx.rect(2+(this.size[0]-4-20)*this.value,0, 20,20); + ctx.fill(); + } + + WidgetHSlider.prototype.onDrawImage = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) + return; + + //border + ctx.lineWidth = 1; + ctx.fillStyle="#000"; + ctx.fillRect(2,9,this.size[0]-4,2); + + ctx.strokeStyle= "#333"; + ctx.beginPath(); + ctx.moveTo(2,9); + ctx.lineTo(this.size[0]-4,9); + ctx.stroke(); + + ctx.strokeStyle= "#AAA"; + ctx.beginPath(); + ctx.moveTo(2,11); + ctx.lineTo(this.size[0]-4,11); + ctx.stroke(); + + ctx.drawImage(this.imgfg, 2+(this.size[0]-4)*this.value - this.imgfg.width*0.5,-this.imgfg.height*0.5 + 10); + }, + + WidgetHSlider.prototype.onDrawForeground = function(ctx) + { + this.onDrawImage(ctx); + } + + WidgetHSlider.prototype.onExecute = function() + { + this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; + this.setOutputData(0, this.properties["value"] ); + this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); + } + + WidgetHSlider.prototype.onMouseDown = function(e) + { + if(e.canvasY - this.pos[1] < 0) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + return true; + } + + WidgetHSlider.prototype.onMouseMove = function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + var v = this.value; + var delta = (m[0] - this.oldmouse[0]); + v += delta / this.size[0]; + if(v > 1.0) v = 1.0; + else if(v < 0.0) v = 0.0; + + this.value = v; + + this.oldmouse = m; + this.setDirtyCanvas(true); + } + + WidgetHSlider.prototype.onMouseUp = function(e) + { + this.oldmouse = null; + this.captureInput(false); + } + + WidgetHSlider.prototype.onMouseLeave = function(e) + { + //this.oldmouse = null; + } + + WidgetHSlider.prototype.onPropertyChanged = function(name,value) + { + if(name=="wcolor") + this.properties[name] = value; + else + return false; + return true; + } + + LiteGraph.registerNodeType("widget/hslider", WidgetHSlider ); + + + function WidgetProgress() + { + this.size = [160,26]; + this.addInput("",'number'); + this.properties = {min:0,max:1,value:0,wcolor:"#AAF"}; + } + + WidgetProgress.title = "Progress"; + WidgetProgress.desc = "Shows data in linear progress"; + + WidgetProgress.prototype.onExecute = function() + { + var v = this.getInputData(0); + if( v != undefined ) + this.properties["value"] = v; + } + + WidgetProgress.prototype.onDrawForeground = function(ctx) + { + //border + ctx.lineWidth = 1; + ctx.fillStyle=this.properties.wcolor; + var v = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + v = Math.min(1,v); + v = Math.max(0,v); + ctx.fillRect(2,2,(this.size[0]-4)*v,this.size[1]-4); + } + + LiteGraph.registerNodeType("widget/progress", WidgetProgress); + + + /* + LiteGraph.registerNodeType("widget/kpad",{ + title: "KPad", + desc: "bidimensional slider", + size: [200,200], + outputs: [["x",'number'],["y",'number']], + properties:{x:0,y:0,borderColor:"#333",bgcolorTop:"#444",bgcolorBottom:"#000",shadowSize:1, borderRadius:2}, + + createGradient: function(ctx) + { + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + }, + + onDrawBackground: function(ctx) + { + if(!this.lineargradient) + this.createGradient(ctx); + + ctx.lineWidth = 1; + ctx.strokeStyle = this.properties["borderColor"]; + //ctx.fillStyle = "#ebebeb"; + ctx.fillStyle = this.lineargradient; + + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + ctx.roundRect(0,0,this.size[0],this.size[1],this.properties["shadowSize"]); + ctx.fill(); + ctx.shadowColor = "rgba(0,0,0,0)"; + ctx.stroke(); + + ctx.fillStyle = "#A00"; + ctx.fillRect(this.size[0] * this.properties["x"] - 5, this.size[1] * this.properties["y"] - 5,10,10); + }, + + onWidget: function(e,widget) + { + if(widget.name == "update") + { + this.lineargradient = null; + this.setDirtyCanvas(true); + } + }, + + onExecute: function() + { + this.setOutputData(0, this.properties["x"] ); + this.setOutputData(1, this.properties["y"] ); + }, + + onMouseDown: function(e) + { + if(e.canvasY - this.pos[1] < 0) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + return true; + }, + + onMouseMove: function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + this.properties.x = m[0] / this.size[0]; + this.properties.y = m[1] / this.size[1]; + + if(this.properties.x > 1.0) this.properties.x = 1.0; + else if(this.properties.x < 0.0) this.properties.x = 0.0; + + if(this.properties.y > 1.0) this.properties.y = 1.0; + else if(this.properties.y < 0.0) this.properties.y = 0.0; + + this.oldmouse = m; + this.setDirtyCanvas(true); + }, + + onMouseUp: function(e) + { + if(this.oldmouse) + { + this.oldmouse = null; + this.captureInput(false); + } + }, + + onMouseLeave: function(e) + { + //this.oldmouse = null; + } + }); + + + + LiteGraph.registerNodeType("widget/button", { + title: "Button", + desc: "A send command button", + + widgets: [{name:"test",text:"Test Button",type:"button"}], + size: [100,40], + properties:{text:"clickme",command:"",color:"#7AF",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",fontsize:"16"}, + outputs:[["M","module"]], + + createGradient: function(ctx) + { + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + }, + + drawVectorShape: function(ctx) + { + ctx.fillStyle = this.mouseOver ? this.properties["color"] : "#AAA"; + + if(this.clicking) + ctx.fillStyle = "#FFF"; + + ctx.strokeStyle = "#AAA"; + ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); + ctx.stroke(); + + if(this.mouseOver) + ctx.fill(); + + //ctx.fillRect(5,20,this.size[0] - 10,this.size[1] - 30); + + ctx.fillStyle = this.mouseOver ? "#000" : "#AAA"; + ctx.font = "bold " + this.properties["fontsize"] + "px Criticized,Tahoma"; + ctx.textAlign = "center"; + ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.5*parseInt(this.properties["fontsize"])); + ctx.textAlign = "left"; + }, + + drawBevelShape: function(ctx) + { + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + + if(!this.lineargradient) + this.createGradient(ctx); + + ctx.fillStyle = this.mouseOver ? this.properties["color"] : this.lineargradient; + if(this.clicking) + ctx.fillStyle = "#444"; + + ctx.strokeStyle = "#FFF"; + ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); + ctx.fill(); + ctx.shadowColor = "rgba(0,0,0,0)"; + ctx.stroke(); + + ctx.fillStyle = this.mouseOver ? "#000" : "#444"; + ctx.font = "bold " + this.properties["fontsize"] + "px Century Gothic"; + ctx.textAlign = "center"; + ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.40*parseInt(this.properties["fontsize"])); + ctx.textAlign = "left"; + }, + + onDrawForeground: function(ctx) + { + this.drawBevelShape(ctx); + }, + + clickButton: function() + { + var module = this.getOutputModule(0); + if(this.properties["command"] && this.properties["command"] != "") + { + if (! module.executeAction(this.properties["command"]) ) + this.trace("Error executing action in other module"); + } + else if(module && module.onTrigger) + { + module.onTrigger(); + } + }, + + onMouseDown: function(e) + { + if(e.canvasY - this.pos[1] < 2) + return false; + this.clickButton(); + this.clicking = true; + return true; + }, + + onMouseUp: function(e) + { + this.clicking = false; + }, + + onExecute: function() + { + }, + + onWidget: function(e,widget) + { + if(widget.name == "test") + { + this.clickButton(); + } + }, + + onPropertyChanged: function(name,value) + { + this.properties[name] = value; + return true; + } + }); + */ + + + function WidgetText() + { + this.addInputs("",0); + this.properties = { value:"...",font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1 }; + } + + WidgetText.title = "Text"; + WidgetText.desc = "Shows the input value"; + WidgetText.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}]; + + WidgetText.prototype.onDrawForeground = function(ctx) + { + //ctx.fillStyle="#000"; + //ctx.fillRect(0,0,100,60); + ctx.fillStyle = this.properties["color"]; + var v = this.properties["value"]; + + if(this.properties["glowSize"]) + { + ctx.shadowColor = this.properties["color"]; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["glowSize"]; + } + else + ctx.shadowColor = "transparent"; + + var fontsize = this.properties["fontsize"]; + + ctx.textAlign = this.properties["align"]; + ctx.font = fontsize.toString() + "px " + this.properties["font"]; + this.str = typeof(v) == 'number' ? v.toFixed(this.properties["decimals"]) : v; + + if( typeof(this.str) == 'string') + { + var lines = this.str.split("\\n"); + for(var i in lines) + ctx.fillText(lines[i],this.properties["align"] == "left" ? 15 : this.size[0] - 15, fontsize * -0.15 + fontsize * (parseInt(i)+1) ); + } + + ctx.shadowColor = "transparent"; + this.last_ctx = ctx; + ctx.textAlign = "left"; + } + + WidgetText.prototype.onExecute = function() + { + var v = this.getInputData(0); + if(v != null) + this.properties["value"] = v; + //this.setDirtyCanvas(true); + } + + WidgetText.prototype.resize = function() + { + if(!this.last_ctx) return; + + var lines = this.str.split("\\n"); + this.last_ctx.font = this.properties["fontsize"] + "px " + this.properties["font"]; + var max = 0; + for(var i in lines) + { + var w = this.last_ctx.measureText(lines[i]).width; + if(max < w) max = w; + } + this.size[0] = max + 20; + this.size[1] = 4 + lines.length * this.properties["fontsize"]; + + this.setDirtyCanvas(true); + } + + WidgetText.prototype.onWidget = function(e,widget) + { + if(widget.name == "resize") + this.resize(); + else if (widget.name == "led_text") + { + this.properties["font"] = "Digital"; + this.properties["glowSize"] = 4; + this.setDirtyCanvas(true); + } + else if (widget.name == "normal_text") + { + this.properties["font"] = "Arial"; + this.setDirtyCanvas(true); + } + } + + WidgetText.prototype.onPropertyChanged = function(name,value) + { + this.properties[name] = value; + this.str = typeof(value) == 'number' ? value.toFixed(3) : value; + //this.resize(); + return true; + } + + LiteGraph.registerNodeType("widget/text", WidgetText ); + + + function WidgetPanel() + { + this.size = [200,100]; + this.properties = {borderColor:"#ffffff",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",shadowSize:2, borderRadius:3}; + } + + WidgetPanel.title = "Panel"; + WidgetPanel.desc = "Non interactive panel"; + WidgetPanel.widgets = [{name:"update",text:"Update",type:"button"}]; + + + WidgetPanel.prototype.createGradient = function(ctx) + { + if(this.properties["bgcolorTop"] == "" || this.properties["bgcolorBottom"] == "") + { + this.lineargradient = 0; + return; + } + + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + } + + WidgetPanel.prototype.onDrawForeground = function(ctx) + { + if(this.lineargradient == null) + this.createGradient(ctx); + + if(!this.lineargradient) + return; + + ctx.lineWidth = 1; + ctx.strokeStyle = this.properties["borderColor"]; + //ctx.fillStyle = "#ebebeb"; + ctx.fillStyle = this.lineargradient; + + if(this.properties["shadowSize"]) + { + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + } + else + ctx.shadowColor = "transparent"; + + ctx.roundRect(0,0,this.size[0]-1,this.size[1]-1,this.properties["shadowSize"]); + ctx.fill(); + ctx.shadowColor = "transparent"; + ctx.stroke(); + } + + WidgetPanel.prototype.onWidget = function(e,widget) + { + if(widget.name == "update") + { + this.lineargradient = null; + this.setDirtyCanvas(true); + } + } + + LiteGraph.registerNodeType("widget/panel", WidgetPanel ); + +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -7811,7 +7809,7 @@ GamepadInput.prototype.onGetOutputs = function() { LiteGraph.registerNodeType("input/gamepad", GamepadInput ); -})(this); +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -8853,764 +8851,764 @@ if(global.glMatrix) } //glMatrix -})(this); -(function(global){ -var LiteGraph = global.LiteGraph; - -function Selector() -{ - this.addInput("sel","boolean"); - this.addOutput("value","number"); - this.properties = { A:0, B:1 }; - this.size = [60,20]; -} - -Selector.title = "Selector"; -Selector.desc = "outputs A if selector is true, B if selector is false"; - -Selector.prototype.onExecute = function() -{ - var cond = this.getInputData(0); - if(cond === undefined) - return; - - for(var i = 1; i < this.inputs.length; i++) - { - var input = this.inputs[i]; - var v = this.getInputData(i); - if(v === undefined) - continue; - this.properties[input.name] = v; - } - - var A = this.properties.A; - var B = this.properties.B; - this.setOutputData(0, cond ? A : B ); -} - -Selector.prototype.onGetInputs = function() { - return [["A",0],["B",0]]; -} - -LiteGraph.registerNodeType("logic/selector", Selector); - -})(this); -(function(global){ -var LiteGraph = global.LiteGraph; - -function GraphicsImage() -{ - this.inputs = []; - this.addOutput("frame","image"); - this.properties = {"url":""}; -} - -GraphicsImage.title = "Image"; -GraphicsImage.desc = "Image loader"; -GraphicsImage.widgets = [{name:"load",text:"Load",type:"button"}]; - -GraphicsImage.supported_extensions = ["jpg","jpeg","png","gif"]; - -GraphicsImage.prototype.onAdded = function() -{ - if(this.properties["url"] != "" && this.img == null) - { - this.loadImage( this.properties["url"] ); - } -} - -GraphicsImage.prototype.onDrawBackground = function(ctx) -{ - if(this.img && this.size[0] > 5 && this.size[1] > 5) - ctx.drawImage(this.img, 0,0,this.size[0],this.size[1]); -} - - -GraphicsImage.prototype.onExecute = function() -{ - if(!this.img) - this.boxcolor = "#000"; - if(this.img && this.img.width) - this.setOutputData(0,this.img); - else - this.setOutputData(0,null); - if(this.img && this.img.dirty) - this.img.dirty = false; -} - -GraphicsImage.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - if (name == "url" && value != "") - this.loadImage(value); - - return true; -} - -GraphicsImage.prototype.loadImage = function( url, callback ) -{ - if(url == "") - { - this.img = null; - return; - } - - this.img = document.createElement("img"); - - if(url.substr(0,7) == "http://") - { - if(LiteGraph.proxy) //proxy external files - url = LiteGraph.proxy + url.substr(7); - } - - this.img.src = url; - this.boxcolor = "#F95"; - var that = this; - this.img.onload = function() - { - if(callback) - callback(this); - that.trace("Image loaded, size: " + that.img.width + "x" + that.img.height ); - this.dirty = true; - that.boxcolor = "#9F9"; - that.setDirtyCanvas(true); - } -} - -GraphicsImage.prototype.onWidget = function(e,widget) -{ - if(widget.name == "load") - { - this.loadImage(this.properties["url"]); - } -} - -GraphicsImage.prototype.onDropFile = function(file) -{ - var that = this; - if(this._url) - URL.revokeObjectURL( this._url ); - this._url = URL.createObjectURL( file ); - this.properties.url = this._url; - this.loadImage( this._url, function(img){ - that.size[1] = (img.height / img.width) * that.size[0]; - }); -} - -LiteGraph.registerNodeType("graphics/image", GraphicsImage); - - - -function ColorPalette() -{ - this.addInput("f","number"); - this.addOutput("Color","color"); - this.properties = {colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}; - -} - -ColorPalette.title = "Palette"; -ColorPalette.desc = "Generates a color"; - -ColorPalette.prototype.onExecute = function() -{ - var c = []; - - if (this.properties.colorA != null) - c.push( hex2num( this.properties.colorA ) ); - if (this.properties.colorB != null) - c.push( hex2num( this.properties.colorB ) ); - if (this.properties.colorC != null) - c.push( hex2num( this.properties.colorC ) ); - if (this.properties.colorD != null) - c.push( hex2num( this.properties.colorD ) ); - - var f = this.getInputData(0); - if(f == null) f = 0.5; - if (f > 1.0) - f = 1.0; - else if (f < 0.0) - f = 0.0; - - if(c.length == 0) - return; - - var result = [0,0,0]; - if(f == 0) - result = c[0]; - else if(f == 1) - result = c[ c.length - 1]; - else - { - var pos = (c.length - 1)* f; - var c1 = c[ Math.floor(pos) ]; - var c2 = c[ Math.floor(pos)+1 ]; - var t = pos - Math.floor(pos); - result[0] = c1[0] * (1-t) + c2[0] * (t); - result[1] = c1[1] * (1-t) + c2[1] * (t); - result[2] = c1[2] * (1-t) + c2[2] * (t); - } - - /* - c[0] = 1.0 - Math.abs( Math.sin( 0.1 * reModular.getTime() * Math.PI) ); - c[1] = Math.abs( Math.sin( 0.07 * reModular.getTime() * Math.PI) ); - c[2] = Math.abs( Math.sin( 0.01 * reModular.getTime() * Math.PI) ); - */ - - for(var i in result) - result[i] /= 255; - - this.boxcolor = colorToString(result); - this.setOutputData(0, result); -} - - -LiteGraph.registerNodeType("color/palette", ColorPalette ); - - -function ImageFrame() -{ - this.addInput("","image"); - this.size = [200,200]; -} - -ImageFrame.title = "Frame"; -ImageFrame.desc = "Frame viewerew"; -ImageFrame.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}]; - - -ImageFrame.prototype.onDrawBackground = function(ctx) -{ - if(this.frame) - ctx.drawImage(this.frame, 0,0,this.size[0],this.size[1]); -} - -ImageFrame.prototype.onExecute = function() -{ - this.frame = this.getInputData(0); - this.setDirtyCanvas(true); -} - -ImageFrame.prototype.onWidget = function(e,widget) -{ - if(widget.name == "resize" && this.frame) - { - var width = this.frame.width; - var height = this.frame.height; - - if(!width && this.frame.videoWidth != null ) - { - width = this.frame.videoWidth; - height = this.frame.videoHeight; - } - - if(width && height) - this.size = [width, height]; - this.setDirtyCanvas(true,true); - } - else if(widget.name == "view") - this.show(); -} - -ImageFrame.prototype.show = function() -{ - //var str = this.canvas.toDataURL("image/png"); - if(showElement && this.frame) - showElement(this.frame); -} - - -LiteGraph.registerNodeType("graphics/frame", ImageFrame ); - - - -/* -LiteGraph.registerNodeType("visualization/graph", { - desc: "Shows a graph of the inputs", - - inputs: [["",0],["",0],["",0],["",0]], - size: [200,200], - properties: {min:-1,max:1,bgColor:"#000"}, - onDrawBackground: function(ctx) - { - var colors = ["#FFF","#FAA","#AFA","#AAF"]; - - if(this.properties.bgColor != null && this.properties.bgColor != "") - { - ctx.fillStyle="#000"; - ctx.fillRect(2,2,this.size[0] - 4, this.size[1]-4); - } - - if(this.data) - { - var min = this.properties["min"]; - var max = this.properties["max"]; - - for(var i in this.data) - { - var data = this.data[i]; - if(!data) continue; - - if(this.getInputInfo(i) == null) continue; - - ctx.strokeStyle = colors[i]; - ctx.beginPath(); - - var d = data.length / this.size[0]; - for(var j = 0; j < data.length; j += d) - { - var value = data[ Math.floor(j) ]; - value = (value - min) / (max - min); - if (value > 1.0) value = 1.0; - else if(value < 0) value = 0; - - if(j == 0) - ctx.moveTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); - else - ctx.lineTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); - } - - ctx.stroke(); - } - } - - //ctx.restore(); - }, - - onExecute: function() - { - if(!this.data) this.data = []; - - for(var i in this.inputs) - { - var value = this.getInputData(i); - - if(typeof(value) == "number") - { - value = value ? value : 0; - if(!this.data[i]) - this.data[i] = []; - this.data[i].push(value); - - if(this.data[i].length > (this.size[1] - 4)) - this.data[i] = this.data[i].slice(1,this.data[i].length); - } - else - this.data[i] = value; - } - - if(this.data.length) - this.setDirtyCanvas(true); - } - }); -*/ - -function ImageFade() -{ - this.addInputs([["img1","image"],["img2","image"],["fade","number"]]); - this.addOutput("","image"); - this.properties = {fade:0.5,width:512,height:512}; -} - -ImageFade.title = "Image fade"; -ImageFade.desc = "Fades between images"; -ImageFade.widgets = [{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}]; - -ImageFade.prototype.onAdded = function() -{ - this.createCanvas(); - var ctx = this.canvas.getContext("2d"); - ctx.fillStyle = "#000"; - ctx.fillRect(0,0,this.properties["width"],this.properties["height"]); -} - -ImageFade.prototype.createCanvas = function() -{ - this.canvas = document.createElement("canvas"); - this.canvas.width = this.properties["width"]; - this.canvas.height = this.properties["height"]; -} - -ImageFade.prototype.onExecute = function() -{ - var ctx = this.canvas.getContext("2d"); - this.canvas.width = this.canvas.width; - - var A = this.getInputData(0); - if (A != null) - { - ctx.drawImage(A,0,0,this.canvas.width, this.canvas.height); - } - - var fade = this.getInputData(2); - if(fade == null) - fade = this.properties["fade"]; - else - this.properties["fade"] = fade; - - ctx.globalAlpha = fade; - var B = this.getInputData(1); - if (B != null) - { - ctx.drawImage(B,0,0,this.canvas.width, this.canvas.height); - } - ctx.globalAlpha = 1.0; - - this.setOutputData(0,this.canvas); - this.setDirtyCanvas(true); -} - -LiteGraph.registerNodeType("graphics/imagefade", ImageFade); - - - -function ImageCrop() -{ - this.addInput("","image"); - this.addOutput("","image"); - this.properties = {width:256,height:256,x:0,y:0,scale:1.0 }; - this.size = [50,20]; -} - -ImageCrop.title = "Crop"; -ImageCrop.desc = "Crop Image"; - -ImageCrop.prototype.onAdded = function() -{ - this.createCanvas(); -} - -ImageCrop.prototype.createCanvas = function() -{ - this.canvas = document.createElement("canvas"); - this.canvas.width = this.properties["width"]; - this.canvas.height = this.properties["height"]; -} - -ImageCrop.prototype.onExecute = function() -{ - var input = this.getInputData(0); - if(!input) - return; - - if(input.width) - { - var ctx = this.canvas.getContext("2d"); - - ctx.drawImage(input, -this.properties["x"],-this.properties["y"], input.width * this.properties["scale"], input.height * this.properties["scale"]); - this.setOutputData(0,this.canvas); - } - else - this.setOutputData(0,null); -} - -ImageCrop.prototype.onDrawBackground = function(ctx) -{ - if(this.flags.collapsed) - return; - if(this.canvas) - ctx.drawImage( this.canvas, 0,0,this.canvas.width,this.canvas.height, 0,0, this.size[0], this.size[1] ); -} - -ImageCrop.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - - if(name == "scale") - { - this.properties[name] = parseFloat(value); - if(this.properties[name] == 0) - { - this.trace("Error in scale"); - this.properties[name] = 1.0; - } - } - else - this.properties[name] = parseInt(value); - - this.createCanvas(); - - return true; -} - -LiteGraph.registerNodeType("graphics/cropImage", ImageCrop ); - - -function ImageVideo() -{ - this.addInput("t","number"); - this.addOutputs([["frame","image"],["t","number"],["d","number"]]); - this.properties = {"url":""}; -} - -ImageVideo.title = "Video"; -ImageVideo.desc = "Video playback"; -ImageVideo.widgets = [{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}]; - -ImageVideo.prototype.onExecute = function() -{ - if(!this.properties.url) - return; - - if(this.properties.url != this._video_url) - this.loadVideo(this.properties.url); - - if(!this._video || this._video.width == 0) - return; - - var t = this.getInputData(0); - if(t && t >= 0 && t <= 1.0) - { - this._video.currentTime = t * this._video.duration; - this._video.pause(); - } - - this._video.dirty = true; - this.setOutputData(0,this._video); - this.setOutputData(1,this._video.currentTime); - this.setOutputData(2,this._video.duration); - this.setDirtyCanvas(true); -} - -ImageVideo.prototype.onStart = function() -{ - this.play(); -} - -ImageVideo.prototype.onStop = function() -{ - this.stop(); -} - -ImageVideo.prototype.loadVideo = function(url) -{ - this._video_url = url; - - this._video = document.createElement("video"); - this._video.src = url; - this._video.type = "type=video/mp4"; - - this._video.muted = true; - this._video.autoplay = true; - - var that = this; - this._video.addEventListener("loadedmetadata",function(e) { - //onload - that.trace("Duration: " + this.duration + " seconds"); - that.trace("Size: " + this.videoWidth + "," + this.videoHeight); - that.setDirtyCanvas(true); - this.width = this.videoWidth; - this.height = this.videoHeight; - }); - this._video.addEventListener("progress",function(e) { - //onload - //that.trace("loading..."); - }); - this._video.addEventListener("error",function(e) { - console.log("Error loading video: " + this.src); - that.trace("Error loading video: " + this.src); - if (this.error) { - switch (this.error.code) { - case this.error.MEDIA_ERR_ABORTED: - that.trace("You stopped the video."); - break; - case this.error.MEDIA_ERR_NETWORK: - that.trace("Network error - please try again later."); - break; - case this.error.MEDIA_ERR_DECODE: - that.trace("Video is broken.."); - break; - case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: - that.trace("Sorry, your browser can't play this video."); - break; - } - } - }); - - this._video.addEventListener("ended",function(e) { - that.trace("Ended."); - this.play(); //loop - }); - - //document.body.appendChild(this.video); -} - -ImageVideo.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - if (name == "url" && value != "") - this.loadVideo(value); - - return true; -} - -ImageVideo.prototype.play = function() -{ - if(this._video) - this._video.play(); -} - -ImageVideo.prototype.playPause = function() -{ - if(!this._video) - return; - if(this._video.paused) - this.play(); - else - this.pause(); -} - -ImageVideo.prototype.stop = function() -{ - if(!this._video) - return; - this._video.pause(); - this._video.currentTime = 0; -} - -ImageVideo.prototype.pause = function() -{ - if(!this._video) - return; - this.trace("Video paused"); - this._video.pause(); -} - -ImageVideo.prototype.onWidget = function(e,widget) -{ - /* - if(widget.name == "demo") - { - this.loadVideo(); - } - else if(widget.name == "play") - { - if(this._video) - this.playPause(); - } - if(widget.name == "stop") - { - this.stop(); - } - else if(widget.name == "mute") - { - if(this._video) - this._video.muted = !this._video.muted; - } - */ -} - -LiteGraph.registerNodeType("graphics/video", ImageVideo ); - - -// Texture Webcam ***************************************** -function ImageWebcam() -{ - this.addOutput("Webcam","image"); - this.properties = {}; -} - -ImageWebcam.title = "Webcam"; -ImageWebcam.desc = "Webcam image"; - - -ImageWebcam.prototype.openStream = function() -{ - //Vendor prefixes hell - navigator.getUserMedia = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia); - window.URL = window.URL || window.webkitURL; - - if (!navigator.getUserMedia) { - //console.log('getUserMedia() is not supported in your browser, use chrome and enable WebRTC from about://flags'); - return; - } - - this._waiting_confirmation = true; - - // Not showing vendor prefixes. - navigator.getUserMedia({video: true}, this.streamReady.bind(this), onFailSoHard); - - var that = this; - function onFailSoHard(e) { - console.log('Webcam rejected', e); - that._webcam_stream = false; - that.box_color = "red"; - }; -} - -ImageWebcam.prototype.onRemoved = function() -{ - if(this._webcam_stream) - { - this._webcam_stream.stop(); - this._webcam_stream = null; - this._video = null; - } -} - -ImageWebcam.prototype.streamReady = function(localMediaStream) -{ - this._webcam_stream = localMediaStream; - //this._waiting_confirmation = false; - - var video = this._video; - if(!video) - { - video = document.createElement("video"); - video.autoplay = true; - video.src = window.URL.createObjectURL(localMediaStream); - this._video = video; - //document.body.appendChild( video ); //debug - //when video info is loaded (size and so) - video.onloadedmetadata = function(e) { - // Ready to go. Do some stuff. - console.log(e); - }; - } -}, - -ImageWebcam.prototype.onExecute = function() -{ - if(this._webcam_stream == null && !this._waiting_confirmation) - this.openStream(); - - if(!this._video || !this._video.videoWidth) return; - - this._video.width = this._video.videoWidth; - this._video.height = this._video.videoHeight; - this.setOutputData(0, this._video); -} - -ImageWebcam.prototype.getExtraMenuOptions = function(graphcanvas) -{ - var that = this; - var txt = !that.properties.show ? "Show Frame" : "Hide Frame"; - return [ {content: txt, callback: - function() { - that.properties.show = !that.properties.show; - } - }]; -} - -ImageWebcam.prototype.onDrawBackground = function(ctx) -{ - if(this.flags.collapsed || this.size[1] <= 20 || !this.properties.show) - return; - - if(!this._video) - return; - - //render to graph canvas - ctx.save(); - ctx.drawImage(this._video, 0, 0, this.size[0], this.size[1]); - ctx.restore(); -} - -LiteGraph.registerNodeType("graphics/webcam", ImageWebcam ); - - -})(this); - +})(this); +(function(global){ +var LiteGraph = global.LiteGraph; + +function Selector() +{ + this.addInput("sel","boolean"); + this.addOutput("value","number"); + this.properties = { A:0, B:1 }; + this.size = [60,20]; +} + +Selector.title = "Selector"; +Selector.desc = "outputs A if selector is true, B if selector is false"; + +Selector.prototype.onExecute = function() +{ + var cond = this.getInputData(0); + if(cond === undefined) + return; + + for(var i = 1; i < this.inputs.length; i++) + { + var input = this.inputs[i]; + var v = this.getInputData(i); + if(v === undefined) + continue; + this.properties[input.name] = v; + } + + var A = this.properties.A; + var B = this.properties.B; + this.setOutputData(0, cond ? A : B ); +} + +Selector.prototype.onGetInputs = function() { + return [["A",0],["B",0]]; +} + +LiteGraph.registerNodeType("logic/selector", Selector); + +})(this); +(function(global){ +var LiteGraph = global.LiteGraph; + +function GraphicsImage() +{ + this.inputs = []; + this.addOutput("frame","image"); + this.properties = {"url":""}; +} + +GraphicsImage.title = "Image"; +GraphicsImage.desc = "Image loader"; +GraphicsImage.widgets = [{name:"load",text:"Load",type:"button"}]; + +GraphicsImage.supported_extensions = ["jpg","jpeg","png","gif"]; + +GraphicsImage.prototype.onAdded = function() +{ + if(this.properties["url"] != "" && this.img == null) + { + this.loadImage( this.properties["url"] ); + } +} + +GraphicsImage.prototype.onDrawBackground = function(ctx) +{ + if(this.img && this.size[0] > 5 && this.size[1] > 5) + ctx.drawImage(this.img, 0,0,this.size[0],this.size[1]); +} + + +GraphicsImage.prototype.onExecute = function() +{ + if(!this.img) + this.boxcolor = "#000"; + if(this.img && this.img.width) + this.setOutputData(0,this.img); + else + this.setOutputData(0,null); + if(this.img && this.img.dirty) + this.img.dirty = false; +} + +GraphicsImage.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + if (name == "url" && value != "") + this.loadImage(value); + + return true; +} + +GraphicsImage.prototype.loadImage = function( url, callback ) +{ + if(url == "") + { + this.img = null; + return; + } + + this.img = document.createElement("img"); + + if(url.substr(0,7) == "http://") + { + if(LiteGraph.proxy) //proxy external files + url = LiteGraph.proxy + url.substr(7); + } + + this.img.src = url; + this.boxcolor = "#F95"; + var that = this; + this.img.onload = function() + { + if(callback) + callback(this); + that.trace("Image loaded, size: " + that.img.width + "x" + that.img.height ); + this.dirty = true; + that.boxcolor = "#9F9"; + that.setDirtyCanvas(true); + } +} + +GraphicsImage.prototype.onWidget = function(e,widget) +{ + if(widget.name == "load") + { + this.loadImage(this.properties["url"]); + } +} + +GraphicsImage.prototype.onDropFile = function(file) +{ + var that = this; + if(this._url) + URL.revokeObjectURL( this._url ); + this._url = URL.createObjectURL( file ); + this.properties.url = this._url; + this.loadImage( this._url, function(img){ + that.size[1] = (img.height / img.width) * that.size[0]; + }); +} + +LiteGraph.registerNodeType("graphics/image", GraphicsImage); + + + +function ColorPalette() +{ + this.addInput("f","number"); + this.addOutput("Color","color"); + this.properties = {colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}; + +} + +ColorPalette.title = "Palette"; +ColorPalette.desc = "Generates a color"; + +ColorPalette.prototype.onExecute = function() +{ + var c = []; + + if (this.properties.colorA != null) + c.push( hex2num( this.properties.colorA ) ); + if (this.properties.colorB != null) + c.push( hex2num( this.properties.colorB ) ); + if (this.properties.colorC != null) + c.push( hex2num( this.properties.colorC ) ); + if (this.properties.colorD != null) + c.push( hex2num( this.properties.colorD ) ); + + var f = this.getInputData(0); + if(f == null) f = 0.5; + if (f > 1.0) + f = 1.0; + else if (f < 0.0) + f = 0.0; + + if(c.length == 0) + return; + + var result = [0,0,0]; + if(f == 0) + result = c[0]; + else if(f == 1) + result = c[ c.length - 1]; + else + { + var pos = (c.length - 1)* f; + var c1 = c[ Math.floor(pos) ]; + var c2 = c[ Math.floor(pos)+1 ]; + var t = pos - Math.floor(pos); + result[0] = c1[0] * (1-t) + c2[0] * (t); + result[1] = c1[1] * (1-t) + c2[1] * (t); + result[2] = c1[2] * (1-t) + c2[2] * (t); + } + + /* + c[0] = 1.0 - Math.abs( Math.sin( 0.1 * reModular.getTime() * Math.PI) ); + c[1] = Math.abs( Math.sin( 0.07 * reModular.getTime() * Math.PI) ); + c[2] = Math.abs( Math.sin( 0.01 * reModular.getTime() * Math.PI) ); + */ + + for(var i in result) + result[i] /= 255; + + this.boxcolor = colorToString(result); + this.setOutputData(0, result); +} + + +LiteGraph.registerNodeType("color/palette", ColorPalette ); + + +function ImageFrame() +{ + this.addInput("","image"); + this.size = [200,200]; +} + +ImageFrame.title = "Frame"; +ImageFrame.desc = "Frame viewerew"; +ImageFrame.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}]; + + +ImageFrame.prototype.onDrawBackground = function(ctx) +{ + if(this.frame) + ctx.drawImage(this.frame, 0,0,this.size[0],this.size[1]); +} + +ImageFrame.prototype.onExecute = function() +{ + this.frame = this.getInputData(0); + this.setDirtyCanvas(true); +} + +ImageFrame.prototype.onWidget = function(e,widget) +{ + if(widget.name == "resize" && this.frame) + { + var width = this.frame.width; + var height = this.frame.height; + + if(!width && this.frame.videoWidth != null ) + { + width = this.frame.videoWidth; + height = this.frame.videoHeight; + } + + if(width && height) + this.size = [width, height]; + this.setDirtyCanvas(true,true); + } + else if(widget.name == "view") + this.show(); +} + +ImageFrame.prototype.show = function() +{ + //var str = this.canvas.toDataURL("image/png"); + if(showElement && this.frame) + showElement(this.frame); +} + + +LiteGraph.registerNodeType("graphics/frame", ImageFrame ); + + + +/* +LiteGraph.registerNodeType("visualization/graph", { + desc: "Shows a graph of the inputs", + + inputs: [["",0],["",0],["",0],["",0]], + size: [200,200], + properties: {min:-1,max:1,bgColor:"#000"}, + onDrawBackground: function(ctx) + { + var colors = ["#FFF","#FAA","#AFA","#AAF"]; + + if(this.properties.bgColor != null && this.properties.bgColor != "") + { + ctx.fillStyle="#000"; + ctx.fillRect(2,2,this.size[0] - 4, this.size[1]-4); + } + + if(this.data) + { + var min = this.properties["min"]; + var max = this.properties["max"]; + + for(var i in this.data) + { + var data = this.data[i]; + if(!data) continue; + + if(this.getInputInfo(i) == null) continue; + + ctx.strokeStyle = colors[i]; + ctx.beginPath(); + + var d = data.length / this.size[0]; + for(var j = 0; j < data.length; j += d) + { + var value = data[ Math.floor(j) ]; + value = (value - min) / (max - min); + if (value > 1.0) value = 1.0; + else if(value < 0) value = 0; + + if(j == 0) + ctx.moveTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); + else + ctx.lineTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); + } + + ctx.stroke(); + } + } + + //ctx.restore(); + }, + + onExecute: function() + { + if(!this.data) this.data = []; + + for(var i in this.inputs) + { + var value = this.getInputData(i); + + if(typeof(value) == "number") + { + value = value ? value : 0; + if(!this.data[i]) + this.data[i] = []; + this.data[i].push(value); + + if(this.data[i].length > (this.size[1] - 4)) + this.data[i] = this.data[i].slice(1,this.data[i].length); + } + else + this.data[i] = value; + } + + if(this.data.length) + this.setDirtyCanvas(true); + } + }); +*/ + +function ImageFade() +{ + this.addInputs([["img1","image"],["img2","image"],["fade","number"]]); + this.addOutput("","image"); + this.properties = {fade:0.5,width:512,height:512}; +} + +ImageFade.title = "Image fade"; +ImageFade.desc = "Fades between images"; +ImageFade.widgets = [{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}]; + +ImageFade.prototype.onAdded = function() +{ + this.createCanvas(); + var ctx = this.canvas.getContext("2d"); + ctx.fillStyle = "#000"; + ctx.fillRect(0,0,this.properties["width"],this.properties["height"]); +} + +ImageFade.prototype.createCanvas = function() +{ + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties["width"]; + this.canvas.height = this.properties["height"]; +} + +ImageFade.prototype.onExecute = function() +{ + var ctx = this.canvas.getContext("2d"); + this.canvas.width = this.canvas.width; + + var A = this.getInputData(0); + if (A != null) + { + ctx.drawImage(A,0,0,this.canvas.width, this.canvas.height); + } + + var fade = this.getInputData(2); + if(fade == null) + fade = this.properties["fade"]; + else + this.properties["fade"] = fade; + + ctx.globalAlpha = fade; + var B = this.getInputData(1); + if (B != null) + { + ctx.drawImage(B,0,0,this.canvas.width, this.canvas.height); + } + ctx.globalAlpha = 1.0; + + this.setOutputData(0,this.canvas); + this.setDirtyCanvas(true); +} + +LiteGraph.registerNodeType("graphics/imagefade", ImageFade); + + + +function ImageCrop() +{ + this.addInput("","image"); + this.addOutput("","image"); + this.properties = {width:256,height:256,x:0,y:0,scale:1.0 }; + this.size = [50,20]; +} + +ImageCrop.title = "Crop"; +ImageCrop.desc = "Crop Image"; + +ImageCrop.prototype.onAdded = function() +{ + this.createCanvas(); +} + +ImageCrop.prototype.createCanvas = function() +{ + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties["width"]; + this.canvas.height = this.properties["height"]; +} + +ImageCrop.prototype.onExecute = function() +{ + var input = this.getInputData(0); + if(!input) + return; + + if(input.width) + { + var ctx = this.canvas.getContext("2d"); + + ctx.drawImage(input, -this.properties["x"],-this.properties["y"], input.width * this.properties["scale"], input.height * this.properties["scale"]); + this.setOutputData(0,this.canvas); + } + else + this.setOutputData(0,null); +} + +ImageCrop.prototype.onDrawBackground = function(ctx) +{ + if(this.flags.collapsed) + return; + if(this.canvas) + ctx.drawImage( this.canvas, 0,0,this.canvas.width,this.canvas.height, 0,0, this.size[0], this.size[1] ); +} + +ImageCrop.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + + if(name == "scale") + { + this.properties[name] = parseFloat(value); + if(this.properties[name] == 0) + { + this.trace("Error in scale"); + this.properties[name] = 1.0; + } + } + else + this.properties[name] = parseInt(value); + + this.createCanvas(); + + return true; +} + +LiteGraph.registerNodeType("graphics/cropImage", ImageCrop ); + + +function ImageVideo() +{ + this.addInput("t","number"); + this.addOutputs([["frame","image"],["t","number"],["d","number"]]); + this.properties = {"url":""}; +} + +ImageVideo.title = "Video"; +ImageVideo.desc = "Video playback"; +ImageVideo.widgets = [{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}]; + +ImageVideo.prototype.onExecute = function() +{ + if(!this.properties.url) + return; + + if(this.properties.url != this._video_url) + this.loadVideo(this.properties.url); + + if(!this._video || this._video.width == 0) + return; + + var t = this.getInputData(0); + if(t && t >= 0 && t <= 1.0) + { + this._video.currentTime = t * this._video.duration; + this._video.pause(); + } + + this._video.dirty = true; + this.setOutputData(0,this._video); + this.setOutputData(1,this._video.currentTime); + this.setOutputData(2,this._video.duration); + this.setDirtyCanvas(true); +} + +ImageVideo.prototype.onStart = function() +{ + this.play(); +} + +ImageVideo.prototype.onStop = function() +{ + this.stop(); +} + +ImageVideo.prototype.loadVideo = function(url) +{ + this._video_url = url; + + this._video = document.createElement("video"); + this._video.src = url; + this._video.type = "type=video/mp4"; + + this._video.muted = true; + this._video.autoplay = true; + + var that = this; + this._video.addEventListener("loadedmetadata",function(e) { + //onload + that.trace("Duration: " + this.duration + " seconds"); + that.trace("Size: " + this.videoWidth + "," + this.videoHeight); + that.setDirtyCanvas(true); + this.width = this.videoWidth; + this.height = this.videoHeight; + }); + this._video.addEventListener("progress",function(e) { + //onload + //that.trace("loading..."); + }); + this._video.addEventListener("error",function(e) { + console.log("Error loading video: " + this.src); + that.trace("Error loading video: " + this.src); + if (this.error) { + switch (this.error.code) { + case this.error.MEDIA_ERR_ABORTED: + that.trace("You stopped the video."); + break; + case this.error.MEDIA_ERR_NETWORK: + that.trace("Network error - please try again later."); + break; + case this.error.MEDIA_ERR_DECODE: + that.trace("Video is broken.."); + break; + case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: + that.trace("Sorry, your browser can't play this video."); + break; + } + } + }); + + this._video.addEventListener("ended",function(e) { + that.trace("Ended."); + this.play(); //loop + }); + + //document.body.appendChild(this.video); +} + +ImageVideo.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + if (name == "url" && value != "") + this.loadVideo(value); + + return true; +} + +ImageVideo.prototype.play = function() +{ + if(this._video) + this._video.play(); +} + +ImageVideo.prototype.playPause = function() +{ + if(!this._video) + return; + if(this._video.paused) + this.play(); + else + this.pause(); +} + +ImageVideo.prototype.stop = function() +{ + if(!this._video) + return; + this._video.pause(); + this._video.currentTime = 0; +} + +ImageVideo.prototype.pause = function() +{ + if(!this._video) + return; + this.trace("Video paused"); + this._video.pause(); +} + +ImageVideo.prototype.onWidget = function(e,widget) +{ + /* + if(widget.name == "demo") + { + this.loadVideo(); + } + else if(widget.name == "play") + { + if(this._video) + this.playPause(); + } + if(widget.name == "stop") + { + this.stop(); + } + else if(widget.name == "mute") + { + if(this._video) + this._video.muted = !this._video.muted; + } + */ +} + +LiteGraph.registerNodeType("graphics/video", ImageVideo ); + + +// Texture Webcam ***************************************** +function ImageWebcam() +{ + this.addOutput("Webcam","image"); + this.properties = {}; +} + +ImageWebcam.title = "Webcam"; +ImageWebcam.desc = "Webcam image"; + + +ImageWebcam.prototype.openStream = function() +{ + //Vendor prefixes hell + navigator.getUserMedia = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia); + window.URL = window.URL || window.webkitURL; + + if (!navigator.getUserMedia) { + //console.log('getUserMedia() is not supported in your browser, use chrome and enable WebRTC from about://flags'); + return; + } + + this._waiting_confirmation = true; + + // Not showing vendor prefixes. + navigator.getUserMedia({video: true}, this.streamReady.bind(this), onFailSoHard); + + var that = this; + function onFailSoHard(e) { + console.log('Webcam rejected', e); + that._webcam_stream = false; + that.box_color = "red"; + }; +} + +ImageWebcam.prototype.onRemoved = function() +{ + if(this._webcam_stream) + { + this._webcam_stream.stop(); + this._webcam_stream = null; + this._video = null; + } +} + +ImageWebcam.prototype.streamReady = function(localMediaStream) +{ + this._webcam_stream = localMediaStream; + //this._waiting_confirmation = false; + + var video = this._video; + if(!video) + { + video = document.createElement("video"); + video.autoplay = true; + video.src = window.URL.createObjectURL(localMediaStream); + this._video = video; + //document.body.appendChild( video ); //debug + //when video info is loaded (size and so) + video.onloadedmetadata = function(e) { + // Ready to go. Do some stuff. + console.log(e); + }; + } +}, + +ImageWebcam.prototype.onExecute = function() +{ + if(this._webcam_stream == null && !this._waiting_confirmation) + this.openStream(); + + if(!this._video || !this._video.videoWidth) return; + + this._video.width = this._video.videoWidth; + this._video.height = this._video.videoHeight; + this.setOutputData(0, this._video); +} + +ImageWebcam.prototype.getExtraMenuOptions = function(graphcanvas) +{ + var that = this; + var txt = !that.properties.show ? "Show Frame" : "Hide Frame"; + return [ {content: txt, callback: + function() { + that.properties.show = !that.properties.show; + } + }]; +} + +ImageWebcam.prototype.onDrawBackground = function(ctx) +{ + if(this.flags.collapsed || this.size[1] <= 20 || !this.properties.show) + return; + + if(!this._video) + return; + + //render to graph canvas + ctx.save(); + ctx.drawImage(this._video, 0, 0, this.size[0], this.size[1]); + ctx.restore(); +} + +LiteGraph.registerNodeType("graphics/webcam", ImageWebcam ); + + +})(this); + (function(global){ var LiteGraph = global.LiteGraph; @@ -12084,7 +12082,7 @@ LGraphTextureKuwaharaFilter.pixel_shader = "\n\ } //litegl.js defined -})(this); +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -12648,7 +12646,7 @@ if(typeof(GL) != "undefined") global.LGraphFXVigneting = LGraphFXVigneting; } -})(this); +})(this); (function( global ) { var LiteGraph = global.LiteGraph; @@ -13356,7 +13354,7 @@ LiteGraph.registerNodeType("midi/cc", LGMIDICC); function now() { return window.performance.now() } -})( this ); +})( this ); (function( global ) { var LiteGraph = global.LiteGraph; @@ -14612,263 +14610,4 @@ LiteGraph.registerNodeType("audio/destination", LGAudioDestination); -})( this ); -//event related nodes -(function(global){ -var LiteGraph = global.LiteGraph; - -function LGWebSocket() -{ - this.size = [60,20]; - this.addInput("send", LiteGraph.ACTION); - this.addOutput("received", LiteGraph.EVENT); - this.addInput("in", 0 ); - this.addOutput("out", 0 ); - this.properties = { - url: "", - room: "lgraph" //allows to filter messages - }; - this._ws = null; - this._last_data = []; -} - -LGWebSocket.title = "WebSocket"; -LGWebSocket.desc = "Send data through a websocket"; - -LGWebSocket.prototype.onPropertyChanged = function(name,value) -{ - if(name == "url") - this.createSocket(); -} - -LGWebSocket.prototype.onExecute = function() -{ - if(!this._ws && this.properties.url) - this.createSocket(); - - if(!this._ws || this._ws.readyState != WebSocket.OPEN ) - return; - - var room = this.properties.room; - - for(var i = 1; i < this.inputs.length; ++i) - { - var data = this.getInputData(i); - if(data != null) - { - var json; - try - { - json = JSON.stringify({ type: 0, room: room, channel: i, data: data }); - } - catch (err) - { - continue; - } - this._ws.send( json ); - } - } - - for(var i = 1; i < this.outputs.length; ++i) - this.setOutputData( i, this._last_data[i] ); -} - -LGWebSocket.prototype.createSocket = function() -{ - var that = this; - var url = this.properties.url; - if( url.substr(0,2) != "ws" ) - url = "ws://" + url; - this._ws = new WebSocket( url ); - this._ws.onopen = function() - { - console.log("ready"); - that.boxcolor = "#8E8"; - } - this._ws.onmessage = function(e) - { - var data = JSON.parse( e.data ); - if( data.room && data.room != this.properties.room ) - return; - if( e.data.type == 1 ) - that.triggerSlot( 0, data ); - else - that._last_data[ e.data.channel || 0 ] = data.data; - } - this._ws.onerror = function(e) - { - console.log("couldnt connect to websocket"); - that.boxcolor = "#E88"; - } - this._ws.onclose = function(e) - { - console.log("connection closed"); - that.boxcolor = "#000"; - } -} - -LGWebSocket.prototype.send = function(data) -{ - if(!this._ws || this._ws.readyState != WebSocket.OPEN ) - return; - this._ws.send( JSON.stringify({ type:1, msg: data }) ); -} - -LGWebSocket.prototype.onAction = function( action, param ) -{ - if(!this._ws || this._ws.readyState != WebSocket.OPEN ) - return; - this._ws.send( { type: 1, room: this.properties.room, action: action, data: param } ); -} - -LGWebSocket.prototype.onGetInputs = function() -{ - return [["in",0]]; -} - -LGWebSocket.prototype.onGetOutputs = function() -{ - return [["out",0]]; -} - -LiteGraph.registerNodeType("network/websocket", LGWebSocket ); - - -//It is like a websocket but using the SillyServer.js server that bounces packets back to all clients connected: -//For more information: https://github.com/jagenjo/SillyServer.js - -function LGSillyClient() -{ - this.size = [60,20]; - this.addInput("send", LiteGraph.ACTION); - this.addOutput("received", LiteGraph.EVENT); - this.addInput("in", 0 ); - this.addOutput("out", 0 ); - this.properties = { - url: "tamats.com:55000", - room: "lgraph", - save_bandwidth: true - }; - - this._server = null; - this.createSocket(); - this._last_input_data = []; - this._last_output_data = []; -} - -LGSillyClient.title = "SillyClient"; -LGSillyClient.desc = "Connects to SillyServer to broadcast messages"; - -LGSillyClient.prototype.onPropertyChanged = function(name,value) -{ - var final_url = (this.properties.url + "/" + this.properties.room); - if(this._server && this._final_url != final_url ) - { - this._server.connect( this.properties.url, this.properties.room ); - this._final_url = final_url; - } -} - -LGSillyClient.prototype.onExecute = function() -{ - if(!this._server || !this._server.is_connected) - return; - - var save_bandwidth = this.properties.save_bandwidth; - - for(var i = 1; i < this.inputs.length; ++i) - { - var data = this.getInputData(i); - if(data != null) - { - if( save_bandwidth && this._last_input_data[i] == data ) - continue; - this._server.sendMessage( { type: 0, channel: i, data: data } ); - this._last_input_data[i] = data; - } - } - - for(var i = 1; i < this.outputs.length; ++i) - this.setOutputData( i, this._last_output_data[i] ); -} - -LGSillyClient.prototype.createSocket = function() -{ - var that = this; - if(typeof(SillyClient) == "undefined") - { - if(!this._error) - console.error("SillyClient node cannot be used, you must include SillyServer.js"); - this._error = true; - return; - } - - this._server = new SillyClient(); - this._server.on_ready = function() - { - console.log("ready"); - that.boxcolor = "#8E8"; - } - this._server.on_message = function(id,msg) - { - var data = null; - try - { - data = JSON.parse( msg ); - } - catch (err) - { - return; - } - - if(data.type == 1) - that.triggerSlot( 0, data ); - else - that._last_output_data[ data.channel || 0 ] = data.data; - } - this._server.on_error = function(e) - { - console.log("couldnt connect to websocket"); - that.boxcolor = "#E88"; - } - this._server.on_close = function(e) - { - console.log("connection closed"); - that.boxcolor = "#000"; - } - - if(this.properties.url && this.properties.room) - { - this._server.connect( this.properties.url, this.properties.room ); - this._final_url = (this.properties.url + "/" + this.properties.room); - } -} - -LGSillyClient.prototype.send = function(data) -{ - if(!this._server || !this._server.is_connected) - return; - this._server.sendMessage( { type:1, data: data } ); -} - -LGSillyClient.prototype.onAction = function( action, param ) -{ - if(!this._server || !this._server.is_connected) - return; - this._server.sendMessage( { type: 1, action: action, data: param } ); -} - -LGSillyClient.prototype.onGetInputs = function() -{ - return [["in",0]]; -} - -LGSillyClient.prototype.onGetOutputs = function() -{ - return [["out",0]]; -} - -LiteGraph.registerNodeType("network/sillyclient", LGSillyClient ); - - -})(this); +})( this ); \ No newline at end of file diff --git a/build/litegraph.min.js b/build/litegraph.min.js index bcea741a0..5d8753fd9 100755 --- a/build/litegraph.min.js +++ b/build/litegraph.min.js @@ -1,402 +1,6715 @@ -(function(s){function e(){f.debug&&console.log("Graph created");this.list_of_graphcanvas=null;this.clear()}function g(a){this._ctor()}function d(a,b,c){c=c||{};this.background_image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; -a&&a.constructor===String&&(a=document.querySelector(a));this.max_zoom=10;this.min_zoom=0.1;this.title_text_font="bold 14px Arial";this.inner_text_font="normal 12px Arial";this.default_link_color="#AAC";this.highquality_render=!0;this.editor_alpha=1;this.pause_rendering=!1;this.render_only_selected=this.clear_background=this.render_shadows=!0;this.live_mode=!1;this.allow_interaction=this.allow_dragnodes=this.allow_dragcanvas=this.show_info=!0;this.render_connections_shadows=this.always_render_background= -!1;this.render_connection_arrows=this.render_curved_connections=this.render_connections_border=!0;this.connections_width=3;b&&b.attachCanvas(this);this.setCanvas(a);this.clear();c.skip_render||this.startRendering();this.autoresize=c.autoresize}function q(a,b){return Math.sqrt((b[0]-a[0])*(b[0]-a[0])+(b[1]-a[1])*(b[1]-a[1]))}function k(a,b,c,h,f,d){return ca&&hb?!0:!1}function t(a,b){return a[0]>b[2]||a[1]>b[3]||a[2]r.width-l.width-10&&(f=r.width-l.width-10);d>r.height-l.height-10&&(d=r.height-l.height-10)}h.style.left=f+"px";h.style.top=d+"px"}var f=s.LiteGraph={NODE_TITLE_HEIGHT:16,NODE_SLOT_HEIGHT:15,NODE_WIDTH:140,NODE_MIN_WIDTH:50,NODE_COLLAPSED_RADIUS:10,NODE_COLLAPSED_WIDTH:80,CANVAS_GRID_SIZE:10,NODE_TITLE_COLOR:"#222",NODE_DEFAULT_COLOR:"#999",NODE_DEFAULT_BGCOLOR:"#444",NODE_DEFAULT_BOXCOLOR:"#AEF",NODE_DEFAULT_SHAPE:"box",MAX_NUMBER_OF_NODES:1E3, -DEFAULT_POSITION:[100,100],node_images_path:"",VALID_SHAPES:["box","round"],BOX_SHAPE:1,ROUND_SHAPE:2,CIRCLE_SHAPE:3,INPUT:1,OUTPUT:2,EVENT:-1,ACTION:-1,ALWAYS:0,ON_EVENT:1,NEVER:2,ON_TRIGGER:3,proxy:null,debug:!1,throw_errors:!0,allow_scripts:!0,registered_node_types:{},node_types_by_file_extension:{},Nodes:{},registerNodeType:function(a,b){if(!b.prototype)throw"Cannot register a simple object, it must be a class with a prototype";b.type=a;f.debug&&console.log("Node registered: "+a);a.split("/"); -var c=b.constructor.name,h=a.lastIndexOf("/");b.category=a.substr(0,h);b.title||(b.title=c);if(b.prototype)for(var p in g.prototype)b.prototype[p]||(b.prototype[p]=g.prototype[p]);Object.defineProperty(b.prototype,"shape",{set:function(a){switch(a){case "box":this._shape=f.BOX_SHAPE;break;case "round":this._shape=f.ROUND_SHAPE;break;case "circle":this._shape=f.CIRCLE_SHAPE;break;default:this._shape=a}},get:function(a){return this._shape},enumerable:!0});this.registered_node_types[a]=b;b.constructor.name&& -(this.Nodes[c]=b);b.prototype.onPropertyChange&&console.warn("LiteGraph node class "+a+" has onPropertyChange method, it must be called onPropertyChanged with d at the end");if(b.supported_extensions)for(p in b.supported_extensions)this.node_types_by_file_extension[b.supported_extensions[p].toLowerCase()]=b},addNodeMethod:function(a,b){g.prototype[a]=b;for(var c in this.registered_node_types){var h=this.registered_node_types[c];h.prototype[a]&&(h.prototype["_"+a]=h.prototype[a]);h.prototype[a]=b}}, -createNode:function(a,b,c){var h=this.registered_node_types[a];if(!h)return f.debug&&console.log('GraphNode type "'+a+'" not registered.'),null;b=b||h.title||a;h=new h(b);h.type=a;h.title||(h.title=b);h.properties||(h.properties={});h.properties_info||(h.properties_info=[]);h.flags||(h.flags={});h.size||(h.size=h.computeSize());h.pos||(h.pos=f.DEFAULT_POSITION.concat());h.mode||(h.mode=f.ALWAYS);if(c)for(var p in c)h[p]=c[p];return h},getNodeType:function(a){return this.registered_node_types[a]}, -getNodeTypesInCategory:function(a){var b=[],c;for(c in this.registered_node_types)""==a?null==this.registered_node_types[c].category&&b.push(this.registered_node_types[c]):this.registered_node_types[c].category==a&&b.push(this.registered_node_types[c]);return b},getNodeTypesCategories:function(){var a={"":1},b;for(b in this.registered_node_types)this.registered_node_types[b].category&&!this.registered_node_types[b].skip_list&&(a[this.registered_node_types[b].category]=1);var c=[];for(b in a)c.push(b); -return c},reloadNodes:function(a){var b=document.getElementsByTagName("script"),c=[],h;for(h in b)c.push(b[h]);b=document.getElementsByTagName("head")[0];a=document.location.href+a;for(h in c){var p=c[h].src;if(p&&p.substr(0,a.length)==a)try{f.debug&&console.log("Reloading: "+p);var d=document.createElement("script");d.type="text/javascript";d.src=p;b.appendChild(d);b.removeChild(c[h])}catch(r){if(f.throw_errors)throw r;f.debug&&console.log("Error while reloading "+p)}}f.debug&&console.log("Nodes reloaded")}, -cloneObject:function(a,b){if(null==a)return null;var c=JSON.parse(JSON.stringify(a));if(!b)return c;for(var h in c)b[h]=c[h];return b},isValidConnection:function(a,b){return!a||!b||a==b||a!==f.EVENT&&b!==f.EVENT&&a.toLowerCase()==b.toLowerCase()?!0:!1}};f.getTime="undefined"!=typeof performance?performance.now.bind(performance):"undefined"!=typeof Date&&Date.now?Date.now.bind(Date):"undefined"!=typeof process?function(){var a=process.hrtime();return 0.001*a[0]+1E-6*a[1]}:function(){return(new Date).getTime()}; -s.LGraph=f.LGraph=e;e.supported_types=["number","string","boolean"];e.prototype.getSupportedTypes=function(){return this.supported_types||e.supported_types};e.STATUS_STOPPED=1;e.STATUS_RUNNING=2;e.prototype.clear=function(){this.stop();this.status=e.STATUS_STOPPED;this.last_node_id=0;this._nodes=[];this._nodes_by_id={};this._nodes_executable=this._nodes_in_order=null;this.last_link_id=0;this.links={};this.iteration=0;this.config={};this.fixedtime=this.runningtime=this.globaltime=0;this.elapsed_time= -this.fixedtime_lapse=0.01;this.starttime=0;this.catch_errors=!0;this.global_inputs={};this.global_outputs={};this.debug=!0;this.change();this.sendActionToCanvas("clear")};e.prototype.attachCanvas=function(a){if(a.constructor!=d)throw"attachCanvas expects a LGraphCanvas instance";a.graph&&a.graph!=this&&a.graph.detachCanvas(a);a.graph=this;this.list_of_graphcanvas||(this.list_of_graphcanvas=[]);this.list_of_graphcanvas.push(a)};e.prototype.detachCanvas=function(a){if(this.list_of_graphcanvas){var b= -this.list_of_graphcanvas.indexOf(a);-1!=b&&(a.graph=null,this.list_of_graphcanvas.splice(b,1))}};e.prototype.start=function(a){if(this.status!=e.STATUS_RUNNING){this.status=e.STATUS_RUNNING;if(this.onPlayEvent)this.onPlayEvent();this.sendEventToAllNodes("onStart");this.starttime=f.getTime();var b=this;this.execution_timer_id=setInterval(function(){b.runStep(1,!this.catch_errors)},a||1)}};e.prototype.stop=function(){if(this.status!=e.STATUS_STOPPED){this.status=e.STATUS_STOPPED;if(this.onStopEvent)this.onStopEvent(); -null!=this.execution_timer_id&&clearInterval(this.execution_timer_id);this.execution_timer_id=null;this.sendEventToAllNodes("onStop")}};e.prototype.runStep=function(a,b){a=a||1;var c=f.getTime();this.globaltime=0.001*(c-this.starttime);var h=this._nodes_executable?this._nodes_executable:this._nodes;if(h){if(b){for(var p=0;p=f.MAX_NUMBER_OF_NODES)throw"LiteGraph: max number of nodes in a graph reached";null==a.id||-1==a.id?a.id=++this.last_node_id:this.last_node_id!a.length|| -(this._pos[0]=a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});this.id=-1;this.type=null;this.inputs=[];this.outputs=[];this.connections=[];this.properties={};this.properties_info=[];this.data=null;this.flags={}};g.prototype.configure=function(a){for(var b in a)if("console"!=b)if("properties"==b)for(var c in a.properties){if(this.properties[c]=a.properties[c],this.onPropertyChanged)this.onPropertyChanged(c,a.properties[c])}else null!=a[b]&&("object"==typeof a[b]?this[b]&& -this[b].configure?this[b].configure(a[b]):this[b]=f.cloneObject(a[b],this[b]):this[b]=a[b]);if(this.onConnectionsChange){if(this.inputs)for(var h=0;h=this.outputs.length)){var c=this.outputs[a];if(c&&(c._data=b,this.outputs[a].links))for(c=0;c=this.inputs.length||null==this.inputs[a].link)){var c=this.graph.links[this.inputs[a].link];if(!c)return null;if(!b)return c.data;var h=this.graph.getNodeById(c.origin_id);if(!h)return c.data;if(h.updateOutputData)h.updateOutputData(c.origin_slot);else if(h.onExecute)h.onExecute();return c.data}};g.prototype.isInputConnected=function(a){return this.inputs?a=this.inputs.length)return null;a=this.inputs[a];return a&&a.link?(a=this.graph.links[a.link])?this.graph.getNodeById(a.origin_id):null:null};g.prototype.getOutputData=function(a){return!this.outputs||a>=this.outputs.length?null:this.outputs[a]._data};g.prototype.getOutputInfo=function(a){return this.outputs?a=this.outputs.length)return null;a=this.outputs[a];if(!a.links||0==a.links.length)return null;for(var b=[],c=0;ca&&this.pos[1]-h-cb)return!0;return!1};g.prototype.getSlotInPosition=function(a,b){if(this.inputs)for(var c=0,h=this.inputs.length;c=this.outputs.length)return f.debug&&console.log("Connect: Error, slot number not found"),!1;b&&b.constructor===Number&&(b=this.graph.getNodeById(b));if(!b)throw"Node not found";if(b==this)return!1;if(c.constructor===String){if(c=b.findInputSlot(c),-1== -c)return f.debug&&console.log("Connect: Error, no slot of name "+c),!1}else{if(c===f.EVENT)return!1;if(!b.inputs||c>=b.inputs.length)return f.debug&&console.log("Connect: Error, slot number not found"),!1}null!=b.inputs[c].link&&b.disconnectInput(c);this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this);var h=this.outputs[a];if(b.onConnectInput&&!1===b.onConnectInput(c,h.type,h))return!1;var p=b.inputs[c];if(f.isValidConnection(h.type,p.type)){var d={id:this.graph.last_link_id++,type:p.type, -origin_id:this.id,origin_slot:a,target_id:b.id,target_slot:c};this.graph.links[d.id]=d;null==h.links&&(h.links=[]);h.links.push(d.id);b.inputs[c].link=d.id;if(this.onConnectionsChange)this.onConnectionsChange(f.OUTPUT,a,!0,d,h);if(b.onConnectionsChange)b.onConnectionsChange(f.INPUT,c,!0,d,p)}this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this);return!0};g.prototype.disconnectOutput=function(a,b){if(a.constructor===String){if(a=this.findOutputSlot(a),-1==a)return f.debug&&console.log("Connect: Error, no slot of name "+ -a),!1}else if(!this.outputs||a>=this.outputs.length)return f.debug&&console.log("Connect: Error, slot number not found"),!1;var c=this.outputs[a];if(!c.links||0==c.links.length)return!1;if(b){b.constructor===Number&&(b=this.graph.getNodeById(b));if(!b)throw"Target Node not found";for(var h=0,p=c.links.length;h=this.inputs.length)return f.debug&&console.log("Connect: Error, slot number not found"),!1;var b=this.inputs[a];if(!b)return!1;var c=this.inputs[a].link;this.inputs[a].link=null;var h=this.graph.links[c];if(h){var d=this.graph.getNodeById(h.origin_id);if(!d)return!1;var e=d.outputs[h.origin_slot]; -if(!e||!e.links||0==e.links.length)return!1;for(var g=0,l=e.links.length;gb&&this.inputs[b].pos?[this.pos[0]+this.inputs[b].pos[0],this.pos[1]+this.inputs[b].pos[1]]:!a&&this.outputs.length>b&&this.outputs[b].pos?[this.pos[0]+this.outputs[b].pos[0],this.pos[1]+this.outputs[b].pos[1]]:a?[this.pos[0],this.pos[1]+10+b*f.NODE_SLOT_HEIGHT]:[this.pos[0]+this.size[0]+1,this.pos[1]+10+b*f.NODE_SLOT_HEIGHT]};g.prototype.alignToGrid=function(){this.pos[0]= -f.CANVAS_GRID_SIZE*Math.round(this.pos[0]/f.CANVAS_GRID_SIZE);this.pos[1]=f.CANVAS_GRID_SIZE*Math.round(this.pos[1]/f.CANVAS_GRID_SIZE)};g.prototype.trace=function(a){this.console||(this.console=[]);this.console.push(a);this.console.length>g.MAX_CONSOLE&&this.console.shift();this.graph.onNodeTrace(this,a)};g.prototype.setDirtyCanvas=function(a,b){this.graph&&this.graph.sendActionToCanvas("setDirty",[a,b])};g.prototype.loadImage=function(a){var b=new Image;b.src=f.node_images_path+a;b.ready=!1;var c= -this;b.onload=function(){this.ready=!0;c.setDirtyCanvas(!0)};return b};g.prototype.captureInput=function(a){if(this.graph&&this.graph.list_of_graphcanvas)for(var b=this.graph.list_of_graphcanvas,c=0;c element, you passed a "+a.localName;throw"This browser doesnt support Canvas";}null==(this.ctx=a.getContext("2d"))&&(console.warn("This canvas seems to be WebGL, enabling WebGL renderer"),this.enableWebGL());this._mousemove_callback=this.processMouseMove.bind(this);this._mouseup_callback=this.processMouseUp.bind(this); -b||this.bindEvents()}};d.prototype._doNothing=function(a){a.preventDefault();return!1};d.prototype._doReturnTrue=function(a){a.preventDefault();return!0};d.prototype.bindEvents=function(){if(this._events_binded)console.warn("LGraphCanvas: events already binded");else{var a=this.canvas;this._mousedown_callback=this.processMouseDown.bind(this);this._mousewheel_callback=this.processMouseWheel.bind(this);a.addEventListener("mousedown",this._mousedown_callback,!0);a.addEventListener("mousemove",this._mousemove_callback); -a.addEventListener("mousewheel",this._mousewheel_callback,!1);a.addEventListener("contextmenu",this._doNothing);a.addEventListener("DOMMouseScroll",this._mousewheel_callback,!1);a.addEventListener("touchstart",this.touchHandler,!0);a.addEventListener("touchmove",this.touchHandler,!0);a.addEventListener("touchend",this.touchHandler,!0);a.addEventListener("touchcancel",this.touchHandler,!0);this._key_callback=this.processKey.bind(this);a.addEventListener("keydown",this._key_callback);a.addEventListener("keyup", -this._key_callback);this._ondrop_callback=this.processDrop.bind(this);a.addEventListener("dragover",this._doNothing,!1);a.addEventListener("dragend",this._doNothing,!1);a.addEventListener("drop",this._ondrop_callback,!1);a.addEventListener("dragenter",this._doReturnTrue,!1);this._events_binded=!0}};d.prototype.unbindEvents=function(){this._events_binded?(this.canvas.removeEventListener("mousedown",this._mousedown_callback),this.canvas.removeEventListener("mousewheel",this._mousewheel_callback),this.canvas.removeEventListener("DOMMouseScroll", -this._mousewheel_callback),this.canvas.removeEventListener("keydown",this._key_callback),this.canvas.removeEventListener("keyup",this._key_callback),this.canvas.removeEventListener("contextmenu",this._doNothing),this.canvas.removeEventListener("drop",this._ondrop_callback),this.canvas.removeEventListener("dragenter",this._doReturnTrue),this.canvas.removeEventListener("touchstart",this.touchHandler),this.canvas.removeEventListener("touchmove",this.touchHandler),this.canvas.removeEventListener("touchend", -this.touchHandler),this.canvas.removeEventListener("touchcancel",this.touchHandler),this._ondrop_callback=this._key_callback=this._mousewheel_callback=this._mousedown_callback=null,this._events_binded=!1):console.warn("LGraphCanvas: no events binded")};d.getFileExtension=function(a){var b=a.indexOf("?");-1!=b&&(a=a.substr(0,b));b=a.lastIndexOf(".");return-1==b?"":a.substr(b+1).toLowerCase()};d.prototype.enableWebGL=function(){if(void 0===typeof GL)throw"litegl.js must be included to use a WebGL canvas"; -if(void 0===typeof enableWebGLCanvas)throw"webglCanvas.js must be included to use this feature";this.gl=this.ctx=enableWebGLCanvas(this.canvas);this.ctx.webgl=!0;this.bgcanvas=this.canvas;this.bgctx=this.gl};d.prototype.setDirty=function(a,b){a&&(this.dirty_canvas=!0);b&&(this.dirty_bgcanvas=!0)};d.prototype.getCanvasWindow=function(){if(!this.canvas)return window;var a=this.canvas.ownerDocument;return a.defaultView||a.parentWindow};d.prototype.startRendering=function(){function a(){this.pause_rendering|| -this.draw();var b=this.getCanvasWindow();this.is_rendering&&b.requestAnimationFrame(a.bind(this))}this.is_rendering||(this.is_rendering=!0,a.call(this))};d.prototype.stopRendering=function(){this.is_rendering=!1};d.prototype.processMouseDown=function(a){if(this.graph){this.adjustMouseEvent(a);var b=this.getCanvasWindow();d.active_canvas=this;this.canvas.removeEventListener("mousemove",this._mousemove_callback);b.document.addEventListener("mousemove",this._mousemove_callback,!0);b.document.addEventListener("mouseup", -this._mouseup_callback,!0);var c=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes);f.closeAllContextMenus(b);if(1==a.which){if(!(a.shiftKey||c&&this.selected_nodes[c.id])){var h=[],p;for(p in this.selected_nodes)this.selected_nodes[p]!=c&&h.push(this.selected_nodes[p]);for(p in h)this.processNodeDeselected(h[p])}h=!1;if(c&&this.allow_interaction){this.live_mode||c.flags.pinned||this.bringToFront(c);var e=!1;if(!this.connecting_node&&!c.flags.collapsed&&!this.live_mode){if(c.outputs){p= -0;for(var g=c.outputs.length;pf.getTime()-this.last_mouseclick&&this.selected_nodes[c.id]){if(c.onDblClick)c.onDblClick(a);this.processNodeDblClicked(c);p=!0}c.onMouseDown&&c.onMouseDown(a,[a.canvasX-c.pos[0],a.canvasY-c.pos[1]])?p=!0:this.live_mode&&(p=h=!0);p||(this.allow_dragnodes&&(this.node_dragged= -c),this.selected_nodes[c.id]||this.processNodeSelected(c,a));this.dirty_canvas=!0}}else h=!0;h&&this.allow_dragcanvas&&(this.dragging_canvas=!0)}else 2!=a.which&&3==a.which&&this.processContextMenu(c,a);this.last_mouse[0]=a.localX;this.last_mouse[1]=a.localY;this.last_mouseclick=f.getTime();this.canvas_mouse=[a.canvasX,a.canvasY];this.graph.change();(!b.document.activeElement||"input"!=b.document.activeElement.nodeName.toLowerCase()&&"textarea"!=b.document.activeElement.nodeName.toLowerCase())&&a.preventDefault(); -a.stopPropagation();if(this.onMouseDown)this.onMouseDown(a);return!1}};d.prototype.processMouseMove=function(a){this.autoresize&&this.resize();if(this.graph){d.active_canvas=this;this.adjustMouseEvent(a);var b=[a.localX,a.localY],c=[b[0]-this.last_mouse[0],b[1]-this.last_mouse[1]];this.last_mouse=b;this.canvas_mouse=[a.canvasX,a.canvasY];if(this.dragging_canvas)this.offset[0]+=c[0]/this.scale,this.offset[1]+=c[1]/this.scale,this.dirty_bgcanvas=this.dirty_canvas=!0;else if(this.allow_interaction){this.connecting_node&& -(this.dirty_canvas=!0);for(var b=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes),h=0,p=this.graph._nodes.length;hb&&(c*=1/1.1);this.setZoom(c,[a.localX,a.localY]);this.graph.change();a.preventDefault();return!1}};d.prototype.isOverNodeBox=function(a, -b,c){var h=f.NODE_TITLE_HEIGHT;return k(b,c,a.pos[0]+2,a.pos[1]+2-h,h-4,h-4)?!0:!1};d.prototype.isOverNodeInput=function(a,b,c,h){if(a.inputs)for(var f=0,d=a.inputs.length;fthis.max_zoom?this.scale=this.max_zoom:this.scalec-this.graph._last_trigger_time)&&this.drawBackCanvas();(this.dirty_canvas||a)&&this.drawFrontCanvas();this.fps=this.render_time?1/this.render_time:0;this.frame+=1}};d.prototype.drawFrontCanvas=function(){this.ctx||(this.ctx=this.bgcanvas.getContext("2d"));var a=this.ctx;if(a){a.start2D&&a.start2D();var b=this.canvas;a.restore();a.setTransform(1,0,0,1,0,0); -this.dirty_area&&(a.save(),a.beginPath(),a.rect(this.dirty_area[0],this.dirty_area[1],this.dirty_area[2],this.dirty_area[3]),a.clip());this.clear_background&&a.clearRect(0,0,b.width,b.height);this.bgcanvas==this.canvas?this.drawBackCanvas():a.drawImage(this.bgcanvas,0,0);if(this.onRender)this.onRender(b,a);this.show_info&&this.renderInfo(a);if(this.graph){a.save();a.scale(this.scale,this.scale);a.translate(this.offset[0],this.offset[1]);this.visible_nodes=b=this.computeVisibleNodes();for(var c=0;c< -b.length;++c){var h=b[c];a.save();a.translate(h.pos[0],h.pos[1]);this.drawNode(h,a);a.restore()}this.graph.config.links_ontop&&(this.live_mode||this.drawConnections(a));if(null!=this.connecting_pos){a.lineWidth=this.connections_width;b=null;switch(this.connecting_output.type){case f.EVENT:b="#F85";break;default:b="#AFA"}this.renderLink(a,this.connecting_pos,[this.canvas_mouse[0],this.canvas_mouse[1]],null,!1,null,b);a.beginPath();this.connecting_output.type===f.EVENT?a.rect(this.connecting_pos[0]- -6+0.5,this.connecting_pos[1]-5+0.5,14,10):a.arc(this.connecting_pos[0],this.connecting_pos[1],4,0,2*Math.PI);a.fill();a.fillStyle="#ffcc00";this._highlight_input&&(a.beginPath(),a.arc(this._highlight_input[0],this._highlight_input[1],6,0,2*Math.PI),a.fill())}a.restore()}this.dirty_area&&a.restore();a.finish2D&&a.finish2D();this.dirty_canvas=!1}};d.prototype.renderInfo=function(a,b,c){b=b||0;c=c||0;a.save();a.translate(b,c);a.font="10px Arial";a.fillStyle="#888";this.graph?(a.fillText("T: "+this.graph.globaltime.toFixed(2)+ -"s",5,13),a.fillText("I: "+this.graph.iteration,5,26),a.fillText("F: "+this.frame,5,39),a.fillText("FPS:"+this.fps.toFixed(2),5,52)):a.fillText("No graph selected",5,13);a.restore()};d.prototype.drawBackCanvas=function(){var a=this.bgcanvas;if(a.width!=this.canvas.width||a.height!=this.canvas.height)a.width=this.canvas.width,a.height=this.canvas.height;this.bgctx||(this.bgctx=this.bgcanvas.getContext("2d"));var b=this.bgctx;b.start&&b.start();this.clear_background&&b.clearRect(0,0,a.width,a.height); -this._graph_stack&&this._graph_stack.length&&(b.strokeStyle=this._graph_stack[this._graph_stack.length-1].bgcolor,b.lineWidth=10,b.strokeRect(1,1,a.width-2,a.height-2),b.lineWidth=1);b.restore();b.setTransform(1,0,0,1,0,0);if(this.graph){b.save();b.scale(this.scale,this.scale);b.translate(this.offset[0],this.offset[1]);if(this.background_image&&0.5b-g._last_time&&(l=2-0.002*(b-g._last_time),n="rgba(255,255,255, "+l.toFixed(2)+")",this.renderLink(a,k,d.getConnectionPos(!0,e),g,!0,l,n))}}}}a.globalAlpha=1};d.prototype.renderLink=function(a,b,c,h,e,g,n){if(this.highquality_render){var l=q(b,c);this.render_connections_border&&0.6b[1]?0:Math.PI,a.save(),a.translate(h[0],h[1]),a.rotate(n),a.beginPath(),a.moveTo(-5,-5),a.lineTo(0,5),a.lineTo(5,-5),a.fill(),a.restore());if(g)for(g=0;5>g;++g)h=(0.001*f.getTime()+0.2*g)%1,h=this.computeConnectionPoint(b,c,h),a.beginPath(), -a.arc(h[0],h[1],5,0,2*Math.PI),a.fill()}else a.beginPath(),a.moveTo(b[0],b[1]),a.lineTo(c[0],c[1]),a.stroke()};d.prototype.computeConnectionPoint=function(a,b,c){var f=q(a,b),d=[a[0]+0.25*f,a[1]],f=[b[0]-0.25*f,b[1]],e=(1-c)*(1-c)*(1-c),g=3*(1-c)*(1-c)*c,l=3*(1-c)*c*c;c*=c*c;return[e*a[0]+g*d[0]+l*f[0]+c*b[0],e*a[1]+g*d[1]+l*f[1]+c*b[1]]};d.prototype.resize=function(a,b){if(!a&&!b){var c=this.canvas.parentNode;a=c.offsetWidth;b=c.offsetHeight}if(this.canvas.width!=a||this.canvas.height!=b)this.canvas.width= -a,this.canvas.height=b,this.bgcanvas.width=this.canvas.width,this.bgcanvas.height=this.canvas.height,this.setDirty(!0,!0)};d.prototype.switchLiveMode=function(a){if(a){var b=this,c=this.live_mode?1.1:0.9;this.live_mode&&(this.live_mode=!1,this.editor_alpha=0.1);var f=setInterval(function(){b.editor_alpha*=c;b.dirty_canvas=!0;b.dirty_bgcanvas=!0;1>c&&0.01>b.editor_alpha&&(clearInterval(f),1>c&&(b.live_mode=!0));1"+k+""+ -a+"",value:k});if(l.length)return new f.ContextMenu(l,{event:c,callback:g,parentMenu:h,allow_html:!0,node:e},b),!1}};d.decodeHTML=function(a){var b=document.createElement("div");b.innerText=a;return b.innerHTML};d.onResizeNode=function(a,b,c,f,d){d&&(d.size=d.computeSize(),d.setDirtyCanvas(!0,!0))};d.onShowTitleEditor=function(a,b,c,f,e){function g(){e.title=l.value;n.parentNode.removeChild(n);e.setDirtyCanvas(!0,!0)}var n=document.createElement("div");n.className="graphdialog";n.innerHTML= -"Title";var l=n.querySelector("input");l&&(l.value=e.title,l.addEventListener("keydown",function(a){13==a.keyCode&&(g(),a.preventDefault(),a.stopPropagation())}));a=d.active_canvas.canvas;b=a.getBoundingClientRect();f=c=-20;b&&(c-=b.left,f-=b.top);event?(n.style.left=event.pageX+c+"px",n.style.top=event.pageY+f+"px"):(n.style.left=0.5*a.width+c+"px",n.style.top=0.5*a.height+f+"px");n.querySelector("button").addEventListener("click", -g);a.parentNode.appendChild(n)};d.prototype.showEditPropertyValue=function(a,b,c){function f(){d(A.value)}function d(c){"number"==typeof a.properties[b]&&(c=Number(c));a.properties[b]=c;if(a.onPropertyChanged)a.onPropertyChanged(b,c);q.close();a.setDirtyCanvas(!0,!0)}if(a&&void 0!==a.properties[b]){c=c||{};var e="string";null!==a.properties[b]&&(e=typeof a.properties[b]);var g=null;a.getPropertyInfo&&(g=a.getPropertyInfo(b));if(a.properties_info)for(var l=0;l";else if("enum"==e&&g.values){n=""}else"boolean"==e&&(n="");var q=this.createDialog(""+b+""+n+"",c);if("enum"==e&&g.values){var A=q.querySelector("select");A.addEventListener("change",function(a){d(a.target.value)})}else if("boolean"==e)(A=q.querySelector("input"))&&A.addEventListener("click",function(a){d(!!A.checked)});else if(A=q.querySelector("input"))A.value=void 0!==a.properties[b]?a.properties[b]:"",A.addEventListener("keydown",function(a){13==a.keyCode&&(f(),a.preventDefault(),a.stopPropagation())}); -q.querySelector("button").addEventListener("click",f)}};d.prototype.createDialog=function(a,b){b=b||{};var c=document.createElement("div");c.className="graphdialog";c.innerHTML=a;var f=this.canvas.getClientRects()[0],d=-20,e=-20;f&&(d-=f.left,e-=f.top);b.position?(d+=b.position[0],e+=b.position[1]):b.event?(d+=b.event.pageX,e+=b.event.pageY):(d+=0.5*this.canvas.width,e+=0.5*this.canvas.height);c.style.left=d+"px";c.style.top=e+"px";this.canvas.parentNode.appendChild(c);c.close=function(){this.parentNode&& -this.parentNode.removeChild(this)};return c};d.onMenuNodeCollapse=function(a,b,c,f,d){d.flags.collapsed=!d.flags.collapsed;d.setDirtyCanvas(!0,!0)};d.onMenuNodePin=function(a,b,c,f,d){d.pin()};d.onMenuNodeMode=function(a,b,c,d,e){new f.ContextMenu(["Always","On Event","On Trigger","Never"],{event:c,callback:function(a){if(e)switch(a){case "On Event":e.mode=f.ON_EVENT;break;case "On Trigger":e.mode=f.ON_TRIGGER;break;case "Never":e.mode=f.NEVER;break;default:e.mode=f.ALWAYS}},parentMenu:d,node:e}); -return!1};d.onMenuNodeColors=function(a,b,c,e,g){if(!g)throw"no node for color";b=[];for(var n in d.node_colors)a=d.node_colors[n],a={value:n,content:""+n+""},b.push(a);new f.ContextMenu(b,{event:c,callback:function(a){g&&(a=d.node_colors[a.value])&&(g.color=a.color,g.bgcolor=a.bgcolor,g.setDirtyCanvas(!0))},parentMenu:e,node:g});return!1};d.onMenuNodeShapes=function(a,b,c,d,e){if(!e)throw"no node passed";new f.ContextMenu(f.VALID_SHAPES, -{event:c,callback:function(a){e&&(e.shape=a,e.setDirtyCanvas(!0))},parentMenu:d,node:e});return!1};d.onMenuNodeRemove=function(a,b,c,f,d){if(!d)throw"no node passed";!1!=d.removable&&(d.graph.remove(d),d.setDirtyCanvas(!0,!0))};d.onMenuNodeClone=function(a,b,c,f,d){!1!=d.clonable&&(a=d.clone())&&(a.pos=[d.pos[0]+5,d.pos[1]+5],d.graph.add(a),d.setDirtyCanvas(!0,!0))};d.node_colors={red:{color:"#FAA",bgcolor:"#944"},green:{color:"#AFA",bgcolor:"#494"},blue:{color:"#AAF",bgcolor:"#449"},cyan:{color:"#AFF", -bgcolor:"#499"},purple:{color:"#FAF",bgcolor:"#949"},yellow:{color:"#FFA",bgcolor:"#994"},black:{color:"#777",bgcolor:"#000"},white:{color:"#FFF",bgcolor:"#AAA"}};d.prototype.getCanvasMenuOptions=function(){var a=null;this.getMenuOptions?a=this.getMenuOptions():(a=[{content:"Add Node",has_submenu:!0,callback:d.onMenuAdd}],this._graph_stack&&0Name", -f),g=h.querySelector("input");h.querySelector("button").addEventListener("click",function(b){if(g.value){if(b=e.input?a.getInputInfo(e.slot):a.getOutputInfo(e.slot))b.label=g.value;c.setDirty(!0)}h.close()})}},node:a},k=null;a&&(k=a.getSlotInPosition(b.canvasX,b.canvasY),d.active_node=a);k?(g=[],g.push(k.locked?"Cannot remove":{content:"Remove Slot",slot:k}),g.push({content:"Rename Slot",slot:k}),n.title=(k.input?k.input.type:k.output.type)||"*",k.input&&k.input.type==f.ACTION&&(n.title="Action"), -k.output&&k.output.type==f.EVENT&&(n.title="Event")):g=a?this.getNodeMenuOptions(a):this.getCanvasMenuOptions();g&&new f.ContextMenu(g,n,e)};this.CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.roundRect=function(a,b,c,f,d,e){void 0===d&&(d=5);void 0===e&&(e=d);this.beginPath();this.moveTo(a+d,b);this.lineTo(a+c-d,b);this.quadraticCurveTo(a+c,b,a+c,b+d);this.lineTo(a+c,b+f-e);this.quadraticCurveTo(a+c,b+f,a+c-e,b+f);this.lineTo(a+e,b+f);this.quadraticCurveTo(a,b+f,a,b+f-e);this.lineTo(a, -b+d);this.quadraticCurveTo(a,b,a+d,b)});f.compareObjects=function(a,b){for(var c in a)if(a[c]!=b[c])return!1;return!0};f.distance=q;f.colorToString=function(a){return"rgba("+Math.round(255*a[0]).toFixed()+","+Math.round(255*a[1]).toFixed()+","+Math.round(255*a[2]).toFixed()+","+(4==a.length?a[3].toFixed(2):"1.0")+")"};f.isInsideRectangle=k;f.growBounding=function(a,b,c){ba[2]&&(a[2]=b);ca[3]&&(a[3]=c)};f.isInsideBounding=function(a,b){return a[0]b[1][0]||a[1]>b[1][1]?!1:!0};f.overlapBounding=t;f.hex2num=function(a){"#"==a.charAt(0)&&(a=a.slice(1));a=a.toUpperCase();for(var b=Array(3),c=0,f,d,e=0;6>e;e+=2)f="0123456789ABCDEF".indexOf(a.charAt(e)),d="0123456789ABCDEF".indexOf(a.charAt(e+1)),b[c]=16*f+d,c++;return b};f.num2hex=function(a){for(var b="#",c,f,d=0;3>d;d++)c=a[d]/16,f=a[d]%16,b+="0123456789ABCDEF".charAt(c)+"0123456789ABCDEF".charAt(f);return b};u.prototype.addItem=function(a,b,c){function f(a){var b=this.value;b&&b.has_submenu&& -d.call(this,a)}function d(a){var b=this.value,f=!0;e.current_submenu&&e.current_submenu.close(a);if(c.callback){var h=c.callback.call(this,b,c,a,e,c.node);!0===h&&(f=!1)}if(b&&(b.callback&&!c.ignore_item_callbacks&&!0!==b.disabled&&(h=b.callback.call(this,b,c,a,e,c.node),!0===h&&(f=!1)),b.submenu)){if(!b.submenu.options)throw"ContextMenu submenu needs options";new e.constructor(b.submenu.options,{callback:b.submenu.callback,event:a,parentMenu:e,ignore_item_callbacks:b.submenu.ignore_item_callbacks, -title:b.submenu.title,autoopen:c.autoopen});f=!1}f&&!e.lock&&e.close()}var e=this;c=c||{};var g=document.createElement("div");g.className="litemenu-entry submenu";var l=!1;if(null===b)g.classList.add("separator");else{g.innerHTML=b&&b.title?b.title:a;if(g.value=b)b.disabled&&(l=!0,g.classList.add("disabled")),(b.submenu||b.has_submenu)&&g.classList.add("has_submenu");"function"==typeof b?(g.dataset.value=a,g.onclick_callback=b):g.dataset.value=b;b.className&&(g.className+=" "+b.className)}this.root.appendChild(g); -l||g.addEventListener("click",d);c.autoopen&&g.addEventListener("mouseenter",f);return g};u.prototype.close=function(a,b){this.root.parentNode&&this.root.parentNode.removeChild(this.root);this.parentMenu&&!b&&(this.parentMenu.lock=!1,this.parentMenu.current_submenu=null,void 0===a?this.parentMenu.close():a&&!u.isCursorOverElement(a,this.parentMenu.root)&&u.trigger(this.parentMenu.root,"mouseleave",a));this.current_submenu&&this.current_submenu.close(a,!0)};u.trigger=function(a,b,c,f){var d=document.createEvent("CustomEvent"); -d.initCustomEvent(b,!0,!0,c);d.srcElement=f;a.dispatchEvent?a.dispatchEvent(d):a.__events&&a.__events.dispatchEvent(d);return d};u.prototype.getTopMenu=function(){return this.options.parentMenu?this.options.parentMenu.getTopMenu():this};u.prototype.getFirstEvent=function(){return this.options.parentMenu?this.options.parentMenu.getFirstEvent():this.options.event};u.isCursorOverElement=function(a,b){var c=a.pageX,f=a.pageY,d=b.getBoundingClientRect();return d?f>d.top&&fd.left&&c< -d.left+d.width?!0:!1:!1};f.ContextMenu=u;f.closeAllContextMenus=function(a){a=a||window;a=a.document.querySelectorAll(".litecontextmenu");if(a.length){for(var b=[],c=0;cf.canvasY-this.pos[1]||u.distance([f.canvasX,f.canvasY],[this.pos[0]+this.center[0],this.pos[1]+this.center[1]])>this.radius)return!1;this.oldmouse=[f.canvasX-this.pos[0],f.canvasY-this.pos[1]];this.captureInput(!0);return!0}};g.prototype.onMouseMove=function(f){if(this.oldmouse){f=[f.canvasX-this.pos[0],f.canvasY-this.pos[1]];var d=this.value,d=d-0.01*(f[1]-this.oldmouse[1]);1d&&(d=0);this.value=d;this.properties.value= -this.properties.min+(this.properties.max-this.properties.min)*this.value;this.oldmouse=f;this.setDirtyCanvas(!0)}};g.prototype.onMouseUp=function(f){this.oldmouse&&(this.oldmouse=null,this.captureInput(!1))};g.prototype.onMouseLeave=function(f){};g.prototype.onWidget=function(f,d){if("increase"==d.name)this.onPropertyChanged("size",this.properties.size+10);else if("decrease"==d.name)this.onPropertyChanged("size",this.properties.size-10)};g.prototype.onPropertyChanged=function(f,d){if("wcolor"==f)this.properties[f]= -d;else if("size"==f)d=parseInt(d),this.properties[f]=d,this.size=[d+4,d+24],this.setDirtyCanvas(!0,!0);else if("min"==f||"max"==f||"value"==f)this.properties[f]=parseFloat(d);else return!1;return!0};u.registerNodeType("widget/knob",g);d.title="H.Slider";d.desc="Linear slider controller";d.prototype.onInit=function(){this.value=0.5;this.imgfg=this.loadImage("imgs/slider_fg.png")};d.prototype.onDrawVectorial=function(d){this.imgfg&&this.imgfg.width&&(d.lineWidth=1,d.strokeStyle=this.mouseOver?"#FFF": -"#AAA",d.fillStyle="#000",d.beginPath(),d.rect(2,0,this.size[0]-4,20),d.stroke(),d.fillStyle=this.properties.wcolor,d.beginPath(),d.rect(2+(this.size[0]-4-20)*this.value,0,20,20),d.fill())};d.prototype.onDrawImage=function(d){this.imgfg&&this.imgfg.width&&(d.lineWidth=1,d.fillStyle="#000",d.fillRect(2,9,this.size[0]-4,2),d.strokeStyle="#333",d.beginPath(),d.moveTo(2,9),d.lineTo(this.size[0]-4,9),d.stroke(),d.strokeStyle="#AAA",d.beginPath(),d.moveTo(2,11),d.lineTo(this.size[0]-4,11),d.stroke(),d.drawImage(this.imgfg, -2+(this.size[0]-4)*this.value-0.5*this.imgfg.width,0.5*-this.imgfg.height+10))};d.prototype.onDrawForeground=function(d){this.onDrawImage(d)};d.prototype.onExecute=function(){this.properties.value=this.properties.min+(this.properties.max-this.properties.min)*this.value;this.setOutputData(0,this.properties.value);this.boxcolor=u.colorToString([this.value,this.value,this.value])};d.prototype.onMouseDown=function(d){if(0>d.canvasY-this.pos[1])return!1;this.oldmouse=[d.canvasX-this.pos[0],d.canvasY-this.pos[1]]; -this.captureInput(!0);return!0};d.prototype.onMouseMove=function(d){if(this.oldmouse){d=[d.canvasX-this.pos[0],d.canvasY-this.pos[1]];var e=this.value,e=e+(d[0]-this.oldmouse[0])/this.size[0];1e&&(e=0);this.value=e;this.oldmouse=d;this.setDirtyCanvas(!0)}};d.prototype.onMouseUp=function(d){this.oldmouse=null;this.captureInput(!1)};d.prototype.onMouseLeave=function(d){};d.prototype.onPropertyChanged=function(d,e){if("wcolor"==d)this.properties[d]=e;else return!1;return!0};u.registerNodeType("widget/hslider", -d);q.title="Progress";q.desc="Shows data in linear progress";q.prototype.onExecute=function(){var d=this.getInputData(0);void 0!=d&&(this.properties.value=d)};q.prototype.onDrawForeground=function(d){d.lineWidth=1;d.fillStyle=this.properties.wcolor;var e=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min),e=Math.min(1,e),e=Math.max(0,e);d.fillRect(2,2,(this.size[0]-4)*e,this.size[1]-4)};u.registerNodeType("widget/progress",q);k.title="Text";k.desc="Shows the input value"; -k.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}];k.prototype.onDrawForeground=function(d){d.fillStyle=this.properties.color;var e=this.properties.value;this.properties.glowSize?(d.shadowColor=this.properties.color,d.shadowOffsetX=0,d.shadowOffsetY=0,d.shadowBlur=this.properties.glowSize):d.shadowColor="transparent";var a=this.properties.fontsize;d.textAlign=this.properties.align;d.font=a.toString()+ -"px "+this.properties.font;this.str="number"==typeof e?e.toFixed(this.properties.decimals):e;if("string"==typeof this.str){var e=this.str.split("\\n"),b;for(b in e)d.fillText(e[b],"left"==this.properties.align?15:this.size[0]-15,-0.15*a+a*(parseInt(b)+1))}d.shadowColor="transparent";this.last_ctx=d;d.textAlign="left"};k.prototype.onExecute=function(){var d=this.getInputData(0);null!=d&&(this.properties.value=d)};k.prototype.resize=function(){if(this.last_ctx){var d=this.str.split("\\n");this.last_ctx.font= -this.properties.fontsize+"px "+this.properties.font;var e=0,a;for(a in d){var b=this.last_ctx.measureText(d[a]).width;eg?d.xbox.axes.lx:0,this._left_axis[1]=Math.abs(d.xbox.axes.ly)>g?d.xbox.axes.ly:0,this._right_axis[0]=Math.abs(d.xbox.axes.rx)>g?d.xbox.axes.rx:0,this._right_axis[1]=Math.abs(d.xbox.axes.ry)>g?d.xbox.axes.ry:0,this._triggers[0]=Math.abs(d.xbox.axes.ltrigger)>g?d.xbox.axes.ltrigger:0,this._triggers[1]=Math.abs(d.xbox.axes.rtrigger)>g?d.xbox.axes.rtrigger:0);if(this.outputs)for(g= -0;gd;d++)if(e[d]){d=e[d];e=this.xbox_mapping;e||(e=this.xbox_mapping= -{axes:[],buttons:{},hat:""});e.axes.lx=d.axes[0];e.axes.ly=d.axes[1];e.axes.rx=d.axes[2];e.axes.ry=d.axes[3];e.axes.ltrigger=d.buttons[6].value;e.axes.rtrigger=d.buttons[7].value;for(var g=0;g","string",{values:v.values}); -this.size=[60,40]}function r(){this.addInput("inc","number");this.addOutput("total","number");this.addProperty("increment",1);this.addProperty("value",0)}function l(){this.addInput("v","number");this.addOutput("sin","number");this.addProperty("amplitude",1);this.addProperty("offset",0);this.bgImageUrl="nodes/imgs/icon-sin.png"}function y(){this.addInput("vec2","vec2");this.addOutput("x","number");this.addOutput("y","number")}function x(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2", -"vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function z(){this.addInput("vec3","vec3");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number")}function A(){this.addInputs([["x","number"],["y","number"],["z","number"]]);this.addOutput("vec3","vec3");this.properties={x:0,y:0,z:0};this._data=new Float32Array(3)}function C(){this.addInput("vec4","vec4");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number");this.addOutput("w", -"number")}function D(){this.addInputs([["x","number"],["y","number"],["z","number"],["w","number"]]);this.addOutput("vec4","vec4");this.properties={x:0,y:0,z:0,w:0};this._data=new Float32Array(4)}var w=s.LiteGraph;e.title="Converter";e.desc="type A to type B";e.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a&&this.outputs)for(var b=0;bb&&(this._current=0);for(var c=a=0;cb&&(b=1);this.properties.samples=Math.round(b);var c=this._values;this._values=new Float32Array(this.properties.samples); -c.length<=this._values.length?this._values.set(c):this._values.set(c.subarray(0,this._values.length))};w.registerNodeType("math/average",c);h.values="+-*/%^".split("");h.title="Operation";h.desc="Easy math operators";h["@OP"]={type:"enum",title:"operation",values:h.values};h.prototype.setValue=function(a){"string"==typeof a&&(a=parseFloat(a));this.properties.value=a};h.prototype.onExecute=function(){var a=this.getInputData(0),b=this.getInputData(1);null!=a?this.properties.A=a:a=this.properties.A; -null!=b?this.properties.B=b:b=this.properties.B;var c=0;switch(this.properties.OP){case "+":c=a+b;break;case "-":c=a-b;break;case "x":case "X":case "*":c=a*b;break;case "/":c=a/b;break;case "%":c=a%b;break;case "^":c=Math.pow(a,b);break;default:console.warn("Unknown operation: "+this.properties.OP)}this.setOutputData(0,c)};h.prototype.onDrawBackground=function(a){this.flags.collapsed||(a.font="40px Arial",a.fillStyle="black",a.textAlign="center",a.fillText(this.properties.OP,0.5*this.size[0],0.5* -this.size[1]+w.NODE_TITLE_HEIGHT),a.textAlign="left")};w.registerNodeType("math/operation",h);p.title="Compare";p.desc="compares between two values";p.prototype.onExecute=function(){var a=this.getInputData(0),b=this.getInputData(1);void 0!==a?this.properties.A=a:a=this.properties.A;void 0!==b?this.properties.B=b:b=this.properties.B;for(var c=0,d=this.outputs.length;cB":value= -a>b;break;case "A=B":value=a>=b}this.setOutputData(c,value)}}};p.prototype.onGetOutputs=function(){return[["A==B","boolean"],["A!=B","boolean"],["A>B","boolean"],["A=B","boolean"],["A<=B","boolean"]]};w.registerNodeType("math/compare",p);v.values="> < == != <= >=".split(" ");v["@OP"]={type:"enum",title:"operation",values:v.values};v.title="Condition";v.desc="evaluates condition between A and B";v.prototype.onExecute=function(){var a= -this.getInputData(0);void 0===a?a=this.properties.A:this.properties.A=a;var b=this.getInputData(1);void 0===b?b=this.properties.B:this.properties.B=b;var c=!0;switch(this.properties.OP){case ">":c=a>b;break;case "<":c=a=":c=a>=b}this.setOutputData(0,c)};w.registerNodeType("math/condition",v);r.title="Accumulate";r.desc="Increments a value every time";r.prototype.onExecute=function(){null===this.properties.value&& -(this.properties.value=0);var a=this.getInputData(0);this.properties.value=null!==a?this.properties.value+a:this.properties.value+this.properties.increment;this.setOutputData(0,this.properties.value)};w.registerNodeType("math/accumulate",r);l.title="Trigonometry";l.desc="Sin Cos Tan";l.filter="shader";l.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var b=this.properties.amplitude,c=this.findInputSlot("amplitude");-1!=c&&(b=this.getInputData(c));var d=this.properties.offset, -c=this.findInputSlot("offset");-1!=c&&(d=this.getInputData(c));for(var c=0,e=this.outputs.length;cXY";y.desc="vector 2 to components";y.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0, -a[0]),this.setOutputData(1,a[1]))};w.registerNodeType("math3d/vec2-to-xyz",y);x.title="XY->Vec2";x.desc="components to vector2";x.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this._data;c[0]=a;c[1]=b;this.setOutputData(0,c)};w.registerNodeType("math3d/xy-to-vec2",x);z.title="Vec3->XYZ";z.desc="vector 3 to components";z.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0, -a[0]),this.setOutputData(1,a[1]),this.setOutputData(2,a[2]))};w.registerNodeType("math3d/vec3-to-xyz",z);A.title="XYZ->Vec3";A.desc="components to vector3";A.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this.getInputData(2);null==c&&(c=this.properties.z);var d=this._data;d[0]=a;d[1]=b;d[2]=c;this.setOutputData(0,d)};w.registerNodeType("math3d/xyz-to-vec3",A);C.title="Vec4->XYZW";C.desc="vector 4 to components"; -C.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0,a[0]),this.setOutputData(1,a[1]),this.setOutputData(2,a[2]),this.setOutputData(3,a[3]))};w.registerNodeType("math3d/vec4-to-xyzw",C);D.title="XYZW->Vec4";D.desc="components to vector4";D.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this.getInputData(2);null==c&&(c=this.properties.z);var d=this.getInputData(3); -null==d&&(d=this.properties.w);var e=this._data;e[0]=a;e[1]=b;e[2]=c;e[3]=d;this.setOutputData(0,e)};w.registerNodeType("math3d/xyzw-to-vec4",D);s.glMatrix&&(s=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1};this._value=quat.create()},s.title="Quaternion",s.desc="quaternion",s.prototype.onExecute=function(){this._value[0]=this.properties.x;this._value[1]=this.properties.y;this._value[2]=this.properties.z;this._value[3]=this.properties.w;this.setOutputData(0,this._value)}, -w.registerNodeType("math3d/quaternion",s),s=function(){this.addInputs([["degrees","number"],["axis","vec3"]]);this.addOutput("quat","quat");this.properties={angle:90,axis:vec3.fromValues(0,1,0)};this._value=quat.create()},s.title="Rotation",s.desc="quaternion rotation",s.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.angle);var b=this.getInputData(1);null==b&&(b=this.properties.axis);a=quat.setAxisAngle(this._value,b,0.0174532925*a);this.setOutputData(0,a)}, -w.registerNodeType("math3d/rotation",s),s=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]);this.addOutput("result","vec3");this.properties={vec:[0,0,1]}},s.title="Rot. Vec3",s.desc="rotate a point",s.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.vec);var b=this.getInputData(1);null==b?this.setOutputData(a):this.setOutputData(0,vec3.transformQuat(vec3.create(),a,b))},w.registerNodeType("math3d/rotate_vec3",s),s=function(){this.addInputs([["A","quat"], -["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},s.title="Mult. Quat",s.desc="rotate quaternion",s.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a){var b=this.getInputData(1);null!=b&&(a=quat.multiply(this._value,a,b),this.setOutputData(0,a))}},w.registerNodeType("math3d/mult-quat",s),s=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor",0.5);this._value=quat.create()},s.title= -"Quat Slerp",s.desc="quaternion spherical interpolation",s.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a){var b=this.getInputData(1);if(null!=b){var c=this.properties.factor;null!=this.getInputData(2)&&(c=this.getInputData(2));a=quat.slerp(this._value,a,b,c);this.setOutputData(0,a)}}},w.registerNodeType("math3d/quat-slerp",s))})(this); -(function(s){function e(){this.addInput("sel","boolean");this.addOutput("value","number");this.properties={A:0,B:1};this.size=[60,20]}s=s.LiteGraph;e.title="Selector";e.desc="outputs A if selector is true, B if selector is false";e.prototype.onExecute=function(){var e=this.getInputData(0);if(void 0!==e){for(var d=1;da&&(a=0);if(0!=d.length){var b=[0,0,0];if(0==a)b=d[0];else if(1==a)b=d[d.length-1];else{var c=(d.length-1)*a,a=d[Math.floor(c)],d=d[Math.floor(c)+1],c=c-Math.floor(c);b[0]=a[0]*(1-c)+d[0]*c;b[1]=a[1]*(1-c)+d[1]*c;b[2]=a[2]*(1-c)+d[2]*c}for(var e in b)b[e]/=255;this.boxcolor=colorToString(b);this.setOutputData(0,b)}};f.registerNodeType("color/palette",g);d.title="Frame";d.desc="Frame viewerew";d.widgets=[{name:"resize", -text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}];d.prototype.onDrawBackground=function(d){this.frame&&d.drawImage(this.frame,0,0,this.size[0],this.size[1])};d.prototype.onExecute=function(){this.frame=this.getInputData(0);this.setDirtyCanvas(!0)};d.prototype.onWidget=function(d,a){if("resize"==a.name&&this.frame){var b=this.frame.width,c=this.frame.height;b||null==this.frame.videoWidth||(b=this.frame.videoWidth,c=this.frame.videoHeight);b&&c&&(this.size=[b,c]);this.setDirtyCanvas(!0, -!0)}else"view"==a.name&&this.show()};d.prototype.show=function(){showElement&&this.frame&&showElement(this.frame)};f.registerNodeType("graphics/frame",d);q.title="Image fade";q.desc="Fades between images";q.widgets=[{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}];q.prototype.onAdded=function(){this.createCanvas();var d=this.canvas.getContext("2d");d.fillStyle="#000";d.fillRect(0,0,this.properties.width,this.properties.height)};q.prototype.createCanvas= -function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};q.prototype.onExecute=function(){var d=this.canvas.getContext("2d");this.canvas.width=this.canvas.width;var a=this.getInputData(0);null!=a&&d.drawImage(a,0,0,this.canvas.width,this.canvas.height);a=this.getInputData(2);null==a?a=this.properties.fade:this.properties.fade=a;d.globalAlpha=a;a=this.getInputData(1);null!=a&&d.drawImage(a,0,0,this.canvas.width,this.canvas.height); -d.globalAlpha=1;this.setOutputData(0,this.canvas);this.setDirtyCanvas(!0)};f.registerNodeType("graphics/imagefade",q);k.title="Crop";k.desc="Crop Image";k.prototype.onAdded=function(){this.createCanvas()};k.prototype.createCanvas=function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};k.prototype.onExecute=function(){var d=this.getInputData(0);d&&(d.width?(this.canvas.getContext("2d").drawImage(d,-this.properties.x, --this.properties.y,d.width*this.properties.scale,d.height*this.properties.scale),this.setOutputData(0,this.canvas)):this.setOutputData(0,null))};k.prototype.onDrawBackground=function(d){this.flags.collapsed||this.canvas&&d.drawImage(this.canvas,0,0,this.canvas.width,this.canvas.height,0,0,this.size[0],this.size[1])};k.prototype.onPropertyChanged=function(d,a){this.properties[d]=a;"scale"==d?(this.properties[d]=parseFloat(a),0==this.properties[d]&&(this.trace("Error in scale"),this.properties[d]=1)): -this.properties[d]=parseInt(a);this.createCanvas();return!0};f.registerNodeType("graphics/cropImage",k);t.title="Video";t.desc="Video playback";t.widgets=[{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}];t.prototype.onExecute=function(){if(this.properties.url&&(this.properties.url!=this._video_url&&this.loadVideo(this.properties.url),this._video&&0!=this._video.width)){var d= -this.getInputData(0);d&&0<=d&&1>=d&&(this._video.currentTime=d*this._video.duration,this._video.pause());this._video.dirty=!0;this.setOutputData(0,this._video);this.setOutputData(1,this._video.currentTime);this.setOutputData(2,this._video.duration);this.setDirtyCanvas(!0)}};t.prototype.onStart=function(){this.play()};t.prototype.onStop=function(){this.stop()};t.prototype.loadVideo=function(d){this._video_url=d;this._video=document.createElement("video");this._video.src=d;this._video.type="type=video/mp4"; -this._video.muted=!0;this._video.autoplay=!0;var a=this;this._video.addEventListener("loadedmetadata",function(b){a.trace("Duration: "+this.duration+" seconds");a.trace("Size: "+this.videoWidth+","+this.videoHeight);a.setDirtyCanvas(!0);this.width=this.videoWidth;this.height=this.videoHeight});this._video.addEventListener("progress",function(a){});this._video.addEventListener("error",function(b){console.log("Error loading video: "+this.src);a.trace("Error loading video: "+this.src);if(this.error)switch(this.error.code){case this.error.MEDIA_ERR_ABORTED:a.trace("You stopped the video."); -break;case this.error.MEDIA_ERR_NETWORK:a.trace("Network error - please try again later.");break;case this.error.MEDIA_ERR_DECODE:a.trace("Video is broken..");break;case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED:a.trace("Sorry, your browser can't play this video.")}});this._video.addEventListener("ended",function(b){a.trace("Ended.");this.play()})};t.prototype.onPropertyChanged=function(d,a){this.properties[d]=a;"url"==d&&""!=a&&this.loadVideo(a);return!0};t.prototype.play=function(){this._video&&this._video.play()}; -t.prototype.playPause=function(){this._video&&(this._video.paused?this.play():this.pause())};t.prototype.stop=function(){this._video&&(this._video.pause(),this._video.currentTime=0)};t.prototype.pause=function(){this._video&&(this.trace("Video paused"),this._video.pause())};t.prototype.onWidget=function(d,a){};f.registerNodeType("graphics/video",t);u.title="Webcam";u.desc="Webcam image";u.prototype.openStream=function(){function d(b){console.log("Webcam rejected",b);a._webcam_stream=!1;a.box_color= -"red"}navigator.getUserMedia=navigator.getUserMedia||navigator.webkitGetUserMedia||navigator.mozGetUserMedia||navigator.msGetUserMedia;window.URL=window.URL||window.webkitURL;if(navigator.getUserMedia){this._waiting_confirmation=!0;navigator.getUserMedia({video:!0},this.streamReady.bind(this),d);var a=this}};u.prototype.onRemoved=function(){this._webcam_stream&&(this._webcam_stream.stop(),this._video=this._webcam_stream=null)};u.prototype.streamReady=function(d){this._webcam_stream=d;var a=this._video; -a||(a=document.createElement("video"),a.autoplay=!0,a.src=window.URL.createObjectURL(d),this._video=a,a.onloadedmetadata=function(a){console.log(a)})};u.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();this._video&&this._video.videoWidth&&(this._video.width=this._video.videoWidth,this._video.height=this._video.videoHeight,this.setOutputData(0,this._video))};u.prototype.getExtraMenuOptions=function(d){var a=this;return[{content:a.properties.show? -"Hide Frame":"Show Frame",callback:function(){a.properties.show=!a.properties.show}}]};u.prototype.onDrawBackground=function(d){this.flags.collapsed||20>=this.size[1]||!this.properties.show||!this._video||(d.save(),d.drawImage(this._video,0,0,this.size[0],this.size[1]),d.restore())};f.registerNodeType("graphics/webcam",u)})(this); -(function(s){var e=s.LiteGraph;s.LGraphTexture=null;if("undefined"!=typeof GL){var g=function(){this.addOutput("Texture","Texture");this.properties={name:"",filter:!0};this.size=[g.image_preview_size,g.image_preview_size]};s.LGraphTexture=g;g.title="Texture";g.desc="Texture";g.widgets_info={name:{widget:"texture"},filter:{widget:"checkbox"}};g.loadTextureCallback=null;g.image_preview_size=256;g.PASS_THROUGH=1;g.COPY=2;g.LOW=3;g.HIGH=4;g.REUSE=5;g.DEFAULT=2;g.MODE_VALUES={"pass through":g.PASS_THROUGH, -copy:g.COPY,low:g.LOW,high:g.HIGH,reuse:g.REUSE,"default":g.DEFAULT};g.getTexturesContainer=function(){return gl.textures};g.loadTexture=function(a,b){b=b||{};var c=a;"http://"==c.substr(0,7)&&e.proxy&&(c=e.proxy+c.substr(7));return g.getTexturesContainer()[a]=GL.Texture.fromURL(c,b)};g.getTexture=function(a){var b=this.getTexturesContainer();if(!b)throw"Cannot load texture, container of textures not found";b=b[a];return!b&&a&&":"!=a[0]?this.loadTexture(a):b};g.getTargetTexture=function(a,b,c){if(!a)throw"LGraphTexture.getTargetTexture expects a reference texture"; -var d=null;switch(c){case g.LOW:d=gl.UNSIGNED_BYTE;break;case g.HIGH:d=gl.HIGH_PRECISION_FORMAT;break;case g.REUSE:return a;default:d=a?a.type:gl.UNSIGNED_BYTE}b&&b.width==a.width&&b.height==a.height&&b.type==d||(b=new GL.Texture(a.width,a.height,{type:d,format:gl.RGBA,filter:gl.LINEAR}));return b};g.getNoiseTexture=function(){if(this._noise_texture)return this._noise_texture;for(var a=new Uint8Array(1048576),b=0;1048576>b;++b)a[b]=255*Math.random();return this._noise_texture=a=GL.Texture.fromMemory(512, -512,a,{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})};g.prototype.onDropFile=function(a,b,c){if(a){var d=null;"string"==typeof a?d=GL.Texture.fromURL(a):-1!=b.toLowerCase().indexOf(".dds")?d=GL.Texture.fromDDSInMemory(a):(a=new Blob([c]),a=URL.createObjectURL(a),d=GL.Texture.fromURL(a));this._drop_texture=d;this.properties.name=b}else this._drop_texture=null,this.properties.name=""};g.prototype.getExtraMenuOptions=function(a){var b=this;if(this._drop_texture)return[{content:"Clear",callback:function(){b._drop_texture= -null;b.properties.name=""}}]};g.prototype.onExecute=function(){var a=null;this.isOutputConnected(1)&&(a=this.getInputData(0));!a&&this._drop_texture&&(a=this._drop_texture);!a&&this.properties.name&&(a=g.getTexture(this.properties.name));if(a){this._last_tex=a;!1===this.properties.filter?a.setParameter(gl.TEXTURE_MAG_FILTER,gl.NEAREST):a.setParameter(gl.TEXTURE_MAG_FILTER,gl.LINEAR);this.setOutputData(0,a);for(var b=1;b=this.size[1]))if(this._drop_texture&&a.webgl)a.drawImage(this._drop_texture,0,0,this.size[0],this.size[1]);else{if(this._last_preview_tex!=this._last_tex)if(a.webgl)this._canvas=this._last_tex;else{var b=g.generateLowResTexturePreview(this._last_tex); -if(!b)return;this._last_preview_tex=this._last_tex;this._canvas=cloneCanvas(b)}this._canvas&&(a.save(),a.webgl||(a.translate(0,this.size[1]),a.scale(1,-1)),a.drawImage(this._canvas,0,0,this.size[0],this.size[1]),a.restore())}};g.generateLowResTexturePreview=function(a){if(!a)return null;var b=g.image_preview_size,c=a;if(a.format==gl.DEPTH_COMPONENT)return null;if(a.width>b||a.height>b)c=this._preview_temp_tex,this._preview_temp_tex||(this._preview_temp_tex=c=new GL.Texture(b,b,{minFilter:gl.NEAREST})), -a.copyTo(c);a=this._preview_canvas;a||(this._preview_canvas=a=createCanvas(b,b));c&&c.toCanvas(a);return a};g.prototype.getResources=function(a){a[this.properties.name]=GL.Texture;return a};g.prototype.onGetInputs=function(){return[["in","Texture"]]};g.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["aspect","number"]]};e.registerNodeType("texture/texture",g);var d=function(){this.addInput("Texture","Texture");this.properties={flipY:!1};this.size=[g.image_preview_size, -g.image_preview_size]};d.title="Preview";d.desc="Show a texture in the graph canvas";d.allow_preview=!1;d.prototype.onDrawBackground=function(a){if(!this.flags.collapsed&&(a.webgl||d.allow_preview)){var b=this.getInputData(0);if(b){var c=null,c=!b.handle&&a.webgl?b:g.generateLowResTexturePreview(b);a.save();this.properties.flipY&&(a.translate(0,this.size[1]),a.scale(1,-1));a.drawImage(c,0,0,this.size[0],this.size[1]);a.restore()}}};e.registerNodeType("texture/preview",d);s=function(){this.addInput("Texture", -"Texture");this.addOutput("","Texture");this.properties={name:""}};s.title="Save";s.desc="Save a texture in the repository";s.prototype.onExecute=function(){var a=this.getInputData(0);a&&(this.properties.name&&(g.storeTexture?g.storeTexture(this.properties.name,a):g.getTexturesContainer()[this.properties.name]=a),this.setOutputData(0,a))};e.registerNodeType("texture/save",s);var q=function(){this.addInput("Texture","Texture");this.addInput("TextureB","Texture");this.addInput("value","number");this.addOutput("Texture", -"Texture");this.help="

pixelcode must be vec3

\t\t\t

uvcode must be vec2, is optional

\t\t\t

uv: tex. coords

color: texture

colorB: textureB

time: scene time

value: input value

";this.properties={value:1,uvcode:"",pixelcode:"color + colorB * value",precision:g.DEFAULT}};q.widgets_info={uvcode:{widget:"textarea",height:100},pixelcode:{widget:"textarea",height:100},precision:{widget:"combo", -values:g.MODE_VALUES}};q.title="Operation";q.desc="Texture shader operation";q.prototype.getExtraMenuOptions=function(a){var b=this;return[{content:b.properties.show?"Hide Texture":"Show Texture",callback:function(){b.properties.show=!b.properties.show}}]};q.prototype.onDrawBackground=function(a){this.flags.collapsed||20>=this.size[1]||!this.properties.show||!this._tex||this._tex.gl!=a||(a.save(),a.drawImage(this._tex,0,0,this.size[0],this.size[1]),a.restore())};q.prototype.onExecute=function(){var a= -this.getInputData(0);if(this.isOutputConnected(0))if(this.properties.precision===g.PASS_THROUGH)this.setOutputData(0,a);else{var b=this.getInputData(1);if(this.properties.uvcode||this.properties.pixelcode){var c=512,d=512;a?(c=a.width,d=a.height):b&&(c=b.width,d=b.height);this._tex=a||this._tex?g.getTargetTexture(a||this._tex,this._tex,this.properties.precision):new GL.Texture(c,d,{type:this.precision===g.LOW?gl.UNSIGNED_BYTE:gl.HIGH_PRECISION_FORMAT,format:gl.RGBA,filter:gl.LINEAR});var e="";this.properties.uvcode&& -(e="uv = "+this.properties.uvcode,-1!=this.properties.uvcode.indexOf(";")&&(e=this.properties.uvcode));var f="";this.properties.pixelcode&&(f="result = "+this.properties.pixelcode,-1!=this.properties.pixelcode.indexOf(";")&&(f=this.properties.pixelcode));var h=this._shader;if(!h||this._shader_code!=e+"|"+f){try{this._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,q.pixel_shader,{UV_CODE:e,PIXEL_CODE:f}),this.boxcolor="#00FF00"}catch(l){console.log("Error compiling shader: ",l);this.boxcolor="#FF0000"; -return}this.boxcolor="#FF0000";this._shader_code=e+"|"+f;h=this._shader}if(h){this.boxcolor="green";var k=this.getInputData(2);null!=k?this.properties.value=k:k=parseFloat(this.properties.value);var n=this.graph.getTime();this._tex.drawTo(function(){gl.disable(gl.DEPTH_TEST);gl.disable(gl.CULL_FACE);gl.disable(gl.BLEND);a&&a.bind(0);b&&b.bind(1);var e=Mesh.getScreenQuad();h.uniforms({u_texture:0,u_textureB:1,value:k,texSize:[c,d],time:n}).draw(e)});this.setOutputData(0,this._tex)}else this.boxcolor= -"red"}}};q.pixel_shader="precision highp float;\n\t\t\t\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform vec2 texSize;\n\t\t\tuniform float time;\n\t\t\tuniform float value;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec2 uv = v_coord;\n\t\t\t\tUV_CODE;\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\t\t\t\tvec3 color = color4.rgb;\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\t\t\t\tvec3 colorB = color4B.rgb;\n\t\t\t\tvec3 result = color;\n\t\t\t\tfloat alpha = 1.0;\n\t\t\t\tPIXEL_CODE;\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\t\t\t}\n\t\t\t"; -e.registerNodeType("texture/operation",q);var k=function(){this.addOutput("Texture","Texture");this.properties={code:"",width:512,height:512};this.properties.code="\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n//your code here\n\ngl_FragColor = vec4(color, 1.0);\n}\n"};k.title="Shader";k.desc="Texture shader";k.widgets_info={code:{type:"code"},precision:{widget:"combo",values:g.MODE_VALUES}};k.prototype.onPropertyChanged=function(a,b){if("code"==a){var c=this.getShader();if(c){var d= -c.uniformInfo;if(this.inputs)for(var e={},f=0;f lumaMax))\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\t\t\t\telse\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\t\t\t\tif(u_igamma != 1.0)\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\t\t\t\treturn color;\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\t\t\t}\n\t\t\t"; -f.gamma_pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_igamma;\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\t\t\t gl_FragColor = color;\n\t\t\t}\n\t\t\t";e.registerNodeType("texture/toviewport",f);s=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={size:0,generate_mipmaps:!1, -precision:g.DEFAULT}};s.title="Copy";s.desc="Copy Texture";s.widgets_info={size:{widget:"combo",values:[0,32,64,128,256,512,1024,2048]},precision:{widget:"combo",values:g.MODE_VALUES}};s.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)){if(a){var b=a.width,c=a.height;0!=this.properties.size&&(c=b=this.properties.size);var d=this._temp_texture,e=a.type;this.properties.precision===g.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===g.HIGH&& -(e=gl.HIGH_PRECISION_FORMAT);d&&d.width==b&&d.height==c&&d.type==e||(d=gl.LINEAR,this.properties.generate_mipmaps&&isPowerOfTwo(b)&&isPowerOfTwo(c)&&(d=gl.LINEAR_MIPMAP_LINEAR),this._temp_texture=new GL.Texture(b,c,{type:e,format:gl.RGBA,minFilter:d,magFilter:gl.LINEAR}));a.copyTo(this._temp_texture);this.properties.generate_mipmaps&&(this._temp_texture.bind(0),gl.generateMipmap(this._temp_texture.texture_type),this._temp_texture.unbind(0))}this.setOutputData(0,this._temp_texture)}};e.registerNodeType("texture/copy", -s);var n=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={iterations:1,generate_mipmaps:!1,precision:g.DEFAULT}};n.title="Downsample";n.desc="Downsample Texture";n.widgets_info={iterations:{type:"number",step:1,precision:0,min:1},precision:{widget:"combo",values:g.MODE_VALUES}};n.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)&&a&&a.texture_type===GL.TEXTURE_2D){var b=n._shader;b||(n._shader= -b=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,n.pixel_shader));var c=a.width|0,d=a.height|0,e=a.type;this.properties.precision===g.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===g.HIGH&&(e=gl.HIGH_PRECISION_FORMAT);var f=this.properties.iterations||1,h=a,l=null,k=[],a={type:e,format:a.format},e=vec2.create(),t={u_offset:e};this._texture&&GL.Texture.releaseTemporary(this._texture);for(var p=0;p>1||0;d=d>>1||0;l=GL.Texture.getTemporary(c,d,a);k.push(l);h.setParameter(GL.TEXTURE_MAG_FILTER, -GL.NEAREST);h.copyTo(l,b,t);if(1==c&&1==d)break;h=l}this._texture=k.pop();for(p=0;pd;++d)c[d]=Math.random();a._shader.uniforms({u_samples_a:c.subarray(0,16),u_samples_b:c.subarray(16,32)})}c=this._temp_texture;d=this.properties.low_precision?gl.UNSIGNED_BYTE:b.type;c&&c.type==d||(this._temp_texture=new GL.Texture(1,1,{type:d,format:gl.RGBA,filter:gl.NEAREST}));var e=a._shader,f=this._uniforms;f.u_mipmap_offset=this.properties.mipmap_offset;this._temp_texture.drawTo(function(){b.toViewport(e,f)});this.setOutputData(0,this._temp_texture)}}; -a.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tuniform mat4 u_samples_a;\n\t\t\tuniform mat4 u_samples_b;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_mipmap_offset;\n\t\t\tvarying vec2 v_coord;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = vec4(0.0);\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\t\t\t\t\t}\n\t\t\t gl_FragColor = color * 0.03125;\n\t\t\t}\n\t\t\t"; -e.registerNodeType("texture/average",a);s=function(){this.addInput("Image","image");this.addOutput("","Texture");this.properties={}};s.title="Image to Texture";s.desc="Uploads an image to the GPU";s.prototype.onExecute=function(){var a=this.getInputData(0);if(a){var b=a.videoWidth||a.width,c=a.videoHeight||a.height;if(a.gltexture)this.setOutputData(0,a.gltexture);else{var d=this._temp_texture;d&&d.width==b&&d.height==c||(this._temp_texture=new GL.Texture(b,c,{format:gl.RGBA,filter:gl.LINEAR}));try{this._temp_texture.uploadImage(a)}catch(e){console.error("image comes from an unsafe location, cannot be uploaded to webgl"); -return}this.setOutputData(0,this._temp_texture)}}};e.registerNodeType("texture/imageToTexture",s);var b=function(){this.addInput("Texture","Texture");this.addInput("LUT","Texture");this.addInput("Intensity","number");this.addOutput("","Texture");this.properties={intensity:1,precision:g.DEFAULT,texture:null};b._shader||(b._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,b.pixel_shader))};b.widgets_info={precision:{widget:"combo",values:g.MODE_VALUES}};b.title="LUT";b.desc="Apply LUT to Texture";b.widgets_info= -{texture:{widget:"texture"}};b.prototype.onExecute=function(){if(this.isOutputConnected(0)){var a=this.getInputData(0);if(this.properties.precision===g.PASS_THROUGH)this.setOutputData(0,a);else if(a){var c=this.getInputData(1);c||(c=g.getTexture(this.properties.texture));if(c){c.bind(0);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_MIN_FILTER,gl.LINEAR);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_WRAP_S,gl.CLAMP_TO_EDGE);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_WRAP_T,gl.CLAMP_TO_EDGE);gl.bindTexture(gl.TEXTURE_2D, -null);var d=this.properties.intensity;this.isInputConnected(2)&&(this.properties.intensity=d=this.getInputData(2));this._tex=g.getTargetTexture(a,this._tex,this.properties.precision);this._tex.drawTo(function(){c.bind(1);a.toViewport(b._shader,{u_texture:0,u_textureB:1,u_amount:d})});this.setOutputData(0,this._tex)}else this.setOutputData(0,a)}}};b.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform float u_amount;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\t\t\t\t mediump vec2 quad1;\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\t\t\t\t mediump vec2 quad2;\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\t\t\t\t highp vec2 texPos1;\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\t\t\t\t highp vec2 texPos2;\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\t\t\t}\n\t\t\t"; -e.registerNodeType("texture/LUT",b);var c=function(){this.addInput("Texture","Texture");this.addOutput("R","Texture");this.addOutput("G","Texture");this.addOutput("B","Texture");this.addOutput("A","Texture");this.properties={};c._shader||(c._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,c.pixel_shader))};c.title="Texture to Channels";c.desc="Split texture channels";c.prototype.onExecute=function(){var a=this.getInputData(0);if(a){this._channels||(this._channels=Array(4));for(var b=0,d=0;4>d;d++)this.isOutputConnected(d)? -(this._channels[d]&&this._channels[d].width==a.width&&this._channels[d].height==a.height&&this._channels[d].type==a.type||(this._channels[d]=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR})),b++):this._channels[d]=null;if(b){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);for(var e=Mesh.getScreenQuad(),f=c._shader,g=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]],d=0;4>d;d++)this._channels[d]&&(this._channels[d].drawTo(function(){a.bind(0);f.uniforms({u_texture:0,u_mask:g[d]}).draw(e)}), -this.setOutputData(d,this._channels[d]))}}};c.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec4 u_mask;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\t\t\t}\n\t\t\t";e.registerNodeType("texture/textureChannels",c);var h=function(){this.addInput("R","Texture");this.addInput("G","Texture");this.addInput("B","Texture");this.addInput("A", -"Texture");this.addOutput("Texture","Texture");this.properties={};h._shader||(h._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,h.pixel_shader))};h.title="Channels to Texture";h.desc="Split texture channels";h.prototype.onExecute=function(){var a=[this.getInputData(0),this.getInputData(1),this.getInputData(2),this.getInputData(3)];if(a[0]&&a[1]&&a[2]&&a[3]){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var b=Mesh.getScreenQuad(),c=h._shader;this._tex=g.getTargetTexture(a[0],this._tex);this._tex.drawTo(function(){a[0].bind(0); -a[1].bind(1);a[2].bind(2);a[3].bind(3);c.uniforms({u_textureR:0,u_textureG:1,u_textureB:2,u_textureA:3}).draw(b)});this.setOutputData(0,this._tex)}};h.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_textureR;\n\t\t\tuniform sampler2D u_textureG;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform sampler2D u_textureA;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( \t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\t\t\t}\n\t\t\t"; -e.registerNodeType("texture/channelsTexture",h);var p=function(){this.addInput("A","color");this.addInput("B","color");this.addOutput("Texture","Texture");this.properties={angle:0,scale:1,A:[0,0,0],B:[1,1,1],texture_size:32};p._shader||(p._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,p.pixel_shader));this._uniforms={u_angle:0,u_colorA:vec3.create(),u_colorB:vec3.create()}};p.title="Gradient";p.desc="Generates a gradient";p["@A"]={type:"color"};p["@B"]={type:"color"};p["@texture_size"]={type:"enum", -values:[32,64,128,256,512]};p.prototype.onExecute=function(){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var a=GL.Mesh.getScreenQuad(),b=p._shader,c=this.getInputData(0);c||(c=this.properties.A);var d=this.getInputData(1);d||(d=this.properties.B);for(var e=2;e=this.size[1]|| -!this._video||(a.save(),a.webgl?this._temp_texture&&a.drawImage(this._temp_texture,0,0,this.size[0],this.size[1]):(a.translate(0,this.size[1]),a.scale(1,-1),a.drawImage(this._video,0,0,this.size[0],this.size[1])),a.restore())};s.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();if(this._video&&this._video.videoWidth){var a=this._video.videoWidth,b=this._video.videoHeight,c=this._temp_texture;c&&c.width==a&&c.height==b||(this._temp_texture=new GL.Texture(a, -b,{format:gl.RGB,filter:gl.LINEAR}));this._temp_texture.uploadImage(this._video);this.properties.texture_name&&(g.getTexturesContainer()[this.properties.texture_name]=this._temp_texture);this.setOutputData(0,this._temp_texture)}};e.registerNodeType("texture/webcam",s);var z=function(){this.addInput("in","Texture");this.addOutput("out","Texture");this.properties={key_color:vec3.fromValues(0,1,0),threshold:0.8,slope:0.2,precision:g.DEFAULT};z._shader||(z._shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, -z.pixel_shader))};z.title="Matte";z.desc="Extracts background";z.widgets_info={key_color:{widget:"color"},precision:{widget:"combo",values:g.MODE_VALUES}};z.prototype.onExecute=function(){if(this.isOutputConnected(0)){var a=this.getInputData(0);if(this.properties.precision===g.PASS_THROUGH)this.setOutputData(0,a);else if(a){this._tex=g.getTargetTexture(a,this._tex,this.properties.precision);gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);this._uniforms||(this._uniforms={u_texture:0,u_key_color:this.properties.key_color, -u_threshold:1,u_slope:1});var b=this._uniforms,c=Mesh.getScreenQuad(),d=z._shader;b.u_key_color=this.properties.key_color;b.u_threshold=this.properties.threshold;b.u_slope=this.properties.slope;this._tex.drawTo(function(){a.bind(0);d.uniforms(b).draw(c)});this.setOutputData(0,this._tex)}}};z.pixel_shader="precision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec3 u_key_color;\n\t\t\tuniform float u_threshold;\n\t\t\tuniform float u_slope;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec3 color = texture2D( u_texture, v_coord ).xyz;\n\t\t\t\tfloat diff = length( normalize(color) - normalize(u_key_color) );\n\t\t\t\tfloat edge = u_threshold * (1.0 - u_slope);\n\t\t\t\tfloat alpha = smoothstep( edge, u_threshold, diff);\n\t\t\t\tgl_FragColor = vec4( color, alpha );\n\t\t\t}"; -e.registerNodeType("texture/matte",z);s=function(){this.addOutput("Cubemap","Cubemap");this.properties={name:""};this.size=[g.image_preview_size,g.image_preview_size]};s.title="Cubemap";s.prototype.onDropFile=function(a,b,c){a?(this._drop_texture="string"==typeof a?GL.Texture.fromURL(a):GL.Texture.fromDDSInMemory(a),this.properties.name=b):(this._drop_texture=null,this.properties.name="")};s.prototype.onExecute=function(){if(this._drop_texture)this.setOutputData(0,this._drop_texture);else if(this.properties.name){var a= -g.getTexture(this.properties.name);a&&(this._last_tex=a,this.setOutputData(0,a))}};s.prototype.onDrawBackground=function(a){this.flags.collapsed||20>=this.size[1]||a.webgl&&(gl.meshes.cube||(gl.meshes.cube=GL.Mesh.cube({size:1})))};e.registerNodeType("texture/cubemap",s)}})(this); -(function(s){var e=s.LiteGraph;if("undefined"!=typeof GL){var g=function(){this.addInput("Texture","Texture");this.addInput("Aberration","number");this.addInput("Distortion","number");this.addInput("Blur","number");this.addOutput("Texture","Texture");this.properties={aberration:1,distortion:1,blur:1,precision:LGraphTexture.DEFAULT};g._shader||(g._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,g.pixel_shader),g._texture=new GL.Texture(3,1,{format:gl.RGB,wrap:gl.CLAMP_TO_EDGE,magFilter:gl.LINEAR, -minFilter:gl.LINEAR,pixel_data:[255,0,0,0,255,0,0,0,255]}))};g.title="Lens";g.desc="Camera Lens distortion";g.widgets_info={precision:{widget:"combo",values:LGraphTexture.MODE_VALUES}};g.prototype.onExecute=function(){var d=this.getInputData(0);if(this.properties.precision===LGraphTexture.PASS_THROUGH)this.setOutputData(0,d);else if(d){this._tex=LGraphTexture.getTargetTexture(d,this._tex,this.properties.precision);var e=this.properties.aberration;this.isInputConnected(1)&&(e=this.getInputData(1), -this.properties.aberration=e);var f=this.properties.distortion;this.isInputConnected(2)&&(f=this.getInputData(2),this.properties.distortion=f);var k=this.properties.blur;this.isInputConnected(3)&&(k=this.getInputData(3),this.properties.blur=k);gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var a=Mesh.getScreenQuad(),b=g._shader;this._tex.drawTo(function(){d.bind(0);b.uniforms({u_texture:0,u_aberration:e,u_distortion:f,u_blur:k}).draw(a)});this.setOutputData(0,this._tex)}};g.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_aberration;\n\t\t\tuniform float u_distortion;\n\t\t\tuniform float u_blur;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec2 coord = v_coord;\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\t\t\t\tdist_coord *= percent;\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\t\t\t\tgl_FragColor = color;\n\t\t\t}\n\t\t\t"; -e.registerNodeType("fx/lens",g);window.LGraphFXLens=g;var d=function(){this.addInput("Texture","Texture");this.addInput("Blurred","Texture");this.addInput("Mask","Texture");this.addInput("Threshold","number");this.addOutput("Texture","Texture");this.properties={shape:"",size:10,alpha:1,threshold:1,high_precision:!1}};d.title="Bokeh";d.desc="applies an Bokeh effect";d.widgets_info={shape:{widget:"texture"}};d.prototype.onExecute=function(){var e=this.getInputData(0),g=this.getInputData(1),f=this.getInputData(2); -if(e&&f&&this.properties.shape){g||(g=e);var k=LGraphTexture.getTexture(this.properties.shape);if(k){var a=this.properties.threshold;this.isInputConnected(3)&&(a=this.getInputData(3),this.properties.threshold=a);var b=gl.UNSIGNED_BYTE;this.properties.high_precision&&(b=gl.half_float_ext?gl.HALF_FLOAT_OES:gl.FLOAT);this._temp_texture&&this._temp_texture.type==b&&this._temp_texture.width==e.width&&this._temp_texture.height==e.height||(this._temp_texture=new GL.Texture(e.width,e.height,{type:b,format:gl.RGBA, -filter:gl.LINEAR}));var c=d._first_shader;c||(c=d._first_shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,d._first_pixel_shader));var h=d._second_shader;h||(h=d._second_shader=new GL.Shader(d._second_vertex_shader,d._second_pixel_shader));var p=this._points_mesh;p&&p._width==e.width&&p._height==e.height&&2==p._spacing||(p=this.createPointsMesh(e.width,e.height,2));var q=Mesh.getScreenQuad(),r=this.properties.size,l=this.properties.alpha;gl.disable(gl.DEPTH_TEST);gl.disable(gl.BLEND);this._temp_texture.drawTo(function(){e.bind(0); -g.bind(1);f.bind(2);c.uniforms({u_texture:0,u_texture_blur:1,u_mask:2,u_texsize:[e.width,e.height]}).draw(q)});this._temp_texture.drawTo(function(){gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);e.bind(0);k.bind(3);h.uniforms({u_texture:0,u_mask:2,u_shape:3,u_alpha:l,u_threshold:a,u_pointSize:r,u_itexsize:[1/e.width,1/e.height]}).draw(p,gl.POINTS)});this.setOutputData(0,this._temp_texture)}}else this.setOutputData(0,e)};d.prototype.createPointsMesh=function(d,e,f){for(var g=Math.round(d/f),a=Math.round(e/ -f),b=new Float32Array(g*a*2),c=-1,h=2/d*f,k=2/e*f,q=0;q=e.NOTEON||b<=e.NOTEOFF)this.channel=a&15};Object.defineProperty(e.prototype,"velocity",{get:function(){return this.cmd==e.NOTEON?this.data[2]: --1},set:function(a){this.data[2]=a},enumerable:!0});e.notes="A A# B C C# D D# E F F# G G#".split(" ");e.prototype.getPitch=function(){return 440*Math.pow(2,(this.data[1]-69)/12)};e.computePitch=function(a){return 440*Math.pow(2,(a-69)/12)};e.prototype.getCC=function(){return this.data[1]};e.prototype.getCCValue=function(){return this.data[2]};e.prototype.getPitchBend=function(){return this.data[1]+(this.data[2]<<7)-8192};e.computePitchBend=function(a,b){return a+(b<<7)-8192};e.prototype.setCommandFromString= -function(a){this.cmd=e.computeCommandFromString(a)};e.computeCommandFromString=function(a){if(!a)return 0;if(a&&a.constructor===Number)return a;a=a.toUpperCase();switch(a){case "NOTE ON":case "NOTEON":return e.NOTEON;case "NOTE OFF":case "NOTEOFF":return e.NOTEON;case "KEY PRESSURE":case "KEYPRESSURE":return e.KEYPRESSURE;case "CONTROLLER CHANGE":case "CONTROLLERCHANGE":case "CC":return e.CONTROLLERCHANGE;case "PROGRAM CHANGE":case "PROGRAMCHANGE":case "PC":return e.PROGRAMCHANGE;case "CHANNEL PRESSURE":case "CHANNELPRESSURE":return e.CHANNELPRESSURE; -case "PITCH BEND":case "PITCHBEND":return e.PITCHBEND;case "TIME TICK":case "TIMETICK":return e.TIMETICK;default:return Number(a)}};e.toNoteString=function(a){var b;b=(a-21)%12;0>b&&(b=12+b);return e.notes[b]+Math.floor((a-24)/12+1)};e.prototype.toString=function(){var a=""+this.channel+". ";switch(this.cmd){case e.NOTEON:a+="NOTEON "+e.toNoteString(this.data[1]);break;case e.NOTEOFF:a+="NOTEOFF "+e.toNoteString(this.data[1]);break;case e.CONTROLLERCHANGE:a+="CC "+this.data[1]+" "+this.data[2];break; -case e.PROGRAMCHANGE:a+="PC "+this.data[1];break;case e.PITCHBEND:a+="PITCHBEND "+this.getPitchBend();break;case e.KEYPRESSURE:a+="KEYPRESS "+this.data[1]}return a};e.prototype.toHexString=function(){for(var a="",b=0;bthis.properties.max_value||this.trigger("on_midi",b)};n.registerNodeType("midi/filter",t);u.title="MIDIEvent";u.desc="Create a MIDI Event";u.prototype.onAction=function(a,b){"assign"==a?(this.properties.channel=b.channel,this.properties.cmd=b.cmd,this.properties.value1= -b.data[1],this.properties.value2=b.data[2]):(b=new e,b.channel=this.properties.channel,this.properties.cmd&&this.properties.cmd.constructor===String?b.setCommandFromString(this.properties.cmd):b.cmd=this.properties.cmd,b.data[0]=b.cmd|b.channel,b.data[1]=Number(this.properties.value1),b.data[2]=Number(this.properties.value2),this.trigger("on_midi",b))};u.prototype.onExecute=function(){var a=this.properties;if(this.outputs)for(var b=0;b=this.size[0]&&(e=this.size[0]-1),a.strokeStyle="red",a.beginPath(),a.moveTo(e,d),a.lineTo(e,0),a.stroke())}};b.title="Visualization";b.desc="Audio Visualization";v.registerNodeType("audio/visualization", -b);c.prototype.onExecute=function(){if(this._freqs=this.getInputData(0)){var a=this.properties.band,b=this.getInputData(1);void 0!==b&&(a=b);b=r.getAudioContext().sampleRate/this._freqs.length;b=a/b*2;b>=this._freqs.length?b=this._freqs[this._freqs.length-1]:(a=b|0,b-=a,b=this._freqs[a]*(1-b)+this._freqs[a+1]*b);this.setOutputData(0,b/255*this.properties.amplitude)}};c.prototype.onGetInputs=function(){return[["band","number"]]};c.title="Signal";c.desc="extract the signal of some frequency";v.registerNodeType("audio/signal", -c);h.prototype.onAdded=function(a){a.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback)};h["@code"]={widget:"code"};h.prototype.onStart=function(){this.audionode.onaudioprocess=this._callback};h.prototype.onStop=function(){this.audionode.onaudioprocess=h._bypass_function};h.prototype.onPause=function(){this.audionode.onaudioprocess=h._bypass_function};h.prototype.onUnpause=function(){this.audionode.onaudioprocess=this._callback};h.prototype.onExecute=function(){};h.prototype.onRemoved= -function(){this.audionode.onaudioprocess=h._bypass_function};h.prototype.processCode=function(){try{this._script=new new Function("properties",this.properties.code)(this.properties),this._old_code=this.properties.code,this._callback=this._script.onaudioprocess}catch(a){console.error("Error in onaudioprocess code",a),this._callback=h._bypass_function,this.audionode.onaudioprocess=this._callback}};h.prototype.onPropertyChanged=function(a,b){"code"==a&&(this.properties.code=b,this.processCode(),this.graph&& -this.graph.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback))};h.default_function=function(){this.onaudioprocess=function(a){var b=a.inputBuffer;a=a.outputBuffer;for(var c=0;c h && (h = Math.max(0, p + h)); + if (null == e || e > p) { + e = p; + } + e = Number(e); + 0 > e && (e = Math.max(0, p + e)); + for (h = Number(h || 0); h < e; h++) { + this[h] = c; + } + return this; + }; +}, "es6", "es3"); +$jscomp.SYMBOL_PREFIX = "jscomp_symbol_"; +$jscomp.initSymbol = function() { + $jscomp.initSymbol = function() { + }; + $jscomp.global.Symbol || ($jscomp.global.Symbol = $jscomp.Symbol); +}; +$jscomp.Symbol = function() { + var v = 0; + return function(c) { + return $jscomp.SYMBOL_PREFIX + (c || "") + v++; + }; +}(); +$jscomp.initSymbolIterator = function() { + $jscomp.initSymbol(); + var v = $jscomp.global.Symbol.iterator; + v || (v = $jscomp.global.Symbol.iterator = $jscomp.global.Symbol("iterator")); + "function" != typeof Array.prototype[v] && $jscomp.defineProperty(Array.prototype, v, {configurable:!0, writable:!0, value:function() { + return $jscomp.arrayIterator(this); + }}); + $jscomp.initSymbolIterator = function() { + }; +}; +$jscomp.arrayIterator = function(v) { + var c = 0; + return $jscomp.iteratorPrototype(function() { + return c < v.length ? {done:!1, value:v[c++]} : {done:!0}; + }); +}; +$jscomp.iteratorPrototype = function(v) { + $jscomp.initSymbolIterator(); + v = {next:v}; + v[$jscomp.global.Symbol.iterator] = function() { + return this; + }; + return v; +}; +$jscomp.iteratorFromArray = function(v, c) { + $jscomp.initSymbolIterator(); + v instanceof String && (v += ""); + var h = 0, e = {next:function() { + if (h < v.length) { + var p = h++; + return {value:c(p, v[p]), done:!1}; + } + e.next = function() { + return {done:!0, value:void 0}; + }; + return e.next(); + }}; + e[Symbol.iterator] = function() { + return e; + }; + return e; +}; +$jscomp.polyfill("Array.prototype.values", function(v) { + return v ? v : function() { + return $jscomp.iteratorFromArray(this, function(c, h) { + return h; + }); + }; +}, "es8", "es3"); +(function(v) { + function c() { + g.debug && console.log("Graph created"); + this.list_of_graphcanvas = null; + this.clear(); + } + function h(a) { + this._ctor(); + } + function e(a, b, d) { + d = d || {}; + this.background_image = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; + a && a.constructor === String && (a = document.querySelector(a)); + this.max_zoom = 10; + this.min_zoom = 0.1; + this.title_text_font = "bold 14px Arial"; + this.inner_text_font = "normal 12px Arial"; + this.default_link_color = "#AAC"; + this.highquality_render = !0; + this.editor_alpha = 1; + this.pause_rendering = !1; + this.render_only_selected = this.clear_background = this.render_shadows = !0; + this.live_mode = !1; + this.allow_interaction = this.allow_dragnodes = this.allow_dragcanvas = this.show_info = !0; + this.render_connections_shadows = this.always_render_background = !1; + this.render_connection_arrows = this.render_curved_connections = this.render_connections_border = !0; + this.connections_width = 3; + b && b.attachCanvas(this); + this.setCanvas(a); + this.clear(); + d.skip_render || this.startRendering(); + this.autoresize = d.autoresize; + } + function p(a, b) { + return Math.sqrt((b[0] - a[0]) * (b[0] - a[0]) + (b[1] - a[1]) * (b[1] - a[1])); + } + function n(a, b, d, f, g, e) { + return d < a && d + g > a && f < b && f + e > b ? !0 : !1; + } + function u(a, b) { + return a[0] > b[2] || a[1] > b[3] || a[2] < b[0] || a[3] < b[1] ? !1 : !0; + } + function x(a, b) { + this.options = b = b || {}; + var d = this; + b.parentMenu && (b.parentMenu.constructor !== this.constructor ? (console.error("parentMenu must be of class ContextMenu, ignoring it"), b.parentMenu = null) : (this.parentMenu = b.parentMenu, this.parentMenu.lock = !0, this.parentMenu.current_submenu = this)); + b.event && b.event.constructor !== MouseEvent && b.event.constructor !== CustomEvent && (console.error("Event passed to ContextMenu is not of type MouseEvent or CustomEvent. Ignoring it."), b.event = null); + var f = document.createElement("div"); + f.className = "litegraph litecontextmenu litemenubar-panel"; + f.style.minWidth = 100; + f.style.minHeight = 100; + f.style.pointerEvents = "none"; + setTimeout(function() { + f.style.pointerEvents = "auto"; + }, 100); + f.addEventListener("mouseup", function(a) { + a.preventDefault(); + return !0; + }, !0); + f.addEventListener("contextmenu", function(a) { + if (2 != a.button) { + return !1; + } + a.preventDefault(); + return !1; + }, !0); + f.addEventListener("mousedown", function(a) { + if (2 == a.button) { + return d.close(), a.preventDefault(), !0; + } + }, !0); + this.root = f; + if (b.title) { + var g = document.createElement("div"); + g.className = "litemenu-title"; + g.innerHTML = b.title; + f.appendChild(g); + } + g = 0; + for (var e in a) { + var q = a.constructor == Array ? a[e] : e; + null != q && q.constructor !== String && (q = void 0 === q.content ? String(q) : q.content); + this.addItem(q, a[e], b); + g++; + } + f.addEventListener("mouseleave", function(a) { + d.lock || d.close(a); + }); + a = document; + b.event && (a = b.event.target.ownerDocument); + a || (a = document); + a.body.appendChild(f); + e = b.left || 0; + a = b.top || 0; + b.event && (e = b.event.pageX - 10, a = b.event.pageY - 10, b.title && (a -= 20), b.parentMenu && (b = b.parentMenu.root.getBoundingClientRect(), e = b.left + b.width), b = document.body.getBoundingClientRect(), g = f.getBoundingClientRect(), e > b.width - g.width - 10 && (e = b.width - g.width - 10), a > b.height - g.height - 10 && (a = b.height - g.height - 10)); + f.style.left = e + "px"; + f.style.top = a + "px"; + } + var g = v.LiteGraph = {NODE_TITLE_HEIGHT:16, NODE_SLOT_HEIGHT:15, NODE_WIDTH:140, NODE_MIN_WIDTH:50, NODE_COLLAPSED_RADIUS:10, NODE_COLLAPSED_WIDTH:80, CANVAS_GRID_SIZE:10, NODE_TITLE_COLOR:"#222", NODE_DEFAULT_COLOR:"#999", NODE_DEFAULT_BGCOLOR:"#444", NODE_DEFAULT_BOXCOLOR:"#AEF", NODE_DEFAULT_SHAPE:"box", MAX_NUMBER_OF_NODES:1000, DEFAULT_POSITION:[100, 100], node_images_path:"", VALID_SHAPES:["box", "round"], BOX_SHAPE:1, ROUND_SHAPE:2, CIRCLE_SHAPE:3, INPUT:1, OUTPUT:2, EVENT:-1, ACTION:-1, + ALWAYS:0, ON_EVENT:1, NEVER:2, ON_TRIGGER:3, proxy:null, debug:!1, throw_errors:!0, allow_scripts:!0, registered_node_types:{}, node_types_by_file_extension:{}, Nodes:{}, registerNodeType:function(a, b) { + if (!b.prototype) { + throw "Cannot register a simple object, it must be a class with a prototype"; + } + b.type = a; + g.debug && console.log("Node registered: " + a); + a.split("/"); + var d = b.constructor.name, f = a.lastIndexOf("/"); + b.category = a.substr(0, f); + b.title || (b.title = d); + if (b.prototype) { + for (var t in h.prototype) { + b.prototype[t] || (b.prototype[t] = h.prototype[t]); + } + } + Object.defineProperty(b.prototype, "shape", {set:function(a) { + switch(a) { + case "box": + this._shape = g.BOX_SHAPE; + break; + case "round": + this._shape = g.ROUND_SHAPE; + break; + case "circle": + this._shape = g.CIRCLE_SHAPE; + break; + default: + this._shape = a; + } + }, get:function(a) { + return this._shape; + }, enumerable:!0}); + this.registered_node_types[a] = b; + b.constructor.name && (this.Nodes[d] = b); + b.prototype.onPropertyChange && console.warn("LiteGraph node class " + a + " has onPropertyChange method, it must be called onPropertyChanged with d at the end"); + if (b.supported_extensions) { + for (t in b.supported_extensions) { + this.node_types_by_file_extension[b.supported_extensions[t].toLowerCase()] = b; + } + } + }, addNodeMethod:function(a, b) { + h.prototype[a] = b; + for (var d in this.registered_node_types) { + var f = this.registered_node_types[d]; + f.prototype[a] && (f.prototype["_" + a] = f.prototype[a]); + f.prototype[a] = b; + } + }, createNode:function(a, b, d) { + var f = this.registered_node_types[a]; + if (!f) { + return g.debug && console.log('GraphNode type "' + a + '" not registered.'), null; + } + b = b || f.title || a; + f = new f(b); + f.type = a; + f.title || (f.title = b); + f.properties || (f.properties = {}); + f.properties_info || (f.properties_info = []); + f.flags || (f.flags = {}); + f.size || (f.size = f.computeSize()); + f.pos || (f.pos = g.DEFAULT_POSITION.concat()); + f.mode || (f.mode = g.ALWAYS); + if (d) { + for (var t in d) { + f[t] = d[t]; + } + } + return f; + }, getNodeType:function(a) { + return this.registered_node_types[a]; + }, getNodeTypesInCategory:function(a) { + var b = [], d; + for (d in this.registered_node_types) { + "" == a ? null == this.registered_node_types[d].category && b.push(this.registered_node_types[d]) : this.registered_node_types[d].category == a && b.push(this.registered_node_types[d]); + } + return b; + }, getNodeTypesCategories:function() { + var a = {"":1}, b; + for (b in this.registered_node_types) { + this.registered_node_types[b].category && !this.registered_node_types[b].skip_list && (a[this.registered_node_types[b].category] = 1); + } + var d = []; + for (b in a) { + d.push(b); + } + return d; + }, reloadNodes:function(a) { + var b = document.getElementsByTagName("script"), d = [], f; + for (f in b) { + d.push(b[f]); + } + b = document.getElementsByTagName("head")[0]; + a = document.location.href + a; + for (f in d) { + var t = d[f].src; + if (t && t.substr(0, a.length) == a) { + try { + g.debug && console.log("Reloading: " + t); + var e = document.createElement("script"); + e.type = "text/javascript"; + e.src = t; + b.appendChild(e); + b.removeChild(d[f]); + } catch (q) { + if (g.throw_errors) { + throw q; + } + g.debug && console.log("Error while reloading " + t); + } + } + } + g.debug && console.log("Nodes reloaded"); + }, cloneObject:function(a, b) { + if (null == a) { + return null; + } + a = JSON.parse(JSON.stringify(a)); + if (!b) { + return a; + } + for (var d in a) { + b[d] = a[d]; + } + return b; + }, isValidConnection:function(a, b) { + return !a || !b || a == b || a !== g.EVENT && b !== g.EVENT && a.toLowerCase() == b.toLowerCase() ? !0 : !1; + }}; + g.getTime = "undefined" != typeof performance ? performance.now.bind(performance) : "undefined" != typeof Date && Date.now ? Date.now.bind(Date) : "undefined" != typeof process ? function() { + var a = process.hrtime(); + return 0.001 * a[0] + 1e-6 * a[1]; + } : function() { + return (new Date).getTime(); + }; + v.LGraph = g.LGraph = c; + c.supported_types = ["number", "string", "boolean"]; + c.prototype.getSupportedTypes = function() { + return this.supported_types || c.supported_types; + }; + c.STATUS_STOPPED = 1; + c.STATUS_RUNNING = 2; + c.prototype.clear = function() { + this.stop(); + this.status = c.STATUS_STOPPED; + this.last_node_id = 0; + this._nodes = []; + this._nodes_by_id = {}; + this._nodes_executable = this._nodes_in_order = null; + this.last_link_id = 0; + this.links = {}; + this.iteration = 0; + this.config = {}; + this.fixedtime = this.runningtime = this.globaltime = 0; + this.elapsed_time = this.fixedtime_lapse = 0.01; + this.starttime = 0; + this.catch_errors = !0; + this.global_inputs = {}; + this.global_outputs = {}; + this.debug = !0; + this.change(); + this.sendActionToCanvas("clear"); + }; + c.prototype.attachCanvas = function(a) { + if (a.constructor != e) { + throw "attachCanvas expects a LGraphCanvas instance"; + } + a.graph && a.graph != this && a.graph.detachCanvas(a); + a.graph = this; + this.list_of_graphcanvas || (this.list_of_graphcanvas = []); + this.list_of_graphcanvas.push(a); + }; + c.prototype.detachCanvas = function(a) { + if (this.list_of_graphcanvas) { + var b = this.list_of_graphcanvas.indexOf(a); + -1 != b && (a.graph = null, this.list_of_graphcanvas.splice(b, 1)); + } + }; + c.prototype.start = function(a) { + if (this.status != c.STATUS_RUNNING) { + this.status = c.STATUS_RUNNING; + if (this.onPlayEvent) { + this.onPlayEvent(); + } + this.sendEventToAllNodes("onStart"); + this.starttime = g.getTime(); + var b = this; + this.execution_timer_id = setInterval(function() { + b.runStep(1, !this.catch_errors); + }, a || 1); + } + }; + c.prototype.stop = function() { + if (this.status != c.STATUS_STOPPED) { + this.status = c.STATUS_STOPPED; + if (this.onStopEvent) { + this.onStopEvent(); + } + null != this.execution_timer_id && clearInterval(this.execution_timer_id); + this.execution_timer_id = null; + this.sendEventToAllNodes("onStop"); + } + }; + c.prototype.runStep = function(a, b) { + a = a || 1; + var d = g.getTime(); + this.globaltime = 0.001 * (d - this.starttime); + var f = this._nodes_executable ? this._nodes_executable : this._nodes; + if (f) { + if (b) { + for (var t = 0; t < a; t++) { + for (var e = 0, q = f.length; e < q; ++e) { + var l = f[e]; + if (l.mode == g.ALWAYS && l.onExecute) { + l.onExecute(); + } + } + this.fixedtime += this.fixedtime_lapse; + if (this.onExecuteStep) { + this.onExecuteStep(); + } + } + if (this.onAfterExecute) { + this.onAfterExecute(); + } + } else { + try { + for (t = 0; t < a; t++) { + e = 0; + for (q = f.length; e < q; ++e) { + if (l = f[e], l.mode == g.ALWAYS && l.onExecute) { + l.onExecute(); + } + } + this.fixedtime += this.fixedtime_lapse; + if (this.onExecuteStep) { + this.onExecuteStep(); + } + } + if (this.onAfterExecute) { + this.onAfterExecute(); + } + this.errors_in_execution = !1; + } catch (w) { + this.errors_in_execution = !0; + if (g.throw_errors) { + throw w; + } + g.debug && console.log("Error during execution: " + w); + this.stop(); + } + } + a = g.getTime() - d; + 0 == a && (a = 1); + this.elapsed_time = 0.001 * a; + this.globaltime += 0.001 * a; + this.iteration += 1; + } + }; + c.prototype.updateExecutionOrder = function() { + this._nodes_in_order = this.computeExecutionOrder(!1); + this._nodes_executable = []; + for (var a = 0; a < this._nodes_in_order.length; ++a) { + this._nodes_in_order[a].onExecute && this._nodes_executable.push(this._nodes_in_order[a]); + } + }; + c.prototype.computeExecutionOrder = function(a) { + for (var b = [], d = [], f = {}, t = {}, e = {}, q = 0, l = this._nodes.length; q < l; ++q) { + var c = this._nodes[q]; + if (!a || c.onExecute) { + f[c.id] = c; + var k = 0; + if (c.inputs) { + for (var h = 0, p = c.inputs.length; h < p; h++) { + c.inputs[h] && null != c.inputs[h].link && (k += 1); + } + } + 0 == k ? d.push(c) : e[c.id] = k; + } + } + for (; 0 != d.length;) { + if (c = d.shift(), b.push(c), delete f[c.id], c.outputs) { + for (q = 0; q < c.outputs.length; q++) { + if (a = c.outputs[q], null != a && null != a.links && 0 != a.links.length) { + for (h = 0; h < a.links.length; h++) { + (l = this.links[a.links[h]]) && !t[l.id] && (k = this.getNodeById(l.target_id), null == k ? t[l.id] = !0 : (t[l.id] = !0, --e[k.id], 0 == e[k.id] && d.push(k))); + } + } + } + } + } + for (q in f) { + b.push(f[q]); + } + b.length != this._nodes.length && g.debug && console.warn("something went wrong, nodes missing"); + for (q = 0; q < b.length; ++q) { + b[q].order = q; + } + return b; + }; + c.prototype.getTime = function() { + return this.globaltime; + }; + c.prototype.getFixedTime = function() { + return this.fixedtime; + }; + c.prototype.getElapsedTime = function() { + return this.elapsed_time; + }; + c.prototype.sendEventToAllNodes = function(a, b, d) { + d = d || g.ALWAYS; + var f = this._nodes_in_order ? this._nodes_in_order : this._nodes; + if (f) { + for (var t = 0, e = f.length; t < e; ++t) { + var c = f[t]; + if (c[a] && c.mode == d) { + if (void 0 === b) { + c[a](); + } else { + if (b && b.constructor === Array) { + c[a].apply(c, b); + } else { + c[a](b); + } + } + } + } + } + }; + c.prototype.sendActionToCanvas = function(a, b) { + if (this.list_of_graphcanvas) { + for (var d = 0; d < this.list_of_graphcanvas.length; ++d) { + var f = this.list_of_graphcanvas[d]; + f[a] && f[a].apply(f, b); + } + } + }; + c.prototype.add = function(a, b) { + if (a) { + -1 != a.id && null != this._nodes_by_id[a.id] && (console.warn("LiteGraph: there is already a node with this ID, changing it"), a.id = ++this.last_node_id); + if (this._nodes.length >= g.MAX_NUMBER_OF_NODES) { + throw "LiteGraph: max number of nodes in a graph reached"; + } + null == a.id || -1 == a.id ? a.id = ++this.last_node_id : this.last_node_id < a.id && (this.last_node_id = a.id); + a.graph = this; + this._nodes.push(a); + this._nodes_by_id[a.id] = a; + if (a.onAdded) { + a.onAdded(this); + } + this.config.align_to_grid && a.alignToGrid(); + b || this.updateExecutionOrder(); + if (this.onNodeAdded) { + this.onNodeAdded(a); + } + this.setDirtyCanvas(!0); + this.change(); + return a; + } + }; + c.prototype.remove = function(a) { + if (null != this._nodes_by_id[a.id] && !a.ignore_remove) { + if (a.inputs) { + for (var b = 0; b < a.inputs.length; b++) { + var d = a.inputs[b]; + null != d.link && a.disconnectInput(b); + } + } + if (a.outputs) { + for (b = 0; b < a.outputs.length; b++) { + d = a.outputs[b], null != d.links && d.links.length && a.disconnectOutput(b); + } + } + if (a.onRemoved) { + a.onRemoved(); + } + a.graph = null; + if (this.list_of_graphcanvas) { + for (b = 0; b < this.list_of_graphcanvas.length; ++b) { + d = this.list_of_graphcanvas[b], d.selected_nodes[a.id] && delete d.selected_nodes[a.id], d.node_dragged == a && (d.node_dragged = null); + } + } + b = this._nodes.indexOf(a); + -1 != b && this._nodes.splice(b, 1); + delete this._nodes_by_id[a.id]; + if (this.onNodeRemoved) { + this.onNodeRemoved(a); + } + this.setDirtyCanvas(!0, !0); + this.change(); + this.updateExecutionOrder(); + } + }; + c.prototype.getNodeById = function(a) { + return null == a ? null : this._nodes_by_id[a]; + }; + c.prototype.findNodesByClass = function(a) { + for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + this._nodes[d].constructor === a && b.push(this._nodes[d]); + } + return b; + }; + c.prototype.findNodesByType = function(a) { + a = a.toLowerCase(); + for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + this._nodes[d].type.toLowerCase() == a && b.push(this._nodes[d]); + } + return b; + }; + c.prototype.findNodesByTitle = function(a) { + for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + this._nodes[d].title == a && b.push(this._nodes[d]); + } + return b; + }; + c.prototype.getNodeOnPos = function(a, b, d) { + d = d || this._nodes; + for (var f = d.length - 1; 0 <= f; f--) { + var g = d[f]; + if (g.isPointInsideNode(a, b, 2)) { + return g; + } + } + return null; + }; + c.prototype.addGlobalInput = function(a, b, d) { + this.global_inputs[a] = {name:a, type:b, value:d}; + if (this.onGlobalInputAdded) { + this.onGlobalInputAdded(a, b); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + }; + c.prototype.setGlobalInputData = function(a, b) { + if (a = this.global_inputs[a]) { + a.value = b; + } + }; + c.prototype.getGlobalInputData = function(a) { + return (a = this.global_inputs[a]) ? a.value : null; + }; + c.prototype.renameGlobalInput = function(a, b) { + if (b != a) { + if (!this.global_inputs[a]) { + return !1; + } + if (this.global_inputs[b]) { + return console.error("there is already one input with that name"), !1; + } + this.global_inputs[b] = this.global_inputs[a]; + delete this.global_inputs[a]; + if (this.onGlobalInputRenamed) { + this.onGlobalInputRenamed(a, b); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + } + }; + c.prototype.changeGlobalInputType = function(a, b) { + if (!this.global_inputs[a]) { + return !1; + } + if (this.global_inputs[a].type.toLowerCase() != b.toLowerCase() && (this.global_inputs[a].type = b, this.onGlobalInputTypeChanged)) { + this.onGlobalInputTypeChanged(a, b); + } + }; + c.prototype.removeGlobalInput = function(a) { + if (!this.global_inputs[a]) { + return !1; + } + delete this.global_inputs[a]; + if (this.onGlobalInputRemoved) { + this.onGlobalInputRemoved(a); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + return !0; + }; + c.prototype.addGlobalOutput = function(a, b, d) { + this.global_outputs[a] = {name:a, type:b, value:d}; + if (this.onGlobalOutputAdded) { + this.onGlobalOutputAdded(a, b); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + }; + c.prototype.setGlobalOutputData = function(a, b) { + if (a = this.global_outputs[a]) { + a.value = b; + } + }; + c.prototype.getGlobalOutputData = function(a) { + return (a = this.global_outputs[a]) ? a.value : null; + }; + c.prototype.renameGlobalOutput = function(a, b) { + if (!this.global_outputs[a]) { + return !1; + } + if (this.global_outputs[b]) { + return console.error("there is already one output with that name"), !1; + } + this.global_outputs[b] = this.global_outputs[a]; + delete this.global_outputs[a]; + if (this.onGlobalOutputRenamed) { + this.onGlobalOutputRenamed(a, b); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + }; + c.prototype.changeGlobalOutputType = function(a, b) { + if (!this.global_outputs[a]) { + return !1; + } + if (this.global_outputs[a].type.toLowerCase() != b.toLowerCase() && (this.global_outputs[a].type = b, this.onGlobalOutputTypeChanged)) { + this.onGlobalOutputTypeChanged(a, b); + } + }; + c.prototype.removeGlobalOutput = function(a) { + if (!this.global_outputs[a]) { + return !1; + } + delete this.global_outputs[a]; + if (this.onGlobalOutputRemoved) { + this.onGlobalOutputRemoved(a); + } + if (this.onGlobalsChange) { + this.onGlobalsChange(); + } + return !0; + }; + c.prototype.setInputData = function(a, b) { + a = this.findNodesByName(a); + for (var d = 0, f = a.length; d < f; ++d) { + a[d].setValue(b); + } + }; + c.prototype.getOutputData = function(a) { + return this.findNodesByName(a).length ? m[0].getValue() : null; + }; + c.prototype.triggerInput = function(a, b) { + a = this.findNodesByName(a); + for (var d = 0; d < a.length; ++d) { + a[d].onTrigger(b); + } + }; + c.prototype.setCallback = function(a, b) { + a = this.findNodesByName(a); + for (var d = 0; d < a.length; ++d) { + a[d].setTrigger(b); + } + }; + c.prototype.connectionChange = function(a) { + this.updateExecutionOrder(); + if (this.onConnectionChange) { + this.onConnectionChange(a); + } + this.sendActionToCanvas("onConnectionChange"); + }; + c.prototype.isLive = function() { + if (!this.list_of_graphcanvas) { + return !1; + } + for (var a = 0; a < this.list_of_graphcanvas.length; ++a) { + if (this.list_of_graphcanvas[a].live_mode) { + return !0; + } + } + return !1; + }; + c.prototype.change = function() { + g.debug && console.log("Graph changed"); + this.sendActionToCanvas("setDirty", [!0, !0]); + if (this.on_change) { + this.on_change(this); + } + }; + c.prototype.setDirtyCanvas = function(a, b) { + this.sendActionToCanvas("setDirty", [a, b]); + }; + c.prototype.serialize = function() { + for (var a = [], b = 0, d = this._nodes.length; b < d; ++b) { + a.push(this._nodes[b].serialize()); + } + d = []; + for (b in this.links) { + var f = this.links[b]; + d.push([f.id, f.origin_id, f.origin_slot, f.target_id, f.target_slot, f.type]); + } + return {iteration:this.iteration, frame:this.frame, last_node_id:this.last_node_id, last_link_id:this.last_link_id, links:d, config:this.config, nodes:a}; + }; + c.prototype.configure = function(a, b) { + b || this.clear(); + b = a.nodes; + if (a.links && a.links.constructor === Array) { + for (var d = {}, f = 0; f < a.links.length; ++f) { + var t = a.links[f]; + d[t[0]] = {id:t[0], origin_id:t[1], origin_slot:t[2], target_id:t[3], target_slot:t[4], type:t[5]}; + } + a.links = d; + } + for (f in a) { + this[f] = a[f]; + } + a = !1; + this._nodes = []; + f = 0; + for (d = b.length; f < d; ++f) { + t = b[f]; + var e = g.createNode(t.type, t.title); + e ? (e.id = t.id, this.add(e, !0)) : (g.debug && console.log("Node not found: " + t.type), a = !0); + } + f = 0; + for (d = b.length; f < d; ++f) { + t = b[f], (e = this.getNodeById(t.id)) && e.configure(t); + } + this.updateExecutionOrder(); + this.setDirtyCanvas(!0, !0); + return a; + }; + c.prototype.load = function(a) { + var b = this, d = new XMLHttpRequest; + d.open("GET", a, !0); + d.send(null); + d.onload = function(a) { + 200 !== d.status ? console.error("Error loading graph:", d.status, d.response) : (a = JSON.parse(d.response), b.configure(a)); + }; + d.onerror = function(a) { + console.error("Error loading graph:", a); + }; + }; + c.prototype.onNodeTrace = function(a, b, d) { + }; + v.LGraphNode = g.LGraphNode = h; + h.prototype._ctor = function(a) { + this.title = a || "Unnamed"; + this.size = [g.NODE_WIDTH, 60]; + this.graph = null; + this._pos = new Float32Array(10, 10); + Object.defineProperty(this, "pos", {set:function(a) { + !a || 2 > !a.length || (this._pos[0] = a[0], this._pos[1] = a[1]); + }, get:function() { + return this._pos; + }, enumerable:!0}); + this.id = -1; + this.type = null; + this.inputs = []; + this.outputs = []; + this.connections = []; + this.properties = {}; + this.properties_info = []; + this.data = null; + this.flags = {}; + }; + h.prototype.configure = function(a) { + for (var b in a) { + if ("console" != b) { + if ("properties" == b) { + for (var d in a.properties) { + if (this.properties[d] = a.properties[d], this.onPropertyChanged) { + this.onPropertyChanged(d, a.properties[d]); + } + } + } else { + null != a[b] && ("object" == typeof a[b] ? this[b] && this[b].configure ? this[b].configure(a[b]) : this[b] = g.cloneObject(a[b], this[b]) : this[b] = a[b]); + } + } + } + if (this.onConnectionsChange) { + if (this.inputs) { + for (var f = 0; f < this.inputs.length; ++f) { + d = this.inputs[f]; + var t = this.graph.links[d.link]; + this.onConnectionsChange(g.INPUT, f, !0, t, d); + } + } + if (this.outputs) { + for (f = 0; f < this.outputs.length; ++f) { + if (d = this.outputs[f], d.links) { + for (b = 0; b < d.links.length; ++b) { + t = this.graph.links[d.links[b]], this.onConnectionsChange(g.OUTPUT, f, !0, t, d); + } + } + } + } + } + for (f in this.inputs) { + d = this.inputs[f], d.link && d.link.length && (t = d.link, "object" == typeof t && (d.link = t[0], this.graph.links[t[0]] = {id:t[0], origin_id:t[1], origin_slot:t[2], target_id:t[3], target_slot:t[4]})); + } + for (f in this.outputs) { + if (d = this.outputs[f], d.links && 0 != d.links.length) { + for (b in d.links) { + t = d.links[b], "object" == typeof t && (d.links[b] = t[0]); + } + } + } + if (this.onConfigure) { + this.onConfigure(a); + } + }; + h.prototype.serialize = function() { + if (this.outputs) { + for (var a = 0; a < this.outputs.length; a++) { + delete this.outputs[a]._data; + } + } + a = {id:this.id, title:this.title, type:this.type, pos:this.pos, size:this.size, data:this.data, flags:g.cloneObject(this.flags), inputs:this.inputs, outputs:this.outputs, mode:this.mode}; + this.properties && (a.properties = g.cloneObject(this.properties)); + a.type || (a.type = this.constructor.type); + this.color && (a.color = this.color); + this.bgcolor && (a.bgcolor = this.bgcolor); + this.boxcolor && (a.boxcolor = this.boxcolor); + this.shape && (a.shape = this.shape); + if (this.onSerialize) { + this.onSerialize(a); + } + return a; + }; + h.prototype.clone = function() { + var a = g.createNode(this.type), b = g.cloneObject(this.serialize()); + if (b.inputs) { + for (var d = 0; d < b.inputs.length; ++d) { + b.inputs[d].link = null; + } + } + if (b.outputs) { + for (d = 0; d < b.outputs.length; ++d) { + b.outputs[d].links && (b.outputs[d].links.length = 0); + } + } + delete b.id; + a.configure(b); + return a; + }; + h.prototype.toString = function() { + return JSON.stringify(this.serialize()); + }; + h.prototype.getTitle = function() { + return this.title || this.constructor.title; + }; + h.prototype.setOutputData = function(a, b) { + if (this.outputs && !(-1 == a || a >= this.outputs.length)) { + var d = this.outputs[a]; + if (d && (d._data = b, this.outputs[a].links)) { + for (d = 0; d < this.outputs[a].links.length; d++) { + this.graph.links[this.outputs[a].links[d]].data = b; + } + } + } + }; + h.prototype.getInputData = function(a, b) { + if (this.inputs && !(a >= this.inputs.length || null == this.inputs[a].link)) { + a = this.graph.links[this.inputs[a].link]; + if (!a) { + return null; + } + if (!b) { + return a.data; + } + b = this.graph.getNodeById(a.origin_id); + if (!b) { + return a.data; + } + if (b.updateOutputData) { + b.updateOutputData(a.origin_slot); + } else { + if (b.onExecute) { + b.onExecute(); + } + } + return a.data; + } + }; + h.prototype.isInputConnected = function(a) { + return this.inputs ? a < this.inputs.length && null != this.inputs[a].link : !1; + }; + h.prototype.getInputInfo = function(a) { + return this.inputs ? a < this.inputs.length ? this.inputs[a] : null : null; + }; + h.prototype.getInputNode = function(a) { + if (!this.inputs || a >= this.inputs.length) { + return null; + } + a = this.inputs[a]; + return a && a.link ? (a = this.graph.links[a.link]) ? this.graph.getNodeById(a.origin_id) : null : null; + }; + h.prototype.getOutputData = function(a) { + return !this.outputs || a >= this.outputs.length ? null : this.outputs[a]._data; + }; + h.prototype.getOutputInfo = function(a) { + return this.outputs ? a < this.outputs.length ? this.outputs[a] : null : null; + }; + h.prototype.isOutputConnected = function(a) { + return this.outputs ? a < this.outputs.length && this.outputs[a].links && this.outputs[a].links.length : null; + }; + h.prototype.getOutputNodes = function(a) { + if (!this.outputs || 0 == this.outputs.length || a >= this.outputs.length) { + return null; + } + a = this.outputs[a]; + if (!a.links || 0 == a.links.length) { + return null; + } + for (var b = [], d = 0; d < a.links.length; d++) { + var f = this.graph.links[a.links[d]]; + f && (f = this.graph.getNodeById(f.target_id)) && b.push(f); + } + return b; + }; + h.prototype.trigger = function(a, b) { + if (this.outputs && this.outputs.length) { + this.graph && (this.graph._last_trigger_time = g.getTime()); + for (var d = 0; d < this.outputs.length; ++d) { + var f = this.outputs[d]; + !f || f.type !== g.EVENT || a && f.name != a || this.triggerSlot(d, b); + } + } + }; + h.prototype.triggerSlot = function(a, b) { + if (this.outputs && (a = this.outputs[a]) && (a = a.links) && a.length) { + this.graph && (this.graph._last_trigger_time = g.getTime()); + for (var d = 0; d < a.length; ++d) { + var f = this.graph.links[a[d]]; + if (f) { + var t = this.graph.getNodeById(f.target_id); + if (t) { + if (f._last_time = g.getTime(), f = t.inputs[f.target_slot], t.onAction) { + t.onAction(f.name, b); + } else { + if (t.mode === g.ON_TRIGGER && t.onExecute) { + t.onExecute(b); + } + } + } + } + } + } + }; + h.prototype.addProperty = function(a, b, d, f) { + d = {name:a, type:d, default_value:b}; + if (f) { + for (var g in f) { + d[g] = f[g]; + } + } + this.properties_info || (this.properties_info = []); + this.properties_info.push(d); + this.properties || (this.properties = {}); + this.properties[a] = b; + return d; + }; + h.prototype.addOutput = function(a, b, d) { + a = {name:a, type:b, links:null}; + if (d) { + for (var f in d) { + a[f] = d[f]; + } + } + this.outputs || (this.outputs = []); + this.outputs.push(a); + if (this.onOutputAdded) { + this.onOutputAdded(a); + } + this.size = this.computeSize(); + return a; + }; + h.prototype.addOutputs = function(a) { + for (var b = 0; b < a.length; ++b) { + var d = a[b], f = {name:d[0], type:d[1], link:null}; + if (a[2]) { + for (var g in d[2]) { + f[g] = d[2][g]; + } + } + this.outputs || (this.outputs = []); + this.outputs.push(f); + if (this.onOutputAdded) { + this.onOutputAdded(f); + } + } + this.size = this.computeSize(); + }; + h.prototype.removeOutput = function(a) { + this.disconnectOutput(a); + this.outputs.splice(a, 1); + this.size = this.computeSize(); + if (this.onOutputRemoved) { + this.onOutputRemoved(a); + } + }; + h.prototype.addInput = function(a, b, d) { + a = {name:a, type:b || 0, link:null}; + if (d) { + for (var f in d) { + a[f] = d[f]; + } + } + this.inputs || (this.inputs = []); + this.inputs.push(a); + this.size = this.computeSize(); + if (this.onInputAdded) { + this.onInputAdded(a); + } + return a; + }; + h.prototype.addInputs = function(a) { + for (var b = 0; b < a.length; ++b) { + var d = a[b], f = {name:d[0], type:d[1], link:null}; + if (a[2]) { + for (var g in d[2]) { + f[g] = d[2][g]; + } + } + this.inputs || (this.inputs = []); + this.inputs.push(f); + if (this.onInputAdded) { + this.onInputAdded(f); + } + } + this.size = this.computeSize(); + }; + h.prototype.removeInput = function(a) { + this.disconnectInput(a); + this.inputs.splice(a, 1); + this.size = this.computeSize(); + if (this.onInputRemoved) { + this.onInputRemoved(a); + } + }; + h.prototype.addConnection = function(a, b, d, f) { + a = {name:a, type:b, pos:d, direction:f, links:null}; + this.connections.push(a); + return a; + }; + h.prototype.computeSize = function(a, b) { + a = Math.max(this.inputs ? this.inputs.length : 1, this.outputs ? this.outputs.length : 1); + b = b || new Float32Array([0, 0]); + a = Math.max(a, 1); + b[1] = 14 * a + 6; + a = (a = this.title) ? 8.4 * a.length : 0; + var d = 0, f = 0; + if (this.inputs) { + for (var t = 0, e = this.inputs.length; t < e; ++t) { + var c = this.inputs[t]; + c = (c = c.label || c.name || "") ? 8.4 * c.length : 0; + d < c && (d = c); + } + } + if (this.outputs) { + for (t = 0, e = this.outputs.length; t < e; ++t) { + c = this.outputs[t], c = (c = c.label || c.name || "") ? 8.4 * c.length : 0, f < c && (f = c); + } + } + b[0] = Math.max(d + f + 10, a); + b[0] = Math.max(b[0], g.NODE_WIDTH); + return b; + }; + h.prototype.getBounding = function(a) { + a = a || new Float32Array(4); + a[0] = this.pos[0] - 4; + a[1] = this.pos[1] - g.NODE_TITLE_HEIGHT; + a[2] = this.pos[0] + this.size[0] + 4; + a[3] = this.pos[1] + this.size[1] + c.NODE_TITLE_HEIGHT; + return a; + }; + h.prototype.isPointInsideNode = function(a, b, d) { + d = d || 0; + var f = this.graph && this.graph.isLive() ? 0 : 20; + if (this.flags.collapsed) { + if (n(a, b, this.pos[0] - d, this.pos[1] - g.NODE_TITLE_HEIGHT - d, g.NODE_COLLAPSED_WIDTH + 2 * d, g.NODE_TITLE_HEIGHT + 2 * d)) { + return !0; + } + } else { + if (this.pos[0] - 4 - d < a && this.pos[0] + this.size[0] + 4 + d > a && this.pos[1] - f - d < b && this.pos[1] + this.size[1] + d > b) { + return !0; + } + } + return !1; + }; + h.prototype.getSlotInPosition = function(a, b) { + if (this.inputs) { + for (var d = 0, f = this.inputs.length; d < f; ++d) { + var g = this.inputs[d], e = this.getConnectionPos(!0, d); + if (n(a, b, e[0] - 10, e[1] - 5, 20, 10)) { + return {input:g, slot:d, link_pos:e, locked:g.locked}; + } + } + } + if (this.outputs) { + for (d = 0, f = this.outputs.length; d < f; ++d) { + if (g = this.outputs[d], e = this.getConnectionPos(!1, d), n(a, b, e[0] - 10, e[1] - 5, 20, 10)) { + return {output:g, slot:d, link_pos:e, locked:g.locked}; + } + } + } + return null; + }; + h.prototype.findInputSlot = function(a) { + if (!this.inputs) { + return -1; + } + for (var b = 0, d = this.inputs.length; b < d; ++b) { + if (a == this.inputs[b].name) { + return b; + } + } + return -1; + }; + h.prototype.findOutputSlot = function(a) { + if (!this.outputs) { + return -1; + } + for (var b = 0, d = this.outputs.length; b < d; ++b) { + if (a == this.outputs[b].name) { + return b; + } + } + return -1; + }; + h.prototype.connect = function(a, b, d) { + d = d || 0; + if (a.constructor === String) { + if (a = this.findOutputSlot(a), -1 == a) { + return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + } + } else { + if (!this.outputs || a >= this.outputs.length) { + return g.debug && console.log("Connect: Error, slot number not found"), !1; + } + } + b && b.constructor === Number && (b = this.graph.getNodeById(b)); + if (!b) { + throw "Node not found"; + } + if (b == this) { + return !1; + } + if (d.constructor === String) { + if (d = b.findInputSlot(d), -1 == d) { + return g.debug && console.log("Connect: Error, no slot of name " + d), !1; + } + } else { + if (d === g.EVENT) { + return !1; + } + if (!b.inputs || d >= b.inputs.length) { + return g.debug && console.log("Connect: Error, slot number not found"), !1; + } + } + null != b.inputs[d].link && b.disconnectInput(d); + this.setDirtyCanvas(!1, !0); + this.graph.connectionChange(this); + var f = this.outputs[a]; + if (b.onConnectInput && !1 === b.onConnectInput(d, f.type, f)) { + return !1; + } + var e = b.inputs[d]; + if (g.isValidConnection(f.type, e.type)) { + var c = {id:this.graph.last_link_id++, type:e.type, origin_id:this.id, origin_slot:a, target_id:b.id, target_slot:d}; + this.graph.links[c.id] = c; + null == f.links && (f.links = []); + f.links.push(c.id); + b.inputs[d].link = c.id; + if (this.onConnectionsChange) { + this.onConnectionsChange(g.OUTPUT, a, !0, c, f); + } + if (b.onConnectionsChange) { + b.onConnectionsChange(g.INPUT, d, !0, c, e); + } + } + this.setDirtyCanvas(!1, !0); + this.graph.connectionChange(this); + return !0; + }; + h.prototype.disconnectOutput = function(a, b) { + if (a.constructor === String) { + if (a = this.findOutputSlot(a), -1 == a) { + return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + } + } else { + if (!this.outputs || a >= this.outputs.length) { + return g.debug && console.log("Connect: Error, slot number not found"), !1; + } + } + var d = this.outputs[a]; + if (!d.links || 0 == d.links.length) { + return !1; + } + if (b) { + b.constructor === Number && (b = this.graph.getNodeById(b)); + if (!b) { + throw "Target Node not found"; + } + for (var f = 0, e = d.links.length; f < e; f++) { + var c = d.links[f], k = this.graph.links[c]; + if (k.target_id == b.id) { + d.links.splice(f, 1); + var l = b.inputs[k.target_slot]; + l.link = null; + delete this.graph.links[c]; + if (b.onConnectionsChange) { + b.onConnectionsChange(g.INPUT, k.target_slot, !1, k, l); + } + if (this.onConnectionsChange) { + this.onConnectionsChange(g.OUTPUT, a, !1, k, d); + } + break; + } + } + } else { + f = 0; + for (e = d.links.length; f < e; f++) { + if (c = d.links[f], k = this.graph.links[c]) { + if (b = this.graph.getNodeById(k.target_id)) { + if (l = b.inputs[k.target_slot], l.link = null, b.onConnectionsChange) { + b.onConnectionsChange(g.INPUT, k.target_slot, !1, k, l); + } + } + delete this.graph.links[c]; + if (this.onConnectionsChange) { + this.onConnectionsChange(g.OUTPUT, a, !1, k, d); + } + } + } + d.links = null; + } + this.setDirtyCanvas(!1, !0); + this.graph.connectionChange(this); + return !0; + }; + h.prototype.disconnectInput = function(a) { + if (a.constructor === String) { + if (a = this.findInputSlot(a), -1 == a) { + return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + } + } else { + if (!this.inputs || a >= this.inputs.length) { + return g.debug && console.log("Connect: Error, slot number not found"), !1; + } + } + var b = this.inputs[a]; + if (!b) { + return !1; + } + var d = this.inputs[a].link; + this.inputs[a].link = null; + var f = this.graph.links[d]; + if (f) { + var e = this.graph.getNodeById(f.origin_id); + if (!e) { + return !1; + } + var c = e.outputs[f.origin_slot]; + if (!c || !c.links || 0 == c.links.length) { + return !1; + } + for (var k = 0, l = c.links.length; k < l; k++) { + if (d = c.links[k], f.target_id == this.id) { + c.links.splice(k, 1); + break; + } + } + delete this.graph.links[d]; + if (this.onConnectionsChange) { + this.onConnectionsChange(g.INPUT, a, !1, f, b); + } + if (e.onConnectionsChange) { + e.onConnectionsChange(g.OUTPUT, k, !1, f, c); + } + } + this.setDirtyCanvas(!1, !0); + this.graph.connectionChange(this); + return !0; + }; + h.prototype.getConnectionPos = function(a, b) { + return this.flags.collapsed ? a ? [this.pos[0], this.pos[1] - 0.5 * g.NODE_TITLE_HEIGHT] : [this.pos[0] + g.NODE_COLLAPSED_WIDTH, this.pos[1] - 0.5 * g.NODE_TITLE_HEIGHT] : a && -1 == b ? [this.pos[0] + 10, this.pos[1] + 10] : a && this.inputs.length > b && this.inputs[b].pos ? [this.pos[0] + this.inputs[b].pos[0], this.pos[1] + this.inputs[b].pos[1]] : !a && this.outputs.length > b && this.outputs[b].pos ? [this.pos[0] + this.outputs[b].pos[0], this.pos[1] + this.outputs[b].pos[1]] : a ? [this.pos[0], + this.pos[1] + 10 + b * g.NODE_SLOT_HEIGHT] : [this.pos[0] + this.size[0] + 1, this.pos[1] + 10 + b * g.NODE_SLOT_HEIGHT]; + }; + h.prototype.alignToGrid = function() { + this.pos[0] = g.CANVAS_GRID_SIZE * Math.round(this.pos[0] / g.CANVAS_GRID_SIZE); + this.pos[1] = g.CANVAS_GRID_SIZE * Math.round(this.pos[1] / g.CANVAS_GRID_SIZE); + }; + h.prototype.trace = function(a) { + this.console || (this.console = []); + this.console.push(a); + this.console.length > h.MAX_CONSOLE && this.console.shift(); + this.graph.onNodeTrace(this, a); + }; + h.prototype.setDirtyCanvas = function(a, b) { + this.graph && this.graph.sendActionToCanvas("setDirty", [a, b]); + }; + h.prototype.loadImage = function(a) { + var b = new Image; + b.src = g.node_images_path + a; + b.ready = !1; + var d = this; + b.onload = function() { + this.ready = !0; + d.setDirtyCanvas(!0); + }; + return b; + }; + h.prototype.captureInput = function(a) { + if (this.graph && this.graph.list_of_graphcanvas) { + for (var b = this.graph.list_of_graphcanvas, d = 0; d < b.length; ++d) { + var f = b[d]; + if (a || f.node_capturing_input == this) { + f.node_capturing_input = a ? this : null; + } + } + } + }; + h.prototype.collapse = function() { + this.flags.collapsed = this.flags.collapsed ? !1 : !0; + this.setDirtyCanvas(!0, !0); + }; + h.prototype.pin = function(a) { + this.flags.pinned = void 0 === a ? !this.flags.pinned : a; + }; + h.prototype.localToScreen = function(a, b, d) { + return [(a + this.pos[0]) * d.scale + d.offset[0], (b + this.pos[1]) * d.scale + d.offset[1]]; + }; + v.LGraphCanvas = g.LGraphCanvas = e; + e.link_type_colors = {"-1":"#F85", number:"#AAC", node:"#DCA"}; + e.prototype.clear = function() { + this.fps = this.render_time = this.last_draw_time = this.frame = 0; + this.scale = 1; + this.offset = [0, 0]; + this.selected_nodes = {}; + this.connecting_node = this.node_capturing_input = this.node_over = this.node_dragged = null; + this.dirty_bgcanvas = this.dirty_canvas = !0; + this.node_in_panel = this.dirty_area = null; + this.last_mouse = [0, 0]; + this.last_mouseclick = 0; + if (this.onClear) { + this.onClear(); + } + }; + e.prototype.setGraph = function(a, b) { + this.graph != a && (b || this.clear(), !a && this.graph ? this.graph.detachCanvas(this) : (a.attachCanvas(this), this.setDirty(!0, !0))); + }; + e.prototype.openSubgraph = function(a) { + if (!a) { + throw "graph cannot be null"; + } + if (this.graph == a) { + throw "graph cannot be the same"; + } + this.clear(); + this.graph && (this._graph_stack || (this._graph_stack = []), this._graph_stack.push(this.graph)); + a.attachCanvas(this); + this.setDirty(!0, !0); + }; + e.prototype.closeSubgraph = function() { + if (this._graph_stack && 0 != this._graph_stack.length) { + var a = this._graph_stack.pop(); + this.selected_nodes = {}; + a.attachCanvas(this); + this.setDirty(!0, !0); + } + }; + e.prototype.setCanvas = function(a, b) { + if (a && a.constructor === String && (a = document.getElementById(a), !a)) { + throw "Error creating LiteGraph canvas: Canvas not found"; + } + if (a !== this.canvas && (!a && this.canvas && (b || this.unbindEvents()), this.canvas = a)) { + a.className += " lgraphcanvas"; + a.data = this; + this.bgcanvas = null; + this.bgcanvas || (this.bgcanvas = document.createElement("canvas"), this.bgcanvas.width = this.canvas.width, this.bgcanvas.height = this.canvas.height); + if (null == a.getContext) { + if ("canvas" != a.localName) { + throw "Element supplied for LGraphCanvas must be a element, you passed a " + a.localName; + } + throw "This browser doesnt support Canvas"; + } + null == (this.ctx = a.getContext("2d")) && (console.warn("This canvas seems to be WebGL, enabling WebGL renderer"), this.enableWebGL()); + this._mousemove_callback = this.processMouseMove.bind(this); + this._mouseup_callback = this.processMouseUp.bind(this); + b || this.bindEvents(); + } + }; + e.prototype._doNothing = function(a) { + a.preventDefault(); + return !1; + }; + e.prototype._doReturnTrue = function(a) { + a.preventDefault(); + return !0; + }; + e.prototype.bindEvents = function() { + if (this._events_binded) { + console.warn("LGraphCanvas: events already binded"); + } else { + var a = this.canvas; + this._mousedown_callback = this.processMouseDown.bind(this); + this._mousewheel_callback = this.processMouseWheel.bind(this); + a.addEventListener("mousedown", this._mousedown_callback, !0); + a.addEventListener("mousemove", this._mousemove_callback); + a.addEventListener("mousewheel", this._mousewheel_callback, !1); + a.addEventListener("contextmenu", this._doNothing); + a.addEventListener("DOMMouseScroll", this._mousewheel_callback, !1); + a.addEventListener("touchstart", this.touchHandler, !0); + a.addEventListener("touchmove", this.touchHandler, !0); + a.addEventListener("touchend", this.touchHandler, !0); + a.addEventListener("touchcancel", this.touchHandler, !0); + this._key_callback = this.processKey.bind(this); + a.addEventListener("keydown", this._key_callback); + a.addEventListener("keyup", this._key_callback); + this._ondrop_callback = this.processDrop.bind(this); + a.addEventListener("dragover", this._doNothing, !1); + a.addEventListener("dragend", this._doNothing, !1); + a.addEventListener("drop", this._ondrop_callback, !1); + a.addEventListener("dragenter", this._doReturnTrue, !1); + this._events_binded = !0; + } + }; + e.prototype.unbindEvents = function() { + this._events_binded ? (this.canvas.removeEventListener("mousedown", this._mousedown_callback), this.canvas.removeEventListener("mousewheel", this._mousewheel_callback), this.canvas.removeEventListener("DOMMouseScroll", this._mousewheel_callback), this.canvas.removeEventListener("keydown", this._key_callback), this.canvas.removeEventListener("keyup", this._key_callback), this.canvas.removeEventListener("contextmenu", this._doNothing), this.canvas.removeEventListener("drop", this._ondrop_callback), + this.canvas.removeEventListener("dragenter", this._doReturnTrue), this.canvas.removeEventListener("touchstart", this.touchHandler), this.canvas.removeEventListener("touchmove", this.touchHandler), this.canvas.removeEventListener("touchend", this.touchHandler), this.canvas.removeEventListener("touchcancel", this.touchHandler), this._ondrop_callback = this._key_callback = this._mousewheel_callback = this._mousedown_callback = null, this._events_binded = !1) : console.warn("LGraphCanvas: no events binded"); + }; + e.getFileExtension = function(a) { + var b = a.indexOf("?"); + -1 != b && (a = a.substr(0, b)); + b = a.lastIndexOf("."); + return -1 == b ? "" : a.substr(b + 1).toLowerCase(); + }; + e.prototype.enableWebGL = function() { + this.gl = this.ctx = enableWebGLCanvas(this.canvas); + this.ctx.webgl = !0; + this.bgcanvas = this.canvas; + this.bgctx = this.gl; + }; + e.prototype.setDirty = function(a, b) { + a && (this.dirty_canvas = !0); + b && (this.dirty_bgcanvas = !0); + }; + e.prototype.getCanvasWindow = function() { + if (!this.canvas) { + return window; + } + var a = this.canvas.ownerDocument; + return a.defaultView || a.parentWindow; + }; + e.prototype.startRendering = function() { + function a() { + this.pause_rendering || this.draw(); + var b = this.getCanvasWindow(); + this.is_rendering && b.requestAnimationFrame(a.bind(this)); + } + this.is_rendering || (this.is_rendering = !0, a.call(this)); + }; + e.prototype.stopRendering = function() { + this.is_rendering = !1; + }; + e.prototype.processMouseDown = function(a) { + if (this.graph) { + this.adjustMouseEvent(a); + var b = this.getCanvasWindow(); + e.active_canvas = this; + this.canvas.removeEventListener("mousemove", this._mousemove_callback); + b.document.addEventListener("mousemove", this._mousemove_callback, !0); + b.document.addEventListener("mouseup", this._mouseup_callback, !0); + var d = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); + g.closeAllContextMenus(b); + if (1 == a.which) { + if (!(a.shiftKey || d && this.selected_nodes[d.id])) { + var f = []; + for (k in this.selected_nodes) { + this.selected_nodes[k] != d && f.push(this.selected_nodes[k]); + } + for (k in f) { + this.processNodeDeselected(f[k]); + } + } + f = !1; + if (d && this.allow_interaction) { + this.live_mode || d.flags.pinned || this.bringToFront(d); + var c = !1; + if (!this.connecting_node && !d.flags.collapsed && !this.live_mode) { + if (d.outputs) { + var k = 0; + for (var q = d.outputs.length; k < q; ++k) { + var l = d.outputs[k], w = d.getConnectionPos(!1, k); + if (n(a.canvasX, a.canvasY, w[0] - 10, w[1] - 5, 20, 10)) { + this.connecting_node = d; + this.connecting_output = l; + this.connecting_pos = d.getConnectionPos(!1, k); + this.connecting_slot = k; + c = !0; + break; + } + } + } + if (d.inputs) { + for (k = 0, q = d.inputs.length; k < q; ++k) { + l = d.inputs[k], w = d.getConnectionPos(!0, k), n(a.canvasX, a.canvasY, w[0] - 10, w[1] - 5, 20, 10) && null !== l.link && (d.disconnectInput(k), c = this.dirty_bgcanvas = !0); + } + } + !c && n(a.canvasX, a.canvasY, d.pos[0] + d.size[0] - 5, d.pos[1] + d.size[1] - 5, 5, 5) && (this.resizing_node = d, this.canvas.style.cursor = "se-resize", c = !0); + } + !c && n(a.canvasX, a.canvasY, d.pos[0], d.pos[1] - g.NODE_TITLE_HEIGHT, g.NODE_TITLE_HEIGHT, g.NODE_TITLE_HEIGHT) && (d.collapse(), c = !0); + if (!c) { + k = !1; + if (300 > g.getTime() - this.last_mouseclick && this.selected_nodes[d.id]) { + if (d.onDblClick) { + d.onDblClick(a); + } + this.processNodeDblClicked(d); + k = !0; + } + d.onMouseDown && d.onMouseDown(a, [a.canvasX - d.pos[0], a.canvasY - d.pos[1]]) ? k = !0 : this.live_mode && (k = f = !0); + k || (this.allow_dragnodes && (this.node_dragged = d), this.selected_nodes[d.id] || this.processNodeSelected(d, a)); + this.dirty_canvas = !0; + } + } else { + f = !0; + } + f && this.allow_dragcanvas && (this.dragging_canvas = !0); + } else { + 2 != a.which && 3 == a.which && this.processContextMenu(d, a); + } + this.last_mouse[0] = a.localX; + this.last_mouse[1] = a.localY; + this.last_mouseclick = g.getTime(); + this.canvas_mouse = [a.canvasX, a.canvasY]; + this.graph.change(); + (!b.document.activeElement || "input" != b.document.activeElement.nodeName.toLowerCase() && "textarea" != b.document.activeElement.nodeName.toLowerCase()) && a.preventDefault(); + a.stopPropagation(); + if (this.onMouseDown) { + this.onMouseDown(a); + } + return !1; + } + }; + e.prototype.processMouseMove = function(a) { + this.autoresize && this.resize(); + if (this.graph) { + e.active_canvas = this; + this.adjustMouseEvent(a); + var b = [a.localX, a.localY], d = [b[0] - this.last_mouse[0], b[1] - this.last_mouse[1]]; + this.last_mouse = b; + this.canvas_mouse = [a.canvasX, a.canvasY]; + if (this.dragging_canvas) { + this.offset[0] += d[0] / this.scale, this.offset[1] += d[1] / this.scale, this.dirty_bgcanvas = this.dirty_canvas = !0; + } else { + if (this.allow_interaction) { + this.connecting_node && (this.dirty_canvas = !0); + b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); + for (var f = 0, c = this.graph._nodes.length; f < c; ++f) { + if (this.graph._nodes[f].mouseOver && b != this.graph._nodes[f]) { + this.graph._nodes[f].mouseOver = !1; + if (this.node_over && this.node_over.onMouseLeave) { + this.node_over.onMouseLeave(a); + } + this.node_over = null; + this.dirty_canvas = !0; + } + } + if (b) { + if (!b.mouseOver && (b.mouseOver = !0, this.node_over = b, this.dirty_canvas = !0, b.onMouseEnter)) { + b.onMouseEnter(a); + } + if (b.onMouseMove) { + b.onMouseMove(a); + } + if (this.connecting_node && (c = this._highlight_input || [0, 0], !this.isOverNodeBox(b, a.canvasX, a.canvasY))) { + var k = this.isOverNodeInput(b, a.canvasX, a.canvasY, c); + -1 != k && b.inputs[k] ? g.isValidConnection(this.connecting_output.type, b.inputs[k].type) && (this._highlight_input = c) : this._highlight_input = null; + } + n(a.canvasX, a.canvasY, b.pos[0] + b.size[0] - 5, b.pos[1] + b.size[1] - 5, 5, 5) ? this.canvas.style.cursor = "se-resize" : this.canvas.style.cursor = null; + } else { + this.canvas.style.cursor = null; + } + if (this.node_capturing_input && this.node_capturing_input != b && this.node_capturing_input.onMouseMove) { + this.node_capturing_input.onMouseMove(a); + } + if (this.node_dragged && !this.live_mode) { + for (f in this.selected_nodes) { + b = this.selected_nodes[f], b.pos[0] += d[0] / this.scale, b.pos[1] += d[1] / this.scale; + } + this.dirty_bgcanvas = this.dirty_canvas = !0; + } + this.resizing_node && !this.live_mode && (this.resizing_node.size[0] += d[0] / this.scale, this.resizing_node.size[1] += d[1] / this.scale, d = Math.max(this.resizing_node.inputs ? this.resizing_node.inputs.length : 0, this.resizing_node.outputs ? this.resizing_node.outputs.length : 0), this.resizing_node.size[1] < d * g.NODE_SLOT_HEIGHT + 4 && (this.resizing_node.size[1] = d * g.NODE_SLOT_HEIGHT + 4), this.resizing_node.size[0] < g.NODE_MIN_WIDTH && (this.resizing_node.size[0] = g.NODE_MIN_WIDTH), + this.canvas.style.cursor = "se-resize", this.dirty_bgcanvas = this.dirty_canvas = !0); + } + } + a.preventDefault(); + return !1; + } + }; + e.prototype.processMouseUp = function(a) { + if (this.graph) { + var b = this.getCanvasWindow().document; + e.active_canvas = this; + b.removeEventListener("mousemove", this._mousemove_callback, !0); + this.canvas.addEventListener("mousemove", this._mousemove_callback, !0); + b.removeEventListener("mouseup", this._mouseup_callback, !0); + this.adjustMouseEvent(a); + if (1 == a.which) { + if (this.connecting_node) { + this.dirty_bgcanvas = this.dirty_canvas = !0; + if (b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes)) { + if (this.connecting_output.type == g.EVENT && this.isOverNodeBox(b, a.canvasX, a.canvasY)) { + this.connecting_node.connect(this.connecting_slot, b, g.EVENT); + } else { + var d = this.isOverNodeInput(b, a.canvasX, a.canvasY); + -1 != d ? this.connecting_node.connect(this.connecting_slot, b, d) : (d = b.getInputInfo(0), this.connecting_output.type == g.EVENT ? this.connecting_node.connect(this.connecting_slot, b, g.EVENT) : d && !d.link && d.type == this.connecting_output.type && this.connecting_node.connect(this.connecting_slot, b, 0)); + } + } + this.connecting_node = this.connecting_pos = this.connecting_output = null; + this.connecting_slot = -1; + } else { + if (this.resizing_node) { + this.dirty_bgcanvas = this.dirty_canvas = !0, this.resizing_node = null; + } else { + if (this.node_dragged) { + this.dirty_bgcanvas = this.dirty_canvas = !0, this.node_dragged.pos[0] = Math.round(this.node_dragged.pos[0]), this.node_dragged.pos[1] = Math.round(this.node_dragged.pos[1]), this.graph.config.align_to_grid && this.node_dragged.alignToGrid(), this.node_dragged = null; + } else { + this.dirty_canvas = !0; + this.dragging_canvas = !1; + if (this.node_over && this.node_over.onMouseUp) { + this.node_over.onMouseUp(a, [a.canvasX - this.node_over.pos[0], a.canvasY - this.node_over.pos[1]]); + } + if (this.node_capturing_input && this.node_capturing_input.onMouseUp) { + this.node_capturing_input.onMouseUp(a, [a.canvasX - this.node_capturing_input.pos[0], a.canvasY - this.node_capturing_input.pos[1]]); + } + } + } + } + } else { + 2 == a.which ? (this.dirty_canvas = !0, this.dragging_canvas = !1) : 3 == a.which && (this.dirty_canvas = !0, this.dragging_canvas = !1); + } + this.graph.change(); + a.stopPropagation(); + a.preventDefault(); + return !1; + } + }; + e.prototype.processMouseWheel = function(a) { + if (this.graph && this.allow_dragcanvas) { + var b = null != a.wheelDeltaY ? a.wheelDeltaY : -60 * a.detail; + this.adjustMouseEvent(a); + var d = this.scale; + 0 < b ? d *= 1.1 : 0 > b && (d *= 1 / 1.1); + this.setZoom(d, [a.localX, a.localY]); + this.graph.change(); + a.preventDefault(); + return !1; + } + }; + e.prototype.isOverNodeBox = function(a, b, d) { + var f = g.NODE_TITLE_HEIGHT; + return n(b, d, a.pos[0] + 2, a.pos[1] + 2 - f, f - 4, f - 4) ? !0 : !1; + }; + e.prototype.isOverNodeInput = function(a, b, d, f) { + if (a.inputs) { + for (var g = 0, e = a.inputs.length; g < e; ++g) { + var c = a.getConnectionPos(!0, g); + if (n(b, d, c[0] - 10, c[1] - 5, 20, 10)) { + return f && (f[0] = c[0], f[1] = c[1]), g; + } + } + } + return -1; + }; + e.prototype.processKey = function(a) { + if (this.graph) { + var b = !1; + if ("input" != a.target.localName) { + if ("keydown" == a.type) { + console.log(a); + 65 == a.keyCode && a.ctrlKey && (this.selectAllNodes(), b = !0); + if ("KeyC" == a.code && (a.metaKey || a.ctrlKey) && !a.shiftKey && this.selected_nodes) { + var d = [], f; + for (f in this.selected_nodes) { + d.push(this.selected_nodes[f].serialize()); + } + localStorage.setItem("litegrapheditor_clipboard", JSON.stringify(d)); + b = !0; + } + if ("KeyV" == a.code && (a.metaKey || a.ctrlKey) && !a.shiftKey && (d = localStorage.getItem("litegrapheditor_clipboard"))) { + for (d = JSON.parse(d), f = 0; f < d.length; ++f) { + var e = d[f], c = g.createNode(e.type); + c && (c.configure(e), c.pos[0] += 5, c.pos[1] += 5, this.graph.add(c)); + } + } + if (46 == a.keyCode || 8 == a.keyCode) { + this.deleteSelectedNodes(), b = !0; + } + if (this.selected_nodes) { + for (f in this.selected_nodes) { + if (this.selected_nodes[f].onKeyDown) { + this.selected_nodes[f].onKeyDown(a); + } + } + } + } else { + if ("keyup" == a.type && this.selected_nodes) { + for (f in this.selected_nodes) { + if (this.selected_nodes[f].onKeyUp) { + this.selected_nodes[f].onKeyUp(a); + } + } + } + } + this.graph.change(); + if (b) { + return a.preventDefault(), !1; + } + } + } + }; + e.prototype.processDrop = function(a) { + a.preventDefault(); + this.adjustMouseEvent(a); + var b = [a.canvasX, a.canvasY], d = this.graph.getNodeOnPos(b[0], b[1]); + if (d) { + if ((d.onDropFile || d.onDropData) && (b = a.dataTransfer.files) && b.length) { + for (var f = 0; f < b.length; f++) { + var g = a.dataTransfer.files[0], c = g.name; + e.getFileExtension(c); + if (d.onDropFile) { + d.onDropFile(g); + } + if (d.onDropData) { + var k = new FileReader; + k.onload = function(a) { + d.onDropData(a.target.result, c, g); + }; + var l = g.type.split("/")[0]; + "text" == l || "" == l ? k.readAsText(g) : "image" == l ? k.readAsDataURL(g) : k.readAsArrayBuffer(g); + } + } + } + return d.onDropItem && d.onDropItem(event) ? !0 : this.onDropItem ? this.onDropItem(event) : !1; + } + b = null; + this.onDropItem && (b = this.onDropItem(event)); + b || this.checkDropItem(a); + }; + e.prototype.checkDropItem = function(a) { + if (a.dataTransfer.files.length) { + var b = a.dataTransfer.files[0], d = e.getFileExtension(b.name).toLowerCase(); + if (d = g.node_types_by_file_extension[d]) { + if (d = g.createNode(d.type), d.pos = [a.canvasX, a.canvasY], this.graph.add(d), d.onDropFile) { + d.onDropFile(b); + } + } + } + }; + e.prototype.processNodeSelected = function(a, b) { + a.selected = !0; + if (a.onSelected) { + a.onSelected(); + } + b && b.shiftKey || (this.selected_nodes = {}); + this.selected_nodes[a.id] = a; + this.dirty_canvas = !0; + if (this.onNodeSelected) { + this.onNodeSelected(a); + } + }; + e.prototype.processNodeDeselected = function(a) { + a.selected = !1; + if (a.onDeselected) { + a.onDeselected(); + } + delete this.selected_nodes[a.id]; + if (this.onNodeDeselected) { + this.onNodeDeselected(a); + } + this.dirty_canvas = !0; + }; + e.prototype.processNodeDblClicked = function(a) { + if (this.onShowNodePanel) { + this.onShowNodePanel(a); + } + if (this.onNodeDblClicked) { + this.onNodeDblClicked(a); + } + this.setDirty(!0); + }; + e.prototype.selectNode = function(a) { + this.deselectAllNodes(); + if (a) { + if (!a.selected && a.onSelected) { + a.onSelected(); + } + a.selected = !0; + this.selected_nodes[a.id] = a; + this.setDirty(!0); + } + }; + e.prototype.selectAllNodes = function() { + for (var a = 0; a < this.graph._nodes.length; ++a) { + var b = this.graph._nodes[a]; + if (!b.selected && b.onSelected) { + b.onSelected(); + } + b.selected = !0; + this.selected_nodes[this.graph._nodes[a].id] = b; + } + this.setDirty(!0); + }; + e.prototype.deselectAllNodes = function() { + for (var a in this.selected_nodes) { + var b = this.selected_nodes; + if (b.onDeselected) { + b.onDeselected(); + } + b.selected = !1; + } + this.selected_nodes = {}; + this.setDirty(!0); + }; + e.prototype.deleteSelectedNodes = function() { + for (var a in this.selected_nodes) { + this.graph.remove(this.selected_nodes[a]); + } + this.selected_nodes = {}; + this.setDirty(!0); + }; + e.prototype.centerOnNode = function(a) { + this.offset[0] = -a.pos[0] - 0.5 * a.size[0] + 0.5 * this.canvas.width / this.scale; + this.offset[1] = -a.pos[1] - 0.5 * a.size[1] + 0.5 * this.canvas.height / this.scale; + this.setDirty(!0, !0); + }; + e.prototype.adjustMouseEvent = function(a) { + var b = this.canvas.getBoundingClientRect(); + a.localX = a.pageX - b.left; + a.localY = a.pageY - b.top; + a.canvasX = a.localX / this.scale - this.offset[0]; + a.canvasY = a.localY / this.scale - this.offset[1]; + }; + e.prototype.setZoom = function(a, b) { + b || (b = [0.5 * this.canvas.width, 0.5 * this.canvas.height]); + var d = this.convertOffsetToCanvas(b); + this.scale = a; + this.scale > this.max_zoom ? this.scale = this.max_zoom : this.scale < this.min_zoom && (this.scale = this.min_zoom); + a = this.convertOffsetToCanvas(b); + d = [a[0] - d[0], a[1] - d[1]]; + this.offset[0] += d[0]; + this.offset[1] += d[1]; + this.dirty_bgcanvas = this.dirty_canvas = !0; + }; + e.prototype.convertOffsetToCanvas = function(a) { + return [a[0] / this.scale - this.offset[0], a[1] / this.scale - this.offset[1]]; + }; + e.prototype.convertCanvasToOffset = function(a) { + return [(a[0] + this.offset[0]) * this.scale, (a[1] + this.offset[1]) * this.scale]; + }; + e.prototype.convertEventToCanvas = function(a) { + var b = this.canvas.getClientRects()[0]; + return this.convertOffsetToCanvas([a.pageX - b.left, a.pageY - b.top]); + }; + e.prototype.bringToFront = function(a) { + var b = this.graph._nodes.indexOf(a); + -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.push(a)); + }; + e.prototype.sendToBack = function(a) { + var b = this.graph._nodes.indexOf(a); + -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.unshift(a)); + }; + e.prototype.computeVisibleNodes = function() { + for (var a = new Float32Array(4), b = [], d = 0, f = this.graph._nodes.length; d < f; ++d) { + var g = this.graph._nodes[d]; + (!this.live_mode || g.onDrawBackground || g.onDrawForeground) && u(this.visible_area, g.getBounding(a)) && b.push(g); + } + return b; + }; + e.prototype.draw = function(a, b) { + if (this.canvas) { + var d = g.getTime(); + this.render_time = 0.001 * (d - this.last_draw_time); + this.last_draw_time = d; + if (this.graph) { + var f = [-this.offset[0], -this.offset[1]], e = [f[0] + this.canvas.width / this.scale, f[1] + this.canvas.height / this.scale]; + this.visible_area = new Float32Array([f[0], f[1], e[0], e[1]]); + } + (this.dirty_bgcanvas || b || this.always_render_background || this.graph && this.graph._last_trigger_time && 1000 > d - this.graph._last_trigger_time) && this.drawBackCanvas(); + (this.dirty_canvas || a) && this.drawFrontCanvas(); + this.fps = this.render_time ? 1.0 / this.render_time : 0; + this.frame += 1; + } + }; + e.prototype.drawFrontCanvas = function() { + this.ctx || (this.ctx = this.bgcanvas.getContext("2d")); + var a = this.ctx; + if (a) { + a.start2D && a.start2D(); + var b = this.canvas; + a.restore(); + a.setTransform(1, 0, 0, 1, 0, 0); + this.dirty_area && (a.save(), a.beginPath(), a.rect(this.dirty_area[0], this.dirty_area[1], this.dirty_area[2], this.dirty_area[3]), a.clip()); + this.clear_background && a.clearRect(0, 0, b.width, b.height); + this.bgcanvas == this.canvas ? this.drawBackCanvas() : a.drawImage(this.bgcanvas, 0, 0); + if (this.onRender) { + this.onRender(b, a); + } + this.show_info && this.renderInfo(a); + if (this.graph) { + a.save(); + a.scale(this.scale, this.scale); + a.translate(this.offset[0], this.offset[1]); + this.visible_nodes = b = this.computeVisibleNodes(); + for (var d = 0; d < b.length; ++d) { + var f = b[d]; + a.save(); + a.translate(f.pos[0], f.pos[1]); + this.drawNode(f, a); + a.restore(); + } + this.graph.config.links_ontop && (this.live_mode || this.drawConnections(a)); + if (null != this.connecting_pos) { + a.lineWidth = this.connections_width; + switch(this.connecting_output.type) { + case g.EVENT: + b = "#F85"; + break; + default: + b = "#AFA"; + } + this.renderLink(a, this.connecting_pos, [this.canvas_mouse[0], this.canvas_mouse[1]], null, !1, null, b); + a.beginPath(); + this.connecting_output.type === g.EVENT ? a.rect(this.connecting_pos[0] - 6 + 0.5, this.connecting_pos[1] - 5 + 0.5, 14, 10) : a.arc(this.connecting_pos[0], this.connecting_pos[1], 4, 0, 2 * Math.PI); + a.fill(); + a.fillStyle = "#ffcc00"; + this._highlight_input && (a.beginPath(), a.arc(this._highlight_input[0], this._highlight_input[1], 6, 0, 2 * Math.PI), a.fill()); + } + a.restore(); + } + this.dirty_area && a.restore(); + a.finish2D && a.finish2D(); + this.dirty_canvas = !1; + } + }; + e.prototype.renderInfo = function(a, b, d) { + b = b || 0; + d = d || 0; + a.save(); + a.translate(b, d); + a.font = "10px Arial"; + a.fillStyle = "#888"; + this.graph ? (a.fillText("T: " + this.graph.globaltime.toFixed(2) + "s", 5, 13), a.fillText("I: " + this.graph.iteration, 5, 26), a.fillText("F: " + this.frame, 5, 39), a.fillText("FPS:" + this.fps.toFixed(2), 5, 52)) : a.fillText("No graph selected", 5, 13); + a.restore(); + }; + e.prototype.drawBackCanvas = function() { + var a = this.bgcanvas; + if (a.width != this.canvas.width || a.height != this.canvas.height) { + a.width = this.canvas.width, a.height = this.canvas.height; + } + this.bgctx || (this.bgctx = this.bgcanvas.getContext("2d")); + var b = this.bgctx; + b.start && b.start(); + this.clear_background && b.clearRect(0, 0, a.width, a.height); + this._graph_stack && this._graph_stack.length && (b.strokeStyle = this._graph_stack[this._graph_stack.length - 1].bgcolor, b.lineWidth = 10, b.strokeRect(1, 1, a.width - 2, a.height - 2), b.lineWidth = 1); + b.restore(); + b.setTransform(1, 0, 0, 1, 0, 0); + if (this.graph) { + b.save(); + b.scale(this.scale, this.scale); + b.translate(this.offset[0], this.offset[1]); + if (this.background_image && 0.5 < this.scale) { + b.globalAlpha = (1.0 - 0.5 / this.scale) * this.editor_alpha; + b.imageSmoothingEnabled = b.mozImageSmoothingEnabled = b.imageSmoothingEnabled = !1; + if (!this._bg_img || this._bg_img.name != this.background_image) { + this._bg_img = new Image; + this._bg_img.name = this.background_image; + this._bg_img.src = this.background_image; + var d = this; + this._bg_img.onload = function() { + d.draw(!0, !0); + }; + } + var f = null; + null == this._pattern && 0 < this._bg_img.width ? (f = b.createPattern(this._bg_img, "repeat"), this._pattern_img = this._bg_img, this._pattern = f) : f = this._pattern; + f && (b.fillStyle = f, b.fillRect(this.visible_area[0], this.visible_area[1], this.visible_area[2] - this.visible_area[0], this.visible_area[3] - this.visible_area[1]), b.fillStyle = "transparent"); + b.globalAlpha = 1.0; + b.imageSmoothingEnabled = b.mozImageSmoothingEnabled = b.imageSmoothingEnabled = !0; + } + if (this.onBackgroundRender) { + this.onBackgroundRender(a, b); + } + b.strokeStyle = "#235"; + b.strokeRect(0, 0, a.width, a.height); + this.render_connections_shadows ? (b.shadowColor = "#000", b.shadowOffsetX = 0, b.shadowOffsetY = 0, b.shadowBlur = 6) : b.shadowColor = "rgba(0,0,0,0)"; + this.live_mode || this.drawConnections(b); + b.shadowColor = "rgba(0,0,0,0)"; + b.restore(); + } + b.finish && b.finish(); + this.dirty_bgcanvas = !1; + this.dirty_canvas = !0; + }; + var k = new Float32Array(2); + e.prototype.drawNode = function(a, b) { + var d = a.color || g.NODE_DEFAULT_COLOR, f = !0; + if (a.flags.skip_title_render || a.graph.isLive()) { + f = !1; + } + a.mouseOver && (f = !0); + a.selected || (this.render_shadows ? (b.shadowColor = "rgba(0,0,0,0.5)", b.shadowOffsetX = 2, b.shadowOffsetY = 2, b.shadowBlur = 3) : b.shadowColor = "transparent"); + if (this.live_mode) { + if (!a.flags.collapsed && (b.shadowColor = "transparent", a.onDrawForeground)) { + a.onDrawForeground(b); + } + } else { + var e = this.editor_alpha; + b.globalAlpha = e; + var c = a._shape || g.BOX_SHAPE; + k.set(a.size); + a.flags.collapsed && (k[0] = g.NODE_COLLAPSED_WIDTH, k[1] = 0); + a.flags.clip_area && (b.save(), c == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, 0, k[0], k[1])) : c == g.ROUND_SHAPE ? b.roundRect(0, 0, k[0], k[1], 10) : c == g.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * k[0], 0.5 * k[1], 0.5 * k[0], 0, 2 * Math.PI)), b.clip()); + this.drawNodeShape(a, b, k, d, a.bgcolor, !f, a.selected); + b.shadowColor = "transparent"; + b.textAlign = "left"; + b.font = this.inner_text_font; + f = 0.6 < this.scale; + c = this.connecting_output; + if (!a.flags.collapsed) { + if (a.inputs) { + for (var q = 0; q < a.inputs.length; q++) { + var l = a.inputs[q]; + b.globalAlpha = e; + this.connecting_node && g.isValidConnection(l.type && c.type) && (b.globalAlpha = 0.4 * e); + b.fillStyle = null != l.link ? "#7F7" : "#AAA"; + var w = a.getConnectionPos(!0, q); + w[0] -= a.pos[0]; + w[1] -= a.pos[1]; + b.beginPath(); + l.type === g.EVENT ? b.rect(w[0] - 6 + 0.5, w[1] - 5 + 0.5, 14, 10) : b.arc(w[0], w[1], 4, 0, 2 * Math.PI); + b.fill(); + f && (l = null != l.label ? l.label : l.name) && (b.fillStyle = d, b.fillText(l, w[0] + 10, w[1] + 5)); + } + } + this.connecting_node && (b.globalAlpha = 0.4 * e); + b.lineWidth = 1; + b.textAlign = "right"; + b.strokeStyle = "black"; + if (a.outputs) { + for (q = 0; q < a.outputs.length; q++) { + if (l = a.outputs[q], w = a.getConnectionPos(!1, q), w[0] -= a.pos[0], w[1] -= a.pos[1], b.fillStyle = l.links && l.links.length ? "#7F7" : "#AAA", b.beginPath(), l.type === g.EVENT ? b.rect(w[0] - 6 + 0.5, w[1] - 5 + 0.5, 14, 10) : b.arc(w[0], w[1], 4, 0, 2 * Math.PI), b.fill(), b.stroke(), f && (l = null != l.label ? l.label : l.name)) { + b.fillStyle = d, b.fillText(l, w[0] - 10, w[1] + 5); + } + } + } + b.textAlign = "left"; + b.globalAlpha = 1; + if (a.onDrawForeground) { + a.onDrawForeground(b); + } + } + a.flags.clip_area && b.restore(); + b.globalAlpha = 1.0; + } + }; + e.prototype.drawNodeShape = function(a, b, d, f, e, c, k) { + b.strokeStyle = f || g.NODE_DEFAULT_COLOR; + b.fillStyle = e || g.NODE_DEFAULT_BGCOLOR; + e = g.NODE_TITLE_HEIGHT; + var l = a._shape || g.BOX_SHAPE; + l == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, c ? 0 : -e, d[0] + 1, c ? d[1] : d[1] + e), b.fill(), b.shadowColor = "transparent", k && (b.strokeStyle = "#CCC", b.strokeRect(-0.5, c ? -0.5 : -e + -0.5, d[0] + 2, c ? d[1] + 2 : d[1] + e + 2 - 1), b.strokeStyle = f)) : l == g.ROUND_SHAPE ? (b.roundRect(0, c ? 0 : -e, d[0], c ? d[1] : d[1] + e, 10), b.fill()) : l == g.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * d[0], 0.5 * d[1], 0.5 * d[0], 0, 2 * Math.PI), b.fill()); + b.shadowColor = "transparent"; + a.bgImage && a.bgImage.width && b.drawImage(a.bgImage, 0.5 * (d[0] - a.bgImage.width), 0.5 * (d[1] - a.bgImage.height)); + a.bgImageUrl && !a.bgImage && (a.bgImage = a.loadImage(a.bgImageUrl)); + if (a.onDrawBackground) { + a.onDrawBackground(b); + } + c || (b.fillStyle = f || g.NODE_DEFAULT_COLOR, f = b.globalAlpha, b.globalAlpha = 0.5 * f, l == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, -e, d[0] + 1, e), b.fill()) : l == g.ROUND_SHAPE && (b.roundRect(0, -e, d[0], e, 10, 0), b.fill()), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), l == g.ROUND_SHAPE || l == g.CIRCLE_SHAPE ? b.arc(0.5 * e, -0.5 * e, 0.5 * (e - 6), 0, 2 * Math.PI) : b.rect(3, -e + 3, e - 6, e - 6), b.fill(), b.globalAlpha = f, b.font = this.title_text_font, + (a = a.getTitle()) && 0.5 < this.scale && (b.fillStyle = g.NODE_TITLE_COLOR, b.fillText(a, 16, 13 - e))); + }; + e.prototype.drawNodeCollapsed = function(a, b, d, f) { + b.strokeStyle = d || g.NODE_DEFAULT_COLOR; + b.fillStyle = f || g.NODE_DEFAULT_BGCOLOR; + d = g.NODE_COLLAPSED_RADIUS; + f = a._shape || g.BOX_SHAPE; + f == g.CIRCLE_SHAPE ? (b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], d, 0, 2 * Math.PI), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], 0.5 * d, 0, 2 * Math.PI)) : f == g.ROUND_SHAPE ? (b.beginPath(), b.roundRect(0.5 * a.size[0] - d, 0.5 * a.size[1] - d, 2 * d, 2 * d, 5), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, + b.beginPath(), b.roundRect(0.5 * a.size[0] - 0.5 * d, 0.5 * a.size[1] - 0.5 * d, d, d, 2)) : (b.beginPath(), b.rect(0, 0, a.size[0], 2 * d), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.rect(0.5 * d, 0.5 * d, d, d)); + b.fill(); + }; + e.prototype.drawConnections = function(a) { + var b = g.getTime(); + a.lineWidth = this.connections_width; + a.fillStyle = "#AAA"; + a.strokeStyle = "#AAA"; + a.globalAlpha = this.editor_alpha; + for (var d = 0, f = this.graph._nodes.length; d < f; ++d) { + var e = this.graph._nodes[d]; + if (e.inputs && e.inputs.length) { + for (var c = 0; c < e.inputs.length; ++c) { + var k = e.inputs[c]; + if (k && null != k.link && (k = this.graph.links[k.link])) { + var l = this.graph.getNodeById(k.origin_id); + if (null != l) { + var w = k.origin_slot; + l = -1 == w ? [l.pos[0] + 10, l.pos[1] + 10] : l.getConnectionPos(!1, w); + this.renderLink(a, l, e.getConnectionPos(!0, c), k); + if (k && k._last_time && 1000 > b - k._last_time) { + w = 2.0 - 0.002 * (b - k._last_time); + var h = "rgba(255,255,255, " + w.toFixed(2) + ")"; + this.renderLink(a, l, e.getConnectionPos(!0, c), k, !0, w, h); + } + } + } + } + } + } + a.globalAlpha = 1; + }; + e.prototype.renderLink = function(a, b, d, f, c, k, q) { + if (this.highquality_render) { + var l = p(b, d); + this.render_connections_border && 0.6 < this.scale && (a.lineWidth = this.connections_width + 4); + !q && f && (q = e.link_type_colors[f.type]); + q || (q = this.default_link_color); + a.beginPath(); + this.render_curved_connections ? (a.moveTo(b[0], b[1]), a.bezierCurveTo(b[0] + 0.25 * l, b[1], d[0] - 0.25 * l, d[1], d[0], d[1])) : (a.moveTo(b[0] + 10, b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), d[1]), a.lineTo(d[0] - 10, d[1])); + this.render_connections_border && 0.6 < this.scale && !c && (a.strokeStyle = "rgba(0,0,0,0.5)", a.stroke()); + a.lineWidth = this.connections_width; + a.fillStyle = a.strokeStyle = q; + a.stroke(); + this.render_connection_arrows && 0.6 <= this.scale && this.render_connection_arrows && 0.6 < this.scale && (f = this.computeConnectionPoint(b, d, 0.5), c = this.computeConnectionPoint(b, d, 0.51), c = this.render_curved_connections ? -Math.atan2(c[0] - f[0], c[1] - f[1]) : d[1] > b[1] ? 0 : Math.PI, a.save(), a.translate(f[0], f[1]), a.rotate(c), a.beginPath(), a.moveTo(-5, -5), a.lineTo(0, 5), a.lineTo(5, -5), a.fill(), a.restore()); + if (k) { + for (k = 0; 5 > k; ++k) { + f = (0.001 * g.getTime() + 0.2 * k) % 1, f = this.computeConnectionPoint(b, d, f), a.beginPath(), a.arc(f[0], f[1], 5, 0, 2 * Math.PI), a.fill(); + } + } + } else { + a.beginPath(), a.moveTo(b[0], b[1]), a.lineTo(d[0], d[1]), a.stroke(); + } + }; + e.prototype.computeConnectionPoint = function(a, b, d) { + var f = p(a, b), g = [a[0] + 0.25 * f, a[1]]; + f = [b[0] - 0.25 * f, b[1]]; + var e = (1 - d) * (1 - d) * (1 - d), c = 3 * (1 - d) * (1 - d) * d, k = 3 * (1 - d) * d * d; + d *= d * d; + return [e * a[0] + c * g[0] + k * f[0] + d * b[0], e * a[1] + c * g[1] + k * f[1] + d * b[1]]; + }; + e.prototype.resize = function(a, b) { + a || b || (b = this.canvas.parentNode, a = b.offsetWidth, b = b.offsetHeight); + if (this.canvas.width != a || this.canvas.height != b) { + this.canvas.width = a, this.canvas.height = b, this.bgcanvas.width = this.canvas.width, this.bgcanvas.height = this.canvas.height, this.setDirty(!0, !0); + } + }; + e.prototype.switchLiveMode = function(a) { + if (a) { + var b = this, d = this.live_mode ? 1.1 : 0.9; + this.live_mode && (this.live_mode = !1, this.editor_alpha = 0.1); + var g = setInterval(function() { + b.editor_alpha *= d; + b.dirty_canvas = !0; + b.dirty_bgcanvas = !0; + 1 > d && 0.01 > b.editor_alpha && (clearInterval(g), 1 > d && (b.live_mode = !0)); + 1 < d && 0.99 < b.editor_alpha && (clearInterval(g), b.editor_alpha = 1); + }, 1); + } else { + this.live_mode = !this.live_mode, this.dirty_bgcanvas = this.dirty_canvas = !0; + } + }; + e.prototype.onNodeSelectionChange = function(a) { + }; + e.prototype.touchHandler = function(a) { + var b = a.changedTouches[0]; + switch(a.type) { + case "touchstart": + var d = "mousedown"; + break; + case "touchmove": + d = "mousemove"; + break; + case "touchend": + d = "mouseup"; + break; + default: + return; + } + var g = this.getCanvasWindow(), e = g.document.createEvent("MouseEvent"); + e.initMouseEvent(d, !0, !0, g, 1, b.screenX, b.screenY, b.clientX, b.clientY, !1, !1, !1, !1, 0, null); + b.target.dispatchEvent(e); + a.preventDefault(); + }; + e.onMenuAdd = function(a, b, d, f) { + function c(a, b) { + b = f.getFirstEvent(); + if (a = g.createNode(a.value)) { + a.pos = k.convertEventToCanvas(b), k.graph.add(a); + } + } + var k = e.active_canvas, q = k.getCanvasWindow(); + a = g.getNodeTypesCategories(); + b = []; + for (var l in a) { + a[l] && b.push({value:a[l], content:a[l], has_submenu:!0}); + } + var w = new g.ContextMenu(b, {event:d, callback:function(a, b, d) { + a = g.getNodeTypesInCategory(a.value); + b = []; + for (var f in a) { + b.push({content:a[f].title, value:a[f].type}); + } + new g.ContextMenu(b, {event:d, callback:c, parentMenu:w}, q); + return !1; + }, parentMenu:f}, q); + return !1; + }; + e.onMenuCollapseAll = function() { + }; + e.onMenuNodeEdit = function() { + }; + e.showMenuNodeOptionalInputs = function(a, b, d, f, c) { + if (c) { + var k = this; + a = e.active_canvas.getCanvasWindow(); + b = c.optional_inputs; + c.onGetInputs && (b = c.onGetInputs()); + var t = []; + if (b) { + for (var l in b) { + var w = b[l]; + if (w) { + var h = w[0]; + w[2] && w[2].label && (h = w[2].label); + h = {content:h, value:w}; + w[1] == g.ACTION && (h.className = "event"); + t.push(h); + } else { + t.push(null); + } + } + } + this.onMenuNodeInputs && (t = this.onMenuNodeInputs(t)); + if (t.length) { + return new g.ContextMenu(t, {event:d, callback:function(a, b, d) { + c && (a.callback && a.callback.call(k, c, a, b, d), a.value && (c.addInput(a.value[0], a.value[1], a.value[2]), c.setDirtyCanvas(!0, !0))); + }, parentMenu:f, node:c}, a), !1; + } + } + }; + e.showMenuNodeOptionalOutputs = function(a, b, d, f, c) { + function k(a, b, d) { + if (c && (a.callback && a.callback.call(t, c, a, b, d), a.value)) { + if (d = a.value[1], !d || d.constructor !== Object && d.constructor !== Array) { + c.addOutput(a.value[0], a.value[1], a.value[2]), c.setDirtyCanvas(!0, !0); + } else { + a = []; + for (var e in d) { + a.push({content:e, value:d[e]}); + } + new g.ContextMenu(a, {event:b, callback:k, parentMenu:f, node:c}); + return !1; + } + } + } + if (c) { + var t = this; + a = e.active_canvas.getCanvasWindow(); + b = c.optional_outputs; + c.onGetOutputs && (b = c.onGetOutputs()); + var l = []; + if (b) { + for (var w in b) { + var h = b[w]; + if (!h) { + l.push(null); + } else { + if (!c.flags || !c.flags.skip_repeated_outputs || -1 == c.findOutputSlot(h[0])) { + var p = h[0]; + h[2] && h[2].label && (p = h[2].label); + p = {content:p, value:h}; + h[1] == g.EVENT && (p.className = "event"); + l.push(p); + } + } + } + } + this.onMenuNodeOutputs && (l = this.onMenuNodeOutputs(l)); + if (l.length) { + return new g.ContextMenu(l, {event:d, callback:k, parentMenu:f, node:c}, a), !1; + } + } + }; + e.onShowMenuNodeProperties = function(a, b, d, f, c) { + if (c && c.properties) { + var k = e.active_canvas; + b = k.getCanvasWindow(); + var t = [], l; + for (l in c.properties) { + a = void 0 !== c.properties[l] ? c.properties[l] : " ", a = e.decodeHTML(a), t.push({content:"" + l + "" + a + "", value:l}); + } + if (t.length) { + return new g.ContextMenu(t, {event:d, callback:function(a, b, d, g) { + c && (b = this.getBoundingClientRect(), k.showEditPropertyValue(c, a.value, {position:[b.left, b.top]})); + }, parentMenu:f, allow_html:!0, node:c}, b), !1; + } + } + }; + e.decodeHTML = function(a) { + var b = document.createElement("div"); + b.innerText = a; + return b.innerHTML; + }; + e.onResizeNode = function(a, b, d, g, c) { + c && (c.size = c.computeSize(), c.setDirtyCanvas(!0, !0)); + }; + e.onShowTitleEditor = function(a, b, d, g, c) { + function f() { + c.title = l.value; + k.parentNode.removeChild(k); + c.setDirtyCanvas(!0, !0); + } + var k = document.createElement("div"); + k.className = "graphdialog"; + k.innerHTML = "Title"; + var l = k.querySelector("input"); + l && (l.value = c.title, l.addEventListener("keydown", function(a) { + 13 == a.keyCode && (f(), a.preventDefault(), a.stopPropagation()); + })); + a = e.active_canvas.canvas; + b = a.getBoundingClientRect(); + g = d = -20; + b && (d -= b.left, g -= b.top); + event ? (k.style.left = event.pageX + d + "px", k.style.top = event.pageY + g + "px") : (k.style.left = 0.5 * a.width + d + "px", k.style.top = 0.5 * a.height + g + "px"); + k.querySelector("button").addEventListener("click", f); + a.parentNode.appendChild(k); + }; + e.prototype.showEditPropertyValue = function(a, b, d) { + function g() { + c(u.value); + } + function c(d) { + "number" == typeof a.properties[b] && (d = Number(d)); + a.properties[b] = d; + if (a.onPropertyChanged) { + a.onPropertyChanged(b, d); + } + n.close(); + a.setDirtyCanvas(!0, !0); + } + if (a && void 0 !== a.properties[b]) { + d = d || {}; + var e = "string"; + null !== a.properties[b] && (e = typeof a.properties[b]); + var k = null; + a.getPropertyInfo && (k = a.getPropertyInfo(b)); + if (a.properties_info) { + for (var l = 0; l < a.properties_info.length; ++l) { + if (a.properties_info[l].name == b) { + k = a.properties_info[l]; + break; + } + } + } + void 0 !== k && null !== k && k.type && (e = k.type); + var h = ""; + if ("string" == e || "number" == e) { + h = ""; + } else { + if ("enum" == e && k.values) { + h = ""; + } else { + "boolean" == e && (h = ""); + } + } + var n = this.createDialog("" + b + "" + h + "", d); + if ("enum" == e && k.values) { + var u = n.querySelector("select"); + u.addEventListener("change", function(a) { + c(a.target.value); + }); + } else { + if ("boolean" == e) { + (u = n.querySelector("input")) && u.addEventListener("click", function(a) { + c(!!u.checked); + }); + } else { + if (u = n.querySelector("input")) { + u.value = void 0 !== a.properties[b] ? a.properties[b] : "", u.addEventListener("keydown", function(a) { + 13 == a.keyCode && (g(), a.preventDefault(), a.stopPropagation()); + }); + } + } + } + n.querySelector("button").addEventListener("click", g); + } + }; + e.prototype.createDialog = function(a, b) { + b = b || {}; + var d = document.createElement("div"); + d.className = "graphdialog"; + d.innerHTML = a; + a = this.canvas.getClientRects()[0]; + var g = -20, c = -20; + a && (g -= a.left, c -= a.top); + b.position ? (g += b.position[0], c += b.position[1]) : b.event ? (g += b.event.pageX, c += b.event.pageY) : (g += 0.5 * this.canvas.width, c += 0.5 * this.canvas.height); + d.style.left = g + "px"; + d.style.top = c + "px"; + this.canvas.parentNode.appendChild(d); + d.close = function() { + this.parentNode && this.parentNode.removeChild(this); + }; + return d; + }; + e.onMenuNodeCollapse = function(a, b, d, g, c) { + c.flags.collapsed = !c.flags.collapsed; + c.setDirtyCanvas(!0, !0); + }; + e.onMenuNodePin = function(a, b, d, g, c) { + c.pin(); + }; + e.onMenuNodeMode = function(a, b, d, c, e) { + new g.ContextMenu(["Always", "On Event", "On Trigger", "Never"], {event:d, callback:function(a) { + if (e) { + switch(a) { + case "On Event": + e.mode = g.ON_EVENT; + break; + case "On Trigger": + e.mode = g.ON_TRIGGER; + break; + case "Never": + e.mode = g.NEVER; + break; + default: + e.mode = g.ALWAYS; + } + } + }, parentMenu:c, node:e}); + return !1; + }; + e.onMenuNodeColors = function(a, b, d, c, k) { + if (!k) { + throw "no node for color"; + } + b = []; + for (var f in e.node_colors) { + a = e.node_colors[f], a = {value:f, content:"" + f + ""}, b.push(a); + } + new g.ContextMenu(b, {event:d, callback:function(a) { + k && (a = e.node_colors[a.value]) && (k.color = a.color, k.bgcolor = a.bgcolor, k.setDirtyCanvas(!0)); + }, parentMenu:c, node:k}); + return !1; + }; + e.onMenuNodeShapes = function(a, b, d, c, e) { + if (!e) { + throw "no node passed"; + } + new g.ContextMenu(g.VALID_SHAPES, {event:d, callback:function(a) { + e && (e.shape = a, e.setDirtyCanvas(!0)); + }, parentMenu:c, node:e}); + return !1; + }; + e.onMenuNodeRemove = function(a, b, d, g, c) { + if (!c) { + throw "no node passed"; + } + 0 != c.removable && (c.graph.remove(c), c.setDirtyCanvas(!0, !0)); + }; + e.onMenuNodeClone = function(a, b, d, g, c) { + 0 != c.clonable && (a = c.clone()) && (a.pos = [c.pos[0] + 5, c.pos[1] + 5], c.graph.add(a), c.setDirtyCanvas(!0, !0)); + }; + e.node_colors = {red:{color:"#FAA", bgcolor:"#944"}, green:{color:"#AFA", bgcolor:"#494"}, blue:{color:"#AAF", bgcolor:"#449"}, cyan:{color:"#AFF", bgcolor:"#499"}, purple:{color:"#FAF", bgcolor:"#949"}, yellow:{color:"#FFA", bgcolor:"#994"}, black:{color:"#777", bgcolor:"#000"}, white:{color:"#FFF", bgcolor:"#AAA"}}; + e.prototype.getCanvasMenuOptions = function() { + if (this.getMenuOptions) { + var a = this.getMenuOptions(); + } else { + a = [{content:"Add Node", has_submenu:!0, callback:e.onMenuAdd}], this._graph_stack && 0 < this._graph_stack.length && (a = [{content:"Close subgraph", callback:this.closeSubgraph.bind(this)}, null].concat(a)); + } + if (this.getExtraMenuOptions) { + var b = this.getExtraMenuOptions(this, a); + b && (a = a.concat(b)); + } + return a; + }; + e.prototype.getNodeMenuOptions = function(a) { + var b = a.getMenuOptions ? a.getMenuOptions(this) : [{content:"Inputs", has_submenu:!0, disabled:!0, callback:e.showMenuNodeOptionalInputs}, {content:"Outputs", has_submenu:!0, disabled:!0, callback:e.showMenuNodeOptionalOutputs}, null, {content:"Properties", has_submenu:!0, callback:e.onShowMenuNodeProperties}, null, {content:"Title", callback:e.onShowTitleEditor}, {content:"Mode", has_submenu:!0, callback:e.onMenuNodeMode}, {content:"Resize", callback:e.onResizeNode}, {content:"Collapse", callback:e.onMenuNodeCollapse}, + {content:"Pin", callback:e.onMenuNodePin}, {content:"Colors", has_submenu:!0, callback:e.onMenuNodeColors}, {content:"Shapes", has_submenu:!0, callback:e.onMenuNodeShapes}, null]; + if (a.getExtraMenuOptions) { + var d = a.getExtraMenuOptions(this); + d && (d.push(null), b = d.concat(b)); + } + !1 !== a.clonable && b.push({content:"Clone", callback:e.onMenuNodeClone}); + !1 !== a.removable && b.push(null, {content:"Remove", callback:e.onMenuNodeRemove}); + a.onGetInputs && (d = a.onGetInputs()) && d.length && (b[0].disabled = !1); + a.onGetOutputs && (d = a.onGetOutputs()) && d.length && (b[1].disabled = !1); + if (a.graph && a.graph.onGetNodeMenuOptions) { + a.graph.onGetNodeMenuOptions(b, a); + } + return b; + }; + e.prototype.processContextMenu = function(a, b) { + var d = this, c = e.active_canvas.getCanvasWindow(), k = null, h = {event:b, callback:function(b, g, c) { + if (b) { + if ("Remove Slot" == b.content) { + var e = b.slot; + e.input ? a.removeInput(e.slot) : e.output && a.removeOutput(e.slot); + } else { + if ("Rename Slot" == b.content) { + e = b.slot; + var f = d.createDialog("Name", g), k = f.querySelector("input"); + f.querySelector("button").addEventListener("click", function(b) { + if (k.value) { + if (b = e.input ? a.getInputInfo(e.slot) : a.getOutputInfo(e.slot)) { + b.label = k.value; + } + d.setDirty(!0); + } + f.close(); + }); + } + } + } + }, node:a}, p = null; + a && (p = a.getSlotInPosition(b.canvasX, b.canvasY), e.active_node = a); + p ? (k = [], k.push(p.locked ? "Cannot remove" : {content:"Remove Slot", slot:p}), k.push({content:"Rename Slot", slot:p}), h.title = (p.input ? p.input.type : p.output.type) || "*", p.input && p.input.type == g.ACTION && (h.title = "Action"), p.output && p.output.type == g.EVENT && (h.title = "Event")) : k = a ? this.getNodeMenuOptions(a) : this.getCanvasMenuOptions(); + k && new g.ContextMenu(k, h, c); + }; + this.CanvasRenderingContext2D && (CanvasRenderingContext2D.prototype.roundRect = function(a, b, d, g, c, e) { + void 0 === c && (c = 5); + void 0 === e && (e = c); + this.beginPath(); + this.moveTo(a + c, b); + this.lineTo(a + d - c, b); + this.quadraticCurveTo(a + d, b, a + d, b + c); + this.lineTo(a + d, b + g - e); + this.quadraticCurveTo(a + d, b + g, a + d - e, b + g); + this.lineTo(a + e, b + g); + this.quadraticCurveTo(a, b + g, a, b + g - e); + this.lineTo(a, b + c); + this.quadraticCurveTo(a, b, a + c, b); + }); + g.compareObjects = function(a, b) { + for (var d in a) { + if (a[d] != b[d]) { + return !1; + } + } + return !0; + }; + g.distance = p; + g.colorToString = function(a) { + return "rgba(" + Math.round(255 * a[0]).toFixed() + "," + Math.round(255 * a[1]).toFixed() + "," + Math.round(255 * a[2]).toFixed() + "," + (4 == a.length ? a[3].toFixed(2) : "1.0") + ")"; + }; + g.isInsideRectangle = n; + g.growBounding = function(a, b, d) { + b < a[0] ? a[0] = b : b > a[2] && (a[2] = b); + d < a[1] ? a[1] = d : d > a[3] && (a[3] = d); + }; + g.isInsideBounding = function(a, b) { + return a[0] < b[0][0] || a[1] < b[0][1] || a[0] > b[1][0] || a[1] > b[1][1] ? !1 : !0; + }; + g.overlapBounding = u; + g.hex2num = function(a) { + "#" == a.charAt(0) && (a = a.slice(1)); + a = a.toUpperCase(); + for (var b = Array(3), d = 0, g, c, e = 0; 6 > e; e += 2) { + g = "0123456789ABCDEF".indexOf(a.charAt(e)), c = "0123456789ABCDEF".indexOf(a.charAt(e + 1)), b[d] = 16 * g + c, d++; + } + return b; + }; + g.num2hex = function(a) { + for (var b = "#", d, g, c = 0; 3 > c; c++) { + d = a[c] / 16, g = a[c] % 16, b += "0123456789ABCDEF".charAt(d) + "0123456789ABCDEF".charAt(g); + } + return b; + }; + x.prototype.addItem = function(a, b, d) { + function g(a) { + var b = this.value; + b && b.has_submenu && c.call(this, a); + } + function c(a) { + var b = this.value, g = !0; + e.current_submenu && e.current_submenu.close(a); + if (d.callback) { + var c = d.callback.call(this, b, d, a, e, d.node); + !0 === c && (g = !1); + } + if (b && (b.callback && !d.ignore_item_callbacks && !0 !== b.disabled && (c = b.callback.call(this, b, d, a, e, d.node), !0 === c && (g = !1)), b.submenu)) { + if (!b.submenu.options) { + throw "ContextMenu submenu needs options"; + } + new e.constructor(b.submenu.options, {callback:b.submenu.callback, event:a, parentMenu:e, ignore_item_callbacks:b.submenu.ignore_item_callbacks, title:b.submenu.title, autoopen:d.autoopen}); + g = !1; + } + g && !e.lock && e.close(); + } + var e = this; + d = d || {}; + var k = document.createElement("div"); + k.className = "litemenu-entry submenu"; + var l = !1; + if (null === b) { + k.classList.add("separator"); + } else { + k.innerHTML = b && b.title ? b.title : a; + if (k.value = b) { + b.disabled && (l = !0, k.classList.add("disabled")), (b.submenu || b.has_submenu) && k.classList.add("has_submenu"); + } + "function" == typeof b ? (k.dataset.value = a, k.onclick_callback = b) : k.dataset.value = b; + b.className && (k.className += " " + b.className); + } + this.root.appendChild(k); + l || k.addEventListener("click", c); + d.autoopen && k.addEventListener("mouseenter", g); + return k; + }; + x.prototype.close = function(a, b) { + this.root.parentNode && this.root.parentNode.removeChild(this.root); + this.parentMenu && !b && (this.parentMenu.lock = !1, this.parentMenu.current_submenu = null, void 0 === a ? this.parentMenu.close() : a && !x.isCursorOverElement(a, this.parentMenu.root) && x.trigger(this.parentMenu.root, "mouseleave", a)); + this.current_submenu && this.current_submenu.close(a, !0); + }; + x.trigger = function(a, b, d, g) { + var c = document.createEvent("CustomEvent"); + c.initCustomEvent(b, !0, !0, d); + c.srcElement = g; + a.dispatchEvent ? a.dispatchEvent(c) : a.__events && a.__events.dispatchEvent(c); + return c; + }; + x.prototype.getTopMenu = function() { + return this.options.parentMenu ? this.options.parentMenu.getTopMenu() : this; + }; + x.prototype.getFirstEvent = function() { + return this.options.parentMenu ? this.options.parentMenu.getFirstEvent() : this.options.event; + }; + x.isCursorOverElement = function(a, b) { + var d = a.pageX; + a = a.pageY; + return (b = b.getBoundingClientRect()) ? a > b.top && a < b.top + b.height && d > b.left && d < b.left + b.width ? !0 : !1 : !1; + }; + g.ContextMenu = x; + g.closeAllContextMenus = function(a) { + a = a || window; + a = a.document.querySelectorAll(".litecontextmenu"); + if (a.length) { + for (var b = [], d = 0; d < a.length; d++) { + b.push(a[d]); + } + for (d in b) { + b[d].close ? b[d].close() : b[d].parentNode && b[d].parentNode.removeChild(b[d]); + } + } + }; + g.extendClass = function(a, b) { + for (var d in b) { + a.hasOwnProperty(d) || (a[d] = b[d]); + } + if (b.prototype) { + for (d in b.prototype) { + b.prototype.hasOwnProperty(d) && !a.prototype.hasOwnProperty(d) && (b.prototype.__lookupGetter__(d) ? a.prototype.__defineGetter__(d, b.prototype.__lookupGetter__(d)) : a.prototype[d] = b.prototype[d], b.prototype.__lookupSetter__(d) && a.prototype.__defineSetter__(d, b.prototype.__lookupSetter__(d))); + } + } + }; + "undefined" == typeof window || window.requestAnimationFrame || (window.requestAnimationFrame = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(a) { + window.setTimeout(a, 1000 / 60); + }); +})(this); +"undefined" != typeof exports && (exports.LiteGraph = this.LiteGraph); +(function(v) { + function c() { + this.addOutput("in ms", "number"); + this.addOutput("in sec", "number"); + } + function h() { + this.size = [120, 60]; + this.subgraph = new LGraph; + this.subgraph._subgraph_node = this; + this.subgraph._is_subgraph = !0; + this.subgraph.onGlobalInputAdded = this.onSubgraphNewGlobalInput.bind(this); + this.subgraph.onGlobalInputRenamed = this.onSubgraphRenamedGlobalInput.bind(this); + this.subgraph.onGlobalInputTypeChanged = this.onSubgraphTypeChangeGlobalInput.bind(this); + this.subgraph.onGlobalOutputAdded = this.onSubgraphNewGlobalOutput.bind(this); + this.subgraph.onGlobalOutputRenamed = this.onSubgraphRenamedGlobalOutput.bind(this); + this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); + this.bgcolor = "#663"; + } + function e() { + var a = "input_" + (1000 * Math.random()).toFixed(); + this.addOutput(a, null); + this.properties = {name:a, type:null}; + var b = this; + Object.defineProperty(this.properties, "name", {get:function() { + return a; + }, set:function(d) { + if ("" != d) { + var g = b.getOutputInfo(0); + g.name != d && (g.name = d, b.graph && b.graph.renameGlobalInput(a, d), a = d); + } + }, enumerable:!0}); + Object.defineProperty(this.properties, "type", {get:function() { + return b.outputs[0].type; + }, set:function(d) { + b.outputs[0].type = d; + b.graph && b.graph.changeGlobalInputType(a, b.outputs[0].type); + }, enumerable:!0}); + } + function p() { + var a = "output_" + (1000 * Math.random()).toFixed(); + this.addInput(a, null); + this.properties = {name:a, type:null}; + var b = this; + Object.defineProperty(this.properties, "name", {get:function() { + return a; + }, set:function(d) { + if ("" != d) { + var g = b.getInputInfo(0); + g.name != d && (g.name = d, b.graph && b.graph.renameGlobalOutput(a, d), a = d); + } + }, enumerable:!0}); + Object.defineProperty(this.properties, "type", {get:function() { + return b.inputs[0].type; + }, set:function(d) { + b.inputs[0].type = d; + b.graph && b.graph.changeGlobalInputType(a, b.inputs[0].type); + }, enumerable:!0}); + } + function n() { + this.addOutput("value", "number"); + this.addProperty("value", 1.0); + this.editable = {property:"value", type:"number"}; + } + function u() { + this.size = [60, 20]; + this.addInput("value", 0, {label:""}); + this.addOutput("value", 0, {label:""}); + this.addProperty("value", ""); + } + function x() { + this.mode = k.ON_EVENT; + this.size = [60, 20]; + this.addProperty("msg", ""); + this.addInput("log", k.EVENT); + this.addInput("msg", 0); + } + function g() { + this.size = [60, 20]; + this.addProperty("onExecute", ""); + this.addInput("in", ""); + this.addInput("in2", ""); + this.addOutput("out", ""); + this.addOutput("out2", ""); + this._func = null; + } + var k = v.LiteGraph; + c.title = "Time"; + c.desc = "Time"; + c.prototype.onExecute = function() { + this.setOutputData(0, 1000 * this.graph.globaltime); + this.setOutputData(1, this.graph.globaltime); + }; + k.registerNodeType("basic/time", c); + h.title = "Subgraph"; + h.desc = "Graph inside a node"; + h.prototype.onSubgraphNewGlobalInput = function(a, b) { + this.addInput(a, b); + }; + h.prototype.onSubgraphRenamedGlobalInput = function(a, b) { + a = this.findInputSlot(a); + -1 != a && (this.getInputInfo(a).name = b); + }; + h.prototype.onSubgraphTypeChangeGlobalInput = function(a, b) { + a = this.findInputSlot(a); + -1 != a && (this.getInputInfo(a).type = b); + }; + h.prototype.onSubgraphNewGlobalOutput = function(a, b) { + this.addOutput(a, b); + }; + h.prototype.onSubgraphRenamedGlobalOutput = function(a, b) { + a = this.findOutputSlot(a); + -1 != a && (this.getOutputInfo(a).name = b); + }; + h.prototype.onSubgraphTypeChangeGlobalOutput = function(a, b) { + a = this.findOutputSlot(a); + -1 != a && (this.getOutputInfo(a).type = b); + }; + h.prototype.getExtraMenuOptions = function(a) { + var b = this; + return [{content:"Open", callback:function() { + a.openSubgraph(b.subgraph); + }}]; + }; + h.prototype.onExecute = function() { + if (this.inputs) { + for (var a = 0; a < this.inputs.length; a++) { + var b = this.inputs[a], d = this.getInputData(a); + this.subgraph.setGlobalInputData(b.name, d); + } + } + this.subgraph.runStep(); + if (this.outputs) { + for (a = 0; a < this.outputs.length; a++) { + d = this.subgraph.getGlobalOutputData(this.outputs[a].name), this.setOutputData(a, d); + } + } + }; + h.prototype.configure = function(a) { + LGraphNode.prototype.configure.call(this, a); + }; + h.prototype.serialize = function() { + var a = LGraphNode.prototype.serialize.call(this); + a.subgraph = this.subgraph.serialize(); + return a; + }; + h.prototype.clone = function() { + var a = k.createNode(this.type), b = this.serialize(); + delete b.id; + delete b.inputs; + delete b.outputs; + a.configure(b); + return a; + }; + k.registerNodeType("graph/subgraph", h); + e.title = "Input"; + e.desc = "Input of the graph"; + e.prototype.onAdded = function() { + this.graph.addGlobalInput(this.properties.name, this.properties.type); + }; + e.prototype.onExecute = function() { + var a = this.graph.global_inputs[this.properties.name]; + a && this.setOutputData(0, a.value); + }; + k.registerNodeType("graph/input", e); + p.title = "Ouput"; + p.desc = "Output of the graph"; + p.prototype.onAdded = function() { + this.graph.addGlobalOutput(this.properties.name, this.properties.type); + }; + p.prototype.onExecute = function() { + this.graph.setGlobalOutputData(this.properties.name, this.getInputData(0)); + }; + k.registerNodeType("graph/output", p); + n.title = "Const"; + n.desc = "Constant value"; + n.prototype.setValue = function(a) { + "string" == typeof a && (a = parseFloat(a)); + this.properties.value = a; + this.setDirtyCanvas(!0); + }; + n.prototype.onExecute = function() { + this.setOutputData(0, parseFloat(this.properties.value)); + }; + n.prototype.onDrawBackground = function(a) { + this.outputs[0].label = this.properties.value.toFixed(3); + }; + n.prototype.onWidget = function(a, b) { + "value" == b.name && this.setValue(b.value); + }; + k.registerNodeType("basic/const", n); + u.title = "Watch"; + u.desc = "Show value of input"; + u.prototype.onExecute = function() { + this.properties.value = this.getInputData(0); + this.setOutputData(0, this.properties.value); + }; + u.prototype.onDrawBackground = function(a) { + this.inputs[0] && null != this.properties.value && (this.properties.value.constructor === Number ? this.inputs[0].label = this.properties.value.toFixed(3) : ((a = this.properties.value) && a.length && (a = Array.prototype.slice.call(a).join(",")), this.inputs[0].label = a)); + }; + k.registerNodeType("basic/watch", u); + x.title = "Console"; + x.desc = "Show value inside the console"; + x.prototype.onAction = function(a, b) { + "log" == a ? console.log(b) : "warn" == a ? console.warn(b) : "error" == a && console.error(b); + }; + x.prototype.onExecute = function() { + var a = this.getInputData(1); + null !== a && (this.properties.msg = a); + console.log(a); + }; + x.prototype.onGetInputs = function() { + return [["log", k.ACTION], ["warn", k.ACTION], ["error", k.ACTION]]; + }; + k.registerNodeType("basic/console", x); + g.title = "Script"; + g.desc = "executes a code"; + g.widgets_info = {onExecute:{type:"code"}}; + g.prototype.onPropertyChanged = function(a, b) { + if ("onExecute" == a && k.allow_scripts) { + this._func = null; + try { + this._func = new Function(b); + } catch (d) { + console.error("Error parsing script"), console.error(d); + } + } + }; + g.prototype.onExecute = function() { + if (this._func) { + try { + this._func.call(this); + } catch (a) { + console.error("Error in script"), console.error(a); + } + } + }; + k.registerNodeType("basic/script", g); +})(this); +(function(v) { + function c() { + this.size = [60, 20]; + this.addInput("event", p.ACTION); + } + function h() { + this.size = [60, 20]; + this.addInput("event", p.ACTION); + this.addOutput("event", p.EVENT); + this.properties = {equal_to:"", has_property:"", property_equal_to:""}; + } + function e() { + this.size = [60, 20]; + this.addProperty("time", 1000); + this.addInput("event", p.ACTION); + this.addOutput("on_time", p.EVENT); + this._pending = []; + } + var p = v.LiteGraph; + c.title = "Log Event"; + c.desc = "Log event in console"; + c.prototype.onAction = function(c, e) { + console.log(c, e); + }; + p.registerNodeType("events/log", c); + h.title = "Filter Event"; + h.desc = "Blocks events that do not match the filter"; + h.prototype.onAction = function(c, e) { + if (null != e && (!this.properties.equal_to || this.properties.equal_to == e)) { + if (this.properties.has_property && (c = e[this.properties.has_property], null == c || this.properties.property_equal_to && this.properties.property_equal_to != c)) { + return; + } + this.triggerSlot(0, e); + } + }; + p.registerNodeType("events/filter", h); + e.title = "Delay"; + e.desc = "Delays one event"; + e.prototype.onAction = function(c, e) { + this._pending.push([this.properties.time, e]); + }; + e.prototype.onExecute = function() { + for (var c = 1000 * this.graph.elapsed_time, e = 0; e < this._pending.length; ++e) { + var h = this._pending[e]; + h[0] -= c; + 0 < h[0] || (this._pending.splice(e, 1), --e, this.trigger(null, h[1])); + } + }; + e.prototype.onGetInputs = function() { + return [["event", p.ACTION]]; + }; + p.registerNodeType("events/delay", e); +})(this); +(function(v) { + function c() { + this.addOutput("clicked", x.EVENT); + this.addProperty("text", ""); + this.addProperty("font", "40px Arial"); + this.addProperty("message", ""); + this.size = [64, 84]; + } + function h() { + this.addOutput("", "number"); + this.size = [64, 84]; + this.properties = {min:0, max:1, value:0.5, wcolor:"#7AF", size:50}; + } + function e() { + this.size = [160, 26]; + this.addOutput("", "number"); + this.properties = {wcolor:"#7AF", min:0, max:1, value:0.5}; + } + function p() { + this.size = [160, 26]; + this.addInput("", "number"); + this.properties = {min:0, max:1, value:0, wcolor:"#AAF"}; + } + function n() { + this.addInputs("", 0); + this.properties = {value:"...", font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1}; + } + function u() { + this.size = [200, 100]; + this.properties = {borderColor:"#ffffff", bgcolorTop:"#f0f0f0", bgcolorBottom:"#e0e0e0", shadowSize:2, borderRadius:3}; + } + var x = v.LiteGraph; + c.title = "Button"; + c.desc = "Triggers an event"; + c.prototype.onDrawForeground = function(g) { + !this.flags.collapsed && (g.fillStyle = "black", g.fillRect(1, 1, this.size[0] - 3, this.size[1] - 3), g.fillStyle = "#AAF", g.fillRect(0, 0, this.size[0] - 3, this.size[1] - 3), g.fillStyle = this.clicked ? "white" : this.mouseOver ? "#668" : "#334", g.fillRect(1, 1, this.size[0] - 4, this.size[1] - 4), this.properties.text || 0 === this.properties.text) && (g.textAlign = "center", g.fillStyle = this.clicked ? "black" : "white", this.properties.font && (g.font = this.properties.font), g.fillText(this.properties.text, + 0.5 * this.size[0], 0.85 * this.size[1]), g.textAlign = "left"); + }; + c.prototype.onMouseDown = function(g, c) { + if (1 < c[0] && 1 < c[1] && c[0] < this.size[0] - 2 && c[1] < this.size[1] - 2) { + return this.clicked = !0, this.trigger("clicked", this.properties.message), !0; + } + }; + c.prototype.onMouseUp = function(c) { + this.clicked = !1; + }; + x.registerNodeType("widget/button", c); + h.title = "Knob"; + h.desc = "Circular controller"; + h.widgets = [{name:"increase", text:"+", type:"minibutton"}, {name:"decrease", text:"-", type:"minibutton"}]; + h.prototype.onAdded = function() { + this.value = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + this.imgbg = this.loadImage("imgs/knob_bg.png"); + this.imgfg = this.loadImage("imgs/knob_fg.png"); + }; + h.prototype.onDrawImageKnob = function(c) { + if (this.imgfg && this.imgfg.width) { + var g = 0.5 * this.imgbg.width, a = this.size[0] / this.imgfg.width; + c.save(); + c.translate(0, 20); + c.scale(a, a); + c.drawImage(this.imgbg, 0, 0); + c.translate(g, g); + c.rotate(2 * this.value * Math.PI * 6 / 8 + 10 * Math.PI / 8); + c.translate(-g, -g); + c.drawImage(this.imgfg, 0, 0); + c.restore(); + this.title && (c.font = "bold 16px Criticized,Tahoma", c.fillStyle = "rgba(100,100,100,0.8)", c.textAlign = "center", c.fillText(this.title.toUpperCase(), 0.5 * this.size[0], 18), c.textAlign = "left"); + } + }; + h.prototype.onDrawVectorKnob = function(c) { + if (this.imgfg && this.imgfg.width) { + c.lineWidth = 1; + c.strokeStyle = this.mouseOver ? "#FFF" : "#AAA"; + c.fillStyle = "#000"; + c.beginPath(); + c.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.5 * this.properties.size, 0, 2 * Math.PI, !0); + c.stroke(); + 0 < this.value && (c.strokeStyle = this.properties.wcolor, c.lineWidth = 0.2 * this.properties.size, c.beginPath(), c.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.35 * this.properties.size, -0.5 * Math.PI + 2 * Math.PI * this.value, -0.5 * Math.PI, !0), c.stroke(), c.lineWidth = 1); + c.font = 0.2 * this.properties.size + "px Arial"; + c.fillStyle = "#AAA"; + c.textAlign = "center"; + var g = this.properties.value; + "number" == typeof g && (g = g.toFixed(2)); + c.fillText(g, 0.5 * this.size[0], 0.65 * this.size[1]); + c.textAlign = "left"; + } + }; + h.prototype.onDrawForeground = function(c) { + this.onDrawImageKnob(c); + }; + h.prototype.onExecute = function() { + this.setOutputData(0, this.properties.value); + this.boxcolor = x.colorToString([this.value, this.value, this.value]); + }; + h.prototype.onMouseDown = function(c) { + if (this.imgfg && this.imgfg.width) { + this.center = [0.5 * this.size[0], 0.5 * this.size[1] + 20]; + this.radius = 0.5 * this.size[0]; + if (20 > c.canvasY - this.pos[1] || x.distance([c.canvasX, c.canvasY], [this.pos[0] + this.center[0], this.pos[1] + this.center[1]]) > this.radius) { + return !1; + } + this.oldmouse = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + this.captureInput(!0); + return !0; + } + }; + h.prototype.onMouseMove = function(c) { + if (this.oldmouse) { + c = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + var e = this.value; + e -= 0.01 * (c[1] - this.oldmouse[1]); + 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); + this.value = e; + this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; + this.oldmouse = c; + this.setDirtyCanvas(!0); + } + }; + h.prototype.onMouseUp = function(c) { + this.oldmouse && (this.oldmouse = null, this.captureInput(!1)); + }; + h.prototype.onMouseLeave = function(c) { + }; + h.prototype.onWidget = function(c, e) { + if ("increase" == e.name) { + this.onPropertyChanged("size", this.properties.size + 10); + } else { + if ("decrease" == e.name) { + this.onPropertyChanged("size", this.properties.size - 10); + } + } + }; + h.prototype.onPropertyChanged = function(c, e) { + if ("wcolor" == c) { + this.properties[c] = e; + } else { + if ("size" == c) { + e = parseInt(e), this.properties[c] = e, this.size = [e + 4, e + 24], this.setDirtyCanvas(!0, !0); + } else { + if ("min" == c || "max" == c || "value" == c) { + this.properties[c] = parseFloat(e); + } else { + return !1; + } + } + } + return !0; + }; + x.registerNodeType("widget/knob", h); + e.title = "H.Slider"; + e.desc = "Linear slider controller"; + e.prototype.onInit = function() { + this.value = 0.5; + this.imgfg = this.loadImage("imgs/slider_fg.png"); + }; + e.prototype.onDrawVectorial = function(c) { + this.imgfg && this.imgfg.width && (c.lineWidth = 1, c.strokeStyle = this.mouseOver ? "#FFF" : "#AAA", c.fillStyle = "#000", c.beginPath(), c.rect(2, 0, this.size[0] - 4, 20), c.stroke(), c.fillStyle = this.properties.wcolor, c.beginPath(), c.rect(2 + (this.size[0] - 4 - 20) * this.value, 0, 20, 20), c.fill()); + }; + e.prototype.onDrawImage = function(c) { + this.imgfg && this.imgfg.width && (c.lineWidth = 1, c.fillStyle = "#000", c.fillRect(2, 9, this.size[0] - 4, 2), c.strokeStyle = "#333", c.beginPath(), c.moveTo(2, 9), c.lineTo(this.size[0] - 4, 9), c.stroke(), c.strokeStyle = "#AAA", c.beginPath(), c.moveTo(2, 11), c.lineTo(this.size[0] - 4, 11), c.stroke(), c.drawImage(this.imgfg, 2 + (this.size[0] - 4) * this.value - 0.5 * this.imgfg.width, 0.5 * -this.imgfg.height + 10)); + }; + e.prototype.onDrawForeground = function(c) { + this.onDrawImage(c); + }; + e.prototype.onExecute = function() { + this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; + this.setOutputData(0, this.properties.value); + this.boxcolor = x.colorToString([this.value, this.value, this.value]); + }; + e.prototype.onMouseDown = function(c) { + if (0 > c.canvasY - this.pos[1]) { + return !1; + } + this.oldmouse = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + this.captureInput(!0); + return !0; + }; + e.prototype.onMouseMove = function(c) { + if (this.oldmouse) { + c = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + var e = this.value; + e += (c[0] - this.oldmouse[0]) / this.size[0]; + 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); + this.value = e; + this.oldmouse = c; + this.setDirtyCanvas(!0); + } + }; + e.prototype.onMouseUp = function(c) { + this.oldmouse = null; + this.captureInput(!1); + }; + e.prototype.onMouseLeave = function(c) { + }; + e.prototype.onPropertyChanged = function(c, e) { + if ("wcolor" == c) { + this.properties[c] = e; + } else { + return !1; + } + return !0; + }; + x.registerNodeType("widget/hslider", e); + p.title = "Progress"; + p.desc = "Shows data in linear progress"; + p.prototype.onExecute = function() { + var c = this.getInputData(0); + void 0 != c && (this.properties.value = c); + }; + p.prototype.onDrawForeground = function(c) { + c.lineWidth = 1; + c.fillStyle = this.properties.wcolor; + var e = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + e = Math.min(1, e); + e = Math.max(0, e); + c.fillRect(2, 2, (this.size[0] - 4) * e, this.size[1] - 4); + }; + x.registerNodeType("widget/progress", p); + n.title = "Text"; + n.desc = "Shows the input value"; + n.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"led_text", text:"LED", type:"minibutton"}, {name:"normal_text", text:"Normal", type:"minibutton"}]; + n.prototype.onDrawForeground = function(c) { + c.fillStyle = this.properties.color; + var e = this.properties.value; + this.properties.glowSize ? (c.shadowColor = this.properties.color, c.shadowOffsetX = 0, c.shadowOffsetY = 0, c.shadowBlur = this.properties.glowSize) : c.shadowColor = "transparent"; + var a = this.properties.fontsize; + c.textAlign = this.properties.align; + c.font = a.toString() + "px " + this.properties.font; + this.str = "number" == typeof e ? e.toFixed(this.properties.decimals) : e; + if ("string" == typeof this.str) { + e = this.str.split("\\n"); + for (var b in e) { + c.fillText(e[b], "left" == this.properties.align ? 15 : this.size[0] - 15, -0.15 * a + a * (parseInt(b) + 1)); + } + } + c.shadowColor = "transparent"; + this.last_ctx = c; + c.textAlign = "left"; + }; + n.prototype.onExecute = function() { + var c = this.getInputData(0); + null != c && (this.properties.value = c); + }; + n.prototype.resize = function() { + if (this.last_ctx) { + var c = this.str.split("\\n"); + this.last_ctx.font = this.properties.fontsize + "px " + this.properties.font; + var e = 0, a; + for (a in c) { + var b = this.last_ctx.measureText(c[a]).width; + e < b && (e = b); + } + this.size[0] = e + 20; + this.size[1] = 4 + c.length * this.properties.fontsize; + this.setDirtyCanvas(!0); + } + }; + n.prototype.onWidget = function(c, e) { + "resize" == e.name ? this.resize() : "led_text" == e.name ? (this.properties.font = "Digital", this.properties.glowSize = 4, this.setDirtyCanvas(!0)) : "normal_text" == e.name && (this.properties.font = "Arial", this.setDirtyCanvas(!0)); + }; + n.prototype.onPropertyChanged = function(c, e) { + this.properties[c] = e; + this.str = "number" == typeof e ? e.toFixed(3) : e; + return !0; + }; + x.registerNodeType("widget/text", n); + u.title = "Panel"; + u.desc = "Non interactive panel"; + u.widgets = [{name:"update", text:"Update", type:"button"}]; + u.prototype.createGradient = function(c) { + "" == this.properties.bgcolorTop || "" == this.properties.bgcolorBottom ? this.lineargradient = 0 : (this.lineargradient = c.createLinearGradient(0, 0, 0, this.size[1]), this.lineargradient.addColorStop(0, this.properties.bgcolorTop), this.lineargradient.addColorStop(1, this.properties.bgcolorBottom)); + }; + u.prototype.onDrawForeground = function(c) { + null == this.lineargradient && this.createGradient(c); + this.lineargradient && (c.lineWidth = 1, c.strokeStyle = this.properties.borderColor, c.fillStyle = this.lineargradient, this.properties.shadowSize ? (c.shadowColor = "#000", c.shadowOffsetX = 0, c.shadowOffsetY = 0, c.shadowBlur = this.properties.shadowSize) : c.shadowColor = "transparent", c.roundRect(0, 0, this.size[0] - 1, this.size[1] - 1, this.properties.shadowSize), c.fill(), c.shadowColor = "transparent", c.stroke()); + }; + u.prototype.onWidget = function(c, e) { + "update" == e.name && (this.lineargradient = null, this.setDirtyCanvas(!0)); + }; + x.registerNodeType("widget/panel", u); +})(this); +(function(v) { + function c() { + this.addOutput("left_x_axis", "number"); + this.addOutput("left_y_axis", "number"); + this.addOutput("button_pressed", h.EVENT); + this.properties = {gamepad_index:0, threshold:0.1}; + this._left_axis = new Float32Array(2); + this._right_axis = new Float32Array(2); + this._triggers = new Float32Array(2); + this._previous_buttons = new Uint8Array(17); + this._current_buttons = new Uint8Array(17); + } + var h = v.LiteGraph; + c.title = "Gamepad"; + c.desc = "gets the input of the gamepad"; + c.zero = new Float32Array(2); + c.buttons = "a b x y lb rb lt rt back start ls rs home".split(" "); + c.prototype.onExecute = function() { + var e = this.getGamepad(), h = this.properties.threshold || 0.0; + e && (this._left_axis[0] = Math.abs(e.xbox.axes.lx) > h ? e.xbox.axes.lx : 0, this._left_axis[1] = Math.abs(e.xbox.axes.ly) > h ? e.xbox.axes.ly : 0, this._right_axis[0] = Math.abs(e.xbox.axes.rx) > h ? e.xbox.axes.rx : 0, this._right_axis[1] = Math.abs(e.xbox.axes.ry) > h ? e.xbox.axes.ry : 0, this._triggers[0] = Math.abs(e.xbox.axes.ltrigger) > h ? e.xbox.axes.ltrigger : 0, this._triggers[1] = Math.abs(e.xbox.axes.rtrigger) > h ? e.xbox.axes.rtrigger : 0); + if (this.outputs) { + for (h = 0; h < this.outputs.length; h++) { + var n = this.outputs[h]; + if (n.links && n.links.length) { + var u = null; + if (e) { + switch(n.name) { + case "left_axis": + u = this._left_axis; + break; + case "right_axis": + u = this._right_axis; + break; + case "left_x_axis": + u = this._left_axis[0]; + break; + case "left_y_axis": + u = this._left_axis[1]; + break; + case "right_x_axis": + u = this._right_axis[0]; + break; + case "right_y_axis": + u = this._right_axis[1]; + break; + case "trigger_left": + u = this._triggers[0]; + break; + case "trigger_right": + u = this._triggers[1]; + break; + case "a_button": + u = e.xbox.buttons.a ? 1 : 0; + break; + case "b_button": + u = e.xbox.buttons.b ? 1 : 0; + break; + case "x_button": + u = e.xbox.buttons.x ? 1 : 0; + break; + case "y_button": + u = e.xbox.buttons.y ? 1 : 0; + break; + case "lb_button": + u = e.xbox.buttons.lb ? 1 : 0; + break; + case "rb_button": + u = e.xbox.buttons.rb ? 1 : 0; + break; + case "ls_button": + u = e.xbox.buttons.ls ? 1 : 0; + break; + case "rs_button": + u = e.xbox.buttons.rs ? 1 : 0; + break; + case "start_button": + u = e.xbox.buttons.start ? 1 : 0; + break; + case "back_button": + u = e.xbox.buttons.back ? 1 : 0; + break; + case "button_pressed": + for (n = 0; n < this._current_buttons.length; ++n) { + this._current_buttons[n] && !this._previous_buttons[n] && this.triggerSlot(h, c.buttons[n]); + } + } + } else { + switch(n.name) { + case "button_pressed": + break; + case "left_axis": + case "right_axis": + u = c.zero; + break; + default: + u = 0; + } + } + this.setOutputData(h, u); + } + } + } + }; + c.prototype.getGamepad = function() { + var c = navigator.getGamepads || navigator.webkitGetGamepads || navigator.mozGetGamepads; + if (!c) { + return null; + } + c = c.call(navigator); + this._previous_buttons.set(this._current_buttons); + for (var h = this.properties.gamepad_index; 4 > h; h++) { + if (c[h]) { + c = c[h]; + h = this.xbox_mapping; + h || (h = this.xbox_mapping = {axes:[], buttons:{}, hat:""}); + h.axes.lx = c.axes[0]; + h.axes.ly = c.axes[1]; + h.axes.rx = c.axes[2]; + h.axes.ry = c.axes[3]; + h.axes.ltrigger = c.buttons[6].value; + h.axes.rtrigger = c.buttons[7].value; + for (var n = 0; n < c.buttons.length; n++) { + switch(this._current_buttons[n] = c.buttons[n].pressed, n) { + case 0: + h.buttons.a = c.buttons[n].pressed; + break; + case 1: + h.buttons.b = c.buttons[n].pressed; + break; + case 2: + h.buttons.x = c.buttons[n].pressed; + break; + case 3: + h.buttons.y = c.buttons[n].pressed; + break; + case 4: + h.buttons.lb = c.buttons[n].pressed; + break; + case 5: + h.buttons.rb = c.buttons[n].pressed; + break; + case 6: + h.buttons.lt = c.buttons[n].pressed; + break; + case 7: + h.buttons.rt = c.buttons[n].pressed; + break; + case 8: + h.buttons.back = c.buttons[n].pressed; + break; + case 9: + h.buttons.start = c.buttons[n].pressed; + break; + case 10: + h.buttons.ls = c.buttons[n].pressed; + break; + case 11: + h.buttons.rs = c.buttons[n].pressed; + break; + case 12: + c.buttons[n].pressed && (h.hat += "up"); + break; + case 13: + c.buttons[n].pressed && (h.hat += "down"); + break; + case 14: + c.buttons[n].pressed && (h.hat += "left"); + break; + case 15: + c.buttons[n].pressed && (h.hat += "right"); + break; + case 16: + h.buttons.home = c.buttons[n].pressed; + } + } + c.xbox = h; + return c; + } + } + }; + c.prototype.onDrawBackground = function(c) { + var e = this._left_axis, h = this._right_axis; + c.strokeStyle = "#88A"; + c.strokeRect(0.5 * (e[0] + 1) * this.size[0] - 4, 0.5 * (e[1] + 1) * this.size[1] - 4, 8, 8); + c.strokeStyle = "#8A8"; + c.strokeRect(0.5 * (h[0] + 1) * this.size[0] - 4, 0.5 * (h[1] + 1) * this.size[1] - 4, 8, 8); + e = this.size[1] / this._current_buttons.length; + c.fillStyle = "#AEB"; + for (h = 0; h < this._current_buttons.length; ++h) { + this._current_buttons[h] && c.fillRect(0, e * h, 6, e); + } + }; + c.prototype.onGetOutputs = function() { + return [["left_axis", "vec2"], ["right_axis", "vec2"], ["left_x_axis", "number"], ["left_y_axis", "number"], ["right_x_axis", "number"], ["right_y_axis", "number"], ["trigger_left", "number"], ["trigger_right", "number"], ["a_button", "number"], ["b_button", "number"], ["x_button", "number"], ["y_button", "number"], ["lb_button", "number"], ["rb_button", "number"], ["ls_button", "number"], ["rs_button", "number"], ["start", "number"], ["back", "number"], ["button_pressed", h.EVENT]]; + }; + h.registerNodeType("input/gamepad", c); +})(this); +(function(v) { + function c() { + this.addInput("in", "*"); + this.size = [60, 20]; + } + function h() { + this.addInput("in"); + this.addOutput("out"); + this.size = [60, 20]; + } + function e() { + this.addInput("in", "number", {locked:!0}); + this.addOutput("out", "number", {locked:!0}); + this.addProperty("in", 0); + this.addProperty("in_min", 0); + this.addProperty("in_max", 1); + this.addProperty("out_min", 0); + this.addProperty("out_max", 1); + } + function p() { + this.addOutput("value", "number"); + this.addProperty("min", 0); + this.addProperty("max", 1); + this.size = [60, 20]; + } + function n() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + this.addProperty("min", 0); + this.addProperty("max", 1); + } + function u() { + this.properties = {f:0.5}; + this.addInput("A", "number"); + this.addInput("B", "number"); + this.addOutput("out", "number"); + } + function x() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + } + function g() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + } + function k() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + } + function a() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + this.properties = {A:0, B:1}; + } + function b() { + this.addInput("in", "number", {label:""}); + this.addOutput("out", "number", {label:""}); + this.size = [60, 20]; + this.addProperty("factor", 1); + } + function d() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + this.addProperty("samples", 10); + this._values = new Float32Array(10); + this._current = 0; + } + function f() { + this.addInput("A", "number"); + this.addInput("B", "number"); + this.addOutput("=", "number"); + this.addProperty("A", 1); + this.addProperty("B", 1); + this.addProperty("OP", "+", "string", {values:f.values}); + } + function t() { + this.addInput("A", "number"); + this.addInput("B", "number"); + this.addOutput("A==B", "boolean"); + this.addOutput("A!=B", "boolean"); + this.addProperty("A", 0); + this.addProperty("B", 0); + } + function y() { + this.addInput("A", "number"); + this.addInput("B", "number"); + this.addOutput("out", "boolean"); + this.addProperty("A", 1); + this.addProperty("B", 1); + this.addProperty("OP", ">", "string", {values:y.values}); + this.size = [60, 40]; + } + function q() { + this.addInput("inc", "number"); + this.addOutput("total", "number"); + this.addProperty("increment", 1); + this.addProperty("value", 0); + } + function l() { + this.addInput("v", "number"); + this.addOutput("sin", "number"); + this.addProperty("amplitude", 1); + this.addProperty("offset", 0); + this.bgImageUrl = "nodes/imgs/icon-sin.png"; + } + function w() { + this.addInput("vec2", "vec2"); + this.addOutput("x", "number"); + this.addOutput("y", "number"); + } + function A() { + this.addInputs([["x", "number"], ["y", "number"]]); + this.addOutput("vec2", "vec2"); + this.properties = {x:0, y:0}; + this._data = new Float32Array(2); + } + function D() { + this.addInput("vec3", "vec3"); + this.addOutput("x", "number"); + this.addOutput("y", "number"); + this.addOutput("z", "number"); + } + function B() { + this.addInputs([["x", "number"], ["y", "number"], ["z", "number"]]); + this.addOutput("vec3", "vec3"); + this.properties = {x:0, y:0, z:0}; + this._data = new Float32Array(3); + } + function C() { + this.addInput("vec4", "vec4"); + this.addOutput("x", "number"); + this.addOutput("y", "number"); + this.addOutput("z", "number"); + this.addOutput("w", "number"); + } + function E() { + this.addInputs([["x", "number"], ["y", "number"], ["z", "number"], ["w", "number"]]); + this.addOutput("vec4", "vec4"); + this.properties = {x:0, y:0, z:0, w:0}; + this._data = new Float32Array(4); + } + var z = v.LiteGraph; + c.title = "Converter"; + c.desc = "type A to type B"; + c.prototype.onExecute = function() { + var a = this.getInputData(0); + if (null != a && this.outputs) { + for (var b = 0; b < this.outputs.length; b++) { + var d = this.outputs[b]; + if (d.links && d.links.length) { + var c = null; + switch(d.name) { + case "number": + c = a.length ? a[0] : parseFloat(a); + break; + case "vec2": + case "vec3": + case "vec4": + c = 1; + switch(d.name) { + case "vec2": + c = 2; + break; + case "vec3": + c = 3; + break; + case "vec4": + c = 4; + }c = new Float32Array(c); + if (a.length) { + for (d = 0; d < a.length && d < c.length; d++) { + c[d] = a[d]; + } + } else { + c[0] = parseFloat(a); + } + } + this.setOutputData(b, c); + } + } + } + }; + c.prototype.onGetOutputs = function() { + return [["number", "number"], ["vec2", "vec2"], ["vec3", "vec3"], ["vec4", "vec4"]]; + }; + z.registerNodeType("math/converter", c); + h.title = "Bypass"; + h.desc = "removes the type"; + h.prototype.onExecute = function() { + var a = this.getInputData(0); + this.setOutputData(0, a); + }; + z.registerNodeType("math/bypass", h); + e.title = "Range"; + e.desc = "Convert a number from one range to another"; + e.prototype.onExecute = function() { + if (this.inputs) { + for (var a = 0; a < this.inputs.length; a++) { + var b = this.inputs[a], c = this.getInputData(a); + void 0 !== c && (this.properties[b.name] = c); + } + } + c = this.properties["in"]; + if (void 0 === c || null === c || c.constructor !== Number) { + c = 0; + } + a = this.properties.in_min; + b = this.properties.out_min; + this._last_v = (c - a) / (this.properties.in_max - a) * (this.properties.out_max - b) + b; + this.setOutputData(0, this._last_v); + }; + e.prototype.onDrawBackground = function(a) { + this.outputs[0].label = this._last_v ? this._last_v.toFixed(3) : "?"; + }; + e.prototype.onGetInputs = function() { + return [["in_min", "number"], ["in_max", "number"], ["out_min", "number"], ["out_max", "number"]]; + }; + z.registerNodeType("math/range", e); + p.title = "Rand"; + p.desc = "Random number"; + p.prototype.onExecute = function() { + if (this.inputs) { + for (var a = 0; a < this.inputs.length; a++) { + var b = this.inputs[a], c = this.getInputData(a); + void 0 !== c && (this.properties[b.name] = c); + } + } + a = this.properties.min; + this._last_v = Math.random() * (this.properties.max - a) + a; + this.setOutputData(0, this._last_v); + }; + p.prototype.onDrawBackground = function(a) { + this.outputs[0].label = this._last_v ? this._last_v.toFixed(3) : "?"; + }; + p.prototype.onGetInputs = function() { + return [["min", "number"], ["max", "number"]]; + }; + z.registerNodeType("math/rand", p); + n.title = "Clamp"; + n.desc = "Clamp number between min and max"; + n.filter = "shader"; + n.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && (a = Math.max(this.properties.min, a), a = Math.min(this.properties.max, a), this.setOutputData(0, a)); + }; + n.prototype.getCode = function(a) { + a = ""; + this.isInputConnected(0) && (a += "clamp({{0}}," + this.properties.min + "," + this.properties.max + ")"); + return a; + }; + z.registerNodeType("math/clamp", n); + u.title = "Lerp"; + u.desc = "Linear Interpolation"; + u.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = 0); + var b = this.getInputData(1); + null == b && (b = 0); + var c = this.properties.f, d = this.getInputData(2); + void 0 !== d && (c = d); + this.setOutputData(0, a * (1 - c) + b * c); + }; + u.prototype.onGetInputs = function() { + return [["f", "number"]]; + }; + z.registerNodeType("math/lerp", u); + x.title = "Abs"; + x.desc = "Absolute"; + x.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && this.setOutputData(0, Math.abs(a)); + }; + z.registerNodeType("math/abs", x); + g.title = "Floor"; + g.desc = "Floor number to remove fractional part"; + g.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && this.setOutputData(0, Math.floor(a)); + }; + z.registerNodeType("math/floor", g); + k.title = "Frac"; + k.desc = "Returns fractional part"; + k.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && this.setOutputData(0, a % 1); + }; + z.registerNodeType("math/frac", k); + a.title = "Smoothstep"; + a.desc = "Smoothstep"; + a.prototype.onExecute = function() { + var a = this.getInputData(0); + if (void 0 !== a) { + var b = this.properties.A; + a = Math.clamp((a - b) / (this.properties.B - b), 0.0, 1.0); + this.setOutputData(0, a * a * (3 - 2 * a)); + } + }; + z.registerNodeType("math/smoothstep", a); + b.title = "Scale"; + b.desc = "v * factor"; + b.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && this.setOutputData(0, a * this.properties.factor); + }; + z.registerNodeType("math/scale", b); + d.title = "Average"; + d.desc = "Average Filter"; + d.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = 0); + var b = this._values.length; + this._values[this._current % b] = a; + this._current += 1; + this._current > b && (this._current = 0); + for (var c = a = 0; c < b; ++c) { + a += this._values[c]; + } + this.setOutputData(0, a / b); + }; + d.prototype.onPropertyChanged = function(a, b) { + 1 > b && (b = 1); + this.properties.samples = Math.round(b); + a = this._values; + this._values = new Float32Array(this.properties.samples); + a.length <= this._values.length ? this._values.set(a) : this._values.set(a.subarray(0, this._values.length)); + }; + z.registerNodeType("math/average", d); + f.values = "+-*/%^".split(""); + f.title = "Operation"; + f.desc = "Easy math operators"; + f["@OP"] = {type:"enum", title:"operation", values:f.values}; + f.prototype.setValue = function(a) { + "string" == typeof a && (a = parseFloat(a)); + this.properties.value = a; + }; + f.prototype.onExecute = function() { + var a = this.getInputData(0), b = this.getInputData(1); + null != a ? this.properties.A = a : a = this.properties.A; + null != b ? this.properties.B = b : b = this.properties.B; + var c = 0; + switch(this.properties.OP) { + case "+": + c = a + b; + break; + case "-": + c = a - b; + break; + case "x": + case "X": + case "*": + c = a * b; + break; + case "/": + c = a / b; + break; + case "%": + c = a % b; + break; + case "^": + c = Math.pow(a, b); + break; + default: + console.warn("Unknown operation: " + this.properties.OP); + } + this.setOutputData(0, c); + }; + f.prototype.onDrawBackground = function(a) { + this.flags.collapsed || (a.font = "40px Arial", a.fillStyle = "black", a.textAlign = "center", a.fillText(this.properties.OP, 0.5 * this.size[0], 0.5 * this.size[1] + z.NODE_TITLE_HEIGHT), a.textAlign = "left"); + }; + z.registerNodeType("math/operation", f); + t.title = "Compare"; + t.desc = "compares between two values"; + t.prototype.onExecute = function() { + var a = this.getInputData(0), b = this.getInputData(1); + void 0 !== a ? this.properties.A = a : a = this.properties.A; + void 0 !== b ? this.properties.B = b : b = this.properties.B; + for (var c = 0, d = this.outputs.length; c < d; ++c) { + var e = this.outputs[c]; + if (e.links && e.links.length) { + switch(e.name) { + case "A==B": + value = a == b; + break; + case "A!=B": + value = a != b; + break; + case "A>B": + value = a > b; + break; + case "A=B": + value = a >= b; + } + this.setOutputData(c, value); + } + } + }; + t.prototype.onGetOutputs = function() { + return [["A==B", "boolean"], ["A!=B", "boolean"], ["A>B", "boolean"], ["A=B", "boolean"], ["A<=B", "boolean"]]; + }; + z.registerNodeType("math/compare", t); + y.values = "> < == != <= >=".split(" "); + y["@OP"] = {type:"enum", title:"operation", values:y.values}; + y.title = "Condition"; + y.desc = "evaluates condition between A and B"; + y.prototype.onExecute = function() { + var a = this.getInputData(0); + void 0 === a ? a = this.properties.A : this.properties.A = a; + var b = this.getInputData(1); + void 0 === b ? b = this.properties.B : this.properties.B = b; + var c = !0; + switch(this.properties.OP) { + case ">": + c = a > b; + break; + case "<": + c = a < b; + break; + case "==": + c = a == b; + break; + case "!=": + c = a != b; + break; + case "<=": + c = a <= b; + break; + case ">=": + c = a >= b; + } + this.setOutputData(0, c); + }; + z.registerNodeType("math/condition", y); + q.title = "Accumulate"; + q.desc = "Increments a value every time"; + q.prototype.onExecute = function() { + null === this.properties.value && (this.properties.value = 0); + var a = this.getInputData(0); + this.properties.value = null !== a ? this.properties.value + a : this.properties.value + this.properties.increment; + this.setOutputData(0, this.properties.value); + }; + z.registerNodeType("math/accumulate", q); + l.title = "Trigonometry"; + l.desc = "Sin Cos Tan"; + l.filter = "shader"; + l.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = 0); + var b = this.properties.amplitude, c = this.findInputSlot("amplitude"); + -1 != c && (b = this.getInputData(c)); + var d = this.properties.offset; + c = this.findInputSlot("offset"); + -1 != c && (d = this.getInputData(c)); + c = 0; + for (var e = this.outputs.length; c < e; ++c) { + switch(this.outputs[c].name) { + case "sin": + value = Math.sin(a); + break; + case "cos": + value = Math.cos(a); + break; + case "tan": + value = Math.tan(a); + break; + case "asin": + value = Math.asin(a); + break; + case "acos": + value = Math.acos(a); + break; + case "atan": + value = Math.atan(a); + } + this.setOutputData(c, b * value + d); + } + }; + l.prototype.onGetInputs = function() { + return [["v", "number"], ["amplitude", "number"], ["offset", "number"]]; + }; + l.prototype.onGetOutputs = function() { + return [["sin", "number"], ["cos", "number"], ["tan", "number"], ["asin", "number"], ["acos", "number"], ["atan", "number"]]; + }; + z.registerNodeType("math/trigonometry", l); + var r = function() { + this.addInputs("x", "number"); + this.addInputs("y", "number"); + this.addOutputs("", "number"); + this.properties = {x:1.0, y:1.0, formula:"x+y"}; + }; + r.title = "Formula"; + r.desc = "Compute safe formula"; + r.prototype.onExecute = function() { + var a = this.getInputData(0), b = this.getInputData(1); + null != a ? this.properties.x = a : a = this.properties.x; + null != b ? this.properties.y = b : b = this.properties.y; + a = math.eval(this.properties.formula, {x:a, y:b, T:this.graph.globaltime}); + this.setOutputData(0, a); + }; + r.prototype.onDrawBackground = function() { + this.outputs[0].label = this.properties.formula; + }; + r.prototype.onGetOutputs = function() { + return [["A-B", "number"], ["A*B", "number"], ["A/B", "number"]]; + }; + z.registerNodeType("math/formula", r); + w.title = "Vec2->XY"; + w.desc = "vector 2 to components"; + w.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1])); + }; + z.registerNodeType("math3d/vec2-to-xyz", w); + A.title = "XY->Vec2"; + A.desc = "components to vector2"; + A.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.x); + var b = this.getInputData(1); + null == b && (b = this.properties.y); + var c = this._data; + c[0] = a; + c[1] = b; + this.setOutputData(0, c); + }; + z.registerNodeType("math3d/xy-to-vec2", A); + D.title = "Vec3->XYZ"; + D.desc = "vector 3 to components"; + D.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2])); + }; + z.registerNodeType("math3d/vec3-to-xyz", D); + B.title = "XYZ->Vec3"; + B.desc = "components to vector3"; + B.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.x); + var b = this.getInputData(1); + null == b && (b = this.properties.y); + var c = this.getInputData(2); + null == c && (c = this.properties.z); + var d = this._data; + d[0] = a; + d[1] = b; + d[2] = c; + this.setOutputData(0, d); + }; + z.registerNodeType("math3d/xyz-to-vec3", B); + C.title = "Vec4->XYZW"; + C.desc = "vector 4 to components"; + C.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2]), this.setOutputData(3, a[3])); + }; + z.registerNodeType("math3d/vec4-to-xyzw", C); + E.title = "XYZW->Vec4"; + E.desc = "components to vector4"; + E.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.x); + var b = this.getInputData(1); + null == b && (b = this.properties.y); + var c = this.getInputData(2); + null == c && (c = this.properties.z); + var d = this.getInputData(3); + null == d && (d = this.properties.w); + var e = this._data; + e[0] = a; + e[1] = b; + e[2] = c; + e[3] = d; + this.setOutputData(0, e); + }; + z.registerNodeType("math3d/xyzw-to-vec4", E); + if (v.glMatrix) { + v = function() { + this.addInputs([["A", "quat"], ["B", "quat"], ["factor", "number"]]); + this.addOutput("slerp", "quat"); + this.addProperty("factor", 0.5); + this._value = quat.create(); + }; + r = function() { + this.addInputs([["A", "quat"], ["B", "quat"]]); + this.addOutput("A*B", "quat"); + this._value = quat.create(); + }; + var F = function() { + this.addInputs([["vec3", "vec3"], ["quat", "quat"]]); + this.addOutput("result", "vec3"); + this.properties = {vec:[0, 0, 1]}; + }, G = function() { + this.addInputs([["degrees", "number"], ["axis", "vec3"]]); + this.addOutput("quat", "quat"); + this.properties = {angle:90.0, axis:vec3.fromValues(0, 1, 0)}; + this._value = quat.create(); + }, H = function() { + this.addOutput("quat", "quat"); + this.properties = {x:0, y:0, z:0, w:1}; + this._value = quat.create(); + }; + H.title = "Quaternion"; + H.desc = "quaternion"; + H.prototype.onExecute = function() { + this._value[0] = this.properties.x; + this._value[1] = this.properties.y; + this._value[2] = this.properties.z; + this._value[3] = this.properties.w; + this.setOutputData(0, this._value); + }; + z.registerNodeType("math3d/quaternion", H); + G.title = "Rotation"; + G.desc = "quaternion rotation"; + G.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.angle); + var b = this.getInputData(1); + null == b && (b = this.properties.axis); + a = quat.setAxisAngle(this._value, b, 0.0174532925 * a); + this.setOutputData(0, a); + }; + z.registerNodeType("math3d/rotation", G); + F.title = "Rot. Vec3"; + F.desc = "rotate a point"; + F.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.vec); + var b = this.getInputData(1); + null == b ? this.setOutputData(a) : this.setOutputData(0, vec3.transformQuat(vec3.create(), a, b)); + }; + z.registerNodeType("math3d/rotate_vec3", F); + r.title = "Mult. Quat"; + r.desc = "rotate quaternion"; + r.prototype.onExecute = function() { + var a = this.getInputData(0); + if (null != a) { + var b = this.getInputData(1); + null != b && (a = quat.multiply(this._value, a, b), this.setOutputData(0, a)); + } + }; + z.registerNodeType("math3d/mult-quat", r); + v.title = "Quat Slerp"; + v.desc = "quaternion spherical interpolation"; + v.prototype.onExecute = function() { + var a = this.getInputData(0); + if (null != a) { + var b = this.getInputData(1); + if (null != b) { + var c = this.properties.factor; + null != this.getInputData(2) && (c = this.getInputData(2)); + a = quat.slerp(this._value, a, b, c); + this.setOutputData(0, a); + } + } + }; + z.registerNodeType("math3d/quat-slerp", v); + } +})(this); +(function(v) { + function c() { + this.addInput("sel", "boolean"); + this.addOutput("value", "number"); + this.properties = {A:0, B:1}; + this.size = [60, 20]; + } + v = v.LiteGraph; + c.title = "Selector"; + c.desc = "outputs A if selector is true, B if selector is false"; + c.prototype.onExecute = function() { + var c = this.getInputData(0); + if (void 0 !== c) { + for (var e = 1; e < this.inputs.length; e++) { + var p = this.inputs[e], n = this.getInputData(e); + void 0 !== n && (this.properties[p.name] = n); + } + e = this.properties.A; + p = this.properties.B; + this.setOutputData(0, c ? e : p); + } + }; + c.prototype.onGetInputs = function() { + return [["A", 0], ["B", 0]]; + }; + v.registerNodeType("logic/selector", c); +})(this); +(function(v) { + function c() { + this.inputs = []; + this.addOutput("frame", "image"); + this.properties = {url:""}; + } + function h() { + this.addInput("f", "number"); + this.addOutput("Color", "color"); + this.properties = {colorA:"#444444", colorB:"#44AAFF", colorC:"#44FFAA", colorD:"#FFFFFF"}; + } + function e() { + this.addInput("", "image"); + this.size = [200, 200]; + } + function p() { + this.addInputs([["img1", "image"], ["img2", "image"], ["fade", "number"]]); + this.addOutput("", "image"); + this.properties = {fade:0.5, width:512, height:512}; + } + function n() { + this.addInput("", "image"); + this.addOutput("", "image"); + this.properties = {width:256, height:256, x:0, y:0, scale:1.0}; + this.size = [50, 20]; + } + function u() { + this.addInput("t", "number"); + this.addOutputs([["frame", "image"], ["t", "number"], ["d", "number"]]); + this.properties = {url:""}; + } + function x() { + this.addOutput("Webcam", "image"); + this.properties = {}; + } + var g = v.LiteGraph; + c.title = "Image"; + c.desc = "Image loader"; + c.widgets = [{name:"load", text:"Load", type:"button"}]; + c.supported_extensions = ["jpg", "jpeg", "png", "gif"]; + c.prototype.onAdded = function() { + "" != this.properties.url && null == this.img && this.loadImage(this.properties.url); + }; + c.prototype.onDrawBackground = function(c) { + this.img && 5 < this.size[0] && 5 < this.size[1] && c.drawImage(this.img, 0, 0, this.size[0], this.size[1]); + }; + c.prototype.onExecute = function() { + this.img || (this.boxcolor = "#000"); + this.img && this.img.width ? this.setOutputData(0, this.img) : this.setOutputData(0, null); + this.img && this.img.dirty && (this.img.dirty = !1); + }; + c.prototype.onPropertyChanged = function(c, a) { + this.properties[c] = a; + "url" == c && "" != a && this.loadImage(a); + return !0; + }; + c.prototype.loadImage = function(c, a) { + if ("" == c) { + this.img = null; + } else { + this.img = document.createElement("img"); + "http://" == c.substr(0, 7) && g.proxy && (c = g.proxy + c.substr(7)); + this.img.src = c; + this.boxcolor = "#F95"; + var b = this; + this.img.onload = function() { + a && a(this); + b.trace("Image loaded, size: " + b.img.width + "x" + b.img.height); + this.dirty = !0; + b.boxcolor = "#9F9"; + b.setDirtyCanvas(!0); + }; + } + }; + c.prototype.onWidget = function(c, a) { + "load" == a.name && this.loadImage(this.properties.url); + }; + c.prototype.onDropFile = function(c) { + var a = this; + this._url && URL.revokeObjectURL(this._url); + this._url = URL.createObjectURL(c); + this.properties.url = this._url; + this.loadImage(this._url, function(b) { + a.size[1] = b.height / b.width * a.size[0]; + }); + }; + g.registerNodeType("graphics/image", c); + h.title = "Palette"; + h.desc = "Generates a color"; + h.prototype.onExecute = function() { + var c = []; + null != this.properties.colorA && c.push(hex2num(this.properties.colorA)); + null != this.properties.colorB && c.push(hex2num(this.properties.colorB)); + null != this.properties.colorC && c.push(hex2num(this.properties.colorC)); + null != this.properties.colorD && c.push(hex2num(this.properties.colorD)); + var a = this.getInputData(0); + null == a && (a = 0.5); + 1.0 < a ? a = 1.0 : 0.0 > a && (a = 0.0); + if (0 != c.length) { + var b = [0, 0, 0]; + if (0 == a) { + b = c[0]; + } else { + if (1 == a) { + b = c[c.length - 1]; + } else { + var d = (c.length - 1) * a; + a = c[Math.floor(d)]; + c = c[Math.floor(d) + 1]; + d -= Math.floor(d); + b[0] = a[0] * (1 - d) + c[0] * d; + b[1] = a[1] * (1 - d) + c[1] * d; + b[2] = a[2] * (1 - d) + c[2] * d; + } + } + for (var e in b) { + b[e] /= 255; + } + this.boxcolor = colorToString(b); + this.setOutputData(0, b); + } + }; + g.registerNodeType("color/palette", h); + e.title = "Frame"; + e.desc = "Frame viewerew"; + e.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"view", text:"View Image", type:"button"}]; + e.prototype.onDrawBackground = function(c) { + this.frame && c.drawImage(this.frame, 0, 0, this.size[0], this.size[1]); + }; + e.prototype.onExecute = function() { + this.frame = this.getInputData(0); + this.setDirtyCanvas(!0); + }; + e.prototype.onWidget = function(c, a) { + "resize" == a.name && this.frame ? (c = this.frame.width, a = this.frame.height, c || null == this.frame.videoWidth || (c = this.frame.videoWidth, a = this.frame.videoHeight), c && a && (this.size = [c, a]), this.setDirtyCanvas(!0, !0)) : "view" == a.name && this.show(); + }; + e.prototype.show = function() { + showElement && this.frame && showElement(this.frame); + }; + g.registerNodeType("graphics/frame", e); + p.title = "Image fade"; + p.desc = "Fades between images"; + p.widgets = [{name:"resizeA", text:"Resize to A", type:"button"}, {name:"resizeB", text:"Resize to B", type:"button"}]; + p.prototype.onAdded = function() { + this.createCanvas(); + var c = this.canvas.getContext("2d"); + c.fillStyle = "#000"; + c.fillRect(0, 0, this.properties.width, this.properties.height); + }; + p.prototype.createCanvas = function() { + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties.width; + this.canvas.height = this.properties.height; + }; + p.prototype.onExecute = function() { + var c = this.canvas.getContext("2d"); + this.canvas.width = this.canvas.width; + var a = this.getInputData(0); + null != a && c.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); + a = this.getInputData(2); + null == a ? a = this.properties.fade : this.properties.fade = a; + c.globalAlpha = a; + a = this.getInputData(1); + null != a && c.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); + c.globalAlpha = 1.0; + this.setOutputData(0, this.canvas); + this.setDirtyCanvas(!0); + }; + g.registerNodeType("graphics/imagefade", p); + n.title = "Crop"; + n.desc = "Crop Image"; + n.prototype.onAdded = function() { + this.createCanvas(); + }; + n.prototype.createCanvas = function() { + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties.width; + this.canvas.height = this.properties.height; + }; + n.prototype.onExecute = function() { + var c = this.getInputData(0); + c && (c.width ? (this.canvas.getContext("2d").drawImage(c, -this.properties.x, -this.properties.y, c.width * this.properties.scale, c.height * this.properties.scale), this.setOutputData(0, this.canvas)) : this.setOutputData(0, null)); + }; + n.prototype.onDrawBackground = function(c) { + this.flags.collapsed || this.canvas && c.drawImage(this.canvas, 0, 0, this.canvas.width, this.canvas.height, 0, 0, this.size[0], this.size[1]); + }; + n.prototype.onPropertyChanged = function(c, a) { + this.properties[c] = a; + "scale" == c ? (this.properties[c] = parseFloat(a), 0 == this.properties[c] && (this.trace("Error in scale"), this.properties[c] = 1.0)) : this.properties[c] = parseInt(a); + this.createCanvas(); + return !0; + }; + g.registerNodeType("graphics/cropImage", n); + u.title = "Video"; + u.desc = "Video playback"; + u.widgets = [{name:"play", text:"PLAY", type:"minibutton"}, {name:"stop", text:"STOP", type:"minibutton"}, {name:"demo", text:"Demo video", type:"button"}, {name:"mute", text:"Mute video", type:"button"}]; + u.prototype.onExecute = function() { + if (this.properties.url && (this.properties.url != this._video_url && this.loadVideo(this.properties.url), this._video && 0 != this._video.width)) { + var c = this.getInputData(0); + c && 0 <= c && 1.0 >= c && (this._video.currentTime = c * this._video.duration, this._video.pause()); + this._video.dirty = !0; + this.setOutputData(0, this._video); + this.setOutputData(1, this._video.currentTime); + this.setOutputData(2, this._video.duration); + this.setDirtyCanvas(!0); + } + }; + u.prototype.onStart = function() { + this.play(); + }; + u.prototype.onStop = function() { + this.stop(); + }; + u.prototype.loadVideo = function(c) { + this._video_url = c; + this._video = document.createElement("video"); + this._video.src = c; + this._video.type = "type=video/mp4"; + this._video.muted = !0; + this._video.autoplay = !0; + var a = this; + this._video.addEventListener("loadedmetadata", function(b) { + a.trace("Duration: " + this.duration + " seconds"); + a.trace("Size: " + this.videoWidth + "," + this.videoHeight); + a.setDirtyCanvas(!0); + this.width = this.videoWidth; + this.height = this.videoHeight; + }); + this._video.addEventListener("progress", function(a) { + }); + this._video.addEventListener("error", function(b) { + console.log("Error loading video: " + this.src); + a.trace("Error loading video: " + this.src); + if (this.error) { + switch(this.error.code) { + case this.error.MEDIA_ERR_ABORTED: + a.trace("You stopped the video."); + break; + case this.error.MEDIA_ERR_NETWORK: + a.trace("Network error - please try again later."); + break; + case this.error.MEDIA_ERR_DECODE: + a.trace("Video is broken.."); + break; + case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: + a.trace("Sorry, your browser can't play this video."); + } + } + }); + this._video.addEventListener("ended", function(b) { + a.trace("Ended."); + this.play(); + }); + }; + u.prototype.onPropertyChanged = function(c, a) { + this.properties[c] = a; + "url" == c && "" != a && this.loadVideo(a); + return !0; + }; + u.prototype.play = function() { + this._video && this._video.play(); + }; + u.prototype.playPause = function() { + this._video && (this._video.paused ? this.play() : this.pause()); + }; + u.prototype.stop = function() { + this._video && (this._video.pause(), this._video.currentTime = 0); + }; + u.prototype.pause = function() { + this._video && (this.trace("Video paused"), this._video.pause()); + }; + u.prototype.onWidget = function(c, a) { + }; + g.registerNodeType("graphics/video", u); + x.title = "Webcam"; + x.desc = "Webcam image"; + x.prototype.openStream = function() { + navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; + window.URL = window.URL || window.webkitURL; + if (navigator.getUserMedia) { + this._waiting_confirmation = !0; + navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(a) { + console.log("Webcam rejected", a); + c._webcam_stream = !1; + c.box_color = "red"; + }); + var c = this; + } + }; + x.prototype.onRemoved = function() { + this._webcam_stream && (this._webcam_stream.stop(), this._video = this._webcam_stream = null); + }; + x.prototype.streamReady = function(c) { + this._webcam_stream = c; + var a = this._video; + a || (a = document.createElement("video"), a.autoplay = !0, a.src = window.URL.createObjectURL(c), this._video = a, a.onloadedmetadata = function(a) { + console.log(a); + }); + }; + x.prototype.onExecute = function() { + null != this._webcam_stream || this._waiting_confirmation || this.openStream(); + this._video && this._video.videoWidth && (this._video.width = this._video.videoWidth, this._video.height = this._video.videoHeight, this.setOutputData(0, this._video)); + }; + x.prototype.getExtraMenuOptions = function(c) { + var a = this; + return [{content:a.properties.show ? "Hide Frame" : "Show Frame", callback:function() { + a.properties.show = !a.properties.show; + }}]; + }; + x.prototype.onDrawBackground = function(c) { + this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._video || (c.save(), c.drawImage(this._video, 0, 0, this.size[0], this.size[1]), c.restore()); + }; + g.registerNodeType("graphics/webcam", x); +})(this); +(function(v) { + var c = v.LiteGraph; + v.LGraphTexture = null; + if ("undefined" != typeof GL) { + var h = function() { + this.addOutput("Cubemap", "Cubemap"); + this.properties = {name:""}; + this.size = [r.image_preview_size, r.image_preview_size]; + }, e = function() { + this.addInput("in", "Texture"); + this.addOutput("out", "Texture"); + this.properties = {key_color:vec3.fromValues(0., 1., 0.), threshold:0.8, slope:0.2, precision:r.DEFAULT}; + e._shader || (e._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.pixel_shader)); + }, p = function() { + this.addOutput("Webcam", "Texture"); + this.properties = {texture_name:""}; + }, n = function() { + this.addInput("Texture", "Texture"); + this.addOutput("Filtered", "Texture"); + this.properties = {intensity:1, radius:5}; + }, u = function() { + this.addInput("Texture", "Texture"); + this.addInput("Iterations", "number"); + this.addInput("Intensity", "number"); + this.addOutput("Blurred", "Texture"); + this.properties = {intensity:1, iterations:1, preserve_aspect:!1, scale:[1, 1]}; + }, x = function() { + this.addInput("Texture", "Texture"); + this.addInput("Distance", "number"); + this.addInput("Range", "number"); + this.addOutput("Texture", "Texture"); + this.properties = {distance:100, range:50, only_depth:!1, high_precision:!1}; + this._uniforms = {u_texture:0, u_distance:100, u_range:50, u_camera_planes:null}; + }, g = function() { + this.addInput("Tex.", "Texture"); + this.addOutput("Edges", "Texture"); + this.properties = {invert:!0, factor:1, precision:r.DEFAULT}; + g._shader || (g._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, g.pixel_shader)); + }, k = function() { + this.addInput("A", "Texture"); + this.addInput("B", "Texture"); + this.addInput("Mixer", "Texture"); + this.addOutput("Texture", "Texture"); + this.properties = {precision:r.DEFAULT}; + k._shader || (k._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, k.pixel_shader)); + }, a = function() { + this.addInput("A", "color"); + this.addInput("B", "color"); + this.addOutput("Texture", "Texture"); + this.properties = {angle:0, scale:1, A:[0, 0, 0], B:[1, 1, 1], texture_size:32}; + a._shader || (a._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a.pixel_shader)); + this._uniforms = {u_angle:0, u_colorA:vec3.create(), u_colorB:vec3.create()}; + }, b = function() { + this.addInput("R", "Texture"); + this.addInput("G", "Texture"); + this.addInput("B", "Texture"); + this.addInput("A", "Texture"); + this.addOutput("Texture", "Texture"); + this.properties = {}; + b._shader || (b._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader)); + }, d = function() { + this.addInput("Texture", "Texture"); + this.addOutput("R", "Texture"); + this.addOutput("G", "Texture"); + this.addOutput("B", "Texture"); + this.addOutput("A", "Texture"); + this.properties = {}; + d._shader || (d._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, d.pixel_shader)); + }, f = function() { + this.addInput("Texture", "Texture"); + this.addInput("LUT", "Texture"); + this.addInput("Intensity", "number"); + this.addOutput("", "Texture"); + this.properties = {intensity:1, precision:r.DEFAULT, texture:null}; + f._shader || (f._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, f.pixel_shader)); + }, t = function() { + this.addInput("Image", "image"); + this.addOutput("", "Texture"); + this.properties = {}; + }, y = function() { + this.addInput("Texture", "Texture"); + this.addOutput("", "Texture"); + this.properties = {mipmap_offset:0, low_precision:!1}; + this._uniforms = {u_texture:0, u_mipmap_offset:this.properties.mipmap_offset}; + }, q = function() { + this.addInput("Texture", "Texture"); + this.addOutput("", "Texture"); + this.properties = {iterations:1, generate_mipmaps:!1, precision:r.DEFAULT}; + }, l = function() { + this.addInput("Texture", "Texture"); + this.addOutput("", "Texture"); + this.properties = {size:0, generate_mipmaps:!1, precision:r.DEFAULT}; + }, w = function() { + this.addInput("Texture", "Texture"); + this.properties = {additive:!1, antialiasing:!1, filter:!0, disable_alpha:!1, gamma:1.0}; + this.size[0] = 130; + }, A = function() { + this.addInput("in", "Texture"); + this.addInput("warp", "Texture"); + this.addInput("factor", "number"); + this.addOutput("out", "Texture"); + this.properties = {factor:0.01, precision:r.DEFAULT}; + }, D = function() { + this.addInput("in", "Texture"); + this.addInput("scale", "vec2"); + this.addInput("offset", "vec2"); + this.addOutput("out", "Texture"); + this.properties = {offset:vec2.fromValues(0, 0), scale:vec2.fromValues(1, 1), precision:r.DEFAULT}; + }, B = function() { + this.addOutput("Texture", "Texture"); + this.properties = {code:"", width:512, height:512}; + this.properties.code = "\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n//your code here\n\ngl_FragColor = vec4(color, 1.0);\n}\n"; + }, C = function() { + this.addInput("Texture", "Texture"); + this.addInput("TextureB", "Texture"); + this.addInput("value", "number"); + this.addOutput("Texture", "Texture"); + this.help = "

pixelcode must be vec3

\r\n\t\t\t

uvcode must be vec2, is optional

\r\n\t\t\t

uv: tex. coords

color: texture

colorB: textureB

time: scene time

value: input value

"; + this.properties = {value:1, uvcode:"", pixelcode:"color + colorB * value", precision:r.DEFAULT}; + }, E = function() { + this.addInput("Texture", "Texture"); + this.addOutput("", "Texture"); + this.properties = {name:""}; + }, z = function() { + this.addInput("Texture", "Texture"); + this.properties = {flipY:!1}; + this.size = [r.image_preview_size, r.image_preview_size]; + }, r = function() { + this.addOutput("Texture", "Texture"); + this.properties = {name:"", filter:!0}; + this.size = [r.image_preview_size, r.image_preview_size]; + }; + v.LGraphTexture = r; + r.title = "Texture"; + r.desc = "Texture"; + r.widgets_info = {name:{widget:"texture"}, filter:{widget:"checkbox"}}; + r.loadTextureCallback = null; + r.image_preview_size = 256; + r.PASS_THROUGH = 1; + r.COPY = 2; + r.LOW = 3; + r.HIGH = 4; + r.REUSE = 5; + r.DEFAULT = 2; + r.MODE_VALUES = {"pass through":r.PASS_THROUGH, copy:r.COPY, low:r.LOW, high:r.HIGH, reuse:r.REUSE, "default":r.DEFAULT}; + r.getTexturesContainer = function() { + return gl.textures; + }; + r.loadTexture = function(a, b) { + b = b || {}; + var d = a; + "http://" == d.substr(0, 7) && c.proxy && (d = c.proxy + d.substr(7)); + return r.getTexturesContainer()[a] = GL.Texture.fromURL(d, b); + }; + r.getTexture = function(a) { + var b = this.getTexturesContainer(); + if (!b) { + throw "Cannot load texture, container of textures not found"; + } + b = b[a]; + return !b && a && ":" != a[0] ? this.loadTexture(a) : b; + }; + r.getTargetTexture = function(a, b, c) { + if (!a) { + throw "LGraphTexture.getTargetTexture expects a reference texture"; + } + switch(c) { + case r.LOW: + c = gl.UNSIGNED_BYTE; + break; + case r.HIGH: + c = gl.HIGH_PRECISION_FORMAT; + break; + case r.REUSE: + return a; + default: + c = a ? a.type : gl.UNSIGNED_BYTE; + } + b && b.width == a.width && b.height == a.height && b.type == c || (b = new GL.Texture(a.width, a.height, {type:c, format:gl.RGBA, filter:gl.LINEAR})); + return b; + }; + r.getNoiseTexture = function() { + if (this._noise_texture) { + return this._noise_texture; + } + for (var a = new Uint8Array(1048576), b = 0; 1048576 > b; ++b) { + a[b] = 255 * Math.random(); + } + return this._noise_texture = a = GL.Texture.fromMemory(512, 512, a, {format:gl.RGBA, wrap:gl.REPEAT, filter:gl.NEAREST}); + }; + r.prototype.onDropFile = function(a, b, c) { + a ? ("string" == typeof a ? a = GL.Texture.fromURL(a) : -1 != b.toLowerCase().indexOf(".dds") ? a = GL.Texture.fromDDSInMemory(a) : (a = new Blob([c]), a = URL.createObjectURL(a), a = GL.Texture.fromURL(a)), this._drop_texture = a, this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); + }; + r.prototype.getExtraMenuOptions = function(a) { + var b = this; + if (this._drop_texture) { + return [{content:"Clear", callback:function() { + b._drop_texture = null; + b.properties.name = ""; + }}]; + } + }; + r.prototype.onExecute = function() { + var a = null; + this.isOutputConnected(1) && (a = this.getInputData(0)); + !a && this._drop_texture && (a = this._drop_texture); + !a && this.properties.name && (a = r.getTexture(this.properties.name)); + if (a) { + this._last_tex = a; + !1 === this.properties.filter ? a.setParameter(gl.TEXTURE_MAG_FILTER, gl.NEAREST) : a.setParameter(gl.TEXTURE_MAG_FILTER, gl.LINEAR); + this.setOutputData(0, a); + for (var b = 1; b < this.outputs.length; b++) { + var c = this.outputs[b]; + if (c) { + var d = null; + "width" == c.name ? d = a.width : "height" == c.name ? d = a.height : "aspect" == c.name && (d = a.width / a.height); + this.setOutputData(b, d); + } + } + } + }; + r.prototype.onResourceRenamed = function(a, b) { + this.properties.name == a && (this.properties.name = b); + }; + r.prototype.onDrawBackground = function(a) { + if (!(this.flags.collapsed || 20 >= this.size[1])) { + if (this._drop_texture && a.webgl) { + a.drawImage(this._drop_texture, 0, 0, this.size[0], this.size[1]); + } else { + if (this._last_preview_tex != this._last_tex) { + if (a.webgl) { + this._canvas = this._last_tex; + } else { + var b = r.generateLowResTexturePreview(this._last_tex); + if (!b) { + return; + } + this._last_preview_tex = this._last_tex; + this._canvas = cloneCanvas(b); + } + } + this._canvas && (a.save(), a.webgl || (a.translate(0, this.size[1]), a.scale(1, -1)), a.drawImage(this._canvas, 0, 0, this.size[0], this.size[1]), a.restore()); + } + } + }; + r.generateLowResTexturePreview = function(a) { + if (!a) { + return null; + } + var b = r.image_preview_size, c = a; + if (a.format == gl.DEPTH_COMPONENT) { + return null; + } + if (a.width > b || a.height > b) { + c = this._preview_temp_tex, this._preview_temp_tex || (this._preview_temp_tex = c = new GL.Texture(b, b, {minFilter:gl.NEAREST})), a.copyTo(c); + } + a = this._preview_canvas; + a || (this._preview_canvas = a = createCanvas(b, b)); + c && c.toCanvas(a); + return a; + }; + r.prototype.getResources = function(a) { + a[this.properties.name] = GL.Texture; + return a; + }; + r.prototype.onGetInputs = function() { + return [["in", "Texture"]]; + }; + r.prototype.onGetOutputs = function() { + return [["width", "number"], ["height", "number"], ["aspect", "number"]]; + }; + c.registerNodeType("texture/texture", r); + z.title = "Preview"; + z.desc = "Show a texture in the graph canvas"; + z.allow_preview = !1; + z.prototype.onDrawBackground = function(a) { + if (!this.flags.collapsed && (a.webgl || z.allow_preview)) { + var b = this.getInputData(0); + b && (b = !b.handle && a.webgl ? b : r.generateLowResTexturePreview(b), a.save(), this.properties.flipY && (a.translate(0, this.size[1]), a.scale(1, -1)), a.drawImage(b, 0, 0, this.size[0], this.size[1]), a.restore()); + } + }; + c.registerNodeType("texture/preview", z); + E.title = "Save"; + E.desc = "Save a texture in the repository"; + E.prototype.onExecute = function() { + var a = this.getInputData(0); + a && (this.properties.name && (r.storeTexture ? r.storeTexture(this.properties.name, a) : r.getTexturesContainer()[this.properties.name] = a), this.setOutputData(0, a)); + }; + c.registerNodeType("texture/save", E); + C.widgets_info = {uvcode:{widget:"textarea", height:100}, pixelcode:{widget:"textarea", height:100}, precision:{widget:"combo", values:r.MODE_VALUES}}; + C.title = "Operation"; + C.desc = "Texture shader operation"; + C.prototype.getExtraMenuOptions = function(a) { + var b = this; + return [{content:b.properties.show ? "Hide Texture" : "Show Texture", callback:function() { + b.properties.show = !b.properties.show; + }}]; + }; + C.prototype.onDrawBackground = function(a) { + this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._tex || this._tex.gl != a || (a.save(), a.drawImage(this._tex, 0, 0, this.size[0], this.size[1]), a.restore()); + }; + C.prototype.onExecute = function() { + var a = this.getInputData(0); + if (this.isOutputConnected(0)) { + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + var b = this.getInputData(1); + if (this.properties.uvcode || this.properties.pixelcode) { + var c = 512, d = 512; + a ? (c = a.width, d = a.height) : b && (c = b.width, d = b.height); + this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, d, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); + var e = ""; + this.properties.uvcode && (e = "uv = " + this.properties.uvcode, -1 != this.properties.uvcode.indexOf(";") && (e = this.properties.uvcode)); + var f = ""; + this.properties.pixelcode && (f = "result = " + this.properties.pixelcode, -1 != this.properties.pixelcode.indexOf(";") && (f = this.properties.pixelcode)); + var g = this._shader; + if (!g || this._shader_code != e + "|" + f) { + try { + this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, C.pixel_shader, {UV_CODE:e, PIXEL_CODE:f}), this.boxcolor = "#00FF00"; + } catch (I) { + console.log("Error compiling shader: ", I); + this.boxcolor = "#FF0000"; + return; + } + this.boxcolor = "#FF0000"; + this._shader_code = e + "|" + f; + g = this._shader; + } + if (g) { + this.boxcolor = "green"; + var l = this.getInputData(2); + null != l ? this.properties.value = l : l = parseFloat(this.properties.value); + var h = this.graph.getTime(); + this._tex.drawTo(function() { + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.CULL_FACE); + gl.disable(gl.BLEND); + a && a.bind(0); + b && b.bind(1); + var e = Mesh.getScreenQuad(); + g.uniforms({u_texture:0, u_textureB:1, value:l, texSize:[c, d], time:h}).draw(e); + }); + this.setOutputData(0, this._tex); + } else { + this.boxcolor = "red"; + } + } + } + } + }; + C.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 texSize;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\tuniform float value;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tUV_CODE;\n\r\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\r\n\t\t\t\tvec3 color = color4.rgb;\n\r\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\r\n\t\t\t\tvec3 colorB = color4B.rgb;\n\r\n\t\t\t\tvec3 result = color;\n\r\n\t\t\t\tfloat alpha = 1.0;\n\r\n\t\t\t\tPIXEL_CODE;\n\r\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/operation", C); + B.title = "Shader"; + B.desc = "Texture shader"; + B.widgets_info = {code:{type:"code"}, precision:{widget:"combo", values:r.MODE_VALUES}}; + B.prototype.onPropertyChanged = function(a, b) { + if ("code" == a && (a = this.getShader())) { + b = a.uniformInfo; + if (this.inputs) { + for (var c = {}, d = 0; d < this.inputs.length; ++d) { + var e = this.getInputInfo(d); + e && (b[e.name] && !c[e.name] ? c[e.name] = !0 : (this.removeInput(d), d--)); + } + } + for (d in b) { + if (e = a.uniformInfo[d], null !== e.loc && "time" != d) { + if (this._shader.samplers[d]) { + b = "texture"; + } else { + switch(e.size) { + case 1: + b = "number"; + break; + case 2: + b = "vec2"; + break; + case 3: + b = "vec3"; + break; + case 4: + b = "vec4"; + break; + case 9: + b = "mat3"; + break; + case 16: + b = "mat4"; + break; + default: + continue; + } + } + c = this.findInputSlot(d); + if (-1 != c && (e = this.getInputInfo(c))) { + if (e.type == b) { + continue; + } + this.removeInput(c, b); + } + this.addInput(d, b); + } + } + } + }; + B.prototype.getShader = function() { + if (this._shader && this._shader_code == this.properties.code) { + return this._shader; + } + this._shader_code = this.properties.code; + this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, B.pixel_shader + this.properties.code), this.boxcolor = "green"; + return this._shader; + }; + B.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.getShader(); + if (a) { + for (var b = 0; b < this.inputs.length; ++b) { + var c = this.getInputInfo(b), d = this.getInputData(b); + null != d && (d.constructor === GL.Texture && (d.bind(slot), d = slot, slot++), a.setUniform(c.name, d)); + } + this._tex && this._tex.width == this.properties.width && this._tex.height == this.properties.height || (this._tex = new GL.Texture(this.properties.width, this.properties.height, {format:gl.RGBA, filter:gl.LINEAR})); + var e = this._tex, f = this.graph.getTime(); + e.drawTo(function() { + a.uniforms({texSize:[e.width, e.height], time:f}).draw(Mesh.getScreenQuad()); + }); + this.setOutputData(0, this._tex); + } + } + }; + B.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\t"; + c.registerNodeType("texture/shader", B); + D.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + D.title = "Scale/Offset"; + D.desc = "Applies an scaling and offseting"; + D.prototype.onExecute = function() { + var a = this.getInputData(0); + if (this.isOutputConnected(0) && a) { + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + var b = a.width, c = a.height, d = this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT; + this.precision === r.DEFAULT && (d = a.type); + this._tex && this._tex.width == b && this._tex.height == c && this._tex.type == d || (this._tex = new GL.Texture(b, c, {type:d, format:gl.RGBA, filter:gl.LINEAR})); + var e = this._shader; + e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, D.pixel_shader)); + var f = this.getInputData(1); + f ? (this.properties.scale[0] = f[0], this.properties.scale[1] = f[1]) : f = this.properties.scale; + var g = this.getInputData(2); + g ? (this.properties.offset[0] = g[0], this.properties.offset[1] = g[1]) : g = this.properties.offset; + this._tex.drawTo(function() { + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.CULL_FACE); + gl.disable(gl.BLEND); + a.bind(0); + var b = Mesh.getScreenQuad(); + e.uniforms({u_texture:0, u_scale:f, u_offset:g}).draw(b); + }); + this.setOutputData(0, this._tex); + } + } + }; + D.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 u_scale;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv = uv / u_scale - u_offset;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/scaleOffset", D); + A.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + A.title = "Warp"; + A.desc = "Texture warp operation"; + A.prototype.onExecute = function() { + var a = this.getInputData(0); + if (this.isOutputConnected(0)) { + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + var b = this.getInputData(1), c = 512, d = 512; + a ? (c = a.width, d = a.height) : b && (c = b.width, d = b.height); + this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, d, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); + var e = this._shader; + e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, A.pixel_shader)); + var f = this.getInputData(2); + null != f ? this.properties.factor = f : f = parseFloat(this.properties.factor); + this._tex.drawTo(function() { + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.CULL_FACE); + gl.disable(gl.BLEND); + a && a.bind(0); + b && b.bind(1); + var c = Mesh.getScreenQuad(); + e.uniforms({u_texture:0, u_textureB:1, u_factor:f}).draw(c); + }); + this.setOutputData(0, this._tex); + } + } + }; + A.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv += ( texture2D(u_textureB, uv).rg - vec2(0.5)) * u_factor;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/warp", A); + w.title = "to Viewport"; + w.desc = "Texture to viewport"; + w.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a) { + this.properties.disable_alpha ? gl.disable(gl.BLEND) : (gl.enable(gl.BLEND), this.properties.additive ? gl.blendFunc(gl.SRC_ALPHA, gl.ONE) : gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA)); + gl.disable(gl.DEPTH_TEST); + var b = this.properties.gamma || 1.0; + this.isInputConnected(1) && (b = this.getInputData(1)); + a.setParameter(gl.TEXTURE_MAG_FILTER, this.properties.filter ? gl.LINEAR : gl.NEAREST); + if (this.properties.antialiasing) { + w._shader || (w._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, w.aa_pixel_shader)); + gl.getViewport(); + var c = Mesh.getScreenQuad(); + a.bind(0); + w._shader.uniforms({u_texture:0, uViewportSize:[a.width, a.height], u_igamma:1 / b, inverseVP:[1 / a.width, 1 / a.height]}).draw(c); + } else { + 1.0 != b ? (w._gamma_shader || (w._gamma_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.gamma_pixel_shader)), a.toViewport(w._gamma_shader, {u_texture:0, u_igamma:1 / b})) : a.toViewport(); + } + } + }; + w.prototype.onGetInputs = function() { + return [["gamma", "number"]]; + }; + w.aa_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 uViewportSize;\n\r\n\t\t\tuniform vec2 inverseVP;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\t#define FXAA_REDUCE_MIN (1.0/ 128.0)\n\r\n\t\t\t#define FXAA_REDUCE_MUL (1.0 / 8.0)\n\r\n\t\t\t#define FXAA_SPAN_MAX 8.0\n\r\n\t\t\t\n\r\n\t\t\t/* from mitsuhiko/webgl-meincraft based on the code on geeks3d.com */\n\r\n\t\t\tvec4 applyFXAA(sampler2D tex, vec2 fragCoord)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\t/*vec2 inverseVP = vec2(1.0 / uViewportSize.x, 1.0 / uViewportSize.y);*/\n\r\n\t\t\t\tvec3 rgbNW = texture2D(tex, (fragCoord + vec2(-1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbNE = texture2D(tex, (fragCoord + vec2(1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSW = texture2D(tex, (fragCoord + vec2(-1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSE = texture2D(tex, (fragCoord + vec2(1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbM = texture2D(tex, fragCoord * inverseVP).xyz;\n\r\n\t\t\t\tvec3 luma = vec3(0.299, 0.587, 0.114);\n\r\n\t\t\t\tfloat lumaNW = dot(rgbNW, luma);\n\r\n\t\t\t\tfloat lumaNE = dot(rgbNE, luma);\n\r\n\t\t\t\tfloat lumaSW = dot(rgbSW, luma);\n\r\n\t\t\t\tfloat lumaSE = dot(rgbSE, luma);\n\r\n\t\t\t\tfloat lumaM = dot(rgbM, luma);\n\r\n\t\t\t\tfloat lumaMin = min(lumaM, min(min(lumaNW, lumaNE), min(lumaSW, lumaSE)));\n\r\n\t\t\t\tfloat lumaMax = max(lumaM, max(max(lumaNW, lumaNE), max(lumaSW, lumaSE)));\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec2 dir;\n\r\n\t\t\t\tdir.x = -((lumaNW + lumaNE) - (lumaSW + lumaSE));\n\r\n\t\t\t\tdir.y = ((lumaNW + lumaSW) - (lumaNE + lumaSE));\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat dirReduce = max((lumaNW + lumaNE + lumaSW + lumaSE) * (0.25 * FXAA_REDUCE_MUL), FXAA_REDUCE_MIN);\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat rcpDirMin = 1.0 / (min(abs(dir.x), abs(dir.y)) + dirReduce);\n\r\n\t\t\t\tdir = min(vec2(FXAA_SPAN_MAX, FXAA_SPAN_MAX), max(vec2(-FXAA_SPAN_MAX, -FXAA_SPAN_MAX), dir * rcpDirMin)) * inverseVP;\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec3 rgbA = 0.5 * (texture2D(tex, fragCoord * inverseVP + dir * (1.0 / 3.0 - 0.5)).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * (2.0 / 3.0 - 0.5)).xyz);\n\r\n\t\t\t\tvec3 rgbB = rgbA * 0.5 + 0.25 * (texture2D(tex, fragCoord * inverseVP + dir * -0.5).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * 0.5).xyz);\n\r\n\t\t\t\t\n\r\n\t\t\t\t//return vec4(rgbA,1.0);\n\r\n\t\t\t\tfloat lumaB = dot(rgbB, luma);\n\r\n\t\t\t\tif ((lumaB < lumaMin) || (lumaB > lumaMax))\n\r\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\r\n\t\t\t\tif(u_igamma != 1.0)\n\r\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\r\n\t\t\t\treturn color;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\r\n\t\t\t}\n\r\n\t\t\t"; + w.gamma_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\r\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\r\n\t\t\t gl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/toviewport", w); + l.title = "Copy"; + l.desc = "Copy Texture"; + l.widgets_info = {size:{widget:"combo", values:[0, 32, 64, 128, 256, 512, 1024, 2048]}, precision:{widget:"combo", values:r.MODE_VALUES}}; + l.prototype.onExecute = function() { + var a = this.getInputData(0); + if ((a || this._temp_texture) && this.isOutputConnected(0)) { + if (a) { + var b = a.width, c = a.height; + 0 != this.properties.size && (c = b = this.properties.size); + var d = this._temp_texture, e = a.type; + this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); + d && d.width == b && d.height == c && d.type == e || (d = gl.LINEAR, this.properties.generate_mipmaps && isPowerOfTwo(b) && isPowerOfTwo(c) && (d = gl.LINEAR_MIPMAP_LINEAR), this._temp_texture = new GL.Texture(b, c, {type:e, format:gl.RGBA, minFilter:d, magFilter:gl.LINEAR})); + a.copyTo(this._temp_texture); + this.properties.generate_mipmaps && (this._temp_texture.bind(0), gl.generateMipmap(this._temp_texture.texture_type), this._temp_texture.unbind(0)); + } + this.setOutputData(0, this._temp_texture); + } + }; + c.registerNodeType("texture/copy", l); + q.title = "Downsample"; + q.desc = "Downsample Texture"; + q.widgets_info = {iterations:{type:"number", step:1, precision:0, min:1}, precision:{widget:"combo", values:r.MODE_VALUES}}; + q.prototype.onExecute = function() { + var a = this.getInputData(0); + if ((a || this._temp_texture) && this.isOutputConnected(0) && a && a.texture_type === GL.TEXTURE_2D) { + var b = q._shader; + b || (q._shader = b = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, q.pixel_shader)); + var c = a.width | 0, d = a.height | 0, e = a.type; + this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); + var f = this.properties.iterations || 1, g = a, l = []; + e = {type:e, format:a.format}; + var h = vec2.create(), k = {u_offset:h}; + this._texture && GL.Texture.releaseTemporary(this._texture); + for (var w = 0; w < f; ++w) { + h[0] = 1 / c; + h[1] = 1 / d; + c = c >> 1 || 0; + d = d >> 1 || 0; + a = GL.Texture.getTemporary(c, d, e); + l.push(a); + g.setParameter(GL.TEXTURE_MAG_FILTER, GL.NEAREST); + g.copyTo(a, b, k); + if (1 == c && 1 == d) { + break; + } + g = a; + } + this._texture = l.pop(); + for (w = 0; w < l.length; ++w) { + GL.Texture.releaseTemporary(l[w]); + } + this.properties.generate_mipmaps && (this._texture.bind(0), gl.generateMipmap(this._texture.texture_type), this._texture.unbind(0)); + this.setOutputData(0, this._texture); + } + }; + q.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, 0.0 ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( 0.0, u_offset.y ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, u_offset.y ) );\n\r\n\t\t\t gl_FragColor = color * 0.25;\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/downsample", q); + y.title = "Average"; + y.desc = "Compute a partial average (32 random samples) of a texture and stores it as a 1x1 pixel texture"; + y.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a && this.isOutputConnected(0)) { + if (!y._shader) { + y._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, y.pixel_shader); + for (var b = new Float32Array(32), c = 0; 32 > c; ++c) { + b[c] = Math.random(); + } + y._shader.uniforms({u_samples_a:b.subarray(0, 16), u_samples_b:b.subarray(16, 32)}); + } + b = this._temp_texture; + c = this.properties.low_precision ? gl.UNSIGNED_BYTE : a.type; + b && b.type == c || (this._temp_texture = new GL.Texture(1, 1, {type:c, format:gl.RGBA, filter:gl.NEAREST})); + var d = y._shader, e = this._uniforms; + e.u_mipmap_offset = this.properties.mipmap_offset; + this._temp_texture.drawTo(function() { + a.toViewport(d, e); + }); + this.setOutputData(0, this._temp_texture); + } + }; + y.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform mat4 u_samples_a;\n\r\n\t\t\tuniform mat4 u_samples_b;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_mipmap_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\r\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\r\n\t\t\t\t\t{\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t}\n\r\n\t\t\t gl_FragColor = color * 0.03125;\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/average", y); + t.title = "Image to Texture"; + t.desc = "Uploads an image to the GPU"; + t.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a) { + var b = a.videoWidth || a.width, c = a.videoHeight || a.height; + if (a.gltexture) { + this.setOutputData(0, a.gltexture); + } else { + var d = this._temp_texture; + d && d.width == b && d.height == c || (this._temp_texture = new GL.Texture(b, c, {format:gl.RGBA, filter:gl.LINEAR})); + try { + this._temp_texture.uploadImage(a); + } catch (J) { + console.error("image comes from an unsafe location, cannot be uploaded to webgl"); + return; + } + this.setOutputData(0, this._temp_texture); + } + } + }; + c.registerNodeType("texture/imageToTexture", t); + f.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + f.title = "LUT"; + f.desc = "Apply LUT to Texture"; + f.widgets_info = {texture:{widget:"texture"}}; + f.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.getInputData(0); + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + if (a) { + var b = this.getInputData(1); + b || (b = r.getTexture(this.properties.texture)); + if (b) { + b.bind(0); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); + gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); + gl.bindTexture(gl.TEXTURE_2D, null); + var c = this.properties.intensity; + this.isInputConnected(2) && (this.properties.intensity = c = this.getInputData(2)); + this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + this._tex.drawTo(function() { + b.bind(1); + a.toViewport(f._shader, {u_texture:0, u_textureB:1, u_amount:c}); + }); + this.setOutputData(0, this._tex); + } else { + this.setOutputData(0, a); + } + } + } + } + }; + f.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform float u_amount;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\r\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\r\n\t\t\t\t mediump vec2 quad1;\n\r\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\r\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\r\n\t\t\t\t mediump vec2 quad2;\n\r\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\r\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\r\n\t\t\t\t highp vec2 texPos1;\n\r\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t highp vec2 texPos2;\n\r\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\r\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\r\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\r\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/LUT", f); + d.title = "Texture to Channels"; + d.desc = "Split texture channels"; + d.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a) { + this._channels || (this._channels = Array(4)); + for (var b = 0, c = 0; 4 > c; c++) { + this.isOutputConnected(c) ? (this._channels[c] && this._channels[c].width == a.width && this._channels[c].height == a.height && this._channels[c].type == a.type || (this._channels[c] = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})), b++) : this._channels[c] = null; + } + if (b) { + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var e = Mesh.getScreenQuad(), f = d._shader, g = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; + for (c = 0; 4 > c; c++) { + this._channels[c] && (this._channels[c].drawTo(function() { + a.bind(0); + f.uniforms({u_texture:0, u_mask:g[c]}).draw(e); + }), this.setOutputData(c, this._channels[c])); + } + } + } + }; + d.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec4 u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/textureChannels", d); + b.title = "Channels to Texture"; + b.desc = "Split texture channels"; + b.prototype.onExecute = function() { + var a = [this.getInputData(0), this.getInputData(1), this.getInputData(2), this.getInputData(3)]; + if (a[0] && a[1] && a[2] && a[3]) { + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var c = Mesh.getScreenQuad(), d = b._shader; + this._tex = r.getTargetTexture(a[0], this._tex); + this._tex.drawTo(function() { + a[0].bind(0); + a[1].bind(1); + a[2].bind(2); + a[3].bind(3); + d.uniforms({u_textureR:0, u_textureG:1, u_textureB:2, u_textureA:3}).draw(c); + }); + this.setOutputData(0, this._tex); + } + }; + b.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureR;\n\r\n\t\t\tuniform sampler2D u_textureG;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( \r\n\t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/channelsTexture", b); + a.title = "Gradient"; + a.desc = "Generates a gradient"; + a["@A"] = {type:"color"}; + a["@B"] = {type:"color"}; + a["@texture_size"] = {type:"enum", values:[32, 64, 128, 256, 512]}; + a.prototype.onExecute = function() { + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var b = GL.Mesh.getScreenQuad(), c = a._shader, d = this.getInputData(0); + d || (d = this.properties.A); + var e = this.getInputData(1); + e || (e = this.properties.B); + for (var f = 2; f < this.inputs.length; f++) { + var g = this.inputs[f], l = this.getInputData(f); + void 0 !== l && (this.properties[g.name] = l); + } + var h = this._uniforms; + this._uniforms.u_angle = this.properties.angle * DEG2RAD; + this._uniforms.u_scale = this.properties.scale; + vec3.copy(h.u_colorA, d); + vec3.copy(h.u_colorB, e); + d = parseInt(this.properties.texture_size); + this._tex && this._tex.width == d || (this._tex = new GL.Texture(d, d, {format:gl.RGB, filter:gl.LINEAR})); + this._tex.drawTo(function() { + c.uniforms(h).draw(b); + }); + this.setOutputData(0, this._tex); + }; + a.prototype.onGetInputs = function() { + return [["angle", "number"], ["scale", "number"]]; + }; + a.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_angle;\n\r\n\t\t\tuniform float u_scale;\n\r\n\t\t\tuniform vec3 u_colorA;\n\r\n\t\t\tuniform vec3 u_colorB;\n\r\n\t\t\t\n\r\n\t\t\tvec2 rotate(vec2 v, float angle)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec2 result;\n\r\n\t\t\t\tfloat _cos = cos(angle);\n\r\n\t\t\t\tfloat _sin = sin(angle);\n\r\n\t\t\t\tresult.x = v.x * _cos - v.y * _sin;\n\r\n\t\t\t\tresult.y = v.x * _sin + v.y * _cos;\n\r\n\t\t\t\treturn result;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat f = (rotate(u_scale * (v_coord - vec2(0.5)), u_angle) + vec2(0.5)).x;\n\r\n\t\t\t\tvec3 color = mix(u_colorA,u_colorB,clamp(f,0.0,1.0));\n\r\n\t\t\t gl_FragColor = vec4(color,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/gradient", a); + k.title = "Mix"; + k.desc = "Generates a texture mixing two textures"; + k.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + k.prototype.onExecute = function() { + var a = this.getInputData(0); + if (this.isOutputConnected(0)) { + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + var b = this.getInputData(1), c = this.getInputData(2); + if (a && b && c) { + this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var d = Mesh.getScreenQuad(), e = k._shader; + this._tex.drawTo(function() { + a.bind(0); + b.bind(1); + c.bind(2); + e.uniforms({u_textureA:0, u_textureB:1, u_textureMix:2}).draw(d); + }); + this.setOutputData(0, this._tex); + } + } + } + }; + k.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureMix;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = mix( texture2D(u_textureA, v_coord), texture2D(u_textureB, v_coord), texture2D(u_textureMix, v_coord) );\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/mix", k); + g.title = "Edges"; + g.desc = "Detects edges"; + g.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + g.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.getInputData(0); + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + if (a) { + this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var b = Mesh.getScreenQuad(), c = g._shader, d = this.properties.invert, e = this.properties.factor; + this._tex.drawTo(function() { + a.bind(0); + c.uniforms({u_texture:0, u_isize:[1 / a.width, 1 / a.height], u_factor:e, u_invert:d ? 1 : 0}).draw(b); + }); + this.setOutputData(0, this._tex); + } + } + } + }; + g.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_isize;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 up = texture2D(u_texture, v_coord + u_isize * vec2(0.0,1.0) );\n\r\n\t\t\t\tvec4 down = texture2D(u_texture, v_coord + u_isize * vec2(0.0,-1.0) );\n\r\n\t\t\t\tvec4 left = texture2D(u_texture, v_coord + u_isize * vec2(1.0,0.0) );\n\r\n\t\t\t\tvec4 right = texture2D(u_texture, v_coord + u_isize * vec2(-1.0,0.0) );\n\r\n\t\t\t\tvec4 diff = abs(center - up) + abs(center - down) + abs(center - left) + abs(center - right);\n\r\n\t\t\t\tdiff *= u_factor;\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tdiff.xyz = vec3(1.0) - diff.xyz;\n\r\n\t\t\t gl_FragColor = vec4( diff.xyz, center.a );\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/edges", g); + x.title = "Depth Range"; + x.desc = "Generates a texture with a depth range"; + x.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.getInputData(0); + if (a) { + var b = gl.UNSIGNED_BYTE; + this.properties.high_precision && (b = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); + this._temp_texture && this._temp_texture.type == b && this._temp_texture.width == a.width && this._temp_texture.height == a.height || (this._temp_texture = new GL.Texture(a.width, a.height, {type:b, format:gl.RGBA, filter:gl.LINEAR})); + var c = this._uniforms; + b = this.properties.distance; + this.isInputConnected(1) && (b = this.getInputData(1), this.properties.distance = b); + var d = this.properties.range; + this.isInputConnected(2) && (d = this.getInputData(2), this.properties.range = d); + c.u_distance = b; + c.u_range = d; + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var e = Mesh.getScreenQuad(); + x._shader || (x._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, x.pixel_shader), x._shader_onlydepth = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, x.pixel_shader, {ONLY_DEPTH:""})); + var f = this.properties.only_depth ? x._shader_onlydepth : x._shader; + b = null; + b = a.near_far_planes ? a.near_far_planes : window.LS && LS.Renderer._main_camera ? LS.Renderer._main_camera._uniforms.u_camera_planes : [0.1, 1000]; + c.u_camera_planes = b; + this._temp_texture.drawTo(function() { + a.bind(0); + f.uniforms(c).draw(e); + }); + this.setOutputData(0, this._temp_texture); + } + } + }; + x.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_distance;\n\r\n\t\t\tuniform float u_range;\n\r\n\t\t\t\n\r\n\t\t\tfloat LinearDepth()\n\r\n\t\t\t{\n\r\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\r\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\r\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\r\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\r\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat depth = LinearDepth();\n\r\n\t\t\t\t#ifdef ONLY_DEPTH\n\r\n\t\t\t\t gl_FragColor = vec4(depth);\n\r\n\t\t\t\t#else\n\r\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\r\n\t\t\t\t\tfloat dof = 1.0;\n\r\n\t\t\t\t\tif(diff <= u_range)\n\r\n\t\t\t\t\t\tdof = diff / u_range;\n\r\n\t\t\t\t gl_FragColor = vec4(dof);\n\r\n\t\t\t\t#endif\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/depth_range", x); + u.title = "Blur"; + u.desc = "Blur a texture"; + u.max_iterations = 20; + u.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a && this.isOutputConnected(0)) { + var b = this._temp_texture; + b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR}), this._final_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); + b = this.properties.iterations; + this.isInputConnected(1) && (b = this.getInputData(1), this.properties.iterations = b); + b = Math.min(Math.floor(b), u.max_iterations); + if (0 == b) { + this.setOutputData(0, a); + } else { + var d = this.properties.intensity; + this.isInputConnected(2) && (d = this.getInputData(2), this.properties.intensity = d); + var e = c.camera_aspect; + e || void 0 === window.gl || (e = gl.canvas.height / gl.canvas.width); + e || (e = 1); + e = this.properties.preserve_aspect ? e : 1; + for (var f = this.properties.scale || [1, 1], g = 0; g < b; ++g) { + a.applyBlur(e * f[0] * g, f[1] * g, d, this._temp_texture, this._final_texture), a = this._final_texture; + } + this.setOutputData(0, this._final_texture); + } + } + }; + u.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t vec4 sum = vec4(0.0);\n\r\n\t\t\t vec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -1.0) * 0.15/0.98;\n\r\n\t\t\t sum += center * 0.16/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 1.0) * 0.15/0.98;\n\r\n\t\t\t gl_FragColor = u_intensity * sum;\n\r\n\t\t\t /*gl_FragColor.a = center.a*/;\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("texture/blur", u); + n.title = "Kuwahara Filter"; + n.desc = "Filters a texture giving an artistic oil canvas painting"; + n.max_radius = 10; + n._shaders = []; + n.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a && this.isOutputConnected(0)) { + var b = this._temp_texture; + b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); + b = this.properties.radius; + b = Math.min(Math.floor(b), n.max_radius); + if (0 == b) { + this.setOutputData(0, a); + } else { + var d = this.properties.intensity, e = c.camera_aspect; + e || void 0 === window.gl || (e = gl.canvas.height / gl.canvas.width); + e || (e = 1); + e = this.properties.preserve_aspect ? e : 1; + n._shaders[b] || (n._shaders[b] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, n.pixel_shader, {RADIUS:b.toFixed(0)})); + var f = n._shaders[b], g = GL.Mesh.getScreenQuad(); + a.bind(0); + this._temp_texture.drawTo(function() { + f.uniforms({u_texture:0, u_intensity:d, u_resolution:[a.width, a.height], u_iResolution:[1 / a.width, 1 / a.height]}).draw(g); + }); + this.setOutputData(0, this._temp_texture); + } + } + }; + n.pixel_shader = "\n\r\n\tprecision highp float;\n\r\n\tvarying vec2 v_coord;\n\r\n\tuniform sampler2D u_texture;\n\r\n\tuniform float u_intensity;\n\r\n\tuniform vec2 u_resolution;\n\r\n\tuniform vec2 u_iResolution;\n\r\n\t#ifndef RADIUS\n\r\n\t\t#define RADIUS 7\n\r\n\t#endif\n\r\n\tvoid main() {\n\r\n\t\n\r\n\t\tconst int radius = RADIUS;\n\r\n\t\tvec2 fragCoord = v_coord;\n\r\n\t\tvec2 src_size = u_iResolution;\n\r\n\t\tvec2 uv = v_coord;\n\r\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\r\n\t\tint i;\n\r\n\t\tint j;\n\r\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\r\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\r\n\t\tvec3 c;\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm0 += c;\n\r\n\t\t\t\ts0 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm1 += c;\n\r\n\t\t\t\ts1 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm2 += c;\n\r\n\t\t\t\ts2 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm3 += c;\n\r\n\t\t\t\ts3 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfloat min_sigma2 = 1e+2;\n\r\n\t\tm0 /= n;\n\r\n\t\ts0 = abs(s0 / n - m0 * m0);\n\r\n\t\t\n\r\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm1 /= n;\n\r\n\t\ts1 = abs(s1 / n - m1 * m1);\n\r\n\t\t\n\r\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm2 /= n;\n\r\n\t\ts2 = abs(s2 / n - m2 * m2);\n\r\n\t\t\n\r\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm3 /= n;\n\r\n\t\ts3 = abs(s3 / n - m3 * m3);\n\r\n\t\t\n\r\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\r\n\t\t}\n\r\n\t}\n\r\n\t"; + c.registerNodeType("texture/kuwahara", n); + p.title = "Webcam"; + p.desc = "Webcam texture"; + p.prototype.openStream = function() { + navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; + window.URL = window.URL || window.webkitURL; + if (navigator.getUserMedia) { + this._waiting_confirmation = !0; + var a = this; + navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(b) { + console.log("Webcam rejected", b); + a._webcam_stream = !1; + a.box_color = "red"; + }); + } + }; + p.prototype.streamReady = function(a) { + this._webcam_stream = a; + var b = this._video; + b || (b = document.createElement("video"), b.autoplay = !0, b.src = window.URL.createObjectURL(a), this._video = b, b.onloadedmetadata = function(a) { + console.log(a); + }); + }; + p.prototype.onRemoved = function() { + this._webcam_stream && (this._webcam_stream.stop(), this._video = this._webcam_stream = null); + }; + p.prototype.onDrawBackground = function(a) { + this.flags.collapsed || 20 >= this.size[1] || !this._video || (a.save(), a.webgl ? this._temp_texture && a.drawImage(this._temp_texture, 0, 0, this.size[0], this.size[1]) : (a.translate(0, this.size[1]), a.scale(1, -1), a.drawImage(this._video, 0, 0, this.size[0], this.size[1])), a.restore()); + }; + p.prototype.onExecute = function() { + null != this._webcam_stream || this._waiting_confirmation || this.openStream(); + if (this._video && this._video.videoWidth) { + var a = this._video.videoWidth, b = this._video.videoHeight, c = this._temp_texture; + c && c.width == a && c.height == b || (this._temp_texture = new GL.Texture(a, b, {format:gl.RGB, filter:gl.LINEAR})); + this._temp_texture.uploadImage(this._video); + this.properties.texture_name && (r.getTexturesContainer()[this.properties.texture_name] = this._temp_texture); + this.setOutputData(0, this._temp_texture); + } + }; + c.registerNodeType("texture/webcam", p); + e.title = "Matte"; + e.desc = "Extracts background"; + e.widgets_info = {key_color:{widget:"color"}, precision:{widget:"combo", values:r.MODE_VALUES}}; + e.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.getInputData(0); + if (this.properties.precision === r.PASS_THROUGH) { + this.setOutputData(0, a); + } else { + if (a) { + this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + this._uniforms || (this._uniforms = {u_texture:0, u_key_color:this.properties.key_color, u_threshold:1, u_slope:1}); + var b = this._uniforms, c = Mesh.getScreenQuad(), d = e._shader; + b.u_key_color = this.properties.key_color; + b.u_threshold = this.properties.threshold; + b.u_slope = this.properties.slope; + this._tex.drawTo(function() { + a.bind(0); + d.uniforms(b).draw(c); + }); + this.setOutputData(0, this._tex); + } + } + } + }; + e.pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec3 u_key_color;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tuniform float u_slope;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec3 color = texture2D( u_texture, v_coord ).xyz;\n\r\n\t\t\t\tfloat diff = length( normalize(color) - normalize(u_key_color) );\n\r\n\t\t\t\tfloat edge = u_threshold * (1.0 - u_slope);\n\r\n\t\t\t\tfloat alpha = smoothstep( edge, u_threshold, diff);\n\r\n\t\t\t\tgl_FragColor = vec4( color, alpha );\n\r\n\t\t\t}"; + c.registerNodeType("texture/matte", e); + h.title = "Cubemap"; + h.prototype.onDropFile = function(a, b, c) { + a ? (this._drop_texture = "string" == typeof a ? GL.Texture.fromURL(a) : GL.Texture.fromDDSInMemory(a), this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); + }; + h.prototype.onExecute = function() { + if (this._drop_texture) { + this.setOutputData(0, this._drop_texture); + } else { + if (this.properties.name) { + var a = r.getTexture(this.properties.name); + a && (this._last_tex = a, this.setOutputData(0, a)); + } + } + }; + h.prototype.onDrawBackground = function(a) { + this.flags.collapsed || 20 >= this.size[1] || !a.webgl || gl.meshes.cube || (gl.meshes.cube = GL.Mesh.cube({size:1})); + }; + c.registerNodeType("texture/cubemap", h); + } +})(this); +(function(v) { + var c = v.LiteGraph; + if ("undefined" != typeof GL) { + var h = function() { + this.addInput("Tex.", "Texture"); + this.addInput("intensity", "number"); + this.addOutput("Texture", "Texture"); + this.properties = {intensity:1, invert:!1, precision:LGraphTexture.DEFAULT}; + h._shader || (h._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, h.pixel_shader)); + }, e = function() { + this.addInput("Texture", "Texture"); + this.addInput("value1", "number"); + this.addInput("value2", "number"); + this.addOutput("Texture", "Texture"); + this.properties = {fx:"halftone", value1:1, value2:1, precision:LGraphTexture.DEFAULT}; + }, p = function() { + this.addInput("Texture", "Texture"); + this.addInput("Blurred", "Texture"); + this.addInput("Mask", "Texture"); + this.addInput("Threshold", "number"); + this.addOutput("Texture", "Texture"); + this.properties = {shape:"", size:10, alpha:1.0, threshold:1.0, high_precision:!1}; + }, n = function() { + this.addInput("Texture", "Texture"); + this.addInput("Aberration", "number"); + this.addInput("Distortion", "number"); + this.addInput("Blur", "number"); + this.addOutput("Texture", "Texture"); + this.properties = {aberration:1.0, distortion:1.0, blur:1.0, precision:LGraphTexture.DEFAULT}; + n._shader || (n._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, n.pixel_shader), n._texture = new GL.Texture(3, 1, {format:gl.RGB, wrap:gl.CLAMP_TO_EDGE, magFilter:gl.LINEAR, minFilter:gl.LINEAR, pixel_data:[255, 0, 0, 0, 255, 0, 0, 0, 255]})); + }; + n.title = "Lens"; + n.desc = "Camera Lens distortion"; + n.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + n.prototype.onExecute = function() { + var c = this.getInputData(0); + if (this.properties.precision === LGraphTexture.PASS_THROUGH) { + this.setOutputData(0, c); + } else { + if (c) { + this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); + var e = this.properties.aberration; + this.isInputConnected(1) && (e = this.getInputData(1), this.properties.aberration = e); + var g = this.properties.distortion; + this.isInputConnected(2) && (g = this.getInputData(2), this.properties.distortion = g); + var h = this.properties.blur; + this.isInputConnected(3) && (h = this.getInputData(3), this.properties.blur = h); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var a = Mesh.getScreenQuad(), b = n._shader; + this._tex.drawTo(function() { + c.bind(0); + b.uniforms({u_texture:0, u_aberration:e, u_distortion:g, u_blur:h}).draw(a); + }); + this.setOutputData(0, this._tex); + } + } + }; + n.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_aberration;\n\r\n\t\t\tuniform float u_distortion;\n\r\n\t\t\tuniform float u_blur;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = v_coord;\n\r\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\r\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\r\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\r\n\t\t\t\tdist_coord *= percent;\n\r\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\r\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\r\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\r\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("fx/lens", n); + window.LGraphFXLens = n; + p.title = "Bokeh"; + p.desc = "applies an Bokeh effect"; + p.widgets_info = {shape:{widget:"texture"}}; + p.prototype.onExecute = function() { + var c = this.getInputData(0), e = this.getInputData(1), g = this.getInputData(2); + if (c && g && this.properties.shape) { + e || (e = c); + var h = LGraphTexture.getTexture(this.properties.shape); + if (h) { + var a = this.properties.threshold; + this.isInputConnected(3) && (a = this.getInputData(3), this.properties.threshold = a); + var b = gl.UNSIGNED_BYTE; + this.properties.high_precision && (b = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); + this._temp_texture && this._temp_texture.type == b && this._temp_texture.width == c.width && this._temp_texture.height == c.height || (this._temp_texture = new GL.Texture(c.width, c.height, {type:b, format:gl.RGBA, filter:gl.LINEAR})); + var d = p._first_shader; + d || (d = p._first_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, p._first_pixel_shader)); + var f = p._second_shader; + f || (f = p._second_shader = new GL.Shader(p._second_vertex_shader, p._second_pixel_shader)); + var n = this._points_mesh; + n && n._width == c.width && n._height == c.height && 2 == n._spacing || (n = this.createPointsMesh(c.width, c.height, 2)); + var v = Mesh.getScreenQuad(), q = this.properties.size, l = this.properties.alpha; + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.BLEND); + this._temp_texture.drawTo(function() { + c.bind(0); + e.bind(1); + g.bind(2); + d.uniforms({u_texture:0, u_texture_blur:1, u_mask:2, u_texsize:[c.width, c.height]}).draw(v); + }); + this._temp_texture.drawTo(function() { + gl.enable(gl.BLEND); + gl.blendFunc(gl.ONE, gl.ONE); + c.bind(0); + h.bind(3); + f.uniforms({u_texture:0, u_mask:2, u_shape:3, u_alpha:l, u_threshold:a, u_pointSize:q, u_itexsize:[1.0 / c.width, 1.0 / c.height]}).draw(n, gl.POINTS); + }); + this.setOutputData(0, this._temp_texture); + } + } else { + this.setOutputData(0, c); + } + }; + p.prototype.createPointsMesh = function(c, e, g) { + for (var h = Math.round(c / g), a = Math.round(e / g), b = new Float32Array(h * a * 2), d = -1, f = 2 / c * g, n = 2 / e * g, p = 0; p < a; ++p) { + for (var q = -1, l = 0; l < h; ++l) { + var w = p * h * 2 + 2 * l; + b[w] = q; + b[w + 1] = d; + q += f; + } + d += n; + } + this._points_mesh = GL.Mesh.load({vertices2D:b}); + this._points_mesh._width = c; + this._points_mesh._height = e; + this._points_mesh._spacing = g; + return this._points_mesh; + }; + p._first_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_texture_blur;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 blurred_color = texture2D(u_texture_blur, v_coord);\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, v_coord).x;\n\r\n\t\t\t gl_FragColor = mix(color, blurred_color, mask);\n\r\n\t\t\t}\n\r\n\t\t\t"; + p._second_vertex_shader = "precision highp float;\n\r\n\t\t\tattribute vec2 a_vertex2D;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\tuniform vec2 u_itexsize;\n\r\n\t\t\tuniform float u_pointSize;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = a_vertex2D * 0.5 + 0.5;\n\r\n\t\t\t\tv_color = texture2D( u_texture, coord );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(u_itexsize.x, 0.0) );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(0.0, u_itexsize.y));\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + u_itexsize);\n\r\n\t\t\t\tv_color *= 0.25;\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, coord).x;\n\r\n\t\t\t\tfloat luminance = length(v_color) * mask;\n\r\n\t\t\t\t/*luminance /= (u_pointSize*u_pointSize)*0.01 */;\n\r\n\t\t\t\tluminance -= u_threshold;\n\r\n\t\t\t\tif(luminance < 0.0)\n\r\n\t\t\t\t{\n\r\n\t\t\t\t\tgl_Position.x = -100.0;\n\r\n\t\t\t\t\treturn;\n\r\n\t\t\t\t}\n\r\n\t\t\t\tgl_PointSize = u_pointSize;\n\r\n\t\t\t\tgl_Position = vec4(a_vertex2D,0.0,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; + p._second_pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_shape;\n\r\n\t\t\tuniform float u_alpha;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_shape, gl_PointCoord );\n\r\n\t\t\t\tcolor *= v_color * u_alpha;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; + c.registerNodeType("fx/bokeh", p); + window.LGraphFXBokeh = p; + e.title = "FX"; + e.desc = "applies an FX from a list"; + e.widgets_info = {fx:{widget:"combo", values:["halftone", "pixelate", "lowpalette", "noise", "gamma"]}, precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + e.shaders = {}; + e.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var c = this.getInputData(0); + if (this.properties.precision === LGraphTexture.PASS_THROUGH) { + this.setOutputData(0, c); + } else { + if (c) { + this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); + var h = this.properties.value1; + this.isInputConnected(1) && (h = this.getInputData(1), this.properties.value1 = h); + var g = this.properties.value2; + this.isInputConnected(2) && (g = this.getInputData(2), this.properties.value2 = g); + var k = this.properties.fx, a = e.shaders[k]; + if (!a) { + var b = e["pixel_shader_" + k]; + if (!b) { + return; + } + a = e.shaders[k] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b); + } + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var d = Mesh.getScreenQuad(); + camera_planes = window.LS && LS.Renderer._current_camera ? [LS.Renderer._current_camera.near, LS.Renderer._current_camera.far] : [1, 100]; + var f = null; + "noise" == k && (f = LGraphTexture.getNoiseTexture()); + this._tex.drawTo(function() { + c.bind(0); + "noise" == k && f.bind(1); + a.uniforms({u_texture:0, u_noise:1, u_size:[c.width, c.height], u_rand:[Math.random(), Math.random()], u_value1:h, u_value2:g, u_camera_planes:camera_planes}).draw(d); + }); + this.setOutputData(0, this._tex); + } + } + } + }; + e.pixel_shader_halftone = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tfloat pattern() {\n\r\n\t\t\t\tfloat s = sin(u_value1 * 3.1415), c = cos(u_value1 * 3.1415);\n\r\n\t\t\t\tvec2 tex = v_coord * u_size.xy;\n\r\n\t\t\t\tvec2 point = vec2(\n\r\n\t\t\t\t c * tex.x - s * tex.y ,\n\r\n\t\t\t\t s * tex.x + c * tex.y \n\r\n\t\t\t\t) * u_value2;\n\r\n\t\t\t\treturn (sin(point.x) * sin(point.y)) * 4.0;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat average = (color.r + color.g + color.b) / 3.0;\n\r\n\t\t\t\tgl_FragColor = vec4(vec3(average * 10.0 - 5.0 + pattern()), color.a);\n\r\n\t\t\t}\n"; + e.pixel_shader_pixelate = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = vec2( floor(v_coord.x * u_value1) / u_value1, floor(v_coord.y * u_value2) / u_value2 );\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, coord);\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; + e.pixel_shader_lowpalette = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tgl_FragColor = floor(color * u_value1) / u_value1;\n\r\n\t\t\t}\n"; + e.pixel_shader_noise = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_noise;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\tuniform vec2 u_rand;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec3 noise = texture2D(u_noise, v_coord * vec2(u_size.x / 512.0, u_size.y / 512.0) + u_rand).xyz - vec3(0.5);\n\r\n\t\t\t\tgl_FragColor = vec4( color.xyz + noise * u_value1, color.a );\n\r\n\t\t\t}\n"; + e.pixel_shader_gamma = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat gamma = 1.0 / u_value1;\n\r\n\t\t\t\tgl_FragColor = vec4( pow( color.xyz, vec3(gamma) ), color.a );\n\r\n\t\t\t}\n"; + c.registerNodeType("fx/generic", e); + window.LGraphFXGeneric = e; + h.title = "Vigneting"; + h.desc = "Vigneting"; + h.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + h.prototype.onExecute = function() { + var c = this.getInputData(0); + if (this.properties.precision === LGraphTexture.PASS_THROUGH) { + this.setOutputData(0, c); + } else { + if (c) { + this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); + var e = this.properties.intensity; + this.isInputConnected(1) && (e = this.getInputData(1), this.properties.intensity = e); + gl.disable(gl.BLEND); + gl.disable(gl.DEPTH_TEST); + var g = Mesh.getScreenQuad(), k = h._shader, a = this.properties.invert; + this._tex.drawTo(function() { + c.bind(0); + k.uniforms({u_texture:0, u_intensity:e, u_isize:[1 / c.width, 1 / c.height], u_invert:a ? 1 : 0}).draw(g); + }); + this.setOutputData(0, this._tex); + } + } + }; + h.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat luminance = 1.0 - length( v_coord - vec2(0.5) ) * 1.414;\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tluminance = 1.0 - luminance;\n\r\n\t\t\t\tluminance = mix(1.0, luminance, u_intensity);\n\r\n\t\t\t gl_FragColor = vec4( luminance * color.xyz, color.a);\n\r\n\t\t\t}\n\r\n\t\t\t"; + c.registerNodeType("fx/vigneting", h); + v.LGraphFXVigneting = h; + } +})(this); +(function(v) { + function c(a) { + this.cmd = this.channel = 0; + a ? this.setup(a) : this.data = [0, 0, 0]; + } + function h(a, b) { + navigator.requestMIDIAccess ? (this.on_ready = a, this.state = {note:[], cc:[]}, navigator.requestMIDIAccess().then(this.onMIDISuccess.bind(this), this.onMIDIFailure.bind(this))) : (this.error = "not suppoorted", b ? b("Not supported") : console.error("MIDI NOT SUPPORTED, enable by chrome://flags")); + } + function e() { + this.addOutput("on_midi", k.EVENT); + this.addOutput("out", "midi"); + this.properties = {port:0}; + this._current_midi_event = this._last_midi_event = null; + var a = this; + new h(function(b) { + a._midi = b; + if (a._waiting) { + a.onStart(); + } + a._waiting = !1; + }); + } + function p() { + this.addInput("send", k.EVENT); + this.properties = {port:0}; + var a = this; + new h(function(b) { + a._midi = b; + }); + } + function n() { + this.addInput("on_midi", k.EVENT); + this._str = ""; + this.size = [200, 40]; + } + function u() { + this.properties = {channel:-1, cmd:-1, min_value:-1, max_value:-1}; + this.addInput("in", k.EVENT); + this.addOutput("on_midi", k.EVENT); + } + function x() { + this.properties = {channel:0, cmd:"CC", value1:1, value2:1}; + this.addInput("send", k.EVENT); + this.addInput("assign", k.EVENT); + this.addOutput("on_midi", k.EVENT); + } + function g() { + this.properties = {cc:1, value:0}; + this.addOutput("value", "number"); + } + var k = v.LiteGraph; + c.prototype.setup = function(a) { + this.data = a; + this.status = a = a[0]; + var b = a & 240; + this.cmd = 240 <= a ? a : b; + this.cmd == c.NOTEON && 0 == this.velocity && (this.cmd = c.NOTEOFF); + this.cmd_str = c.commands[this.cmd] || ""; + if (b >= c.NOTEON || b <= c.NOTEOFF) { + this.channel = a & 15; + } + }; + Object.defineProperty(c.prototype, "velocity", {get:function() { + return this.cmd == c.NOTEON ? this.data[2] : -1; + }, set:function(a) { + this.data[2] = a; + }, enumerable:!0}); + c.notes = "A A# B C C# D D# E F F# G G#".split(" "); + c.prototype.getPitch = function() { + return 440 * Math.pow(2, (this.data[1] - 69) / 12); + }; + c.computePitch = function(a) { + return 440 * Math.pow(2, (a - 69) / 12); + }; + c.prototype.getCC = function() { + return this.data[1]; + }; + c.prototype.getCCValue = function() { + return this.data[2]; + }; + c.prototype.getPitchBend = function() { + return this.data[1] + (this.data[2] << 7) - 8192; + }; + c.computePitchBend = function(a, b) { + return a + (b << 7) - 8192; + }; + c.prototype.setCommandFromString = function(a) { + this.cmd = c.computeCommandFromString(a); + }; + c.computeCommandFromString = function(a) { + if (!a) { + return 0; + } + if (a && a.constructor === Number) { + return a; + } + a = a.toUpperCase(); + switch(a) { + case "NOTE ON": + case "NOTEON": + return c.NOTEON; + case "NOTE OFF": + case "NOTEOFF": + return c.NOTEON; + case "KEY PRESSURE": + case "KEYPRESSURE": + return c.KEYPRESSURE; + case "CONTROLLER CHANGE": + case "CONTROLLERCHANGE": + case "CC": + return c.CONTROLLERCHANGE; + case "PROGRAM CHANGE": + case "PROGRAMCHANGE": + case "PC": + return c.PROGRAMCHANGE; + case "CHANNEL PRESSURE": + case "CHANNELPRESSURE": + return c.CHANNELPRESSURE; + case "PITCH BEND": + case "PITCHBEND": + return c.PITCHBEND; + case "TIME TICK": + case "TIMETICK": + return c.TIMETICK; + default: + return Number(a); + } + }; + c.toNoteString = function(a) { + var b = (a - 21) % 12; + 0 > b && (b = 12 + b); + return c.notes[b] + Math.floor((a - 24) / 12 + 1); + }; + c.prototype.toString = function() { + var a = "" + this.channel + ". "; + switch(this.cmd) { + case c.NOTEON: + a += "NOTEON " + c.toNoteString(this.data[1]); + break; + case c.NOTEOFF: + a += "NOTEOFF " + c.toNoteString(this.data[1]); + break; + case c.CONTROLLERCHANGE: + a += "CC " + this.data[1] + " " + this.data[2]; + break; + case c.PROGRAMCHANGE: + a += "PC " + this.data[1]; + break; + case c.PITCHBEND: + a += "PITCHBEND " + this.getPitchBend(); + break; + case c.KEYPRESSURE: + a += "KEYPRESS " + this.data[1]; + } + return a; + }; + c.prototype.toHexString = function() { + for (var a = "", b = 0; b < this.data.length; b++) { + a += this.data[b].toString(16) + " "; + } + }; + c.NOTEOFF = 128; + c.NOTEON = 144; + c.KEYPRESSURE = 160; + c.CONTROLLERCHANGE = 176; + c.PROGRAMCHANGE = 192; + c.CHANNELPRESSURE = 208; + c.PITCHBEND = 224; + c.TIMETICK = 248; + c.commands = {128:"note off", 144:"note on", 160:"key pressure", 176:"controller change", 192:"program change", 208:"channel pressure", 224:"pitch bend", 240:"system", 242:"Song pos", 243:"Song select", 246:"Tune request", 248:"time tick", 250:"Start Song", 251:"Continue Song", 252:"Stop Song", 254:"Sensing", 255:"Reset"}; + h.input = null; + h.MIDIEvent = c; + h.prototype.onMIDISuccess = function(a) { + console.log("MIDI ready!"); + console.log(a); + this.midi = a; + this.updatePorts(); + if (this.on_ready) { + this.on_ready(this); + } + }; + h.prototype.updatePorts = function() { + var a = this.midi; + this.input_ports = a.inputs; + for (var b = 0, c = this.input_ports.values(), e = c.next(); e && !1 === e.done;) { + e = e.value, console.log("Input port [type:'" + e.type + "'] id:'" + e.id + "' manufacturer:'" + e.manufacturer + "' name:'" + e.name + "' version:'" + e.version + "'"), b++, e = c.next(); + } + this.num_input_ports = b; + b = 0; + this.output_ports = a.outputs; + c = this.output_ports.values(); + for (e = c.next(); e && !1 === e.done;) { + e = e.value, console.log("Output port [type:'" + e.type + "'] id:'" + e.id + "' manufacturer:'" + e.manufacturer + "' name:'" + e.name + "' version:'" + e.version + "'"), b++, e = c.next(); + } + this.num_output_ports = b; + }; + h.prototype.onMIDIFailure = function(a) { + console.error("Failed to get MIDI access - " + a); + }; + h.prototype.openInputPort = function(a, b) { + a = this.input_ports.get("input-" + a); + if (!a) { + return !1; + } + h.input = this; + var d = this; + a.onmidimessage = function(a) { + var e = new c(a.data); + d.updateState(e); + b && b(a.data, e); + if (h.on_message) { + h.on_message(a.data, e); + } + }; + console.log("port open: ", a); + return !0; + }; + h.parseMsg = function(a) { + }; + h.prototype.updateState = function(a) { + switch(a.cmd) { + case c.NOTEON: + this.state.note[a.value1 | 0] = a.value2; + break; + case c.NOTEOFF: + this.state.note[a.value1 | 0] = 0; + break; + case c.CONTROLLERCHANGE: + this.state.cc[a.getCC()] = a.getCCValue(); + } + }; + h.prototype.sendMIDI = function(a, b) { + b && (a = this.output_ports.get("output-" + a)) && (h.output = this, b.constructor === c ? a.send(b.data) : a.send(b)); + }; + e.MIDIInterface = h; + e.title = "MIDI Input"; + e.desc = "Reads MIDI from a input port"; + e.prototype.getPropertyInfo = function(a) { + if (this._midi && "port" == a) { + a = {}; + for (var b = 0; b < this._midi.input_ports.size; ++b) { + var c = this._midi.input_ports.get("input-" + b); + a[b] = b + ".- " + c.name + " version:" + c.version; + } + return {type:"enum", values:a}; + } + }; + e.prototype.onStart = function() { + this._midi ? this._midi.openInputPort(this.properties.port, this.onMIDIEvent.bind(this)) : this._waiting = !0; + }; + e.prototype.onMIDIEvent = function(a, b) { + this._last_midi_event = b; + this.trigger("on_midi", b); + b.cmd == c.NOTEON ? this.trigger("on_noteon", b) : b.cmd == c.NOTEOFF ? this.trigger("on_noteoff", b) : b.cmd == c.CONTROLLERCHANGE ? this.trigger("on_cc", b) : b.cmd == c.PROGRAMCHANGE ? this.trigger("on_pc", b) : b.cmd == c.PITCHBEND && this.trigger("on_pitchbend", b); + }; + e.prototype.onExecute = function() { + if (this.outputs) { + for (var a = this._last_midi_event, b = 0; b < this.outputs.length; ++b) { + switch(this.outputs[b].name) { + case "midi": + var c = this._midi; + break; + case "last_midi": + c = a; + break; + default: + continue; + } + this.setOutputData(b, c); + } + } + }; + e.prototype.onGetOutputs = function() { + return [["last_midi", "midi"], ["on_midi", k.EVENT], ["on_noteon", k.EVENT], ["on_noteoff", k.EVENT], ["on_cc", k.EVENT], ["on_pc", k.EVENT], ["on_pitchbend", k.EVENT]]; + }; + k.registerNodeType("midi/input", e); + p.MIDIInterface = h; + p.title = "MIDI Output"; + p.desc = "Sends MIDI to output channel"; + p.prototype.getPropertyInfo = function(a) { + if (this._midi && "port" == a) { + a = {}; + for (var b = 0; b < this._midi.output_ports.size; ++b) { + var c = this._midi.output_ports.get(b); + a[b] = b + ".- " + c.name + " version:" + c.version; + } + return {type:"enum", values:a}; + } + }; + p.prototype.onAction = function(a, b) { + console.log(b); + this._midi && ("send" == a && this._midi.sendMIDI(this.port, b), this.trigger("midi", b)); + }; + p.prototype.onGetInputs = function() { + return [["send", k.ACTION]]; + }; + p.prototype.onGetOutputs = function() { + return [["on_midi", k.EVENT]]; + }; + k.registerNodeType("midi/output", p); + n.title = "MIDI Show"; + n.desc = "Shows MIDI in the graph"; + n.prototype.onAction = function(a, b) { + b && (this._str = b.constructor === c ? b.toString() : "???"); + }; + n.prototype.onDrawForeground = function(a) { + this._str && (a.font = "30px Arial", a.fillText(this._str, 10, 0.8 * this.size[1])); + }; + n.prototype.onGetInputs = function() { + return [["in", k.ACTION]]; + }; + n.prototype.onGetOutputs = function() { + return [["on_midi", k.EVENT]]; + }; + k.registerNodeType("midi/show", n); + u.title = "MIDI Filter"; + u.desc = "Filters MIDI messages"; + u.prototype.onAction = function(a, b) { + !b || b.constructor !== c || -1 != this.properties.channel && b.channel != this.properties.channel || -1 != this.properties.cmd && b.cmd != this.properties.cmd || -1 != this.properties.min_value && b.data[1] < this.properties.min_value || -1 != this.properties.max_value && b.data[1] > this.properties.max_value || this.trigger("on_midi", b); + }; + k.registerNodeType("midi/filter", u); + x.title = "MIDIEvent"; + x.desc = "Create a MIDI Event"; + x.prototype.onAction = function(a, b) { + "assign" == a ? (this.properties.channel = b.channel, this.properties.cmd = b.cmd, this.properties.value1 = b.data[1], this.properties.value2 = b.data[2]) : (b = new c, b.channel = this.properties.channel, this.properties.cmd && this.properties.cmd.constructor === String ? b.setCommandFromString(this.properties.cmd) : b.cmd = this.properties.cmd, b.data[0] = b.cmd | b.channel, b.data[1] = Number(this.properties.value1), b.data[2] = Number(this.properties.value2), this.trigger("on_midi", b)); + }; + x.prototype.onExecute = function() { + var a = this.properties; + if (this.outputs) { + for (var b = 0; b < this.outputs.length; ++b) { + switch(this.outputs[b].name) { + case "midi": + var d = new c; + d.setup([a.cmd, a.value1, a.value2]); + d.channel = a.channel; + break; + case "command": + d = a.cmd; + break; + case "cc": + d = a.value1; + break; + case "cc_value": + d = a.value2; + break; + case "note": + d = a.cmd == c.NOTEON || a.cmd == c.NOTEOFF ? a.value1 : null; + break; + case "velocity": + d = a.cmd == c.NOTEON ? a.value2 : null; + break; + case "pitch": + d = a.cmd == c.NOTEON ? c.computePitch(a.value1) : null; + break; + case "pitchbend": + d = a.cmd == c.PITCHBEND ? c.computePitchBend(a.value1, a.value2) : null; + break; + default: + continue; + } + null !== d && this.setOutputData(b, d); + } + } + }; + x.prototype.onPropertyChanged = function(a, b) { + "cmd" == a && (this.properties.cmd = c.computeCommandFromString(b)); + }; + x.prototype.onGetOutputs = function() { + return [["midi", "midi"], ["on_midi", k.EVENT], ["command", "number"], ["note", "number"], ["velocity", "number"], ["cc", "number"], ["cc_value", "number"], ["pitch", "number"], ["pitchbend", "number"]]; + }; + k.registerNodeType("midi/event", x); + g.title = "MIDICC"; + g.desc = "gets a Controller Change"; + g.prototype.onExecute = function() { + h.input && (this.properties.value = h.input.state.cc[this.properties.cc]); + this.setOutputData(0, this.properties.value); + }; + k.registerNodeType("midi/cc", g); +})(this); +(function(v) { + function c() { + this.properties = {src:"", gain:0.5, loop:!0, autoplay:!0, playbackRate:1}; + this._loading_audio = !1; + this._audiobuffer = null; + this._audionodes = []; + this._last_sourcenode = null; + this.addOutput("out", "audio"); + this.addInput("gain", "number"); + this.audionode = q.getAudioContext().createGain(); + this.audionode.graphnode = this; + this.audionode.gain.value = this.properties.gain; + this.properties.src && this.loadSound(this.properties.src); + } + function h() { + this.properties = {fftSize:2048, minDecibels:-100, maxDecibels:-10, smoothingTimeConstant:0.5}; + this.audionode = q.getAudioContext().createAnalyser(); + this.audionode.graphnode = this; + this.audionode.fftSize = this.properties.fftSize; + this.audionode.minDecibels = this.properties.minDecibels; + this.audionode.maxDecibels = this.properties.maxDecibels; + this.audionode.smoothingTimeConstant = this.properties.smoothingTimeConstant; + this.addInput("in", "audio"); + this.addOutput("freqs", "array"); + this.addOutput("samples", "array"); + this._time_bin = this._freq_bin = null; + } + function e() { + this.properties = {gain:1}; + this.audionode = q.getAudioContext().createGain(); + this.addInput("in", "audio"); + this.addInput("gain", "number"); + this.addOutput("out", "audio"); + } + function p() { + this.properties = {impulse_src:"", normalize:!0}; + this.audionode = q.getAudioContext().createConvolver(); + this.addInput("in", "audio"); + this.addOutput("out", "audio"); + } + function n() { + this.properties = {threshold:-50, knee:40, ratio:12, reduction:-20, attack:0, release:0.25}; + this.audionode = q.getAudioContext().createDynamicsCompressor(); + this.addInput("in", "audio"); + this.addOutput("out", "audio"); + } + function u() { + this.properties = {}; + this.audionode = q.getAudioContext().createWaveShaper(); + this.addInput("in", "audio"); + this.addInput("shape", "waveshape"); + this.addOutput("out", "audio"); + } + function x() { + this.properties = {gain1:0.5, gain2:0.5}; + this.audionode = q.getAudioContext().createGain(); + this.audionode1 = q.getAudioContext().createGain(); + this.audionode1.gain.value = this.properties.gain1; + this.audionode2 = q.getAudioContext().createGain(); + this.audionode2.gain.value = this.properties.gain2; + this.audionode1.connect(this.audionode); + this.audionode2.connect(this.audionode); + this.addInput("in1", "audio"); + this.addInput("in1 gain", "number"); + this.addInput("in2", "audio"); + this.addInput("in2 gain", "number"); + this.addOutput("out", "audio"); + } + function g() { + this.properties = {delayTime:0.5}; + this.audionode = q.getAudioContext().createDelay(10); + this.audionode.delayTime.value = this.properties.delayTime; + this.addInput("in", "audio"); + this.addInput("time", "number"); + this.addOutput("out", "audio"); + } + function k() { + this.properties = {frequency:350, detune:0, Q:1}; + this.addProperty("type", "lowpass", "enum", {values:"lowpass highpass bandpass lowshelf highshelf peaking notch allpass".split(" ")}); + this.audionode = q.getAudioContext().createBiquadFilter(); + this.addInput("in", "audio"); + this.addOutput("out", "audio"); + } + function a() { + this.properties = {frequency:440, detune:0, type:"sine"}; + this.addProperty("type", "sine", "enum", {values:["sine", "square", "sawtooth", "triangle", "custom"]}); + this.audionode = q.getAudioContext().createOscillator(); + this.addOutput("out", "audio"); + } + function b() { + this.properties = {continuous:!0, mark:-1}; + this.addInput("data", "array"); + this.addInput("mark", "number"); + this.size = [300, 200]; + this._last_buffer = null; + } + function d() { + this.properties = {band:440, amplitude:1}; + this.addInput("freqs", "array"); + this.addOutput("signal", "number"); + } + function f() { + if (!f.default_code) { + var a = f.default_function.toString(), b = a.indexOf("{") + 1, c = a.lastIndexOf("}"); + f.default_code = a.substr(b, c - b); + } + this.properties = {code:f.default_code}; + a = q.getAudioContext(); + a.createScriptProcessor ? this.audionode = a.createScriptProcessor(4096, 1, 1) : (console.warn("ScriptProcessorNode deprecated"), this.audionode = a.createGain()); + this.processCode(); + f._bypass_function || (f._bypass_function = this.audionode.onaudioprocess); + this.addInput("in", "audio"); + this.addOutput("out", "audio"); + } + function t() { + this.audionode = q.getAudioContext().destination; + this.addInput("in", "audio"); + } + var y = v.LiteGraph, q = {}; + v.LGAudio = q; + q.getAudioContext = function() { + if (!this._audio_context) { + window.AudioContext = window.AudioContext || window.webkitAudioContext; + if (!window.AudioContext) { + return console.error("AudioContext not supported by browser"), null; + } + this._audio_context = new AudioContext; + this._audio_context.onmessage = function(a) { + console.log("msg", a); + }; + this._audio_context.onended = function(a) { + console.log("ended", a); + }; + this._audio_context.oncomplete = function(a) { + console.log("complete", a); + }; + } + return this._audio_context; + }; + q.connect = function(a, b) { + try { + a.connect(b); + } catch (A) { + console.warn("LGraphAudio:", A); + } + }; + q.disconnect = function(a, b) { + try { + a.disconnect(b); + } catch (A) { + console.warn("LGraphAudio:", A); + } + }; + q.changeAllAudiosConnections = function(a, b) { + if (a.inputs) { + for (var c = 0; c < a.inputs.length; ++c) { + var d = a.graph.links[a.inputs[c].link]; + if (d) { + var e = a.graph.getNodeById(d.origin_id); + e = e.getAudioNodeInOutputSlot ? e.getAudioNodeInOutputSlot(d.origin_slot) : e.audionode; + d = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(c) : a.audionode; + b ? q.connect(e, d) : q.disconnect(e, d); + } + } + } + if (a.outputs) { + for (c = 0; c < a.outputs.length; ++c) { + for (var f = a.outputs[c], g = 0; g < f.links.length; ++g) { + if (d = a.graph.links[f.links[g]]) { + e = a.getAudioNodeInOutputSlot ? a.getAudioNodeInOutputSlot(c) : a.audionode; + var l = a.graph.getNodeById(d.target_id); + d = l.getAudioNodeInInputSlot ? l.getAudioNodeInInputSlot(d.target_slot) : l.audionode; + b ? q.connect(e, d) : q.disconnect(e, d); + } + } + } + } + }; + q.onConnectionsChange = function(a, b, c, d) { + a == y.OUTPUT && (a = null, d && (a = this.graph.getNodeById(d.target_id)), a && (b = this.getAudioNodeInOutputSlot ? this.getAudioNodeInOutputSlot(b) : this.audionode, d = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(d.target_slot) : a.audionode, c ? q.connect(b, d) : q.disconnect(b, d))); + }; + q.createAudioNodeWrapper = function(a) { + var b = a.prototype.onPropertyChanged; + a.prototype.onPropertyChanged = function(a, c) { + b && b.call(this, a, c); + this.audionode && void 0 !== this.audionode[a] && (void 0 !== this.audionode[a].value ? this.audionode[a].value = c : this.audionode[a] = c); + }; + a.prototype.onConnectionsChange = q.onConnectionsChange; + }; + q.cached_audios = {}; + q.loadSound = function(a, b, c) { + function d(a) { + console.log("Audio loading sample error:", a); + c && c(a); + } + if (q.cached_audios[a] && -1 == a.indexOf("blob:")) { + b && b(q.cached_audios[a]); + } else { + q.onProcessAudioURL && (a = q.onProcessAudioURL(a)); + var e = new XMLHttpRequest; + e.open("GET", a, !0); + e.responseType = "arraybuffer"; + var f = q.getAudioContext(); + e.onload = function() { + console.log("AudioSource loaded"); + f.decodeAudioData(e.response, function(c) { + console.log("AudioSource decoded"); + q.cached_audios[a] = c; + b && b(c); + }, d); + }; + e.send(); + return e; + } + }; + c["@src"] = {widget:"resource"}; + c.supported_extensions = ["wav", "ogg", "mp3"]; + c.prototype.onAdded = function(a) { + if (a.status === LGraph.STATUS_RUNNING) { + this.onStart(); + } + }; + c.prototype.onStart = function() { + this._audiobuffer && this.properties.autoplay && this.playBuffer(this._audiobuffer); + }; + c.prototype.onStop = function() { + this.stopAllSounds(); + }; + c.prototype.onPause = function() { + this.pauseAllSounds(); + }; + c.prototype.onUnpause = function() { + this.unpauseAllSounds(); + }; + c.prototype.onRemoved = function() { + this.stopAllSounds(); + this._dropped_url && URL.revokeObjectURL(this._url); + }; + c.prototype.stopAllSounds = function() { + for (var a = 0; a < this._audionodes.length; ++a) { + this._audionodes[a].started && (this._audionodes[a].started = !1, this._audionodes[a].stop()); + } + this._audionodes.length = 0; + }; + c.prototype.pauseAllSounds = function() { + q.getAudioContext().suspend(); + }; + c.prototype.unpauseAllSounds = function() { + q.getAudioContext().resume(); + }; + c.prototype.onExecute = function() { + if (this.inputs) { + for (var a = 0; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + if (null != b.link) { + var c = this.getInputData(a); + if (void 0 !== c) { + if ("gain" == b.name) { + this.audionode.gain.value = c; + } else { + if ("playbackRate" == b.name) { + for (this.properties.playbackRate = c, b = 0; b < this._audionodes.length; ++b) { + this._audionodes[b].playbackRate.value = c; + } + } + } + } + } + } + } + if (this.outputs) { + for (a = 0; a < this.outputs.length; ++a) { + "buffer" == this.outputs[a].name && this._audiobuffer && this.setOutputData(a, this._audiobuffer); + } + } + }; + c.prototype.onAction = function(a) { + this._audiobuffer && ("Play" == a ? this.playBuffer(this._audiobuffer) : "Stop" == a && this.stopAllSounds()); + }; + c.prototype.onPropertyChanged = function(a, b) { + if ("src" == a) { + this.loadSound(b); + } else { + if ("gain" == a) { + this.audionode.gain.value = b; + } else { + if ("playbackRate" == a) { + for (a = 0; a < this._audionodes.length; ++a) { + this._audionodes[a].playbackRate.value = b; + } + } + } + } + }; + c.prototype.playBuffer = function(a) { + var b = this, c = q.getAudioContext().createBufferSource(); + this._last_sourcenode = c; + c.graphnode = this; + c.buffer = a; + c.loop = this.properties.loop; + c.playbackRate.value = this.properties.playbackRate; + this._audionodes.push(c); + c.connect(this.audionode); + this._audionodes.push(c); + c.onended = function() { + b.trigger("ended"); + var a = b._audionodes.indexOf(c); + -1 != a && b._audionodes.splice(a, 1); + }; + c.started || (c.started = !0, c.start()); + return c; + }; + c.prototype.loadSound = function(a) { + var b = this; + this._request && (this._request.abort(), this._request = null); + this._audiobuffer = null; + this._loading_audio = !1; + a && (this._request = q.loadSound(a, function(a) { + this.boxcolor = y.NODE_DEFAULT_BOXCOLOR; + b._audiobuffer = a; + b._loading_audio = !1; + if (b.graph && b.graph.status === LGraph.STATUS_RUNNING) { + b.onStart(); + } + }), this._loading_audio = !0, this.boxcolor = "#AA4"); + }; + c.prototype.onConnectionsChange = q.onConnectionsChange; + c.prototype.onGetInputs = function() { + return [["playbackRate", "number"], ["Play", y.ACTION], ["Stop", y.ACTION]]; + }; + c.prototype.onGetOutputs = function() { + return [["buffer", "audiobuffer"], ["ended", y.EVENT]]; + }; + c.prototype.onDropFile = function(a) { + this._dropped_url && URL.revokeObjectURL(this._dropped_url); + a = URL.createObjectURL(a); + this.properties.src = a; + this.loadSound(a); + this._dropped_url = a; + }; + c.title = "Source"; + c.desc = "Plays audio"; + y.registerNodeType("audio/source", c); + h.prototype.onPropertyChanged = function(a, b) { + this.audionode[a] = b; + }; + h.prototype.onExecute = function() { + if (this.isOutputConnected(0)) { + var a = this.audionode.frequencyBinCount; + this._freq_bin && this._freq_bin.length == a || (this._freq_bin = new Uint8Array(a)); + this.audionode.getByteFrequencyData(this._freq_bin); + this.setOutputData(0, this._freq_bin); + } + this.isOutputConnected(1) && (a = this.audionode.frequencyBinCount, this._time_bin && this._time_bin.length == a || (this._time_bin = new Uint8Array(a)), this.audionode.getByteTimeDomainData(this._time_bin), this.setOutputData(1, this._time_bin)); + for (a = 1; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + if (null != b.link) { + var c = this.getInputData(a); + void 0 !== c && (this.audionode[b.name].value = c); + } + } + }; + h.prototype.onGetInputs = function() { + return [["minDecibels", "number"], ["maxDecibels", "number"], ["smoothingTimeConstant", "number"]]; + }; + h.prototype.onGetOutputs = function() { + return [["freqs", "array"], ["samples", "array"]]; + }; + h.title = "Analyser"; + h.desc = "Audio Analyser"; + y.registerNodeType("audio/analyser", h); + e.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + for (var a = 1; a < this.inputs.length; ++a) { + var b = this.inputs[a], c = this.getInputData(a); + void 0 !== c && (this.audionode[b.name].value = c); + } + } + }; + q.createAudioNodeWrapper(e); + e.title = "Gain"; + e.desc = "Audio gain"; + y.registerNodeType("audio/gain", e); + q.createAudioNodeWrapper(p); + p.prototype.onRemove = function() { + this._dropped_url && URL.revokeObjectURL(this._dropped_url); + }; + p.prototype.onPropertyChanged = function(a, b) { + "impulse_src" == a ? this.loadImpulse(b) : "normalize" == a && (this.audionode.normalize = b); + }; + p.prototype.onDropFile = function(a) { + this._dropped_url && URL.revokeObjectURL(this._dropped_url); + this._dropped_url = URL.createObjectURL(a); + this.properties.impulse_src = this._dropped_url; + this.loadImpulse(this._dropped_url); + }; + p.prototype.loadImpulse = function(a) { + var b = this; + this._request && (this._request.abort(), this._request = null); + this._impulse_buffer = null; + this._loading_impulse = !1; + a && (this._request = q.loadSound(a, function(a) { + b._impulse_buffer = a; + b.audionode.buffer = a; + console.log("Impulse signal set"); + b._loading_impulse = !1; + }), this._loading_impulse = !0); + }; + p.title = "Convolver"; + p.desc = "Convolves the signal (used for reverb)"; + y.registerNodeType("audio/convolver", p); + q.createAudioNodeWrapper(n); + n.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + for (var a = 1; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + if (null != b.link) { + var c = this.getInputData(a); + void 0 !== c && (this.audionode[b.name].value = c); + } + } + } + }; + n.prototype.onGetInputs = function() { + return [["threshold", "number"], ["knee", "number"], ["ratio", "number"], ["reduction", "number"], ["attack", "number"], ["release", "number"]]; + }; + n.title = "DynamicsCompressor"; + n.desc = "Dynamics Compressor"; + y.registerNodeType("audio/dynamicsCompressor", n); + u.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + var a = this.getInputData(1); + void 0 !== a && (this.audionode.curve = a); + } + }; + u.prototype.setWaveShape = function(a) { + this.audionode.curve = a; + }; + q.createAudioNodeWrapper(u); + x.prototype.getAudioNodeInInputSlot = function(a) { + if (0 == a) { + return this.audionode1; + } + if (2 == a) { + return this.audionode2; + } + }; + x.prototype.onPropertyChanged = function(a, b) { + "gain1" == a ? this.audionode1.gain.value = b : "gain2" == a && (this.audionode2.gain.value = b); + }; + x.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + for (var a = 1; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + null != b.link && "audio" != b.type && (b = this.getInputData(a), void 0 !== b && (1 == a ? this.audionode1.gain.value = b : 3 == a && (this.audionode2.gain.value = b))); + } + } + }; + q.createAudioNodeWrapper(x); + x.title = "Mixer"; + x.desc = "Audio mixer"; + y.registerNodeType("audio/mixer", x); + q.createAudioNodeWrapper(g); + g.prototype.onExecute = function() { + var a = this.getInputData(1); + void 0 !== a && (this.audionode.delayTime.value = a); + }; + g.title = "Delay"; + g.desc = "Audio delay"; + y.registerNodeType("audio/delay", g); + k.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + for (var a = 1; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + if (null != b.link) { + var c = this.getInputData(a); + void 0 !== c && (this.audionode[b.name].value = c); + } + } + } + }; + k.prototype.onGetInputs = function() { + return [["frequency", "number"], ["detune", "number"], ["Q", "number"]]; + }; + q.createAudioNodeWrapper(k); + k.title = "BiquadFilter"; + k.desc = "Audio filter"; + y.registerNodeType("audio/biquadfilter", k); + a.prototype.onStart = function() { + this.audionode.started || (this.audionode.started = !0, this.audionode.start()); + }; + a.prototype.onStop = function() { + this.audionode.started && (this.audionode.started = !1, this.audionode.stop()); + }; + a.prototype.onPause = function() { + this.onStop(); + }; + a.prototype.onUnpause = function() { + this.onStart(); + }; + a.prototype.onExecute = function() { + if (this.inputs && this.inputs.length) { + for (var a = 0; a < this.inputs.length; ++a) { + var b = this.inputs[a]; + if (null != b.link) { + var c = this.getInputData(a); + void 0 !== c && (this.audionode[b.name].value = c); + } + } + } + }; + a.prototype.onGetInputs = function() { + return [["frequency", "number"], ["detune", "number"], ["type", "string"]]; + }; + q.createAudioNodeWrapper(a); + a.title = "Oscillator"; + a.desc = "Oscillator"; + y.registerNodeType("audio/oscillator", a); + b.prototype.onExecute = function() { + this._last_buffer = this.getInputData(0); + var a = this.getInputData(1); + void 0 !== a && (this.properties.mark = a); + this.setDirtyCanvas(!0, !1); + }; + b.prototype.onDrawForeground = function(a) { + if (this._last_buffer) { + var b = this._last_buffer, c = b.length / this.size[0], d = this.size[1]; + a.fillStyle = "black"; + a.fillRect(0, 0, this.size[0], this.size[1]); + a.strokeStyle = "white"; + a.beginPath(); + var e = 0; + if (this.properties.continuous) { + a.moveTo(e, d); + for (var f = 0; f < b.length; f += c) { + a.lineTo(e, d - b[f | 0] / 255 * d), e++; + } + } else { + for (f = 0; f < b.length; f += c) { + a.moveTo(e + 0.5, d), a.lineTo(e + 0.5, d - b[f | 0] / 255 * d), e++; + } + } + a.stroke(); + 0 <= this.properties.mark && (b = q.getAudioContext().sampleRate / b.length, e = this.properties.mark / b * 2 / c, e >= this.size[0] && (e = this.size[0] - 1), a.strokeStyle = "red", a.beginPath(), a.moveTo(e, d), a.lineTo(e, 0), a.stroke()); + } + }; + b.title = "Visualization"; + b.desc = "Audio Visualization"; + y.registerNodeType("audio/visualization", b); + d.prototype.onExecute = function() { + if (this._freqs = this.getInputData(0)) { + var a = this.properties.band, b = this.getInputData(1); + void 0 !== b && (a = b); + b = q.getAudioContext().sampleRate / this._freqs.length; + b = a / b * 2; + b >= this._freqs.length ? b = this._freqs[this._freqs.length - 1] : (a = b | 0, b -= a, b = this._freqs[a] * (1 - b) + this._freqs[a + 1] * b); + this.setOutputData(0, b / 255 * this.properties.amplitude); + } + }; + d.prototype.onGetInputs = function() { + return [["band", "number"]]; + }; + d.title = "Signal"; + d.desc = "extract the signal of some frequency"; + y.registerNodeType("audio/signal", d); + f.prototype.onAdded = function(a) { + a.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback); + }; + f["@code"] = {widget:"code"}; + f.prototype.onStart = function() { + this.audionode.onaudioprocess = this._callback; + }; + f.prototype.onStop = function() { + this.audionode.onaudioprocess = f._bypass_function; + }; + f.prototype.onPause = function() { + this.audionode.onaudioprocess = f._bypass_function; + }; + f.prototype.onUnpause = function() { + this.audionode.onaudioprocess = this._callback; + }; + f.prototype.onExecute = function() { + }; + f.prototype.onRemoved = function() { + this.audionode.onaudioprocess = f._bypass_function; + }; + f.prototype.processCode = function() { + try { + this._script = new (new Function("properties", this.properties.code))(this.properties), this._old_code = this.properties.code, this._callback = this._script.onaudioprocess; + } catch (l) { + console.error("Error in onaudioprocess code", l), this._callback = f._bypass_function, this.audionode.onaudioprocess = this._callback; + } + }; + f.prototype.onPropertyChanged = function(a, b) { + "code" == a && (this.properties.code = b, this.processCode(), this.graph && this.graph.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback)); + }; + f.default_function = function() { + this.onaudioprocess = function(a) { + var b = a.inputBuffer; + a = a.outputBuffer; + for (var c = 0; c < a.numberOfChannels; c++) { + for (var d = b.getChannelData(c), e = a.getChannelData(c), f = 0; f < b.length; f++) { + e[f] = d[f]; + } + } + }; + }; + q.createAudioNodeWrapper(f); + f.title = "Script"; + f.desc = "apply script to signal"; + y.registerNodeType("audio/script", f); + t.title = "Destination"; + t.desc = "Audio output"; + y.registerNodeType("audio/destination", t); +})(this); + diff --git a/gruntfile.js b/gruntfile.js index 4d481acad..6f3c372f0 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -20,9 +20,6 @@ module.exports = function (grunt) { dest: 'build/litegraph.js' } }, - clean: { - build: {src: ['build/*']} - }, closureCompiler: { options: { @@ -42,28 +39,8 @@ module.exports = function (grunt) { } }) - // grunt.registerTask('buildPackage', function () { - // var pkg = grunt.config.data.pkg - // var newPackage = { - // version: pkg.version, - // name: 'litegraph.js', //* Static name without ogranisation - // main: 'litegraph.js', - // description: pkg.description, - // dependencies: pkg.dependencies, - // author: pkg.author, - // license: 'MIT', - // scripts: { - - // } - // } - - // grunt.file.write('build/package.json', JSON.stringify(newPackage, undefined, 2)) - // }) - grunt.loadNpmTasks('grunt-contrib-concat') - grunt.loadNpmTasks('grunt-contrib-copy') grunt.loadNpmTasks('grunt-closure-tools') - grunt.loadNpmTasks('grunt-contrib-clean') grunt.registerTask('build', ['concat:build', 'closureCompiler']) } diff --git a/package-lock.json b/package-lock.json index 43c52c90c..1c51947c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -635,12 +635,6 @@ "is-extglob": "1.0.0" } }, - "file-sync-cmp": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz", - "integrity": "sha1-peeo/7+kk7Q7kju9TKiaU7Y7YSs=", - "dev": true - }, "filename-regex": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", @@ -1783,6 +1777,12 @@ "nopt": "3.0.6", "resolve": "1.1.7" } + }, + "rimraf": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", + "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=", + "dev": true } } }, @@ -1808,27 +1808,6 @@ "task-closure-tools": "0.1.10" } }, - "grunt-contrib-clean": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-1.1.0.tgz", - "integrity": "sha1-Vkq/LQN4qYOhW54/MO51tzjEBjg=", - "dev": true, - "requires": { - "async": "1.5.2", - "rimraf": "2.6.2" - }, - "dependencies": { - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha1-LtgVDSShbqhlHm1u8PR8QVjOejY=", - "dev": true, - "requires": { - "glob": "7.0.6" - } - } - } - }, "grunt-contrib-concat": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-1.0.1.tgz", @@ -1839,16 +1818,6 @@ "source-map": "0.5.7" } }, - "grunt-contrib-copy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz", - "integrity": "sha1-cGDGWB6QS4qw0A8HbgqPbj58NXM=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "file-sync-cmp": "0.1.1" - } - }, "grunt-known-options": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz", @@ -2872,10 +2841,13 @@ "dev": true }, "rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=", - "dev": true + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "requires": { + "glob": "7.0.6" + } }, "safe-buffer": { "version": "5.1.1", diff --git a/package.json b/package.json index 5e13d1da5..02498c7de 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "private": false, "scripts": { - "prebuild": "grunt clean:build", + "prebuild": "rimraf build", "build": "grunt build", "start": "nodemon utils/server.js", "test": "echo \"Error: no test specified\" && exit 1" @@ -33,9 +33,8 @@ "grunt": "^1.0.1", "grunt-cli": "^1.2.0", "grunt-closure-tools": "^1.0.0", - "grunt-contrib-clean": "^1.1.0", "grunt-contrib-concat": "^1.0.1", - "grunt-contrib-copy": "^1.0.0", - "nodemon": "^1.14.7" + "nodemon": "^1.14.7", + "rimraf": "^2.6.2" } } From c248a6e498f7cce5110cb0cfc1e774400d64b553 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Thu, 19 Apr 2018 08:38:19 +0200 Subject: [PATCH 4/8] Updated with network --- build/litegraph.js | 924 +++++-- build/litegraph.min.js | 5186 +++++++++++++++++++++------------------- gruntfile.js | 3 +- package.json | 2 +- 4 files changed, 3469 insertions(+), 2646 deletions(-) diff --git a/build/litegraph.js b/build/litegraph.js index 4160cc453..12f4a8900 100644 --- a/build/litegraph.js +++ b/build/litegraph.js @@ -98,7 +98,7 @@ var LiteGraph = global.LiteGraph = { for(var i in LGraphNode.prototype) if(!base_class.prototype[i]) base_class.prototype[i] = LGraphNode.prototype[i]; - + Object.defineProperty( base_class.prototype, "shape",{ set: function(v) { switch(v) @@ -132,6 +132,36 @@ var LiteGraph = global.LiteGraph = { } }, + /** + * Create a new node type by passing a function, it wraps it with a propper class and generates inputs according to the parameters of the function. + * Useful to wrap simple methods that do not require properties, and that only process some input to generate an output. + * @method wrapFunctionAsNode + * @param {String} name node name with namespace (p.e.: 'math/sum') + * @param {Function} func + * @param {Array} param_types [optional] an array containing the type of every parameter, otherwise parameters will accept any type + * @param {String} return_type [optional] string with the return type, otherwise it will be generic + */ + wrapFunctionAsNode: function( name, func, param_types, return_type ) + { + var params = Array(func.length); + var code = ""; + var names = LiteGraph.getParameterNames( func ); + for(var i = 0; i < names.length; ++i) + code += "this.addInput('"+names[i]+"',"+(param_types && param_types[i] ? "'" + param_types[i] + "'" : "0") + ");\n"; + code += "this.addOutput('out',"+( return_type ? "'" + return_type + "'" : 0 )+");\n"; + var classobj = Function(code); + classobj.title = name.split("/").pop(); + classobj.desc = "Generated from " + func.name; + classobj.prototype.onExecute = function onExecute() + { + for(var i = 0; i < params.length; ++i) + params[i] = this.getInputData(i); + var r = func.apply( this, params ); + this.setOutputData(0,r); + } + this.registerNodeType( name, classobj ); + }, + /** * Adds this method to all nodetypes, existing and to be created * (You can add it to LGraphNode.prototype but then existing node types wont have it) @@ -305,8 +335,20 @@ var LiteGraph = global.LiteGraph = { if( !type_a || //generic output !type_b || //generic input type_a == type_b || //same type (is valid for triggers) - (type_a !== LiteGraph.EVENT && type_b !== LiteGraph.EVENT && type_a.toLowerCase() == type_b.toLowerCase()) ) //same type - return true; + type_a == LiteGraph.EVENT && type_b == LiteGraph.ACTION ) + return true; + + type_a = type_a.toLowerCase(); + type_b = type_b.toLowerCase(); + if( type_a.indexOf(",") == -1 && type_b.indexOf(",") == -1 ) + return type_a == type_b; + + var supported_types_a = type_a.split(","); + var supported_types_b = type_b.split(","); + for(var i = 0; i < supported_types_a.length; ++i) + for(var j = 0; j < supported_types_b.length; ++j) + if( supported_types_a[i] == supported_types_b[j] ) + return true; return false; } }; @@ -589,7 +631,7 @@ LGraph.prototype.updateExecutionOrder = function() } //This is more internal, it computes the order and returns it -LGraph.prototype.computeExecutionOrder = function( only_onExecute ) +LGraph.prototype.computeExecutionOrder = function( only_onExecute, set_level ) { var L = []; var S = []; @@ -600,22 +642,30 @@ LGraph.prototype.computeExecutionOrder = function( only_onExecute ) //search for the nodes without inputs (starting nodes) for (var i = 0, l = this._nodes.length; i < l; ++i) { - var n = this._nodes[i]; - if( only_onExecute && !n.onExecute ) + var node = this._nodes[i]; + if( only_onExecute && !node.onExecute ) continue; - M[n.id] = n; //add to pending nodes + M[node.id] = node; //add to pending nodes var num = 0; //num of input connections - if(n.inputs) - for(var j = 0, l2 = n.inputs.length; j < l2; j++) - if(n.inputs[j] && n.inputs[j].link != null) + if(node.inputs) + for(var j = 0, l2 = node.inputs.length; j < l2; j++) + if(node.inputs[j] && node.inputs[j].link != null) num += 1; if(num == 0) //is a starting node - S.push(n); + { + S.push(node); + if(set_level) + node._level = 1; + } else //num of input links - remaining_links[n.id] = num; + { + if(set_level) + node._level = 0; + remaining_links[node.id] = num; + } } while(true) @@ -624,43 +674,49 @@ LGraph.prototype.computeExecutionOrder = function( only_onExecute ) break; //get an starting node - var n = S.shift(); - L.push(n); //add to ordered list - delete M[n.id]; //remove from the pending nodes + var node = S.shift(); + L.push(node); //add to ordered list + delete M[node.id]; //remove from the pending nodes + + if(!node.outputs) + continue; //for every output - if(n.outputs) - for(var i = 0; i < n.outputs.length; i++) + for(var i = 0; i < node.outputs.length; i++) + { + var output = node.outputs[i]; + //not connected + if(output == null || output.links == null || output.links.length == 0) + continue; + + //for every connection + for(var j = 0; j < output.links.length; j++) { - var output = n.outputs[i]; - //not connected - if(output == null || output.links == null || output.links.length == 0) + var link_id = output.links[j]; + var link = this.links[link_id]; + if(!link) continue; - //for every connection - for(var j = 0; j < output.links.length; j++) + //already visited link (ignore it) + if(visited_links[ link.id ]) + continue; + + var target_node = this.getNodeById( link.target_id ); + if(target_node == null) { - var link_id = output.links[j]; - var link = this.links[link_id]; - if(!link) continue; - - //already visited link (ignore it) - if(visited_links[ link.id ]) - continue; - - var target_node = this.getNodeById( link.target_id ); - if(target_node == null) - { - visited_links[ link.id ] = true; - continue; - } - - visited_links[link.id] = true; //mark as visited - remaining_links[target_node.id] -= 1; //reduce the number of links remaining - if (remaining_links[target_node.id] == 0) - S.push(target_node); //if no more links, then add to Starters array + visited_links[ link.id ] = true; + continue; } + + if(set_level && (!target_node._level || target_node._level <= node._level)) + target_node._level = node._level + 1; + + visited_links[link.id] = true; //mark as visited + remaining_links[target_node.id] -= 1; //reduce the number of links remaining + if (remaining_links[ target_node.id ] == 0) + S.push(target_node); //if no more links, then add to starters array } + } } //the remaining ones (loops) @@ -677,13 +733,55 @@ LGraph.prototype.computeExecutionOrder = function( only_onExecute ) return L; } +/** +* Positions every node in a more readable manner +* @method arrange +*/ +LGraph.prototype.arrange = function( margin ) +{ + margin = margin || 40; + + var nodes = this.computeExecutionOrder( false, true ); + var columns = []; + for(var i = 0; i < nodes.length; ++i) + { + var node = nodes[i]; + var col = node._level || 1; + if(!columns[col]) + columns[col] = []; + columns[col].push( node ); + } + + var x = margin; + + for(var i = 0; i < columns.length; ++i) + { + var column = columns[i]; + if(!column) + continue; + var max_size = 100; + var y = margin; + for(var j = 0; j < column.length; ++j) + { + var node = column[j]; + node.pos[0] = x; + node.pos[1] = y; + if(node.size[0] > max_size) + max_size = node.size[0]; + y += node.size[1] + margin; + } + x += max_size + margin; + } + + this.setDirtyCanvas(true,true); +} + /** * Returns the amount of time the graph has been running in milliseconds * @method getTime * @return {number} number of milliseconds the graph has been running */ - LGraph.prototype.getTime = function() { return this.globaltime; @@ -2134,6 +2232,7 @@ LGraphNode.prototype.computeSize = function( minHeight, out ) /** * returns the bounding of the object, used for rendering purposes +* bounding is: [topleft_cornerx, topleft_cornery, width, height] * @method getBounding * @return {Float32Array[4]} the total size */ @@ -2142,8 +2241,8 @@ LGraphNode.prototype.getBounding = function( out ) out = out || new Float32Array(4); out[0] = this.pos[0] - 4; out[1] = this.pos[1] - LiteGraph.NODE_TITLE_HEIGHT; - out[2] = this.pos[0] + this.size[0] + 4; - out[3] = this.pos[1] + this.size[1] + LGraph.NODE_TITLE_HEIGHT; + out[2] = this.size[0] + 4; + out[3] = this.size[1] + LiteGraph.NODE_TITLE_HEIGHT; return out; } @@ -2489,8 +2588,7 @@ LGraphNode.prototype.disconnectInput = function( slot ) //search in the inputs list for this link for(var i = 0, l = output.links.length; i < l; i++) { - var link_id = output.links[i]; - if( link_info.target_id == this.id ) + if( output.links[i] == link_id ) { output.links.splice(i,1); break; @@ -2698,7 +2796,7 @@ function LGraphCanvas( canvas, graph, options ) //if(graph === undefined) // throw ("No graph assigned"); - this.background_image = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII=' + this.background_image = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII=' if(canvas && canvas.constructor === String ) canvas = document.querySelector( canvas ); @@ -2722,6 +2820,8 @@ function LGraphCanvas( canvas, graph, options ) this.allow_dragcanvas = true; this.allow_dragnodes = true; this.allow_interaction = true; //allow to control widgets, buttons, collapse, etc + this.drag_mode = false; + this.dragging_rectangle = null; this.always_render_background = false; this.render_connections_shadows = false; //too much cpu @@ -2764,11 +2864,15 @@ LGraphCanvas.prototype.clear = function() this.scale = 1; this.offset = [0,0]; + this.dragging_rectangle = null; + this.selected_nodes = {}; + this.visible_nodes = []; this.node_dragged = null; this.node_over = null; this.node_capturing_input = null; this.connecting_node = null; + this.highlighted_links = {}; this.dirty_canvas = true; this.dirty_bgcanvas = true; @@ -2854,6 +2958,7 @@ LGraphCanvas.prototype.closeSubgraph = function() return; var graph = this._graph_stack.pop(); this.selected_nodes = {}; + this.highlighted_links = {}; graph.attachCanvas(this); this.setDirty(true,true); } @@ -2941,6 +3046,8 @@ LGraphCanvas.prototype.bindEvents = function() } var canvas = this.canvas; + var ref_window = this.getCanvasWindow(); + var document = ref_window.document; //hack used when moving canvas between windows this._mousedown_callback = this.processMouseDown.bind(this); this._mousewheel_callback = this.processMouseWheel.bind(this); @@ -2964,8 +3071,8 @@ LGraphCanvas.prototype.bindEvents = function() //Keyboard ****************** this._key_callback = this.processKey.bind(this); - canvas.addEventListener("keydown", this._key_callback ); - canvas.addEventListener("keyup", this._key_callback ); + canvas.addEventListener("keydown", this._key_callback, true ); + document.addEventListener("keyup", this._key_callback, true ); //in document, otherwise it doesnt fire keyup //Droping Stuff over nodes ************************************ this._ondrop_callback = this.processDrop.bind(this); @@ -2986,11 +3093,14 @@ LGraphCanvas.prototype.unbindEvents = function() return; } + var ref_window = this.getCanvasWindow(); + var document = ref_window.document; + this.canvas.removeEventListener( "mousedown", this._mousedown_callback ); this.canvas.removeEventListener( "mousewheel", this._mousewheel_callback ); this.canvas.removeEventListener( "DOMMouseScroll", this._mousewheel_callback ); this.canvas.removeEventListener( "keydown", this._key_callback ); - this.canvas.removeEventListener( "keyup", this._key_callback ); + document.removeEventListener( "keyup", this._key_callback ); this.canvas.removeEventListener( "contextmenu", this._doNothing ); this.canvas.removeEventListener( "drop", this._ondrop_callback ); this.canvas.removeEventListener( "dragenter", this._doReturnTrue ); @@ -3181,34 +3291,30 @@ LGraphCanvas.prototype.processMouseDown = function(e) var n = this.graph.getNodeOnPos( e.canvasX, e.canvasY, this.visible_nodes ); var skip_dragging = false; + var skip_action = false; LiteGraph.closeAllContextMenus( ref_window ); if(e.which == 1) //left button mouse { - if(!e.shiftKey) //REFACTOR: integrate with function + if( e.ctrlKey ) { - //no node or another node selected - if (!n || !this.selected_nodes[n.id]) { - - var todeselect = []; - for (var i in this.selected_nodes) - if (this.selected_nodes[i] != n) - todeselect.push(this.selected_nodes[i]); - //two passes to avoid problems modifying the container - for (var i in todeselect) - this.processNodeDeselected(todeselect[i]); - } + this.dragging_rectangle = new Float32Array(4); + this.dragging_rectangle[0] = e.canvasX; + this.dragging_rectangle[1] = e.canvasY; + this.dragging_rectangle[2] = 1; + this.dragging_rectangle[3] = 1; + skip_action = true; } + var clicking_canvas_bg = false; //when clicked on top of a node //and it is not interactive - if(n && this.allow_interaction ) + if( n && this.allow_interaction && !skip_action ) { if(!this.live_mode && !n.flags.pinned) this.bringToFront(n); //if it wasnt selected? - var skip_action = false; //not dragging mouse to connect two slots if(!this.connecting_node && !n.flags.collapsed && !this.live_mode) @@ -3305,7 +3411,7 @@ LGraphCanvas.prototype.processMouseDown = function(e) else clicking_canvas_bg = true; - if(clicking_canvas_bg && this.allow_dragcanvas) + if(!skip_action && clicking_canvas_bg && this.allow_dragcanvas) { this.dragging_canvas = true; } @@ -3361,7 +3467,13 @@ LGraphCanvas.prototype.processMouseMove = function(e) this.last_mouse = mouse; this.canvas_mouse = [e.canvasX, e.canvasY]; - if(this.dragging_canvas) + if( this.dragging_rectangle ) + { + this.dragging_rectangle[2] = e.canvasX - this.dragging_rectangle[0]; + this.dragging_rectangle[3] = e.canvasY - this.dragging_rectangle[1]; + this.dirty_canvas = true; + } + else if(this.dragging_canvas) { this.offset[0] += delta[0] / this.scale; this.offset[1] += delta[1] / this.scale; @@ -3374,7 +3486,7 @@ LGraphCanvas.prototype.processMouseMove = function(e) this.dirty_canvas = true; //get node over - var n = this.graph.getNodeOnPos(e.canvasX, e.canvasY, this.visible_nodes); + var n = this.graph.getNodeOnPos( e.canvasX, e.canvasY, this.visible_nodes ); //remove mouseover flag for(var i = 0, l = this.graph._nodes.length; i < l; ++i) @@ -3513,8 +3625,32 @@ LGraphCanvas.prototype.processMouseUp = function(e) if (e.which == 1) //left button { - //dragging a connection - if(this.connecting_node) + if( this.dragging_rectangle ) + { + if(this.graph) + { + var nodes = this.graph._nodes; + var node_bounding = new Float32Array(4); + this.deselectAllNodes(); + if( this.dragging_rectangle[2] < 0 ) //flip if negative width + this.dragging_rectangle[0] += this.dragging_rectangle[2]; + if( this.dragging_rectangle[3] < 0 ) //flip if negative height + this.dragging_rectangle[1] += this.dragging_rectangle[3]; + this.dragging_rectangle[2] = Math.abs( this.dragging_rectangle[2] * this.scale ); //abs to convert negative width + this.dragging_rectangle[3] = Math.abs( this.dragging_rectangle[3] * this.scale ); //abs to convert negative height + + for(var i = 0; i < nodes.length; ++i) + { + var node = nodes[i]; + node.getBounding( node_bounding ); + if(!overlapBounding( this.dragging_rectangle, node_bounding )) + continue; //out of the visible area + this.selectNode( node, true ); + } + } + this.dragging_rectangle = null; + } + else if(this.connecting_node) //dragging a connection { this.dirty_canvas = true; this.dirty_bgcanvas = true; @@ -3543,8 +3679,8 @@ LGraphCanvas.prototype.processMouseUp = function(e) if(this.connecting_output.type == LiteGraph.EVENT) this.connecting_node.connect( this.connecting_slot, node, LiteGraph.EVENT ); else - if(input && !input.link && input.type == this.connecting_output.type) //toLowerCase missing - this.connecting_node.connect(this.connecting_slot, node, 0); + if(input && !input.link && LiteGraph.isValidConnection( input.type && this.connecting_output.type ) ) + this.connecting_node.connect( this.connecting_slot, node, 0 ); } } } @@ -3573,6 +3709,13 @@ LGraphCanvas.prototype.processMouseUp = function(e) } else //no node being dragged { + //get node over + var node = this.graph.getNodeOnPos( e.canvasX, e.canvasY, this.visible_nodes ); + + var now = LiteGraph.getTime(); + if ( !node && (now - this.last_mouseclick) < 300 ) + this.deselectAllNodes(); + this.dirty_canvas = true; this.dragging_canvas = false; @@ -3671,17 +3814,23 @@ LGraphCanvas.prototype.processKey = function(e) return; var block_default = false; + //console.log(e); //debug if(e.target.localName == "input") return; if(e.type == "keydown") { - console.log(e); + if(e.keyCode == 32) + { + this.dragging_canvas = true; + block_default = true; + } + //select all Control A if(e.keyCode == 65 && e.ctrlKey) { - this.selectAllNodes(); + this.selectNodes(); block_default = true; } @@ -3689,36 +3838,16 @@ LGraphCanvas.prototype.processKey = function(e) { if(this.selected_nodes) { - var nodes_data = []; - for(var i in this.selected_nodes) - nodes_data.push( this.selected_nodes[i].serialize() ); - localStorage.setItem( "litegrapheditor_clipboard", JSON.stringify(nodes_data) ); + this.copyToClipboard(); block_default = true; } } if(e.code == "KeyV" && (e.metaKey || e.ctrlKey) && !e.shiftKey ) //paste { - var data = localStorage.getItem( "litegrapheditor_clipboard" ); - if(data) - { - var nodes_data = JSON.parse(data); - for(var i = 0; i < nodes_data.length; ++i) - { - var node_data = nodes_data[i]; - var node = LiteGraph.createNode( node_data.type ); - if(node) - { - node.configure(node_data); - node.pos[0] += 5; - node.pos[1] += 5; - this.graph.add( node ); - } - } - } + this.pasteFromClipboard(); } - //delete or backspace if(e.keyCode == 46 || e.keyCode == 8) { @@ -3737,6 +3866,9 @@ LGraphCanvas.prototype.processKey = function(e) } else if( e.type == "keyup" ) { + if(e.keyCode == 32) + this.dragging_canvas = false; + if(this.selected_nodes) for (var i in this.selected_nodes) if(this.selected_nodes[i].onKeyUp) @@ -3752,6 +3884,79 @@ LGraphCanvas.prototype.processKey = function(e) } } +LGraphCanvas.prototype.copyToClipboard = function() +{ + var clipboard_info = { + nodes: [], + links: [] + }; + var index = 0; + var selected_nodes_array = []; + for(var i in this.selected_nodes) + { + var node = this.selected_nodes[i]; + node._relative_id = index; + selected_nodes_array.push( node ); + index += 1; + } + + for(var i = 0; i < selected_nodes_array.length; ++i) + { + var node = selected_nodes_array[i]; + clipboard_info.nodes.push( node.clone().serialize() ); + if(node.inputs && node.inputs.length) + for(var j = 0; j < node.inputs.length; ++j) + { + var input = node.inputs[j]; + if(!input || input.link == null) + continue; + var link_info = this.graph.links[ input.link ]; + if(!link_info) + continue; + var target_node = this.graph.getNodeById( link_info.origin_id ); + if(!target_node || !this.selected_nodes[ target_node.id ] ) //improve this by allowing connections to non-selected nodes + continue; //not selected + clipboard_info.links.push([ target_node._relative_id, j, node._relative_id, link_info.target_slot ]); + } + } + localStorage.setItem( "litegrapheditor_clipboard", JSON.stringify( clipboard_info ) ); +} + +LGraphCanvas.prototype.pasteFromClipboard = function() +{ + var data = localStorage.getItem( "litegrapheditor_clipboard" ); + if(!data) + return; + + //create nodes + var clipboard_info = JSON.parse(data); + var nodes = []; + for(var i = 0; i < clipboard_info.nodes.length; ++i) + { + var node_data = clipboard_info.nodes[i]; + var node = LiteGraph.createNode( node_data.type ); + if(node) + { + node.configure(node_data); + node.pos[0] += 5; + node.pos[1] += 5; + this.graph.add( node ); + nodes.push( node ); + } + } + + //create links + for(var i = 0; i < clipboard_info.links.length; ++i) + { + var link_info = clipboard_info.links[i]; + var origin_node = nodes[ link_info[0] ]; + var target_node = nodes[ link_info[2] ]; + origin_node.connect( link_info[1], target_node, link_info[3] ); + } + + this.selectNodes( nodes ); +} + LGraphCanvas.prototype.processDrop = function(e) { e.preventDefault(); @@ -3841,42 +4046,6 @@ LGraphCanvas.prototype.checkDropItem = function(e) } -LGraphCanvas.prototype.processNodeSelected = function(n,e) -{ - n.selected = true; - if (n.onSelected) - n.onSelected(); - - if(e && e.shiftKey) //add to selection - this.selected_nodes[n.id] = n; - else - { - this.selected_nodes = {}; - this.selected_nodes[ n.id ] = n; - } - - this.dirty_canvas = true; - - if(this.onNodeSelected) - this.onNodeSelected(n); - - //if(this.node_in_panel) this.showNodePanel(n); -} - -LGraphCanvas.prototype.processNodeDeselected = function(n) -{ - n.selected = false; - if(n.onDeselected) - n.onDeselected(); - - delete this.selected_nodes[n.id]; - - if(this.onNodeDeselected) - this.onNodeDeselected(n); - - this.dirty_canvas = true; -} - LGraphCanvas.prototype.processNodeDblClicked = function(n) { if(this.onShowNodePanel) @@ -3888,44 +4057,100 @@ LGraphCanvas.prototype.processNodeDblClicked = function(n) this.setDirty(true); } -LGraphCanvas.prototype.selectNode = function(node) +LGraphCanvas.prototype.processNodeSelected = function(node,e) { - this.deselectAllNodes(); - - if(!node) - return; - - if(!node.selected && node.onSelected) - node.onSelected(); - node.selected = true; - this.selected_nodes[ node.id ] = node; - this.setDirty(true); + this.selectNode( node, e && e.shiftKey ); + if(this.onNodeSelected) + this.onNodeSelected(node); } -LGraphCanvas.prototype.selectAllNodes = function() +LGraphCanvas.prototype.processNodeDeselected = function(node) { - for(var i = 0; i < this.graph._nodes.length; ++i) + this.deselectNode(node); + if(this.onNodeDeselected) + this.onNodeDeselected(node); +} + +LGraphCanvas.prototype.selectNode = function( node, add_to_current_selection ) +{ + if(node == null) + this.deselectAllNodes(); + else + this.selectNodes([node], add_to_current_selection ); +} + +LGraphCanvas.prototype.selectNodes = function( nodes, add_to_current_selection ) +{ + if(!add_to_current_selection) + this.deselectAllNodes(); + + nodes = nodes || this.graph._nodes; + for(var i = 0; i < nodes.length; ++i) { - var n = this.graph._nodes[i]; - if(!n.selected && n.onSelected) - n.onSelected(); - n.selected = true; - this.selected_nodes[this.graph._nodes[i].id] = n; + var node = nodes[i]; + if(node.selected) + continue; + + if( !node.selected && node.onSelected ) + node.onSelected(); + node.selected = true; + this.selected_nodes[ node.id ] = node; + + if(node.inputs) + for(var i = 0; i < node.inputs.length; ++i) + this.highlighted_links[ node.inputs[i].link ] = true; + if(node.outputs) + for(var i = 0; i < node.outputs.length; ++i) + { + var out = node.outputs[i]; + if( out.links ) + for(var j = 0; j < out.links.length; ++j) + this.highlighted_links[ out.links[j] ] = true; + } + } this.setDirty(true); } +LGraphCanvas.prototype.deselectNode = function( node ) +{ + if(!node.selected) + return; + if(node.onDeselected) + node.onDeselected(); + node.selected = false; + + //remove highlighted + if(node.inputs) + for(var i = 0; i < node.inputs.length; ++i) + delete this.highlighted_links[ node.inputs[i].link ]; + if(node.outputs) + for(var i = 0; i < node.outputs.length; ++i) + { + var out = node.outputs[i]; + if( out.links ) + for(var j = 0; j < out.links.length; ++j) + delete this.highlighted_links[ out.links[j] ]; + } +} + LGraphCanvas.prototype.deselectAllNodes = function() { - for(var i in this.selected_nodes) + if(!this.graph) + return; + var nodes = this.graph._nodes; + for(var i = 0, l = nodes.length; i < l; ++i) { - var n = this.selected_nodes; - if(n.onDeselected) - n.onDeselected(); - n.selected = false; + var node = nodes[i]; + if(!node.selected) + continue; + if(node.onDeselected) + node.onDeselected(); + node.selected = false; } this.selected_nodes = {}; + this.highlighted_links = {}; this.setDirty(true); } @@ -3938,6 +4163,7 @@ LGraphCanvas.prototype.deleteSelectedNodes = function() this.graph.remove(m); } this.selected_nodes = {}; + this.highlighted_links = {}; this.setDirty(true); } @@ -3982,20 +4208,25 @@ LGraphCanvas.prototype.setZoom = function(value, zooming_center) this.dirty_bgcanvas = true; } -LGraphCanvas.prototype.convertOffsetToCanvas = function(pos) +LGraphCanvas.prototype.convertOffsetToCanvas = function( pos, out ) { - return [pos[0] / this.scale - this.offset[0], pos[1] / this.scale - this.offset[1]]; + out = out || []; + out[0] = pos[0] / this.scale - this.offset[0]; + out[1] = pos[1] / this.scale - this.offset[1]; + return out; } -LGraphCanvas.prototype.convertCanvasToOffset = function(pos) +LGraphCanvas.prototype.convertCanvasToOffset = function( pos, out ) { - return [(pos[0] + this.offset[0]) * this.scale, - (pos[1] + this.offset[1]) * this.scale ]; + out = out || []; + out[0] = (pos[0] + this.offset[0]) * this.scale; + out[1] = (pos[1] + this.offset[1]) * this.scale; + return out; } LGraphCanvas.prototype.convertEventToCanvas = function(e) { - var rect = this.canvas.getClientRects()[0]; + var rect = this.canvas.getBoundingClientRect(); return this.convertOffsetToCanvas([e.pageX - rect.left,e.pageY - rect.top]); } @@ -4022,14 +4253,16 @@ LGraphCanvas.prototype.sendToBack = function(n) /* LGraphCanvas render */ +var temp = new Float32Array(4); -LGraphCanvas.prototype.computeVisibleNodes = function() +LGraphCanvas.prototype.computeVisibleNodes = function( nodes, out ) { - var temp = new Float32Array(4); - var visible_nodes = []; - for(var i = 0, l = this.graph._nodes.length; i < l; ++i) + var visible_nodes = out || []; + visible_nodes.length = 0; + nodes = nodes || this.graph._nodes; + for(var i = 0, l = nodes.length; i < l; ++i) { - var n = this.graph._nodes[i]; + var n = nodes[i]; //skip rendering nodes in live mode if(this.live_mode && !n.onDrawBackground && !n.onDrawForeground) @@ -4057,7 +4290,7 @@ LGraphCanvas.prototype.draw = function(force_canvas, force_bgcanvas) { var start = [-this.offset[0], -this.offset[1] ]; var end = [start[0] + this.canvas.width / this.scale, start[1] + this.canvas.height / this.scale]; - this.visible_area = new Float32Array([start[0],start[1],end[0],end[1]]); + this.visible_area = new Float32Array([ start[0], start[1], end[0] - start[0], end[1] - start[1] ]); } if(this.dirty_bgcanvas || force_bgcanvas || this.always_render_background || (this.graph && this.graph._last_trigger_time && (now - this.graph._last_trigger_time) < 1000) ) @@ -4124,8 +4357,7 @@ LGraphCanvas.prototype.drawFrontCanvas = function() //draw nodes var drawn_nodes = 0; - var visible_nodes = this.computeVisibleNodes(); - this.visible_nodes = visible_nodes; + var visible_nodes = this.computeVisibleNodes( null, this.visible_nodes ); for (var i = 0; i < visible_nodes.length; ++i) { @@ -4177,6 +4409,14 @@ LGraphCanvas.prototype.drawFrontCanvas = function() ctx.fill(); } } + + if( this.dragging_rectangle ) + { + ctx.strokeStyle = "#FFF"; + ctx.strokeRect( this.dragging_rectangle[0], this.dragging_rectangle[1], this.dragging_rectangle[2], this.dragging_rectangle[3] ); + } + + ctx.restore(); } @@ -4281,7 +4521,7 @@ LGraphCanvas.prototype.drawBackCanvas = function() if(pattern) { ctx.fillStyle = pattern; - ctx.fillRect(this.visible_area[0],this.visible_area[1],this.visible_area[2]-this.visible_area[0],this.visible_area[3]-this.visible_area[1]); + ctx.fillRect(this.visible_area[0],this.visible_area[1],this.visible_area[2],this.visible_area[3]); ctx.fillStyle = "transparent"; } @@ -4294,7 +4534,7 @@ LGraphCanvas.prototype.drawBackCanvas = function() //DEBUG: show clipping area //ctx.fillStyle = "red"; - //ctx.fillRect( this.visible_area[0] + 10, this.visible_area[1] + 10, this.visible_area[2] - this.visible_area[0] - 20, this.visible_area[3] - this.visible_area[1] - 20); + //ctx.fillRect( this.visible_area[0] + 10, this.visible_area[1] + 10, this.visible_area[2] - 20, this.visible_area[3] - 20); //bg ctx.strokeStyle = "#235"; @@ -4772,6 +5012,9 @@ LGraphCanvas.prototype.renderLink = function( ctx, a, b, link, skip_border, flow if(!color) color = this.default_link_color; + if( link != null && this.highlighted_links[ link.id ] ) + color = "#FFF"; + //begin line shape ctx.beginPath(); @@ -5381,7 +5624,7 @@ LGraphCanvas.prototype.createDialog = function( html, options ) dialog.className = "graphdialog"; dialog.innerHTML = html; - var rect = this.canvas.getClientRects()[0]; + var rect = this.canvas.getBoundingClientRect(); var offsetx = -20; var offsety = -20; if(rect) @@ -5517,7 +5760,8 @@ LGraphCanvas.onMenuNodeClone = function( value, options, e, menu, node ) { if(node.clonable == false) return; var newnode = node.clone(); - if(!newnode) return; + if(!newnode) + return; newnode.pos = [node.pos[0]+5,node.pos[1]+5]; node.graph.add(newnode); node.setDirtyCanvas(true,true); @@ -5683,7 +5927,7 @@ LGraphCanvas.prototype.processContextMenu = function( node, event ) if( slot_info ) slot_info.label = input.value; that.setDirty(true); - } + } dialog.close(); }); } @@ -5779,13 +6023,18 @@ function isInsideBounding(p,bb) } LiteGraph.isInsideBounding = isInsideBounding; -//boundings overlap, format: [start,end] +//boundings overlap, format: [ startx, starty, width, height ] function overlapBounding(a,b) { - if ( a[0] > b[2] || - a[1] > b[3] || - a[2] < b[0] || - a[3] < b[1]) + var A_end_x = a[0] + a[2]; + var A_end_y = a[1] + a[3]; + var B_end_x = b[0] + b[2]; + var B_end_y = b[1] + b[3]; + + if ( a[0] > B_end_x || + a[1] > B_end_y || + A_end_x < b[0] || + A_end_y < b[1]) return false; return true; } @@ -6190,13 +6439,15 @@ LiteGraph.extendClass = function ( target, origin ) } } -/* -LiteGraph.createNodetypeWrapper = function( class_object ) -{ - //create Nodetype object +LiteGraph.getParameterNames = function(func) { + return (func + '') + .replace(/[/][/].*$/mg,'') // strip single-line comments + .replace(/\s+/g, '') // strip white space + .replace(/[/][*][^/*]*[*][/]/g, '') // strip multi-line comments /**/ + .split('){', 1)[0].replace(/^[^(]*[(]/, '') // extract the parameters + .replace(/=[^,]+/g, '') // strip any ES6 defaults + .split(',').filter(Boolean); // split & filter [""] } -//LiteGraph.registerNodeType("scene/global", LGraphGlobal ); -*/ if( typeof(window) != "undefined" && !window["requestAnimationFrame"] ) { @@ -6577,6 +6828,24 @@ Watch.prototype.onDrawBackground = function(ctx) LiteGraph.registerNodeType("basic/watch", Watch); +//Watch a value in the editor +function Pass() +{ + this.addInput("in",0); + this.addOutput("out",0); + this.size = [40,20]; +} + +Pass.title = "Pass"; +Pass.desc = "Allows to connect different types"; + +Pass.prototype.onExecute = function() +{ + this.setOutputData( 0, this.getInputData(0) ); +} + +LiteGraph.registerNodeType("basic/pass", Pass); + //Show value inside the debug console function Console() @@ -7038,7 +7307,7 @@ var LiteGraph = global.LiteGraph; { //this.oldmouse = null; } - + WidgetKnob.prototype.onWidget = function(e,widget) { if(widget.name=="increase") @@ -7080,7 +7349,7 @@ var LiteGraph = global.LiteGraph; WidgetHSlider.title = "H.Slider"; WidgetHSlider.desc = "Linear slider controller"; - WidgetHSlider.prototype.onInit = function() + WidgetHSlider.prototype.onAdded = function() { this.value = 0.5; this.imgfg = this.loadImage("imgs/slider_fg.png"); @@ -7106,7 +7375,7 @@ var LiteGraph = global.LiteGraph; WidgetHSlider.prototype.onDrawImage = function(ctx) { - if(!this.imgfg || !this.imgfg.width) + if(!this.imgfg || !this.imgfg.width) return; //border @@ -7233,8 +7502,8 @@ var LiteGraph = global.LiteGraph; createGradient: function(ctx) { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); }, @@ -7291,7 +7560,7 @@ var LiteGraph = global.LiteGraph; if(!this.oldmouse) return; var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - + this.properties.x = m[0] / this.size[0]; this.properties.y = m[1] / this.size[1]; @@ -7333,8 +7602,8 @@ var LiteGraph = global.LiteGraph; createGradient: function(ctx) { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); }, @@ -7342,7 +7611,7 @@ var LiteGraph = global.LiteGraph; { ctx.fillStyle = this.mouseOver ? this.properties["color"] : "#AAA"; - if(this.clicking) + if(this.clicking) ctx.fillStyle = "#FFF"; ctx.strokeStyle = "#AAA"; @@ -7372,7 +7641,7 @@ var LiteGraph = global.LiteGraph; this.createGradient(ctx); ctx.fillStyle = this.mouseOver ? this.properties["color"] : this.lineargradient; - if(this.clicking) + if(this.clicking) ctx.fillStyle = "#444"; ctx.strokeStyle = "#FFF"; @@ -7403,7 +7672,7 @@ var LiteGraph = global.LiteGraph; } else if(module && module.onTrigger) { - module.onTrigger(); + module.onTrigger(); } }, @@ -7560,8 +7829,8 @@ var LiteGraph = global.LiteGraph; return; } - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); } @@ -14610,4 +14879,263 @@ LiteGraph.registerNodeType("audio/destination", LGAudioDestination); -})( this ); \ No newline at end of file +})( this ); +//event related nodes +(function(global){ +var LiteGraph = global.LiteGraph; + +function LGWebSocket() +{ + this.size = [60,20]; + this.addInput("send", LiteGraph.ACTION); + this.addOutput("received", LiteGraph.EVENT); + this.addInput("in", 0 ); + this.addOutput("out", 0 ); + this.properties = { + url: "", + room: "lgraph" //allows to filter messages + }; + this._ws = null; + this._last_data = []; +} + +LGWebSocket.title = "WebSocket"; +LGWebSocket.desc = "Send data through a websocket"; + +LGWebSocket.prototype.onPropertyChanged = function(name,value) +{ + if(name == "url") + this.createSocket(); +} + +LGWebSocket.prototype.onExecute = function() +{ + if(!this._ws && this.properties.url) + this.createSocket(); + + if(!this._ws || this._ws.readyState != WebSocket.OPEN ) + return; + + var room = this.properties.room; + + for(var i = 1; i < this.inputs.length; ++i) + { + var data = this.getInputData(i); + if(data != null) + { + var json; + try + { + json = JSON.stringify({ type: 0, room: room, channel: i, data: data }); + } + catch (err) + { + continue; + } + this._ws.send( json ); + } + } + + for(var i = 1; i < this.outputs.length; ++i) + this.setOutputData( i, this._last_data[i] ); +} + +LGWebSocket.prototype.createSocket = function() +{ + var that = this; + var url = this.properties.url; + if( url.substr(0,2) != "ws" ) + url = "ws://" + url; + this._ws = new WebSocket( url ); + this._ws.onopen = function() + { + console.log("ready"); + that.boxcolor = "#8E8"; + } + this._ws.onmessage = function(e) + { + var data = JSON.parse( e.data ); + if( data.room && data.room != this.properties.room ) + return; + if( e.data.type == 1 ) + that.triggerSlot( 0, data ); + else + that._last_data[ e.data.channel || 0 ] = data.data; + } + this._ws.onerror = function(e) + { + console.log("couldnt connect to websocket"); + that.boxcolor = "#E88"; + } + this._ws.onclose = function(e) + { + console.log("connection closed"); + that.boxcolor = "#000"; + } +} + +LGWebSocket.prototype.send = function(data) +{ + if(!this._ws || this._ws.readyState != WebSocket.OPEN ) + return; + this._ws.send( JSON.stringify({ type:1, msg: data }) ); +} + +LGWebSocket.prototype.onAction = function( action, param ) +{ + if(!this._ws || this._ws.readyState != WebSocket.OPEN ) + return; + this._ws.send( { type: 1, room: this.properties.room, action: action, data: param } ); +} + +LGWebSocket.prototype.onGetInputs = function() +{ + return [["in",0]]; +} + +LGWebSocket.prototype.onGetOutputs = function() +{ + return [["out",0]]; +} + +LiteGraph.registerNodeType("network/websocket", LGWebSocket ); + + +//It is like a websocket but using the SillyServer.js server that bounces packets back to all clients connected: +//For more information: https://github.com/jagenjo/SillyServer.js + +function LGSillyClient() +{ + this.size = [60,20]; + this.addInput("send", LiteGraph.ACTION); + this.addOutput("received", LiteGraph.EVENT); + this.addInput("in", 0 ); + this.addOutput("out", 0 ); + this.properties = { + url: "tamats.com:55000", + room: "lgraph", + save_bandwidth: true + }; + + this._server = null; + this.createSocket(); + this._last_input_data = []; + this._last_output_data = []; +} + +LGSillyClient.title = "SillyClient"; +LGSillyClient.desc = "Connects to SillyServer to broadcast messages"; + +LGSillyClient.prototype.onPropertyChanged = function(name,value) +{ + var final_url = (this.properties.url + "/" + this.properties.room); + if(this._server && this._final_url != final_url ) + { + this._server.connect( this.properties.url, this.properties.room ); + this._final_url = final_url; + } +} + +LGSillyClient.prototype.onExecute = function() +{ + if(!this._server || !this._server.is_connected) + return; + + var save_bandwidth = this.properties.save_bandwidth; + + for(var i = 1; i < this.inputs.length; ++i) + { + var data = this.getInputData(i); + if(data != null) + { + if( save_bandwidth && this._last_input_data[i] == data ) + continue; + this._server.sendMessage( { type: 0, channel: i, data: data } ); + this._last_input_data[i] = data; + } + } + + for(var i = 1; i < this.outputs.length; ++i) + this.setOutputData( i, this._last_output_data[i] ); +} + +LGSillyClient.prototype.createSocket = function() +{ + var that = this; + if(typeof(SillyClient) == "undefined") + { + if(!this._error) + console.error("SillyClient node cannot be used, you must include SillyServer.js"); + this._error = true; + return; + } + + this._server = new SillyClient(); + this._server.on_ready = function() + { + console.log("ready"); + that.boxcolor = "#8E8"; + } + this._server.on_message = function(id,msg) + { + var data = null; + try + { + data = JSON.parse( msg ); + } + catch (err) + { + return; + } + + if(data.type == 1) + that.triggerSlot( 0, data ); + else + that._last_output_data[ data.channel || 0 ] = data.data; + } + this._server.on_error = function(e) + { + console.log("couldnt connect to websocket"); + that.boxcolor = "#E88"; + } + this._server.on_close = function(e) + { + console.log("connection closed"); + that.boxcolor = "#000"; + } + + if(this.properties.url && this.properties.room) + { + this._server.connect( this.properties.url, this.properties.room ); + this._final_url = (this.properties.url + "/" + this.properties.room); + } +} + +LGSillyClient.prototype.send = function(data) +{ + if(!this._server || !this._server.is_connected) + return; + this._server.sendMessage( { type:1, data: data } ); +} + +LGSillyClient.prototype.onAction = function( action, param ) +{ + if(!this._server || !this._server.is_connected) + return; + this._server.sendMessage( { type: 1, action: action, data: param } ); +} + +LGSillyClient.prototype.onGetInputs = function() +{ + return [["in",0]]; +} + +LGSillyClient.prototype.onGetOutputs = function() +{ + return [["out",0]]; +} + +LiteGraph.registerNodeType("network/sillyclient", LGSillyClient ); + + +})(this); \ No newline at end of file diff --git a/build/litegraph.min.js b/build/litegraph.min.js index 5d8753fd9..af47c0558 100755 --- a/build/litegraph.min.js +++ b/build/litegraph.min.js @@ -3,39 +3,39 @@ $jscomp.scope = {}; $jscomp.ASSUME_ES5 = !1; $jscomp.ASSUME_NO_NATIVE_MAP = !1; $jscomp.ASSUME_NO_NATIVE_SET = !1; -$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(v, c, h) { - v != Array.prototype && v != Object.prototype && (v[c] = h.value); +$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(u, f, k) { + u != Array.prototype && u != Object.prototype && (u[f] = k.value); }; -$jscomp.getGlobal = function(v) { - return "undefined" != typeof window && window === v ? v : "undefined" != typeof global && null != global ? global : v; +$jscomp.getGlobal = function(u) { + return "undefined" != typeof window && window === u ? u : "undefined" != typeof global && null != global ? global : u; }; $jscomp.global = $jscomp.getGlobal(this); -$jscomp.polyfill = function(v, c, h, e) { - if (c) { - h = $jscomp.global; - v = v.split("."); - for (e = 0; e < v.length - 1; e++) { - var p = v[e]; - p in h || (h[p] = {}); - h = h[p]; +$jscomp.polyfill = function(u, f, k, c) { + if (f) { + k = $jscomp.global; + u = u.split("."); + for (c = 0; c < u.length - 1; c++) { + var p = u[c]; + p in k || (k[p] = {}); + k = k[p]; } - v = v[v.length - 1]; - e = h[v]; - c = c(e); - c != e && null != c && $jscomp.defineProperty(h, v, {configurable:!0, writable:!0, value:c}); + u = u[u.length - 1]; + c = k[u]; + f = f(c); + f != c && null != f && $jscomp.defineProperty(k, u, {configurable:!0, writable:!0, value:f}); } }; -$jscomp.polyfill("Array.prototype.fill", function(v) { - return v ? v : function(c, h, e) { +$jscomp.polyfill("Array.prototype.fill", function(u) { + return u ? u : function(f, k, c) { var p = this.length || 0; - 0 > h && (h = Math.max(0, p + h)); - if (null == e || e > p) { - e = p; + 0 > k && (k = Math.max(0, p + k)); + if (null == c || c > p) { + c = p; } - e = Number(e); - 0 > e && (e = Math.max(0, p + e)); - for (h = Number(h || 0); h < e; h++) { - this[h] = c; + c = Number(c); + 0 > c && (c = Math.max(0, p + c)); + for (k = Number(k || 0); k < c; k++) { + this[k] = f; } return this; }; @@ -47,70 +47,70 @@ $jscomp.initSymbol = function() { $jscomp.global.Symbol || ($jscomp.global.Symbol = $jscomp.Symbol); }; $jscomp.Symbol = function() { - var v = 0; - return function(c) { - return $jscomp.SYMBOL_PREFIX + (c || "") + v++; + var u = 0; + return function(f) { + return $jscomp.SYMBOL_PREFIX + (f || "") + u++; }; }(); $jscomp.initSymbolIterator = function() { $jscomp.initSymbol(); - var v = $jscomp.global.Symbol.iterator; - v || (v = $jscomp.global.Symbol.iterator = $jscomp.global.Symbol("iterator")); - "function" != typeof Array.prototype[v] && $jscomp.defineProperty(Array.prototype, v, {configurable:!0, writable:!0, value:function() { + var u = $jscomp.global.Symbol.iterator; + u || (u = $jscomp.global.Symbol.iterator = $jscomp.global.Symbol("iterator")); + "function" != typeof Array.prototype[u] && $jscomp.defineProperty(Array.prototype, u, {configurable:!0, writable:!0, value:function() { return $jscomp.arrayIterator(this); }}); $jscomp.initSymbolIterator = function() { }; }; -$jscomp.arrayIterator = function(v) { - var c = 0; +$jscomp.arrayIterator = function(u) { + var f = 0; return $jscomp.iteratorPrototype(function() { - return c < v.length ? {done:!1, value:v[c++]} : {done:!0}; + return f < u.length ? {done:!1, value:u[f++]} : {done:!0}; }); }; -$jscomp.iteratorPrototype = function(v) { +$jscomp.iteratorPrototype = function(u) { $jscomp.initSymbolIterator(); - v = {next:v}; - v[$jscomp.global.Symbol.iterator] = function() { + u = {next:u}; + u[$jscomp.global.Symbol.iterator] = function() { return this; }; - return v; + return u; }; -$jscomp.iteratorFromArray = function(v, c) { +$jscomp.iteratorFromArray = function(u, f) { $jscomp.initSymbolIterator(); - v instanceof String && (v += ""); - var h = 0, e = {next:function() { - if (h < v.length) { - var p = h++; - return {value:c(p, v[p]), done:!1}; + u instanceof String && (u += ""); + var k = 0, c = {next:function() { + if (k < u.length) { + var p = k++; + return {value:f(p, u[p]), done:!1}; } - e.next = function() { + c.next = function() { return {done:!0, value:void 0}; }; - return e.next(); + return c.next(); }}; - e[Symbol.iterator] = function() { - return e; + c[Symbol.iterator] = function() { + return c; }; - return e; + return c; }; -$jscomp.polyfill("Array.prototype.values", function(v) { - return v ? v : function() { - return $jscomp.iteratorFromArray(this, function(c, h) { - return h; +$jscomp.polyfill("Array.prototype.values", function(u) { + return u ? u : function() { + return $jscomp.iteratorFromArray(this, function(f, k) { + return k; }); }; }, "es8", "es3"); -(function(v) { - function c() { - g.debug && console.log("Graph created"); +(function(u) { + function f() { + e.debug && console.log("Graph created"); this.list_of_graphcanvas = null; this.clear(); } - function h(a) { + function k(a) { this._ctor(); } - function e(a, b, d) { + function c(a, b, d) { d = d || {}; this.background_image = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; a && a.constructor === String && (a = document.querySelector(a)); @@ -125,6 +125,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.render_only_selected = this.clear_background = this.render_shadows = !0; this.live_mode = !1; this.allow_interaction = this.allow_dragnodes = this.allow_dragcanvas = this.show_info = !0; + this.drag_mode = !1; + this.dragging_rectangle = null; this.render_connections_shadows = this.always_render_background = !1; this.render_connection_arrows = this.render_curved_connections = this.render_connections_border = !0; this.connections_width = 3; @@ -137,94 +139,95 @@ $jscomp.polyfill("Array.prototype.values", function(v) { function p(a, b) { return Math.sqrt((b[0] - a[0]) * (b[0] - a[0]) + (b[1] - a[1]) * (b[1] - a[1])); } - function n(a, b, d, f, g, e) { - return d < a && d + g > a && f < b && f + e > b ? !0 : !1; + function t(a, b, d, g, h, e) { + return d < a && d + h > a && g < b && g + e > b ? !0 : !1; } - function u(a, b) { - return a[0] > b[2] || a[1] > b[3] || a[2] < b[0] || a[3] < b[1] ? !1 : !0; + function v(a, b) { + var d = a[0] + a[2], g = a[1] + a[3], h = b[1] + b[3]; + return a[0] > b[0] + b[2] || a[1] > h || d < b[0] || g < b[1] ? !1 : !0; } - function x(a, b) { + function w(a, b) { this.options = b = b || {}; var d = this; b.parentMenu && (b.parentMenu.constructor !== this.constructor ? (console.error("parentMenu must be of class ContextMenu, ignoring it"), b.parentMenu = null) : (this.parentMenu = b.parentMenu, this.parentMenu.lock = !0, this.parentMenu.current_submenu = this)); b.event && b.event.constructor !== MouseEvent && b.event.constructor !== CustomEvent && (console.error("Event passed to ContextMenu is not of type MouseEvent or CustomEvent. Ignoring it."), b.event = null); - var f = document.createElement("div"); - f.className = "litegraph litecontextmenu litemenubar-panel"; - f.style.minWidth = 100; - f.style.minHeight = 100; - f.style.pointerEvents = "none"; + var g = document.createElement("div"); + g.className = "litegraph litecontextmenu litemenubar-panel"; + g.style.minWidth = 100; + g.style.minHeight = 100; + g.style.pointerEvents = "none"; setTimeout(function() { - f.style.pointerEvents = "auto"; + g.style.pointerEvents = "auto"; }, 100); - f.addEventListener("mouseup", function(a) { + g.addEventListener("mouseup", function(a) { a.preventDefault(); return !0; }, !0); - f.addEventListener("contextmenu", function(a) { + g.addEventListener("contextmenu", function(a) { if (2 != a.button) { return !1; } a.preventDefault(); return !1; }, !0); - f.addEventListener("mousedown", function(a) { + g.addEventListener("mousedown", function(a) { if (2 == a.button) { return d.close(), a.preventDefault(), !0; } }, !0); - this.root = f; + this.root = g; if (b.title) { - var g = document.createElement("div"); - g.className = "litemenu-title"; - g.innerHTML = b.title; - f.appendChild(g); + var h = document.createElement("div"); + h.className = "litemenu-title"; + h.innerHTML = b.title; + g.appendChild(h); } - g = 0; + h = 0; for (var e in a) { - var q = a.constructor == Array ? a[e] : e; - null != q && q.constructor !== String && (q = void 0 === q.content ? String(q) : q.content); - this.addItem(q, a[e], b); - g++; + var n = a.constructor == Array ? a[e] : e; + null != n && n.constructor !== String && (n = void 0 === n.content ? String(n) : n.content); + this.addItem(n, a[e], b); + h++; } - f.addEventListener("mouseleave", function(a) { + g.addEventListener("mouseleave", function(a) { d.lock || d.close(a); }); a = document; b.event && (a = b.event.target.ownerDocument); a || (a = document); - a.body.appendChild(f); + a.body.appendChild(g); e = b.left || 0; a = b.top || 0; - b.event && (e = b.event.pageX - 10, a = b.event.pageY - 10, b.title && (a -= 20), b.parentMenu && (b = b.parentMenu.root.getBoundingClientRect(), e = b.left + b.width), b = document.body.getBoundingClientRect(), g = f.getBoundingClientRect(), e > b.width - g.width - 10 && (e = b.width - g.width - 10), a > b.height - g.height - 10 && (a = b.height - g.height - 10)); - f.style.left = e + "px"; - f.style.top = a + "px"; + b.event && (e = b.event.pageX - 10, a = b.event.pageY - 10, b.title && (a -= 20), b.parentMenu && (b = b.parentMenu.root.getBoundingClientRect(), e = b.left + b.width), b = document.body.getBoundingClientRect(), h = g.getBoundingClientRect(), e > b.width - h.width - 10 && (e = b.width - h.width - 10), a > b.height - h.height - 10 && (a = b.height - h.height - 10)); + g.style.left = e + "px"; + g.style.top = a + "px"; } - var g = v.LiteGraph = {NODE_TITLE_HEIGHT:16, NODE_SLOT_HEIGHT:15, NODE_WIDTH:140, NODE_MIN_WIDTH:50, NODE_COLLAPSED_RADIUS:10, NODE_COLLAPSED_WIDTH:80, CANVAS_GRID_SIZE:10, NODE_TITLE_COLOR:"#222", NODE_DEFAULT_COLOR:"#999", NODE_DEFAULT_BGCOLOR:"#444", NODE_DEFAULT_BOXCOLOR:"#AEF", NODE_DEFAULT_SHAPE:"box", MAX_NUMBER_OF_NODES:1000, DEFAULT_POSITION:[100, 100], node_images_path:"", VALID_SHAPES:["box", "round"], BOX_SHAPE:1, ROUND_SHAPE:2, CIRCLE_SHAPE:3, INPUT:1, OUTPUT:2, EVENT:-1, ACTION:-1, + var e = u.LiteGraph = {NODE_TITLE_HEIGHT:16, NODE_SLOT_HEIGHT:15, NODE_WIDTH:140, NODE_MIN_WIDTH:50, NODE_COLLAPSED_RADIUS:10, NODE_COLLAPSED_WIDTH:80, CANVAS_GRID_SIZE:10, NODE_TITLE_COLOR:"#222", NODE_DEFAULT_COLOR:"#999", NODE_DEFAULT_BGCOLOR:"#444", NODE_DEFAULT_BOXCOLOR:"#AEF", NODE_DEFAULT_SHAPE:"box", MAX_NUMBER_OF_NODES:1000, DEFAULT_POSITION:[100, 100], node_images_path:"", VALID_SHAPES:["box", "round"], BOX_SHAPE:1, ROUND_SHAPE:2, CIRCLE_SHAPE:3, INPUT:1, OUTPUT:2, EVENT:-1, ACTION:-1, ALWAYS:0, ON_EVENT:1, NEVER:2, ON_TRIGGER:3, proxy:null, debug:!1, throw_errors:!0, allow_scripts:!0, registered_node_types:{}, node_types_by_file_extension:{}, Nodes:{}, registerNodeType:function(a, b) { if (!b.prototype) { throw "Cannot register a simple object, it must be a class with a prototype"; } b.type = a; - g.debug && console.log("Node registered: " + a); + e.debug && console.log("Node registered: " + a); a.split("/"); - var d = b.constructor.name, f = a.lastIndexOf("/"); - b.category = a.substr(0, f); + var d = b.constructor.name, g = a.lastIndexOf("/"); + b.category = a.substr(0, g); b.title || (b.title = d); if (b.prototype) { - for (var t in h.prototype) { - b.prototype[t] || (b.prototype[t] = h.prototype[t]); + for (var h in k.prototype) { + b.prototype[h] || (b.prototype[h] = k.prototype[h]); } } Object.defineProperty(b.prototype, "shape", {set:function(a) { switch(a) { case "box": - this._shape = g.BOX_SHAPE; + this._shape = e.BOX_SHAPE; break; case "round": - this._shape = g.ROUND_SHAPE; + this._shape = e.ROUND_SHAPE; break; case "circle": - this._shape = g.CIRCLE_SHAPE; + this._shape = e.CIRCLE_SHAPE; break; default: this._shape = a; @@ -236,38 +239,53 @@ $jscomp.polyfill("Array.prototype.values", function(v) { b.constructor.name && (this.Nodes[d] = b); b.prototype.onPropertyChange && console.warn("LiteGraph node class " + a + " has onPropertyChange method, it must be called onPropertyChanged with d at the end"); if (b.supported_extensions) { - for (t in b.supported_extensions) { - this.node_types_by_file_extension[b.supported_extensions[t].toLowerCase()] = b; + for (h in b.supported_extensions) { + this.node_types_by_file_extension[b.supported_extensions[h].toLowerCase()] = b; } } + }, wrapFunctionAsNode:function(a, b, d, g) { + for (var h = Array(b.length), c = "", n = e.getParameterNames(b), l = 0; l < n.length; ++l) { + c += "this.addInput('" + n[l] + "'," + (d && d[l] ? "'" + d[l] + "'" : "0") + ");\n"; + } + d = Function(c + ("this.addOutput('out'," + (g ? "'" + g + "'" : 0) + ");\n")); + d.title = a.split("/").pop(); + d.desc = "Generated from " + b.name; + d.prototype.onExecute = function() { + for (var a = 0; a < h.length; ++a) { + h[a] = this.getInputData(a); + } + a = b.apply(this, h); + this.setOutputData(0, a); + }; + this.registerNodeType(a, d); }, addNodeMethod:function(a, b) { - h.prototype[a] = b; + k.prototype[a] = b; for (var d in this.registered_node_types) { - var f = this.registered_node_types[d]; - f.prototype[a] && (f.prototype["_" + a] = f.prototype[a]); - f.prototype[a] = b; + var g = this.registered_node_types[d]; + g.prototype[a] && (g.prototype["_" + a] = g.prototype[a]); + g.prototype[a] = b; } }, createNode:function(a, b, d) { - var f = this.registered_node_types[a]; - if (!f) { - return g.debug && console.log('GraphNode type "' + a + '" not registered.'), null; + var g = this.registered_node_types[a]; + if (!g) { + return e.debug && console.log('GraphNode type "' + a + '" not registered.'), null; } - b = b || f.title || a; - f = new f(b); - f.type = a; - f.title || (f.title = b); - f.properties || (f.properties = {}); - f.properties_info || (f.properties_info = []); - f.flags || (f.flags = {}); - f.size || (f.size = f.computeSize()); - f.pos || (f.pos = g.DEFAULT_POSITION.concat()); - f.mode || (f.mode = g.ALWAYS); + b = b || g.title || a; + g = new g(b); + g.type = a; + g.title || (g.title = b); + g.properties || (g.properties = {}); + g.properties_info || (g.properties_info = []); + g.flags || (g.flags = {}); + g.size || (g.size = g.computeSize()); + g.pos || (g.pos = e.DEFAULT_POSITION.concat()); + g.mode || (g.mode = e.ALWAYS); if (d) { - for (var t in d) { - f[t] = d[t]; + for (var h in d) { + g[h] = d[h]; } } - return f; + return g; }, getNodeType:function(a) { return this.registered_node_types[a]; }, getNodeTypesInCategory:function(a) { @@ -287,31 +305,31 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return d; }, reloadNodes:function(a) { - var b = document.getElementsByTagName("script"), d = [], f; - for (f in b) { - d.push(b[f]); + var b = document.getElementsByTagName("script"), d = [], g; + for (g in b) { + d.push(b[g]); } b = document.getElementsByTagName("head")[0]; a = document.location.href + a; - for (f in d) { - var t = d[f].src; - if (t && t.substr(0, a.length) == a) { + for (g in d) { + var h = d[g].src; + if (h && h.substr(0, a.length) == a) { try { - g.debug && console.log("Reloading: " + t); - var e = document.createElement("script"); - e.type = "text/javascript"; - e.src = t; - b.appendChild(e); - b.removeChild(d[f]); - } catch (q) { - if (g.throw_errors) { - throw q; + e.debug && console.log("Reloading: " + h); + var c = document.createElement("script"); + c.type = "text/javascript"; + c.src = h; + b.appendChild(c); + b.removeChild(d[g]); + } catch (n) { + if (e.throw_errors) { + throw n; } - g.debug && console.log("Error while reloading " + t); + e.debug && console.log("Error while reloading " + h); } } } - g.debug && console.log("Nodes reloaded"); + e.debug && console.log("Nodes reloaded"); }, cloneObject:function(a, b) { if (null == a) { return null; @@ -325,24 +343,41 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return b; }, isValidConnection:function(a, b) { - return !a || !b || a == b || a !== g.EVENT && b !== g.EVENT && a.toLowerCase() == b.toLowerCase() ? !0 : !1; + if (!a || !b || a == b || a == e.EVENT && b == e.ACTION) { + return !0; + } + a = a.toLowerCase(); + b = b.toLowerCase(); + if (-1 == a.indexOf(",") && -1 == b.indexOf(",")) { + return a == b; + } + a = a.split(","); + b = b.split(","); + for (var d = 0; d < a.length; ++d) { + for (var g = 0; g < b.length; ++g) { + if (a[d] == b[g]) { + return !0; + } + } + } + return !1; }}; - g.getTime = "undefined" != typeof performance ? performance.now.bind(performance) : "undefined" != typeof Date && Date.now ? Date.now.bind(Date) : "undefined" != typeof process ? function() { + e.getTime = "undefined" != typeof performance ? performance.now.bind(performance) : "undefined" != typeof Date && Date.now ? Date.now.bind(Date) : "undefined" != typeof process ? function() { var a = process.hrtime(); return 0.001 * a[0] + 1e-6 * a[1]; } : function() { return (new Date).getTime(); }; - v.LGraph = g.LGraph = c; - c.supported_types = ["number", "string", "boolean"]; - c.prototype.getSupportedTypes = function() { - return this.supported_types || c.supported_types; + u.LGraph = e.LGraph = f; + f.supported_types = ["number", "string", "boolean"]; + f.prototype.getSupportedTypes = function() { + return this.supported_types || f.supported_types; }; - c.STATUS_STOPPED = 1; - c.STATUS_RUNNING = 2; - c.prototype.clear = function() { + f.STATUS_STOPPED = 1; + f.STATUS_RUNNING = 2; + f.prototype.clear = function() { this.stop(); - this.status = c.STATUS_STOPPED; + this.status = f.STATUS_STOPPED; this.last_node_id = 0; this._nodes = []; this._nodes_by_id = {}; @@ -361,8 +396,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.change(); this.sendActionToCanvas("clear"); }; - c.prototype.attachCanvas = function(a) { - if (a.constructor != e) { + f.prototype.attachCanvas = function(a) { + if (a.constructor != c) { throw "attachCanvas expects a LGraphCanvas instance"; } a.graph && a.graph != this && a.graph.detachCanvas(a); @@ -370,29 +405,29 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.list_of_graphcanvas || (this.list_of_graphcanvas = []); this.list_of_graphcanvas.push(a); }; - c.prototype.detachCanvas = function(a) { + f.prototype.detachCanvas = function(a) { if (this.list_of_graphcanvas) { var b = this.list_of_graphcanvas.indexOf(a); -1 != b && (a.graph = null, this.list_of_graphcanvas.splice(b, 1)); } }; - c.prototype.start = function(a) { - if (this.status != c.STATUS_RUNNING) { - this.status = c.STATUS_RUNNING; + f.prototype.start = function(a) { + if (this.status != f.STATUS_RUNNING) { + this.status = f.STATUS_RUNNING; if (this.onPlayEvent) { this.onPlayEvent(); } this.sendEventToAllNodes("onStart"); - this.starttime = g.getTime(); + this.starttime = e.getTime(); var b = this; this.execution_timer_id = setInterval(function() { b.runStep(1, !this.catch_errors); }, a || 1); } }; - c.prototype.stop = function() { - if (this.status != c.STATUS_STOPPED) { - this.status = c.STATUS_STOPPED; + f.prototype.stop = function() { + if (this.status != f.STATUS_STOPPED) { + this.status = f.STATUS_STOPPED; if (this.onStopEvent) { this.onStopEvent(); } @@ -401,17 +436,17 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.sendEventToAllNodes("onStop"); } }; - c.prototype.runStep = function(a, b) { + f.prototype.runStep = function(a, b) { a = a || 1; - var d = g.getTime(); + var d = e.getTime(); this.globaltime = 0.001 * (d - this.starttime); - var f = this._nodes_executable ? this._nodes_executable : this._nodes; - if (f) { + var g = this._nodes_executable ? this._nodes_executable : this._nodes; + if (g) { if (b) { - for (var t = 0; t < a; t++) { - for (var e = 0, q = f.length; e < q; ++e) { - var l = f[e]; - if (l.mode == g.ALWAYS && l.onExecute) { + for (var h = 0; h < a; h++) { + for (var c = 0, n = g.length; c < n; ++c) { + var l = g[c]; + if (l.mode == e.ALWAYS && l.onExecute) { l.onExecute(); } } @@ -425,10 +460,10 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } else { try { - for (t = 0; t < a; t++) { - e = 0; - for (q = f.length; e < q; ++e) { - if (l = f[e], l.mode == g.ALWAYS && l.onExecute) { + for (h = 0; h < a; h++) { + c = 0; + for (n = g.length; c < n; ++c) { + if (l = g[c], l.mode == e.ALWAYS && l.onExecute) { l.onExecute(); } } @@ -441,104 +476,122 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onAfterExecute(); } this.errors_in_execution = !1; - } catch (w) { + } catch (A) { this.errors_in_execution = !0; - if (g.throw_errors) { - throw w; + if (e.throw_errors) { + throw A; } - g.debug && console.log("Error during execution: " + w); + e.debug && console.log("Error during execution: " + A); this.stop(); } } - a = g.getTime() - d; + a = e.getTime() - d; 0 == a && (a = 1); this.elapsed_time = 0.001 * a; this.globaltime += 0.001 * a; this.iteration += 1; } }; - c.prototype.updateExecutionOrder = function() { + f.prototype.updateExecutionOrder = function() { this._nodes_in_order = this.computeExecutionOrder(!1); this._nodes_executable = []; for (var a = 0; a < this._nodes_in_order.length; ++a) { this._nodes_in_order[a].onExecute && this._nodes_executable.push(this._nodes_in_order[a]); } }; - c.prototype.computeExecutionOrder = function(a) { - for (var b = [], d = [], f = {}, t = {}, e = {}, q = 0, l = this._nodes.length; q < l; ++q) { - var c = this._nodes[q]; - if (!a || c.onExecute) { - f[c.id] = c; - var k = 0; - if (c.inputs) { - for (var h = 0, p = c.inputs.length; h < p; h++) { - c.inputs[h] && null != c.inputs[h].link && (k += 1); + f.prototype.computeExecutionOrder = function(a, b) { + for (var d = [], g = [], h = {}, c = {}, n = {}, l = 0, f = this._nodes.length; l < f; ++l) { + var q = this._nodes[l]; + if (!a || q.onExecute) { + h[q.id] = q; + var p = 0; + if (q.inputs) { + for (var k = 0, t = q.inputs.length; k < t; k++) { + q.inputs[k] && null != q.inputs[k].link && (p += 1); } } - 0 == k ? d.push(c) : e[c.id] = k; + 0 == p ? (g.push(q), b && (q._level = 1)) : (b && (q._level = 0), n[q.id] = p); } } - for (; 0 != d.length;) { - if (c = d.shift(), b.push(c), delete f[c.id], c.outputs) { - for (q = 0; q < c.outputs.length; q++) { - if (a = c.outputs[q], null != a && null != a.links && 0 != a.links.length) { - for (h = 0; h < a.links.length; h++) { - (l = this.links[a.links[h]]) && !t[l.id] && (k = this.getNodeById(l.target_id), null == k ? t[l.id] = !0 : (t[l.id] = !0, --e[k.id], 0 == e[k.id] && d.push(k))); + for (; 0 != g.length;) { + if (q = g.shift(), d.push(q), delete h[q.id], q.outputs) { + for (l = 0; l < q.outputs.length; l++) { + if (a = q.outputs[l], null != a && null != a.links && 0 != a.links.length) { + for (k = 0; k < a.links.length; k++) { + (f = this.links[a.links[k]]) && !c[f.id] && (p = this.getNodeById(f.target_id), null == p ? c[f.id] = !0 : (b && (!p._level || p._level <= q._level) && (p._level = q._level + 1), c[f.id] = !0, --n[p.id], 0 == n[p.id] && g.push(p))); } } } } } - for (q in f) { - b.push(f[q]); + for (l in h) { + d.push(h[l]); } - b.length != this._nodes.length && g.debug && console.warn("something went wrong, nodes missing"); - for (q = 0; q < b.length; ++q) { - b[q].order = q; + d.length != this._nodes.length && e.debug && console.warn("something went wrong, nodes missing"); + for (l = 0; l < d.length; ++l) { + d[l].order = l; } - return b; + return d; }; - c.prototype.getTime = function() { + f.prototype.arrange = function(a) { + a = a || 40; + for (var b = this.computeExecutionOrder(!1, !0), d = [], g = 0; g < b.length; ++g) { + var e = b[g], c = e._level || 1; + d[c] || (d[c] = []); + d[c].push(e); + } + b = a; + for (g = 0; g < d.length; ++g) { + if (c = d[g]) { + for (var n = 100, l = a, f = 0; f < c.length; ++f) { + e = c[f], e.pos[0] = b, e.pos[1] = l, e.size[0] > n && (n = e.size[0]), l += e.size[1] + a; + } + b += n + a; + } + } + this.setDirtyCanvas(!0, !0); + }; + f.prototype.getTime = function() { return this.globaltime; }; - c.prototype.getFixedTime = function() { + f.prototype.getFixedTime = function() { return this.fixedtime; }; - c.prototype.getElapsedTime = function() { + f.prototype.getElapsedTime = function() { return this.elapsed_time; }; - c.prototype.sendEventToAllNodes = function(a, b, d) { - d = d || g.ALWAYS; - var f = this._nodes_in_order ? this._nodes_in_order : this._nodes; - if (f) { - for (var t = 0, e = f.length; t < e; ++t) { - var c = f[t]; - if (c[a] && c.mode == d) { + f.prototype.sendEventToAllNodes = function(a, b, d) { + d = d || e.ALWAYS; + var g = this._nodes_in_order ? this._nodes_in_order : this._nodes; + if (g) { + for (var h = 0, c = g.length; h < c; ++h) { + var n = g[h]; + if (n[a] && n.mode == d) { if (void 0 === b) { - c[a](); + n[a](); } else { if (b && b.constructor === Array) { - c[a].apply(c, b); + n[a].apply(n, b); } else { - c[a](b); + n[a](b); } } } } } }; - c.prototype.sendActionToCanvas = function(a, b) { + f.prototype.sendActionToCanvas = function(a, b) { if (this.list_of_graphcanvas) { for (var d = 0; d < this.list_of_graphcanvas.length; ++d) { - var f = this.list_of_graphcanvas[d]; - f[a] && f[a].apply(f, b); + var g = this.list_of_graphcanvas[d]; + g[a] && g[a].apply(g, b); } } }; - c.prototype.add = function(a, b) { + f.prototype.add = function(a, b) { if (a) { -1 != a.id && null != this._nodes_by_id[a.id] && (console.warn("LiteGraph: there is already a node with this ID, changing it"), a.id = ++this.last_node_id); - if (this._nodes.length >= g.MAX_NUMBER_OF_NODES) { + if (this._nodes.length >= e.MAX_NUMBER_OF_NODES) { throw "LiteGraph: max number of nodes in a graph reached"; } null == a.id || -1 == a.id ? a.id = ++this.last_node_id : this.last_node_id < a.id && (this.last_node_id = a.id); @@ -558,7 +611,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return a; } }; - c.prototype.remove = function(a) { + f.prototype.remove = function(a) { if (null != this._nodes_by_id[a.id] && !a.ignore_remove) { if (a.inputs) { for (var b = 0; b < a.inputs.length; b++) { @@ -591,39 +644,39 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.updateExecutionOrder(); } }; - c.prototype.getNodeById = function(a) { + f.prototype.getNodeById = function(a) { return null == a ? null : this._nodes_by_id[a]; }; - c.prototype.findNodesByClass = function(a) { - for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + f.prototype.findNodesByClass = function(a) { + for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { this._nodes[d].constructor === a && b.push(this._nodes[d]); } return b; }; - c.prototype.findNodesByType = function(a) { + f.prototype.findNodesByType = function(a) { a = a.toLowerCase(); - for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { this._nodes[d].type.toLowerCase() == a && b.push(this._nodes[d]); } return b; }; - c.prototype.findNodesByTitle = function(a) { - for (var b = [], d = 0, f = this._nodes.length; d < f; ++d) { + f.prototype.findNodesByTitle = function(a) { + for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { this._nodes[d].title == a && b.push(this._nodes[d]); } return b; }; - c.prototype.getNodeOnPos = function(a, b, d) { + f.prototype.getNodeOnPos = function(a, b, d) { d = d || this._nodes; - for (var f = d.length - 1; 0 <= f; f--) { - var g = d[f]; - if (g.isPointInsideNode(a, b, 2)) { - return g; + for (var g = d.length - 1; 0 <= g; g--) { + var e = d[g]; + if (e.isPointInsideNode(a, b, 2)) { + return e; } } return null; }; - c.prototype.addGlobalInput = function(a, b, d) { + f.prototype.addGlobalInput = function(a, b, d) { this.global_inputs[a] = {name:a, type:b, value:d}; if (this.onGlobalInputAdded) { this.onGlobalInputAdded(a, b); @@ -632,15 +685,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onGlobalsChange(); } }; - c.prototype.setGlobalInputData = function(a, b) { + f.prototype.setGlobalInputData = function(a, b) { if (a = this.global_inputs[a]) { a.value = b; } }; - c.prototype.getGlobalInputData = function(a) { + f.prototype.getGlobalInputData = function(a) { return (a = this.global_inputs[a]) ? a.value : null; }; - c.prototype.renameGlobalInput = function(a, b) { + f.prototype.renameGlobalInput = function(a, b) { if (b != a) { if (!this.global_inputs[a]) { return !1; @@ -658,7 +711,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - c.prototype.changeGlobalInputType = function(a, b) { + f.prototype.changeGlobalInputType = function(a, b) { if (!this.global_inputs[a]) { return !1; } @@ -666,7 +719,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onGlobalInputTypeChanged(a, b); } }; - c.prototype.removeGlobalInput = function(a) { + f.prototype.removeGlobalInput = function(a) { if (!this.global_inputs[a]) { return !1; } @@ -679,7 +732,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return !0; }; - c.prototype.addGlobalOutput = function(a, b, d) { + f.prototype.addGlobalOutput = function(a, b, d) { this.global_outputs[a] = {name:a, type:b, value:d}; if (this.onGlobalOutputAdded) { this.onGlobalOutputAdded(a, b); @@ -688,15 +741,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onGlobalsChange(); } }; - c.prototype.setGlobalOutputData = function(a, b) { + f.prototype.setGlobalOutputData = function(a, b) { if (a = this.global_outputs[a]) { a.value = b; } }; - c.prototype.getGlobalOutputData = function(a) { + f.prototype.getGlobalOutputData = function(a) { return (a = this.global_outputs[a]) ? a.value : null; }; - c.prototype.renameGlobalOutput = function(a, b) { + f.prototype.renameGlobalOutput = function(a, b) { if (!this.global_outputs[a]) { return !1; } @@ -712,7 +765,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onGlobalsChange(); } }; - c.prototype.changeGlobalOutputType = function(a, b) { + f.prototype.changeGlobalOutputType = function(a, b) { if (!this.global_outputs[a]) { return !1; } @@ -720,7 +773,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onGlobalOutputTypeChanged(a, b); } }; - c.prototype.removeGlobalOutput = function(a) { + f.prototype.removeGlobalOutput = function(a) { if (!this.global_outputs[a]) { return !1; } @@ -733,35 +786,35 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return !0; }; - c.prototype.setInputData = function(a, b) { + f.prototype.setInputData = function(a, b) { a = this.findNodesByName(a); - for (var d = 0, f = a.length; d < f; ++d) { + for (var d = 0, g = a.length; d < g; ++d) { a[d].setValue(b); } }; - c.prototype.getOutputData = function(a) { + f.prototype.getOutputData = function(a) { return this.findNodesByName(a).length ? m[0].getValue() : null; }; - c.prototype.triggerInput = function(a, b) { + f.prototype.triggerInput = function(a, b) { a = this.findNodesByName(a); for (var d = 0; d < a.length; ++d) { a[d].onTrigger(b); } }; - c.prototype.setCallback = function(a, b) { + f.prototype.setCallback = function(a, b) { a = this.findNodesByName(a); for (var d = 0; d < a.length; ++d) { a[d].setTrigger(b); } }; - c.prototype.connectionChange = function(a) { + f.prototype.connectionChange = function(a) { this.updateExecutionOrder(); if (this.onConnectionChange) { this.onConnectionChange(a); } this.sendActionToCanvas("onConnectionChange"); }; - c.prototype.isLive = function() { + f.prototype.isLive = function() { if (!this.list_of_graphcanvas) { return !1; } @@ -772,57 +825,57 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return !1; }; - c.prototype.change = function() { - g.debug && console.log("Graph changed"); + f.prototype.change = function() { + e.debug && console.log("Graph changed"); this.sendActionToCanvas("setDirty", [!0, !0]); if (this.on_change) { this.on_change(this); } }; - c.prototype.setDirtyCanvas = function(a, b) { + f.prototype.setDirtyCanvas = function(a, b) { this.sendActionToCanvas("setDirty", [a, b]); }; - c.prototype.serialize = function() { + f.prototype.serialize = function() { for (var a = [], b = 0, d = this._nodes.length; b < d; ++b) { a.push(this._nodes[b].serialize()); } d = []; for (b in this.links) { - var f = this.links[b]; - d.push([f.id, f.origin_id, f.origin_slot, f.target_id, f.target_slot, f.type]); + var g = this.links[b]; + d.push([g.id, g.origin_id, g.origin_slot, g.target_id, g.target_slot, g.type]); } return {iteration:this.iteration, frame:this.frame, last_node_id:this.last_node_id, last_link_id:this.last_link_id, links:d, config:this.config, nodes:a}; }; - c.prototype.configure = function(a, b) { + f.prototype.configure = function(a, b) { b || this.clear(); b = a.nodes; if (a.links && a.links.constructor === Array) { - for (var d = {}, f = 0; f < a.links.length; ++f) { - var t = a.links[f]; - d[t[0]] = {id:t[0], origin_id:t[1], origin_slot:t[2], target_id:t[3], target_slot:t[4], type:t[5]}; + for (var d = {}, g = 0; g < a.links.length; ++g) { + var h = a.links[g]; + d[h[0]] = {id:h[0], origin_id:h[1], origin_slot:h[2], target_id:h[3], target_slot:h[4], type:h[5]}; } a.links = d; } - for (f in a) { - this[f] = a[f]; + for (g in a) { + this[g] = a[g]; } a = !1; this._nodes = []; - f = 0; - for (d = b.length; f < d; ++f) { - t = b[f]; - var e = g.createNode(t.type, t.title); - e ? (e.id = t.id, this.add(e, !0)) : (g.debug && console.log("Node not found: " + t.type), a = !0); + g = 0; + for (d = b.length; g < d; ++g) { + h = b[g]; + var c = e.createNode(h.type, h.title); + c ? (c.id = h.id, this.add(c, !0)) : (e.debug && console.log("Node not found: " + h.type), a = !0); } - f = 0; - for (d = b.length; f < d; ++f) { - t = b[f], (e = this.getNodeById(t.id)) && e.configure(t); + g = 0; + for (d = b.length; g < d; ++g) { + h = b[g], (c = this.getNodeById(h.id)) && c.configure(h); } this.updateExecutionOrder(); this.setDirtyCanvas(!0, !0); return a; }; - c.prototype.load = function(a) { + f.prototype.load = function(a) { var b = this, d = new XMLHttpRequest; d.open("GET", a, !0); d.send(null); @@ -833,12 +886,12 @@ $jscomp.polyfill("Array.prototype.values", function(v) { console.error("Error loading graph:", a); }; }; - c.prototype.onNodeTrace = function(a, b, d) { + f.prototype.onNodeTrace = function(a, b, d) { }; - v.LGraphNode = g.LGraphNode = h; - h.prototype._ctor = function(a) { + u.LGraphNode = e.LGraphNode = k; + k.prototype._ctor = function(a) { this.title = a || "Unnamed"; - this.size = [g.NODE_WIDTH, 60]; + this.size = [e.NODE_WIDTH, 60]; this.graph = null; this._pos = new Float32Array(10, 10); Object.defineProperty(this, "pos", {set:function(a) { @@ -856,7 +909,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.data = null; this.flags = {}; }; - h.prototype.configure = function(a) { + k.prototype.configure = function(a) { for (var b in a) { if ("console" != b) { if ("properties" == b) { @@ -866,35 +919,35 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } } else { - null != a[b] && ("object" == typeof a[b] ? this[b] && this[b].configure ? this[b].configure(a[b]) : this[b] = g.cloneObject(a[b], this[b]) : this[b] = a[b]); + null != a[b] && ("object" == typeof a[b] ? this[b] && this[b].configure ? this[b].configure(a[b]) : this[b] = e.cloneObject(a[b], this[b]) : this[b] = a[b]); } } } if (this.onConnectionsChange) { if (this.inputs) { - for (var f = 0; f < this.inputs.length; ++f) { - d = this.inputs[f]; - var t = this.graph.links[d.link]; - this.onConnectionsChange(g.INPUT, f, !0, t, d); + for (var g = 0; g < this.inputs.length; ++g) { + d = this.inputs[g]; + var h = this.graph.links[d.link]; + this.onConnectionsChange(e.INPUT, g, !0, h, d); } } if (this.outputs) { - for (f = 0; f < this.outputs.length; ++f) { - if (d = this.outputs[f], d.links) { + for (g = 0; g < this.outputs.length; ++g) { + if (d = this.outputs[g], d.links) { for (b = 0; b < d.links.length; ++b) { - t = this.graph.links[d.links[b]], this.onConnectionsChange(g.OUTPUT, f, !0, t, d); + h = this.graph.links[d.links[b]], this.onConnectionsChange(e.OUTPUT, g, !0, h, d); } } } } } - for (f in this.inputs) { - d = this.inputs[f], d.link && d.link.length && (t = d.link, "object" == typeof t && (d.link = t[0], this.graph.links[t[0]] = {id:t[0], origin_id:t[1], origin_slot:t[2], target_id:t[3], target_slot:t[4]})); + for (g in this.inputs) { + d = this.inputs[g], d.link && d.link.length && (h = d.link, "object" == typeof h && (d.link = h[0], this.graph.links[h[0]] = {id:h[0], origin_id:h[1], origin_slot:h[2], target_id:h[3], target_slot:h[4]})); } - for (f in this.outputs) { - if (d = this.outputs[f], d.links && 0 != d.links.length) { + for (g in this.outputs) { + if (d = this.outputs[g], d.links && 0 != d.links.length) { for (b in d.links) { - t = d.links[b], "object" == typeof t && (d.links[b] = t[0]); + h = d.links[b], "object" == typeof h && (d.links[b] = h[0]); } } } @@ -902,14 +955,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onConfigure(a); } }; - h.prototype.serialize = function() { + k.prototype.serialize = function() { if (this.outputs) { for (var a = 0; a < this.outputs.length; a++) { delete this.outputs[a]._data; } } - a = {id:this.id, title:this.title, type:this.type, pos:this.pos, size:this.size, data:this.data, flags:g.cloneObject(this.flags), inputs:this.inputs, outputs:this.outputs, mode:this.mode}; - this.properties && (a.properties = g.cloneObject(this.properties)); + a = {id:this.id, title:this.title, type:this.type, pos:this.pos, size:this.size, data:this.data, flags:e.cloneObject(this.flags), inputs:this.inputs, outputs:this.outputs, mode:this.mode}; + this.properties && (a.properties = e.cloneObject(this.properties)); a.type || (a.type = this.constructor.type); this.color && (a.color = this.color); this.bgcolor && (a.bgcolor = this.bgcolor); @@ -920,8 +973,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return a; }; - h.prototype.clone = function() { - var a = g.createNode(this.type), b = g.cloneObject(this.serialize()); + k.prototype.clone = function() { + var a = e.createNode(this.type), b = e.cloneObject(this.serialize()); if (b.inputs) { for (var d = 0; d < b.inputs.length; ++d) { b.inputs[d].link = null; @@ -936,13 +989,13 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a.configure(b); return a; }; - h.prototype.toString = function() { + k.prototype.toString = function() { return JSON.stringify(this.serialize()); }; - h.prototype.getTitle = function() { + k.prototype.getTitle = function() { return this.title || this.constructor.title; }; - h.prototype.setOutputData = function(a, b) { + k.prototype.setOutputData = function(a, b) { if (this.outputs && !(-1 == a || a >= this.outputs.length)) { var d = this.outputs[a]; if (d && (d._data = b, this.outputs[a].links)) { @@ -952,7 +1005,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - h.prototype.getInputData = function(a, b) { + k.prototype.getInputData = function(a, b) { if (this.inputs && !(a >= this.inputs.length || null == this.inputs[a].link)) { a = this.graph.links[this.inputs[a].link]; if (!a) { @@ -975,29 +1028,29 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return a.data; } }; - h.prototype.isInputConnected = function(a) { + k.prototype.isInputConnected = function(a) { return this.inputs ? a < this.inputs.length && null != this.inputs[a].link : !1; }; - h.prototype.getInputInfo = function(a) { + k.prototype.getInputInfo = function(a) { return this.inputs ? a < this.inputs.length ? this.inputs[a] : null : null; }; - h.prototype.getInputNode = function(a) { + k.prototype.getInputNode = function(a) { if (!this.inputs || a >= this.inputs.length) { return null; } a = this.inputs[a]; return a && a.link ? (a = this.graph.links[a.link]) ? this.graph.getNodeById(a.origin_id) : null : null; }; - h.prototype.getOutputData = function(a) { + k.prototype.getOutputData = function(a) { return !this.outputs || a >= this.outputs.length ? null : this.outputs[a]._data; }; - h.prototype.getOutputInfo = function(a) { + k.prototype.getOutputInfo = function(a) { return this.outputs ? a < this.outputs.length ? this.outputs[a] : null : null; }; - h.prototype.isOutputConnected = function(a) { + k.prototype.isOutputConnected = function(a) { return this.outputs ? a < this.outputs.length && this.outputs[a].links && this.outputs[a].links.length : null; }; - h.prototype.getOutputNodes = function(a) { + k.prototype.getOutputNodes = function(a) { if (!this.outputs || 0 == this.outputs.length || a >= this.outputs.length) { return null; } @@ -1006,33 +1059,33 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return null; } for (var b = [], d = 0; d < a.links.length; d++) { - var f = this.graph.links[a.links[d]]; - f && (f = this.graph.getNodeById(f.target_id)) && b.push(f); + var g = this.graph.links[a.links[d]]; + g && (g = this.graph.getNodeById(g.target_id)) && b.push(g); } return b; }; - h.prototype.trigger = function(a, b) { + k.prototype.trigger = function(a, b) { if (this.outputs && this.outputs.length) { - this.graph && (this.graph._last_trigger_time = g.getTime()); + this.graph && (this.graph._last_trigger_time = e.getTime()); for (var d = 0; d < this.outputs.length; ++d) { - var f = this.outputs[d]; - !f || f.type !== g.EVENT || a && f.name != a || this.triggerSlot(d, b); + var g = this.outputs[d]; + !g || g.type !== e.EVENT || a && g.name != a || this.triggerSlot(d, b); } } }; - h.prototype.triggerSlot = function(a, b) { + k.prototype.triggerSlot = function(a, b) { if (this.outputs && (a = this.outputs[a]) && (a = a.links) && a.length) { - this.graph && (this.graph._last_trigger_time = g.getTime()); + this.graph && (this.graph._last_trigger_time = e.getTime()); for (var d = 0; d < a.length; ++d) { - var f = this.graph.links[a[d]]; - if (f) { - var t = this.graph.getNodeById(f.target_id); - if (t) { - if (f._last_time = g.getTime(), f = t.inputs[f.target_slot], t.onAction) { - t.onAction(f.name, b); + var g = this.graph.links[a[d]]; + if (g) { + var h = this.graph.getNodeById(g.target_id); + if (h) { + if (g._last_time = e.getTime(), g = h.inputs[g.target_slot], h.onAction) { + h.onAction(g.name, b); } else { - if (t.mode === g.ON_TRIGGER && t.onExecute) { - t.onExecute(b); + if (h.mode === e.ON_TRIGGER && h.onExecute) { + h.onExecute(b); } } } @@ -1040,11 +1093,11 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - h.prototype.addProperty = function(a, b, d, f) { + k.prototype.addProperty = function(a, b, d, g) { d = {name:a, type:d, default_value:b}; - if (f) { - for (var g in f) { - d[g] = f[g]; + if (g) { + for (var e in g) { + d[e] = g[e]; } } this.properties_info || (this.properties_info = []); @@ -1053,11 +1106,11 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.properties[a] = b; return d; }; - h.prototype.addOutput = function(a, b, d) { + k.prototype.addOutput = function(a, b, d) { a = {name:a, type:b, links:null}; if (d) { - for (var f in d) { - a[f] = d[f]; + for (var e in d) { + a[e] = d[e]; } } this.outputs || (this.outputs = []); @@ -1068,23 +1121,23 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.size = this.computeSize(); return a; }; - h.prototype.addOutputs = function(a) { + k.prototype.addOutputs = function(a) { for (var b = 0; b < a.length; ++b) { - var d = a[b], f = {name:d[0], type:d[1], link:null}; + var d = a[b], e = {name:d[0], type:d[1], link:null}; if (a[2]) { - for (var g in d[2]) { - f[g] = d[2][g]; + for (var h in d[2]) { + e[h] = d[2][h]; } } this.outputs || (this.outputs = []); - this.outputs.push(f); + this.outputs.push(e); if (this.onOutputAdded) { - this.onOutputAdded(f); + this.onOutputAdded(e); } } this.size = this.computeSize(); }; - h.prototype.removeOutput = function(a) { + k.prototype.removeOutput = function(a) { this.disconnectOutput(a); this.outputs.splice(a, 1); this.size = this.computeSize(); @@ -1092,11 +1145,11 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onOutputRemoved(a); } }; - h.prototype.addInput = function(a, b, d) { + k.prototype.addInput = function(a, b, d) { a = {name:a, type:b || 0, link:null}; if (d) { - for (var f in d) { - a[f] = d[f]; + for (var e in d) { + a[e] = d[e]; } } this.inputs || (this.inputs = []); @@ -1107,23 +1160,23 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return a; }; - h.prototype.addInputs = function(a) { + k.prototype.addInputs = function(a) { for (var b = 0; b < a.length; ++b) { - var d = a[b], f = {name:d[0], type:d[1], link:null}; + var d = a[b], e = {name:d[0], type:d[1], link:null}; if (a[2]) { - for (var g in d[2]) { - f[g] = d[2][g]; + for (var h in d[2]) { + e[h] = d[2][h]; } } this.inputs || (this.inputs = []); - this.inputs.push(f); + this.inputs.push(e); if (this.onInputAdded) { - this.onInputAdded(f); + this.onInputAdded(e); } } this.size = this.computeSize(); }; - h.prototype.removeInput = function(a) { + k.prototype.removeInput = function(a) { this.disconnectInput(a); this.inputs.splice(a, 1); this.size = this.computeSize(); @@ -1131,75 +1184,75 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onInputRemoved(a); } }; - h.prototype.addConnection = function(a, b, d, f) { - a = {name:a, type:b, pos:d, direction:f, links:null}; + k.prototype.addConnection = function(a, b, d, e) { + a = {name:a, type:b, pos:d, direction:e, links:null}; this.connections.push(a); return a; }; - h.prototype.computeSize = function(a, b) { + k.prototype.computeSize = function(a, b) { a = Math.max(this.inputs ? this.inputs.length : 1, this.outputs ? this.outputs.length : 1); b = b || new Float32Array([0, 0]); a = Math.max(a, 1); b[1] = 14 * a + 6; a = (a = this.title) ? 8.4 * a.length : 0; - var d = 0, f = 0; + var d = 0, g = 0; if (this.inputs) { - for (var t = 0, e = this.inputs.length; t < e; ++t) { - var c = this.inputs[t]; - c = (c = c.label || c.name || "") ? 8.4 * c.length : 0; - d < c && (d = c); + for (var h = 0, c = this.inputs.length; h < c; ++h) { + var n = this.inputs[h]; + n = (n = n.label || n.name || "") ? 8.4 * n.length : 0; + d < n && (d = n); } } if (this.outputs) { - for (t = 0, e = this.outputs.length; t < e; ++t) { - c = this.outputs[t], c = (c = c.label || c.name || "") ? 8.4 * c.length : 0, f < c && (f = c); + for (h = 0, c = this.outputs.length; h < c; ++h) { + n = this.outputs[h], n = (n = n.label || n.name || "") ? 8.4 * n.length : 0, g < n && (g = n); } } - b[0] = Math.max(d + f + 10, a); - b[0] = Math.max(b[0], g.NODE_WIDTH); + b[0] = Math.max(d + g + 10, a); + b[0] = Math.max(b[0], e.NODE_WIDTH); return b; }; - h.prototype.getBounding = function(a) { + k.prototype.getBounding = function(a) { a = a || new Float32Array(4); a[0] = this.pos[0] - 4; - a[1] = this.pos[1] - g.NODE_TITLE_HEIGHT; - a[2] = this.pos[0] + this.size[0] + 4; - a[3] = this.pos[1] + this.size[1] + c.NODE_TITLE_HEIGHT; + a[1] = this.pos[1] - e.NODE_TITLE_HEIGHT; + a[2] = this.size[0] + 4; + a[3] = this.size[1] + e.NODE_TITLE_HEIGHT; return a; }; - h.prototype.isPointInsideNode = function(a, b, d) { + k.prototype.isPointInsideNode = function(a, b, d) { d = d || 0; - var f = this.graph && this.graph.isLive() ? 0 : 20; + var g = this.graph && this.graph.isLive() ? 0 : 20; if (this.flags.collapsed) { - if (n(a, b, this.pos[0] - d, this.pos[1] - g.NODE_TITLE_HEIGHT - d, g.NODE_COLLAPSED_WIDTH + 2 * d, g.NODE_TITLE_HEIGHT + 2 * d)) { + if (t(a, b, this.pos[0] - d, this.pos[1] - e.NODE_TITLE_HEIGHT - d, e.NODE_COLLAPSED_WIDTH + 2 * d, e.NODE_TITLE_HEIGHT + 2 * d)) { return !0; } } else { - if (this.pos[0] - 4 - d < a && this.pos[0] + this.size[0] + 4 + d > a && this.pos[1] - f - d < b && this.pos[1] + this.size[1] + d > b) { + if (this.pos[0] - 4 - d < a && this.pos[0] + this.size[0] + 4 + d > a && this.pos[1] - g - d < b && this.pos[1] + this.size[1] + d > b) { return !0; } } return !1; }; - h.prototype.getSlotInPosition = function(a, b) { + k.prototype.getSlotInPosition = function(a, b) { if (this.inputs) { - for (var d = 0, f = this.inputs.length; d < f; ++d) { - var g = this.inputs[d], e = this.getConnectionPos(!0, d); - if (n(a, b, e[0] - 10, e[1] - 5, 20, 10)) { - return {input:g, slot:d, link_pos:e, locked:g.locked}; + for (var d = 0, e = this.inputs.length; d < e; ++d) { + var h = this.inputs[d], c = this.getConnectionPos(!0, d); + if (t(a, b, c[0] - 10, c[1] - 5, 20, 10)) { + return {input:h, slot:d, link_pos:c, locked:h.locked}; } } } if (this.outputs) { - for (d = 0, f = this.outputs.length; d < f; ++d) { - if (g = this.outputs[d], e = this.getConnectionPos(!1, d), n(a, b, e[0] - 10, e[1] - 5, 20, 10)) { - return {output:g, slot:d, link_pos:e, locked:g.locked}; + for (d = 0, e = this.outputs.length; d < e; ++d) { + if (h = this.outputs[d], c = this.getConnectionPos(!1, d), t(a, b, c[0] - 10, c[1] - 5, 20, 10)) { + return {output:h, slot:d, link_pos:c, locked:h.locked}; } } } return null; }; - h.prototype.findInputSlot = function(a) { + k.prototype.findInputSlot = function(a) { if (!this.inputs) { return -1; } @@ -1210,7 +1263,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return -1; }; - h.prototype.findOutputSlot = function(a) { + k.prototype.findOutputSlot = function(a) { if (!this.outputs) { return -1; } @@ -1221,15 +1274,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return -1; }; - h.prototype.connect = function(a, b, d) { + k.prototype.connect = function(a, b, d) { d = d || 0; if (a.constructor === String) { if (a = this.findOutputSlot(a), -1 == a) { - return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + return e.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.outputs || a >= this.outputs.length) { - return g.debug && console.log("Connect: Error, slot number not found"), !1; + return e.debug && console.log("Connect: Error, slot number not found"), !1; } } b && b.constructor === Number && (b = this.graph.getNodeById(b)); @@ -1241,49 +1294,49 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } if (d.constructor === String) { if (d = b.findInputSlot(d), -1 == d) { - return g.debug && console.log("Connect: Error, no slot of name " + d), !1; + return e.debug && console.log("Connect: Error, no slot of name " + d), !1; } } else { - if (d === g.EVENT) { + if (d === e.EVENT) { return !1; } if (!b.inputs || d >= b.inputs.length) { - return g.debug && console.log("Connect: Error, slot number not found"), !1; + return e.debug && console.log("Connect: Error, slot number not found"), !1; } } null != b.inputs[d].link && b.disconnectInput(d); this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); - var f = this.outputs[a]; - if (b.onConnectInput && !1 === b.onConnectInput(d, f.type, f)) { + var g = this.outputs[a]; + if (b.onConnectInput && !1 === b.onConnectInput(d, g.type, g)) { return !1; } - var e = b.inputs[d]; - if (g.isValidConnection(f.type, e.type)) { - var c = {id:this.graph.last_link_id++, type:e.type, origin_id:this.id, origin_slot:a, target_id:b.id, target_slot:d}; + var h = b.inputs[d]; + if (e.isValidConnection(g.type, h.type)) { + var c = {id:this.graph.last_link_id++, type:h.type, origin_id:this.id, origin_slot:a, target_id:b.id, target_slot:d}; this.graph.links[c.id] = c; - null == f.links && (f.links = []); - f.links.push(c.id); + null == g.links && (g.links = []); + g.links.push(c.id); b.inputs[d].link = c.id; if (this.onConnectionsChange) { - this.onConnectionsChange(g.OUTPUT, a, !0, c, f); + this.onConnectionsChange(e.OUTPUT, a, !0, c, g); } if (b.onConnectionsChange) { - b.onConnectionsChange(g.INPUT, d, !0, c, e); + b.onConnectionsChange(e.INPUT, d, !0, c, h); } } this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); return !0; }; - h.prototype.disconnectOutput = function(a, b) { + k.prototype.disconnectOutput = function(a, b) { if (a.constructor === String) { if (a = this.findOutputSlot(a), -1 == a) { - return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + return e.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.outputs || a >= this.outputs.length) { - return g.debug && console.log("Connect: Error, slot number not found"), !1; + return e.debug && console.log("Connect: Error, slot number not found"), !1; } } var d = this.outputs[a]; @@ -1295,34 +1348,34 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if (!b) { throw "Target Node not found"; } - for (var f = 0, e = d.links.length; f < e; f++) { - var c = d.links[f], k = this.graph.links[c]; - if (k.target_id == b.id) { - d.links.splice(f, 1); - var l = b.inputs[k.target_slot]; + for (var g = 0, h = d.links.length; g < h; g++) { + var c = d.links[g], n = this.graph.links[c]; + if (n.target_id == b.id) { + d.links.splice(g, 1); + var l = b.inputs[n.target_slot]; l.link = null; delete this.graph.links[c]; if (b.onConnectionsChange) { - b.onConnectionsChange(g.INPUT, k.target_slot, !1, k, l); + b.onConnectionsChange(e.INPUT, n.target_slot, !1, n, l); } if (this.onConnectionsChange) { - this.onConnectionsChange(g.OUTPUT, a, !1, k, d); + this.onConnectionsChange(e.OUTPUT, a, !1, n, d); } break; } } } else { - f = 0; - for (e = d.links.length; f < e; f++) { - if (c = d.links[f], k = this.graph.links[c]) { - if (b = this.graph.getNodeById(k.target_id)) { - if (l = b.inputs[k.target_slot], l.link = null, b.onConnectionsChange) { - b.onConnectionsChange(g.INPUT, k.target_slot, !1, k, l); + g = 0; + for (h = d.links.length; g < h; g++) { + if (c = d.links[g], n = this.graph.links[c]) { + if (b = this.graph.getNodeById(n.target_id)) { + if (l = b.inputs[n.target_slot], l.link = null, b.onConnectionsChange) { + b.onConnectionsChange(e.INPUT, n.target_slot, !1, n, l); } } delete this.graph.links[c]; if (this.onConnectionsChange) { - this.onConnectionsChange(g.OUTPUT, a, !1, k, d); + this.onConnectionsChange(e.OUTPUT, a, !1, n, d); } } } @@ -1332,14 +1385,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.graph.connectionChange(this); return !0; }; - h.prototype.disconnectInput = function(a) { + k.prototype.disconnectInput = function(a) { if (a.constructor === String) { if (a = this.findInputSlot(a), -1 == a) { - return g.debug && console.log("Connect: Error, no slot of name " + a), !1; + return e.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.inputs || a >= this.inputs.length) { - return g.debug && console.log("Connect: Error, slot number not found"), !1; + return e.debug && console.log("Connect: Error, slot number not found"), !1; } } var b = this.inputs[a]; @@ -1348,54 +1401,54 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } var d = this.inputs[a].link; this.inputs[a].link = null; - var f = this.graph.links[d]; - if (f) { - var e = this.graph.getNodeById(f.origin_id); - if (!e) { + var g = this.graph.links[d]; + if (g) { + var h = this.graph.getNodeById(g.origin_id); + if (!h) { return !1; } - var c = e.outputs[f.origin_slot]; + var c = h.outputs[g.origin_slot]; if (!c || !c.links || 0 == c.links.length) { return !1; } - for (var k = 0, l = c.links.length; k < l; k++) { - if (d = c.links[k], f.target_id == this.id) { - c.links.splice(k, 1); + for (var n = 0, l = c.links.length; n < l; n++) { + if (c.links[n] == d) { + c.links.splice(n, 1); break; } } delete this.graph.links[d]; if (this.onConnectionsChange) { - this.onConnectionsChange(g.INPUT, a, !1, f, b); + this.onConnectionsChange(e.INPUT, a, !1, g, b); } - if (e.onConnectionsChange) { - e.onConnectionsChange(g.OUTPUT, k, !1, f, c); + if (h.onConnectionsChange) { + h.onConnectionsChange(e.OUTPUT, n, !1, g, c); } } this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); return !0; }; - h.prototype.getConnectionPos = function(a, b) { - return this.flags.collapsed ? a ? [this.pos[0], this.pos[1] - 0.5 * g.NODE_TITLE_HEIGHT] : [this.pos[0] + g.NODE_COLLAPSED_WIDTH, this.pos[1] - 0.5 * g.NODE_TITLE_HEIGHT] : a && -1 == b ? [this.pos[0] + 10, this.pos[1] + 10] : a && this.inputs.length > b && this.inputs[b].pos ? [this.pos[0] + this.inputs[b].pos[0], this.pos[1] + this.inputs[b].pos[1]] : !a && this.outputs.length > b && this.outputs[b].pos ? [this.pos[0] + this.outputs[b].pos[0], this.pos[1] + this.outputs[b].pos[1]] : a ? [this.pos[0], - this.pos[1] + 10 + b * g.NODE_SLOT_HEIGHT] : [this.pos[0] + this.size[0] + 1, this.pos[1] + 10 + b * g.NODE_SLOT_HEIGHT]; + k.prototype.getConnectionPos = function(a, b) { + return this.flags.collapsed ? a ? [this.pos[0], this.pos[1] - 0.5 * e.NODE_TITLE_HEIGHT] : [this.pos[0] + e.NODE_COLLAPSED_WIDTH, this.pos[1] - 0.5 * e.NODE_TITLE_HEIGHT] : a && -1 == b ? [this.pos[0] + 10, this.pos[1] + 10] : a && this.inputs.length > b && this.inputs[b].pos ? [this.pos[0] + this.inputs[b].pos[0], this.pos[1] + this.inputs[b].pos[1]] : !a && this.outputs.length > b && this.outputs[b].pos ? [this.pos[0] + this.outputs[b].pos[0], this.pos[1] + this.outputs[b].pos[1]] : a ? [this.pos[0], + this.pos[1] + 10 + b * e.NODE_SLOT_HEIGHT] : [this.pos[0] + this.size[0] + 1, this.pos[1] + 10 + b * e.NODE_SLOT_HEIGHT]; }; - h.prototype.alignToGrid = function() { - this.pos[0] = g.CANVAS_GRID_SIZE * Math.round(this.pos[0] / g.CANVAS_GRID_SIZE); - this.pos[1] = g.CANVAS_GRID_SIZE * Math.round(this.pos[1] / g.CANVAS_GRID_SIZE); + k.prototype.alignToGrid = function() { + this.pos[0] = e.CANVAS_GRID_SIZE * Math.round(this.pos[0] / e.CANVAS_GRID_SIZE); + this.pos[1] = e.CANVAS_GRID_SIZE * Math.round(this.pos[1] / e.CANVAS_GRID_SIZE); }; - h.prototype.trace = function(a) { + k.prototype.trace = function(a) { this.console || (this.console = []); this.console.push(a); - this.console.length > h.MAX_CONSOLE && this.console.shift(); + this.console.length > k.MAX_CONSOLE && this.console.shift(); this.graph.onNodeTrace(this, a); }; - h.prototype.setDirtyCanvas = function(a, b) { + k.prototype.setDirtyCanvas = function(a, b) { this.graph && this.graph.sendActionToCanvas("setDirty", [a, b]); }; - h.prototype.loadImage = function(a) { + k.prototype.loadImage = function(a) { var b = new Image; - b.src = g.node_images_path + a; + b.src = e.node_images_path + a; b.ready = !1; var d = this; b.onload = function() { @@ -1404,34 +1457,37 @@ $jscomp.polyfill("Array.prototype.values", function(v) { }; return b; }; - h.prototype.captureInput = function(a) { + k.prototype.captureInput = function(a) { if (this.graph && this.graph.list_of_graphcanvas) { for (var b = this.graph.list_of_graphcanvas, d = 0; d < b.length; ++d) { - var f = b[d]; - if (a || f.node_capturing_input == this) { - f.node_capturing_input = a ? this : null; + var e = b[d]; + if (a || e.node_capturing_input == this) { + e.node_capturing_input = a ? this : null; } } } }; - h.prototype.collapse = function() { + k.prototype.collapse = function() { this.flags.collapsed = this.flags.collapsed ? !1 : !0; this.setDirtyCanvas(!0, !0); }; - h.prototype.pin = function(a) { + k.prototype.pin = function(a) { this.flags.pinned = void 0 === a ? !this.flags.pinned : a; }; - h.prototype.localToScreen = function(a, b, d) { + k.prototype.localToScreen = function(a, b, d) { return [(a + this.pos[0]) * d.scale + d.offset[0], (b + this.pos[1]) * d.scale + d.offset[1]]; }; - v.LGraphCanvas = g.LGraphCanvas = e; - e.link_type_colors = {"-1":"#F85", number:"#AAC", node:"#DCA"}; - e.prototype.clear = function() { + u.LGraphCanvas = e.LGraphCanvas = c; + c.link_type_colors = {"-1":"#F85", number:"#AAC", node:"#DCA"}; + c.prototype.clear = function() { this.fps = this.render_time = this.last_draw_time = this.frame = 0; this.scale = 1; this.offset = [0, 0]; + this.dragging_rectangle = null; this.selected_nodes = {}; + this.visible_nodes = []; this.connecting_node = this.node_capturing_input = this.node_over = this.node_dragged = null; + this.highlighted_links = {}; this.dirty_bgcanvas = this.dirty_canvas = !0; this.node_in_panel = this.dirty_area = null; this.last_mouse = [0, 0]; @@ -1440,10 +1496,10 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onClear(); } }; - e.prototype.setGraph = function(a, b) { + c.prototype.setGraph = function(a, b) { this.graph != a && (b || this.clear(), !a && this.graph ? this.graph.detachCanvas(this) : (a.attachCanvas(this), this.setDirty(!0, !0))); }; - e.prototype.openSubgraph = function(a) { + c.prototype.openSubgraph = function(a) { if (!a) { throw "graph cannot be null"; } @@ -1455,15 +1511,16 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a.attachCanvas(this); this.setDirty(!0, !0); }; - e.prototype.closeSubgraph = function() { + c.prototype.closeSubgraph = function() { if (this._graph_stack && 0 != this._graph_stack.length) { var a = this._graph_stack.pop(); this.selected_nodes = {}; + this.highlighted_links = {}; a.attachCanvas(this); this.setDirty(!0, !0); } }; - e.prototype.setCanvas = function(a, b) { + c.prototype.setCanvas = function(a, b) { if (a && a.constructor === String && (a = document.getElementById(a), !a)) { throw "Error creating LiteGraph canvas: Canvas not found"; } @@ -1484,19 +1541,19 @@ $jscomp.polyfill("Array.prototype.values", function(v) { b || this.bindEvents(); } }; - e.prototype._doNothing = function(a) { + c.prototype._doNothing = function(a) { a.preventDefault(); return !1; }; - e.prototype._doReturnTrue = function(a) { + c.prototype._doReturnTrue = function(a) { a.preventDefault(); return !0; }; - e.prototype.bindEvents = function() { + c.prototype.bindEvents = function() { if (this._events_binded) { console.warn("LGraphCanvas: events already binded"); } else { - var a = this.canvas; + var a = this.canvas, b = this.getCanvasWindow().document; this._mousedown_callback = this.processMouseDown.bind(this); this._mousewheel_callback = this.processMouseWheel.bind(this); a.addEventListener("mousedown", this._mousedown_callback, !0); @@ -1509,8 +1566,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a.addEventListener("touchend", this.touchHandler, !0); a.addEventListener("touchcancel", this.touchHandler, !0); this._key_callback = this.processKey.bind(this); - a.addEventListener("keydown", this._key_callback); - a.addEventListener("keyup", this._key_callback); + a.addEventListener("keydown", this._key_callback, !0); + b.addEventListener("keyup", this._key_callback, !0); this._ondrop_callback = this.processDrop.bind(this); a.addEventListener("dragover", this._doNothing, !1); a.addEventListener("dragend", this._doNothing, !1); @@ -1519,34 +1576,51 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._events_binded = !0; } }; - e.prototype.unbindEvents = function() { - this._events_binded ? (this.canvas.removeEventListener("mousedown", this._mousedown_callback), this.canvas.removeEventListener("mousewheel", this._mousewheel_callback), this.canvas.removeEventListener("DOMMouseScroll", this._mousewheel_callback), this.canvas.removeEventListener("keydown", this._key_callback), this.canvas.removeEventListener("keyup", this._key_callback), this.canvas.removeEventListener("contextmenu", this._doNothing), this.canvas.removeEventListener("drop", this._ondrop_callback), - this.canvas.removeEventListener("dragenter", this._doReturnTrue), this.canvas.removeEventListener("touchstart", this.touchHandler), this.canvas.removeEventListener("touchmove", this.touchHandler), this.canvas.removeEventListener("touchend", this.touchHandler), this.canvas.removeEventListener("touchcancel", this.touchHandler), this._ondrop_callback = this._key_callback = this._mousewheel_callback = this._mousedown_callback = null, this._events_binded = !1) : console.warn("LGraphCanvas: no events binded"); + c.prototype.unbindEvents = function() { + if (this._events_binded) { + var a = this.getCanvasWindow().document; + this.canvas.removeEventListener("mousedown", this._mousedown_callback); + this.canvas.removeEventListener("mousewheel", this._mousewheel_callback); + this.canvas.removeEventListener("DOMMouseScroll", this._mousewheel_callback); + this.canvas.removeEventListener("keydown", this._key_callback); + a.removeEventListener("keyup", this._key_callback); + this.canvas.removeEventListener("contextmenu", this._doNothing); + this.canvas.removeEventListener("drop", this._ondrop_callback); + this.canvas.removeEventListener("dragenter", this._doReturnTrue); + this.canvas.removeEventListener("touchstart", this.touchHandler); + this.canvas.removeEventListener("touchmove", this.touchHandler); + this.canvas.removeEventListener("touchend", this.touchHandler); + this.canvas.removeEventListener("touchcancel", this.touchHandler); + this._ondrop_callback = this._key_callback = this._mousewheel_callback = this._mousedown_callback = null; + this._events_binded = !1; + } else { + console.warn("LGraphCanvas: no events binded"); + } }; - e.getFileExtension = function(a) { + c.getFileExtension = function(a) { var b = a.indexOf("?"); -1 != b && (a = a.substr(0, b)); b = a.lastIndexOf("."); return -1 == b ? "" : a.substr(b + 1).toLowerCase(); }; - e.prototype.enableWebGL = function() { + c.prototype.enableWebGL = function() { this.gl = this.ctx = enableWebGLCanvas(this.canvas); this.ctx.webgl = !0; this.bgcanvas = this.canvas; this.bgctx = this.gl; }; - e.prototype.setDirty = function(a, b) { + c.prototype.setDirty = function(a, b) { a && (this.dirty_canvas = !0); b && (this.dirty_bgcanvas = !0); }; - e.prototype.getCanvasWindow = function() { + c.prototype.getCanvasWindow = function() { if (!this.canvas) { return window; } var a = this.canvas.ownerDocument; return a.defaultView || a.parentWindow; }; - e.prototype.startRendering = function() { + c.prototype.startRendering = function() { function a() { this.pause_rendering || this.draw(); var b = this.getCanvasWindow(); @@ -1554,79 +1628,69 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } this.is_rendering || (this.is_rendering = !0, a.call(this)); }; - e.prototype.stopRendering = function() { + c.prototype.stopRendering = function() { this.is_rendering = !1; }; - e.prototype.processMouseDown = function(a) { + c.prototype.processMouseDown = function(a) { if (this.graph) { this.adjustMouseEvent(a); var b = this.getCanvasWindow(); - e.active_canvas = this; + c.active_canvas = this; this.canvas.removeEventListener("mousemove", this._mousemove_callback); b.document.addEventListener("mousemove", this._mousemove_callback, !0); b.document.addEventListener("mouseup", this._mouseup_callback, !0); - var d = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); - g.closeAllContextMenus(b); + var d = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes), g = !1; + e.closeAllContextMenus(b); if (1 == a.which) { - if (!(a.shiftKey || d && this.selected_nodes[d.id])) { - var f = []; - for (k in this.selected_nodes) { - this.selected_nodes[k] != d && f.push(this.selected_nodes[k]); - } - for (k in f) { - this.processNodeDeselected(f[k]); - } - } - f = !1; - if (d && this.allow_interaction) { + a.ctrlKey && (this.dragging_rectangle = new Float32Array(4), this.dragging_rectangle[0] = a.canvasX, this.dragging_rectangle[1] = a.canvasY, this.dragging_rectangle[2] = 1, this.dragging_rectangle[3] = 1, g = !0); + var h = !1; + if (d && this.allow_interaction && !g) { this.live_mode || d.flags.pinned || this.bringToFront(d); - var c = !1; if (!this.connecting_node && !d.flags.collapsed && !this.live_mode) { if (d.outputs) { - var k = 0; - for (var q = d.outputs.length; k < q; ++k) { - var l = d.outputs[k], w = d.getConnectionPos(!1, k); - if (n(a.canvasX, a.canvasY, w[0] - 10, w[1] - 5, 20, 10)) { + for (var l = 0, n = d.outputs.length; l < n; ++l) { + var f = d.outputs[l], q = d.getConnectionPos(!1, l); + if (t(a.canvasX, a.canvasY, q[0] - 10, q[1] - 5, 20, 10)) { this.connecting_node = d; - this.connecting_output = l; - this.connecting_pos = d.getConnectionPos(!1, k); - this.connecting_slot = k; - c = !0; + this.connecting_output = f; + this.connecting_pos = d.getConnectionPos(!1, l); + this.connecting_slot = l; + g = !0; break; } } } if (d.inputs) { - for (k = 0, q = d.inputs.length; k < q; ++k) { - l = d.inputs[k], w = d.getConnectionPos(!0, k), n(a.canvasX, a.canvasY, w[0] - 10, w[1] - 5, 20, 10) && null !== l.link && (d.disconnectInput(k), c = this.dirty_bgcanvas = !0); + for (l = 0, n = d.inputs.length; l < n; ++l) { + f = d.inputs[l], q = d.getConnectionPos(!0, l), t(a.canvasX, a.canvasY, q[0] - 10, q[1] - 5, 20, 10) && null !== f.link && (d.disconnectInput(l), g = this.dirty_bgcanvas = !0); } } - !c && n(a.canvasX, a.canvasY, d.pos[0] + d.size[0] - 5, d.pos[1] + d.size[1] - 5, 5, 5) && (this.resizing_node = d, this.canvas.style.cursor = "se-resize", c = !0); + !g && t(a.canvasX, a.canvasY, d.pos[0] + d.size[0] - 5, d.pos[1] + d.size[1] - 5, 5, 5) && (this.resizing_node = d, this.canvas.style.cursor = "se-resize", g = !0); } - !c && n(a.canvasX, a.canvasY, d.pos[0], d.pos[1] - g.NODE_TITLE_HEIGHT, g.NODE_TITLE_HEIGHT, g.NODE_TITLE_HEIGHT) && (d.collapse(), c = !0); - if (!c) { - k = !1; - if (300 > g.getTime() - this.last_mouseclick && this.selected_nodes[d.id]) { + !g && t(a.canvasX, a.canvasY, d.pos[0], d.pos[1] - e.NODE_TITLE_HEIGHT, e.NODE_TITLE_HEIGHT, e.NODE_TITLE_HEIGHT) && (d.collapse(), g = !0); + if (!g) { + l = !1; + if (300 > e.getTime() - this.last_mouseclick && this.selected_nodes[d.id]) { if (d.onDblClick) { d.onDblClick(a); } this.processNodeDblClicked(d); - k = !0; + l = !0; } - d.onMouseDown && d.onMouseDown(a, [a.canvasX - d.pos[0], a.canvasY - d.pos[1]]) ? k = !0 : this.live_mode && (k = f = !0); - k || (this.allow_dragnodes && (this.node_dragged = d), this.selected_nodes[d.id] || this.processNodeSelected(d, a)); + d.onMouseDown && d.onMouseDown(a, [a.canvasX - d.pos[0], a.canvasY - d.pos[1]]) ? l = !0 : this.live_mode && (l = h = !0); + l || (this.allow_dragnodes && (this.node_dragged = d), this.selected_nodes[d.id] || this.processNodeSelected(d, a)); this.dirty_canvas = !0; } } else { - f = !0; + h = !0; } - f && this.allow_dragcanvas && (this.dragging_canvas = !0); + !g && h && this.allow_dragcanvas && (this.dragging_canvas = !0); } else { 2 != a.which && 3 == a.which && this.processContextMenu(d, a); } this.last_mouse[0] = a.localX; this.last_mouse[1] = a.localY; - this.last_mouseclick = g.getTime(); + this.last_mouseclick = e.getTime(); this.canvas_mouse = [a.canvasX, a.canvasY]; this.graph.change(); (!b.document.activeElement || "input" != b.document.activeElement.nodeName.toLowerCase() && "textarea" != b.document.activeElement.nodeName.toLowerCase()) && a.preventDefault(); @@ -1637,97 +1701,115 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return !1; } }; - e.prototype.processMouseMove = function(a) { + c.prototype.processMouseMove = function(a) { this.autoresize && this.resize(); if (this.graph) { - e.active_canvas = this; + c.active_canvas = this; this.adjustMouseEvent(a); var b = [a.localX, a.localY], d = [b[0] - this.last_mouse[0], b[1] - this.last_mouse[1]]; this.last_mouse = b; this.canvas_mouse = [a.canvasX, a.canvasY]; - if (this.dragging_canvas) { - this.offset[0] += d[0] / this.scale, this.offset[1] += d[1] / this.scale, this.dirty_bgcanvas = this.dirty_canvas = !0; + if (this.dragging_rectangle) { + this.dragging_rectangle[2] = a.canvasX - this.dragging_rectangle[0], this.dragging_rectangle[3] = a.canvasY - this.dragging_rectangle[1], this.dirty_canvas = !0; } else { - if (this.allow_interaction) { - this.connecting_node && (this.dirty_canvas = !0); - b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); - for (var f = 0, c = this.graph._nodes.length; f < c; ++f) { - if (this.graph._nodes[f].mouseOver && b != this.graph._nodes[f]) { - this.graph._nodes[f].mouseOver = !1; - if (this.node_over && this.node_over.onMouseLeave) { - this.node_over.onMouseLeave(a); + if (this.dragging_canvas) { + this.offset[0] += d[0] / this.scale, this.offset[1] += d[1] / this.scale, this.dirty_bgcanvas = this.dirty_canvas = !0; + } else { + if (this.allow_interaction) { + this.connecting_node && (this.dirty_canvas = !0); + b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); + for (var g = 0, h = this.graph._nodes.length; g < h; ++g) { + if (this.graph._nodes[g].mouseOver && b != this.graph._nodes[g]) { + this.graph._nodes[g].mouseOver = !1; + if (this.node_over && this.node_over.onMouseLeave) { + this.node_over.onMouseLeave(a); + } + this.node_over = null; + this.dirty_canvas = !0; } - this.node_over = null; - this.dirty_canvas = !0; } + if (b) { + if (!b.mouseOver && (b.mouseOver = !0, this.node_over = b, this.dirty_canvas = !0, b.onMouseEnter)) { + b.onMouseEnter(a); + } + if (b.onMouseMove) { + b.onMouseMove(a); + } + if (this.connecting_node && (h = this._highlight_input || [0, 0], !this.isOverNodeBox(b, a.canvasX, a.canvasY))) { + var l = this.isOverNodeInput(b, a.canvasX, a.canvasY, h); + -1 != l && b.inputs[l] ? e.isValidConnection(this.connecting_output.type, b.inputs[l].type) && (this._highlight_input = h) : this._highlight_input = null; + } + t(a.canvasX, a.canvasY, b.pos[0] + b.size[0] - 5, b.pos[1] + b.size[1] - 5, 5, 5) ? this.canvas.style.cursor = "se-resize" : this.canvas.style.cursor = null; + } else { + this.canvas.style.cursor = null; + } + if (this.node_capturing_input && this.node_capturing_input != b && this.node_capturing_input.onMouseMove) { + this.node_capturing_input.onMouseMove(a); + } + if (this.node_dragged && !this.live_mode) { + for (g in this.selected_nodes) { + b = this.selected_nodes[g], b.pos[0] += d[0] / this.scale, b.pos[1] += d[1] / this.scale; + } + this.dirty_bgcanvas = this.dirty_canvas = !0; + } + this.resizing_node && !this.live_mode && (this.resizing_node.size[0] += d[0] / this.scale, this.resizing_node.size[1] += d[1] / this.scale, d = Math.max(this.resizing_node.inputs ? this.resizing_node.inputs.length : 0, this.resizing_node.outputs ? this.resizing_node.outputs.length : 0), this.resizing_node.size[1] < d * e.NODE_SLOT_HEIGHT + 4 && (this.resizing_node.size[1] = d * e.NODE_SLOT_HEIGHT + 4), this.resizing_node.size[0] < e.NODE_MIN_WIDTH && (this.resizing_node.size[0] = e.NODE_MIN_WIDTH), + this.canvas.style.cursor = "se-resize", this.dirty_bgcanvas = this.dirty_canvas = !0); } - if (b) { - if (!b.mouseOver && (b.mouseOver = !0, this.node_over = b, this.dirty_canvas = !0, b.onMouseEnter)) { - b.onMouseEnter(a); - } - if (b.onMouseMove) { - b.onMouseMove(a); - } - if (this.connecting_node && (c = this._highlight_input || [0, 0], !this.isOverNodeBox(b, a.canvasX, a.canvasY))) { - var k = this.isOverNodeInput(b, a.canvasX, a.canvasY, c); - -1 != k && b.inputs[k] ? g.isValidConnection(this.connecting_output.type, b.inputs[k].type) && (this._highlight_input = c) : this._highlight_input = null; - } - n(a.canvasX, a.canvasY, b.pos[0] + b.size[0] - 5, b.pos[1] + b.size[1] - 5, 5, 5) ? this.canvas.style.cursor = "se-resize" : this.canvas.style.cursor = null; - } else { - this.canvas.style.cursor = null; - } - if (this.node_capturing_input && this.node_capturing_input != b && this.node_capturing_input.onMouseMove) { - this.node_capturing_input.onMouseMove(a); - } - if (this.node_dragged && !this.live_mode) { - for (f in this.selected_nodes) { - b = this.selected_nodes[f], b.pos[0] += d[0] / this.scale, b.pos[1] += d[1] / this.scale; - } - this.dirty_bgcanvas = this.dirty_canvas = !0; - } - this.resizing_node && !this.live_mode && (this.resizing_node.size[0] += d[0] / this.scale, this.resizing_node.size[1] += d[1] / this.scale, d = Math.max(this.resizing_node.inputs ? this.resizing_node.inputs.length : 0, this.resizing_node.outputs ? this.resizing_node.outputs.length : 0), this.resizing_node.size[1] < d * g.NODE_SLOT_HEIGHT + 4 && (this.resizing_node.size[1] = d * g.NODE_SLOT_HEIGHT + 4), this.resizing_node.size[0] < g.NODE_MIN_WIDTH && (this.resizing_node.size[0] = g.NODE_MIN_WIDTH), - this.canvas.style.cursor = "se-resize", this.dirty_bgcanvas = this.dirty_canvas = !0); } } a.preventDefault(); return !1; } }; - e.prototype.processMouseUp = function(a) { + c.prototype.processMouseUp = function(a) { if (this.graph) { var b = this.getCanvasWindow().document; - e.active_canvas = this; + c.active_canvas = this; b.removeEventListener("mousemove", this._mousemove_callback, !0); this.canvas.addEventListener("mousemove", this._mousemove_callback, !0); b.removeEventListener("mouseup", this._mouseup_callback, !0); this.adjustMouseEvent(a); if (1 == a.which) { - if (this.connecting_node) { - this.dirty_bgcanvas = this.dirty_canvas = !0; - if (b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes)) { - if (this.connecting_output.type == g.EVENT && this.isOverNodeBox(b, a.canvasX, a.canvasY)) { - this.connecting_node.connect(this.connecting_slot, b, g.EVENT); - } else { - var d = this.isOverNodeInput(b, a.canvasX, a.canvasY); - -1 != d ? this.connecting_node.connect(this.connecting_slot, b, d) : (d = b.getInputInfo(0), this.connecting_output.type == g.EVENT ? this.connecting_node.connect(this.connecting_slot, b, g.EVENT) : d && !d.link && d.type == this.connecting_output.type && this.connecting_node.connect(this.connecting_slot, b, 0)); + if (this.dragging_rectangle) { + if (this.graph) { + var d = this.graph._nodes, g = new Float32Array(4); + this.deselectAllNodes(); + 0 > this.dragging_rectangle[2] && (this.dragging_rectangle[0] += this.dragging_rectangle[2]); + 0 > this.dragging_rectangle[3] && (this.dragging_rectangle[1] += this.dragging_rectangle[3]); + this.dragging_rectangle[2] = Math.abs(this.dragging_rectangle[2] * this.scale); + this.dragging_rectangle[3] = Math.abs(this.dragging_rectangle[3] * this.scale); + for (var h = 0; h < d.length; ++h) { + b = d[h], b.getBounding(g), v(this.dragging_rectangle, g) && this.selectNode(b, !0); } } - this.connecting_node = this.connecting_pos = this.connecting_output = null; - this.connecting_slot = -1; + this.dragging_rectangle = null; } else { - if (this.resizing_node) { - this.dirty_bgcanvas = this.dirty_canvas = !0, this.resizing_node = null; + if (this.connecting_node) { + this.dirty_bgcanvas = this.dirty_canvas = !0; + if (b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes)) { + this.connecting_output.type == e.EVENT && this.isOverNodeBox(b, a.canvasX, a.canvasY) ? this.connecting_node.connect(this.connecting_slot, b, e.EVENT) : (d = this.isOverNodeInput(b, a.canvasX, a.canvasY), -1 != d ? this.connecting_node.connect(this.connecting_slot, b, d) : (d = b.getInputInfo(0), this.connecting_output.type == e.EVENT ? this.connecting_node.connect(this.connecting_slot, b, e.EVENT) : d && !d.link && e.isValidConnection(d.type && this.connecting_output.type) && this.connecting_node.connect(this.connecting_slot, + b, 0))); + } + this.connecting_node = this.connecting_pos = this.connecting_output = null; + this.connecting_slot = -1; } else { - if (this.node_dragged) { - this.dirty_bgcanvas = this.dirty_canvas = !0, this.node_dragged.pos[0] = Math.round(this.node_dragged.pos[0]), this.node_dragged.pos[1] = Math.round(this.node_dragged.pos[1]), this.graph.config.align_to_grid && this.node_dragged.alignToGrid(), this.node_dragged = null; + if (this.resizing_node) { + this.dirty_bgcanvas = this.dirty_canvas = !0, this.resizing_node = null; } else { - this.dirty_canvas = !0; - this.dragging_canvas = !1; - if (this.node_over && this.node_over.onMouseUp) { - this.node_over.onMouseUp(a, [a.canvasX - this.node_over.pos[0], a.canvasY - this.node_over.pos[1]]); - } - if (this.node_capturing_input && this.node_capturing_input.onMouseUp) { - this.node_capturing_input.onMouseUp(a, [a.canvasX - this.node_capturing_input.pos[0], a.canvasY - this.node_capturing_input.pos[1]]); + if (this.node_dragged) { + this.dirty_bgcanvas = this.dirty_canvas = !0, this.node_dragged.pos[0] = Math.round(this.node_dragged.pos[0]), this.node_dragged.pos[1] = Math.round(this.node_dragged.pos[1]), this.graph.config.align_to_grid && this.node_dragged.alignToGrid(), this.node_dragged = null; + } else { + b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); + d = e.getTime(); + !b && 300 > d - this.last_mouseclick && this.deselectAllNodes(); + this.dirty_canvas = !0; + this.dragging_canvas = !1; + if (this.node_over && this.node_over.onMouseUp) { + this.node_over.onMouseUp(a, [a.canvasX - this.node_over.pos[0], a.canvasY - this.node_over.pos[1]]); + } + if (this.node_capturing_input && this.node_capturing_input.onMouseUp) { + this.node_capturing_input.onMouseUp(a, [a.canvasX - this.node_capturing_input.pos[0], a.canvasY - this.node_capturing_input.pos[1]]); + } } } } @@ -1741,7 +1823,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return !1; } }; - e.prototype.processMouseWheel = function(a) { + c.prototype.processMouseWheel = function(a) { if (this.graph && this.allow_dragcanvas) { var b = null != a.wheelDeltaY ? a.wheelDeltaY : -60 * a.detail; this.adjustMouseEvent(a); @@ -1753,57 +1835,45 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return !1; } }; - e.prototype.isOverNodeBox = function(a, b, d) { - var f = g.NODE_TITLE_HEIGHT; - return n(b, d, a.pos[0] + 2, a.pos[1] + 2 - f, f - 4, f - 4) ? !0 : !1; + c.prototype.isOverNodeBox = function(a, b, d) { + var g = e.NODE_TITLE_HEIGHT; + return t(b, d, a.pos[0] + 2, a.pos[1] + 2 - g, g - 4, g - 4) ? !0 : !1; }; - e.prototype.isOverNodeInput = function(a, b, d, f) { + c.prototype.isOverNodeInput = function(a, b, d, e) { if (a.inputs) { - for (var g = 0, e = a.inputs.length; g < e; ++g) { - var c = a.getConnectionPos(!0, g); - if (n(b, d, c[0] - 10, c[1] - 5, 20, 10)) { - return f && (f[0] = c[0], f[1] = c[1]), g; + for (var g = 0, c = a.inputs.length; g < c; ++g) { + var n = a.getConnectionPos(!0, g); + if (t(b, d, n[0] - 10, n[1] - 5, 20, 10)) { + return e && (e[0] = n[0], e[1] = n[1]), g; } } } return -1; }; - e.prototype.processKey = function(a) { + c.prototype.processKey = function(a) { if (this.graph) { var b = !1; if ("input" != a.target.localName) { if ("keydown" == a.type) { - console.log(a); - 65 == a.keyCode && a.ctrlKey && (this.selectAllNodes(), b = !0); - if ("KeyC" == a.code && (a.metaKey || a.ctrlKey) && !a.shiftKey && this.selected_nodes) { - var d = [], f; - for (f in this.selected_nodes) { - d.push(this.selected_nodes[f].serialize()); - } - localStorage.setItem("litegrapheditor_clipboard", JSON.stringify(d)); - b = !0; - } - if ("KeyV" == a.code && (a.metaKey || a.ctrlKey) && !a.shiftKey && (d = localStorage.getItem("litegrapheditor_clipboard"))) { - for (d = JSON.parse(d), f = 0; f < d.length; ++f) { - var e = d[f], c = g.createNode(e.type); - c && (c.configure(e), c.pos[0] += 5, c.pos[1] += 5, this.graph.add(c)); - } - } + 32 == a.keyCode && (b = this.dragging_canvas = !0); + 65 == a.keyCode && a.ctrlKey && (this.selectNodes(), b = !0); + "KeyC" == a.code && (a.metaKey || a.ctrlKey) && !a.shiftKey && this.selected_nodes && (this.copyToClipboard(), b = !0); + "KeyV" != a.code || !a.metaKey && !a.ctrlKey || a.shiftKey || this.pasteFromClipboard(); if (46 == a.keyCode || 8 == a.keyCode) { this.deleteSelectedNodes(), b = !0; } if (this.selected_nodes) { - for (f in this.selected_nodes) { - if (this.selected_nodes[f].onKeyDown) { - this.selected_nodes[f].onKeyDown(a); + for (var d in this.selected_nodes) { + if (this.selected_nodes[d].onKeyDown) { + this.selected_nodes[d].onKeyDown(a); } } } } else { - if ("keyup" == a.type && this.selected_nodes) { - for (f in this.selected_nodes) { - if (this.selected_nodes[f].onKeyUp) { - this.selected_nodes[f].onKeyUp(a); + if ("keyup" == a.type && (32 == a.keyCode && (this.dragging_canvas = !1), this.selected_nodes)) { + for (d in this.selected_nodes) { + if (this.selected_nodes[d].onKeyUp) { + this.selected_nodes[d].onKeyUp(a); } } } @@ -1815,25 +1885,60 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - e.prototype.processDrop = function(a) { + c.prototype.copyToClipboard = function() { + var a = {nodes:[], links:[]}, b = 0, d = [], e; + for (e in this.selected_nodes) { + var h = this.selected_nodes[e]; + h._relative_id = b; + d.push(h); + b += 1; + } + for (e = 0; e < d.length; ++e) { + if (h = d[e], a.nodes.push(h.clone().serialize()), h.inputs && h.inputs.length) { + for (b = 0; b < h.inputs.length; ++b) { + var c = h.inputs[b]; + if (c && null != c.link && (c = this.graph.links[c.link])) { + var n = this.graph.getNodeById(c.origin_id); + n && this.selected_nodes[n.id] && a.links.push([n._relative_id, b, h._relative_id, c.target_slot]); + } + } + } + } + localStorage.setItem("litegrapheditor_clipboard", JSON.stringify(a)); + }; + c.prototype.pasteFromClipboard = function() { + var a = localStorage.getItem("litegrapheditor_clipboard"); + if (a) { + a = JSON.parse(a); + for (var b = [], d = 0; d < a.nodes.length; ++d) { + var g = a.nodes[d], h = e.createNode(g.type); + h && (h.configure(g), h.pos[0] += 5, h.pos[1] += 5, this.graph.add(h), b.push(h)); + } + for (d = 0; d < a.links.length; ++d) { + g = a.links[d], b[g[0]].connect(g[1], b[g[2]], g[3]); + } + this.selectNodes(b); + } + }; + c.prototype.processDrop = function(a) { a.preventDefault(); this.adjustMouseEvent(a); var b = [a.canvasX, a.canvasY], d = this.graph.getNodeOnPos(b[0], b[1]); if (d) { if ((d.onDropFile || d.onDropData) && (b = a.dataTransfer.files) && b.length) { - for (var f = 0; f < b.length; f++) { - var g = a.dataTransfer.files[0], c = g.name; - e.getFileExtension(c); + for (var e = 0; e < b.length; e++) { + var h = a.dataTransfer.files[0], l = h.name; + c.getFileExtension(l); if (d.onDropFile) { - d.onDropFile(g); + d.onDropFile(h); } if (d.onDropData) { - var k = new FileReader; - k.onload = function(a) { - d.onDropData(a.target.result, c, g); + var n = new FileReader; + n.onload = function(a) { + d.onDropData(a.target.result, l, h); }; - var l = g.type.split("/")[0]; - "text" == l || "" == l ? k.readAsText(g) : "image" == l ? k.readAsDataURL(g) : k.readAsArrayBuffer(g); + var f = h.type.split("/")[0]; + "text" == f || "" == f ? n.readAsText(h) : "image" == f ? n.readAsDataURL(h) : n.readAsArrayBuffer(h); } } } @@ -1843,40 +1948,17 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.onDropItem && (b = this.onDropItem(event)); b || this.checkDropItem(a); }; - e.prototype.checkDropItem = function(a) { + c.prototype.checkDropItem = function(a) { if (a.dataTransfer.files.length) { - var b = a.dataTransfer.files[0], d = e.getFileExtension(b.name).toLowerCase(); - if (d = g.node_types_by_file_extension[d]) { - if (d = g.createNode(d.type), d.pos = [a.canvasX, a.canvasY], this.graph.add(d), d.onDropFile) { + var b = a.dataTransfer.files[0], d = c.getFileExtension(b.name).toLowerCase(); + if (d = e.node_types_by_file_extension[d]) { + if (d = e.createNode(d.type), d.pos = [a.canvasX, a.canvasY], this.graph.add(d), d.onDropFile) { d.onDropFile(b); } } } }; - e.prototype.processNodeSelected = function(a, b) { - a.selected = !0; - if (a.onSelected) { - a.onSelected(); - } - b && b.shiftKey || (this.selected_nodes = {}); - this.selected_nodes[a.id] = a; - this.dirty_canvas = !0; - if (this.onNodeSelected) { - this.onNodeSelected(a); - } - }; - e.prototype.processNodeDeselected = function(a) { - a.selected = !1; - if (a.onDeselected) { - a.onDeselected(); - } - delete this.selected_nodes[a.id]; - if (this.onNodeDeselected) { - this.onNodeDeselected(a); - } - this.dirty_canvas = !0; - }; - e.prototype.processNodeDblClicked = function(a) { + c.prototype.processNodeDblClicked = function(a) { if (this.onShowNodePanel) { this.onShowNodePanel(a); } @@ -1885,59 +1967,111 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } this.setDirty(!0); }; - e.prototype.selectNode = function(a) { - this.deselectAllNodes(); - if (a) { - if (!a.selected && a.onSelected) { - a.onSelected(); + c.prototype.processNodeSelected = function(a, b) { + this.selectNode(a, b && b.shiftKey); + if (this.onNodeSelected) { + this.onNodeSelected(a); + } + }; + c.prototype.processNodeDeselected = function(a) { + this.deselectNode(a); + if (this.onNodeDeselected) { + this.onNodeDeselected(a); + } + }; + c.prototype.selectNode = function(a, b) { + null == a ? this.deselectAllNodes() : this.selectNodes([a], b); + }; + c.prototype.selectNodes = function(a, b) { + b || this.deselectAllNodes(); + a = a || this.graph._nodes; + for (b = 0; b < a.length; ++b) { + var d = a[b]; + if (!d.selected) { + if (!d.selected && d.onSelected) { + d.onSelected(); + } + d.selected = !0; + this.selected_nodes[d.id] = d; + if (d.inputs) { + for (b = 0; b < d.inputs.length; ++b) { + this.highlighted_links[d.inputs[b].link] = !0; + } + } + if (d.outputs) { + for (b = 0; b < d.outputs.length; ++b) { + var e = d.outputs[b]; + if (e.links) { + for (var h = 0; h < e.links.length; ++h) { + this.highlighted_links[e.links[h]] = !0; + } + } + } + } } - a.selected = !0; - this.selected_nodes[a.id] = a; + } + this.setDirty(!0); + }; + c.prototype.deselectNode = function(a) { + if (a.selected) { + if (a.onDeselected) { + a.onDeselected(); + } + a.selected = !1; + if (a.inputs) { + for (var b = 0; b < a.inputs.length; ++b) { + delete this.highlighted_links[a.inputs[b].link]; + } + } + if (a.outputs) { + for (b = 0; b < a.outputs.length; ++b) { + var d = a.outputs[b]; + if (d.links) { + for (var e = 0; e < d.links.length; ++e) { + delete this.highlighted_links[d.links[e]]; + } + } + } + } + } + }; + c.prototype.deselectAllNodes = function() { + if (this.graph) { + for (var a = this.graph._nodes, b = 0, d = a.length; b < d; ++b) { + var e = a[b]; + if (e.selected) { + if (e.onDeselected) { + e.onDeselected(); + } + e.selected = !1; + } + } + this.selected_nodes = {}; + this.highlighted_links = {}; this.setDirty(!0); } }; - e.prototype.selectAllNodes = function() { - for (var a = 0; a < this.graph._nodes.length; ++a) { - var b = this.graph._nodes[a]; - if (!b.selected && b.onSelected) { - b.onSelected(); - } - b.selected = !0; - this.selected_nodes[this.graph._nodes[a].id] = b; - } - this.setDirty(!0); - }; - e.prototype.deselectAllNodes = function() { - for (var a in this.selected_nodes) { - var b = this.selected_nodes; - if (b.onDeselected) { - b.onDeselected(); - } - b.selected = !1; - } - this.selected_nodes = {}; - this.setDirty(!0); - }; - e.prototype.deleteSelectedNodes = function() { + c.prototype.deleteSelectedNodes = function() { for (var a in this.selected_nodes) { this.graph.remove(this.selected_nodes[a]); } this.selected_nodes = {}; + this.highlighted_links = {}; this.setDirty(!0); }; - e.prototype.centerOnNode = function(a) { + c.prototype.centerOnNode = function(a) { this.offset[0] = -a.pos[0] - 0.5 * a.size[0] + 0.5 * this.canvas.width / this.scale; this.offset[1] = -a.pos[1] - 0.5 * a.size[1] + 0.5 * this.canvas.height / this.scale; this.setDirty(!0, !0); }; - e.prototype.adjustMouseEvent = function(a) { + c.prototype.adjustMouseEvent = function(a) { var b = this.canvas.getBoundingClientRect(); a.localX = a.pageX - b.left; a.localY = a.pageY - b.top; a.canvasX = a.localX / this.scale - this.offset[0]; a.canvasY = a.localY / this.scale - this.offset[1]; }; - e.prototype.setZoom = function(a, b) { + c.prototype.setZoom = function(a, b) { b || (b = [0.5 * this.canvas.width, 0.5 * this.canvas.height]); var d = this.convertOffsetToCanvas(b); this.scale = a; @@ -1948,39 +2082,49 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.offset[1] += d[1]; this.dirty_bgcanvas = this.dirty_canvas = !0; }; - e.prototype.convertOffsetToCanvas = function(a) { - return [a[0] / this.scale - this.offset[0], a[1] / this.scale - this.offset[1]]; + c.prototype.convertOffsetToCanvas = function(a, b) { + b = b || []; + b[0] = a[0] / this.scale - this.offset[0]; + b[1] = a[1] / this.scale - this.offset[1]; + return b; }; - e.prototype.convertCanvasToOffset = function(a) { - return [(a[0] + this.offset[0]) * this.scale, (a[1] + this.offset[1]) * this.scale]; + c.prototype.convertCanvasToOffset = function(a, b) { + b = b || []; + b[0] = (a[0] + this.offset[0]) * this.scale; + b[1] = (a[1] + this.offset[1]) * this.scale; + return b; }; - e.prototype.convertEventToCanvas = function(a) { - var b = this.canvas.getClientRects()[0]; + c.prototype.convertEventToCanvas = function(a) { + var b = this.canvas.getBoundingClientRect(); return this.convertOffsetToCanvas([a.pageX - b.left, a.pageY - b.top]); }; - e.prototype.bringToFront = function(a) { + c.prototype.bringToFront = function(a) { var b = this.graph._nodes.indexOf(a); -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.push(a)); }; - e.prototype.sendToBack = function(a) { + c.prototype.sendToBack = function(a) { var b = this.graph._nodes.indexOf(a); -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.unshift(a)); }; - e.prototype.computeVisibleNodes = function() { - for (var a = new Float32Array(4), b = [], d = 0, f = this.graph._nodes.length; d < f; ++d) { - var g = this.graph._nodes[d]; - (!this.live_mode || g.onDrawBackground || g.onDrawForeground) && u(this.visible_area, g.getBounding(a)) && b.push(g); + var q = new Float32Array(4); + c.prototype.computeVisibleNodes = function(a, b) { + b = b || []; + b.length = 0; + a = a || this.graph._nodes; + for (var d = 0, e = a.length; d < e; ++d) { + var h = a[d]; + (!this.live_mode || h.onDrawBackground || h.onDrawForeground) && v(this.visible_area, h.getBounding(q)) && b.push(h); } return b; }; - e.prototype.draw = function(a, b) { + c.prototype.draw = function(a, b) { if (this.canvas) { - var d = g.getTime(); + var d = e.getTime(); this.render_time = 0.001 * (d - this.last_draw_time); this.last_draw_time = d; if (this.graph) { - var f = [-this.offset[0], -this.offset[1]], e = [f[0] + this.canvas.width / this.scale, f[1] + this.canvas.height / this.scale]; - this.visible_area = new Float32Array([f[0], f[1], e[0], e[1]]); + var g = [-this.offset[0], -this.offset[1]], h = [g[0] + this.canvas.width / this.scale, g[1] + this.canvas.height / this.scale]; + this.visible_area = new Float32Array([g[0], g[1], h[0] - g[0], h[1] - g[1]]); } (this.dirty_bgcanvas || b || this.always_render_background || this.graph && this.graph._last_trigger_time && 1000 > d - this.graph._last_trigger_time) && this.drawBackCanvas(); (this.dirty_canvas || a) && this.drawFrontCanvas(); @@ -1988,7 +2132,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.frame += 1; } }; - e.prototype.drawFrontCanvas = function() { + c.prototype.drawFrontCanvas = function() { this.ctx || (this.ctx = this.bgcanvas.getContext("2d")); var a = this.ctx; if (a) { @@ -2007,19 +2151,19 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a.save(); a.scale(this.scale, this.scale); a.translate(this.offset[0], this.offset[1]); - this.visible_nodes = b = this.computeVisibleNodes(); + b = this.computeVisibleNodes(null, this.visible_nodes); for (var d = 0; d < b.length; ++d) { - var f = b[d]; + var g = b[d]; a.save(); - a.translate(f.pos[0], f.pos[1]); - this.drawNode(f, a); + a.translate(g.pos[0], g.pos[1]); + this.drawNode(g, a); a.restore(); } this.graph.config.links_ontop && (this.live_mode || this.drawConnections(a)); if (null != this.connecting_pos) { a.lineWidth = this.connections_width; switch(this.connecting_output.type) { - case g.EVENT: + case e.EVENT: b = "#F85"; break; default: @@ -2027,11 +2171,12 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } this.renderLink(a, this.connecting_pos, [this.canvas_mouse[0], this.canvas_mouse[1]], null, !1, null, b); a.beginPath(); - this.connecting_output.type === g.EVENT ? a.rect(this.connecting_pos[0] - 6 + 0.5, this.connecting_pos[1] - 5 + 0.5, 14, 10) : a.arc(this.connecting_pos[0], this.connecting_pos[1], 4, 0, 2 * Math.PI); + this.connecting_output.type === e.EVENT ? a.rect(this.connecting_pos[0] - 6 + 0.5, this.connecting_pos[1] - 5 + 0.5, 14, 10) : a.arc(this.connecting_pos[0], this.connecting_pos[1], 4, 0, 2 * Math.PI); a.fill(); a.fillStyle = "#ffcc00"; this._highlight_input && (a.beginPath(), a.arc(this._highlight_input[0], this._highlight_input[1], 6, 0, 2 * Math.PI), a.fill()); } + this.dragging_rectangle && (a.strokeStyle = "#FFF", a.strokeRect(this.dragging_rectangle[0], this.dragging_rectangle[1], this.dragging_rectangle[2], this.dragging_rectangle[3])); a.restore(); } this.dirty_area && a.restore(); @@ -2039,7 +2184,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.dirty_canvas = !1; } }; - e.prototype.renderInfo = function(a, b, d) { + c.prototype.renderInfo = function(a, b, d) { b = b || 0; d = d || 0; a.save(); @@ -2049,7 +2194,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.graph ? (a.fillText("T: " + this.graph.globaltime.toFixed(2) + "s", 5, 13), a.fillText("I: " + this.graph.iteration, 5, 26), a.fillText("F: " + this.frame, 5, 39), a.fillText("FPS:" + this.fps.toFixed(2), 5, 52)) : a.fillText("No graph selected", 5, 13); a.restore(); }; - e.prototype.drawBackCanvas = function() { + c.prototype.drawBackCanvas = function() { var a = this.bgcanvas; if (a.width != this.canvas.width || a.height != this.canvas.height) { a.width = this.canvas.width, a.height = this.canvas.height; @@ -2077,9 +2222,9 @@ $jscomp.polyfill("Array.prototype.values", function(v) { d.draw(!0, !0); }; } - var f = null; - null == this._pattern && 0 < this._bg_img.width ? (f = b.createPattern(this._bg_img, "repeat"), this._pattern_img = this._bg_img, this._pattern = f) : f = this._pattern; - f && (b.fillStyle = f, b.fillRect(this.visible_area[0], this.visible_area[1], this.visible_area[2] - this.visible_area[0], this.visible_area[3] - this.visible_area[1]), b.fillStyle = "transparent"); + var e = null; + null == this._pattern && 0 < this._bg_img.width ? (e = b.createPattern(this._bg_img, "repeat"), this._pattern_img = this._bg_img, this._pattern = e) : e = this._pattern; + e && (b.fillStyle = e, b.fillRect(this.visible_area[0], this.visible_area[1], this.visible_area[2], this.visible_area[3]), b.fillStyle = "transparent"); b.globalAlpha = 1.0; b.imageSmoothingEnabled = b.mozImageSmoothingEnabled = b.imageSmoothingEnabled = !0; } @@ -2097,55 +2242,55 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.dirty_bgcanvas = !1; this.dirty_canvas = !0; }; - var k = new Float32Array(2); - e.prototype.drawNode = function(a, b) { - var d = a.color || g.NODE_DEFAULT_COLOR, f = !0; + var l = new Float32Array(2); + c.prototype.drawNode = function(a, b) { + var d = a.color || e.NODE_DEFAULT_COLOR, c = !0; if (a.flags.skip_title_render || a.graph.isLive()) { - f = !1; + c = !1; } - a.mouseOver && (f = !0); + a.mouseOver && (c = !0); a.selected || (this.render_shadows ? (b.shadowColor = "rgba(0,0,0,0.5)", b.shadowOffsetX = 2, b.shadowOffsetY = 2, b.shadowBlur = 3) : b.shadowColor = "transparent"); if (this.live_mode) { if (!a.flags.collapsed && (b.shadowColor = "transparent", a.onDrawForeground)) { a.onDrawForeground(b); } } else { - var e = this.editor_alpha; - b.globalAlpha = e; - var c = a._shape || g.BOX_SHAPE; - k.set(a.size); - a.flags.collapsed && (k[0] = g.NODE_COLLAPSED_WIDTH, k[1] = 0); - a.flags.clip_area && (b.save(), c == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, 0, k[0], k[1])) : c == g.ROUND_SHAPE ? b.roundRect(0, 0, k[0], k[1], 10) : c == g.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * k[0], 0.5 * k[1], 0.5 * k[0], 0, 2 * Math.PI)), b.clip()); - this.drawNodeShape(a, b, k, d, a.bgcolor, !f, a.selected); + var h = this.editor_alpha; + b.globalAlpha = h; + var f = a._shape || e.BOX_SHAPE; + l.set(a.size); + a.flags.collapsed && (l[0] = e.NODE_COLLAPSED_WIDTH, l[1] = 0); + a.flags.clip_area && (b.save(), f == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, 0, l[0], l[1])) : f == e.ROUND_SHAPE ? b.roundRect(0, 0, l[0], l[1], 10) : f == e.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * l[0], 0.5 * l[1], 0.5 * l[0], 0, 2 * Math.PI)), b.clip()); + this.drawNodeShape(a, b, l, d, a.bgcolor, !c, a.selected); b.shadowColor = "transparent"; b.textAlign = "left"; b.font = this.inner_text_font; - f = 0.6 < this.scale; - c = this.connecting_output; + c = 0.6 < this.scale; + f = this.connecting_output; if (!a.flags.collapsed) { if (a.inputs) { - for (var q = 0; q < a.inputs.length; q++) { - var l = a.inputs[q]; - b.globalAlpha = e; - this.connecting_node && g.isValidConnection(l.type && c.type) && (b.globalAlpha = 0.4 * e); - b.fillStyle = null != l.link ? "#7F7" : "#AAA"; - var w = a.getConnectionPos(!0, q); - w[0] -= a.pos[0]; - w[1] -= a.pos[1]; + for (var n = 0; n < a.inputs.length; n++) { + var q = a.inputs[n]; + b.globalAlpha = h; + this.connecting_node && e.isValidConnection(q.type && f.type) && (b.globalAlpha = 0.4 * h); + b.fillStyle = null != q.link ? "#7F7" : "#AAA"; + var p = a.getConnectionPos(!0, n); + p[0] -= a.pos[0]; + p[1] -= a.pos[1]; b.beginPath(); - l.type === g.EVENT ? b.rect(w[0] - 6 + 0.5, w[1] - 5 + 0.5, 14, 10) : b.arc(w[0], w[1], 4, 0, 2 * Math.PI); + q.type === e.EVENT ? b.rect(p[0] - 6 + 0.5, p[1] - 5 + 0.5, 14, 10) : b.arc(p[0], p[1], 4, 0, 2 * Math.PI); b.fill(); - f && (l = null != l.label ? l.label : l.name) && (b.fillStyle = d, b.fillText(l, w[0] + 10, w[1] + 5)); + c && (q = null != q.label ? q.label : q.name) && (b.fillStyle = d, b.fillText(q, p[0] + 10, p[1] + 5)); } } - this.connecting_node && (b.globalAlpha = 0.4 * e); + this.connecting_node && (b.globalAlpha = 0.4 * h); b.lineWidth = 1; b.textAlign = "right"; b.strokeStyle = "black"; if (a.outputs) { - for (q = 0; q < a.outputs.length; q++) { - if (l = a.outputs[q], w = a.getConnectionPos(!1, q), w[0] -= a.pos[0], w[1] -= a.pos[1], b.fillStyle = l.links && l.links.length ? "#7F7" : "#AAA", b.beginPath(), l.type === g.EVENT ? b.rect(w[0] - 6 + 0.5, w[1] - 5 + 0.5, 14, 10) : b.arc(w[0], w[1], 4, 0, 2 * Math.PI), b.fill(), b.stroke(), f && (l = null != l.label ? l.label : l.name)) { - b.fillStyle = d, b.fillText(l, w[0] - 10, w[1] + 5); + for (n = 0; n < a.outputs.length; n++) { + if (q = a.outputs[n], p = a.getConnectionPos(!1, n), p[0] -= a.pos[0], p[1] -= a.pos[1], b.fillStyle = q.links && q.links.length ? "#7F7" : "#AAA", b.beginPath(), q.type === e.EVENT ? b.rect(p[0] - 6 + 0.5, p[1] - 5 + 0.5, 14, 10) : b.arc(p[0], p[1], 4, 0, 2 * Math.PI), b.fill(), b.stroke(), c && (q = null != q.label ? q.label : q.name)) { + b.fillStyle = d, b.fillText(q, p[0] - 10, p[1] + 5); } } } @@ -2159,51 +2304,51 @@ $jscomp.polyfill("Array.prototype.values", function(v) { b.globalAlpha = 1.0; } }; - e.prototype.drawNodeShape = function(a, b, d, f, e, c, k) { - b.strokeStyle = f || g.NODE_DEFAULT_COLOR; - b.fillStyle = e || g.NODE_DEFAULT_BGCOLOR; - e = g.NODE_TITLE_HEIGHT; - var l = a._shape || g.BOX_SHAPE; - l == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, c ? 0 : -e, d[0] + 1, c ? d[1] : d[1] + e), b.fill(), b.shadowColor = "transparent", k && (b.strokeStyle = "#CCC", b.strokeRect(-0.5, c ? -0.5 : -e + -0.5, d[0] + 2, c ? d[1] + 2 : d[1] + e + 2 - 1), b.strokeStyle = f)) : l == g.ROUND_SHAPE ? (b.roundRect(0, c ? 0 : -e, d[0], c ? d[1] : d[1] + e, 10), b.fill()) : l == g.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * d[0], 0.5 * d[1], 0.5 * d[0], 0, 2 * Math.PI), b.fill()); + c.prototype.drawNodeShape = function(a, b, d, c, h, l, n) { + b.strokeStyle = c || e.NODE_DEFAULT_COLOR; + b.fillStyle = h || e.NODE_DEFAULT_BGCOLOR; + h = e.NODE_TITLE_HEIGHT; + var g = a._shape || e.BOX_SHAPE; + g == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, l ? 0 : -h, d[0] + 1, l ? d[1] : d[1] + h), b.fill(), b.shadowColor = "transparent", n && (b.strokeStyle = "#CCC", b.strokeRect(-0.5, l ? -0.5 : -h + -0.5, d[0] + 2, l ? d[1] + 2 : d[1] + h + 2 - 1), b.strokeStyle = c)) : g == e.ROUND_SHAPE ? (b.roundRect(0, l ? 0 : -h, d[0], l ? d[1] : d[1] + h, 10), b.fill()) : g == e.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * d[0], 0.5 * d[1], 0.5 * d[0], 0, 2 * Math.PI), b.fill()); b.shadowColor = "transparent"; a.bgImage && a.bgImage.width && b.drawImage(a.bgImage, 0.5 * (d[0] - a.bgImage.width), 0.5 * (d[1] - a.bgImage.height)); a.bgImageUrl && !a.bgImage && (a.bgImage = a.loadImage(a.bgImageUrl)); if (a.onDrawBackground) { a.onDrawBackground(b); } - c || (b.fillStyle = f || g.NODE_DEFAULT_COLOR, f = b.globalAlpha, b.globalAlpha = 0.5 * f, l == g.BOX_SHAPE ? (b.beginPath(), b.rect(0, -e, d[0] + 1, e), b.fill()) : l == g.ROUND_SHAPE && (b.roundRect(0, -e, d[0], e, 10, 0), b.fill()), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), l == g.ROUND_SHAPE || l == g.CIRCLE_SHAPE ? b.arc(0.5 * e, -0.5 * e, 0.5 * (e - 6), 0, 2 * Math.PI) : b.rect(3, -e + 3, e - 6, e - 6), b.fill(), b.globalAlpha = f, b.font = this.title_text_font, - (a = a.getTitle()) && 0.5 < this.scale && (b.fillStyle = g.NODE_TITLE_COLOR, b.fillText(a, 16, 13 - e))); + l || (b.fillStyle = c || e.NODE_DEFAULT_COLOR, c = b.globalAlpha, b.globalAlpha = 0.5 * c, g == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, -h, d[0] + 1, h), b.fill()) : g == e.ROUND_SHAPE && (b.roundRect(0, -h, d[0], h, 10, 0), b.fill()), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), g == e.ROUND_SHAPE || g == e.CIRCLE_SHAPE ? b.arc(0.5 * h, -0.5 * h, 0.5 * (h - 6), 0, 2 * Math.PI) : b.rect(3, -h + 3, h - 6, h - 6), b.fill(), b.globalAlpha = c, b.font = this.title_text_font, + (a = a.getTitle()) && 0.5 < this.scale && (b.fillStyle = e.NODE_TITLE_COLOR, b.fillText(a, 16, 13 - h))); }; - e.prototype.drawNodeCollapsed = function(a, b, d, f) { - b.strokeStyle = d || g.NODE_DEFAULT_COLOR; - b.fillStyle = f || g.NODE_DEFAULT_BGCOLOR; - d = g.NODE_COLLAPSED_RADIUS; - f = a._shape || g.BOX_SHAPE; - f == g.CIRCLE_SHAPE ? (b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], d, 0, 2 * Math.PI), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], 0.5 * d, 0, 2 * Math.PI)) : f == g.ROUND_SHAPE ? (b.beginPath(), b.roundRect(0.5 * a.size[0] - d, 0.5 * a.size[1] - d, 2 * d, 2 * d, 5), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, - b.beginPath(), b.roundRect(0.5 * a.size[0] - 0.5 * d, 0.5 * a.size[1] - 0.5 * d, d, d, 2)) : (b.beginPath(), b.rect(0, 0, a.size[0], 2 * d), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || g.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.rect(0.5 * d, 0.5 * d, d, d)); + c.prototype.drawNodeCollapsed = function(a, b, d, c) { + b.strokeStyle = d || e.NODE_DEFAULT_COLOR; + b.fillStyle = c || e.NODE_DEFAULT_BGCOLOR; + d = e.NODE_COLLAPSED_RADIUS; + c = a._shape || e.BOX_SHAPE; + c == e.CIRCLE_SHAPE ? (b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], d, 0, 2 * Math.PI), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], 0.5 * d, 0, 2 * Math.PI)) : c == e.ROUND_SHAPE ? (b.beginPath(), b.roundRect(0.5 * a.size[0] - d, 0.5 * a.size[1] - d, 2 * d, 2 * d, 5), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, + b.beginPath(), b.roundRect(0.5 * a.size[0] - 0.5 * d, 0.5 * a.size[1] - 0.5 * d, d, d, 2)) : (b.beginPath(), b.rect(0, 0, a.size[0], 2 * d), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.rect(0.5 * d, 0.5 * d, d, d)); b.fill(); }; - e.prototype.drawConnections = function(a) { - var b = g.getTime(); + c.prototype.drawConnections = function(a) { + var b = e.getTime(); a.lineWidth = this.connections_width; a.fillStyle = "#AAA"; a.strokeStyle = "#AAA"; a.globalAlpha = this.editor_alpha; - for (var d = 0, f = this.graph._nodes.length; d < f; ++d) { - var e = this.graph._nodes[d]; - if (e.inputs && e.inputs.length) { - for (var c = 0; c < e.inputs.length; ++c) { - var k = e.inputs[c]; - if (k && null != k.link && (k = this.graph.links[k.link])) { - var l = this.graph.getNodeById(k.origin_id); - if (null != l) { - var w = k.origin_slot; - l = -1 == w ? [l.pos[0] + 10, l.pos[1] + 10] : l.getConnectionPos(!1, w); - this.renderLink(a, l, e.getConnectionPos(!0, c), k); - if (k && k._last_time && 1000 > b - k._last_time) { - w = 2.0 - 0.002 * (b - k._last_time); - var h = "rgba(255,255,255, " + w.toFixed(2) + ")"; - this.renderLink(a, l, e.getConnectionPos(!0, c), k, !0, w, h); + for (var d = 0, c = this.graph._nodes.length; d < c; ++d) { + var h = this.graph._nodes[d]; + if (h.inputs && h.inputs.length) { + for (var l = 0; l < h.inputs.length; ++l) { + var n = h.inputs[l]; + if (n && null != n.link && (n = this.graph.links[n.link])) { + var f = this.graph.getNodeById(n.origin_id); + if (null != f) { + var q = n.origin_slot; + f = -1 == q ? [f.pos[0] + 10, f.pos[1] + 10] : f.getConnectionPos(!1, q); + this.renderLink(a, f, h.getConnectionPos(!0, l), n); + if (n && n._last_time && 1000 > b - n._last_time) { + q = 2.0 - 0.002 * (b - n._last_time); + var p = "rgba(255,255,255, " + q.toFixed(2) + ")"; + this.renderLink(a, f, h.getConnectionPos(!0, l), n, !0, q, p); } } } @@ -2212,59 +2357,60 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } a.globalAlpha = 1; }; - e.prototype.renderLink = function(a, b, d, f, c, k, q) { + c.prototype.renderLink = function(a, b, d, g, h, l, n) { if (this.highquality_render) { - var l = p(b, d); + var f = p(b, d); this.render_connections_border && 0.6 < this.scale && (a.lineWidth = this.connections_width + 4); - !q && f && (q = e.link_type_colors[f.type]); - q || (q = this.default_link_color); + !n && g && (n = c.link_type_colors[g.type]); + n || (n = this.default_link_color); + null != g && this.highlighted_links[g.id] && (n = "#FFF"); a.beginPath(); - this.render_curved_connections ? (a.moveTo(b[0], b[1]), a.bezierCurveTo(b[0] + 0.25 * l, b[1], d[0] - 0.25 * l, d[1], d[0], d[1])) : (a.moveTo(b[0] + 10, b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), d[1]), a.lineTo(d[0] - 10, d[1])); - this.render_connections_border && 0.6 < this.scale && !c && (a.strokeStyle = "rgba(0,0,0,0.5)", a.stroke()); + this.render_curved_connections ? (a.moveTo(b[0], b[1]), a.bezierCurveTo(b[0] + 0.25 * f, b[1], d[0] - 0.25 * f, d[1], d[0], d[1])) : (a.moveTo(b[0] + 10, b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), d[1]), a.lineTo(d[0] - 10, d[1])); + this.render_connections_border && 0.6 < this.scale && !h && (a.strokeStyle = "rgba(0,0,0,0.5)", a.stroke()); a.lineWidth = this.connections_width; - a.fillStyle = a.strokeStyle = q; + a.fillStyle = a.strokeStyle = n; a.stroke(); - this.render_connection_arrows && 0.6 <= this.scale && this.render_connection_arrows && 0.6 < this.scale && (f = this.computeConnectionPoint(b, d, 0.5), c = this.computeConnectionPoint(b, d, 0.51), c = this.render_curved_connections ? -Math.atan2(c[0] - f[0], c[1] - f[1]) : d[1] > b[1] ? 0 : Math.PI, a.save(), a.translate(f[0], f[1]), a.rotate(c), a.beginPath(), a.moveTo(-5, -5), a.lineTo(0, 5), a.lineTo(5, -5), a.fill(), a.restore()); - if (k) { - for (k = 0; 5 > k; ++k) { - f = (0.001 * g.getTime() + 0.2 * k) % 1, f = this.computeConnectionPoint(b, d, f), a.beginPath(), a.arc(f[0], f[1], 5, 0, 2 * Math.PI), a.fill(); + this.render_connection_arrows && 0.6 <= this.scale && this.render_connection_arrows && 0.6 < this.scale && (g = this.computeConnectionPoint(b, d, 0.5), h = this.computeConnectionPoint(b, d, 0.51), h = this.render_curved_connections ? -Math.atan2(h[0] - g[0], h[1] - g[1]) : d[1] > b[1] ? 0 : Math.PI, a.save(), a.translate(g[0], g[1]), a.rotate(h), a.beginPath(), a.moveTo(-5, -5), a.lineTo(0, 5), a.lineTo(5, -5), a.fill(), a.restore()); + if (l) { + for (l = 0; 5 > l; ++l) { + g = (0.001 * e.getTime() + 0.2 * l) % 1, g = this.computeConnectionPoint(b, d, g), a.beginPath(), a.arc(g[0], g[1], 5, 0, 2 * Math.PI), a.fill(); } } } else { a.beginPath(), a.moveTo(b[0], b[1]), a.lineTo(d[0], d[1]), a.stroke(); } }; - e.prototype.computeConnectionPoint = function(a, b, d) { - var f = p(a, b), g = [a[0] + 0.25 * f, a[1]]; - f = [b[0] - 0.25 * f, b[1]]; - var e = (1 - d) * (1 - d) * (1 - d), c = 3 * (1 - d) * (1 - d) * d, k = 3 * (1 - d) * d * d; + c.prototype.computeConnectionPoint = function(a, b, d) { + var e = p(a, b), c = [a[0] + 0.25 * e, a[1]]; + e = [b[0] - 0.25 * e, b[1]]; + var l = (1 - d) * (1 - d) * (1 - d), n = 3 * (1 - d) * (1 - d) * d, f = 3 * (1 - d) * d * d; d *= d * d; - return [e * a[0] + c * g[0] + k * f[0] + d * b[0], e * a[1] + c * g[1] + k * f[1] + d * b[1]]; + return [l * a[0] + n * c[0] + f * e[0] + d * b[0], l * a[1] + n * c[1] + f * e[1] + d * b[1]]; }; - e.prototype.resize = function(a, b) { + c.prototype.resize = function(a, b) { a || b || (b = this.canvas.parentNode, a = b.offsetWidth, b = b.offsetHeight); if (this.canvas.width != a || this.canvas.height != b) { this.canvas.width = a, this.canvas.height = b, this.bgcanvas.width = this.canvas.width, this.bgcanvas.height = this.canvas.height, this.setDirty(!0, !0); } }; - e.prototype.switchLiveMode = function(a) { + c.prototype.switchLiveMode = function(a) { if (a) { var b = this, d = this.live_mode ? 1.1 : 0.9; this.live_mode && (this.live_mode = !1, this.editor_alpha = 0.1); - var g = setInterval(function() { + var e = setInterval(function() { b.editor_alpha *= d; b.dirty_canvas = !0; b.dirty_bgcanvas = !0; - 1 > d && 0.01 > b.editor_alpha && (clearInterval(g), 1 > d && (b.live_mode = !0)); - 1 < d && 0.99 < b.editor_alpha && (clearInterval(g), b.editor_alpha = 1); + 1 > d && 0.01 > b.editor_alpha && (clearInterval(e), 1 > d && (b.live_mode = !0)); + 1 < d && 0.99 < b.editor_alpha && (clearInterval(e), b.editor_alpha = 1); }, 1); } else { this.live_mode = !this.live_mode, this.dirty_bgcanvas = this.dirty_canvas = !0; } }; - e.prototype.onNodeSelectionChange = function(a) { + c.prototype.onNodeSelectionChange = function(a) { }; - e.prototype.touchHandler = function(a) { + c.prototype.touchHandler = function(a) { var b = a.changedTouches[0]; switch(a.type) { case "touchstart": @@ -2279,158 +2425,158 @@ $jscomp.polyfill("Array.prototype.values", function(v) { default: return; } - var g = this.getCanvasWindow(), e = g.document.createEvent("MouseEvent"); - e.initMouseEvent(d, !0, !0, g, 1, b.screenX, b.screenY, b.clientX, b.clientY, !1, !1, !1, !1, 0, null); - b.target.dispatchEvent(e); + var e = this.getCanvasWindow(), c = e.document.createEvent("MouseEvent"); + c.initMouseEvent(d, !0, !0, e, 1, b.screenX, b.screenY, b.clientX, b.clientY, !1, !1, !1, !1, 0, null); + b.target.dispatchEvent(c); a.preventDefault(); }; - e.onMenuAdd = function(a, b, d, f) { - function c(a, b) { - b = f.getFirstEvent(); - if (a = g.createNode(a.value)) { - a.pos = k.convertEventToCanvas(b), k.graph.add(a); + c.onMenuAdd = function(a, b, d, l) { + function h(a, b) { + b = l.getFirstEvent(); + if (a = e.createNode(a.value)) { + a.pos = g.convertEventToCanvas(b), g.graph.add(a); } } - var k = e.active_canvas, q = k.getCanvasWindow(); - a = g.getNodeTypesCategories(); + var g = c.active_canvas, n = g.getCanvasWindow(); + a = e.getNodeTypesCategories(); b = []; - for (var l in a) { - a[l] && b.push({value:a[l], content:a[l], has_submenu:!0}); + for (var f in a) { + a[f] && b.push({value:a[f], content:a[f], has_submenu:!0}); } - var w = new g.ContextMenu(b, {event:d, callback:function(a, b, d) { - a = g.getNodeTypesInCategory(a.value); + var q = new e.ContextMenu(b, {event:d, callback:function(a, b, d) { + a = e.getNodeTypesInCategory(a.value); b = []; - for (var f in a) { - b.push({content:a[f].title, value:a[f].type}); + for (var c in a) { + b.push({content:a[c].title, value:a[c].type}); } - new g.ContextMenu(b, {event:d, callback:c, parentMenu:w}, q); + new e.ContextMenu(b, {event:d, callback:h, parentMenu:q}, n); return !1; - }, parentMenu:f}, q); + }, parentMenu:l}, n); return !1; }; - e.onMenuCollapseAll = function() { + c.onMenuCollapseAll = function() { }; - e.onMenuNodeEdit = function() { + c.onMenuNodeEdit = function() { }; - e.showMenuNodeOptionalInputs = function(a, b, d, f, c) { - if (c) { - var k = this; - a = e.active_canvas.getCanvasWindow(); - b = c.optional_inputs; - c.onGetInputs && (b = c.onGetInputs()); - var t = []; + c.showMenuNodeOptionalInputs = function(a, b, d, l, h) { + if (h) { + var g = this; + a = c.active_canvas.getCanvasWindow(); + b = h.optional_inputs; + h.onGetInputs && (b = h.onGetInputs()); + var n = []; if (b) { - for (var l in b) { - var w = b[l]; - if (w) { - var h = w[0]; - w[2] && w[2].label && (h = w[2].label); - h = {content:h, value:w}; - w[1] == g.ACTION && (h.className = "event"); - t.push(h); + for (var f in b) { + var q = b[f]; + if (q) { + var p = q[0]; + q[2] && q[2].label && (p = q[2].label); + p = {content:p, value:q}; + q[1] == e.ACTION && (p.className = "event"); + n.push(p); } else { - t.push(null); + n.push(null); } } } - this.onMenuNodeInputs && (t = this.onMenuNodeInputs(t)); - if (t.length) { - return new g.ContextMenu(t, {event:d, callback:function(a, b, d) { - c && (a.callback && a.callback.call(k, c, a, b, d), a.value && (c.addInput(a.value[0], a.value[1], a.value[2]), c.setDirtyCanvas(!0, !0))); - }, parentMenu:f, node:c}, a), !1; + this.onMenuNodeInputs && (n = this.onMenuNodeInputs(n)); + if (n.length) { + return new e.ContextMenu(n, {event:d, callback:function(a, b, d) { + h && (a.callback && a.callback.call(g, h, a, b, d), a.value && (h.addInput(a.value[0], a.value[1], a.value[2]), h.setDirtyCanvas(!0, !0))); + }, parentMenu:l, node:h}, a), !1; } } }; - e.showMenuNodeOptionalOutputs = function(a, b, d, f, c) { - function k(a, b, d) { - if (c && (a.callback && a.callback.call(t, c, a, b, d), a.value)) { + c.showMenuNodeOptionalOutputs = function(a, b, d, l, h) { + function g(a, b, d) { + if (h && (a.callback && a.callback.call(n, h, a, b, d), a.value)) { if (d = a.value[1], !d || d.constructor !== Object && d.constructor !== Array) { - c.addOutput(a.value[0], a.value[1], a.value[2]), c.setDirtyCanvas(!0, !0); + h.addOutput(a.value[0], a.value[1], a.value[2]), h.setDirtyCanvas(!0, !0); } else { a = []; - for (var e in d) { - a.push({content:e, value:d[e]}); + for (var c in d) { + a.push({content:c, value:d[c]}); } - new g.ContextMenu(a, {event:b, callback:k, parentMenu:f, node:c}); + new e.ContextMenu(a, {event:b, callback:g, parentMenu:l, node:h}); return !1; } } } - if (c) { - var t = this; - a = e.active_canvas.getCanvasWindow(); - b = c.optional_outputs; - c.onGetOutputs && (b = c.onGetOutputs()); - var l = []; + if (h) { + var n = this; + a = c.active_canvas.getCanvasWindow(); + b = h.optional_outputs; + h.onGetOutputs && (b = h.onGetOutputs()); + var f = []; if (b) { - for (var w in b) { - var h = b[w]; - if (!h) { - l.push(null); + for (var q in b) { + var p = b[q]; + if (!p) { + f.push(null); } else { - if (!c.flags || !c.flags.skip_repeated_outputs || -1 == c.findOutputSlot(h[0])) { - var p = h[0]; - h[2] && h[2].label && (p = h[2].label); - p = {content:p, value:h}; - h[1] == g.EVENT && (p.className = "event"); - l.push(p); + if (!h.flags || !h.flags.skip_repeated_outputs || -1 == h.findOutputSlot(p[0])) { + var k = p[0]; + p[2] && p[2].label && (k = p[2].label); + k = {content:k, value:p}; + p[1] == e.EVENT && (k.className = "event"); + f.push(k); } } } } - this.onMenuNodeOutputs && (l = this.onMenuNodeOutputs(l)); - if (l.length) { - return new g.ContextMenu(l, {event:d, callback:k, parentMenu:f, node:c}, a), !1; + this.onMenuNodeOutputs && (f = this.onMenuNodeOutputs(f)); + if (f.length) { + return new e.ContextMenu(f, {event:d, callback:g, parentMenu:l, node:h}, a), !1; } } }; - e.onShowMenuNodeProperties = function(a, b, d, f, c) { - if (c && c.properties) { - var k = e.active_canvas; - b = k.getCanvasWindow(); - var t = [], l; - for (l in c.properties) { - a = void 0 !== c.properties[l] ? c.properties[l] : " ", a = e.decodeHTML(a), t.push({content:"" + l + "" + a + "", value:l}); + c.onShowMenuNodeProperties = function(a, b, d, l, h) { + if (h && h.properties) { + var g = c.active_canvas; + b = g.getCanvasWindow(); + var n = [], f; + for (f in h.properties) { + a = void 0 !== h.properties[f] ? h.properties[f] : " ", a = c.decodeHTML(a), n.push({content:"" + f + "" + a + "", value:f}); } - if (t.length) { - return new g.ContextMenu(t, {event:d, callback:function(a, b, d, g) { - c && (b = this.getBoundingClientRect(), k.showEditPropertyValue(c, a.value, {position:[b.left, b.top]})); - }, parentMenu:f, allow_html:!0, node:c}, b), !1; + if (n.length) { + return new e.ContextMenu(n, {event:d, callback:function(a, b, d, e) { + h && (b = this.getBoundingClientRect(), g.showEditPropertyValue(h, a.value, {position:[b.left, b.top]})); + }, parentMenu:l, allow_html:!0, node:h}, b), !1; } } }; - e.decodeHTML = function(a) { + c.decodeHTML = function(a) { var b = document.createElement("div"); b.innerText = a; return b.innerHTML; }; - e.onResizeNode = function(a, b, d, g, c) { + c.onResizeNode = function(a, b, d, e, c) { c && (c.size = c.computeSize(), c.setDirtyCanvas(!0, !0)); }; - e.onShowTitleEditor = function(a, b, d, g, c) { - function f() { - c.title = l.value; - k.parentNode.removeChild(k); - c.setDirtyCanvas(!0, !0); + c.onShowTitleEditor = function(a, b, d, e, h) { + function l() { + h.title = g.value; + n.parentNode.removeChild(n); + h.setDirtyCanvas(!0, !0); } - var k = document.createElement("div"); - k.className = "graphdialog"; - k.innerHTML = "Title"; - var l = k.querySelector("input"); - l && (l.value = c.title, l.addEventListener("keydown", function(a) { - 13 == a.keyCode && (f(), a.preventDefault(), a.stopPropagation()); + var n = document.createElement("div"); + n.className = "graphdialog"; + n.innerHTML = "Title"; + var g = n.querySelector("input"); + g && (g.value = h.title, g.addEventListener("keydown", function(a) { + 13 == a.keyCode && (l(), a.preventDefault(), a.stopPropagation()); })); - a = e.active_canvas.canvas; + a = c.active_canvas.canvas; b = a.getBoundingClientRect(); - g = d = -20; - b && (d -= b.left, g -= b.top); - event ? (k.style.left = event.pageX + d + "px", k.style.top = event.pageY + g + "px") : (k.style.left = 0.5 * a.width + d + "px", k.style.top = 0.5 * a.height + g + "px"); - k.querySelector("button").addEventListener("click", f); - a.parentNode.appendChild(k); + e = d = -20; + b && (d -= b.left, e -= b.top); + event ? (n.style.left = event.pageX + d + "px", n.style.top = event.pageY + e + "px") : (n.style.left = 0.5 * a.width + d + "px", n.style.top = 0.5 * a.height + e + "px"); + n.querySelector("button").addEventListener("click", l); + a.parentNode.appendChild(n); }; - e.prototype.showEditPropertyValue = function(a, b, d) { - function g() { - c(u.value); + c.prototype.showEditPropertyValue = function(a, b, d) { + function e() { + c(t.value); } function c(d) { "number" == typeof a.properties[b] && (d = Number(d)); @@ -2438,71 +2584,71 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if (a.onPropertyChanged) { a.onPropertyChanged(b, d); } - n.close(); + k.close(); a.setDirtyCanvas(!0, !0); } if (a && void 0 !== a.properties[b]) { d = d || {}; - var e = "string"; - null !== a.properties[b] && (e = typeof a.properties[b]); - var k = null; - a.getPropertyInfo && (k = a.getPropertyInfo(b)); + var l = "string"; + null !== a.properties[b] && (l = typeof a.properties[b]); + var n = null; + a.getPropertyInfo && (n = a.getPropertyInfo(b)); if (a.properties_info) { - for (var l = 0; l < a.properties_info.length; ++l) { - if (a.properties_info[l].name == b) { - k = a.properties_info[l]; + for (var f = 0; f < a.properties_info.length; ++f) { + if (a.properties_info[f].name == b) { + n = a.properties_info[f]; break; } } } - void 0 !== k && null !== k && k.type && (e = k.type); - var h = ""; - if ("string" == e || "number" == e) { - h = ""; + void 0 !== n && null !== n && n.type && (l = n.type); + var q = ""; + if ("string" == l || "number" == l) { + q = ""; } else { - if ("enum" == e && k.values) { - h = ""; + for (f in n.values) { + var p = n.values.constructor === Array ? n.values[f] : f; + q += ""; } - h += ""; + q += ""; } else { - "boolean" == e && (h = ""); + "boolean" == l && (q = ""); } } - var n = this.createDialog("" + b + "" + h + "", d); - if ("enum" == e && k.values) { - var u = n.querySelector("select"); - u.addEventListener("change", function(a) { + var k = this.createDialog("" + b + "" + q + "", d); + if ("enum" == l && n.values) { + var t = k.querySelector("select"); + t.addEventListener("change", function(a) { c(a.target.value); }); } else { - if ("boolean" == e) { - (u = n.querySelector("input")) && u.addEventListener("click", function(a) { - c(!!u.checked); + if ("boolean" == l) { + (t = k.querySelector("input")) && t.addEventListener("click", function(a) { + c(!!t.checked); }); } else { - if (u = n.querySelector("input")) { - u.value = void 0 !== a.properties[b] ? a.properties[b] : "", u.addEventListener("keydown", function(a) { - 13 == a.keyCode && (g(), a.preventDefault(), a.stopPropagation()); + if (t = k.querySelector("input")) { + t.value = void 0 !== a.properties[b] ? a.properties[b] : "", t.addEventListener("keydown", function(a) { + 13 == a.keyCode && (e(), a.preventDefault(), a.stopPropagation()); }); } } } - n.querySelector("button").addEventListener("click", g); + k.querySelector("button").addEventListener("click", e); } }; - e.prototype.createDialog = function(a, b) { + c.prototype.createDialog = function(a, b) { b = b || {}; var d = document.createElement("div"); d.className = "graphdialog"; d.innerHTML = a; - a = this.canvas.getClientRects()[0]; - var g = -20, c = -20; - a && (g -= a.left, c -= a.top); - b.position ? (g += b.position[0], c += b.position[1]) : b.event ? (g += b.event.pageX, c += b.event.pageY) : (g += 0.5 * this.canvas.width, c += 0.5 * this.canvas.height); - d.style.left = g + "px"; + a = this.canvas.getBoundingClientRect(); + var e = -20, c = -20; + a && (e -= a.left, c -= a.top); + b.position ? (e += b.position[0], c += b.position[1]) : b.event ? (e += b.event.pageX, c += b.event.pageY) : (e += 0.5 * this.canvas.width, c += 0.5 * this.canvas.height); + d.style.left = e + "px"; d.style.top = c + "px"; this.canvas.parentNode.appendChild(d); d.close = function() { @@ -2510,70 +2656,70 @@ $jscomp.polyfill("Array.prototype.values", function(v) { }; return d; }; - e.onMenuNodeCollapse = function(a, b, d, g, c) { + c.onMenuNodeCollapse = function(a, b, d, e, c) { c.flags.collapsed = !c.flags.collapsed; c.setDirtyCanvas(!0, !0); }; - e.onMenuNodePin = function(a, b, d, g, c) { + c.onMenuNodePin = function(a, b, d, e, c) { c.pin(); }; - e.onMenuNodeMode = function(a, b, d, c, e) { - new g.ContextMenu(["Always", "On Event", "On Trigger", "Never"], {event:d, callback:function(a) { - if (e) { + c.onMenuNodeMode = function(a, b, d, c, l) { + new e.ContextMenu(["Always", "On Event", "On Trigger", "Never"], {event:d, callback:function(a) { + if (l) { switch(a) { case "On Event": - e.mode = g.ON_EVENT; + l.mode = e.ON_EVENT; break; case "On Trigger": - e.mode = g.ON_TRIGGER; + l.mode = e.ON_TRIGGER; break; case "Never": - e.mode = g.NEVER; + l.mode = e.NEVER; break; default: - e.mode = g.ALWAYS; + l.mode = e.ALWAYS; } } - }, parentMenu:c, node:e}); + }, parentMenu:c, node:l}); return !1; }; - e.onMenuNodeColors = function(a, b, d, c, k) { - if (!k) { + c.onMenuNodeColors = function(a, b, d, l, h) { + if (!h) { throw "no node for color"; } b = []; - for (var f in e.node_colors) { - a = e.node_colors[f], a = {value:f, content:"" + f + ""}, b.push(a); + for (var f in c.node_colors) { + a = c.node_colors[f], a = {value:f, content:"" + f + ""}, b.push(a); } - new g.ContextMenu(b, {event:d, callback:function(a) { - k && (a = e.node_colors[a.value]) && (k.color = a.color, k.bgcolor = a.bgcolor, k.setDirtyCanvas(!0)); - }, parentMenu:c, node:k}); + new e.ContextMenu(b, {event:d, callback:function(a) { + h && (a = c.node_colors[a.value]) && (h.color = a.color, h.bgcolor = a.bgcolor, h.setDirtyCanvas(!0)); + }, parentMenu:l, node:h}); return !1; }; - e.onMenuNodeShapes = function(a, b, d, c, e) { - if (!e) { + c.onMenuNodeShapes = function(a, b, d, c, l) { + if (!l) { throw "no node passed"; } - new g.ContextMenu(g.VALID_SHAPES, {event:d, callback:function(a) { - e && (e.shape = a, e.setDirtyCanvas(!0)); - }, parentMenu:c, node:e}); + new e.ContextMenu(e.VALID_SHAPES, {event:d, callback:function(a) { + l && (l.shape = a, l.setDirtyCanvas(!0)); + }, parentMenu:c, node:l}); return !1; }; - e.onMenuNodeRemove = function(a, b, d, g, c) { + c.onMenuNodeRemove = function(a, b, d, e, c) { if (!c) { throw "no node passed"; } 0 != c.removable && (c.graph.remove(c), c.setDirtyCanvas(!0, !0)); }; - e.onMenuNodeClone = function(a, b, d, g, c) { + c.onMenuNodeClone = function(a, b, d, e, c) { 0 != c.clonable && (a = c.clone()) && (a.pos = [c.pos[0] + 5, c.pos[1] + 5], c.graph.add(a), c.setDirtyCanvas(!0, !0)); }; - e.node_colors = {red:{color:"#FAA", bgcolor:"#944"}, green:{color:"#AFA", bgcolor:"#494"}, blue:{color:"#AAF", bgcolor:"#449"}, cyan:{color:"#AFF", bgcolor:"#499"}, purple:{color:"#FAF", bgcolor:"#949"}, yellow:{color:"#FFA", bgcolor:"#994"}, black:{color:"#777", bgcolor:"#000"}, white:{color:"#FFF", bgcolor:"#AAA"}}; - e.prototype.getCanvasMenuOptions = function() { + c.node_colors = {red:{color:"#FAA", bgcolor:"#944"}, green:{color:"#AFA", bgcolor:"#494"}, blue:{color:"#AAF", bgcolor:"#449"}, cyan:{color:"#AFF", bgcolor:"#499"}, purple:{color:"#FAF", bgcolor:"#949"}, yellow:{color:"#FFA", bgcolor:"#994"}, black:{color:"#777", bgcolor:"#000"}, white:{color:"#FFF", bgcolor:"#AAA"}}; + c.prototype.getCanvasMenuOptions = function() { if (this.getMenuOptions) { var a = this.getMenuOptions(); } else { - a = [{content:"Add Node", has_submenu:!0, callback:e.onMenuAdd}], this._graph_stack && 0 < this._graph_stack.length && (a = [{content:"Close subgraph", callback:this.closeSubgraph.bind(this)}, null].concat(a)); + a = [{content:"Add Node", has_submenu:!0, callback:c.onMenuAdd}], this._graph_stack && 0 < this._graph_stack.length && (a = [{content:"Close subgraph", callback:this.closeSubgraph.bind(this)}, null].concat(a)); } if (this.getExtraMenuOptions) { var b = this.getExtraMenuOptions(this, a); @@ -2581,15 +2727,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return a; }; - e.prototype.getNodeMenuOptions = function(a) { - var b = a.getMenuOptions ? a.getMenuOptions(this) : [{content:"Inputs", has_submenu:!0, disabled:!0, callback:e.showMenuNodeOptionalInputs}, {content:"Outputs", has_submenu:!0, disabled:!0, callback:e.showMenuNodeOptionalOutputs}, null, {content:"Properties", has_submenu:!0, callback:e.onShowMenuNodeProperties}, null, {content:"Title", callback:e.onShowTitleEditor}, {content:"Mode", has_submenu:!0, callback:e.onMenuNodeMode}, {content:"Resize", callback:e.onResizeNode}, {content:"Collapse", callback:e.onMenuNodeCollapse}, - {content:"Pin", callback:e.onMenuNodePin}, {content:"Colors", has_submenu:!0, callback:e.onMenuNodeColors}, {content:"Shapes", has_submenu:!0, callback:e.onMenuNodeShapes}, null]; + c.prototype.getNodeMenuOptions = function(a) { + var b = a.getMenuOptions ? a.getMenuOptions(this) : [{content:"Inputs", has_submenu:!0, disabled:!0, callback:c.showMenuNodeOptionalInputs}, {content:"Outputs", has_submenu:!0, disabled:!0, callback:c.showMenuNodeOptionalOutputs}, null, {content:"Properties", has_submenu:!0, callback:c.onShowMenuNodeProperties}, null, {content:"Title", callback:c.onShowTitleEditor}, {content:"Mode", has_submenu:!0, callback:c.onMenuNodeMode}, {content:"Resize", callback:c.onResizeNode}, {content:"Collapse", callback:c.onMenuNodeCollapse}, + {content:"Pin", callback:c.onMenuNodePin}, {content:"Colors", has_submenu:!0, callback:c.onMenuNodeColors}, {content:"Shapes", has_submenu:!0, callback:c.onMenuNodeShapes}, null]; if (a.getExtraMenuOptions) { var d = a.getExtraMenuOptions(this); d && (d.push(null), b = d.concat(b)); } - !1 !== a.clonable && b.push({content:"Clone", callback:e.onMenuNodeClone}); - !1 !== a.removable && b.push(null, {content:"Remove", callback:e.onMenuNodeRemove}); + !1 !== a.clonable && b.push({content:"Clone", callback:c.onMenuNodeClone}); + !1 !== a.removable && b.push(null, {content:"Remove", callback:c.onMenuNodeRemove}); a.onGetInputs && (d = a.onGetInputs()) && d.length && (b[0].disabled = !1); a.onGetOutputs && (d = a.onGetOutputs()) && d.length && (b[1].disabled = !1); if (a.graph && a.graph.onGetNodeMenuOptions) { @@ -2597,48 +2743,48 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return b; }; - e.prototype.processContextMenu = function(a, b) { - var d = this, c = e.active_canvas.getCanvasWindow(), k = null, h = {event:b, callback:function(b, g, c) { + c.prototype.processContextMenu = function(a, b) { + var d = this, l = c.active_canvas.getCanvasWindow(), f = null, q = {event:b, callback:function(b, e, c) { if (b) { if ("Remove Slot" == b.content) { - var e = b.slot; - e.input ? a.removeInput(e.slot) : e.output && a.removeOutput(e.slot); + var l = b.slot; + l.input ? a.removeInput(l.slot) : l.output && a.removeOutput(l.slot); } else { if ("Rename Slot" == b.content) { - e = b.slot; - var f = d.createDialog("Name", g), k = f.querySelector("input"); - f.querySelector("button").addEventListener("click", function(b) { - if (k.value) { - if (b = e.input ? a.getInputInfo(e.slot) : a.getOutputInfo(e.slot)) { - b.label = k.value; + l = b.slot; + var n = d.createDialog("Name", e), f = n.querySelector("input"); + n.querySelector("button").addEventListener("click", function(b) { + if (f.value) { + if (b = l.input ? a.getInputInfo(l.slot) : a.getOutputInfo(l.slot)) { + b.label = f.value; } d.setDirty(!0); } - f.close(); + n.close(); }); } } } - }, node:a}, p = null; - a && (p = a.getSlotInPosition(b.canvasX, b.canvasY), e.active_node = a); - p ? (k = [], k.push(p.locked ? "Cannot remove" : {content:"Remove Slot", slot:p}), k.push({content:"Rename Slot", slot:p}), h.title = (p.input ? p.input.type : p.output.type) || "*", p.input && p.input.type == g.ACTION && (h.title = "Action"), p.output && p.output.type == g.EVENT && (h.title = "Event")) : k = a ? this.getNodeMenuOptions(a) : this.getCanvasMenuOptions(); - k && new g.ContextMenu(k, h, c); + }, node:a}, n = null; + a && (n = a.getSlotInPosition(b.canvasX, b.canvasY), c.active_node = a); + n ? (f = [], f.push(n.locked ? "Cannot remove" : {content:"Remove Slot", slot:n}), f.push({content:"Rename Slot", slot:n}), q.title = (n.input ? n.input.type : n.output.type) || "*", n.input && n.input.type == e.ACTION && (q.title = "Action"), n.output && n.output.type == e.EVENT && (q.title = "Event")) : f = a ? this.getNodeMenuOptions(a) : this.getCanvasMenuOptions(); + f && new e.ContextMenu(f, q, l); }; - this.CanvasRenderingContext2D && (CanvasRenderingContext2D.prototype.roundRect = function(a, b, d, g, c, e) { + this.CanvasRenderingContext2D && (CanvasRenderingContext2D.prototype.roundRect = function(a, b, d, e, c, l) { void 0 === c && (c = 5); - void 0 === e && (e = c); + void 0 === l && (l = c); this.beginPath(); this.moveTo(a + c, b); this.lineTo(a + d - c, b); this.quadraticCurveTo(a + d, b, a + d, b + c); - this.lineTo(a + d, b + g - e); - this.quadraticCurveTo(a + d, b + g, a + d - e, b + g); - this.lineTo(a + e, b + g); - this.quadraticCurveTo(a, b + g, a, b + g - e); + this.lineTo(a + d, b + e - l); + this.quadraticCurveTo(a + d, b + e, a + d - l, b + e); + this.lineTo(a + l, b + e); + this.quadraticCurveTo(a, b + e, a, b + e - l); this.lineTo(a, b + c); this.quadraticCurveTo(a, b, a + c, b); }); - g.compareObjects = function(a, b) { + e.compareObjects = function(a, b) { for (var d in a) { if (a[d] != b[d]) { return !1; @@ -2646,99 +2792,99 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return !0; }; - g.distance = p; - g.colorToString = function(a) { + e.distance = p; + e.colorToString = function(a) { return "rgba(" + Math.round(255 * a[0]).toFixed() + "," + Math.round(255 * a[1]).toFixed() + "," + Math.round(255 * a[2]).toFixed() + "," + (4 == a.length ? a[3].toFixed(2) : "1.0") + ")"; }; - g.isInsideRectangle = n; - g.growBounding = function(a, b, d) { + e.isInsideRectangle = t; + e.growBounding = function(a, b, d) { b < a[0] ? a[0] = b : b > a[2] && (a[2] = b); d < a[1] ? a[1] = d : d > a[3] && (a[3] = d); }; - g.isInsideBounding = function(a, b) { + e.isInsideBounding = function(a, b) { return a[0] < b[0][0] || a[1] < b[0][1] || a[0] > b[1][0] || a[1] > b[1][1] ? !1 : !0; }; - g.overlapBounding = u; - g.hex2num = function(a) { + e.overlapBounding = v; + e.hex2num = function(a) { "#" == a.charAt(0) && (a = a.slice(1)); a = a.toUpperCase(); - for (var b = Array(3), d = 0, g, c, e = 0; 6 > e; e += 2) { - g = "0123456789ABCDEF".indexOf(a.charAt(e)), c = "0123456789ABCDEF".indexOf(a.charAt(e + 1)), b[d] = 16 * g + c, d++; + for (var b = Array(3), d = 0, e, c, l = 0; 6 > l; l += 2) { + e = "0123456789ABCDEF".indexOf(a.charAt(l)), c = "0123456789ABCDEF".indexOf(a.charAt(l + 1)), b[d] = 16 * e + c, d++; } return b; }; - g.num2hex = function(a) { - for (var b = "#", d, g, c = 0; 3 > c; c++) { - d = a[c] / 16, g = a[c] % 16, b += "0123456789ABCDEF".charAt(d) + "0123456789ABCDEF".charAt(g); + e.num2hex = function(a) { + for (var b = "#", d, e, c = 0; 3 > c; c++) { + d = a[c] / 16, e = a[c] % 16, b += "0123456789ABCDEF".charAt(d) + "0123456789ABCDEF".charAt(e); } return b; }; - x.prototype.addItem = function(a, b, d) { - function g(a) { + w.prototype.addItem = function(a, b, d) { + function e(a) { var b = this.value; b && b.has_submenu && c.call(this, a); } function c(a) { - var b = this.value, g = !0; - e.current_submenu && e.current_submenu.close(a); + var b = this.value, e = !0; + l.current_submenu && l.current_submenu.close(a); if (d.callback) { - var c = d.callback.call(this, b, d, a, e, d.node); - !0 === c && (g = !1); + var c = d.callback.call(this, b, d, a, l, d.node); + !0 === c && (e = !1); } - if (b && (b.callback && !d.ignore_item_callbacks && !0 !== b.disabled && (c = b.callback.call(this, b, d, a, e, d.node), !0 === c && (g = !1)), b.submenu)) { + if (b && (b.callback && !d.ignore_item_callbacks && !0 !== b.disabled && (c = b.callback.call(this, b, d, a, l, d.node), !0 === c && (e = !1)), b.submenu)) { if (!b.submenu.options) { throw "ContextMenu submenu needs options"; } - new e.constructor(b.submenu.options, {callback:b.submenu.callback, event:a, parentMenu:e, ignore_item_callbacks:b.submenu.ignore_item_callbacks, title:b.submenu.title, autoopen:d.autoopen}); - g = !1; + new l.constructor(b.submenu.options, {callback:b.submenu.callback, event:a, parentMenu:l, ignore_item_callbacks:b.submenu.ignore_item_callbacks, title:b.submenu.title, autoopen:d.autoopen}); + e = !1; } - g && !e.lock && e.close(); + e && !l.lock && l.close(); } - var e = this; + var l = this; d = d || {}; - var k = document.createElement("div"); - k.className = "litemenu-entry submenu"; - var l = !1; + var n = document.createElement("div"); + n.className = "litemenu-entry submenu"; + var f = !1; if (null === b) { - k.classList.add("separator"); + n.classList.add("separator"); } else { - k.innerHTML = b && b.title ? b.title : a; - if (k.value = b) { - b.disabled && (l = !0, k.classList.add("disabled")), (b.submenu || b.has_submenu) && k.classList.add("has_submenu"); + n.innerHTML = b && b.title ? b.title : a; + if (n.value = b) { + b.disabled && (f = !0, n.classList.add("disabled")), (b.submenu || b.has_submenu) && n.classList.add("has_submenu"); } - "function" == typeof b ? (k.dataset.value = a, k.onclick_callback = b) : k.dataset.value = b; - b.className && (k.className += " " + b.className); + "function" == typeof b ? (n.dataset.value = a, n.onclick_callback = b) : n.dataset.value = b; + b.className && (n.className += " " + b.className); } - this.root.appendChild(k); - l || k.addEventListener("click", c); - d.autoopen && k.addEventListener("mouseenter", g); - return k; + this.root.appendChild(n); + f || n.addEventListener("click", c); + d.autoopen && n.addEventListener("mouseenter", e); + return n; }; - x.prototype.close = function(a, b) { + w.prototype.close = function(a, b) { this.root.parentNode && this.root.parentNode.removeChild(this.root); - this.parentMenu && !b && (this.parentMenu.lock = !1, this.parentMenu.current_submenu = null, void 0 === a ? this.parentMenu.close() : a && !x.isCursorOverElement(a, this.parentMenu.root) && x.trigger(this.parentMenu.root, "mouseleave", a)); + this.parentMenu && !b && (this.parentMenu.lock = !1, this.parentMenu.current_submenu = null, void 0 === a ? this.parentMenu.close() : a && !w.isCursorOverElement(a, this.parentMenu.root) && w.trigger(this.parentMenu.root, "mouseleave", a)); this.current_submenu && this.current_submenu.close(a, !0); }; - x.trigger = function(a, b, d, g) { + w.trigger = function(a, b, d, e) { var c = document.createEvent("CustomEvent"); c.initCustomEvent(b, !0, !0, d); - c.srcElement = g; + c.srcElement = e; a.dispatchEvent ? a.dispatchEvent(c) : a.__events && a.__events.dispatchEvent(c); return c; }; - x.prototype.getTopMenu = function() { + w.prototype.getTopMenu = function() { return this.options.parentMenu ? this.options.parentMenu.getTopMenu() : this; }; - x.prototype.getFirstEvent = function() { + w.prototype.getFirstEvent = function() { return this.options.parentMenu ? this.options.parentMenu.getFirstEvent() : this.options.event; }; - x.isCursorOverElement = function(a, b) { + w.isCursorOverElement = function(a, b) { var d = a.pageX; a = a.pageY; return (b = b.getBoundingClientRect()) ? a > b.top && a < b.top + b.height && d > b.left && d < b.left + b.width ? !0 : !1 : !1; }; - g.ContextMenu = x; - g.closeAllContextMenus = function(a) { + e.ContextMenu = w; + e.closeAllContextMenus = function(a) { a = a || window; a = a.document.querySelectorAll(".litecontextmenu"); if (a.length) { @@ -2750,7 +2896,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - g.extendClass = function(a, b) { + e.extendClass = function(a, b) { for (var d in b) { a.hasOwnProperty(d) || (a[d] = b[d]); } @@ -2760,17 +2906,20 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; + e.getParameterNames = function(a) { + return (a + "").replace(/[/][/].*$/mg, "").replace(/\s+/g, "").replace(/[/][*][^/*]*[*][/]/g, "").split("){", 1)[0].replace(/^[^(]*[(]/, "").replace(/=[^,]+/g, "").split(",").filter(Boolean); + }; "undefined" == typeof window || window.requestAnimationFrame || (window.requestAnimationFrame = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(a) { window.setTimeout(a, 1000 / 60); }); })(this); "undefined" != typeof exports && (exports.LiteGraph = this.LiteGraph); -(function(v) { - function c() { +(function(u) { + function f() { this.addOutput("in ms", "number"); this.addOutput("in sec", "number"); } - function h() { + function k() { this.size = [120, 60]; this.subgraph = new LGraph; this.subgraph._subgraph_node = this; @@ -2783,7 +2932,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); this.bgcolor = "#663"; } - function e() { + function c() { var a = "input_" + (1000 * Math.random()).toFixed(); this.addOutput(a, null); this.properties = {name:a, type:null}; @@ -2792,8 +2941,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return a; }, set:function(d) { if ("" != d) { - var g = b.getOutputInfo(0); - g.name != d && (g.name = d, b.graph && b.graph.renameGlobalInput(a, d), a = d); + var e = b.getOutputInfo(0); + e.name != d && (e.name = d, b.graph && b.graph.renameGlobalInput(a, d), a = d); } }, enumerable:!0}); Object.defineProperty(this.properties, "type", {get:function() { @@ -2812,8 +2961,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return a; }, set:function(d) { if ("" != d) { - var g = b.getInputInfo(0); - g.name != d && (g.name = d, b.graph && b.graph.renameGlobalOutput(a, d), a = d); + var e = b.getInputInfo(0); + e.name != d && (e.name = d, b.graph && b.graph.renameGlobalOutput(a, d), a = d); } }, enumerable:!0}); Object.defineProperty(this.properties, "type", {get:function() { @@ -2823,25 +2972,30 @@ $jscomp.polyfill("Array.prototype.values", function(v) { b.graph && b.graph.changeGlobalInputType(a, b.inputs[0].type); }, enumerable:!0}); } - function n() { + function t() { this.addOutput("value", "number"); this.addProperty("value", 1.0); this.editable = {property:"value", type:"number"}; } - function u() { + function v() { this.size = [60, 20]; this.addInput("value", 0, {label:""}); this.addOutput("value", 0, {label:""}); this.addProperty("value", ""); } - function x() { - this.mode = k.ON_EVENT; + function w() { + this.addInput("in", 0); + this.addOutput("out", 0); + this.size = [40, 20]; + } + function e() { + this.mode = l.ON_EVENT; this.size = [60, 20]; this.addProperty("msg", ""); - this.addInput("log", k.EVENT); + this.addInput("log", l.EVENT); this.addInput("msg", 0); } - function g() { + function q() { this.size = [60, 20]; this.addProperty("onExecute", ""); this.addInput("in", ""); @@ -2850,45 +3004,45 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addOutput("out2", ""); this._func = null; } - var k = v.LiteGraph; - c.title = "Time"; - c.desc = "Time"; - c.prototype.onExecute = function() { + var l = u.LiteGraph; + f.title = "Time"; + f.desc = "Time"; + f.prototype.onExecute = function() { this.setOutputData(0, 1000 * this.graph.globaltime); this.setOutputData(1, this.graph.globaltime); }; - k.registerNodeType("basic/time", c); - h.title = "Subgraph"; - h.desc = "Graph inside a node"; - h.prototype.onSubgraphNewGlobalInput = function(a, b) { + l.registerNodeType("basic/time", f); + k.title = "Subgraph"; + k.desc = "Graph inside a node"; + k.prototype.onSubgraphNewGlobalInput = function(a, b) { this.addInput(a, b); }; - h.prototype.onSubgraphRenamedGlobalInput = function(a, b) { + k.prototype.onSubgraphRenamedGlobalInput = function(a, b) { a = this.findInputSlot(a); -1 != a && (this.getInputInfo(a).name = b); }; - h.prototype.onSubgraphTypeChangeGlobalInput = function(a, b) { + k.prototype.onSubgraphTypeChangeGlobalInput = function(a, b) { a = this.findInputSlot(a); -1 != a && (this.getInputInfo(a).type = b); }; - h.prototype.onSubgraphNewGlobalOutput = function(a, b) { + k.prototype.onSubgraphNewGlobalOutput = function(a, b) { this.addOutput(a, b); }; - h.prototype.onSubgraphRenamedGlobalOutput = function(a, b) { + k.prototype.onSubgraphRenamedGlobalOutput = function(a, b) { a = this.findOutputSlot(a); -1 != a && (this.getOutputInfo(a).name = b); }; - h.prototype.onSubgraphTypeChangeGlobalOutput = function(a, b) { + k.prototype.onSubgraphTypeChangeGlobalOutput = function(a, b) { a = this.findOutputSlot(a); -1 != a && (this.getOutputInfo(a).type = b); }; - h.prototype.getExtraMenuOptions = function(a) { + k.prototype.getExtraMenuOptions = function(a) { var b = this; return [{content:"Open", callback:function() { a.openSubgraph(b.subgraph); }}]; }; - h.prototype.onExecute = function() { + k.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { var b = this.inputs[a], d = this.getInputData(a); @@ -2902,33 +3056,33 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - h.prototype.configure = function(a) { + k.prototype.configure = function(a) { LGraphNode.prototype.configure.call(this, a); }; - h.prototype.serialize = function() { + k.prototype.serialize = function() { var a = LGraphNode.prototype.serialize.call(this); a.subgraph = this.subgraph.serialize(); return a; }; - h.prototype.clone = function() { - var a = k.createNode(this.type), b = this.serialize(); + k.prototype.clone = function() { + var a = l.createNode(this.type), b = this.serialize(); delete b.id; delete b.inputs; delete b.outputs; a.configure(b); return a; }; - k.registerNodeType("graph/subgraph", h); - e.title = "Input"; - e.desc = "Input of the graph"; - e.prototype.onAdded = function() { + l.registerNodeType("graph/subgraph", k); + c.title = "Input"; + c.desc = "Input of the graph"; + c.prototype.onAdded = function() { this.graph.addGlobalInput(this.properties.name, this.properties.type); }; - e.prototype.onExecute = function() { + c.prototype.onExecute = function() { var a = this.graph.global_inputs[this.properties.name]; a && this.setOutputData(0, a.value); }; - k.registerNodeType("graph/input", e); + l.registerNodeType("graph/input", c); p.title = "Ouput"; p.desc = "Output of the graph"; p.prototype.onAdded = function() { @@ -2937,53 +3091,59 @@ $jscomp.polyfill("Array.prototype.values", function(v) { p.prototype.onExecute = function() { this.graph.setGlobalOutputData(this.properties.name, this.getInputData(0)); }; - k.registerNodeType("graph/output", p); - n.title = "Const"; - n.desc = "Constant value"; - n.prototype.setValue = function(a) { + l.registerNodeType("graph/output", p); + t.title = "Const"; + t.desc = "Constant value"; + t.prototype.setValue = function(a) { "string" == typeof a && (a = parseFloat(a)); this.properties.value = a; this.setDirtyCanvas(!0); }; - n.prototype.onExecute = function() { + t.prototype.onExecute = function() { this.setOutputData(0, parseFloat(this.properties.value)); }; - n.prototype.onDrawBackground = function(a) { + t.prototype.onDrawBackground = function(a) { this.outputs[0].label = this.properties.value.toFixed(3); }; - n.prototype.onWidget = function(a, b) { + t.prototype.onWidget = function(a, b) { "value" == b.name && this.setValue(b.value); }; - k.registerNodeType("basic/const", n); - u.title = "Watch"; - u.desc = "Show value of input"; - u.prototype.onExecute = function() { + l.registerNodeType("basic/const", t); + v.title = "Watch"; + v.desc = "Show value of input"; + v.prototype.onExecute = function() { this.properties.value = this.getInputData(0); this.setOutputData(0, this.properties.value); }; - u.prototype.onDrawBackground = function(a) { + v.prototype.onDrawBackground = function(a) { this.inputs[0] && null != this.properties.value && (this.properties.value.constructor === Number ? this.inputs[0].label = this.properties.value.toFixed(3) : ((a = this.properties.value) && a.length && (a = Array.prototype.slice.call(a).join(",")), this.inputs[0].label = a)); }; - k.registerNodeType("basic/watch", u); - x.title = "Console"; - x.desc = "Show value inside the console"; - x.prototype.onAction = function(a, b) { + l.registerNodeType("basic/watch", v); + w.title = "Pass"; + w.desc = "Allows to connect different types"; + w.prototype.onExecute = function() { + this.setOutputData(0, this.getInputData(0)); + }; + l.registerNodeType("basic/pass", w); + e.title = "Console"; + e.desc = "Show value inside the console"; + e.prototype.onAction = function(a, b) { "log" == a ? console.log(b) : "warn" == a ? console.warn(b) : "error" == a && console.error(b); }; - x.prototype.onExecute = function() { + e.prototype.onExecute = function() { var a = this.getInputData(1); null !== a && (this.properties.msg = a); console.log(a); }; - x.prototype.onGetInputs = function() { - return [["log", k.ACTION], ["warn", k.ACTION], ["error", k.ACTION]]; + e.prototype.onGetInputs = function() { + return [["log", l.ACTION], ["warn", l.ACTION], ["error", l.ACTION]]; }; - k.registerNodeType("basic/console", x); - g.title = "Script"; - g.desc = "executes a code"; - g.widgets_info = {onExecute:{type:"code"}}; - g.prototype.onPropertyChanged = function(a, b) { - if ("onExecute" == a && k.allow_scripts) { + l.registerNodeType("basic/console", e); + q.title = "Script"; + q.desc = "executes a code"; + q.widgets_info = {onExecute:{type:"code"}}; + q.prototype.onPropertyChanged = function(a, b) { + if ("onExecute" == a && l.allow_scripts) { this._func = null; try { this._func = new Function(b); @@ -2992,7 +3152,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - g.prototype.onExecute = function() { + q.prototype.onExecute = function() { if (this._func) { try { this._func.call(this); @@ -3001,75 +3161,75 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - k.registerNodeType("basic/script", g); + l.registerNodeType("basic/script", q); })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.size = [60, 20]; this.addInput("event", p.ACTION); } - function h() { + function k() { this.size = [60, 20]; this.addInput("event", p.ACTION); this.addOutput("event", p.EVENT); this.properties = {equal_to:"", has_property:"", property_equal_to:""}; } - function e() { + function c() { this.size = [60, 20]; this.addProperty("time", 1000); this.addInput("event", p.ACTION); this.addOutput("on_time", p.EVENT); this._pending = []; } - var p = v.LiteGraph; - c.title = "Log Event"; - c.desc = "Log event in console"; - c.prototype.onAction = function(c, e) { - console.log(c, e); + var p = u.LiteGraph; + f.title = "Log Event"; + f.desc = "Log event in console"; + f.prototype.onAction = function(c, f) { + console.log(c, f); }; - p.registerNodeType("events/log", c); - h.title = "Filter Event"; - h.desc = "Blocks events that do not match the filter"; - h.prototype.onAction = function(c, e) { - if (null != e && (!this.properties.equal_to || this.properties.equal_to == e)) { - if (this.properties.has_property && (c = e[this.properties.has_property], null == c || this.properties.property_equal_to && this.properties.property_equal_to != c)) { + p.registerNodeType("events/log", f); + k.title = "Filter Event"; + k.desc = "Blocks events that do not match the filter"; + k.prototype.onAction = function(c, f) { + if (null != f && (!this.properties.equal_to || this.properties.equal_to == f)) { + if (this.properties.has_property && (c = f[this.properties.has_property], null == c || this.properties.property_equal_to && this.properties.property_equal_to != c)) { return; } - this.triggerSlot(0, e); + this.triggerSlot(0, f); } }; - p.registerNodeType("events/filter", h); - e.title = "Delay"; - e.desc = "Delays one event"; - e.prototype.onAction = function(c, e) { - this._pending.push([this.properties.time, e]); + p.registerNodeType("events/filter", k); + c.title = "Delay"; + c.desc = "Delays one event"; + c.prototype.onAction = function(c, f) { + this._pending.push([this.properties.time, f]); }; - e.prototype.onExecute = function() { - for (var c = 1000 * this.graph.elapsed_time, e = 0; e < this._pending.length; ++e) { - var h = this._pending[e]; - h[0] -= c; - 0 < h[0] || (this._pending.splice(e, 1), --e, this.trigger(null, h[1])); + c.prototype.onExecute = function() { + for (var c = 1000 * this.graph.elapsed_time, f = 0; f < this._pending.length; ++f) { + var p = this._pending[f]; + p[0] -= c; + 0 < p[0] || (this._pending.splice(f, 1), --f, this.trigger(null, p[1])); } }; - e.prototype.onGetInputs = function() { + c.prototype.onGetInputs = function() { return [["event", p.ACTION]]; }; - p.registerNodeType("events/delay", e); + p.registerNodeType("events/delay", c); })(this); -(function(v) { - function c() { - this.addOutput("clicked", x.EVENT); +(function(u) { + function f() { + this.addOutput("clicked", w.EVENT); this.addProperty("text", ""); this.addProperty("font", "40px Arial"); this.addProperty("message", ""); this.size = [64, 84]; } - function h() { + function k() { this.addOutput("", "number"); this.size = [64, 84]; this.properties = {min:0, max:1, value:0.5, wcolor:"#7AF", size:50}; } - function e() { + function c() { this.size = [160, 26]; this.addOutput("", "number"); this.properties = {wcolor:"#7AF", min:0, max:1, value:0.5}; @@ -3079,125 +3239,125 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addInput("", "number"); this.properties = {min:0, max:1, value:0, wcolor:"#AAF"}; } - function n() { + function t() { this.addInputs("", 0); this.properties = {value:"...", font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1}; } - function u() { + function v() { this.size = [200, 100]; this.properties = {borderColor:"#ffffff", bgcolorTop:"#f0f0f0", bgcolorBottom:"#e0e0e0", shadowSize:2, borderRadius:3}; } - var x = v.LiteGraph; - c.title = "Button"; - c.desc = "Triggers an event"; - c.prototype.onDrawForeground = function(g) { - !this.flags.collapsed && (g.fillStyle = "black", g.fillRect(1, 1, this.size[0] - 3, this.size[1] - 3), g.fillStyle = "#AAF", g.fillRect(0, 0, this.size[0] - 3, this.size[1] - 3), g.fillStyle = this.clicked ? "white" : this.mouseOver ? "#668" : "#334", g.fillRect(1, 1, this.size[0] - 4, this.size[1] - 4), this.properties.text || 0 === this.properties.text) && (g.textAlign = "center", g.fillStyle = this.clicked ? "black" : "white", this.properties.font && (g.font = this.properties.font), g.fillText(this.properties.text, - 0.5 * this.size[0], 0.85 * this.size[1]), g.textAlign = "left"); + var w = u.LiteGraph; + f.title = "Button"; + f.desc = "Triggers an event"; + f.prototype.onDrawForeground = function(e) { + !this.flags.collapsed && (e.fillStyle = "black", e.fillRect(1, 1, this.size[0] - 3, this.size[1] - 3), e.fillStyle = "#AAF", e.fillRect(0, 0, this.size[0] - 3, this.size[1] - 3), e.fillStyle = this.clicked ? "white" : this.mouseOver ? "#668" : "#334", e.fillRect(1, 1, this.size[0] - 4, this.size[1] - 4), this.properties.text || 0 === this.properties.text) && (e.textAlign = "center", e.fillStyle = this.clicked ? "black" : "white", this.properties.font && (e.font = this.properties.font), e.fillText(this.properties.text, + 0.5 * this.size[0], 0.85 * this.size[1]), e.textAlign = "left"); }; - c.prototype.onMouseDown = function(g, c) { + f.prototype.onMouseDown = function(e, c) { if (1 < c[0] && 1 < c[1] && c[0] < this.size[0] - 2 && c[1] < this.size[1] - 2) { return this.clicked = !0, this.trigger("clicked", this.properties.message), !0; } }; - c.prototype.onMouseUp = function(c) { + f.prototype.onMouseUp = function(e) { this.clicked = !1; }; - x.registerNodeType("widget/button", c); - h.title = "Knob"; - h.desc = "Circular controller"; - h.widgets = [{name:"increase", text:"+", type:"minibutton"}, {name:"decrease", text:"-", type:"minibutton"}]; - h.prototype.onAdded = function() { + w.registerNodeType("widget/button", f); + k.title = "Knob"; + k.desc = "Circular controller"; + k.widgets = [{name:"increase", text:"+", type:"minibutton"}, {name:"decrease", text:"-", type:"minibutton"}]; + k.prototype.onAdded = function() { this.value = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); this.imgbg = this.loadImage("imgs/knob_bg.png"); this.imgfg = this.loadImage("imgs/knob_fg.png"); }; - h.prototype.onDrawImageKnob = function(c) { + k.prototype.onDrawImageKnob = function(e) { if (this.imgfg && this.imgfg.width) { - var g = 0.5 * this.imgbg.width, a = this.size[0] / this.imgfg.width; - c.save(); - c.translate(0, 20); - c.scale(a, a); - c.drawImage(this.imgbg, 0, 0); - c.translate(g, g); - c.rotate(2 * this.value * Math.PI * 6 / 8 + 10 * Math.PI / 8); - c.translate(-g, -g); - c.drawImage(this.imgfg, 0, 0); - c.restore(); - this.title && (c.font = "bold 16px Criticized,Tahoma", c.fillStyle = "rgba(100,100,100,0.8)", c.textAlign = "center", c.fillText(this.title.toUpperCase(), 0.5 * this.size[0], 18), c.textAlign = "left"); + var c = 0.5 * this.imgbg.width, l = this.size[0] / this.imgfg.width; + e.save(); + e.translate(0, 20); + e.scale(l, l); + e.drawImage(this.imgbg, 0, 0); + e.translate(c, c); + e.rotate(2 * this.value * Math.PI * 6 / 8 + 10 * Math.PI / 8); + e.translate(-c, -c); + e.drawImage(this.imgfg, 0, 0); + e.restore(); + this.title && (e.font = "bold 16px Criticized,Tahoma", e.fillStyle = "rgba(100,100,100,0.8)", e.textAlign = "center", e.fillText(this.title.toUpperCase(), 0.5 * this.size[0], 18), e.textAlign = "left"); } }; - h.prototype.onDrawVectorKnob = function(c) { + k.prototype.onDrawVectorKnob = function(e) { if (this.imgfg && this.imgfg.width) { - c.lineWidth = 1; - c.strokeStyle = this.mouseOver ? "#FFF" : "#AAA"; - c.fillStyle = "#000"; - c.beginPath(); - c.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.5 * this.properties.size, 0, 2 * Math.PI, !0); - c.stroke(); - 0 < this.value && (c.strokeStyle = this.properties.wcolor, c.lineWidth = 0.2 * this.properties.size, c.beginPath(), c.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.35 * this.properties.size, -0.5 * Math.PI + 2 * Math.PI * this.value, -0.5 * Math.PI, !0), c.stroke(), c.lineWidth = 1); - c.font = 0.2 * this.properties.size + "px Arial"; - c.fillStyle = "#AAA"; - c.textAlign = "center"; - var g = this.properties.value; - "number" == typeof g && (g = g.toFixed(2)); - c.fillText(g, 0.5 * this.size[0], 0.65 * this.size[1]); - c.textAlign = "left"; + e.lineWidth = 1; + e.strokeStyle = this.mouseOver ? "#FFF" : "#AAA"; + e.fillStyle = "#000"; + e.beginPath(); + e.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.5 * this.properties.size, 0, 2 * Math.PI, !0); + e.stroke(); + 0 < this.value && (e.strokeStyle = this.properties.wcolor, e.lineWidth = 0.2 * this.properties.size, e.beginPath(), e.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.35 * this.properties.size, -0.5 * Math.PI + 2 * Math.PI * this.value, -0.5 * Math.PI, !0), e.stroke(), e.lineWidth = 1); + e.font = 0.2 * this.properties.size + "px Arial"; + e.fillStyle = "#AAA"; + e.textAlign = "center"; + var c = this.properties.value; + "number" == typeof c && (c = c.toFixed(2)); + e.fillText(c, 0.5 * this.size[0], 0.65 * this.size[1]); + e.textAlign = "left"; } }; - h.prototype.onDrawForeground = function(c) { - this.onDrawImageKnob(c); + k.prototype.onDrawForeground = function(e) { + this.onDrawImageKnob(e); }; - h.prototype.onExecute = function() { + k.prototype.onExecute = function() { this.setOutputData(0, this.properties.value); - this.boxcolor = x.colorToString([this.value, this.value, this.value]); + this.boxcolor = w.colorToString([this.value, this.value, this.value]); }; - h.prototype.onMouseDown = function(c) { + k.prototype.onMouseDown = function(e) { if (this.imgfg && this.imgfg.width) { this.center = [0.5 * this.size[0], 0.5 * this.size[1] + 20]; this.radius = 0.5 * this.size[0]; - if (20 > c.canvasY - this.pos[1] || x.distance([c.canvasX, c.canvasY], [this.pos[0] + this.center[0], this.pos[1] + this.center[1]]) > this.radius) { + if (20 > e.canvasY - this.pos[1] || w.distance([e.canvasX, e.canvasY], [this.pos[0] + this.center[0], this.pos[1] + this.center[1]]) > this.radius) { return !1; } - this.oldmouse = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + this.oldmouse = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; this.captureInput(!0); return !0; } }; - h.prototype.onMouseMove = function(c) { + k.prototype.onMouseMove = function(e) { if (this.oldmouse) { - c = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; - var e = this.value; - e -= 0.01 * (c[1] - this.oldmouse[1]); - 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); - this.value = e; + e = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; + var c = this.value; + c -= 0.01 * (e[1] - this.oldmouse[1]); + 1.0 < c ? c = 1.0 : 0.0 > c && (c = 0.0); + this.value = c; this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; - this.oldmouse = c; + this.oldmouse = e; this.setDirtyCanvas(!0); } }; - h.prototype.onMouseUp = function(c) { + k.prototype.onMouseUp = function(e) { this.oldmouse && (this.oldmouse = null, this.captureInput(!1)); }; - h.prototype.onMouseLeave = function(c) { + k.prototype.onMouseLeave = function(e) { }; - h.prototype.onWidget = function(c, e) { - if ("increase" == e.name) { + k.prototype.onWidget = function(e, c) { + if ("increase" == c.name) { this.onPropertyChanged("size", this.properties.size + 10); } else { - if ("decrease" == e.name) { + if ("decrease" == c.name) { this.onPropertyChanged("size", this.properties.size - 10); } } }; - h.prototype.onPropertyChanged = function(c, e) { - if ("wcolor" == c) { - this.properties[c] = e; + k.prototype.onPropertyChanged = function(e, c) { + if ("wcolor" == e) { + this.properties[e] = c; } else { - if ("size" == c) { - e = parseInt(e), this.properties[c] = e, this.size = [e + 4, e + 24], this.setDirtyCanvas(!0, !0); + if ("size" == e) { + c = parseInt(c), this.properties[e] = c, this.size = [c + 4, c + 24], this.setDirtyCanvas(!0, !0); } else { - if ("min" == c || "max" == c || "value" == c) { - this.properties[c] = parseFloat(e); + if ("min" == e || "max" == e || "value" == e) { + this.properties[e] = parseFloat(c); } else { return !1; } @@ -3205,144 +3365,144 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return !0; }; - x.registerNodeType("widget/knob", h); - e.title = "H.Slider"; - e.desc = "Linear slider controller"; - e.prototype.onInit = function() { + w.registerNodeType("widget/knob", k); + c.title = "H.Slider"; + c.desc = "Linear slider controller"; + c.prototype.onAdded = function() { this.value = 0.5; this.imgfg = this.loadImage("imgs/slider_fg.png"); }; - e.prototype.onDrawVectorial = function(c) { - this.imgfg && this.imgfg.width && (c.lineWidth = 1, c.strokeStyle = this.mouseOver ? "#FFF" : "#AAA", c.fillStyle = "#000", c.beginPath(), c.rect(2, 0, this.size[0] - 4, 20), c.stroke(), c.fillStyle = this.properties.wcolor, c.beginPath(), c.rect(2 + (this.size[0] - 4 - 20) * this.value, 0, 20, 20), c.fill()); + c.prototype.onDrawVectorial = function(e) { + this.imgfg && this.imgfg.width && (e.lineWidth = 1, e.strokeStyle = this.mouseOver ? "#FFF" : "#AAA", e.fillStyle = "#000", e.beginPath(), e.rect(2, 0, this.size[0] - 4, 20), e.stroke(), e.fillStyle = this.properties.wcolor, e.beginPath(), e.rect(2 + (this.size[0] - 4 - 20) * this.value, 0, 20, 20), e.fill()); }; - e.prototype.onDrawImage = function(c) { - this.imgfg && this.imgfg.width && (c.lineWidth = 1, c.fillStyle = "#000", c.fillRect(2, 9, this.size[0] - 4, 2), c.strokeStyle = "#333", c.beginPath(), c.moveTo(2, 9), c.lineTo(this.size[0] - 4, 9), c.stroke(), c.strokeStyle = "#AAA", c.beginPath(), c.moveTo(2, 11), c.lineTo(this.size[0] - 4, 11), c.stroke(), c.drawImage(this.imgfg, 2 + (this.size[0] - 4) * this.value - 0.5 * this.imgfg.width, 0.5 * -this.imgfg.height + 10)); + c.prototype.onDrawImage = function(e) { + this.imgfg && this.imgfg.width && (e.lineWidth = 1, e.fillStyle = "#000", e.fillRect(2, 9, this.size[0] - 4, 2), e.strokeStyle = "#333", e.beginPath(), e.moveTo(2, 9), e.lineTo(this.size[0] - 4, 9), e.stroke(), e.strokeStyle = "#AAA", e.beginPath(), e.moveTo(2, 11), e.lineTo(this.size[0] - 4, 11), e.stroke(), e.drawImage(this.imgfg, 2 + (this.size[0] - 4) * this.value - 0.5 * this.imgfg.width, 0.5 * -this.imgfg.height + 10)); }; - e.prototype.onDrawForeground = function(c) { - this.onDrawImage(c); + c.prototype.onDrawForeground = function(e) { + this.onDrawImage(e); }; - e.prototype.onExecute = function() { + c.prototype.onExecute = function() { this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; this.setOutputData(0, this.properties.value); - this.boxcolor = x.colorToString([this.value, this.value, this.value]); + this.boxcolor = w.colorToString([this.value, this.value, this.value]); }; - e.prototype.onMouseDown = function(c) { - if (0 > c.canvasY - this.pos[1]) { + c.prototype.onMouseDown = function(e) { + if (0 > e.canvasY - this.pos[1]) { return !1; } - this.oldmouse = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; + this.oldmouse = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; this.captureInput(!0); return !0; }; - e.prototype.onMouseMove = function(c) { + c.prototype.onMouseMove = function(e) { if (this.oldmouse) { - c = [c.canvasX - this.pos[0], c.canvasY - this.pos[1]]; - var e = this.value; - e += (c[0] - this.oldmouse[0]) / this.size[0]; - 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); - this.value = e; - this.oldmouse = c; + e = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; + var c = this.value; + c += (e[0] - this.oldmouse[0]) / this.size[0]; + 1.0 < c ? c = 1.0 : 0.0 > c && (c = 0.0); + this.value = c; + this.oldmouse = e; this.setDirtyCanvas(!0); } }; - e.prototype.onMouseUp = function(c) { + c.prototype.onMouseUp = function(e) { this.oldmouse = null; this.captureInput(!1); }; - e.prototype.onMouseLeave = function(c) { + c.prototype.onMouseLeave = function(e) { }; - e.prototype.onPropertyChanged = function(c, e) { - if ("wcolor" == c) { - this.properties[c] = e; + c.prototype.onPropertyChanged = function(e, c) { + if ("wcolor" == e) { + this.properties[e] = c; } else { return !1; } return !0; }; - x.registerNodeType("widget/hslider", e); + w.registerNodeType("widget/hslider", c); p.title = "Progress"; p.desc = "Shows data in linear progress"; p.prototype.onExecute = function() { - var c = this.getInputData(0); - void 0 != c && (this.properties.value = c); + var e = this.getInputData(0); + void 0 != e && (this.properties.value = e); }; - p.prototype.onDrawForeground = function(c) { - c.lineWidth = 1; - c.fillStyle = this.properties.wcolor; - var e = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); - e = Math.min(1, e); - e = Math.max(0, e); - c.fillRect(2, 2, (this.size[0] - 4) * e, this.size[1] - 4); + p.prototype.onDrawForeground = function(e) { + e.lineWidth = 1; + e.fillStyle = this.properties.wcolor; + var c = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + c = Math.min(1, c); + c = Math.max(0, c); + e.fillRect(2, 2, (this.size[0] - 4) * c, this.size[1] - 4); }; - x.registerNodeType("widget/progress", p); - n.title = "Text"; - n.desc = "Shows the input value"; - n.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"led_text", text:"LED", type:"minibutton"}, {name:"normal_text", text:"Normal", type:"minibutton"}]; - n.prototype.onDrawForeground = function(c) { - c.fillStyle = this.properties.color; - var e = this.properties.value; - this.properties.glowSize ? (c.shadowColor = this.properties.color, c.shadowOffsetX = 0, c.shadowOffsetY = 0, c.shadowBlur = this.properties.glowSize) : c.shadowColor = "transparent"; - var a = this.properties.fontsize; - c.textAlign = this.properties.align; - c.font = a.toString() + "px " + this.properties.font; - this.str = "number" == typeof e ? e.toFixed(this.properties.decimals) : e; + w.registerNodeType("widget/progress", p); + t.title = "Text"; + t.desc = "Shows the input value"; + t.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"led_text", text:"LED", type:"minibutton"}, {name:"normal_text", text:"Normal", type:"minibutton"}]; + t.prototype.onDrawForeground = function(e) { + e.fillStyle = this.properties.color; + var c = this.properties.value; + this.properties.glowSize ? (e.shadowColor = this.properties.color, e.shadowOffsetX = 0, e.shadowOffsetY = 0, e.shadowBlur = this.properties.glowSize) : e.shadowColor = "transparent"; + var l = this.properties.fontsize; + e.textAlign = this.properties.align; + e.font = l.toString() + "px " + this.properties.font; + this.str = "number" == typeof c ? c.toFixed(this.properties.decimals) : c; if ("string" == typeof this.str) { - e = this.str.split("\\n"); - for (var b in e) { - c.fillText(e[b], "left" == this.properties.align ? 15 : this.size[0] - 15, -0.15 * a + a * (parseInt(b) + 1)); + c = this.str.split("\\n"); + for (var a in c) { + e.fillText(c[a], "left" == this.properties.align ? 15 : this.size[0] - 15, -0.15 * l + l * (parseInt(a) + 1)); } } - c.shadowColor = "transparent"; - this.last_ctx = c; - c.textAlign = "left"; + e.shadowColor = "transparent"; + this.last_ctx = e; + e.textAlign = "left"; }; - n.prototype.onExecute = function() { - var c = this.getInputData(0); - null != c && (this.properties.value = c); + t.prototype.onExecute = function() { + var e = this.getInputData(0); + null != e && (this.properties.value = e); }; - n.prototype.resize = function() { + t.prototype.resize = function() { if (this.last_ctx) { - var c = this.str.split("\\n"); + var e = this.str.split("\\n"); this.last_ctx.font = this.properties.fontsize + "px " + this.properties.font; - var e = 0, a; - for (a in c) { - var b = this.last_ctx.measureText(c[a]).width; - e < b && (e = b); + var c = 0, l; + for (l in e) { + var a = this.last_ctx.measureText(e[l]).width; + c < a && (c = a); } - this.size[0] = e + 20; - this.size[1] = 4 + c.length * this.properties.fontsize; + this.size[0] = c + 20; + this.size[1] = 4 + e.length * this.properties.fontsize; this.setDirtyCanvas(!0); } }; - n.prototype.onWidget = function(c, e) { - "resize" == e.name ? this.resize() : "led_text" == e.name ? (this.properties.font = "Digital", this.properties.glowSize = 4, this.setDirtyCanvas(!0)) : "normal_text" == e.name && (this.properties.font = "Arial", this.setDirtyCanvas(!0)); + t.prototype.onWidget = function(c, f) { + "resize" == f.name ? this.resize() : "led_text" == f.name ? (this.properties.font = "Digital", this.properties.glowSize = 4, this.setDirtyCanvas(!0)) : "normal_text" == f.name && (this.properties.font = "Arial", this.setDirtyCanvas(!0)); }; - n.prototype.onPropertyChanged = function(c, e) { - this.properties[c] = e; - this.str = "number" == typeof e ? e.toFixed(3) : e; + t.prototype.onPropertyChanged = function(c, f) { + this.properties[c] = f; + this.str = "number" == typeof f ? f.toFixed(3) : f; return !0; }; - x.registerNodeType("widget/text", n); - u.title = "Panel"; - u.desc = "Non interactive panel"; - u.widgets = [{name:"update", text:"Update", type:"button"}]; - u.prototype.createGradient = function(c) { + w.registerNodeType("widget/text", t); + v.title = "Panel"; + v.desc = "Non interactive panel"; + v.widgets = [{name:"update", text:"Update", type:"button"}]; + v.prototype.createGradient = function(c) { "" == this.properties.bgcolorTop || "" == this.properties.bgcolorBottom ? this.lineargradient = 0 : (this.lineargradient = c.createLinearGradient(0, 0, 0, this.size[1]), this.lineargradient.addColorStop(0, this.properties.bgcolorTop), this.lineargradient.addColorStop(1, this.properties.bgcolorBottom)); }; - u.prototype.onDrawForeground = function(c) { + v.prototype.onDrawForeground = function(c) { null == this.lineargradient && this.createGradient(c); this.lineargradient && (c.lineWidth = 1, c.strokeStyle = this.properties.borderColor, c.fillStyle = this.lineargradient, this.properties.shadowSize ? (c.shadowColor = "#000", c.shadowOffsetX = 0, c.shadowOffsetY = 0, c.shadowBlur = this.properties.shadowSize) : c.shadowColor = "transparent", c.roundRect(0, 0, this.size[0] - 1, this.size[1] - 1, this.properties.shadowSize), c.fill(), c.shadowColor = "transparent", c.stroke()); }; - u.prototype.onWidget = function(c, e) { - "update" == e.name && (this.lineargradient = null, this.setDirtyCanvas(!0)); + v.prototype.onWidget = function(c, f) { + "update" == f.name && (this.lineargradient = null, this.setDirtyCanvas(!0)); }; - x.registerNodeType("widget/panel", u); + w.registerNodeType("widget/panel", v); })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.addOutput("left_x_axis", "number"); this.addOutput("left_y_axis", "number"); - this.addOutput("button_pressed", h.EVENT); + this.addOutput("button_pressed", k.EVENT); this.properties = {gamepad_index:0, threshold:0.1}; this._left_axis = new Float32Array(2); this._right_axis = new Float32Array(2); @@ -3350,202 +3510,202 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._previous_buttons = new Uint8Array(17); this._current_buttons = new Uint8Array(17); } - var h = v.LiteGraph; - c.title = "Gamepad"; - c.desc = "gets the input of the gamepad"; - c.zero = new Float32Array(2); - c.buttons = "a b x y lb rb lt rt back start ls rs home".split(" "); - c.prototype.onExecute = function() { - var e = this.getGamepad(), h = this.properties.threshold || 0.0; - e && (this._left_axis[0] = Math.abs(e.xbox.axes.lx) > h ? e.xbox.axes.lx : 0, this._left_axis[1] = Math.abs(e.xbox.axes.ly) > h ? e.xbox.axes.ly : 0, this._right_axis[0] = Math.abs(e.xbox.axes.rx) > h ? e.xbox.axes.rx : 0, this._right_axis[1] = Math.abs(e.xbox.axes.ry) > h ? e.xbox.axes.ry : 0, this._triggers[0] = Math.abs(e.xbox.axes.ltrigger) > h ? e.xbox.axes.ltrigger : 0, this._triggers[1] = Math.abs(e.xbox.axes.rtrigger) > h ? e.xbox.axes.rtrigger : 0); + var k = u.LiteGraph; + f.title = "Gamepad"; + f.desc = "gets the input of the gamepad"; + f.zero = new Float32Array(2); + f.buttons = "a b x y lb rb lt rt back start ls rs home".split(" "); + f.prototype.onExecute = function() { + var c = this.getGamepad(), p = this.properties.threshold || 0.0; + c && (this._left_axis[0] = Math.abs(c.xbox.axes.lx) > p ? c.xbox.axes.lx : 0, this._left_axis[1] = Math.abs(c.xbox.axes.ly) > p ? c.xbox.axes.ly : 0, this._right_axis[0] = Math.abs(c.xbox.axes.rx) > p ? c.xbox.axes.rx : 0, this._right_axis[1] = Math.abs(c.xbox.axes.ry) > p ? c.xbox.axes.ry : 0, this._triggers[0] = Math.abs(c.xbox.axes.ltrigger) > p ? c.xbox.axes.ltrigger : 0, this._triggers[1] = Math.abs(c.xbox.axes.rtrigger) > p ? c.xbox.axes.rtrigger : 0); if (this.outputs) { - for (h = 0; h < this.outputs.length; h++) { - var n = this.outputs[h]; - if (n.links && n.links.length) { - var u = null; - if (e) { - switch(n.name) { + for (p = 0; p < this.outputs.length; p++) { + var k = this.outputs[p]; + if (k.links && k.links.length) { + var v = null; + if (c) { + switch(k.name) { case "left_axis": - u = this._left_axis; + v = this._left_axis; break; case "right_axis": - u = this._right_axis; + v = this._right_axis; break; case "left_x_axis": - u = this._left_axis[0]; + v = this._left_axis[0]; break; case "left_y_axis": - u = this._left_axis[1]; + v = this._left_axis[1]; break; case "right_x_axis": - u = this._right_axis[0]; + v = this._right_axis[0]; break; case "right_y_axis": - u = this._right_axis[1]; + v = this._right_axis[1]; break; case "trigger_left": - u = this._triggers[0]; + v = this._triggers[0]; break; case "trigger_right": - u = this._triggers[1]; + v = this._triggers[1]; break; case "a_button": - u = e.xbox.buttons.a ? 1 : 0; + v = c.xbox.buttons.a ? 1 : 0; break; case "b_button": - u = e.xbox.buttons.b ? 1 : 0; + v = c.xbox.buttons.b ? 1 : 0; break; case "x_button": - u = e.xbox.buttons.x ? 1 : 0; + v = c.xbox.buttons.x ? 1 : 0; break; case "y_button": - u = e.xbox.buttons.y ? 1 : 0; + v = c.xbox.buttons.y ? 1 : 0; break; case "lb_button": - u = e.xbox.buttons.lb ? 1 : 0; + v = c.xbox.buttons.lb ? 1 : 0; break; case "rb_button": - u = e.xbox.buttons.rb ? 1 : 0; + v = c.xbox.buttons.rb ? 1 : 0; break; case "ls_button": - u = e.xbox.buttons.ls ? 1 : 0; + v = c.xbox.buttons.ls ? 1 : 0; break; case "rs_button": - u = e.xbox.buttons.rs ? 1 : 0; + v = c.xbox.buttons.rs ? 1 : 0; break; case "start_button": - u = e.xbox.buttons.start ? 1 : 0; + v = c.xbox.buttons.start ? 1 : 0; break; case "back_button": - u = e.xbox.buttons.back ? 1 : 0; + v = c.xbox.buttons.back ? 1 : 0; break; case "button_pressed": - for (n = 0; n < this._current_buttons.length; ++n) { - this._current_buttons[n] && !this._previous_buttons[n] && this.triggerSlot(h, c.buttons[n]); + for (k = 0; k < this._current_buttons.length; ++k) { + this._current_buttons[k] && !this._previous_buttons[k] && this.triggerSlot(p, f.buttons[k]); } } } else { - switch(n.name) { + switch(k.name) { case "button_pressed": break; case "left_axis": case "right_axis": - u = c.zero; + v = f.zero; break; default: - u = 0; + v = 0; } } - this.setOutputData(h, u); + this.setOutputData(p, v); } } } }; - c.prototype.getGamepad = function() { + f.prototype.getGamepad = function() { var c = navigator.getGamepads || navigator.webkitGetGamepads || navigator.mozGetGamepads; if (!c) { return null; } c = c.call(navigator); this._previous_buttons.set(this._current_buttons); - for (var h = this.properties.gamepad_index; 4 > h; h++) { - if (c[h]) { - c = c[h]; - h = this.xbox_mapping; - h || (h = this.xbox_mapping = {axes:[], buttons:{}, hat:""}); - h.axes.lx = c.axes[0]; - h.axes.ly = c.axes[1]; - h.axes.rx = c.axes[2]; - h.axes.ry = c.axes[3]; - h.axes.ltrigger = c.buttons[6].value; - h.axes.rtrigger = c.buttons[7].value; - for (var n = 0; n < c.buttons.length; n++) { - switch(this._current_buttons[n] = c.buttons[n].pressed, n) { + for (var f = this.properties.gamepad_index; 4 > f; f++) { + if (c[f]) { + c = c[f]; + f = this.xbox_mapping; + f || (f = this.xbox_mapping = {axes:[], buttons:{}, hat:""}); + f.axes.lx = c.axes[0]; + f.axes.ly = c.axes[1]; + f.axes.rx = c.axes[2]; + f.axes.ry = c.axes[3]; + f.axes.ltrigger = c.buttons[6].value; + f.axes.rtrigger = c.buttons[7].value; + for (var k = 0; k < c.buttons.length; k++) { + switch(this._current_buttons[k] = c.buttons[k].pressed, k) { case 0: - h.buttons.a = c.buttons[n].pressed; + f.buttons.a = c.buttons[k].pressed; break; case 1: - h.buttons.b = c.buttons[n].pressed; + f.buttons.b = c.buttons[k].pressed; break; case 2: - h.buttons.x = c.buttons[n].pressed; + f.buttons.x = c.buttons[k].pressed; break; case 3: - h.buttons.y = c.buttons[n].pressed; + f.buttons.y = c.buttons[k].pressed; break; case 4: - h.buttons.lb = c.buttons[n].pressed; + f.buttons.lb = c.buttons[k].pressed; break; case 5: - h.buttons.rb = c.buttons[n].pressed; + f.buttons.rb = c.buttons[k].pressed; break; case 6: - h.buttons.lt = c.buttons[n].pressed; + f.buttons.lt = c.buttons[k].pressed; break; case 7: - h.buttons.rt = c.buttons[n].pressed; + f.buttons.rt = c.buttons[k].pressed; break; case 8: - h.buttons.back = c.buttons[n].pressed; + f.buttons.back = c.buttons[k].pressed; break; case 9: - h.buttons.start = c.buttons[n].pressed; + f.buttons.start = c.buttons[k].pressed; break; case 10: - h.buttons.ls = c.buttons[n].pressed; + f.buttons.ls = c.buttons[k].pressed; break; case 11: - h.buttons.rs = c.buttons[n].pressed; + f.buttons.rs = c.buttons[k].pressed; break; case 12: - c.buttons[n].pressed && (h.hat += "up"); + c.buttons[k].pressed && (f.hat += "up"); break; case 13: - c.buttons[n].pressed && (h.hat += "down"); + c.buttons[k].pressed && (f.hat += "down"); break; case 14: - c.buttons[n].pressed && (h.hat += "left"); + c.buttons[k].pressed && (f.hat += "left"); break; case 15: - c.buttons[n].pressed && (h.hat += "right"); + c.buttons[k].pressed && (f.hat += "right"); break; case 16: - h.buttons.home = c.buttons[n].pressed; + f.buttons.home = c.buttons[k].pressed; } } - c.xbox = h; + c.xbox = f; return c; } } }; - c.prototype.onDrawBackground = function(c) { - var e = this._left_axis, h = this._right_axis; + f.prototype.onDrawBackground = function(c) { + var f = this._left_axis, k = this._right_axis; c.strokeStyle = "#88A"; - c.strokeRect(0.5 * (e[0] + 1) * this.size[0] - 4, 0.5 * (e[1] + 1) * this.size[1] - 4, 8, 8); + c.strokeRect(0.5 * (f[0] + 1) * this.size[0] - 4, 0.5 * (f[1] + 1) * this.size[1] - 4, 8, 8); c.strokeStyle = "#8A8"; - c.strokeRect(0.5 * (h[0] + 1) * this.size[0] - 4, 0.5 * (h[1] + 1) * this.size[1] - 4, 8, 8); - e = this.size[1] / this._current_buttons.length; + c.strokeRect(0.5 * (k[0] + 1) * this.size[0] - 4, 0.5 * (k[1] + 1) * this.size[1] - 4, 8, 8); + f = this.size[1] / this._current_buttons.length; c.fillStyle = "#AEB"; - for (h = 0; h < this._current_buttons.length; ++h) { - this._current_buttons[h] && c.fillRect(0, e * h, 6, e); + for (k = 0; k < this._current_buttons.length; ++k) { + this._current_buttons[k] && c.fillRect(0, f * k, 6, f); } }; - c.prototype.onGetOutputs = function() { - return [["left_axis", "vec2"], ["right_axis", "vec2"], ["left_x_axis", "number"], ["left_y_axis", "number"], ["right_x_axis", "number"], ["right_y_axis", "number"], ["trigger_left", "number"], ["trigger_right", "number"], ["a_button", "number"], ["b_button", "number"], ["x_button", "number"], ["y_button", "number"], ["lb_button", "number"], ["rb_button", "number"], ["ls_button", "number"], ["rs_button", "number"], ["start", "number"], ["back", "number"], ["button_pressed", h.EVENT]]; + f.prototype.onGetOutputs = function() { + return [["left_axis", "vec2"], ["right_axis", "vec2"], ["left_x_axis", "number"], ["left_y_axis", "number"], ["right_x_axis", "number"], ["right_y_axis", "number"], ["trigger_left", "number"], ["trigger_right", "number"], ["a_button", "number"], ["b_button", "number"], ["x_button", "number"], ["y_button", "number"], ["lb_button", "number"], ["rb_button", "number"], ["ls_button", "number"], ["rs_button", "number"], ["start", "number"], ["back", "number"], ["button_pressed", k.EVENT]]; }; - h.registerNodeType("input/gamepad", c); + k.registerNodeType("input/gamepad", f); })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.addInput("in", "*"); this.size = [60, 20]; } - function h() { + function k() { this.addInput("in"); this.addOutput("out"); this.size = [60, 20]; } - function e() { + function c() { this.addInput("in", "number", {locked:!0}); this.addOutput("out", "number", {locked:!0}); this.addProperty("in", 0); @@ -3560,47 +3720,47 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addProperty("max", 1); this.size = [60, 20]; } - function n() { + function t() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; this.addProperty("min", 0); this.addProperty("max", 1); } - function u() { + function v() { this.properties = {f:0.5}; this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("out", "number"); } - function x() { + function w() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; } - function g() { + function e() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; } - function k() { + function q() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; } - function a() { + function l() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; this.properties = {A:0, B:1}; } - function b() { + function a() { this.addInput("in", "number", {label:""}); this.addOutput("out", "number", {label:""}); this.size = [60, 20]; this.addProperty("factor", 1); } - function d() { + function b() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; @@ -3608,15 +3768,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._values = new Float32Array(10); this._current = 0; } - function f() { + function d() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("=", "number"); this.addProperty("A", 1); this.addProperty("B", 1); - this.addProperty("OP", "+", "string", {values:f.values}); + this.addProperty("OP", "+", "string", {values:d.values}); } - function t() { + function g() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("A==B", "boolean"); @@ -3624,29 +3784,29 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addProperty("A", 0); this.addProperty("B", 0); } - function y() { + function h() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("out", "boolean"); this.addProperty("A", 1); this.addProperty("B", 1); - this.addProperty("OP", ">", "string", {values:y.values}); + this.addProperty("OP", ">", "string", {values:h.values}); this.size = [60, 40]; } - function q() { + function x() { this.addInput("inc", "number"); this.addOutput("total", "number"); this.addProperty("increment", 1); this.addProperty("value", 0); } - function l() { + function n() { this.addInput("v", "number"); this.addOutput("sin", "number"); this.addProperty("amplitude", 1); this.addProperty("offset", 0); this.bgImageUrl = "nodes/imgs/icon-sin.png"; } - function w() { + function z() { this.addInput("vec2", "vec2"); this.addOutput("x", "number"); this.addOutput("y", "number"); @@ -3682,10 +3842,10 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.properties = {x:0, y:0, z:0, w:0}; this._data = new Float32Array(4); } - var z = v.LiteGraph; - c.title = "Converter"; - c.desc = "type A to type B"; - c.prototype.onExecute = function() { + var y = u.LiteGraph; + f.title = "Converter"; + f.desc = "type A to type B"; + f.prototype.onExecute = function() { var a = this.getInputData(0); if (null != a && this.outputs) { for (var b = 0; b < this.outputs.length; b++) { @@ -3723,49 +3883,49 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - c.prototype.onGetOutputs = function() { + f.prototype.onGetOutputs = function() { return [["number", "number"], ["vec2", "vec2"], ["vec3", "vec3"], ["vec4", "vec4"]]; }; - z.registerNodeType("math/converter", c); - h.title = "Bypass"; - h.desc = "removes the type"; - h.prototype.onExecute = function() { + y.registerNodeType("math/converter", f); + k.title = "Bypass"; + k.desc = "removes the type"; + k.prototype.onExecute = function() { var a = this.getInputData(0); this.setOutputData(0, a); }; - z.registerNodeType("math/bypass", h); - e.title = "Range"; - e.desc = "Convert a number from one range to another"; - e.prototype.onExecute = function() { + y.registerNodeType("math/bypass", k); + c.title = "Range"; + c.desc = "Convert a number from one range to another"; + c.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { - var b = this.inputs[a], c = this.getInputData(a); - void 0 !== c && (this.properties[b.name] = c); + var b = this.inputs[a], d = this.getInputData(a); + void 0 !== d && (this.properties[b.name] = d); } } - c = this.properties["in"]; - if (void 0 === c || null === c || c.constructor !== Number) { - c = 0; + d = this.properties["in"]; + if (void 0 === d || null === d || d.constructor !== Number) { + d = 0; } a = this.properties.in_min; b = this.properties.out_min; - this._last_v = (c - a) / (this.properties.in_max - a) * (this.properties.out_max - b) + b; + this._last_v = (d - a) / (this.properties.in_max - a) * (this.properties.out_max - b) + b; this.setOutputData(0, this._last_v); }; - e.prototype.onDrawBackground = function(a) { + c.prototype.onDrawBackground = function(a) { this.outputs[0].label = this._last_v ? this._last_v.toFixed(3) : "?"; }; - e.prototype.onGetInputs = function() { + c.prototype.onGetInputs = function() { return [["in_min", "number"], ["in_max", "number"], ["out_min", "number"], ["out_max", "number"]]; }; - z.registerNodeType("math/range", e); + y.registerNodeType("math/range", c); p.title = "Rand"; p.desc = "Random number"; p.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { - var b = this.inputs[a], c = this.getInputData(a); - void 0 !== c && (this.properties[b.name] = c); + var b = this.inputs[a], d = this.getInputData(a); + void 0 !== d && (this.properties[b.name] = d); } } a = this.properties.min; @@ -3778,59 +3938,59 @@ $jscomp.polyfill("Array.prototype.values", function(v) { p.prototype.onGetInputs = function() { return [["min", "number"], ["max", "number"]]; }; - z.registerNodeType("math/rand", p); - n.title = "Clamp"; - n.desc = "Clamp number between min and max"; - n.filter = "shader"; - n.prototype.onExecute = function() { + y.registerNodeType("math/rand", p); + t.title = "Clamp"; + t.desc = "Clamp number between min and max"; + t.filter = "shader"; + t.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (a = Math.max(this.properties.min, a), a = Math.min(this.properties.max, a), this.setOutputData(0, a)); }; - n.prototype.getCode = function(a) { + t.prototype.getCode = function(a) { a = ""; this.isInputConnected(0) && (a += "clamp({{0}}," + this.properties.min + "," + this.properties.max + ")"); return a; }; - z.registerNodeType("math/clamp", n); - u.title = "Lerp"; - u.desc = "Linear Interpolation"; - u.prototype.onExecute = function() { + y.registerNodeType("math/clamp", t); + v.title = "Lerp"; + v.desc = "Linear Interpolation"; + v.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = 0); var b = this.getInputData(1); null == b && (b = 0); - var c = this.properties.f, d = this.getInputData(2); - void 0 !== d && (c = d); - this.setOutputData(0, a * (1 - c) + b * c); + var d = this.properties.f, c = this.getInputData(2); + void 0 !== c && (d = c); + this.setOutputData(0, a * (1 - d) + b * d); }; - u.prototype.onGetInputs = function() { + v.prototype.onGetInputs = function() { return [["f", "number"]]; }; - z.registerNodeType("math/lerp", u); - x.title = "Abs"; - x.desc = "Absolute"; - x.prototype.onExecute = function() { + y.registerNodeType("math/lerp", v); + w.title = "Abs"; + w.desc = "Absolute"; + w.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, Math.abs(a)); }; - z.registerNodeType("math/abs", x); - g.title = "Floor"; - g.desc = "Floor number to remove fractional part"; - g.prototype.onExecute = function() { + y.registerNodeType("math/abs", w); + e.title = "Floor"; + e.desc = "Floor number to remove fractional part"; + e.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, Math.floor(a)); }; - z.registerNodeType("math/floor", g); - k.title = "Frac"; - k.desc = "Returns fractional part"; - k.prototype.onExecute = function() { + y.registerNodeType("math/floor", e); + q.title = "Frac"; + q.desc = "Returns fractional part"; + q.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, a % 1); }; - z.registerNodeType("math/frac", k); - a.title = "Smoothstep"; - a.desc = "Smoothstep"; - a.prototype.onExecute = function() { + y.registerNodeType("math/frac", q); + l.title = "Smoothstep"; + l.desc = "Smoothstep"; + l.prototype.onExecute = function() { var a = this.getInputData(0); if (void 0 !== a) { var b = this.properties.A; @@ -3838,87 +3998,87 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.setOutputData(0, a * a * (3 - 2 * a)); } }; - z.registerNodeType("math/smoothstep", a); - b.title = "Scale"; - b.desc = "v * factor"; - b.prototype.onExecute = function() { + y.registerNodeType("math/smoothstep", l); + a.title = "Scale"; + a.desc = "v * factor"; + a.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, a * this.properties.factor); }; - z.registerNodeType("math/scale", b); - d.title = "Average"; - d.desc = "Average Filter"; - d.prototype.onExecute = function() { + y.registerNodeType("math/scale", a); + b.title = "Average"; + b.desc = "Average Filter"; + b.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = 0); var b = this._values.length; this._values[this._current % b] = a; this._current += 1; this._current > b && (this._current = 0); - for (var c = a = 0; c < b; ++c) { - a += this._values[c]; + for (var d = a = 0; d < b; ++d) { + a += this._values[d]; } this.setOutputData(0, a / b); }; - d.prototype.onPropertyChanged = function(a, b) { + b.prototype.onPropertyChanged = function(a, b) { 1 > b && (b = 1); this.properties.samples = Math.round(b); a = this._values; this._values = new Float32Array(this.properties.samples); a.length <= this._values.length ? this._values.set(a) : this._values.set(a.subarray(0, this._values.length)); }; - z.registerNodeType("math/average", d); - f.values = "+-*/%^".split(""); - f.title = "Operation"; - f.desc = "Easy math operators"; - f["@OP"] = {type:"enum", title:"operation", values:f.values}; - f.prototype.setValue = function(a) { + y.registerNodeType("math/average", b); + d.values = "+-*/%^".split(""); + d.title = "Operation"; + d.desc = "Easy math operators"; + d["@OP"] = {type:"enum", title:"operation", values:d.values}; + d.prototype.setValue = function(a) { "string" == typeof a && (a = parseFloat(a)); this.properties.value = a; }; - f.prototype.onExecute = function() { + d.prototype.onExecute = function() { var a = this.getInputData(0), b = this.getInputData(1); null != a ? this.properties.A = a : a = this.properties.A; null != b ? this.properties.B = b : b = this.properties.B; - var c = 0; + var d = 0; switch(this.properties.OP) { case "+": - c = a + b; + d = a + b; break; case "-": - c = a - b; + d = a - b; break; case "x": case "X": case "*": - c = a * b; + d = a * b; break; case "/": - c = a / b; + d = a / b; break; case "%": - c = a % b; + d = a % b; break; case "^": - c = Math.pow(a, b); + d = Math.pow(a, b); break; default: console.warn("Unknown operation: " + this.properties.OP); } - this.setOutputData(0, c); + this.setOutputData(0, d); }; - f.prototype.onDrawBackground = function(a) { - this.flags.collapsed || (a.font = "40px Arial", a.fillStyle = "black", a.textAlign = "center", a.fillText(this.properties.OP, 0.5 * this.size[0], 0.5 * this.size[1] + z.NODE_TITLE_HEIGHT), a.textAlign = "left"); + d.prototype.onDrawBackground = function(a) { + this.flags.collapsed || (a.font = "40px Arial", a.fillStyle = "black", a.textAlign = "center", a.fillText(this.properties.OP, 0.5 * this.size[0], 0.5 * this.size[1] + y.NODE_TITLE_HEIGHT), a.textAlign = "left"); }; - z.registerNodeType("math/operation", f); - t.title = "Compare"; - t.desc = "compares between two values"; - t.prototype.onExecute = function() { + y.registerNodeType("math/operation", d); + g.title = "Compare"; + g.desc = "compares between two values"; + g.prototype.onExecute = function() { var a = this.getInputData(0), b = this.getInputData(1); void 0 !== a ? this.properties.A = a : a = this.properties.A; void 0 !== b ? this.properties.B = b : b = this.properties.B; - for (var c = 0, d = this.outputs.length; c < d; ++c) { - var e = this.outputs[c]; + for (var d = 0, c = this.outputs.length; d < c; ++d) { + var e = this.outputs[d]; if (e.links && e.links.length) { switch(e.name) { case "A==B": @@ -3939,69 +4099,69 @@ $jscomp.polyfill("Array.prototype.values", function(v) { case "A>=B": value = a >= b; } - this.setOutputData(c, value); + this.setOutputData(d, value); } } }; - t.prototype.onGetOutputs = function() { + g.prototype.onGetOutputs = function() { return [["A==B", "boolean"], ["A!=B", "boolean"], ["A>B", "boolean"], ["A=B", "boolean"], ["A<=B", "boolean"]]; }; - z.registerNodeType("math/compare", t); - y.values = "> < == != <= >=".split(" "); - y["@OP"] = {type:"enum", title:"operation", values:y.values}; - y.title = "Condition"; - y.desc = "evaluates condition between A and B"; - y.prototype.onExecute = function() { + y.registerNodeType("math/compare", g); + h.values = "> < == != <= >=".split(" "); + h["@OP"] = {type:"enum", title:"operation", values:h.values}; + h.title = "Condition"; + h.desc = "evaluates condition between A and B"; + h.prototype.onExecute = function() { var a = this.getInputData(0); void 0 === a ? a = this.properties.A : this.properties.A = a; var b = this.getInputData(1); void 0 === b ? b = this.properties.B : this.properties.B = b; - var c = !0; + var d = !0; switch(this.properties.OP) { case ">": - c = a > b; + d = a > b; break; case "<": - c = a < b; + d = a < b; break; case "==": - c = a == b; + d = a == b; break; case "!=": - c = a != b; + d = a != b; break; case "<=": - c = a <= b; + d = a <= b; break; case ">=": - c = a >= b; + d = a >= b; } - this.setOutputData(0, c); + this.setOutputData(0, d); }; - z.registerNodeType("math/condition", y); - q.title = "Accumulate"; - q.desc = "Increments a value every time"; - q.prototype.onExecute = function() { + y.registerNodeType("math/condition", h); + x.title = "Accumulate"; + x.desc = "Increments a value every time"; + x.prototype.onExecute = function() { null === this.properties.value && (this.properties.value = 0); var a = this.getInputData(0); this.properties.value = null !== a ? this.properties.value + a : this.properties.value + this.properties.increment; this.setOutputData(0, this.properties.value); }; - z.registerNodeType("math/accumulate", q); - l.title = "Trigonometry"; - l.desc = "Sin Cos Tan"; - l.filter = "shader"; - l.prototype.onExecute = function() { + y.registerNodeType("math/accumulate", x); + n.title = "Trigonometry"; + n.desc = "Sin Cos Tan"; + n.filter = "shader"; + n.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = 0); - var b = this.properties.amplitude, c = this.findInputSlot("amplitude"); - -1 != c && (b = this.getInputData(c)); - var d = this.properties.offset; - c = this.findInputSlot("offset"); - -1 != c && (d = this.getInputData(c)); - c = 0; - for (var e = this.outputs.length; c < e; ++c) { - switch(this.outputs[c].name) { + var b = this.properties.amplitude, d = this.findInputSlot("amplitude"); + -1 != d && (b = this.getInputData(d)); + var c = this.properties.offset; + d = this.findInputSlot("offset"); + -1 != d && (c = this.getInputData(d)); + d = 0; + for (var e = this.outputs.length; d < e; ++d) { + switch(this.outputs[d].name) { case "sin": value = Math.sin(a); break; @@ -4020,16 +4180,16 @@ $jscomp.polyfill("Array.prototype.values", function(v) { case "atan": value = Math.atan(a); } - this.setOutputData(c, b * value + d); + this.setOutputData(d, b * value + c); } }; - l.prototype.onGetInputs = function() { + n.prototype.onGetInputs = function() { return [["v", "number"], ["amplitude", "number"], ["offset", "number"]]; }; - l.prototype.onGetOutputs = function() { + n.prototype.onGetOutputs = function() { return [["sin", "number"], ["cos", "number"], ["tan", "number"], ["asin", "number"], ["acos", "number"], ["atan", "number"]]; }; - z.registerNodeType("math/trigonometry", l); + y.registerNodeType("math/trigonometry", n); var r = function() { this.addInputs("x", "number"); this.addInputs("y", "number"); @@ -4051,14 +4211,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { r.prototype.onGetOutputs = function() { return [["A-B", "number"], ["A*B", "number"], ["A/B", "number"]]; }; - z.registerNodeType("math/formula", r); - w.title = "Vec2->XY"; - w.desc = "vector 2 to components"; - w.prototype.onExecute = function() { + y.registerNodeType("math/formula", r); + z.title = "Vec2->XY"; + z.desc = "vector 2 to components"; + z.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1])); }; - z.registerNodeType("math3d/vec2-to-xyz", w); + y.registerNodeType("math3d/vec2-to-xyz", z); A.title = "XY->Vec2"; A.desc = "components to vector2"; A.prototype.onExecute = function() { @@ -4066,19 +4226,19 @@ $jscomp.polyfill("Array.prototype.values", function(v) { null == a && (a = this.properties.x); var b = this.getInputData(1); null == b && (b = this.properties.y); - var c = this._data; - c[0] = a; - c[1] = b; - this.setOutputData(0, c); + var d = this._data; + d[0] = a; + d[1] = b; + this.setOutputData(0, d); }; - z.registerNodeType("math3d/xy-to-vec2", A); + y.registerNodeType("math3d/xy-to-vec2", A); D.title = "Vec3->XYZ"; D.desc = "vector 3 to components"; D.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2])); }; - z.registerNodeType("math3d/vec3-to-xyz", D); + y.registerNodeType("math3d/vec3-to-xyz", D); B.title = "XYZ->Vec3"; B.desc = "components to vector3"; B.prototype.onExecute = function() { @@ -4086,22 +4246,22 @@ $jscomp.polyfill("Array.prototype.values", function(v) { null == a && (a = this.properties.x); var b = this.getInputData(1); null == b && (b = this.properties.y); - var c = this.getInputData(2); - null == c && (c = this.properties.z); - var d = this._data; - d[0] = a; - d[1] = b; - d[2] = c; - this.setOutputData(0, d); + var d = this.getInputData(2); + null == d && (d = this.properties.z); + var c = this._data; + c[0] = a; + c[1] = b; + c[2] = d; + this.setOutputData(0, c); }; - z.registerNodeType("math3d/xyz-to-vec3", B); + y.registerNodeType("math3d/xyz-to-vec3", B); C.title = "Vec4->XYZW"; C.desc = "vector 4 to components"; C.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2]), this.setOutputData(3, a[3])); }; - z.registerNodeType("math3d/vec4-to-xyzw", C); + y.registerNodeType("math3d/vec4-to-xyzw", C); E.title = "XYZW->Vec4"; E.desc = "components to vector4"; E.prototype.onExecute = function() { @@ -4109,20 +4269,20 @@ $jscomp.polyfill("Array.prototype.values", function(v) { null == a && (a = this.properties.x); var b = this.getInputData(1); null == b && (b = this.properties.y); - var c = this.getInputData(2); - null == c && (c = this.properties.z); - var d = this.getInputData(3); - null == d && (d = this.properties.w); + var d = this.getInputData(2); + null == d && (d = this.properties.z); + var c = this.getInputData(3); + null == c && (c = this.properties.w); var e = this._data; e[0] = a; e[1] = b; - e[2] = c; - e[3] = d; + e[2] = d; + e[3] = c; this.setOutputData(0, e); }; - z.registerNodeType("math3d/xyzw-to-vec4", E); - if (v.glMatrix) { - v = function() { + y.registerNodeType("math3d/xyzw-to-vec4", E); + if (u.glMatrix) { + u = function() { this.addInputs([["A", "quat"], ["B", "quat"], ["factor", "number"]]); this.addOutput("slerp", "quat"); this.addProperty("factor", 0.5); @@ -4156,7 +4316,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._value[3] = this.properties.w; this.setOutputData(0, this._value); }; - z.registerNodeType("math3d/quaternion", H); + y.registerNodeType("math3d/quaternion", H); G.title = "Rotation"; G.desc = "quaternion rotation"; G.prototype.onExecute = function() { @@ -4167,7 +4327,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a = quat.setAxisAngle(this._value, b, 0.0174532925 * a); this.setOutputData(0, a); }; - z.registerNodeType("math3d/rotation", G); + y.registerNodeType("math3d/rotation", G); F.title = "Rot. Vec3"; F.desc = "rotate a point"; F.prototype.onExecute = function() { @@ -4176,7 +4336,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { var b = this.getInputData(1); null == b ? this.setOutputData(a) : this.setOutputData(0, vec3.transformQuat(vec3.create(), a, b)); }; - z.registerNodeType("math3d/rotate_vec3", F); + y.registerNodeType("math3d/rotate_vec3", F); r.title = "Mult. Quat"; r.desc = "rotate quaternion"; r.prototype.onExecute = function() { @@ -4186,63 +4346,63 @@ $jscomp.polyfill("Array.prototype.values", function(v) { null != b && (a = quat.multiply(this._value, a, b), this.setOutputData(0, a)); } }; - z.registerNodeType("math3d/mult-quat", r); - v.title = "Quat Slerp"; - v.desc = "quaternion spherical interpolation"; - v.prototype.onExecute = function() { + y.registerNodeType("math3d/mult-quat", r); + u.title = "Quat Slerp"; + u.desc = "quaternion spherical interpolation"; + u.prototype.onExecute = function() { var a = this.getInputData(0); if (null != a) { var b = this.getInputData(1); if (null != b) { - var c = this.properties.factor; - null != this.getInputData(2) && (c = this.getInputData(2)); - a = quat.slerp(this._value, a, b, c); + var d = this.properties.factor; + null != this.getInputData(2) && (d = this.getInputData(2)); + a = quat.slerp(this._value, a, b, d); this.setOutputData(0, a); } } }; - z.registerNodeType("math3d/quat-slerp", v); + y.registerNodeType("math3d/quat-slerp", u); } })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.addInput("sel", "boolean"); this.addOutput("value", "number"); this.properties = {A:0, B:1}; this.size = [60, 20]; } - v = v.LiteGraph; - c.title = "Selector"; - c.desc = "outputs A if selector is true, B if selector is false"; - c.prototype.onExecute = function() { - var c = this.getInputData(0); - if (void 0 !== c) { - for (var e = 1; e < this.inputs.length; e++) { - var p = this.inputs[e], n = this.getInputData(e); - void 0 !== n && (this.properties[p.name] = n); + u = u.LiteGraph; + f.title = "Selector"; + f.desc = "outputs A if selector is true, B if selector is false"; + f.prototype.onExecute = function() { + var f = this.getInputData(0); + if (void 0 !== f) { + for (var c = 1; c < this.inputs.length; c++) { + var p = this.inputs[c], t = this.getInputData(c); + void 0 !== t && (this.properties[p.name] = t); } - e = this.properties.A; + c = this.properties.A; p = this.properties.B; - this.setOutputData(0, c ? e : p); + this.setOutputData(0, f ? c : p); } }; - c.prototype.onGetInputs = function() { + f.prototype.onGetInputs = function() { return [["A", 0], ["B", 0]]; }; - v.registerNodeType("logic/selector", c); + u.registerNodeType("logic/selector", f); })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.inputs = []; this.addOutput("frame", "image"); this.properties = {url:""}; } - function h() { + function k() { this.addInput("f", "number"); this.addOutput("Color", "color"); this.properties = {colorA:"#444444", colorB:"#44AAFF", colorC:"#44FFAA", colorD:"#FFFFFF"}; } - function e() { + function c() { this.addInput("", "image"); this.size = [200, 200]; } @@ -4251,126 +4411,126 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addOutput("", "image"); this.properties = {fade:0.5, width:512, height:512}; } - function n() { + function t() { this.addInput("", "image"); this.addOutput("", "image"); this.properties = {width:256, height:256, x:0, y:0, scale:1.0}; this.size = [50, 20]; } - function u() { + function v() { this.addInput("t", "number"); this.addOutputs([["frame", "image"], ["t", "number"], ["d", "number"]]); this.properties = {url:""}; } - function x() { + function w() { this.addOutput("Webcam", "image"); this.properties = {}; } - var g = v.LiteGraph; - c.title = "Image"; - c.desc = "Image loader"; - c.widgets = [{name:"load", text:"Load", type:"button"}]; - c.supported_extensions = ["jpg", "jpeg", "png", "gif"]; - c.prototype.onAdded = function() { + var e = u.LiteGraph; + f.title = "Image"; + f.desc = "Image loader"; + f.widgets = [{name:"load", text:"Load", type:"button"}]; + f.supported_extensions = ["jpg", "jpeg", "png", "gif"]; + f.prototype.onAdded = function() { "" != this.properties.url && null == this.img && this.loadImage(this.properties.url); }; - c.prototype.onDrawBackground = function(c) { + f.prototype.onDrawBackground = function(c) { this.img && 5 < this.size[0] && 5 < this.size[1] && c.drawImage(this.img, 0, 0, this.size[0], this.size[1]); }; - c.prototype.onExecute = function() { + f.prototype.onExecute = function() { this.img || (this.boxcolor = "#000"); this.img && this.img.width ? this.setOutputData(0, this.img) : this.setOutputData(0, null); this.img && this.img.dirty && (this.img.dirty = !1); }; - c.prototype.onPropertyChanged = function(c, a) { - this.properties[c] = a; - "url" == c && "" != a && this.loadImage(a); + f.prototype.onPropertyChanged = function(c, e) { + this.properties[c] = e; + "url" == c && "" != e && this.loadImage(e); return !0; }; - c.prototype.loadImage = function(c, a) { + f.prototype.loadImage = function(c, l) { if ("" == c) { this.img = null; } else { this.img = document.createElement("img"); - "http://" == c.substr(0, 7) && g.proxy && (c = g.proxy + c.substr(7)); + "http://" == c.substr(0, 7) && e.proxy && (c = e.proxy + c.substr(7)); this.img.src = c; this.boxcolor = "#F95"; - var b = this; + var a = this; this.img.onload = function() { - a && a(this); - b.trace("Image loaded, size: " + b.img.width + "x" + b.img.height); + l && l(this); + a.trace("Image loaded, size: " + a.img.width + "x" + a.img.height); this.dirty = !0; - b.boxcolor = "#9F9"; - b.setDirtyCanvas(!0); + a.boxcolor = "#9F9"; + a.setDirtyCanvas(!0); }; } }; - c.prototype.onWidget = function(c, a) { - "load" == a.name && this.loadImage(this.properties.url); + f.prototype.onWidget = function(c, e) { + "load" == e.name && this.loadImage(this.properties.url); }; - c.prototype.onDropFile = function(c) { - var a = this; + f.prototype.onDropFile = function(c) { + var e = this; this._url && URL.revokeObjectURL(this._url); this._url = URL.createObjectURL(c); this.properties.url = this._url; - this.loadImage(this._url, function(b) { - a.size[1] = b.height / b.width * a.size[0]; + this.loadImage(this._url, function(a) { + e.size[1] = a.height / a.width * e.size[0]; }); }; - g.registerNodeType("graphics/image", c); - h.title = "Palette"; - h.desc = "Generates a color"; - h.prototype.onExecute = function() { + e.registerNodeType("graphics/image", f); + k.title = "Palette"; + k.desc = "Generates a color"; + k.prototype.onExecute = function() { var c = []; null != this.properties.colorA && c.push(hex2num(this.properties.colorA)); null != this.properties.colorB && c.push(hex2num(this.properties.colorB)); null != this.properties.colorC && c.push(hex2num(this.properties.colorC)); null != this.properties.colorD && c.push(hex2num(this.properties.colorD)); - var a = this.getInputData(0); - null == a && (a = 0.5); - 1.0 < a ? a = 1.0 : 0.0 > a && (a = 0.0); + var e = this.getInputData(0); + null == e && (e = 0.5); + 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); if (0 != c.length) { - var b = [0, 0, 0]; - if (0 == a) { - b = c[0]; + var a = [0, 0, 0]; + if (0 == e) { + a = c[0]; } else { - if (1 == a) { - b = c[c.length - 1]; + if (1 == e) { + a = c[c.length - 1]; } else { - var d = (c.length - 1) * a; - a = c[Math.floor(d)]; - c = c[Math.floor(d) + 1]; - d -= Math.floor(d); - b[0] = a[0] * (1 - d) + c[0] * d; - b[1] = a[1] * (1 - d) + c[1] * d; - b[2] = a[2] * (1 - d) + c[2] * d; + var b = (c.length - 1) * e; + e = c[Math.floor(b)]; + c = c[Math.floor(b) + 1]; + b -= Math.floor(b); + a[0] = e[0] * (1 - b) + c[0] * b; + a[1] = e[1] * (1 - b) + c[1] * b; + a[2] = e[2] * (1 - b) + c[2] * b; } } - for (var e in b) { - b[e] /= 255; + for (var d in a) { + a[d] /= 255; } - this.boxcolor = colorToString(b); - this.setOutputData(0, b); + this.boxcolor = colorToString(a); + this.setOutputData(0, a); } }; - g.registerNodeType("color/palette", h); - e.title = "Frame"; - e.desc = "Frame viewerew"; - e.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"view", text:"View Image", type:"button"}]; - e.prototype.onDrawBackground = function(c) { + e.registerNodeType("color/palette", k); + c.title = "Frame"; + c.desc = "Frame viewerew"; + c.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"view", text:"View Image", type:"button"}]; + c.prototype.onDrawBackground = function(c) { this.frame && c.drawImage(this.frame, 0, 0, this.size[0], this.size[1]); }; - e.prototype.onExecute = function() { + c.prototype.onExecute = function() { this.frame = this.getInputData(0); this.setDirtyCanvas(!0); }; - e.prototype.onWidget = function(c, a) { - "resize" == a.name && this.frame ? (c = this.frame.width, a = this.frame.height, c || null == this.frame.videoWidth || (c = this.frame.videoWidth, a = this.frame.videoHeight), c && a && (this.size = [c, a]), this.setDirtyCanvas(!0, !0)) : "view" == a.name && this.show(); + c.prototype.onWidget = function(c, e) { + "resize" == e.name && this.frame ? (c = this.frame.width, e = this.frame.height, c || null == this.frame.videoWidth || (c = this.frame.videoWidth, e = this.frame.videoHeight), c && e && (this.size = [c, e]), this.setDirtyCanvas(!0, !0)) : "view" == e.name && this.show(); }; - e.prototype.show = function() { + c.prototype.show = function() { showElement && this.frame && showElement(this.frame); }; - g.registerNodeType("graphics/frame", e); + e.registerNodeType("graphics/frame", c); p.title = "Image fade"; p.desc = "Fades between images"; p.widgets = [{name:"resizeA", text:"Resize to A", type:"button"}, {name:"resizeB", text:"Resize to B", type:"button"}]; @@ -4388,46 +4548,46 @@ $jscomp.polyfill("Array.prototype.values", function(v) { p.prototype.onExecute = function() { var c = this.canvas.getContext("2d"); this.canvas.width = this.canvas.width; - var a = this.getInputData(0); - null != a && c.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); - a = this.getInputData(2); - null == a ? a = this.properties.fade : this.properties.fade = a; - c.globalAlpha = a; - a = this.getInputData(1); - null != a && c.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); + var e = this.getInputData(0); + null != e && c.drawImage(e, 0, 0, this.canvas.width, this.canvas.height); + e = this.getInputData(2); + null == e ? e = this.properties.fade : this.properties.fade = e; + c.globalAlpha = e; + e = this.getInputData(1); + null != e && c.drawImage(e, 0, 0, this.canvas.width, this.canvas.height); c.globalAlpha = 1.0; this.setOutputData(0, this.canvas); this.setDirtyCanvas(!0); }; - g.registerNodeType("graphics/imagefade", p); - n.title = "Crop"; - n.desc = "Crop Image"; - n.prototype.onAdded = function() { + e.registerNodeType("graphics/imagefade", p); + t.title = "Crop"; + t.desc = "Crop Image"; + t.prototype.onAdded = function() { this.createCanvas(); }; - n.prototype.createCanvas = function() { + t.prototype.createCanvas = function() { this.canvas = document.createElement("canvas"); this.canvas.width = this.properties.width; this.canvas.height = this.properties.height; }; - n.prototype.onExecute = function() { + t.prototype.onExecute = function() { var c = this.getInputData(0); c && (c.width ? (this.canvas.getContext("2d").drawImage(c, -this.properties.x, -this.properties.y, c.width * this.properties.scale, c.height * this.properties.scale), this.setOutputData(0, this.canvas)) : this.setOutputData(0, null)); }; - n.prototype.onDrawBackground = function(c) { + t.prototype.onDrawBackground = function(c) { this.flags.collapsed || this.canvas && c.drawImage(this.canvas, 0, 0, this.canvas.width, this.canvas.height, 0, 0, this.size[0], this.size[1]); }; - n.prototype.onPropertyChanged = function(c, a) { - this.properties[c] = a; - "scale" == c ? (this.properties[c] = parseFloat(a), 0 == this.properties[c] && (this.trace("Error in scale"), this.properties[c] = 1.0)) : this.properties[c] = parseInt(a); + t.prototype.onPropertyChanged = function(c, e) { + this.properties[c] = e; + "scale" == c ? (this.properties[c] = parseFloat(e), 0 == this.properties[c] && (this.trace("Error in scale"), this.properties[c] = 1.0)) : this.properties[c] = parseInt(e); this.createCanvas(); return !0; }; - g.registerNodeType("graphics/cropImage", n); - u.title = "Video"; - u.desc = "Video playback"; - u.widgets = [{name:"play", text:"PLAY", type:"minibutton"}, {name:"stop", text:"STOP", type:"minibutton"}, {name:"demo", text:"Demo video", type:"button"}, {name:"mute", text:"Mute video", type:"button"}]; - u.prototype.onExecute = function() { + e.registerNodeType("graphics/cropImage", t); + v.title = "Video"; + v.desc = "Video playback"; + v.widgets = [{name:"play", text:"PLAY", type:"minibutton"}, {name:"stop", text:"STOP", type:"minibutton"}, {name:"demo", text:"Demo video", type:"button"}, {name:"mute", text:"Mute video", type:"button"}]; + v.prototype.onExecute = function() { if (this.properties.url && (this.properties.url != this._video_url && this.loadVideo(this.properties.url), this._video && 0 != this._video.width)) { var c = this.getInputData(0); c && 0 <= c && 1.0 >= c && (this._video.currentTime = c * this._video.duration, this._video.pause()); @@ -4438,206 +4598,206 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.setDirtyCanvas(!0); } }; - u.prototype.onStart = function() { + v.prototype.onStart = function() { this.play(); }; - u.prototype.onStop = function() { + v.prototype.onStop = function() { this.stop(); }; - u.prototype.loadVideo = function(c) { + v.prototype.loadVideo = function(c) { this._video_url = c; this._video = document.createElement("video"); this._video.src = c; this._video.type = "type=video/mp4"; this._video.muted = !0; this._video.autoplay = !0; - var a = this; - this._video.addEventListener("loadedmetadata", function(b) { - a.trace("Duration: " + this.duration + " seconds"); - a.trace("Size: " + this.videoWidth + "," + this.videoHeight); - a.setDirtyCanvas(!0); + var e = this; + this._video.addEventListener("loadedmetadata", function(a) { + e.trace("Duration: " + this.duration + " seconds"); + e.trace("Size: " + this.videoWidth + "," + this.videoHeight); + e.setDirtyCanvas(!0); this.width = this.videoWidth; this.height = this.videoHeight; }); this._video.addEventListener("progress", function(a) { }); - this._video.addEventListener("error", function(b) { + this._video.addEventListener("error", function(a) { console.log("Error loading video: " + this.src); - a.trace("Error loading video: " + this.src); + e.trace("Error loading video: " + this.src); if (this.error) { switch(this.error.code) { case this.error.MEDIA_ERR_ABORTED: - a.trace("You stopped the video."); + e.trace("You stopped the video."); break; case this.error.MEDIA_ERR_NETWORK: - a.trace("Network error - please try again later."); + e.trace("Network error - please try again later."); break; case this.error.MEDIA_ERR_DECODE: - a.trace("Video is broken.."); + e.trace("Video is broken.."); break; case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: - a.trace("Sorry, your browser can't play this video."); + e.trace("Sorry, your browser can't play this video."); } } }); - this._video.addEventListener("ended", function(b) { - a.trace("Ended."); + this._video.addEventListener("ended", function(a) { + e.trace("Ended."); this.play(); }); }; - u.prototype.onPropertyChanged = function(c, a) { - this.properties[c] = a; - "url" == c && "" != a && this.loadVideo(a); + v.prototype.onPropertyChanged = function(c, e) { + this.properties[c] = e; + "url" == c && "" != e && this.loadVideo(e); return !0; }; - u.prototype.play = function() { + v.prototype.play = function() { this._video && this._video.play(); }; - u.prototype.playPause = function() { + v.prototype.playPause = function() { this._video && (this._video.paused ? this.play() : this.pause()); }; - u.prototype.stop = function() { + v.prototype.stop = function() { this._video && (this._video.pause(), this._video.currentTime = 0); }; - u.prototype.pause = function() { + v.prototype.pause = function() { this._video && (this.trace("Video paused"), this._video.pause()); }; - u.prototype.onWidget = function(c, a) { + v.prototype.onWidget = function(c, e) { }; - g.registerNodeType("graphics/video", u); - x.title = "Webcam"; - x.desc = "Webcam image"; - x.prototype.openStream = function() { + e.registerNodeType("graphics/video", v); + w.title = "Webcam"; + w.desc = "Webcam image"; + w.prototype.openStream = function() { navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; window.URL = window.URL || window.webkitURL; if (navigator.getUserMedia) { this._waiting_confirmation = !0; - navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(a) { - console.log("Webcam rejected", a); + navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(e) { + console.log("Webcam rejected", e); c._webcam_stream = !1; c.box_color = "red"; }); var c = this; } }; - x.prototype.onRemoved = function() { + w.prototype.onRemoved = function() { this._webcam_stream && (this._webcam_stream.stop(), this._video = this._webcam_stream = null); }; - x.prototype.streamReady = function(c) { + w.prototype.streamReady = function(c) { this._webcam_stream = c; - var a = this._video; - a || (a = document.createElement("video"), a.autoplay = !0, a.src = window.URL.createObjectURL(c), this._video = a, a.onloadedmetadata = function(a) { + var e = this._video; + e || (e = document.createElement("video"), e.autoplay = !0, e.src = window.URL.createObjectURL(c), this._video = e, e.onloadedmetadata = function(a) { console.log(a); }); }; - x.prototype.onExecute = function() { + w.prototype.onExecute = function() { null != this._webcam_stream || this._waiting_confirmation || this.openStream(); this._video && this._video.videoWidth && (this._video.width = this._video.videoWidth, this._video.height = this._video.videoHeight, this.setOutputData(0, this._video)); }; - x.prototype.getExtraMenuOptions = function(c) { - var a = this; - return [{content:a.properties.show ? "Hide Frame" : "Show Frame", callback:function() { - a.properties.show = !a.properties.show; + w.prototype.getExtraMenuOptions = function(c) { + var e = this; + return [{content:e.properties.show ? "Hide Frame" : "Show Frame", callback:function() { + e.properties.show = !e.properties.show; }}]; }; - x.prototype.onDrawBackground = function(c) { + w.prototype.onDrawBackground = function(c) { this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._video || (c.save(), c.drawImage(this._video, 0, 0, this.size[0], this.size[1]), c.restore()); }; - g.registerNodeType("graphics/webcam", x); + e.registerNodeType("graphics/webcam", w); })(this); -(function(v) { - var c = v.LiteGraph; - v.LGraphTexture = null; +(function(u) { + var f = u.LiteGraph; + u.LGraphTexture = null; if ("undefined" != typeof GL) { - var h = function() { + var k = function() { this.addOutput("Cubemap", "Cubemap"); this.properties = {name:""}; this.size = [r.image_preview_size, r.image_preview_size]; - }, e = function() { + }, c = function() { this.addInput("in", "Texture"); this.addOutput("out", "Texture"); this.properties = {key_color:vec3.fromValues(0., 1., 0.), threshold:0.8, slope:0.2, precision:r.DEFAULT}; - e._shader || (e._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.pixel_shader)); + c._shader || (c._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, c.pixel_shader)); }, p = function() { this.addOutput("Webcam", "Texture"); this.properties = {texture_name:""}; - }, n = function() { + }, t = function() { this.addInput("Texture", "Texture"); this.addOutput("Filtered", "Texture"); this.properties = {intensity:1, radius:5}; - }, u = function() { + }, v = function() { this.addInput("Texture", "Texture"); this.addInput("Iterations", "number"); this.addInput("Intensity", "number"); this.addOutput("Blurred", "Texture"); this.properties = {intensity:1, iterations:1, preserve_aspect:!1, scale:[1, 1]}; - }, x = function() { + }, w = function() { this.addInput("Texture", "Texture"); this.addInput("Distance", "number"); this.addInput("Range", "number"); this.addOutput("Texture", "Texture"); this.properties = {distance:100, range:50, only_depth:!1, high_precision:!1}; this._uniforms = {u_texture:0, u_distance:100, u_range:50, u_camera_planes:null}; - }, g = function() { + }, e = function() { this.addInput("Tex.", "Texture"); this.addOutput("Edges", "Texture"); this.properties = {invert:!0, factor:1, precision:r.DEFAULT}; - g._shader || (g._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, g.pixel_shader)); - }, k = function() { + e._shader || (e._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, e.pixel_shader)); + }, q = function() { this.addInput("A", "Texture"); this.addInput("B", "Texture"); this.addInput("Mixer", "Texture"); this.addOutput("Texture", "Texture"); this.properties = {precision:r.DEFAULT}; - k._shader || (k._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, k.pixel_shader)); - }, a = function() { + q._shader || (q._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, q.pixel_shader)); + }, l = function() { this.addInput("A", "color"); this.addInput("B", "color"); this.addOutput("Texture", "Texture"); this.properties = {angle:0, scale:1, A:[0, 0, 0], B:[1, 1, 1], texture_size:32}; - a._shader || (a._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a.pixel_shader)); + l._shader || (l._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, l.pixel_shader)); this._uniforms = {u_angle:0, u_colorA:vec3.create(), u_colorB:vec3.create()}; - }, b = function() { + }, a = function() { this.addInput("R", "Texture"); this.addInput("G", "Texture"); this.addInput("B", "Texture"); this.addInput("A", "Texture"); this.addOutput("Texture", "Texture"); this.properties = {}; - b._shader || (b._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader)); - }, d = function() { + a._shader || (a._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a.pixel_shader)); + }, b = function() { this.addInput("Texture", "Texture"); this.addOutput("R", "Texture"); this.addOutput("G", "Texture"); this.addOutput("B", "Texture"); this.addOutput("A", "Texture"); this.properties = {}; - d._shader || (d._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, d.pixel_shader)); - }, f = function() { + b._shader || (b._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader)); + }, d = function() { this.addInput("Texture", "Texture"); this.addInput("LUT", "Texture"); this.addInput("Intensity", "number"); this.addOutput("", "Texture"); this.properties = {intensity:1, precision:r.DEFAULT, texture:null}; - f._shader || (f._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, f.pixel_shader)); - }, t = function() { + d._shader || (d._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, d.pixel_shader)); + }, g = function() { this.addInput("Image", "image"); this.addOutput("", "Texture"); this.properties = {}; - }, y = function() { + }, h = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); this.properties = {mipmap_offset:0, low_precision:!1}; this._uniforms = {u_texture:0, u_mipmap_offset:this.properties.mipmap_offset}; - }, q = function() { + }, x = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); this.properties = {iterations:1, generate_mipmaps:!1, precision:r.DEFAULT}; - }, l = function() { + }, n = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); this.properties = {size:0, generate_mipmaps:!1, precision:r.DEFAULT}; - }, w = function() { + }, z = function() { this.addInput("Texture", "Texture"); this.properties = {additive:!1, antialiasing:!1, filter:!0, disable_alpha:!1, gamma:1.0}; this.size[0] = 130; @@ -4668,7 +4828,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); this.properties = {name:""}; - }, z = function() { + }, y = function() { this.addInput("Texture", "Texture"); this.properties = {flipY:!1}; this.size = [r.image_preview_size, r.image_preview_size]; @@ -4677,7 +4837,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.properties = {name:"", filter:!0}; this.size = [r.image_preview_size, r.image_preview_size]; }; - v.LGraphTexture = r; + u.LGraphTexture = r; r.title = "Texture"; r.desc = "Texture"; r.widgets_info = {name:{widget:"texture"}, filter:{widget:"checkbox"}}; @@ -4696,7 +4856,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { r.loadTexture = function(a, b) { b = b || {}; var d = a; - "http://" == d.substr(0, 7) && c.proxy && (d = c.proxy + d.substr(7)); + "http://" == d.substr(0, 7) && f.proxy && (d = f.proxy + d.substr(7)); return r.getTexturesContainer()[a] = GL.Texture.fromURL(d, b); }; r.getTexture = function(a) { @@ -4707,23 +4867,23 @@ $jscomp.polyfill("Array.prototype.values", function(v) { b = b[a]; return !b && a && ":" != a[0] ? this.loadTexture(a) : b; }; - r.getTargetTexture = function(a, b, c) { + r.getTargetTexture = function(a, b, d) { if (!a) { throw "LGraphTexture.getTargetTexture expects a reference texture"; } - switch(c) { + switch(d) { case r.LOW: - c = gl.UNSIGNED_BYTE; + d = gl.UNSIGNED_BYTE; break; case r.HIGH: - c = gl.HIGH_PRECISION_FORMAT; + d = gl.HIGH_PRECISION_FORMAT; break; case r.REUSE: return a; default: - c = a ? a.type : gl.UNSIGNED_BYTE; + d = a ? a.type : gl.UNSIGNED_BYTE; } - b && b.width == a.width && b.height == a.height && b.type == c || (b = new GL.Texture(a.width, a.height, {type:c, format:gl.RGBA, filter:gl.LINEAR})); + b && b.width == a.width && b.height == a.height && b.type == d || (b = new GL.Texture(a.width, a.height, {type:d, format:gl.RGBA, filter:gl.LINEAR})); return b; }; r.getNoiseTexture = function() { @@ -4735,8 +4895,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return this._noise_texture = a = GL.Texture.fromMemory(512, 512, a, {format:gl.RGBA, wrap:gl.REPEAT, filter:gl.NEAREST}); }; - r.prototype.onDropFile = function(a, b, c) { - a ? ("string" == typeof a ? a = GL.Texture.fromURL(a) : -1 != b.toLowerCase().indexOf(".dds") ? a = GL.Texture.fromDDSInMemory(a) : (a = new Blob([c]), a = URL.createObjectURL(a), a = GL.Texture.fromURL(a)), this._drop_texture = a, this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); + r.prototype.onDropFile = function(a, b, d) { + a ? ("string" == typeof a ? a = GL.Texture.fromURL(a) : -1 != b.toLowerCase().indexOf(".dds") ? a = GL.Texture.fromDDSInMemory(a) : (a = new Blob([d]), a = URL.createObjectURL(a), a = GL.Texture.fromURL(a)), this._drop_texture = a, this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); }; r.prototype.getExtraMenuOptions = function(a) { var b = this; @@ -4757,11 +4917,11 @@ $jscomp.polyfill("Array.prototype.values", function(v) { !1 === this.properties.filter ? a.setParameter(gl.TEXTURE_MAG_FILTER, gl.NEAREST) : a.setParameter(gl.TEXTURE_MAG_FILTER, gl.LINEAR); this.setOutputData(0, a); for (var b = 1; b < this.outputs.length; b++) { - var c = this.outputs[b]; - if (c) { - var d = null; - "width" == c.name ? d = a.width : "height" == c.name ? d = a.height : "aspect" == c.name && (d = a.width / a.height); - this.setOutputData(b, d); + var d = this.outputs[b]; + if (d) { + var c = null; + "width" == d.name ? c = a.width : "height" == d.name ? c = a.height : "aspect" == d.name && (c = a.width / a.height); + this.setOutputData(b, c); } } } @@ -4794,16 +4954,16 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if (!a) { return null; } - var b = r.image_preview_size, c = a; + var b = r.image_preview_size, d = a; if (a.format == gl.DEPTH_COMPONENT) { return null; } if (a.width > b || a.height > b) { - c = this._preview_temp_tex, this._preview_temp_tex || (this._preview_temp_tex = c = new GL.Texture(b, b, {minFilter:gl.NEAREST})), a.copyTo(c); + d = this._preview_temp_tex, this._preview_temp_tex || (this._preview_temp_tex = d = new GL.Texture(b, b, {minFilter:gl.NEAREST})), a.copyTo(d); } a = this._preview_canvas; a || (this._preview_canvas = a = createCanvas(b, b)); - c && c.toCanvas(a); + d && d.toCanvas(a); return a; }; r.prototype.getResources = function(a) { @@ -4816,24 +4976,24 @@ $jscomp.polyfill("Array.prototype.values", function(v) { r.prototype.onGetOutputs = function() { return [["width", "number"], ["height", "number"], ["aspect", "number"]]; }; - c.registerNodeType("texture/texture", r); - z.title = "Preview"; - z.desc = "Show a texture in the graph canvas"; - z.allow_preview = !1; - z.prototype.onDrawBackground = function(a) { - if (!this.flags.collapsed && (a.webgl || z.allow_preview)) { + f.registerNodeType("texture/texture", r); + y.title = "Preview"; + y.desc = "Show a texture in the graph canvas"; + y.allow_preview = !1; + y.prototype.onDrawBackground = function(a) { + if (!this.flags.collapsed && (a.webgl || y.allow_preview)) { var b = this.getInputData(0); b && (b = !b.handle && a.webgl ? b : r.generateLowResTexturePreview(b), a.save(), this.properties.flipY && (a.translate(0, this.size[1]), a.scale(1, -1)), a.drawImage(b, 0, 0, this.size[0], this.size[1]), a.restore()); } }; - c.registerNodeType("texture/preview", z); + f.registerNodeType("texture/preview", y); E.title = "Save"; E.desc = "Save a texture in the repository"; E.prototype.onExecute = function() { var a = this.getInputData(0); a && (this.properties.name && (r.storeTexture ? r.storeTexture(this.properties.name, a) : r.getTexturesContainer()[this.properties.name] = a), this.setOutputData(0, a)); }; - c.registerNodeType("texture/save", E); + f.registerNodeType("texture/save", E); C.widgets_info = {uvcode:{widget:"textarea", height:100}, pixelcode:{widget:"textarea", height:100}, precision:{widget:"combo", values:r.MODE_VALUES}}; C.title = "Operation"; C.desc = "Texture shader operation"; @@ -4854,15 +5014,15 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } else { var b = this.getInputData(1); if (this.properties.uvcode || this.properties.pixelcode) { - var c = 512, d = 512; - a ? (c = a.width, d = a.height) : b && (c = b.width, d = b.height); - this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, d, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); + var d = 512, c = 512; + a ? (d = a.width, c = a.height) : b && (d = b.width, c = b.height); + this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(d, c, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); var e = ""; this.properties.uvcode && (e = "uv = " + this.properties.uvcode, -1 != this.properties.uvcode.indexOf(";") && (e = this.properties.uvcode)); var f = ""; this.properties.pixelcode && (f = "result = " + this.properties.pixelcode, -1 != this.properties.pixelcode.indexOf(";") && (f = this.properties.pixelcode)); - var g = this._shader; - if (!g || this._shader_code != e + "|" + f) { + var n = this._shader; + if (!n || this._shader_code != e + "|" + f) { try { this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, C.pixel_shader, {UV_CODE:e, PIXEL_CODE:f}), this.boxcolor = "#00FF00"; } catch (I) { @@ -4872,13 +5032,13 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } this.boxcolor = "#FF0000"; this._shader_code = e + "|" + f; - g = this._shader; + n = this._shader; } - if (g) { + if (n) { this.boxcolor = "green"; var l = this.getInputData(2); null != l ? this.properties.value = l : l = parseFloat(this.properties.value); - var h = this.graph.getTime(); + var g = this.graph.getTime(); this._tex.drawTo(function() { gl.disable(gl.DEPTH_TEST); gl.disable(gl.CULL_FACE); @@ -4886,7 +5046,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { a && a.bind(0); b && b.bind(1); var e = Mesh.getScreenQuad(); - g.uniforms({u_texture:0, u_textureB:1, value:l, texSize:[c, d], time:h}).draw(e); + n.uniforms({u_texture:0, u_textureB:1, value:l, texSize:[d, c], time:g}).draw(e); }); this.setOutputData(0, this._tex); } else { @@ -4897,7 +5057,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } }; C.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 texSize;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\tuniform float value;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tUV_CODE;\n\r\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\r\n\t\t\t\tvec3 color = color4.rgb;\n\r\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\r\n\t\t\t\tvec3 colorB = color4B.rgb;\n\r\n\t\t\t\tvec3 result = color;\n\r\n\t\t\t\tfloat alpha = 1.0;\n\r\n\t\t\t\tPIXEL_CODE;\n\r\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/operation", C); + f.registerNodeType("texture/operation", C); B.title = "Shader"; B.desc = "Texture shader"; B.widgets_info = {code:{type:"code"}, precision:{widget:"combo", values:r.MODE_VALUES}}; @@ -4905,14 +5065,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if ("code" == a && (a = this.getShader())) { b = a.uniformInfo; if (this.inputs) { - for (var c = {}, d = 0; d < this.inputs.length; ++d) { - var e = this.getInputInfo(d); - e && (b[e.name] && !c[e.name] ? c[e.name] = !0 : (this.removeInput(d), d--)); + for (var d = {}, c = 0; c < this.inputs.length; ++c) { + var e = this.getInputInfo(c); + e && (b[e.name] && !d[e.name] ? d[e.name] = !0 : (this.removeInput(c), c--)); } } - for (d in b) { - if (e = a.uniformInfo[d], null !== e.loc && "time" != d) { - if (this._shader.samplers[d]) { + for (c in b) { + if (e = a.uniformInfo[c], null !== e.loc && "time" != c) { + if (this._shader.samplers[c]) { b = "texture"; } else { switch(e.size) { @@ -4938,14 +5098,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { continue; } } - c = this.findInputSlot(d); - if (-1 != c && (e = this.getInputInfo(c))) { + d = this.findInputSlot(c); + if (-1 != d && (e = this.getInputInfo(d))) { if (e.type == b) { continue; } - this.removeInput(c, b); + this.removeInput(d, b); } - this.addInput(d, b); + this.addInput(c, b); } } } @@ -4963,8 +5123,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { var a = this.getShader(); if (a) { for (var b = 0; b < this.inputs.length; ++b) { - var c = this.getInputInfo(b), d = this.getInputData(b); - null != d && (d.constructor === GL.Texture && (d.bind(slot), d = slot, slot++), a.setUniform(c.name, d)); + var d = this.getInputInfo(b), c = this.getInputData(b); + null != c && (c.constructor === GL.Texture && (c.bind(slot), c = slot, slot++), a.setUniform(d.name, c)); } this._tex && this._tex.width == this.properties.width && this._tex.height == this.properties.height || (this._tex = new GL.Texture(this.properties.width, this.properties.height, {format:gl.RGBA, filter:gl.LINEAR})); var e = this._tex, f = this.graph.getTime(); @@ -4976,7 +5136,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } }; B.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\t"; - c.registerNodeType("texture/shader", B); + f.registerNodeType("texture/shader", B); D.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; D.title = "Scale/Offset"; D.desc = "Applies an scaling and offseting"; @@ -4986,29 +5146,29 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if (this.properties.precision === r.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = a.width, c = a.height, d = this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT; - this.precision === r.DEFAULT && (d = a.type); - this._tex && this._tex.width == b && this._tex.height == c && this._tex.type == d || (this._tex = new GL.Texture(b, c, {type:d, format:gl.RGBA, filter:gl.LINEAR})); + var b = a.width, d = a.height, c = this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT; + this.precision === r.DEFAULT && (c = a.type); + this._tex && this._tex.width == b && this._tex.height == d && this._tex.type == c || (this._tex = new GL.Texture(b, d, {type:c, format:gl.RGBA, filter:gl.LINEAR})); var e = this._shader; e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, D.pixel_shader)); var f = this.getInputData(1); f ? (this.properties.scale[0] = f[0], this.properties.scale[1] = f[1]) : f = this.properties.scale; - var g = this.getInputData(2); - g ? (this.properties.offset[0] = g[0], this.properties.offset[1] = g[1]) : g = this.properties.offset; + var n = this.getInputData(2); + n ? (this.properties.offset[0] = n[0], this.properties.offset[1] = n[1]) : n = this.properties.offset; this._tex.drawTo(function() { gl.disable(gl.DEPTH_TEST); gl.disable(gl.CULL_FACE); gl.disable(gl.BLEND); a.bind(0); var b = Mesh.getScreenQuad(); - e.uniforms({u_texture:0, u_scale:f, u_offset:g}).draw(b); + e.uniforms({u_texture:0, u_scale:f, u_offset:n}).draw(b); }); this.setOutputData(0, this._tex); } } }; D.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 u_scale;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv = uv / u_scale - u_offset;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/scaleOffset", D); + f.registerNodeType("texture/scaleOffset", D); A.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; A.title = "Warp"; A.desc = "Texture warp operation"; @@ -5018,9 +5178,9 @@ $jscomp.polyfill("Array.prototype.values", function(v) { if (this.properties.precision === r.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = this.getInputData(1), c = 512, d = 512; - a ? (c = a.width, d = a.height) : b && (c = b.width, d = b.height); - this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, d, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); + var b = this.getInputData(1), d = 512, c = 512; + a ? (d = a.width, c = a.height) : b && (d = b.width, c = b.height); + this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(d, c, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); var e = this._shader; e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, A.pixel_shader)); var f = this.getInputData(2); @@ -5031,18 +5191,18 @@ $jscomp.polyfill("Array.prototype.values", function(v) { gl.disable(gl.BLEND); a && a.bind(0); b && b.bind(1); - var c = Mesh.getScreenQuad(); - e.uniforms({u_texture:0, u_textureB:1, u_factor:f}).draw(c); + var d = Mesh.getScreenQuad(); + e.uniforms({u_texture:0, u_textureB:1, u_factor:f}).draw(d); }); this.setOutputData(0, this._tex); } } }; A.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv += ( texture2D(u_textureB, uv).rg - vec2(0.5)) * u_factor;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/warp", A); - w.title = "to Viewport"; - w.desc = "Texture to viewport"; - w.prototype.onExecute = function() { + f.registerNodeType("texture/warp", A); + z.title = "to Viewport"; + z.desc = "Texture to viewport"; + z.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { this.properties.disable_alpha ? gl.disable(gl.BLEND) : (gl.enable(gl.BLEND), this.properties.additive ? gl.blendFunc(gl.SRC_ALPHA, gl.ONE) : gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA)); @@ -5051,115 +5211,115 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.isInputConnected(1) && (b = this.getInputData(1)); a.setParameter(gl.TEXTURE_MAG_FILTER, this.properties.filter ? gl.LINEAR : gl.NEAREST); if (this.properties.antialiasing) { - w._shader || (w._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, w.aa_pixel_shader)); + z._shader || (z._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, z.aa_pixel_shader)); gl.getViewport(); - var c = Mesh.getScreenQuad(); + var d = Mesh.getScreenQuad(); a.bind(0); - w._shader.uniforms({u_texture:0, uViewportSize:[a.width, a.height], u_igamma:1 / b, inverseVP:[1 / a.width, 1 / a.height]}).draw(c); + z._shader.uniforms({u_texture:0, uViewportSize:[a.width, a.height], u_igamma:1 / b, inverseVP:[1 / a.width, 1 / a.height]}).draw(d); } else { - 1.0 != b ? (w._gamma_shader || (w._gamma_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.gamma_pixel_shader)), a.toViewport(w._gamma_shader, {u_texture:0, u_igamma:1 / b})) : a.toViewport(); + 1.0 != b ? (z._gamma_shader || (z._gamma_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, z.gamma_pixel_shader)), a.toViewport(z._gamma_shader, {u_texture:0, u_igamma:1 / b})) : a.toViewport(); } } }; - w.prototype.onGetInputs = function() { + z.prototype.onGetInputs = function() { return [["gamma", "number"]]; }; - w.aa_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 uViewportSize;\n\r\n\t\t\tuniform vec2 inverseVP;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\t#define FXAA_REDUCE_MIN (1.0/ 128.0)\n\r\n\t\t\t#define FXAA_REDUCE_MUL (1.0 / 8.0)\n\r\n\t\t\t#define FXAA_SPAN_MAX 8.0\n\r\n\t\t\t\n\r\n\t\t\t/* from mitsuhiko/webgl-meincraft based on the code on geeks3d.com */\n\r\n\t\t\tvec4 applyFXAA(sampler2D tex, vec2 fragCoord)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\t/*vec2 inverseVP = vec2(1.0 / uViewportSize.x, 1.0 / uViewportSize.y);*/\n\r\n\t\t\t\tvec3 rgbNW = texture2D(tex, (fragCoord + vec2(-1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbNE = texture2D(tex, (fragCoord + vec2(1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSW = texture2D(tex, (fragCoord + vec2(-1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSE = texture2D(tex, (fragCoord + vec2(1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbM = texture2D(tex, fragCoord * inverseVP).xyz;\n\r\n\t\t\t\tvec3 luma = vec3(0.299, 0.587, 0.114);\n\r\n\t\t\t\tfloat lumaNW = dot(rgbNW, luma);\n\r\n\t\t\t\tfloat lumaNE = dot(rgbNE, luma);\n\r\n\t\t\t\tfloat lumaSW = dot(rgbSW, luma);\n\r\n\t\t\t\tfloat lumaSE = dot(rgbSE, luma);\n\r\n\t\t\t\tfloat lumaM = dot(rgbM, luma);\n\r\n\t\t\t\tfloat lumaMin = min(lumaM, min(min(lumaNW, lumaNE), min(lumaSW, lumaSE)));\n\r\n\t\t\t\tfloat lumaMax = max(lumaM, max(max(lumaNW, lumaNE), max(lumaSW, lumaSE)));\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec2 dir;\n\r\n\t\t\t\tdir.x = -((lumaNW + lumaNE) - (lumaSW + lumaSE));\n\r\n\t\t\t\tdir.y = ((lumaNW + lumaSW) - (lumaNE + lumaSE));\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat dirReduce = max((lumaNW + lumaNE + lumaSW + lumaSE) * (0.25 * FXAA_REDUCE_MUL), FXAA_REDUCE_MIN);\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat rcpDirMin = 1.0 / (min(abs(dir.x), abs(dir.y)) + dirReduce);\n\r\n\t\t\t\tdir = min(vec2(FXAA_SPAN_MAX, FXAA_SPAN_MAX), max(vec2(-FXAA_SPAN_MAX, -FXAA_SPAN_MAX), dir * rcpDirMin)) * inverseVP;\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec3 rgbA = 0.5 * (texture2D(tex, fragCoord * inverseVP + dir * (1.0 / 3.0 - 0.5)).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * (2.0 / 3.0 - 0.5)).xyz);\n\r\n\t\t\t\tvec3 rgbB = rgbA * 0.5 + 0.25 * (texture2D(tex, fragCoord * inverseVP + dir * -0.5).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * 0.5).xyz);\n\r\n\t\t\t\t\n\r\n\t\t\t\t//return vec4(rgbA,1.0);\n\r\n\t\t\t\tfloat lumaB = dot(rgbB, luma);\n\r\n\t\t\t\tif ((lumaB < lumaMin) || (lumaB > lumaMax))\n\r\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\r\n\t\t\t\tif(u_igamma != 1.0)\n\r\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\r\n\t\t\t\treturn color;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\r\n\t\t\t}\n\r\n\t\t\t"; - w.gamma_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\r\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\r\n\t\t\t gl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/toviewport", w); - l.title = "Copy"; - l.desc = "Copy Texture"; - l.widgets_info = {size:{widget:"combo", values:[0, 32, 64, 128, 256, 512, 1024, 2048]}, precision:{widget:"combo", values:r.MODE_VALUES}}; - l.prototype.onExecute = function() { + z.aa_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 uViewportSize;\n\r\n\t\t\tuniform vec2 inverseVP;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\t#define FXAA_REDUCE_MIN (1.0/ 128.0)\n\r\n\t\t\t#define FXAA_REDUCE_MUL (1.0 / 8.0)\n\r\n\t\t\t#define FXAA_SPAN_MAX 8.0\n\r\n\t\t\t\n\r\n\t\t\t/* from mitsuhiko/webgl-meincraft based on the code on geeks3d.com */\n\r\n\t\t\tvec4 applyFXAA(sampler2D tex, vec2 fragCoord)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\t/*vec2 inverseVP = vec2(1.0 / uViewportSize.x, 1.0 / uViewportSize.y);*/\n\r\n\t\t\t\tvec3 rgbNW = texture2D(tex, (fragCoord + vec2(-1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbNE = texture2D(tex, (fragCoord + vec2(1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSW = texture2D(tex, (fragCoord + vec2(-1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSE = texture2D(tex, (fragCoord + vec2(1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbM = texture2D(tex, fragCoord * inverseVP).xyz;\n\r\n\t\t\t\tvec3 luma = vec3(0.299, 0.587, 0.114);\n\r\n\t\t\t\tfloat lumaNW = dot(rgbNW, luma);\n\r\n\t\t\t\tfloat lumaNE = dot(rgbNE, luma);\n\r\n\t\t\t\tfloat lumaSW = dot(rgbSW, luma);\n\r\n\t\t\t\tfloat lumaSE = dot(rgbSE, luma);\n\r\n\t\t\t\tfloat lumaM = dot(rgbM, luma);\n\r\n\t\t\t\tfloat lumaMin = min(lumaM, min(min(lumaNW, lumaNE), min(lumaSW, lumaSE)));\n\r\n\t\t\t\tfloat lumaMax = max(lumaM, max(max(lumaNW, lumaNE), max(lumaSW, lumaSE)));\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec2 dir;\n\r\n\t\t\t\tdir.x = -((lumaNW + lumaNE) - (lumaSW + lumaSE));\n\r\n\t\t\t\tdir.y = ((lumaNW + lumaSW) - (lumaNE + lumaSE));\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat dirReduce = max((lumaNW + lumaNE + lumaSW + lumaSE) * (0.25 * FXAA_REDUCE_MUL), FXAA_REDUCE_MIN);\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat rcpDirMin = 1.0 / (min(abs(dir.x), abs(dir.y)) + dirReduce);\n\r\n\t\t\t\tdir = min(vec2(FXAA_SPAN_MAX, FXAA_SPAN_MAX), max(vec2(-FXAA_SPAN_MAX, -FXAA_SPAN_MAX), dir * rcpDirMin)) * inverseVP;\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec3 rgbA = 0.5 * (texture2D(tex, fragCoord * inverseVP + dir * (1.0 / 3.0 - 0.5)).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * (2.0 / 3.0 - 0.5)).xyz);\n\r\n\t\t\t\tvec3 rgbB = rgbA * 0.5 + 0.25 * (texture2D(tex, fragCoord * inverseVP + dir * -0.5).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * 0.5).xyz);\n\r\n\t\t\t\t\n\r\n\t\t\t\t//return vec4(rgbA,1.0);\n\r\n\t\t\t\tfloat lumaB = dot(rgbB, luma);\n\r\n\t\t\t\tif ((lumaB < lumaMin) || (lumaB > lumaMax))\n\r\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\r\n\t\t\t\tif(u_igamma != 1.0)\n\r\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\r\n\t\t\t\treturn color;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\r\n\t\t\t}\n\r\n\t\t\t"; + z.gamma_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\r\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\r\n\t\t\t gl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/toviewport", z); + n.title = "Copy"; + n.desc = "Copy Texture"; + n.widgets_info = {size:{widget:"combo", values:[0, 32, 64, 128, 256, 512, 1024, 2048]}, precision:{widget:"combo", values:r.MODE_VALUES}}; + n.prototype.onExecute = function() { var a = this.getInputData(0); if ((a || this._temp_texture) && this.isOutputConnected(0)) { if (a) { - var b = a.width, c = a.height; - 0 != this.properties.size && (c = b = this.properties.size); - var d = this._temp_texture, e = a.type; + var b = a.width, d = a.height; + 0 != this.properties.size && (d = b = this.properties.size); + var c = this._temp_texture, e = a.type; this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); - d && d.width == b && d.height == c && d.type == e || (d = gl.LINEAR, this.properties.generate_mipmaps && isPowerOfTwo(b) && isPowerOfTwo(c) && (d = gl.LINEAR_MIPMAP_LINEAR), this._temp_texture = new GL.Texture(b, c, {type:e, format:gl.RGBA, minFilter:d, magFilter:gl.LINEAR})); + c && c.width == b && c.height == d && c.type == e || (c = gl.LINEAR, this.properties.generate_mipmaps && isPowerOfTwo(b) && isPowerOfTwo(d) && (c = gl.LINEAR_MIPMAP_LINEAR), this._temp_texture = new GL.Texture(b, d, {type:e, format:gl.RGBA, minFilter:c, magFilter:gl.LINEAR})); a.copyTo(this._temp_texture); this.properties.generate_mipmaps && (this._temp_texture.bind(0), gl.generateMipmap(this._temp_texture.texture_type), this._temp_texture.unbind(0)); } this.setOutputData(0, this._temp_texture); } }; - c.registerNodeType("texture/copy", l); - q.title = "Downsample"; - q.desc = "Downsample Texture"; - q.widgets_info = {iterations:{type:"number", step:1, precision:0, min:1}, precision:{widget:"combo", values:r.MODE_VALUES}}; - q.prototype.onExecute = function() { + f.registerNodeType("texture/copy", n); + x.title = "Downsample"; + x.desc = "Downsample Texture"; + x.widgets_info = {iterations:{type:"number", step:1, precision:0, min:1}, precision:{widget:"combo", values:r.MODE_VALUES}}; + x.prototype.onExecute = function() { var a = this.getInputData(0); if ((a || this._temp_texture) && this.isOutputConnected(0) && a && a.texture_type === GL.TEXTURE_2D) { - var b = q._shader; - b || (q._shader = b = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, q.pixel_shader)); - var c = a.width | 0, d = a.height | 0, e = a.type; + var b = x._shader; + b || (x._shader = b = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, x.pixel_shader)); + var d = a.width | 0, c = a.height | 0, e = a.type; this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); - var f = this.properties.iterations || 1, g = a, l = []; + var f = this.properties.iterations || 1, n = a, l = []; e = {type:e, format:a.format}; - var h = vec2.create(), k = {u_offset:h}; + var g = vec2.create(), h = {u_offset:g}; this._texture && GL.Texture.releaseTemporary(this._texture); - for (var w = 0; w < f; ++w) { - h[0] = 1 / c; - h[1] = 1 / d; - c = c >> 1 || 0; + for (var k = 0; k < f; ++k) { + g[0] = 1 / d; + g[1] = 1 / c; d = d >> 1 || 0; - a = GL.Texture.getTemporary(c, d, e); + c = c >> 1 || 0; + a = GL.Texture.getTemporary(d, c, e); l.push(a); - g.setParameter(GL.TEXTURE_MAG_FILTER, GL.NEAREST); - g.copyTo(a, b, k); - if (1 == c && 1 == d) { + n.setParameter(GL.TEXTURE_MAG_FILTER, GL.NEAREST); + n.copyTo(a, b, h); + if (1 == d && 1 == c) { break; } - g = a; + n = a; } this._texture = l.pop(); - for (w = 0; w < l.length; ++w) { - GL.Texture.releaseTemporary(l[w]); + for (k = 0; k < l.length; ++k) { + GL.Texture.releaseTemporary(l[k]); } this.properties.generate_mipmaps && (this._texture.bind(0), gl.generateMipmap(this._texture.texture_type), this._texture.unbind(0)); this.setOutputData(0, this._texture); } }; - q.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, 0.0 ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( 0.0, u_offset.y ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, u_offset.y ) );\n\r\n\t\t\t gl_FragColor = color * 0.25;\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/downsample", q); - y.title = "Average"; - y.desc = "Compute a partial average (32 random samples) of a texture and stores it as a 1x1 pixel texture"; - y.prototype.onExecute = function() { + x.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, 0.0 ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( 0.0, u_offset.y ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, u_offset.y ) );\n\r\n\t\t\t gl_FragColor = color * 0.25;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/downsample", x); + h.title = "Average"; + h.desc = "Compute a partial average (32 random samples) of a texture and stores it as a 1x1 pixel texture"; + h.prototype.onExecute = function() { var a = this.getInputData(0); if (a && this.isOutputConnected(0)) { - if (!y._shader) { - y._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, y.pixel_shader); - for (var b = new Float32Array(32), c = 0; 32 > c; ++c) { - b[c] = Math.random(); + if (!h._shader) { + h._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, h.pixel_shader); + for (var b = new Float32Array(32), d = 0; 32 > d; ++d) { + b[d] = Math.random(); } - y._shader.uniforms({u_samples_a:b.subarray(0, 16), u_samples_b:b.subarray(16, 32)}); + h._shader.uniforms({u_samples_a:b.subarray(0, 16), u_samples_b:b.subarray(16, 32)}); } b = this._temp_texture; - c = this.properties.low_precision ? gl.UNSIGNED_BYTE : a.type; - b && b.type == c || (this._temp_texture = new GL.Texture(1, 1, {type:c, format:gl.RGBA, filter:gl.NEAREST})); - var d = y._shader, e = this._uniforms; + d = this.properties.low_precision ? gl.UNSIGNED_BYTE : a.type; + b && b.type == d || (this._temp_texture = new GL.Texture(1, 1, {type:d, format:gl.RGBA, filter:gl.NEAREST})); + var c = h._shader, e = this._uniforms; e.u_mipmap_offset = this.properties.mipmap_offset; this._temp_texture.drawTo(function() { - a.toViewport(d, e); + a.toViewport(c, e); }); this.setOutputData(0, this._temp_texture); } }; - y.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform mat4 u_samples_a;\n\r\n\t\t\tuniform mat4 u_samples_b;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_mipmap_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\r\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\r\n\t\t\t\t\t{\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t}\n\r\n\t\t\t gl_FragColor = color * 0.03125;\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/average", y); - t.title = "Image to Texture"; - t.desc = "Uploads an image to the GPU"; - t.prototype.onExecute = function() { + h.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform mat4 u_samples_a;\n\r\n\t\t\tuniform mat4 u_samples_b;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_mipmap_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\r\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\r\n\t\t\t\t\t{\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t}\n\r\n\t\t\t gl_FragColor = color * 0.03125;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/average", h); + g.title = "Image to Texture"; + g.desc = "Uploads an image to the GPU"; + g.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { - var b = a.videoWidth || a.width, c = a.videoHeight || a.height; + var b = a.videoWidth || a.width, d = a.videoHeight || a.height; if (a.gltexture) { this.setOutputData(0, a.gltexture); } else { - var d = this._temp_texture; - d && d.width == b && d.height == c || (this._temp_texture = new GL.Texture(b, c, {format:gl.RGBA, filter:gl.LINEAR})); + var c = this._temp_texture; + c && c.width == b && c.height == d || (this._temp_texture = new GL.Texture(b, d, {format:gl.RGBA, filter:gl.LINEAR})); try { this._temp_texture.uploadImage(a); } catch (J) { @@ -5170,12 +5330,12 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - c.registerNodeType("texture/imageToTexture", t); - f.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - f.title = "LUT"; - f.desc = "Apply LUT to Texture"; - f.widgets_info = {texture:{widget:"texture"}}; - f.prototype.onExecute = function() { + f.registerNodeType("texture/imageToTexture", g); + d.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + d.title = "LUT"; + d.desc = "Apply LUT to Texture"; + d.widgets_info = {texture:{widget:"texture"}}; + d.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); if (this.properties.precision === r.PASS_THROUGH) { @@ -5195,7 +5355,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); this._tex.drawTo(function() { b.bind(1); - a.toViewport(f._shader, {u_texture:0, u_textureB:1, u_amount:c}); + a.toViewport(d._shader, {u_texture:0, u_textureB:1, u_amount:c}); }); this.setOutputData(0, this._tex); } else { @@ -5205,118 +5365,118 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - f.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform float u_amount;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\r\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\r\n\t\t\t\t mediump vec2 quad1;\n\r\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\r\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\r\n\t\t\t\t mediump vec2 quad2;\n\r\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\r\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\r\n\t\t\t\t highp vec2 texPos1;\n\r\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t highp vec2 texPos2;\n\r\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\r\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\r\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\r\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/LUT", f); - d.title = "Texture to Channels"; - d.desc = "Split texture channels"; - d.prototype.onExecute = function() { + d.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform float u_amount;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\r\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\r\n\t\t\t\t mediump vec2 quad1;\n\r\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\r\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\r\n\t\t\t\t mediump vec2 quad2;\n\r\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\r\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\r\n\t\t\t\t highp vec2 texPos1;\n\r\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t highp vec2 texPos2;\n\r\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\r\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\r\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\r\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/LUT", d); + b.title = "Texture to Channels"; + b.desc = "Split texture channels"; + b.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { this._channels || (this._channels = Array(4)); - for (var b = 0, c = 0; 4 > c; c++) { - this.isOutputConnected(c) ? (this._channels[c] && this._channels[c].width == a.width && this._channels[c].height == a.height && this._channels[c].type == a.type || (this._channels[c] = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})), b++) : this._channels[c] = null; + for (var d = 0, c = 0; 4 > c; c++) { + this.isOutputConnected(c) ? (this._channels[c] && this._channels[c].width == a.width && this._channels[c].height == a.height && this._channels[c].type == a.type || (this._channels[c] = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})), d++) : this._channels[c] = null; } - if (b) { + if (d) { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var e = Mesh.getScreenQuad(), f = d._shader, g = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; + var e = Mesh.getScreenQuad(), f = b._shader, n = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; for (c = 0; 4 > c; c++) { this._channels[c] && (this._channels[c].drawTo(function() { a.bind(0); - f.uniforms({u_texture:0, u_mask:g[c]}).draw(e); + f.uniforms({u_texture:0, u_mask:n[c]}).draw(e); }), this.setOutputData(c, this._channels[c])); } } } }; - d.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec4 u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/textureChannels", d); - b.title = "Channels to Texture"; - b.desc = "Split texture channels"; - b.prototype.onExecute = function() { - var a = [this.getInputData(0), this.getInputData(1), this.getInputData(2), this.getInputData(3)]; - if (a[0] && a[1] && a[2] && a[3]) { + b.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec4 u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/textureChannels", b); + a.title = "Channels to Texture"; + a.desc = "Split texture channels"; + a.prototype.onExecute = function() { + var b = [this.getInputData(0), this.getInputData(1), this.getInputData(2), this.getInputData(3)]; + if (b[0] && b[1] && b[2] && b[3]) { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var c = Mesh.getScreenQuad(), d = b._shader; - this._tex = r.getTargetTexture(a[0], this._tex); + var d = Mesh.getScreenQuad(), c = a._shader; + this._tex = r.getTargetTexture(b[0], this._tex); this._tex.drawTo(function() { - a[0].bind(0); - a[1].bind(1); - a[2].bind(2); - a[3].bind(3); - d.uniforms({u_textureR:0, u_textureG:1, u_textureB:2, u_textureA:3}).draw(c); + b[0].bind(0); + b[1].bind(1); + b[2].bind(2); + b[3].bind(3); + c.uniforms({u_textureR:0, u_textureG:1, u_textureB:2, u_textureA:3}).draw(d); }); this.setOutputData(0, this._tex); } }; - b.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureR;\n\r\n\t\t\tuniform sampler2D u_textureG;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( \r\n\t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/channelsTexture", b); - a.title = "Gradient"; - a.desc = "Generates a gradient"; - a["@A"] = {type:"color"}; - a["@B"] = {type:"color"}; - a["@texture_size"] = {type:"enum", values:[32, 64, 128, 256, 512]}; - a.prototype.onExecute = function() { + a.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureR;\n\r\n\t\t\tuniform sampler2D u_textureG;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( \r\n\t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/channelsTexture", a); + l.title = "Gradient"; + l.desc = "Generates a gradient"; + l["@A"] = {type:"color"}; + l["@B"] = {type:"color"}; + l["@texture_size"] = {type:"enum", values:[32, 64, 128, 256, 512]}; + l.prototype.onExecute = function() { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var b = GL.Mesh.getScreenQuad(), c = a._shader, d = this.getInputData(0); + var a = GL.Mesh.getScreenQuad(), b = l._shader, d = this.getInputData(0); d || (d = this.properties.A); - var e = this.getInputData(1); - e || (e = this.properties.B); - for (var f = 2; f < this.inputs.length; f++) { - var g = this.inputs[f], l = this.getInputData(f); - void 0 !== l && (this.properties[g.name] = l); + var c = this.getInputData(1); + c || (c = this.properties.B); + for (var e = 2; e < this.inputs.length; e++) { + var f = this.inputs[e], n = this.getInputData(e); + void 0 !== n && (this.properties[f.name] = n); } - var h = this._uniforms; + var g = this._uniforms; this._uniforms.u_angle = this.properties.angle * DEG2RAD; this._uniforms.u_scale = this.properties.scale; - vec3.copy(h.u_colorA, d); - vec3.copy(h.u_colorB, e); + vec3.copy(g.u_colorA, d); + vec3.copy(g.u_colorB, c); d = parseInt(this.properties.texture_size); this._tex && this._tex.width == d || (this._tex = new GL.Texture(d, d, {format:gl.RGB, filter:gl.LINEAR})); this._tex.drawTo(function() { - c.uniforms(h).draw(b); + b.uniforms(g).draw(a); }); this.setOutputData(0, this._tex); }; - a.prototype.onGetInputs = function() { + l.prototype.onGetInputs = function() { return [["angle", "number"], ["scale", "number"]]; }; - a.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_angle;\n\r\n\t\t\tuniform float u_scale;\n\r\n\t\t\tuniform vec3 u_colorA;\n\r\n\t\t\tuniform vec3 u_colorB;\n\r\n\t\t\t\n\r\n\t\t\tvec2 rotate(vec2 v, float angle)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec2 result;\n\r\n\t\t\t\tfloat _cos = cos(angle);\n\r\n\t\t\t\tfloat _sin = sin(angle);\n\r\n\t\t\t\tresult.x = v.x * _cos - v.y * _sin;\n\r\n\t\t\t\tresult.y = v.x * _sin + v.y * _cos;\n\r\n\t\t\t\treturn result;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat f = (rotate(u_scale * (v_coord - vec2(0.5)), u_angle) + vec2(0.5)).x;\n\r\n\t\t\t\tvec3 color = mix(u_colorA,u_colorB,clamp(f,0.0,1.0));\n\r\n\t\t\t gl_FragColor = vec4(color,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/gradient", a); - k.title = "Mix"; - k.desc = "Generates a texture mixing two textures"; - k.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - k.prototype.onExecute = function() { + l.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_angle;\n\r\n\t\t\tuniform float u_scale;\n\r\n\t\t\tuniform vec3 u_colorA;\n\r\n\t\t\tuniform vec3 u_colorB;\n\r\n\t\t\t\n\r\n\t\t\tvec2 rotate(vec2 v, float angle)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec2 result;\n\r\n\t\t\t\tfloat _cos = cos(angle);\n\r\n\t\t\t\tfloat _sin = sin(angle);\n\r\n\t\t\t\tresult.x = v.x * _cos - v.y * _sin;\n\r\n\t\t\t\tresult.y = v.x * _sin + v.y * _cos;\n\r\n\t\t\t\treturn result;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat f = (rotate(u_scale * (v_coord - vec2(0.5)), u_angle) + vec2(0.5)).x;\n\r\n\t\t\t\tvec3 color = mix(u_colorA,u_colorB,clamp(f,0.0,1.0));\n\r\n\t\t\t gl_FragColor = vec4(color,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/gradient", l); + q.title = "Mix"; + q.desc = "Generates a texture mixing two textures"; + q.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + q.prototype.onExecute = function() { var a = this.getInputData(0); if (this.isOutputConnected(0)) { if (this.properties.precision === r.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = this.getInputData(1), c = this.getInputData(2); - if (a && b && c) { + var b = this.getInputData(1), d = this.getInputData(2); + if (a && b && d) { this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var d = Mesh.getScreenQuad(), e = k._shader; + var c = Mesh.getScreenQuad(), e = q._shader; this._tex.drawTo(function() { a.bind(0); b.bind(1); - c.bind(2); - e.uniforms({u_textureA:0, u_textureB:1, u_textureMix:2}).draw(d); + d.bind(2); + e.uniforms({u_textureA:0, u_textureB:1, u_textureMix:2}).draw(c); }); this.setOutputData(0, this._tex); } } } }; - k.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureMix;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = mix( texture2D(u_textureA, v_coord), texture2D(u_textureB, v_coord), texture2D(u_textureMix, v_coord) );\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/mix", k); - g.title = "Edges"; - g.desc = "Detects edges"; - g.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - g.prototype.onExecute = function() { + q.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureMix;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = mix( texture2D(u_textureA, v_coord), texture2D(u_textureB, v_coord), texture2D(u_textureMix, v_coord) );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/mix", q); + e.title = "Edges"; + e.desc = "Detects edges"; + e.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; + e.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); if (this.properties.precision === r.PASS_THROUGH) { @@ -5326,111 +5486,111 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var b = Mesh.getScreenQuad(), c = g._shader, d = this.properties.invert, e = this.properties.factor; + var b = Mesh.getScreenQuad(), d = e._shader, c = this.properties.invert, f = this.properties.factor; this._tex.drawTo(function() { a.bind(0); - c.uniforms({u_texture:0, u_isize:[1 / a.width, 1 / a.height], u_factor:e, u_invert:d ? 1 : 0}).draw(b); + d.uniforms({u_texture:0, u_isize:[1 / a.width, 1 / a.height], u_factor:f, u_invert:c ? 1 : 0}).draw(b); }); this.setOutputData(0, this._tex); } } } }; - g.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_isize;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 up = texture2D(u_texture, v_coord + u_isize * vec2(0.0,1.0) );\n\r\n\t\t\t\tvec4 down = texture2D(u_texture, v_coord + u_isize * vec2(0.0,-1.0) );\n\r\n\t\t\t\tvec4 left = texture2D(u_texture, v_coord + u_isize * vec2(1.0,0.0) );\n\r\n\t\t\t\tvec4 right = texture2D(u_texture, v_coord + u_isize * vec2(-1.0,0.0) );\n\r\n\t\t\t\tvec4 diff = abs(center - up) + abs(center - down) + abs(center - left) + abs(center - right);\n\r\n\t\t\t\tdiff *= u_factor;\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tdiff.xyz = vec3(1.0) - diff.xyz;\n\r\n\t\t\t gl_FragColor = vec4( diff.xyz, center.a );\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/edges", g); - x.title = "Depth Range"; - x.desc = "Generates a texture with a depth range"; - x.prototype.onExecute = function() { + e.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_isize;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 up = texture2D(u_texture, v_coord + u_isize * vec2(0.0,1.0) );\n\r\n\t\t\t\tvec4 down = texture2D(u_texture, v_coord + u_isize * vec2(0.0,-1.0) );\n\r\n\t\t\t\tvec4 left = texture2D(u_texture, v_coord + u_isize * vec2(1.0,0.0) );\n\r\n\t\t\t\tvec4 right = texture2D(u_texture, v_coord + u_isize * vec2(-1.0,0.0) );\n\r\n\t\t\t\tvec4 diff = abs(center - up) + abs(center - down) + abs(center - left) + abs(center - right);\n\r\n\t\t\t\tdiff *= u_factor;\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tdiff.xyz = vec3(1.0) - diff.xyz;\n\r\n\t\t\t gl_FragColor = vec4( diff.xyz, center.a );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/edges", e); + w.title = "Depth Range"; + w.desc = "Generates a texture with a depth range"; + w.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); if (a) { var b = gl.UNSIGNED_BYTE; this.properties.high_precision && (b = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); this._temp_texture && this._temp_texture.type == b && this._temp_texture.width == a.width && this._temp_texture.height == a.height || (this._temp_texture = new GL.Texture(a.width, a.height, {type:b, format:gl.RGBA, filter:gl.LINEAR})); - var c = this._uniforms; + var d = this._uniforms; b = this.properties.distance; this.isInputConnected(1) && (b = this.getInputData(1), this.properties.distance = b); - var d = this.properties.range; - this.isInputConnected(2) && (d = this.getInputData(2), this.properties.range = d); - c.u_distance = b; - c.u_range = d; + var c = this.properties.range; + this.isInputConnected(2) && (c = this.getInputData(2), this.properties.range = c); + d.u_distance = b; + d.u_range = c; gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); var e = Mesh.getScreenQuad(); - x._shader || (x._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, x.pixel_shader), x._shader_onlydepth = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, x.pixel_shader, {ONLY_DEPTH:""})); - var f = this.properties.only_depth ? x._shader_onlydepth : x._shader; + w._shader || (w._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.pixel_shader), w._shader_onlydepth = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.pixel_shader, {ONLY_DEPTH:""})); + var f = this.properties.only_depth ? w._shader_onlydepth : w._shader; b = null; b = a.near_far_planes ? a.near_far_planes : window.LS && LS.Renderer._main_camera ? LS.Renderer._main_camera._uniforms.u_camera_planes : [0.1, 1000]; - c.u_camera_planes = b; + d.u_camera_planes = b; this._temp_texture.drawTo(function() { a.bind(0); - f.uniforms(c).draw(e); + f.uniforms(d).draw(e); }); this.setOutputData(0, this._temp_texture); } } }; - x.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_distance;\n\r\n\t\t\tuniform float u_range;\n\r\n\t\t\t\n\r\n\t\t\tfloat LinearDepth()\n\r\n\t\t\t{\n\r\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\r\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\r\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\r\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\r\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat depth = LinearDepth();\n\r\n\t\t\t\t#ifdef ONLY_DEPTH\n\r\n\t\t\t\t gl_FragColor = vec4(depth);\n\r\n\t\t\t\t#else\n\r\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\r\n\t\t\t\t\tfloat dof = 1.0;\n\r\n\t\t\t\t\tif(diff <= u_range)\n\r\n\t\t\t\t\t\tdof = diff / u_range;\n\r\n\t\t\t\t gl_FragColor = vec4(dof);\n\r\n\t\t\t\t#endif\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/depth_range", x); - u.title = "Blur"; - u.desc = "Blur a texture"; - u.max_iterations = 20; - u.prototype.onExecute = function() { + w.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_distance;\n\r\n\t\t\tuniform float u_range;\n\r\n\t\t\t\n\r\n\t\t\tfloat LinearDepth()\n\r\n\t\t\t{\n\r\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\r\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\r\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\r\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\r\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat depth = LinearDepth();\n\r\n\t\t\t\t#ifdef ONLY_DEPTH\n\r\n\t\t\t\t gl_FragColor = vec4(depth);\n\r\n\t\t\t\t#else\n\r\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\r\n\t\t\t\t\tfloat dof = 1.0;\n\r\n\t\t\t\t\tif(diff <= u_range)\n\r\n\t\t\t\t\t\tdof = diff / u_range;\n\r\n\t\t\t\t gl_FragColor = vec4(dof);\n\r\n\t\t\t\t#endif\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/depth_range", w); + v.title = "Blur"; + v.desc = "Blur a texture"; + v.max_iterations = 20; + v.prototype.onExecute = function() { var a = this.getInputData(0); if (a && this.isOutputConnected(0)) { var b = this._temp_texture; b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR}), this._final_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); b = this.properties.iterations; this.isInputConnected(1) && (b = this.getInputData(1), this.properties.iterations = b); - b = Math.min(Math.floor(b), u.max_iterations); + b = Math.min(Math.floor(b), v.max_iterations); if (0 == b) { this.setOutputData(0, a); } else { var d = this.properties.intensity; this.isInputConnected(2) && (d = this.getInputData(2), this.properties.intensity = d); - var e = c.camera_aspect; - e || void 0 === window.gl || (e = gl.canvas.height / gl.canvas.width); - e || (e = 1); - e = this.properties.preserve_aspect ? e : 1; - for (var f = this.properties.scale || [1, 1], g = 0; g < b; ++g) { - a.applyBlur(e * f[0] * g, f[1] * g, d, this._temp_texture, this._final_texture), a = this._final_texture; + var c = f.camera_aspect; + c || void 0 === window.gl || (c = gl.canvas.height / gl.canvas.width); + c || (c = 1); + c = this.properties.preserve_aspect ? c : 1; + for (var e = this.properties.scale || [1, 1], n = 0; n < b; ++n) { + a.applyBlur(c * e[0] * n, e[1] * n, d, this._temp_texture, this._final_texture), a = this._final_texture; } this.setOutputData(0, this._final_texture); } } }; - u.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t vec4 sum = vec4(0.0);\n\r\n\t\t\t vec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -1.0) * 0.15/0.98;\n\r\n\t\t\t sum += center * 0.16/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 1.0) * 0.15/0.98;\n\r\n\t\t\t gl_FragColor = u_intensity * sum;\n\r\n\t\t\t /*gl_FragColor.a = center.a*/;\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("texture/blur", u); - n.title = "Kuwahara Filter"; - n.desc = "Filters a texture giving an artistic oil canvas painting"; - n.max_radius = 10; - n._shaders = []; - n.prototype.onExecute = function() { + v.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t vec4 sum = vec4(0.0);\n\r\n\t\t\t vec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -1.0) * 0.15/0.98;\n\r\n\t\t\t sum += center * 0.16/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 1.0) * 0.15/0.98;\n\r\n\t\t\t gl_FragColor = u_intensity * sum;\n\r\n\t\t\t /*gl_FragColor.a = center.a*/;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/blur", v); + t.title = "Kuwahara Filter"; + t.desc = "Filters a texture giving an artistic oil canvas painting"; + t.max_radius = 10; + t._shaders = []; + t.prototype.onExecute = function() { var a = this.getInputData(0); if (a && this.isOutputConnected(0)) { var b = this._temp_texture; b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); b = this.properties.radius; - b = Math.min(Math.floor(b), n.max_radius); + b = Math.min(Math.floor(b), t.max_radius); if (0 == b) { this.setOutputData(0, a); } else { - var d = this.properties.intensity, e = c.camera_aspect; - e || void 0 === window.gl || (e = gl.canvas.height / gl.canvas.width); - e || (e = 1); - e = this.properties.preserve_aspect ? e : 1; - n._shaders[b] || (n._shaders[b] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, n.pixel_shader, {RADIUS:b.toFixed(0)})); - var f = n._shaders[b], g = GL.Mesh.getScreenQuad(); + var d = this.properties.intensity, c = f.camera_aspect; + c || void 0 === window.gl || (c = gl.canvas.height / gl.canvas.width); + c || (c = 1); + c = this.properties.preserve_aspect ? c : 1; + t._shaders[b] || (t._shaders[b] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, t.pixel_shader, {RADIUS:b.toFixed(0)})); + var e = t._shaders[b], n = GL.Mesh.getScreenQuad(); a.bind(0); this._temp_texture.drawTo(function() { - f.uniforms({u_texture:0, u_intensity:d, u_resolution:[a.width, a.height], u_iResolution:[1 / a.width, 1 / a.height]}).draw(g); + e.uniforms({u_texture:0, u_intensity:d, u_resolution:[a.width, a.height], u_iResolution:[1 / a.width, 1 / a.height]}).draw(n); }); this.setOutputData(0, this._temp_texture); } } }; - n.pixel_shader = "\n\r\n\tprecision highp float;\n\r\n\tvarying vec2 v_coord;\n\r\n\tuniform sampler2D u_texture;\n\r\n\tuniform float u_intensity;\n\r\n\tuniform vec2 u_resolution;\n\r\n\tuniform vec2 u_iResolution;\n\r\n\t#ifndef RADIUS\n\r\n\t\t#define RADIUS 7\n\r\n\t#endif\n\r\n\tvoid main() {\n\r\n\t\n\r\n\t\tconst int radius = RADIUS;\n\r\n\t\tvec2 fragCoord = v_coord;\n\r\n\t\tvec2 src_size = u_iResolution;\n\r\n\t\tvec2 uv = v_coord;\n\r\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\r\n\t\tint i;\n\r\n\t\tint j;\n\r\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\r\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\r\n\t\tvec3 c;\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm0 += c;\n\r\n\t\t\t\ts0 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm1 += c;\n\r\n\t\t\t\ts1 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm2 += c;\n\r\n\t\t\t\ts2 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm3 += c;\n\r\n\t\t\t\ts3 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfloat min_sigma2 = 1e+2;\n\r\n\t\tm0 /= n;\n\r\n\t\ts0 = abs(s0 / n - m0 * m0);\n\r\n\t\t\n\r\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm1 /= n;\n\r\n\t\ts1 = abs(s1 / n - m1 * m1);\n\r\n\t\t\n\r\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm2 /= n;\n\r\n\t\ts2 = abs(s2 / n - m2 * m2);\n\r\n\t\t\n\r\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm3 /= n;\n\r\n\t\ts3 = abs(s3 / n - m3 * m3);\n\r\n\t\t\n\r\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\r\n\t\t}\n\r\n\t}\n\r\n\t"; - c.registerNodeType("texture/kuwahara", n); + t.pixel_shader = "\n\r\n\tprecision highp float;\n\r\n\tvarying vec2 v_coord;\n\r\n\tuniform sampler2D u_texture;\n\r\n\tuniform float u_intensity;\n\r\n\tuniform vec2 u_resolution;\n\r\n\tuniform vec2 u_iResolution;\n\r\n\t#ifndef RADIUS\n\r\n\t\t#define RADIUS 7\n\r\n\t#endif\n\r\n\tvoid main() {\n\r\n\t\n\r\n\t\tconst int radius = RADIUS;\n\r\n\t\tvec2 fragCoord = v_coord;\n\r\n\t\tvec2 src_size = u_iResolution;\n\r\n\t\tvec2 uv = v_coord;\n\r\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\r\n\t\tint i;\n\r\n\t\tint j;\n\r\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\r\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\r\n\t\tvec3 c;\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm0 += c;\n\r\n\t\t\t\ts0 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm1 += c;\n\r\n\t\t\t\ts1 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm2 += c;\n\r\n\t\t\t\ts2 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm3 += c;\n\r\n\t\t\t\ts3 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfloat min_sigma2 = 1e+2;\n\r\n\t\tm0 /= n;\n\r\n\t\ts0 = abs(s0 / n - m0 * m0);\n\r\n\t\t\n\r\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm1 /= n;\n\r\n\t\ts1 = abs(s1 / n - m1 * m1);\n\r\n\t\t\n\r\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm2 /= n;\n\r\n\t\ts2 = abs(s2 / n - m2 * m2);\n\r\n\t\t\n\r\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm3 /= n;\n\r\n\t\ts3 = abs(s3 / n - m3 * m3);\n\r\n\t\t\n\r\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\r\n\t\t}\n\r\n\t}\n\r\n\t"; + f.registerNodeType("texture/kuwahara", t); p.title = "Webcam"; p.desc = "Webcam texture"; p.prototype.openStream = function() { @@ -5462,18 +5622,18 @@ $jscomp.polyfill("Array.prototype.values", function(v) { p.prototype.onExecute = function() { null != this._webcam_stream || this._waiting_confirmation || this.openStream(); if (this._video && this._video.videoWidth) { - var a = this._video.videoWidth, b = this._video.videoHeight, c = this._temp_texture; - c && c.width == a && c.height == b || (this._temp_texture = new GL.Texture(a, b, {format:gl.RGB, filter:gl.LINEAR})); + var a = this._video.videoWidth, b = this._video.videoHeight, d = this._temp_texture; + d && d.width == a && d.height == b || (this._temp_texture = new GL.Texture(a, b, {format:gl.RGB, filter:gl.LINEAR})); this._temp_texture.uploadImage(this._video); this.properties.texture_name && (r.getTexturesContainer()[this.properties.texture_name] = this._temp_texture); this.setOutputData(0, this._temp_texture); } }; - c.registerNodeType("texture/webcam", p); - e.title = "Matte"; - e.desc = "Extracts background"; - e.widgets_info = {key_color:{widget:"color"}, precision:{widget:"combo", values:r.MODE_VALUES}}; - e.prototype.onExecute = function() { + f.registerNodeType("texture/webcam", p); + c.title = "Matte"; + c.desc = "Extracts background"; + c.widgets_info = {key_color:{widget:"color"}, precision:{widget:"combo", values:r.MODE_VALUES}}; + c.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); if (this.properties.precision === r.PASS_THROUGH) { @@ -5484,26 +5644,26 @@ $jscomp.polyfill("Array.prototype.values", function(v) { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); this._uniforms || (this._uniforms = {u_texture:0, u_key_color:this.properties.key_color, u_threshold:1, u_slope:1}); - var b = this._uniforms, c = Mesh.getScreenQuad(), d = e._shader; + var b = this._uniforms, d = Mesh.getScreenQuad(), e = c._shader; b.u_key_color = this.properties.key_color; b.u_threshold = this.properties.threshold; b.u_slope = this.properties.slope; this._tex.drawTo(function() { a.bind(0); - d.uniforms(b).draw(c); + e.uniforms(b).draw(d); }); this.setOutputData(0, this._tex); } } } }; - e.pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec3 u_key_color;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tuniform float u_slope;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec3 color = texture2D( u_texture, v_coord ).xyz;\n\r\n\t\t\t\tfloat diff = length( normalize(color) - normalize(u_key_color) );\n\r\n\t\t\t\tfloat edge = u_threshold * (1.0 - u_slope);\n\r\n\t\t\t\tfloat alpha = smoothstep( edge, u_threshold, diff);\n\r\n\t\t\t\tgl_FragColor = vec4( color, alpha );\n\r\n\t\t\t}"; - c.registerNodeType("texture/matte", e); - h.title = "Cubemap"; - h.prototype.onDropFile = function(a, b, c) { + c.pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec3 u_key_color;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tuniform float u_slope;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec3 color = texture2D( u_texture, v_coord ).xyz;\n\r\n\t\t\t\tfloat diff = length( normalize(color) - normalize(u_key_color) );\n\r\n\t\t\t\tfloat edge = u_threshold * (1.0 - u_slope);\n\r\n\t\t\t\tfloat alpha = smoothstep( edge, u_threshold, diff);\n\r\n\t\t\t\tgl_FragColor = vec4( color, alpha );\n\r\n\t\t\t}"; + f.registerNodeType("texture/matte", c); + k.title = "Cubemap"; + k.prototype.onDropFile = function(a, b, d) { a ? (this._drop_texture = "string" == typeof a ? GL.Texture.fromURL(a) : GL.Texture.fromDDSInMemory(a), this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); }; - h.prototype.onExecute = function() { + k.prototype.onExecute = function() { if (this._drop_texture) { this.setOutputData(0, this._drop_texture); } else { @@ -5513,22 +5673,22 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - h.prototype.onDrawBackground = function(a) { + k.prototype.onDrawBackground = function(a) { this.flags.collapsed || 20 >= this.size[1] || !a.webgl || gl.meshes.cube || (gl.meshes.cube = GL.Mesh.cube({size:1})); }; - c.registerNodeType("texture/cubemap", h); + f.registerNodeType("texture/cubemap", k); } })(this); -(function(v) { - var c = v.LiteGraph; +(function(u) { + var f = u.LiteGraph; if ("undefined" != typeof GL) { - var h = function() { + var k = function() { this.addInput("Tex.", "Texture"); this.addInput("intensity", "number"); this.addOutput("Texture", "Texture"); this.properties = {intensity:1, invert:!1, precision:LGraphTexture.DEFAULT}; - h._shader || (h._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, h.pixel_shader)); - }, e = function() { + k._shader || (k._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, k.pixel_shader)); + }, c = function() { this.addInput("Texture", "Texture"); this.addInput("value1", "number"); this.addInput("value2", "number"); @@ -5541,80 +5701,80 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addInput("Threshold", "number"); this.addOutput("Texture", "Texture"); this.properties = {shape:"", size:10, alpha:1.0, threshold:1.0, high_precision:!1}; - }, n = function() { + }, t = function() { this.addInput("Texture", "Texture"); this.addInput("Aberration", "number"); this.addInput("Distortion", "number"); this.addInput("Blur", "number"); this.addOutput("Texture", "Texture"); this.properties = {aberration:1.0, distortion:1.0, blur:1.0, precision:LGraphTexture.DEFAULT}; - n._shader || (n._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, n.pixel_shader), n._texture = new GL.Texture(3, 1, {format:gl.RGB, wrap:gl.CLAMP_TO_EDGE, magFilter:gl.LINEAR, minFilter:gl.LINEAR, pixel_data:[255, 0, 0, 0, 255, 0, 0, 0, 255]})); + t._shader || (t._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, t.pixel_shader), t._texture = new GL.Texture(3, 1, {format:gl.RGB, wrap:gl.CLAMP_TO_EDGE, magFilter:gl.LINEAR, minFilter:gl.LINEAR, pixel_data:[255, 0, 0, 0, 255, 0, 0, 0, 255]})); }; - n.title = "Lens"; - n.desc = "Camera Lens distortion"; - n.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - n.prototype.onExecute = function() { + t.title = "Lens"; + t.desc = "Camera Lens distortion"; + t.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + t.prototype.onExecute = function() { var c = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { this.setOutputData(0, c); } else { if (c) { this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); - var e = this.properties.aberration; - this.isInputConnected(1) && (e = this.getInputData(1), this.properties.aberration = e); - var g = this.properties.distortion; - this.isInputConnected(2) && (g = this.getInputData(2), this.properties.distortion = g); - var h = this.properties.blur; - this.isInputConnected(3) && (h = this.getInputData(3), this.properties.blur = h); + var f = this.properties.aberration; + this.isInputConnected(1) && (f = this.getInputData(1), this.properties.aberration = f); + var e = this.properties.distortion; + this.isInputConnected(2) && (e = this.getInputData(2), this.properties.distortion = e); + var k = this.properties.blur; + this.isInputConnected(3) && (k = this.getInputData(3), this.properties.blur = k); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var a = Mesh.getScreenQuad(), b = n._shader; + var l = Mesh.getScreenQuad(), a = t._shader; this._tex.drawTo(function() { c.bind(0); - b.uniforms({u_texture:0, u_aberration:e, u_distortion:g, u_blur:h}).draw(a); + a.uniforms({u_texture:0, u_aberration:f, u_distortion:e, u_blur:k}).draw(l); }); this.setOutputData(0, this._tex); } } }; - n.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_aberration;\n\r\n\t\t\tuniform float u_distortion;\n\r\n\t\t\tuniform float u_blur;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = v_coord;\n\r\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\r\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\r\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\r\n\t\t\t\tdist_coord *= percent;\n\r\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\r\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\r\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\r\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("fx/lens", n); - window.LGraphFXLens = n; + t.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_aberration;\n\r\n\t\t\tuniform float u_distortion;\n\r\n\t\t\tuniform float u_blur;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = v_coord;\n\r\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\r\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\r\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\r\n\t\t\t\tdist_coord *= percent;\n\r\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\r\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\r\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\r\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("fx/lens", t); + window.LGraphFXLens = t; p.title = "Bokeh"; p.desc = "applies an Bokeh effect"; p.widgets_info = {shape:{widget:"texture"}}; p.prototype.onExecute = function() { - var c = this.getInputData(0), e = this.getInputData(1), g = this.getInputData(2); - if (c && g && this.properties.shape) { - e || (e = c); - var h = LGraphTexture.getTexture(this.properties.shape); - if (h) { - var a = this.properties.threshold; - this.isInputConnected(3) && (a = this.getInputData(3), this.properties.threshold = a); - var b = gl.UNSIGNED_BYTE; - this.properties.high_precision && (b = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); - this._temp_texture && this._temp_texture.type == b && this._temp_texture.width == c.width && this._temp_texture.height == c.height || (this._temp_texture = new GL.Texture(c.width, c.height, {type:b, format:gl.RGBA, filter:gl.LINEAR})); - var d = p._first_shader; - d || (d = p._first_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, p._first_pixel_shader)); - var f = p._second_shader; - f || (f = p._second_shader = new GL.Shader(p._second_vertex_shader, p._second_pixel_shader)); - var n = this._points_mesh; - n && n._width == c.width && n._height == c.height && 2 == n._spacing || (n = this.createPointsMesh(c.width, c.height, 2)); - var v = Mesh.getScreenQuad(), q = this.properties.size, l = this.properties.alpha; + var c = this.getInputData(0), f = this.getInputData(1), e = this.getInputData(2); + if (c && e && this.properties.shape) { + f || (f = c); + var k = LGraphTexture.getTexture(this.properties.shape); + if (k) { + var l = this.properties.threshold; + this.isInputConnected(3) && (l = this.getInputData(3), this.properties.threshold = l); + var a = gl.UNSIGNED_BYTE; + this.properties.high_precision && (a = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); + this._temp_texture && this._temp_texture.type == a && this._temp_texture.width == c.width && this._temp_texture.height == c.height || (this._temp_texture = new GL.Texture(c.width, c.height, {type:a, format:gl.RGBA, filter:gl.LINEAR})); + var b = p._first_shader; + b || (b = p._first_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, p._first_pixel_shader)); + var d = p._second_shader; + d || (d = p._second_shader = new GL.Shader(p._second_vertex_shader, p._second_pixel_shader)); + var g = this._points_mesh; + g && g._width == c.width && g._height == c.height && 2 == g._spacing || (g = this.createPointsMesh(c.width, c.height, 2)); + var h = Mesh.getScreenQuad(), t = this.properties.size, n = this.properties.alpha; gl.disable(gl.DEPTH_TEST); gl.disable(gl.BLEND); this._temp_texture.drawTo(function() { c.bind(0); - e.bind(1); - g.bind(2); - d.uniforms({u_texture:0, u_texture_blur:1, u_mask:2, u_texsize:[c.width, c.height]}).draw(v); + f.bind(1); + e.bind(2); + b.uniforms({u_texture:0, u_texture_blur:1, u_mask:2, u_texsize:[c.width, c.height]}).draw(h); }); this._temp_texture.drawTo(function() { gl.enable(gl.BLEND); gl.blendFunc(gl.ONE, gl.ONE); c.bind(0); - h.bind(3); - f.uniforms({u_texture:0, u_mask:2, u_shape:3, u_alpha:l, u_threshold:a, u_pointSize:q, u_itexsize:[1.0 / c.width, 1.0 / c.height]}).draw(n, gl.POINTS); + k.bind(3); + d.uniforms({u_texture:0, u_mask:2, u_shape:3, u_alpha:n, u_threshold:l, u_pointSize:t, u_itexsize:[1.0 / c.width, 1.0 / c.height]}).draw(g, gl.POINTS); }); this.setOutputData(0, this._temp_texture); } @@ -5622,483 +5782,483 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.setOutputData(0, c); } }; - p.prototype.createPointsMesh = function(c, e, g) { - for (var h = Math.round(c / g), a = Math.round(e / g), b = new Float32Array(h * a * 2), d = -1, f = 2 / c * g, n = 2 / e * g, p = 0; p < a; ++p) { - for (var q = -1, l = 0; l < h; ++l) { - var w = p * h * 2 + 2 * l; - b[w] = q; - b[w + 1] = d; - q += f; + p.prototype.createPointsMesh = function(c, f, e) { + for (var k = Math.round(c / e), l = Math.round(f / e), a = new Float32Array(k * l * 2), b = -1, d = 2 / c * e, g = 2 / f * e, h = 0; h < l; ++h) { + for (var p = -1, n = 0; n < k; ++n) { + var t = h * k * 2 + 2 * n; + a[t] = p; + a[t + 1] = b; + p += d; } - d += n; + b += g; } - this._points_mesh = GL.Mesh.load({vertices2D:b}); + this._points_mesh = GL.Mesh.load({vertices2D:a}); this._points_mesh._width = c; - this._points_mesh._height = e; - this._points_mesh._spacing = g; + this._points_mesh._height = f; + this._points_mesh._spacing = e; return this._points_mesh; }; p._first_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_texture_blur;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 blurred_color = texture2D(u_texture_blur, v_coord);\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, v_coord).x;\n\r\n\t\t\t gl_FragColor = mix(color, blurred_color, mask);\n\r\n\t\t\t}\n\r\n\t\t\t"; p._second_vertex_shader = "precision highp float;\n\r\n\t\t\tattribute vec2 a_vertex2D;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\tuniform vec2 u_itexsize;\n\r\n\t\t\tuniform float u_pointSize;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = a_vertex2D * 0.5 + 0.5;\n\r\n\t\t\t\tv_color = texture2D( u_texture, coord );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(u_itexsize.x, 0.0) );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(0.0, u_itexsize.y));\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + u_itexsize);\n\r\n\t\t\t\tv_color *= 0.25;\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, coord).x;\n\r\n\t\t\t\tfloat luminance = length(v_color) * mask;\n\r\n\t\t\t\t/*luminance /= (u_pointSize*u_pointSize)*0.01 */;\n\r\n\t\t\t\tluminance -= u_threshold;\n\r\n\t\t\t\tif(luminance < 0.0)\n\r\n\t\t\t\t{\n\r\n\t\t\t\t\tgl_Position.x = -100.0;\n\r\n\t\t\t\t\treturn;\n\r\n\t\t\t\t}\n\r\n\t\t\t\tgl_PointSize = u_pointSize;\n\r\n\t\t\t\tgl_Position = vec4(a_vertex2D,0.0,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; p._second_pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_shape;\n\r\n\t\t\tuniform float u_alpha;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_shape, gl_PointCoord );\n\r\n\t\t\t\tcolor *= v_color * u_alpha;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; - c.registerNodeType("fx/bokeh", p); + f.registerNodeType("fx/bokeh", p); window.LGraphFXBokeh = p; - e.title = "FX"; - e.desc = "applies an FX from a list"; - e.widgets_info = {fx:{widget:"combo", values:["halftone", "pixelate", "lowpalette", "noise", "gamma"]}, precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - e.shaders = {}; - e.prototype.onExecute = function() { + c.title = "FX"; + c.desc = "applies an FX from a list"; + c.widgets_info = {fx:{widget:"combo", values:["halftone", "pixelate", "lowpalette", "noise", "gamma"]}, precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + c.shaders = {}; + c.prototype.onExecute = function() { if (this.isOutputConnected(0)) { - var c = this.getInputData(0); + var f = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { - this.setOutputData(0, c); + this.setOutputData(0, f); } else { - if (c) { - this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); - var h = this.properties.value1; - this.isInputConnected(1) && (h = this.getInputData(1), this.properties.value1 = h); - var g = this.properties.value2; - this.isInputConnected(2) && (g = this.getInputData(2), this.properties.value2 = g); - var k = this.properties.fx, a = e.shaders[k]; - if (!a) { - var b = e["pixel_shader_" + k]; - if (!b) { + if (f) { + this._tex = LGraphTexture.getTargetTexture(f, this._tex, this.properties.precision); + var k = this.properties.value1; + this.isInputConnected(1) && (k = this.getInputData(1), this.properties.value1 = k); + var e = this.properties.value2; + this.isInputConnected(2) && (e = this.getInputData(2), this.properties.value2 = e); + var p = this.properties.fx, l = c.shaders[p]; + if (!l) { + var a = c["pixel_shader_" + p]; + if (!a) { return; } - a = e.shaders[k] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b); + l = c.shaders[p] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a); } gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var d = Mesh.getScreenQuad(); + var b = Mesh.getScreenQuad(); camera_planes = window.LS && LS.Renderer._current_camera ? [LS.Renderer._current_camera.near, LS.Renderer._current_camera.far] : [1, 100]; - var f = null; - "noise" == k && (f = LGraphTexture.getNoiseTexture()); + var d = null; + "noise" == p && (d = LGraphTexture.getNoiseTexture()); this._tex.drawTo(function() { - c.bind(0); - "noise" == k && f.bind(1); - a.uniforms({u_texture:0, u_noise:1, u_size:[c.width, c.height], u_rand:[Math.random(), Math.random()], u_value1:h, u_value2:g, u_camera_planes:camera_planes}).draw(d); + f.bind(0); + "noise" == p && d.bind(1); + l.uniforms({u_texture:0, u_noise:1, u_size:[f.width, f.height], u_rand:[Math.random(), Math.random()], u_value1:k, u_value2:e, u_camera_planes:camera_planes}).draw(b); }); this.setOutputData(0, this._tex); } } } }; - e.pixel_shader_halftone = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tfloat pattern() {\n\r\n\t\t\t\tfloat s = sin(u_value1 * 3.1415), c = cos(u_value1 * 3.1415);\n\r\n\t\t\t\tvec2 tex = v_coord * u_size.xy;\n\r\n\t\t\t\tvec2 point = vec2(\n\r\n\t\t\t\t c * tex.x - s * tex.y ,\n\r\n\t\t\t\t s * tex.x + c * tex.y \n\r\n\t\t\t\t) * u_value2;\n\r\n\t\t\t\treturn (sin(point.x) * sin(point.y)) * 4.0;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat average = (color.r + color.g + color.b) / 3.0;\n\r\n\t\t\t\tgl_FragColor = vec4(vec3(average * 10.0 - 5.0 + pattern()), color.a);\n\r\n\t\t\t}\n"; - e.pixel_shader_pixelate = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = vec2( floor(v_coord.x * u_value1) / u_value1, floor(v_coord.y * u_value2) / u_value2 );\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, coord);\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; - e.pixel_shader_lowpalette = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tgl_FragColor = floor(color * u_value1) / u_value1;\n\r\n\t\t\t}\n"; - e.pixel_shader_noise = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_noise;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\tuniform vec2 u_rand;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec3 noise = texture2D(u_noise, v_coord * vec2(u_size.x / 512.0, u_size.y / 512.0) + u_rand).xyz - vec3(0.5);\n\r\n\t\t\t\tgl_FragColor = vec4( color.xyz + noise * u_value1, color.a );\n\r\n\t\t\t}\n"; - e.pixel_shader_gamma = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat gamma = 1.0 / u_value1;\n\r\n\t\t\t\tgl_FragColor = vec4( pow( color.xyz, vec3(gamma) ), color.a );\n\r\n\t\t\t}\n"; - c.registerNodeType("fx/generic", e); - window.LGraphFXGeneric = e; - h.title = "Vigneting"; - h.desc = "Vigneting"; - h.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - h.prototype.onExecute = function() { + c.pixel_shader_halftone = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tfloat pattern() {\n\r\n\t\t\t\tfloat s = sin(u_value1 * 3.1415), c = cos(u_value1 * 3.1415);\n\r\n\t\t\t\tvec2 tex = v_coord * u_size.xy;\n\r\n\t\t\t\tvec2 point = vec2(\n\r\n\t\t\t\t c * tex.x - s * tex.y ,\n\r\n\t\t\t\t s * tex.x + c * tex.y \n\r\n\t\t\t\t) * u_value2;\n\r\n\t\t\t\treturn (sin(point.x) * sin(point.y)) * 4.0;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat average = (color.r + color.g + color.b) / 3.0;\n\r\n\t\t\t\tgl_FragColor = vec4(vec3(average * 10.0 - 5.0 + pattern()), color.a);\n\r\n\t\t\t}\n"; + c.pixel_shader_pixelate = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = vec2( floor(v_coord.x * u_value1) / u_value1, floor(v_coord.y * u_value2) / u_value2 );\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, coord);\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; + c.pixel_shader_lowpalette = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tgl_FragColor = floor(color * u_value1) / u_value1;\n\r\n\t\t\t}\n"; + c.pixel_shader_noise = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_noise;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\tuniform vec2 u_rand;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec3 noise = texture2D(u_noise, v_coord * vec2(u_size.x / 512.0, u_size.y / 512.0) + u_rand).xyz - vec3(0.5);\n\r\n\t\t\t\tgl_FragColor = vec4( color.xyz + noise * u_value1, color.a );\n\r\n\t\t\t}\n"; + c.pixel_shader_gamma = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat gamma = 1.0 / u_value1;\n\r\n\t\t\t\tgl_FragColor = vec4( pow( color.xyz, vec3(gamma) ), color.a );\n\r\n\t\t\t}\n"; + f.registerNodeType("fx/generic", c); + window.LGraphFXGeneric = c; + k.title = "Vigneting"; + k.desc = "Vigneting"; + k.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + k.prototype.onExecute = function() { var c = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { this.setOutputData(0, c); } else { if (c) { this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); - var e = this.properties.intensity; - this.isInputConnected(1) && (e = this.getInputData(1), this.properties.intensity = e); + var f = this.properties.intensity; + this.isInputConnected(1) && (f = this.getInputData(1), this.properties.intensity = f); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var g = Mesh.getScreenQuad(), k = h._shader, a = this.properties.invert; + var e = Mesh.getScreenQuad(), p = k._shader, l = this.properties.invert; this._tex.drawTo(function() { c.bind(0); - k.uniforms({u_texture:0, u_intensity:e, u_isize:[1 / c.width, 1 / c.height], u_invert:a ? 1 : 0}).draw(g); + p.uniforms({u_texture:0, u_intensity:f, u_isize:[1 / c.width, 1 / c.height], u_invert:l ? 1 : 0}).draw(e); }); this.setOutputData(0, this._tex); } } }; - h.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat luminance = 1.0 - length( v_coord - vec2(0.5) ) * 1.414;\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tluminance = 1.0 - luminance;\n\r\n\t\t\t\tluminance = mix(1.0, luminance, u_intensity);\n\r\n\t\t\t gl_FragColor = vec4( luminance * color.xyz, color.a);\n\r\n\t\t\t}\n\r\n\t\t\t"; - c.registerNodeType("fx/vigneting", h); - v.LGraphFXVigneting = h; + k.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat luminance = 1.0 - length( v_coord - vec2(0.5) ) * 1.414;\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tluminance = 1.0 - luminance;\n\r\n\t\t\t\tluminance = mix(1.0, luminance, u_intensity);\n\r\n\t\t\t gl_FragColor = vec4( luminance * color.xyz, color.a);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("fx/vigneting", k); + u.LGraphFXVigneting = k; } })(this); -(function(v) { - function c(a) { +(function(u) { + function f(c) { this.cmd = this.channel = 0; - a ? this.setup(a) : this.data = [0, 0, 0]; + c ? this.setup(c) : this.data = [0, 0, 0]; } - function h(a, b) { - navigator.requestMIDIAccess ? (this.on_ready = a, this.state = {note:[], cc:[]}, navigator.requestMIDIAccess().then(this.onMIDISuccess.bind(this), this.onMIDIFailure.bind(this))) : (this.error = "not suppoorted", b ? b("Not supported") : console.error("MIDI NOT SUPPORTED, enable by chrome://flags")); + function k(c, a) { + navigator.requestMIDIAccess ? (this.on_ready = c, this.state = {note:[], cc:[]}, navigator.requestMIDIAccess().then(this.onMIDISuccess.bind(this), this.onMIDIFailure.bind(this))) : (this.error = "not suppoorted", a ? a("Not supported") : console.error("MIDI NOT SUPPORTED, enable by chrome://flags")); } - function e() { - this.addOutput("on_midi", k.EVENT); + function c() { + this.addOutput("on_midi", q.EVENT); this.addOutput("out", "midi"); this.properties = {port:0}; this._current_midi_event = this._last_midi_event = null; - var a = this; - new h(function(b) { - a._midi = b; - if (a._waiting) { - a.onStart(); + var c = this; + new k(function(a) { + c._midi = a; + if (c._waiting) { + c.onStart(); } - a._waiting = !1; + c._waiting = !1; }); } function p() { - this.addInput("send", k.EVENT); + this.addInput("send", q.EVENT); this.properties = {port:0}; - var a = this; - new h(function(b) { - a._midi = b; + var c = this; + new k(function(a) { + c._midi = a; }); } - function n() { - this.addInput("on_midi", k.EVENT); + function t() { + this.addInput("on_midi", q.EVENT); this._str = ""; this.size = [200, 40]; } - function u() { + function v() { this.properties = {channel:-1, cmd:-1, min_value:-1, max_value:-1}; - this.addInput("in", k.EVENT); - this.addOutput("on_midi", k.EVENT); + this.addInput("in", q.EVENT); + this.addOutput("on_midi", q.EVENT); } - function x() { + function w() { this.properties = {channel:0, cmd:"CC", value1:1, value2:1}; - this.addInput("send", k.EVENT); - this.addInput("assign", k.EVENT); - this.addOutput("on_midi", k.EVENT); + this.addInput("send", q.EVENT); + this.addInput("assign", q.EVENT); + this.addOutput("on_midi", q.EVENT); } - function g() { + function e() { this.properties = {cc:1, value:0}; this.addOutput("value", "number"); } - var k = v.LiteGraph; - c.prototype.setup = function(a) { - this.data = a; - this.status = a = a[0]; - var b = a & 240; - this.cmd = 240 <= a ? a : b; - this.cmd == c.NOTEON && 0 == this.velocity && (this.cmd = c.NOTEOFF); - this.cmd_str = c.commands[this.cmd] || ""; - if (b >= c.NOTEON || b <= c.NOTEOFF) { - this.channel = a & 15; + var q = u.LiteGraph; + f.prototype.setup = function(c) { + this.data = c; + this.status = c = c[0]; + var a = c & 240; + this.cmd = 240 <= c ? c : a; + this.cmd == f.NOTEON && 0 == this.velocity && (this.cmd = f.NOTEOFF); + this.cmd_str = f.commands[this.cmd] || ""; + if (a >= f.NOTEON || a <= f.NOTEOFF) { + this.channel = c & 15; } }; - Object.defineProperty(c.prototype, "velocity", {get:function() { - return this.cmd == c.NOTEON ? this.data[2] : -1; - }, set:function(a) { - this.data[2] = a; + Object.defineProperty(f.prototype, "velocity", {get:function() { + return this.cmd == f.NOTEON ? this.data[2] : -1; + }, set:function(c) { + this.data[2] = c; }, enumerable:!0}); - c.notes = "A A# B C C# D D# E F F# G G#".split(" "); - c.prototype.getPitch = function() { + f.notes = "A A# B C C# D D# E F F# G G#".split(" "); + f.prototype.getPitch = function() { return 440 * Math.pow(2, (this.data[1] - 69) / 12); }; - c.computePitch = function(a) { - return 440 * Math.pow(2, (a - 69) / 12); + f.computePitch = function(c) { + return 440 * Math.pow(2, (c - 69) / 12); }; - c.prototype.getCC = function() { + f.prototype.getCC = function() { return this.data[1]; }; - c.prototype.getCCValue = function() { + f.prototype.getCCValue = function() { return this.data[2]; }; - c.prototype.getPitchBend = function() { + f.prototype.getPitchBend = function() { return this.data[1] + (this.data[2] << 7) - 8192; }; - c.computePitchBend = function(a, b) { - return a + (b << 7) - 8192; + f.computePitchBend = function(c, a) { + return c + (a << 7) - 8192; }; - c.prototype.setCommandFromString = function(a) { - this.cmd = c.computeCommandFromString(a); + f.prototype.setCommandFromString = function(c) { + this.cmd = f.computeCommandFromString(c); }; - c.computeCommandFromString = function(a) { - if (!a) { + f.computeCommandFromString = function(c) { + if (!c) { return 0; } - if (a && a.constructor === Number) { - return a; + if (c && c.constructor === Number) { + return c; } - a = a.toUpperCase(); - switch(a) { + c = c.toUpperCase(); + switch(c) { case "NOTE ON": case "NOTEON": - return c.NOTEON; + return f.NOTEON; case "NOTE OFF": case "NOTEOFF": - return c.NOTEON; + return f.NOTEON; case "KEY PRESSURE": case "KEYPRESSURE": - return c.KEYPRESSURE; + return f.KEYPRESSURE; case "CONTROLLER CHANGE": case "CONTROLLERCHANGE": case "CC": - return c.CONTROLLERCHANGE; + return f.CONTROLLERCHANGE; case "PROGRAM CHANGE": case "PROGRAMCHANGE": case "PC": - return c.PROGRAMCHANGE; + return f.PROGRAMCHANGE; case "CHANNEL PRESSURE": case "CHANNELPRESSURE": - return c.CHANNELPRESSURE; + return f.CHANNELPRESSURE; case "PITCH BEND": case "PITCHBEND": - return c.PITCHBEND; + return f.PITCHBEND; case "TIME TICK": case "TIMETICK": - return c.TIMETICK; + return f.TIMETICK; default: - return Number(a); + return Number(c); } }; - c.toNoteString = function(a) { - var b = (a - 21) % 12; - 0 > b && (b = 12 + b); - return c.notes[b] + Math.floor((a - 24) / 12 + 1); + f.toNoteString = function(c) { + var a = (c - 21) % 12; + 0 > a && (a = 12 + a); + return f.notes[a] + Math.floor((c - 24) / 12 + 1); }; - c.prototype.toString = function() { - var a = "" + this.channel + ". "; + f.prototype.toString = function() { + var c = "" + this.channel + ". "; switch(this.cmd) { - case c.NOTEON: - a += "NOTEON " + c.toNoteString(this.data[1]); + case f.NOTEON: + c += "NOTEON " + f.toNoteString(this.data[1]); break; - case c.NOTEOFF: - a += "NOTEOFF " + c.toNoteString(this.data[1]); + case f.NOTEOFF: + c += "NOTEOFF " + f.toNoteString(this.data[1]); break; - case c.CONTROLLERCHANGE: - a += "CC " + this.data[1] + " " + this.data[2]; + case f.CONTROLLERCHANGE: + c += "CC " + this.data[1] + " " + this.data[2]; break; - case c.PROGRAMCHANGE: - a += "PC " + this.data[1]; + case f.PROGRAMCHANGE: + c += "PC " + this.data[1]; break; - case c.PITCHBEND: - a += "PITCHBEND " + this.getPitchBend(); + case f.PITCHBEND: + c += "PITCHBEND " + this.getPitchBend(); break; - case c.KEYPRESSURE: - a += "KEYPRESS " + this.data[1]; + case f.KEYPRESSURE: + c += "KEYPRESS " + this.data[1]; } - return a; + return c; }; - c.prototype.toHexString = function() { - for (var a = "", b = 0; b < this.data.length; b++) { - a += this.data[b].toString(16) + " "; + f.prototype.toHexString = function() { + for (var c = "", a = 0; a < this.data.length; a++) { + c += this.data[a].toString(16) + " "; } }; - c.NOTEOFF = 128; - c.NOTEON = 144; - c.KEYPRESSURE = 160; - c.CONTROLLERCHANGE = 176; - c.PROGRAMCHANGE = 192; - c.CHANNELPRESSURE = 208; - c.PITCHBEND = 224; - c.TIMETICK = 248; - c.commands = {128:"note off", 144:"note on", 160:"key pressure", 176:"controller change", 192:"program change", 208:"channel pressure", 224:"pitch bend", 240:"system", 242:"Song pos", 243:"Song select", 246:"Tune request", 248:"time tick", 250:"Start Song", 251:"Continue Song", 252:"Stop Song", 254:"Sensing", 255:"Reset"}; - h.input = null; - h.MIDIEvent = c; - h.prototype.onMIDISuccess = function(a) { + f.NOTEOFF = 128; + f.NOTEON = 144; + f.KEYPRESSURE = 160; + f.CONTROLLERCHANGE = 176; + f.PROGRAMCHANGE = 192; + f.CHANNELPRESSURE = 208; + f.PITCHBEND = 224; + f.TIMETICK = 248; + f.commands = {128:"note off", 144:"note on", 160:"key pressure", 176:"controller change", 192:"program change", 208:"channel pressure", 224:"pitch bend", 240:"system", 242:"Song pos", 243:"Song select", 246:"Tune request", 248:"time tick", 250:"Start Song", 251:"Continue Song", 252:"Stop Song", 254:"Sensing", 255:"Reset"}; + k.input = null; + k.MIDIEvent = f; + k.prototype.onMIDISuccess = function(c) { console.log("MIDI ready!"); - console.log(a); - this.midi = a; + console.log(c); + this.midi = c; this.updatePorts(); if (this.on_ready) { this.on_ready(this); } }; - h.prototype.updatePorts = function() { - var a = this.midi; - this.input_ports = a.inputs; - for (var b = 0, c = this.input_ports.values(), e = c.next(); e && !1 === e.done;) { - e = e.value, console.log("Input port [type:'" + e.type + "'] id:'" + e.id + "' manufacturer:'" + e.manufacturer + "' name:'" + e.name + "' version:'" + e.version + "'"), b++, e = c.next(); + k.prototype.updatePorts = function() { + var c = this.midi; + this.input_ports = c.inputs; + for (var a = 0, b = this.input_ports.values(), d = b.next(); d && !1 === d.done;) { + d = d.value, console.log("Input port [type:'" + d.type + "'] id:'" + d.id + "' manufacturer:'" + d.manufacturer + "' name:'" + d.name + "' version:'" + d.version + "'"), a++, d = b.next(); } - this.num_input_ports = b; - b = 0; - this.output_ports = a.outputs; - c = this.output_ports.values(); - for (e = c.next(); e && !1 === e.done;) { - e = e.value, console.log("Output port [type:'" + e.type + "'] id:'" + e.id + "' manufacturer:'" + e.manufacturer + "' name:'" + e.name + "' version:'" + e.version + "'"), b++, e = c.next(); + this.num_input_ports = a; + a = 0; + this.output_ports = c.outputs; + b = this.output_ports.values(); + for (d = b.next(); d && !1 === d.done;) { + d = d.value, console.log("Output port [type:'" + d.type + "'] id:'" + d.id + "' manufacturer:'" + d.manufacturer + "' name:'" + d.name + "' version:'" + d.version + "'"), a++, d = b.next(); } - this.num_output_ports = b; + this.num_output_ports = a; }; - h.prototype.onMIDIFailure = function(a) { - console.error("Failed to get MIDI access - " + a); + k.prototype.onMIDIFailure = function(c) { + console.error("Failed to get MIDI access - " + c); }; - h.prototype.openInputPort = function(a, b) { - a = this.input_ports.get("input-" + a); - if (!a) { + k.prototype.openInputPort = function(c, a) { + c = this.input_ports.get("input-" + c); + if (!c) { return !1; } - h.input = this; - var d = this; - a.onmidimessage = function(a) { - var e = new c(a.data); - d.updateState(e); - b && b(a.data, e); - if (h.on_message) { - h.on_message(a.data, e); + k.input = this; + var b = this; + c.onmidimessage = function(d) { + var c = new f(d.data); + b.updateState(c); + a && a(d.data, c); + if (k.on_message) { + k.on_message(d.data, c); } }; - console.log("port open: ", a); + console.log("port open: ", c); return !0; }; - h.parseMsg = function(a) { + k.parseMsg = function(c) { }; - h.prototype.updateState = function(a) { - switch(a.cmd) { - case c.NOTEON: - this.state.note[a.value1 | 0] = a.value2; + k.prototype.updateState = function(c) { + switch(c.cmd) { + case f.NOTEON: + this.state.note[c.value1 | 0] = c.value2; break; - case c.NOTEOFF: - this.state.note[a.value1 | 0] = 0; + case f.NOTEOFF: + this.state.note[c.value1 | 0] = 0; break; - case c.CONTROLLERCHANGE: - this.state.cc[a.getCC()] = a.getCCValue(); + case f.CONTROLLERCHANGE: + this.state.cc[c.getCC()] = c.getCCValue(); } }; - h.prototype.sendMIDI = function(a, b) { - b && (a = this.output_ports.get("output-" + a)) && (h.output = this, b.constructor === c ? a.send(b.data) : a.send(b)); + k.prototype.sendMIDI = function(c, a) { + a && (c = this.output_ports.get("output-" + c)) && (k.output = this, a.constructor === f ? c.send(a.data) : c.send(a)); }; - e.MIDIInterface = h; - e.title = "MIDI Input"; - e.desc = "Reads MIDI from a input port"; - e.prototype.getPropertyInfo = function(a) { - if (this._midi && "port" == a) { - a = {}; - for (var b = 0; b < this._midi.input_ports.size; ++b) { - var c = this._midi.input_ports.get("input-" + b); - a[b] = b + ".- " + c.name + " version:" + c.version; + c.MIDIInterface = k; + c.title = "MIDI Input"; + c.desc = "Reads MIDI from a input port"; + c.prototype.getPropertyInfo = function(c) { + if (this._midi && "port" == c) { + c = {}; + for (var a = 0; a < this._midi.input_ports.size; ++a) { + var b = this._midi.input_ports.get("input-" + a); + c[a] = a + ".- " + b.name + " version:" + b.version; } - return {type:"enum", values:a}; + return {type:"enum", values:c}; } }; - e.prototype.onStart = function() { + c.prototype.onStart = function() { this._midi ? this._midi.openInputPort(this.properties.port, this.onMIDIEvent.bind(this)) : this._waiting = !0; }; - e.prototype.onMIDIEvent = function(a, b) { - this._last_midi_event = b; - this.trigger("on_midi", b); - b.cmd == c.NOTEON ? this.trigger("on_noteon", b) : b.cmd == c.NOTEOFF ? this.trigger("on_noteoff", b) : b.cmd == c.CONTROLLERCHANGE ? this.trigger("on_cc", b) : b.cmd == c.PROGRAMCHANGE ? this.trigger("on_pc", b) : b.cmd == c.PITCHBEND && this.trigger("on_pitchbend", b); + c.prototype.onMIDIEvent = function(c, a) { + this._last_midi_event = a; + this.trigger("on_midi", a); + a.cmd == f.NOTEON ? this.trigger("on_noteon", a) : a.cmd == f.NOTEOFF ? this.trigger("on_noteoff", a) : a.cmd == f.CONTROLLERCHANGE ? this.trigger("on_cc", a) : a.cmd == f.PROGRAMCHANGE ? this.trigger("on_pc", a) : a.cmd == f.PITCHBEND && this.trigger("on_pitchbend", a); }; - e.prototype.onExecute = function() { + c.prototype.onExecute = function() { if (this.outputs) { - for (var a = this._last_midi_event, b = 0; b < this.outputs.length; ++b) { - switch(this.outputs[b].name) { + for (var c = this._last_midi_event, a = 0; a < this.outputs.length; ++a) { + switch(this.outputs[a].name) { case "midi": - var c = this._midi; + var b = this._midi; break; case "last_midi": - c = a; + b = c; break; default: continue; } - this.setOutputData(b, c); + this.setOutputData(a, b); } } }; - e.prototype.onGetOutputs = function() { - return [["last_midi", "midi"], ["on_midi", k.EVENT], ["on_noteon", k.EVENT], ["on_noteoff", k.EVENT], ["on_cc", k.EVENT], ["on_pc", k.EVENT], ["on_pitchbend", k.EVENT]]; + c.prototype.onGetOutputs = function() { + return [["last_midi", "midi"], ["on_midi", q.EVENT], ["on_noteon", q.EVENT], ["on_noteoff", q.EVENT], ["on_cc", q.EVENT], ["on_pc", q.EVENT], ["on_pitchbend", q.EVENT]]; }; - k.registerNodeType("midi/input", e); - p.MIDIInterface = h; + q.registerNodeType("midi/input", c); + p.MIDIInterface = k; p.title = "MIDI Output"; p.desc = "Sends MIDI to output channel"; - p.prototype.getPropertyInfo = function(a) { - if (this._midi && "port" == a) { - a = {}; - for (var b = 0; b < this._midi.output_ports.size; ++b) { - var c = this._midi.output_ports.get(b); - a[b] = b + ".- " + c.name + " version:" + c.version; + p.prototype.getPropertyInfo = function(c) { + if (this._midi && "port" == c) { + c = {}; + for (var a = 0; a < this._midi.output_ports.size; ++a) { + var b = this._midi.output_ports.get(a); + c[a] = a + ".- " + b.name + " version:" + b.version; } - return {type:"enum", values:a}; + return {type:"enum", values:c}; } }; - p.prototype.onAction = function(a, b) { - console.log(b); - this._midi && ("send" == a && this._midi.sendMIDI(this.port, b), this.trigger("midi", b)); + p.prototype.onAction = function(c, a) { + console.log(a); + this._midi && ("send" == c && this._midi.sendMIDI(this.port, a), this.trigger("midi", a)); }; p.prototype.onGetInputs = function() { - return [["send", k.ACTION]]; + return [["send", q.ACTION]]; }; p.prototype.onGetOutputs = function() { - return [["on_midi", k.EVENT]]; + return [["on_midi", q.EVENT]]; }; - k.registerNodeType("midi/output", p); - n.title = "MIDI Show"; - n.desc = "Shows MIDI in the graph"; - n.prototype.onAction = function(a, b) { - b && (this._str = b.constructor === c ? b.toString() : "???"); + q.registerNodeType("midi/output", p); + t.title = "MIDI Show"; + t.desc = "Shows MIDI in the graph"; + t.prototype.onAction = function(c, a) { + a && (this._str = a.constructor === f ? a.toString() : "???"); }; - n.prototype.onDrawForeground = function(a) { - this._str && (a.font = "30px Arial", a.fillText(this._str, 10, 0.8 * this.size[1])); + t.prototype.onDrawForeground = function(c) { + this._str && (c.font = "30px Arial", c.fillText(this._str, 10, 0.8 * this.size[1])); }; - n.prototype.onGetInputs = function() { - return [["in", k.ACTION]]; + t.prototype.onGetInputs = function() { + return [["in", q.ACTION]]; }; - n.prototype.onGetOutputs = function() { - return [["on_midi", k.EVENT]]; + t.prototype.onGetOutputs = function() { + return [["on_midi", q.EVENT]]; }; - k.registerNodeType("midi/show", n); - u.title = "MIDI Filter"; - u.desc = "Filters MIDI messages"; - u.prototype.onAction = function(a, b) { - !b || b.constructor !== c || -1 != this.properties.channel && b.channel != this.properties.channel || -1 != this.properties.cmd && b.cmd != this.properties.cmd || -1 != this.properties.min_value && b.data[1] < this.properties.min_value || -1 != this.properties.max_value && b.data[1] > this.properties.max_value || this.trigger("on_midi", b); + q.registerNodeType("midi/show", t); + v.title = "MIDI Filter"; + v.desc = "Filters MIDI messages"; + v.prototype.onAction = function(c, a) { + !a || a.constructor !== f || -1 != this.properties.channel && a.channel != this.properties.channel || -1 != this.properties.cmd && a.cmd != this.properties.cmd || -1 != this.properties.min_value && a.data[1] < this.properties.min_value || -1 != this.properties.max_value && a.data[1] > this.properties.max_value || this.trigger("on_midi", a); }; - k.registerNodeType("midi/filter", u); - x.title = "MIDIEvent"; - x.desc = "Create a MIDI Event"; - x.prototype.onAction = function(a, b) { - "assign" == a ? (this.properties.channel = b.channel, this.properties.cmd = b.cmd, this.properties.value1 = b.data[1], this.properties.value2 = b.data[2]) : (b = new c, b.channel = this.properties.channel, this.properties.cmd && this.properties.cmd.constructor === String ? b.setCommandFromString(this.properties.cmd) : b.cmd = this.properties.cmd, b.data[0] = b.cmd | b.channel, b.data[1] = Number(this.properties.value1), b.data[2] = Number(this.properties.value2), this.trigger("on_midi", b)); + q.registerNodeType("midi/filter", v); + w.title = "MIDIEvent"; + w.desc = "Create a MIDI Event"; + w.prototype.onAction = function(c, a) { + "assign" == c ? (this.properties.channel = a.channel, this.properties.cmd = a.cmd, this.properties.value1 = a.data[1], this.properties.value2 = a.data[2]) : (a = new f, a.channel = this.properties.channel, this.properties.cmd && this.properties.cmd.constructor === String ? a.setCommandFromString(this.properties.cmd) : a.cmd = this.properties.cmd, a.data[0] = a.cmd | a.channel, a.data[1] = Number(this.properties.value1), a.data[2] = Number(this.properties.value2), this.trigger("on_midi", a)); }; - x.prototype.onExecute = function() { - var a = this.properties; + w.prototype.onExecute = function() { + var c = this.properties; if (this.outputs) { - for (var b = 0; b < this.outputs.length; ++b) { - switch(this.outputs[b].name) { + for (var a = 0; a < this.outputs.length; ++a) { + switch(this.outputs[a].name) { case "midi": - var d = new c; - d.setup([a.cmd, a.value1, a.value2]); - d.channel = a.channel; + var b = new f; + b.setup([c.cmd, c.value1, c.value2]); + b.channel = c.channel; break; case "command": - d = a.cmd; + b = c.cmd; break; case "cc": - d = a.value1; + b = c.value1; break; case "cc_value": - d = a.value2; + b = c.value2; break; case "note": - d = a.cmd == c.NOTEON || a.cmd == c.NOTEOFF ? a.value1 : null; + b = c.cmd == f.NOTEON || c.cmd == f.NOTEOFF ? c.value1 : null; break; case "velocity": - d = a.cmd == c.NOTEON ? a.value2 : null; + b = c.cmd == f.NOTEON ? c.value2 : null; break; case "pitch": - d = a.cmd == c.NOTEON ? c.computePitch(a.value1) : null; + b = c.cmd == f.NOTEON ? f.computePitch(c.value1) : null; break; case "pitchbend": - d = a.cmd == c.PITCHBEND ? c.computePitchBend(a.value1, a.value2) : null; + b = c.cmd == f.PITCHBEND ? f.computePitchBend(c.value1, c.value2) : null; break; default: continue; } - null !== d && this.setOutputData(b, d); + null !== b && this.setOutputData(a, b); } } }; - x.prototype.onPropertyChanged = function(a, b) { - "cmd" == a && (this.properties.cmd = c.computeCommandFromString(b)); + w.prototype.onPropertyChanged = function(c, a) { + "cmd" == c && (this.properties.cmd = f.computeCommandFromString(a)); }; - x.prototype.onGetOutputs = function() { - return [["midi", "midi"], ["on_midi", k.EVENT], ["command", "number"], ["note", "number"], ["velocity", "number"], ["cc", "number"], ["cc_value", "number"], ["pitch", "number"], ["pitchbend", "number"]]; + w.prototype.onGetOutputs = function() { + return [["midi", "midi"], ["on_midi", q.EVENT], ["command", "number"], ["note", "number"], ["velocity", "number"], ["cc", "number"], ["cc_value", "number"], ["pitch", "number"], ["pitchbend", "number"]]; }; - k.registerNodeType("midi/event", x); - g.title = "MIDICC"; - g.desc = "gets a Controller Change"; - g.prototype.onExecute = function() { - h.input && (this.properties.value = h.input.state.cc[this.properties.cc]); + q.registerNodeType("midi/event", w); + e.title = "MIDICC"; + e.desc = "gets a Controller Change"; + e.prototype.onExecute = function() { + k.input && (this.properties.value = k.input.state.cc[this.properties.cc]); this.setOutputData(0, this.properties.value); }; - k.registerNodeType("midi/cc", g); + q.registerNodeType("midi/cc", e); })(this); -(function(v) { - function c() { +(function(u) { + function f() { this.properties = {src:"", gain:0.5, loop:!0, autoplay:!0, playbackRate:1}; this._loading_audio = !1; this._audiobuffer = null; @@ -6106,14 +6266,14 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._last_sourcenode = null; this.addOutput("out", "audio"); this.addInput("gain", "number"); - this.audionode = q.getAudioContext().createGain(); + this.audionode = x.getAudioContext().createGain(); this.audionode.graphnode = this; this.audionode.gain.value = this.properties.gain; this.properties.src && this.loadSound(this.properties.src); } - function h() { + function k() { this.properties = {fftSize:2048, minDecibels:-100, maxDecibels:-10, smoothingTimeConstant:0.5}; - this.audionode = q.getAudioContext().createAnalyser(); + this.audionode = x.getAudioContext().createAnalyser(); this.audionode.graphnode = this; this.audionode.fftSize = this.properties.fftSize; this.audionode.minDecibels = this.properties.minDecibels; @@ -6124,38 +6284,38 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addOutput("samples", "array"); this._time_bin = this._freq_bin = null; } - function e() { + function c() { this.properties = {gain:1}; - this.audionode = q.getAudioContext().createGain(); + this.audionode = x.getAudioContext().createGain(); this.addInput("in", "audio"); this.addInput("gain", "number"); this.addOutput("out", "audio"); } function p() { this.properties = {impulse_src:"", normalize:!0}; - this.audionode = q.getAudioContext().createConvolver(); + this.audionode = x.getAudioContext().createConvolver(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function n() { + function t() { this.properties = {threshold:-50, knee:40, ratio:12, reduction:-20, attack:0, release:0.25}; - this.audionode = q.getAudioContext().createDynamicsCompressor(); + this.audionode = x.getAudioContext().createDynamicsCompressor(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function u() { + function v() { this.properties = {}; - this.audionode = q.getAudioContext().createWaveShaper(); + this.audionode = x.getAudioContext().createWaveShaper(); this.addInput("in", "audio"); this.addInput("shape", "waveshape"); this.addOutput("out", "audio"); } - function x() { + function w() { this.properties = {gain1:0.5, gain2:0.5}; - this.audionode = q.getAudioContext().createGain(); - this.audionode1 = q.getAudioContext().createGain(); + this.audionode = x.getAudioContext().createGain(); + this.audionode1 = x.getAudioContext().createGain(); this.audionode1.gain.value = this.properties.gain1; - this.audionode2 = q.getAudioContext().createGain(); + this.audionode2 = x.getAudioContext().createGain(); this.audionode2.gain.value = this.properties.gain2; this.audionode1.connect(this.audionode); this.audionode2.connect(this.audionode); @@ -6165,59 +6325,59 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this.addInput("in2 gain", "number"); this.addOutput("out", "audio"); } - function g() { + function e() { this.properties = {delayTime:0.5}; - this.audionode = q.getAudioContext().createDelay(10); + this.audionode = x.getAudioContext().createDelay(10); this.audionode.delayTime.value = this.properties.delayTime; this.addInput("in", "audio"); this.addInput("time", "number"); this.addOutput("out", "audio"); } - function k() { + function q() { this.properties = {frequency:350, detune:0, Q:1}; this.addProperty("type", "lowpass", "enum", {values:"lowpass highpass bandpass lowshelf highshelf peaking notch allpass".split(" ")}); - this.audionode = q.getAudioContext().createBiquadFilter(); + this.audionode = x.getAudioContext().createBiquadFilter(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function a() { + function l() { this.properties = {frequency:440, detune:0, type:"sine"}; this.addProperty("type", "sine", "enum", {values:["sine", "square", "sawtooth", "triangle", "custom"]}); - this.audionode = q.getAudioContext().createOscillator(); + this.audionode = x.getAudioContext().createOscillator(); this.addOutput("out", "audio"); } - function b() { + function a() { this.properties = {continuous:!0, mark:-1}; this.addInput("data", "array"); this.addInput("mark", "number"); this.size = [300, 200]; this._last_buffer = null; } - function d() { + function b() { this.properties = {band:440, amplitude:1}; this.addInput("freqs", "array"); this.addOutput("signal", "number"); } - function f() { - if (!f.default_code) { - var a = f.default_function.toString(), b = a.indexOf("{") + 1, c = a.lastIndexOf("}"); - f.default_code = a.substr(b, c - b); + function d() { + if (!d.default_code) { + var a = d.default_function.toString(), b = a.indexOf("{") + 1, c = a.lastIndexOf("}"); + d.default_code = a.substr(b, c - b); } - this.properties = {code:f.default_code}; - a = q.getAudioContext(); + this.properties = {code:d.default_code}; + a = x.getAudioContext(); a.createScriptProcessor ? this.audionode = a.createScriptProcessor(4096, 1, 1) : (console.warn("ScriptProcessorNode deprecated"), this.audionode = a.createGain()); this.processCode(); - f._bypass_function || (f._bypass_function = this.audionode.onaudioprocess); + d._bypass_function || (d._bypass_function = this.audionode.onaudioprocess); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function t() { - this.audionode = q.getAudioContext().destination; + function g() { + this.audionode = x.getAudioContext().destination; this.addInput("in", "audio"); } - var y = v.LiteGraph, q = {}; - v.LGAudio = q; - q.getAudioContext = function() { + var h = u.LiteGraph, x = {}; + u.LGAudio = x; + x.getAudioContext = function() { if (!this._audio_context) { window.AudioContext = window.AudioContext || window.webkitAudioContext; if (!window.AudioContext) { @@ -6236,75 +6396,75 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } return this._audio_context; }; - q.connect = function(a, b) { + x.connect = function(a, b) { try { a.connect(b); } catch (A) { console.warn("LGraphAudio:", A); } }; - q.disconnect = function(a, b) { + x.disconnect = function(a, b) { try { a.disconnect(b); } catch (A) { console.warn("LGraphAudio:", A); } }; - q.changeAllAudiosConnections = function(a, b) { + x.changeAllAudiosConnections = function(a, b) { if (a.inputs) { - for (var c = 0; c < a.inputs.length; ++c) { - var d = a.graph.links[a.inputs[c].link]; - if (d) { - var e = a.graph.getNodeById(d.origin_id); - e = e.getAudioNodeInOutputSlot ? e.getAudioNodeInOutputSlot(d.origin_slot) : e.audionode; - d = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(c) : a.audionode; - b ? q.connect(e, d) : q.disconnect(e, d); + for (var d = 0; d < a.inputs.length; ++d) { + var c = a.graph.links[a.inputs[d].link]; + if (c) { + var e = a.graph.getNodeById(c.origin_id); + e = e.getAudioNodeInOutputSlot ? e.getAudioNodeInOutputSlot(c.origin_slot) : e.audionode; + c = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(d) : a.audionode; + b ? x.connect(e, c) : x.disconnect(e, c); } } } if (a.outputs) { - for (c = 0; c < a.outputs.length; ++c) { - for (var f = a.outputs[c], g = 0; g < f.links.length; ++g) { - if (d = a.graph.links[f.links[g]]) { - e = a.getAudioNodeInOutputSlot ? a.getAudioNodeInOutputSlot(c) : a.audionode; - var l = a.graph.getNodeById(d.target_id); - d = l.getAudioNodeInInputSlot ? l.getAudioNodeInInputSlot(d.target_slot) : l.audionode; - b ? q.connect(e, d) : q.disconnect(e, d); + for (d = 0; d < a.outputs.length; ++d) { + for (var f = a.outputs[d], n = 0; n < f.links.length; ++n) { + if (c = a.graph.links[f.links[n]]) { + e = a.getAudioNodeInOutputSlot ? a.getAudioNodeInOutputSlot(d) : a.audionode; + var g = a.graph.getNodeById(c.target_id); + c = g.getAudioNodeInInputSlot ? g.getAudioNodeInInputSlot(c.target_slot) : g.audionode; + b ? x.connect(e, c) : x.disconnect(e, c); } } } } }; - q.onConnectionsChange = function(a, b, c, d) { - a == y.OUTPUT && (a = null, d && (a = this.graph.getNodeById(d.target_id)), a && (b = this.getAudioNodeInOutputSlot ? this.getAudioNodeInOutputSlot(b) : this.audionode, d = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(d.target_slot) : a.audionode, c ? q.connect(b, d) : q.disconnect(b, d))); + x.onConnectionsChange = function(a, b, d, c) { + a == h.OUTPUT && (a = null, c && (a = this.graph.getNodeById(c.target_id)), a && (b = this.getAudioNodeInOutputSlot ? this.getAudioNodeInOutputSlot(b) : this.audionode, c = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(c.target_slot) : a.audionode, d ? x.connect(b, c) : x.disconnect(b, c))); }; - q.createAudioNodeWrapper = function(a) { + x.createAudioNodeWrapper = function(a) { var b = a.prototype.onPropertyChanged; a.prototype.onPropertyChanged = function(a, c) { b && b.call(this, a, c); this.audionode && void 0 !== this.audionode[a] && (void 0 !== this.audionode[a].value ? this.audionode[a].value = c : this.audionode[a] = c); }; - a.prototype.onConnectionsChange = q.onConnectionsChange; + a.prototype.onConnectionsChange = x.onConnectionsChange; }; - q.cached_audios = {}; - q.loadSound = function(a, b, c) { + x.cached_audios = {}; + x.loadSound = function(a, b, c) { function d(a) { console.log("Audio loading sample error:", a); c && c(a); } - if (q.cached_audios[a] && -1 == a.indexOf("blob:")) { - b && b(q.cached_audios[a]); + if (x.cached_audios[a] && -1 == a.indexOf("blob:")) { + b && b(x.cached_audios[a]); } else { - q.onProcessAudioURL && (a = q.onProcessAudioURL(a)); + x.onProcessAudioURL && (a = x.onProcessAudioURL(a)); var e = new XMLHttpRequest; e.open("GET", a, !0); e.responseType = "arraybuffer"; - var f = q.getAudioContext(); + var f = x.getAudioContext(); e.onload = function() { console.log("AudioSource loaded"); f.decodeAudioData(e.response, function(c) { console.log("AudioSource decoded"); - q.cached_audios[a] = c; + x.cached_audios[a] = c; b && b(c); }, d); }; @@ -6312,42 +6472,42 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return e; } }; - c["@src"] = {widget:"resource"}; - c.supported_extensions = ["wav", "ogg", "mp3"]; - c.prototype.onAdded = function(a) { + f["@src"] = {widget:"resource"}; + f.supported_extensions = ["wav", "ogg", "mp3"]; + f.prototype.onAdded = function(a) { if (a.status === LGraph.STATUS_RUNNING) { this.onStart(); } }; - c.prototype.onStart = function() { + f.prototype.onStart = function() { this._audiobuffer && this.properties.autoplay && this.playBuffer(this._audiobuffer); }; - c.prototype.onStop = function() { + f.prototype.onStop = function() { this.stopAllSounds(); }; - c.prototype.onPause = function() { + f.prototype.onPause = function() { this.pauseAllSounds(); }; - c.prototype.onUnpause = function() { + f.prototype.onUnpause = function() { this.unpauseAllSounds(); }; - c.prototype.onRemoved = function() { + f.prototype.onRemoved = function() { this.stopAllSounds(); this._dropped_url && URL.revokeObjectURL(this._url); }; - c.prototype.stopAllSounds = function() { + f.prototype.stopAllSounds = function() { for (var a = 0; a < this._audionodes.length; ++a) { this._audionodes[a].started && (this._audionodes[a].started = !1, this._audionodes[a].stop()); } this._audionodes.length = 0; }; - c.prototype.pauseAllSounds = function() { - q.getAudioContext().suspend(); + f.prototype.pauseAllSounds = function() { + x.getAudioContext().suspend(); }; - c.prototype.unpauseAllSounds = function() { - q.getAudioContext().resume(); + f.prototype.unpauseAllSounds = function() { + x.getAudioContext().resume(); }; - c.prototype.onExecute = function() { + f.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6373,10 +6533,10 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - c.prototype.onAction = function(a) { + f.prototype.onAction = function(a) { this._audiobuffer && ("Play" == a ? this.playBuffer(this._audiobuffer) : "Stop" == a && this.stopAllSounds()); }; - c.prototype.onPropertyChanged = function(a, b) { + f.prototype.onPropertyChanged = function(a, b) { if ("src" == a) { this.loadSound(b); } else { @@ -6391,8 +6551,8 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - c.prototype.playBuffer = function(a) { - var b = this, c = q.getAudioContext().createBufferSource(); + f.prototype.playBuffer = function(a) { + var b = this, c = x.getAudioContext().createBufferSource(); this._last_sourcenode = c; c.graphnode = this; c.buffer = a; @@ -6409,13 +6569,13 @@ $jscomp.polyfill("Array.prototype.values", function(v) { c.started || (c.started = !0, c.start()); return c; }; - c.prototype.loadSound = function(a) { + f.prototype.loadSound = function(a) { var b = this; this._request && (this._request.abort(), this._request = null); this._audiobuffer = null; this._loading_audio = !1; - a && (this._request = q.loadSound(a, function(a) { - this.boxcolor = y.NODE_DEFAULT_BOXCOLOR; + a && (this._request = x.loadSound(a, function(a) { + this.boxcolor = h.NODE_DEFAULT_BOXCOLOR; b._audiobuffer = a; b._loading_audio = !1; if (b.graph && b.graph.status === LGraph.STATUS_RUNNING) { @@ -6423,27 +6583,27 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } }), this._loading_audio = !0, this.boxcolor = "#AA4"); }; - c.prototype.onConnectionsChange = q.onConnectionsChange; - c.prototype.onGetInputs = function() { - return [["playbackRate", "number"], ["Play", y.ACTION], ["Stop", y.ACTION]]; + f.prototype.onConnectionsChange = x.onConnectionsChange; + f.prototype.onGetInputs = function() { + return [["playbackRate", "number"], ["Play", h.ACTION], ["Stop", h.ACTION]]; }; - c.prototype.onGetOutputs = function() { - return [["buffer", "audiobuffer"], ["ended", y.EVENT]]; + f.prototype.onGetOutputs = function() { + return [["buffer", "audiobuffer"], ["ended", h.EVENT]]; }; - c.prototype.onDropFile = function(a) { + f.prototype.onDropFile = function(a) { this._dropped_url && URL.revokeObjectURL(this._dropped_url); a = URL.createObjectURL(a); this.properties.src = a; this.loadSound(a); this._dropped_url = a; }; - c.title = "Source"; - c.desc = "Plays audio"; - y.registerNodeType("audio/source", c); - h.prototype.onPropertyChanged = function(a, b) { + f.title = "Source"; + f.desc = "Plays audio"; + h.registerNodeType("audio/source", f); + k.prototype.onPropertyChanged = function(a, b) { this.audionode[a] = b; }; - h.prototype.onExecute = function() { + k.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.audionode.frequencyBinCount; this._freq_bin && this._freq_bin.length == a || (this._freq_bin = new Uint8Array(a)); @@ -6459,16 +6619,16 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - h.prototype.onGetInputs = function() { + k.prototype.onGetInputs = function() { return [["minDecibels", "number"], ["maxDecibels", "number"], ["smoothingTimeConstant", "number"]]; }; - h.prototype.onGetOutputs = function() { + k.prototype.onGetOutputs = function() { return [["freqs", "array"], ["samples", "array"]]; }; - h.title = "Analyser"; - h.desc = "Audio Analyser"; - y.registerNodeType("audio/analyser", h); - e.prototype.onExecute = function() { + k.title = "Analyser"; + k.desc = "Audio Analyser"; + h.registerNodeType("audio/analyser", k); + c.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a], c = this.getInputData(a); @@ -6476,11 +6636,11 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - q.createAudioNodeWrapper(e); - e.title = "Gain"; - e.desc = "Audio gain"; - y.registerNodeType("audio/gain", e); - q.createAudioNodeWrapper(p); + x.createAudioNodeWrapper(c); + c.title = "Gain"; + c.desc = "Audio gain"; + h.registerNodeType("audio/gain", c); + x.createAudioNodeWrapper(p); p.prototype.onRemove = function() { this._dropped_url && URL.revokeObjectURL(this._dropped_url); }; @@ -6498,7 +6658,7 @@ $jscomp.polyfill("Array.prototype.values", function(v) { this._request && (this._request.abort(), this._request = null); this._impulse_buffer = null; this._loading_impulse = !1; - a && (this._request = q.loadSound(a, function(a) { + a && (this._request = x.loadSound(a, function(a) { b._impulse_buffer = a; b.audionode.buffer = a; console.log("Impulse signal set"); @@ -6507,9 +6667,9 @@ $jscomp.polyfill("Array.prototype.values", function(v) { }; p.title = "Convolver"; p.desc = "Convolves the signal (used for reverb)"; - y.registerNodeType("audio/convolver", p); - q.createAudioNodeWrapper(n); - n.prototype.onExecute = function() { + h.registerNodeType("audio/convolver", p); + x.createAudioNodeWrapper(t); + t.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6520,23 +6680,23 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - n.prototype.onGetInputs = function() { + t.prototype.onGetInputs = function() { return [["threshold", "number"], ["knee", "number"], ["ratio", "number"], ["reduction", "number"], ["attack", "number"], ["release", "number"]]; }; - n.title = "DynamicsCompressor"; - n.desc = "Dynamics Compressor"; - y.registerNodeType("audio/dynamicsCompressor", n); - u.prototype.onExecute = function() { + t.title = "DynamicsCompressor"; + t.desc = "Dynamics Compressor"; + h.registerNodeType("audio/dynamicsCompressor", t); + v.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { var a = this.getInputData(1); void 0 !== a && (this.audionode.curve = a); } }; - u.prototype.setWaveShape = function(a) { + v.prototype.setWaveShape = function(a) { this.audionode.curve = a; }; - q.createAudioNodeWrapper(u); - x.prototype.getAudioNodeInInputSlot = function(a) { + x.createAudioNodeWrapper(v); + w.prototype.getAudioNodeInInputSlot = function(a) { if (0 == a) { return this.audionode1; } @@ -6544,10 +6704,10 @@ $jscomp.polyfill("Array.prototype.values", function(v) { return this.audionode2; } }; - x.prototype.onPropertyChanged = function(a, b) { + w.prototype.onPropertyChanged = function(a, b) { "gain1" == a ? this.audionode1.gain.value = b : "gain2" == a && (this.audionode2.gain.value = b); }; - x.prototype.onExecute = function() { + w.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6555,19 +6715,19 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - q.createAudioNodeWrapper(x); - x.title = "Mixer"; - x.desc = "Audio mixer"; - y.registerNodeType("audio/mixer", x); - q.createAudioNodeWrapper(g); - g.prototype.onExecute = function() { + x.createAudioNodeWrapper(w); + w.title = "Mixer"; + w.desc = "Audio mixer"; + h.registerNodeType("audio/mixer", w); + x.createAudioNodeWrapper(e); + e.prototype.onExecute = function() { var a = this.getInputData(1); void 0 !== a && (this.audionode.delayTime.value = a); }; - g.title = "Delay"; - g.desc = "Audio delay"; - y.registerNodeType("audio/delay", g); - k.prototype.onExecute = function() { + e.title = "Delay"; + e.desc = "Audio delay"; + h.registerNodeType("audio/delay", e); + q.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6578,26 +6738,26 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - k.prototype.onGetInputs = function() { + q.prototype.onGetInputs = function() { return [["frequency", "number"], ["detune", "number"], ["Q", "number"]]; }; - q.createAudioNodeWrapper(k); - k.title = "BiquadFilter"; - k.desc = "Audio filter"; - y.registerNodeType("audio/biquadfilter", k); - a.prototype.onStart = function() { + x.createAudioNodeWrapper(q); + q.title = "BiquadFilter"; + q.desc = "Audio filter"; + h.registerNodeType("audio/biquadfilter", q); + l.prototype.onStart = function() { this.audionode.started || (this.audionode.started = !0, this.audionode.start()); }; - a.prototype.onStop = function() { + l.prototype.onStop = function() { this.audionode.started && (this.audionode.started = !1, this.audionode.stop()); }; - a.prototype.onPause = function() { + l.prototype.onPause = function() { this.onStop(); }; - a.prototype.onUnpause = function() { + l.prototype.onUnpause = function() { this.onStart(); }; - a.prototype.onExecute = function() { + l.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 0; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6608,20 +6768,20 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } }; - a.prototype.onGetInputs = function() { + l.prototype.onGetInputs = function() { return [["frequency", "number"], ["detune", "number"], ["type", "string"]]; }; - q.createAudioNodeWrapper(a); - a.title = "Oscillator"; - a.desc = "Oscillator"; - y.registerNodeType("audio/oscillator", a); - b.prototype.onExecute = function() { + x.createAudioNodeWrapper(l); + l.title = "Oscillator"; + l.desc = "Oscillator"; + h.registerNodeType("audio/oscillator", l); + a.prototype.onExecute = function() { this._last_buffer = this.getInputData(0); var a = this.getInputData(1); void 0 !== a && (this.properties.mark = a); this.setDirtyCanvas(!0, !1); }; - b.prototype.onDrawForeground = function(a) { + a.prototype.onDrawForeground = function(a) { if (this._last_buffer) { var b = this._last_buffer, c = b.length / this.size[0], d = this.size[1]; a.fillStyle = "black"; @@ -6640,60 +6800,60 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } } a.stroke(); - 0 <= this.properties.mark && (b = q.getAudioContext().sampleRate / b.length, e = this.properties.mark / b * 2 / c, e >= this.size[0] && (e = this.size[0] - 1), a.strokeStyle = "red", a.beginPath(), a.moveTo(e, d), a.lineTo(e, 0), a.stroke()); + 0 <= this.properties.mark && (b = x.getAudioContext().sampleRate / b.length, e = this.properties.mark / b * 2 / c, e >= this.size[0] && (e = this.size[0] - 1), a.strokeStyle = "red", a.beginPath(), a.moveTo(e, d), a.lineTo(e, 0), a.stroke()); } }; - b.title = "Visualization"; - b.desc = "Audio Visualization"; - y.registerNodeType("audio/visualization", b); - d.prototype.onExecute = function() { + a.title = "Visualization"; + a.desc = "Audio Visualization"; + h.registerNodeType("audio/visualization", a); + b.prototype.onExecute = function() { if (this._freqs = this.getInputData(0)) { var a = this.properties.band, b = this.getInputData(1); void 0 !== b && (a = b); - b = q.getAudioContext().sampleRate / this._freqs.length; + b = x.getAudioContext().sampleRate / this._freqs.length; b = a / b * 2; b >= this._freqs.length ? b = this._freqs[this._freqs.length - 1] : (a = b | 0, b -= a, b = this._freqs[a] * (1 - b) + this._freqs[a + 1] * b); this.setOutputData(0, b / 255 * this.properties.amplitude); } }; - d.prototype.onGetInputs = function() { + b.prototype.onGetInputs = function() { return [["band", "number"]]; }; - d.title = "Signal"; - d.desc = "extract the signal of some frequency"; - y.registerNodeType("audio/signal", d); - f.prototype.onAdded = function(a) { + b.title = "Signal"; + b.desc = "extract the signal of some frequency"; + h.registerNodeType("audio/signal", b); + d.prototype.onAdded = function(a) { a.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback); }; - f["@code"] = {widget:"code"}; - f.prototype.onStart = function() { + d["@code"] = {widget:"code"}; + d.prototype.onStart = function() { this.audionode.onaudioprocess = this._callback; }; - f.prototype.onStop = function() { - this.audionode.onaudioprocess = f._bypass_function; + d.prototype.onStop = function() { + this.audionode.onaudioprocess = d._bypass_function; }; - f.prototype.onPause = function() { - this.audionode.onaudioprocess = f._bypass_function; + d.prototype.onPause = function() { + this.audionode.onaudioprocess = d._bypass_function; }; - f.prototype.onUnpause = function() { + d.prototype.onUnpause = function() { this.audionode.onaudioprocess = this._callback; }; - f.prototype.onExecute = function() { + d.prototype.onExecute = function() { }; - f.prototype.onRemoved = function() { - this.audionode.onaudioprocess = f._bypass_function; + d.prototype.onRemoved = function() { + this.audionode.onaudioprocess = d._bypass_function; }; - f.prototype.processCode = function() { + d.prototype.processCode = function() { try { this._script = new (new Function("properties", this.properties.code))(this.properties), this._old_code = this.properties.code, this._callback = this._script.onaudioprocess; - } catch (l) { - console.error("Error in onaudioprocess code", l), this._callback = f._bypass_function, this.audionode.onaudioprocess = this._callback; + } catch (n) { + console.error("Error in onaudioprocess code", n), this._callback = d._bypass_function, this.audionode.onaudioprocess = this._callback; } }; - f.prototype.onPropertyChanged = function(a, b) { + d.prototype.onPropertyChanged = function(a, b) { "code" == a && (this.properties.code = b, this.processCode(), this.graph && this.graph.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback)); }; - f.default_function = function() { + d.default_function = function() { this.onaudioprocess = function(a) { var b = a.inputBuffer; a = a.outputBuffer; @@ -6704,12 +6864,146 @@ $jscomp.polyfill("Array.prototype.values", function(v) { } }; }; - q.createAudioNodeWrapper(f); - f.title = "Script"; - f.desc = "apply script to signal"; - y.registerNodeType("audio/script", f); - t.title = "Destination"; - t.desc = "Audio output"; - y.registerNodeType("audio/destination", t); + x.createAudioNodeWrapper(d); + d.title = "Script"; + d.desc = "apply script to signal"; + h.registerNodeType("audio/script", d); + g.title = "Destination"; + g.desc = "Audio output"; + h.registerNodeType("audio/destination", g); +})(this); +(function(u) { + function f() { + this.size = [60, 20]; + this.addInput("send", c.ACTION); + this.addOutput("received", c.EVENT); + this.addInput("in", 0); + this.addOutput("out", 0); + this.properties = {url:"", room:"lgraph"}; + this._ws = null; + this._last_data = []; + } + function k() { + this.size = [60, 20]; + this.addInput("send", c.ACTION); + this.addOutput("received", c.EVENT); + this.addInput("in", 0); + this.addOutput("out", 0); + this.properties = {url:"tamats.com:55000", room:"lgraph", save_bandwidth:!0}; + this._server = null; + this.createSocket(); + this._last_input_data = []; + this._last_output_data = []; + } + var c = u.LiteGraph; + f.title = "WebSocket"; + f.desc = "Send data through a websocket"; + f.prototype.onPropertyChanged = function(c, f) { + "url" == c && this.createSocket(); + }; + f.prototype.onExecute = function() { + !this._ws && this.properties.url && this.createSocket(); + if (this._ws && this._ws.readyState == WebSocket.OPEN) { + for (var c = this.properties.room, f = 1; f < this.inputs.length; ++f) { + var k = this.getInputData(f); + if (null != k) { + try { + var u = JSON.stringify({type:0, room:c, channel:f, data:k}); + } catch (e) { + continue; + } + this._ws.send(u); + } + } + for (f = 1; f < this.outputs.length; ++f) { + this.setOutputData(f, this._last_data[f]); + } + } + }; + f.prototype.createSocket = function() { + var c = this, f = this.properties.url; + "ws" != f.substr(0, 2) && (f = "ws://" + f); + this._ws = new WebSocket(f); + this._ws.onopen = function() { + console.log("ready"); + c.boxcolor = "#8E8"; + }; + this._ws.onmessage = function(f) { + var k = JSON.parse(f.data); + k.room && k.room != this.properties.room || (1 == f.data.type ? c.triggerSlot(0, k) : c._last_data[f.data.channel || 0] = k.data); + }; + this._ws.onerror = function(f) { + console.log("couldnt connect to websocket"); + c.boxcolor = "#E88"; + }; + this._ws.onclose = function(f) { + console.log("connection closed"); + c.boxcolor = "#000"; + }; + }; + f.prototype.send = function(c) { + this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send(JSON.stringify({type:1, msg:c})); + }; + f.prototype.onAction = function(c, f) { + this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send({type:1, room:this.properties.room, action:c, data:f}); + }; + f.prototype.onGetInputs = function() { + return [["in", 0]]; + }; + f.prototype.onGetOutputs = function() { + return [["out", 0]]; + }; + c.registerNodeType("network/websocket", f); + k.title = "SillyClient"; + k.desc = "Connects to SillyServer to broadcast messages"; + k.prototype.onPropertyChanged = function(c, f) { + c = this.properties.url + "/" + this.properties.room; + this._server && this._final_url != c && (this._server.connect(this.properties.url, this.properties.room), this._final_url = c); + }; + k.prototype.onExecute = function() { + if (this._server && this._server.is_connected) { + for (var c = this.properties.save_bandwidth, f = 1; f < this.inputs.length; ++f) { + var k = this.getInputData(f); + null == k || c && this._last_input_data[f] == k || (this._server.sendMessage({type:0, channel:f, data:k}), this._last_input_data[f] = k); + } + for (f = 1; f < this.outputs.length; ++f) { + this.setOutputData(f, this._last_output_data[f]); + } + } + }; + k.prototype.createSocket = function() { + var c = this; + "undefined" == typeof SillyClient ? (this._error || console.error("SillyClient node cannot be used, you must include SillyServer.js"), this._error = !0) : (this._server = new SillyClient, this._server.on_ready = function() { + console.log("ready"); + c.boxcolor = "#8E8"; + }, this._server.on_message = function(f, k) { + f = null; + try { + f = JSON.parse(k); + } catch (w) { + return; + } + 1 == f.type ? c.triggerSlot(0, f) : c._last_output_data[f.channel || 0] = f.data; + }, this._server.on_error = function(f) { + console.log("couldnt connect to websocket"); + c.boxcolor = "#E88"; + }, this._server.on_close = function(f) { + console.log("connection closed"); + c.boxcolor = "#000"; + }, this.properties.url && this.properties.room && (this._server.connect(this.properties.url, this.properties.room), this._final_url = this.properties.url + "/" + this.properties.room)); + }; + k.prototype.send = function(c) { + this._server && this._server.is_connected && this._server.sendMessage({type:1, data:c}); + }; + k.prototype.onAction = function(c, f) { + this._server && this._server.is_connected && this._server.sendMessage({type:1, action:c, data:f}); + }; + k.prototype.onGetInputs = function() { + return [["in", 0]]; + }; + k.prototype.onGetOutputs = function() { + return [["out", 0]]; + }; + c.registerNodeType("network/sillyclient", k); })(this); diff --git a/gruntfile.js b/gruntfile.js index 6f3c372f0..7deb42905 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -12,7 +12,8 @@ module.exports = function (grunt) { 'src/nodes/gltextures.js', 'src/nodes/glfx.js', 'src/nodes/midi.js', - 'src/nodes/audio.js' + 'src/nodes/audio.js', + 'src/nodes/network.js' ], concat: { build: { diff --git a/package.json b/package.json index 02498c7de..528cacb6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.4.0", + "version": "0.5.0", "description": "A graph node editor similar to PD or UDK Blueprints, it works in a HTML5 Canvas and allow to exported graphs to be included in applications.", "main": "build/litegraph.js", "directories": { From 098e6780aaae3489223bbb82bec99b79475d9bcb Mon Sep 17 00:00:00 2001 From: Kristofer Date: Thu, 19 Apr 2018 08:49:10 +0200 Subject: [PATCH 5/8] Fixed bug with -1 type check --- build/litegraph.js | 5 ++++- build/litegraph.min.js | 2 ++ package-lock.json | 2 +- src/litegraph.js | 5 ++++- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/build/litegraph.js b/build/litegraph.js index 12f4a8900..4783c2546 100644 --- a/build/litegraph.js +++ b/build/litegraph.js @@ -336,7 +336,10 @@ var LiteGraph = global.LiteGraph = { !type_b || //generic input type_a == type_b || //same type (is valid for triggers) type_a == LiteGraph.EVENT && type_b == LiteGraph.ACTION ) - return true; + return true; + + type_a = String(type_a) //* Enforce string type to handle toLowerCase call (-1 number not ok) + type_b = String(type_b) type_a = type_a.toLowerCase(); type_b = type_b.toLowerCase(); diff --git a/build/litegraph.min.js b/build/litegraph.min.js index af47c0558..67fa86d62 100755 --- a/build/litegraph.min.js +++ b/build/litegraph.min.js @@ -346,6 +346,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (!a || !b || a == b || a == e.EVENT && b == e.ACTION) { return !0; } + a = String(a); + b = String(b); a = a.toLowerCase(); b = b.toLowerCase(); if (-1 == a.indexOf(",") && -1 == b.indexOf(",")) { diff --git a/package-lock.json b/package-lock.json index 1c51947c3..48be7a1f1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/src/litegraph.js b/src/litegraph.js index c023cb2ad..d4c2c2123 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -336,7 +336,10 @@ var LiteGraph = global.LiteGraph = { !type_b || //generic input type_a == type_b || //same type (is valid for triggers) type_a == LiteGraph.EVENT && type_b == LiteGraph.ACTION ) - return true; + return true; + + type_a = String(type_a) //* Enforce string type to handle toLowerCase call (-1 number not ok) + type_b = String(type_b) type_a = type_a.toLowerCase(); type_b = type_b.toLowerCase(); From 54b94ac241dd0d7375e5fb9a678dc4af58fd8963 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Thu, 19 Apr 2018 08:55:47 +0200 Subject: [PATCH 6/8] Package lock removed --- .npmrc | 1 + package-lock.json | 3351 --------------------------------------------- utils/server.js | 2 - 3 files changed, 1 insertion(+), 3353 deletions(-) create mode 100644 .npmrc delete mode 100644 package-lock.json diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..9cf949503 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false \ No newline at end of file diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 48be7a1f1..000000000 --- a/package-lock.json +++ /dev/null @@ -1,3351 +0,0 @@ -{ - "name": "litegraph.js", - "version": "0.5.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=", - "dev": true - }, - "accepts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", - "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", - "dev": true, - "requires": { - "mime-types": "2.1.17", - "negotiator": "0.6.1" - } - }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", - "dev": true, - "requires": { - "string-width": "2.1.1" - } - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true, - "requires": { - "micromatch": "2.3.11", - "normalize-path": "2.1.1" - } - }, - "argparse": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", - "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", - "dev": true, - "requires": { - "sprintf-js": "1.0.3" - } - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "1.1.0" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "binary-extensions": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", - "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=", - "dev": true - }, - "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "dev": true, - "requires": { - "bytes": "3.0.0", - "content-type": "1.0.4", - "debug": "2.6.9", - "depd": "1.1.1", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "on-finished": "2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "1.6.15" - } - }, - "boxen": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", - "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", - "dev": true, - "requires": { - "ansi-align": "2.0.0", - "camelcase": "4.1.0", - "chalk": "2.3.0", - "cli-boxes": "1.0.0", - "string-width": "2.1.1", - "term-size": "1.2.0", - "widest-line": "2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", - "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", - "dev": true, - "requires": { - "color-convert": "1.9.1" - } - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "chalk": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", - "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", - "dev": true, - "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.5.0" - } - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", - "dev": true, - "requires": { - "has-flag": "2.0.0" - } - } - } - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", - "dev": true, - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true, - "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" - } - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "requires": { - "camelcase": "2.1.1", - "map-obj": "1.0.1" - } - }, - "capture-stack-trace": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz", - "integrity": "sha1-Sm+gc5nCa7pH8LJJa00PtAjFVQ0=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "2.2.1", - "escape-string-regexp": "1.0.5", - "has-ansi": "2.0.0", - "strip-ansi": "3.0.1", - "supports-color": "2.0.0" - } - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "requires": { - "anymatch": "1.3.2", - "async-each": "1.0.1", - "fsevents": "1.1.3", - "glob-parent": "2.0.0", - "inherits": "2.0.3", - "is-binary-path": "1.0.1", - "is-glob": "2.0.1", - "path-is-absolute": "1.0.1", - "readdirp": "2.1.0" - } - }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", - "dev": true - }, - "clone": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz", - "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=", - "dev": true - }, - "clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", - "dev": true - }, - "clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", - "dev": true - }, - "cloneable-readable": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz", - "integrity": "sha1-pikNQT8hemEjL5XkWP84QYz7ARc=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "process-nextick-args": "1.0.7", - "through2": "2.0.3" - } - }, - "coffee-script": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.10.0.tgz", - "integrity": "sha1-EpOLz5vhlI+gBvkuDEyegXBRCMA=", - "dev": true - }, - "color-convert": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", - "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "configstore": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz", - "integrity": "sha512-5oNkD/L++l0O6xGXxb1EWS7SivtjfGQlRyxJsYgE0Z495/L81e2h4/d3r969hoPXuFItzNOKMtsXgYG4c7dYvw==", - "dev": true, - "requires": { - "dot-prop": "4.2.0", - "graceful-fs": "4.1.11", - "make-dir": "1.1.0", - "unique-string": "1.0.0", - "write-file-atomic": "2.3.0", - "xdg-basedir": "3.0.0" - } - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", - "dev": true - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "dev": true, - "requires": { - "capture-stack-trace": "1.0.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "4.1.1", - "shebang-command": "1.2.0", - "which": "1.2.14" - } - }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", - "dev": true - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "1.0.2" - } - }, - "dateformat": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz", - "integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=", - "dev": true, - "requires": { - "get-stdin": "4.0.1", - "meow": "3.7.0" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "deep-extend": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=", - "dev": true - }, - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=", - "dev": true - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "dot-prop": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", - "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", - "dev": true, - "requires": { - "is-obj": "1.0.1" - } - }, - "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", - "dev": true - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "dev": true - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "encodeurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", - "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=", - "dev": true - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "dev": true, - "requires": { - "is-arrayish": "0.2.1" - } - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "event-stream": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", - "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", - "dev": true, - "requires": { - "duplexer": "0.1.1", - "from": "0.1.7", - "map-stream": "0.1.0", - "pause-stream": "0.0.11", - "split": "0.3.3", - "stream-combiner": "0.0.4", - "through": "2.3.8" - } - }, - "eventemitter2": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", - "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=", - "dev": true - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "dev": true, - "requires": { - "cross-spawn": "5.1.0", - "get-stream": "3.0.0", - "is-stream": "1.1.0", - "npm-run-path": "2.0.2", - "p-finally": "1.0.0", - "signal-exit": "3.0.2", - "strip-eof": "1.0.0" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", - "dev": true - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "0.1.1" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dev": true, - "requires": { - "fill-range": "2.2.3" - } - }, - "express": { - "version": "4.16.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz", - "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=", - "dev": true, - "requires": { - "accepts": "1.3.4", - "array-flatten": "1.1.1", - "body-parser": "1.18.2", - "content-disposition": "0.5.2", - "content-type": "1.0.4", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "1.1.1", - "encodeurl": "1.0.1", - "escape-html": "1.0.3", - "etag": "1.8.1", - "finalhandler": "1.1.0", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "1.1.2", - "on-finished": "2.3.0", - "parseurl": "1.3.2", - "path-to-regexp": "0.1.7", - "proxy-addr": "2.0.2", - "qs": "6.5.1", - "range-parser": "1.2.0", - "safe-buffer": "5.1.1", - "send": "0.16.1", - "serve-static": "1.13.1", - "setprototypeof": "1.1.0", - "statuses": "1.3.1", - "type-is": "1.6.15", - "utils-merge": "1.0.1", - "vary": "1.1.2" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true - }, - "fill-range": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", - "dev": true, - "requires": { - "is-number": "2.1.0", - "isobject": "2.1.0", - "randomatic": "1.1.7", - "repeat-element": "1.1.2", - "repeat-string": "1.6.1" - } - }, - "finalhandler": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", - "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "1.0.1", - "escape-html": "1.0.3", - "on-finished": "2.3.0", - "parseurl": "1.3.2", - "statuses": "1.3.1", - "unpipe": "1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "findup-sync": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz", - "integrity": "sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=", - "dev": true, - "requires": { - "glob": "5.0.15" - }, - "dependencies": { - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "dev": true, - "requires": { - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - } - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "1.0.2" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "from": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", - "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz", - "integrity": "sha512-WIr7iDkdmdbxu/Gh6eKEZJL6KPE74/5MEsf2whTOFNxbIoIixogroLdKYqB6FDav4Wavh/lZdzzd3b2KxIXC5Q==", - "dev": true, - "optional": true, - "requires": { - "nan": "2.8.0", - "node-pre-gyp": "0.6.39" - }, - "dependencies": { - "abbrev": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "ajv": { - "version": "4.11.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" - } - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true - }, - "aproba": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "1.0.0", - "readable-stream": "2.2.9" - } - }, - "asn1": { - "version": "0.2.3", - "bundled": true, - "dev": true, - "optional": true - }, - "assert-plus": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "asynckit": { - "version": "0.4.0", - "bundled": true, - "dev": true, - "optional": true - }, - "aws-sign2": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "aws4": { - "version": "1.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "balanced-match": { - "version": "0.4.2", - "bundled": true, - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "tweetnacl": "0.14.5" - } - }, - "block-stream": { - "version": "0.0.9", - "bundled": true, - "dev": true, - "requires": { - "inherits": "2.0.3" - } - }, - "boom": { - "version": "2.10.1", - "bundled": true, - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, - "brace-expansion": { - "version": "1.1.7", - "bundled": true, - "dev": true, - "requires": { - "balanced-match": "0.4.2", - "concat-map": "0.0.1" - } - }, - "buffer-shims": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "caseless": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "optional": true - }, - "co": { - "version": "4.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true - }, - "combined-stream": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "requires": { - "delayed-stream": "1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "cryptiles": { - "version": "2.0.5", - "bundled": true, - "dev": true, - "requires": { - "boom": "2.10.1" - } - }, - "dashdash": { - "version": "1.14.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "debug": { - "version": "2.6.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.4.2", - "bundled": true, - "dev": true, - "optional": true - }, - "delayed-stream": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "ecc-jsbn": { - "version": "0.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "extend": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "extsprintf": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "bundled": true, - "dev": true, - "optional": true - }, - "form-data": { - "version": "2.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "asynckit": "0.4.0", - "combined-stream": "1.0.5", - "mime-types": "2.1.15" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "fstream": { - "version": "1.0.11", - "bundled": true, - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "inherits": "2.0.3", - "mkdirp": "0.5.1", - "rimraf": "2.6.1" - } - }, - "fstream-ignore": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fstream": "1.0.11", - "inherits": "2.0.3", - "minimatch": "3.0.4" - } - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "1.1.1", - "console-control-strings": "1.1.0", - "has-unicode": "2.0.1", - "object-assign": "4.1.1", - "signal-exit": "3.0.2", - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wide-align": "1.1.2" - } - }, - "getpass": { - "version": "0.1.7", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "glob": { - "version": "7.1.2", - "bundled": true, - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "graceful-fs": { - "version": "4.1.11", - "bundled": true, - "dev": true - }, - "har-schema": { - "version": "1.0.5", - "bundled": true, - "dev": true, - "optional": true - }, - "har-validator": { - "version": "4.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ajv": "4.11.8", - "har-schema": "1.0.5" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "hawk": { - "version": "3.1.3", - "bundled": true, - "dev": true, - "requires": { - "boom": "2.10.1", - "cryptiles": "2.0.5", - "hoek": "2.16.3", - "sntp": "1.0.9" - } - }, - "hoek": { - "version": "2.16.3", - "bundled": true, - "dev": true - }, - "http-signature": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "0.2.0", - "jsprim": "1.4.0", - "sshpk": "1.13.0" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "dev": true - }, - "ini": { - "version": "1.3.4", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true - }, - "isstream": { - "version": "0.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "jodid25519": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsbn": "0.1.1" - } - }, - "jsbn": { - "version": "0.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "bundled": true, - "dev": true, - "optional": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "jsonify": "0.0.0" - } - }, - "json-stringify-safe": { - "version": "5.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "jsonify": { - "version": "0.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "jsprim": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.0.2", - "json-schema": "0.2.3", - "verror": "1.3.6" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "mime-db": { - "version": "1.27.0", - "bundled": true, - "dev": true - }, - "mime-types": { - "version": "2.1.15", - "bundled": true, - "dev": true, - "requires": { - "mime-db": "1.27.0" - } - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "requires": { - "brace-expansion": "1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "dev": true - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "node-pre-gyp": { - "version": "0.6.39", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "1.0.2", - "hawk": "3.1.3", - "mkdirp": "0.5.1", - "nopt": "4.0.1", - "npmlog": "4.1.0", - "rc": "1.2.1", - "request": "2.81.0", - "rimraf": "2.6.1", - "semver": "5.3.0", - "tar": "2.2.1", - "tar-pack": "3.4.0" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1.1.0", - "osenv": "0.1.4" - } - }, - "npmlog": { - "version": "4.1.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "1.1.4", - "console-control-strings": "1.1.0", - "gauge": "2.7.4", - "set-blocking": "2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true - }, - "oauth-sign": { - "version": "0.8.2", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "1.0.2", - "os-tmpdir": "1.0.2" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true - }, - "performance-now": { - "version": "0.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "1.0.7", - "bundled": true, - "dev": true - }, - "punycode": { - "version": "1.4.1", - "bundled": true, - "dev": true, - "optional": true - }, - "qs": { - "version": "6.4.0", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "0.4.2", - "ini": "1.3.4", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.2.9", - "bundled": true, - "dev": true, - "requires": { - "buffer-shims": "1.0.0", - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "string_decoder": "1.0.1", - "util-deprecate": "1.0.2" - } - }, - "request": { - "version": "2.81.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aws-sign2": "0.6.0", - "aws4": "1.6.0", - "caseless": "0.12.0", - "combined-stream": "1.0.5", - "extend": "3.0.1", - "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "4.2.1", - "hawk": "3.1.3", - "http-signature": "1.1.1", - "is-typedarray": "1.0.0", - "isstream": "0.1.2", - "json-stringify-safe": "5.0.1", - "mime-types": "2.1.15", - "oauth-sign": "0.8.2", - "performance-now": "0.2.0", - "qs": "6.4.0", - "safe-buffer": "5.0.1", - "stringstream": "0.0.5", - "tough-cookie": "2.3.2", - "tunnel-agent": "0.6.0", - "uuid": "3.0.1" - } - }, - "rimraf": { - "version": "2.6.1", - "bundled": true, - "dev": true, - "requires": { - "glob": "7.1.2" - } - }, - "safe-buffer": { - "version": "5.0.1", - "bundled": true, - "dev": true - }, - "semver": { - "version": "5.3.0", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sntp": { - "version": "1.0.9", - "bundled": true, - "dev": true, - "requires": { - "hoek": "2.16.3" - } - }, - "sshpk": { - "version": "1.13.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "asn1": "0.2.3", - "assert-plus": "1.0.0", - "bcrypt-pbkdf": "1.0.1", - "dashdash": "1.14.1", - "ecc-jsbn": "0.1.1", - "getpass": "0.1.7", - "jodid25519": "1.0.2", - "jsbn": "0.1.1", - "tweetnacl": "0.14.5" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "string_decoder": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "requires": { - "safe-buffer": "5.0.1" - } - }, - "stringstream": { - "version": "0.0.5", - "bundled": true, - "dev": true, - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "2.2.1", - "bundled": true, - "dev": true, - "requires": { - "block-stream": "0.0.9", - "fstream": "1.0.11", - "inherits": "2.0.3" - } - }, - "tar-pack": { - "version": "3.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "2.6.8", - "fstream": "1.0.11", - "fstream-ignore": "1.0.5", - "once": "1.4.0", - "readable-stream": "2.2.9", - "rimraf": "2.6.1", - "tar": "2.2.1", - "uid-number": "0.0.6" - } - }, - "tough-cookie": { - "version": "2.3.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "punycode": "1.4.1" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "bundled": true, - "dev": true, - "optional": true - }, - "uid-number": { - "version": "0.0.6", - "bundled": true, - "dev": true, - "optional": true - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true - }, - "uuid": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "verror": { - "version": "1.3.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "extsprintf": "1.0.2" - } - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "1.0.2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true - } - } - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "getobject": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz", - "integrity": "sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=", - "dev": true - }, - "glob": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", - "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "2.0.0", - "is-glob": "2.0.1" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "2.0.1" - } - }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, - "requires": { - "ini": "1.3.5" - } - }, - "google-closure-compiler": { - "version": "20171112.0.0", - "resolved": "https://registry.npmjs.org/google-closure-compiler/-/google-closure-compiler-20171112.0.0.tgz", - "integrity": "sha1-eHENtO+J/1QGOdgA5tWffLfPLZg=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "vinyl": "2.1.0", - "vinyl-sourcemaps-apply": "0.2.1" - } - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", - "dev": true, - "requires": { - "create-error-class": "3.0.2", - "duplexer3": "0.1.4", - "get-stream": "3.0.0", - "is-redirect": "1.0.0", - "is-retry-allowed": "1.1.0", - "is-stream": "1.1.0", - "lowercase-keys": "1.0.0", - "safe-buffer": "5.1.1", - "timed-out": "4.0.1", - "unzip-response": "2.0.1", - "url-parse-lax": "1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", - "dev": true - }, - "grunt": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/grunt/-/grunt-1.0.1.tgz", - "integrity": "sha1-6HeHZOlEsY8yuw8QuQeEdcnftWs=", - "dev": true, - "requires": { - "coffee-script": "1.10.0", - "dateformat": "1.0.12", - "eventemitter2": "0.4.14", - "exit": "0.1.2", - "findup-sync": "0.3.0", - "glob": "7.0.6", - "grunt-cli": "1.2.0", - "grunt-known-options": "1.1.0", - "grunt-legacy-log": "1.0.0", - "grunt-legacy-util": "1.0.0", - "iconv-lite": "0.4.19", - "js-yaml": "3.5.5", - "minimatch": "3.0.4", - "nopt": "3.0.6", - "path-is-absolute": "1.0.1", - "rimraf": "2.2.8" - }, - "dependencies": { - "grunt-cli": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz", - "integrity": "sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=", - "dev": true, - "requires": { - "findup-sync": "0.3.0", - "grunt-known-options": "1.1.0", - "nopt": "3.0.6", - "resolve": "1.1.7" - } - }, - "rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=", - "dev": true - } - } - }, - "grunt-cli": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz", - "integrity": "sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=", - "dev": true, - "requires": { - "findup-sync": "0.3.0", - "grunt-known-options": "1.1.0", - "nopt": "3.0.6", - "resolve": "1.1.7" - } - }, - "grunt-closure-tools": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grunt-closure-tools/-/grunt-closure-tools-1.0.0.tgz", - "integrity": "sha1-+pdty8JrZSYgq1pYkYsZnxbpyZ0=", - "dev": true, - "requires": { - "grunt": "1.0.1", - "task-closure-tools": "0.1.10" - } - }, - "grunt-contrib-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-1.0.1.tgz", - "integrity": "sha1-YVCYYwhOhx1+ht5IwBUlntl3Rb0=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "source-map": "0.5.7" - } - }, - "grunt-known-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz", - "integrity": "sha1-pCdO6zL6dl2lp6OxcSYXzjsUQUk=", - "dev": true - }, - "grunt-legacy-log": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.0.tgz", - "integrity": "sha1-+4bxgJhHvAfcR4Q/ns1srLYt8tU=", - "dev": true, - "requires": { - "colors": "1.1.2", - "grunt-legacy-log-utils": "1.0.0", - "hooker": "0.2.3", - "lodash": "3.10.1", - "underscore.string": "3.2.3" - } - }, - "grunt-legacy-log-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-1.0.0.tgz", - "integrity": "sha1-p7ji0Ps1taUPSvmG/BEnSevJbz0=", - "dev": true, - "requires": { - "chalk": "1.1.3", - "lodash": "4.3.0" - }, - "dependencies": { - "lodash": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz", - "integrity": "sha1-79nEpuxT87BUEkKZFcPkgk5NJaQ=", - "dev": true - } - } - }, - "grunt-legacy-util": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.0.0.tgz", - "integrity": "sha1-OGqnjcbtUJhsKxiVcmWxtIq7m4Y=", - "dev": true, - "requires": { - "async": "1.5.2", - "exit": "0.1.2", - "getobject": "0.1.0", - "hooker": "0.2.3", - "lodash": "4.3.0", - "underscore.string": "3.2.3", - "which": "1.2.14" - }, - "dependencies": { - "lodash": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz", - "integrity": "sha1-79nEpuxT87BUEkKZFcPkgk5NJaQ=", - "dev": true - } - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", - "dev": true - }, - "hooker": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz", - "integrity": "sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=", - "dev": true - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha1-bWDjSzq7yDEwYsO3mO+NkBoHrzw=", - "dev": true - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "dev": true, - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": "1.3.1" - }, - "dependencies": { - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=", - "dev": true - } - } - }, - "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha1-90aPYBNfXl2tM5nAqBvpoWA6CCs=", - "dev": true - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", - "dev": true - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "requires": { - "repeating": "2.0.1" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true - }, - "ipaddr.js": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz", - "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "1.11.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "2.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "is-installed-globally": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", - "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", - "dev": true, - "requires": { - "global-dirs": "0.1.1", - "is-path-inside": "1.0.1" - } - }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", - "dev": true - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "1.0.2" - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", - "dev": true - }, - "is-retry-allowed": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, - "js-yaml": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz", - "integrity": "sha1-A3fDgBfKvHMisNH7zSWkkWQfL74=", - "dev": true, - "requires": { - "argparse": "1.0.9", - "esprima": "2.7.3" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", - "dev": true, - "requires": { - "package-json": "4.0.1" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "0.4.1", - "signal-exit": "3.0.2" - } - }, - "lowercase-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", - "dev": true - }, - "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", - "dev": true, - "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" - } - }, - "make-dir": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz", - "integrity": "sha512-0Pkui4wLJ7rxvmfUvs87skoEaxmu0hCUApF8nonzpl7q//FWp9zu8W61Scz4sd/kUiqDxvUhtoam2efDyiBzcA==", - "dev": true, - "requires": { - "pify": "3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-stream": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", - "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", - "dev": true - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "requires": { - "camelcase-keys": "2.1.0", - "decamelize": "1.2.0", - "loud-rejection": "1.6.0", - "map-obj": "1.0.1", - "minimist": "1.2.0", - "normalize-package-data": "2.4.0", - "object-assign": "4.1.1", - "read-pkg-up": "1.0.1", - "redent": "1.0.0", - "trim-newlines": "1.0.0" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.4" - } - }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true - }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=", - "dev": true - }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", - "dev": true, - "requires": { - "mime-db": "1.30.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", - "dev": true, - "requires": { - "brace-expansion": "1.1.8" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "nan": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz", - "integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=", - "dev": true, - "optional": true - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true - }, - "nodemon": { - "version": "1.14.7", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.14.7.tgz", - "integrity": "sha512-uEguLNr+QIk4TVd8swNvw7kHqOE/sjvNsIwhnc8CM7QdI+ezFvvkMRtCpCJ+DEVyIopLSTu2eayZ/ELKtswcbg==", - "dev": true, - "requires": { - "chokidar": "1.7.0", - "debug": "2.6.9", - "ignore-by-default": "1.0.1", - "minimatch": "3.0.4", - "pstree.remy": "1.1.0", - "touch": "3.1.0", - "undefsafe": "0.0.3", - "update-notifier": "2.3.0" - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true, - "requires": { - "abbrev": "1.1.1" - } - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha1-EvlaMH1YNSB1oEkHuErIvpisAS8=", - "dev": true, - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.4.1", - "validate-npm-package-license": "3.0.1" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "1.1.0" - } - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "dev": true, - "requires": { - "path-key": "2.0.1" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "0.1.5", - "is-extendable": "0.1.1" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", - "dev": true, - "requires": { - "got": "6.7.1", - "registry-auth-token": "3.3.1", - "registry-url": "3.1.0", - "semver": "5.4.1" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "0.3.0", - "is-dotfile": "1.0.3", - "is-extglob": "1.0.0", - "is-glob": "2.0.1" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "1.3.1" - } - }, - "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "2.0.4" - } - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "proxy-addr": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz", - "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=", - "dev": true, - "requires": { - "forwarded": "0.1.2", - "ipaddr.js": "1.5.2" - } - }, - "ps-tree": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz", - "integrity": "sha1-tCGyQUDWID8e08dplrRCewjowBQ=", - "dev": true, - "requires": { - "event-stream": "3.3.4" - } - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "pstree.remy": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.0.tgz", - "integrity": "sha512-q5I5vLRMVtdWa8n/3UEzZX7Lfghzrg9eG2IKk2ENLSofKRCXVqMvMUHxCKgXNaqH/8ebhBxrqftHWnyTFweJ5Q==", - "dev": true, - "requires": { - "ps-tree": "1.1.0" - } - }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==", - "dev": true - }, - "randomatic": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", - "dev": true, - "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "1.1.6" - } - } - } - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", - "dev": true - }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "dev": true, - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - } - }, - "rc": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz", - "integrity": "sha1-2M6ctX6NZNnHut2YdsfDTL48cHc=", - "dev": true, - "requires": { - "deep-extend": "0.4.2", - "ini": "1.3.5", - "minimist": "1.2.0", - "strip-json-comments": "2.0.1" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha1-No8lEtefnUb9/HE0mueHi7weuVw=", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "readdirp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "minimatch": "3.0.4", - "readable-stream": "2.3.3", - "set-immediate-shim": "1.0.1" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "requires": { - "indent-string": "2.1.0", - "strip-indent": "1.0.1" - } - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dev": true, - "requires": { - "is-equal-shallow": "0.1.3" - } - }, - "registry-auth-token": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz", - "integrity": "sha1-+w0yie4Nmtosu1KvXf5mywcNMAY=", - "dev": true, - "requires": { - "rc": "1.2.2", - "safe-buffer": "5.1.1" - } - }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", - "dev": true, - "requires": { - "rc": "1.2.2" - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "1.0.2" - } - }, - "replace-ext": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", - "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", - "dev": true - }, - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", - "dev": true - }, - "rimraf": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", - "dev": true, - "requires": { - "glob": "7.0.6" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha1-iTMSr2myEj3vcfV4iQAWce6yyFM=", - "dev": true - }, - "semver": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz", - "integrity": "sha1-4FnAnYVx8FQII3M0M1BdOi8AsY4=", - "dev": true - }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", - "dev": true, - "requires": { - "semver": "5.4.1" - } - }, - "send": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz", - "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "1.1.1", - "destroy": "1.0.4", - "encodeurl": "1.0.1", - "escape-html": "1.0.3", - "etag": "1.8.1", - "fresh": "0.5.2", - "http-errors": "1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "2.3.0", - "range-parser": "1.2.0", - "statuses": "1.3.1" - } - }, - "serve-static": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz", - "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==", - "dev": true, - "requires": { - "encodeurl": "1.0.1", - "escape-html": "1.0.3", - "parseurl": "1.3.2", - "send": "0.16.1" - } - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "dev": true, - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", - "dev": true - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", - "dev": true - }, - "split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", - "dev": true, - "requires": { - "through": "2.3.8" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=", - "dev": true - }, - "stream-combiner": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", - "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", - "dev": true, - "requires": { - "duplexer": "0.1.1" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "2.0.0", - "strip-ansi": "4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "3.0.0" - } - } - } - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "requires": { - "get-stdin": "4.0.1" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "task-closure-tools": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/task-closure-tools/-/task-closure-tools-0.1.10.tgz", - "integrity": "sha1-2bHs+A7jfi2tIkRbJiAseN0VU3s=", - "dev": true - }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", - "dev": true, - "requires": { - "execa": "0.7.0" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "2.3.3", - "xtend": "4.0.1" - } - }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", - "dev": true - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "dev": true, - "requires": { - "nopt": "1.0.10" - }, - "dependencies": { - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", - "dev": true, - "requires": { - "abbrev": "1.1.1" - } - } - } - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "type-is": { - "version": "1.6.15", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", - "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "2.1.17" - } - }, - "undefsafe": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz", - "integrity": "sha1-7Mo6A+VrmvFzhbqsgSrIO5lKli8=", - "dev": true - }, - "underscore.string": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.2.3.tgz", - "integrity": "sha1-gGmSYzZl1eX8tNsfs6hi62jp5to=", - "dev": true - }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", - "dev": true, - "requires": { - "crypto-random-string": "1.0.0" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", - "dev": true - }, - "update-notifier": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz", - "integrity": "sha1-TognpruRUUCrCTVZ1wFOPruDdFE=", - "dev": true, - "requires": { - "boxen": "1.3.0", - "chalk": "2.3.0", - "configstore": "3.1.1", - "import-lazy": "2.1.0", - "is-installed-globally": "0.1.0", - "is-npm": "1.0.0", - "latest-version": "3.1.0", - "semver-diff": "2.1.0", - "xdg-basedir": "3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz", - "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==", - "dev": true, - "requires": { - "color-convert": "1.9.1" - } - }, - "chalk": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz", - "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==", - "dev": true, - "requires": { - "ansi-styles": "3.2.0", - "escape-string-regexp": "1.0.5", - "supports-color": "4.5.0" - } - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", - "dev": true, - "requires": { - "has-flag": "2.0.0" - } - } - } - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "dev": true, - "requires": { - "prepend-http": "1.0.4" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "dev": true, - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "vinyl": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz", - "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=", - "dev": true, - "requires": { - "clone": "2.1.1", - "clone-buffer": "1.0.0", - "clone-stats": "1.0.0", - "cloneable-readable": "1.0.0", - "remove-trailing-separator": "1.1.0", - "replace-ext": "1.0.0" - } - }, - "vinyl-sourcemaps-apply": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", - "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", - "dev": true, - "requires": { - "source-map": "0.5.7" - } - }, - "which": { - "version": "1.2.14", - "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", - "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=", - "dev": true, - "requires": { - "isexe": "2.0.0" - } - }, - "widest-line": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz", - "integrity": "sha1-AUKk6KJD+IgsAjOqDgKBqnYVInM=", - "dev": true, - "requires": { - "string-width": "2.1.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write-file-atomic": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz", - "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "imurmurhash": "0.1.4", - "signal-exit": "3.0.2" - } - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", - "dev": true - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - } - } -} diff --git a/utils/server.js b/utils/server.js index 0f1102ca1..b085f08a3 100644 --- a/utils/server.js +++ b/utils/server.js @@ -1,8 +1,6 @@ const express = require('express') const app = express() -// app.get('/hello', (req, res) => res.send('Hello World!')) - app.use('/css', express.static('css')) app.use('/src', express.static('src')) app.use('/external', express.static('external')) From 1bdc6b8fb8fbc1a1a11275ad4e4a1b3633f9e924 Mon Sep 17 00:00:00 2001 From: Javi Agenjo Date: Thu, 7 Jun 2018 19:05:41 +0200 Subject: [PATCH 7/8] Update README.md --- guides/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/guides/README.md b/guides/README.md index ebd024e30..aa92945fe 100644 --- a/guides/README.md +++ b/guides/README.md @@ -26,6 +26,18 @@ Slots have the next information: To retrieve the data traveling through a link you can call node.getInputData or node.getOutputData +### Define your Graph Node + +When creating a class for a graph node here are some useful points: + +- The constructor should create the default inputs and outputs (use ```addInput``` and ```addOutput```) +- Properties that can be edited are stored in ```this.properties = {};``` +- the ```onExecute``` is the method that will be called when the graph is executed +- you can catch if a property was changed defining a ```onPropertyChanged``` +- you must register your node using ```LiteGraph.registerNodeType("type/name", MyGraphNodeClass );``` +- you can alter the default priority of execution by defining the ```MyGraphNodeClass.priority``` (default is 0) +- you can overwrite how the node is rendered using the ```onDrawBackground``` and ```onDrawForeground``` + ## Integration From e4769c949a238959fad94827ef00d69a2192ddf0 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Fri, 8 Jun 2018 18:07:41 +0200 Subject: [PATCH 8/8] Published 0.6.0 --- build/litegraph.js | 4334 ++++++++++++++------------- build/litegraph.min.js | 6310 ++++++++++++++++++++-------------------- package.json | 2 +- 3 files changed, 5293 insertions(+), 5353 deletions(-) diff --git a/build/litegraph.js b/build/litegraph.js index c37c32bba..bba330816 100644 --- a/build/litegraph.js +++ b/build/litegraph.js @@ -1,5 +1,3 @@ -//packer version - (function(global){ // ************************************************************* // LiteGraph CLASS ******* @@ -6594,496 +6592,496 @@ if( typeof(window) != "undefined" && !window["requestAnimationFrame"] ) if(typeof(exports) != "undefined") exports.LiteGraph = this.LiteGraph; - -//basic nodes -(function(global){ -var LiteGraph = global.LiteGraph; - -//Constant -function Time() -{ - this.addOutput("in ms","number"); - this.addOutput("in sec","number"); -} - -Time.title = "Time"; -Time.desc = "Time"; - -Time.prototype.onExecute = function() -{ - this.setOutputData(0, this.graph.globaltime * 1000 ); - this.setOutputData(1, this.graph.globaltime ); -} - -LiteGraph.registerNodeType("basic/time", Time); - - -//Subgraph: a node that contains a graph -function Subgraph() -{ - var that = this; - this.size = [120,60]; - - //create inner graph - this.subgraph = new LGraph(); - this.subgraph._subgraph_node = this; - this.subgraph._is_subgraph = true; - - this.subgraph.onGlobalInputAdded = this.onSubgraphNewGlobalInput.bind(this); - this.subgraph.onGlobalInputRenamed = this.onSubgraphRenamedGlobalInput.bind(this); - this.subgraph.onGlobalInputTypeChanged = this.onSubgraphTypeChangeGlobalInput.bind(this); - - this.subgraph.onGlobalOutputAdded = this.onSubgraphNewGlobalOutput.bind(this); - this.subgraph.onGlobalOutputRenamed = this.onSubgraphRenamedGlobalOutput.bind(this); - this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); - - this.bgcolor = "#663"; -} - -Subgraph.title = "Subgraph"; -Subgraph.desc = "Graph inside a node"; - -Subgraph.prototype.onSubgraphNewGlobalInput = function(name, type) -{ - //add input to the node - this.addInput(name, type); -} - -Subgraph.prototype.onSubgraphRenamedGlobalInput = function(oldname, name) -{ - var slot = this.findInputSlot( oldname ); - if(slot == -1) - return; - var info = this.getInputInfo(slot); - info.name = name; -} - -Subgraph.prototype.onSubgraphTypeChangeGlobalInput = function(name, type) -{ - var slot = this.findInputSlot( name ); - if(slot == -1) - return; - var info = this.getInputInfo(slot); - info.type = type; -} - - -Subgraph.prototype.onSubgraphNewGlobalOutput = function(name, type) -{ - //add output to the node - this.addOutput(name, type); -} - - -Subgraph.prototype.onSubgraphRenamedGlobalOutput = function(oldname, name) -{ - var slot = this.findOutputSlot( oldname ); - if(slot == -1) - return; - var info = this.getOutputInfo(slot); - info.name = name; -} - -Subgraph.prototype.onSubgraphTypeChangeGlobalOutput = function(name, type) -{ - var slot = this.findOutputSlot( name ); - if(slot == -1) - return; - var info = this.getOutputInfo(slot); - info.type = type; -} - - -Subgraph.prototype.getExtraMenuOptions = function(graphcanvas) -{ - var that = this; - return [ {content:"Open", callback: - function() { - graphcanvas.openSubgraph( that.subgraph ); - } - }]; -} - -Subgraph.prototype.onExecute = function() -{ - //send inputs to subgraph global inputs - if(this.inputs) - for(var i = 0; i < this.inputs.length; i++) - { - var input = this.inputs[i]; - var value = this.getInputData(i); - this.subgraph.setGlobalInputData( input.name, value ); - } - - //execute - this.subgraph.runStep(); - - //send subgraph global outputs to outputs - if(this.outputs) - for(var i = 0; i < this.outputs.length; i++) - { - var output = this.outputs[i]; - var value = this.subgraph.getGlobalOutputData( output.name ); - this.setOutputData(i, value); - } -} - -Subgraph.prototype.configure = function(o) -{ - LGraphNode.prototype.configure.call(this, o); - //this.subgraph.configure(o.graph); -} - -Subgraph.prototype.serialize = function() -{ - var data = LGraphNode.prototype.serialize.call(this); - data.subgraph = this.subgraph.serialize(); - return data; -} - -Subgraph.prototype.clone = function() -{ - var node = LiteGraph.createNode(this.type); - var data = this.serialize(); - delete data["id"]; - delete data["inputs"]; - delete data["outputs"]; - node.configure(data); - return node; -} - - -LiteGraph.registerNodeType("graph/subgraph", Subgraph ); - - -//Input for a subgraph -function GlobalInput() -{ - - //random name to avoid problems with other outputs when added - var input_name = "input_" + (Math.random()*1000).toFixed(); - - this.addOutput(input_name, null ); - - this.properties = { name: input_name, type: null }; - - var that = this; - - Object.defineProperty( this.properties, "name", { - get: function() { - return input_name; - }, - set: function(v) { - if(v == "") - return; - - var info = that.getOutputInfo(0); - if(info.name == v) - return; - info.name = v; - if(that.graph) - that.graph.renameGlobalInput(input_name, v); - input_name = v; - }, - enumerable: true - }); - - Object.defineProperty( this.properties, "type", { - get: function() { return that.outputs[0].type; }, - set: function(v) { - that.outputs[0].type = v; - if(that.graph) - that.graph.changeGlobalInputType(input_name, that.outputs[0].type); - }, - enumerable: true - }); -} - -GlobalInput.title = "Input"; -GlobalInput.desc = "Input of the graph"; - -//When added to graph tell the graph this is a new global input -GlobalInput.prototype.onAdded = function() -{ - this.graph.addGlobalInput( this.properties.name, this.properties.type ); -} - -GlobalInput.prototype.onExecute = function() -{ - var name = this.properties.name; - - //read from global input - var data = this.graph.global_inputs[name]; - if(!data) return; - - //put through output - this.setOutputData(0,data.value); -} - -LiteGraph.registerNodeType("graph/input", GlobalInput); - - - -//Output for a subgraph -function GlobalOutput() -{ - //random name to avoid problems with other outputs when added - var output_name = "output_" + (Math.random()*1000).toFixed(); - - this.addInput(output_name, null); - - this._value = null; - - this.properties = {name: output_name, type: null }; - - var that = this; - - Object.defineProperty(this.properties, "name", { - get: function() { - return output_name; - }, - set: function(v) { - if(v == "") - return; - - var info = that.getInputInfo(0); - if(info.name == v) - return; - info.name = v; - if(that.graph) - that.graph.renameGlobalOutput(output_name, v); - output_name = v; - }, - enumerable: true - }); - - Object.defineProperty(this.properties, "type", { - get: function() { return that.inputs[0].type; }, - set: function(v) { - that.inputs[0].type = v; - if(that.graph) - that.graph.changeGlobalInputType( output_name, that.inputs[0].type ); - }, - enumerable: true - }); -} - -GlobalOutput.title = "Output"; -GlobalOutput.desc = "Output of the graph"; - -GlobalOutput.prototype.onAdded = function() -{ - var name = this.graph.addGlobalOutput( this.properties.name, this.properties.type ); -} - -GlobalOutput.prototype.getValue = function() -{ - return this._value; -} - -GlobalOutput.prototype.onExecute = function() -{ - this._value = this.getInputData(0); - this.graph.setGlobalOutputData( this.properties.name, this._value ); -} - -LiteGraph.registerNodeType("graph/output", GlobalOutput); - - - -//Constant -function Constant() -{ - this.addOutput("value","number"); - this.addProperty( "value", 1.0 ); - this.editable = { property:"value", type:"number" }; -} - -Constant.title = "Const"; -Constant.desc = "Constant value"; - - -Constant.prototype.setValue = function(v) -{ - if( typeof(v) == "string") v = parseFloat(v); - this.properties["value"] = v; - this.setDirtyCanvas(true); -}; - -Constant.prototype.onExecute = function() -{ - this.setOutputData(0, parseFloat( this.properties["value"] ) ); -} - -Constant.prototype.onDrawBackground = function(ctx) -{ - //show the current value - this.outputs[0].label = this.properties["value"].toFixed(3); -} - -Constant.prototype.onWidget = function(e,widget) -{ - if(widget.name == "value") - this.setValue(widget.value); -} - -LiteGraph.registerNodeType("basic/const", Constant); - - -//Watch a value in the editor -function Watch() -{ - this.size = [60,20]; - this.addInput("value",0,{label:""}); - this.addOutput("value",0,{label:""}); - this.addProperty( "value", "" ); -} - -Watch.title = "Watch"; -Watch.desc = "Show value of input"; - -Watch.prototype.onExecute = function() -{ - this.properties.value = this.getInputData(0); - this.setOutputData(0, this.properties.value); -} - -Watch.prototype.onDrawBackground = function(ctx) -{ - //show the current value - if(this.inputs[0] && this.properties["value"] != null) - { - if (this.properties["value"].constructor === Number ) - this.inputs[0].label = this.properties["value"].toFixed(3); - else - { - var str = this.properties["value"]; - if(str && str.length) //convert typed to array - str = Array.prototype.slice.call(str).join(","); - this.inputs[0].label = str; - } - } -} - -LiteGraph.registerNodeType("basic/watch", Watch); - -//Watch a value in the editor -function Pass() -{ - this.addInput("in",0); - this.addOutput("out",0); - this.size = [40,20]; -} - -Pass.title = "Pass"; -Pass.desc = "Allows to connect different types"; - -Pass.prototype.onExecute = function() -{ - this.setOutputData( 0, this.getInputData(0) ); -} - -LiteGraph.registerNodeType("basic/pass", Pass); - - -//Show value inside the debug console -function Console() -{ - this.mode = LiteGraph.ON_EVENT; - this.size = [60,20]; - this.addProperty( "msg", "" ); - this.addInput("log", LiteGraph.EVENT); - this.addInput("msg",0); -} - -Console.title = "Console"; -Console.desc = "Show value inside the console"; - -Console.prototype.onAction = function(action, param) -{ - if(action == "log") - console.log( param ); - else if(action == "warn") - console.warn( param ); - else if(action == "error") - console.error( param ); -} - -Console.prototype.onExecute = function() -{ - var msg = this.getInputData(1); - if(msg !== null) - this.properties.msg = msg; - console.log(msg); -} - -Console.prototype.onGetInputs = function() -{ - return [["log",LiteGraph.ACTION],["warn",LiteGraph.ACTION],["error",LiteGraph.ACTION]]; -} - -LiteGraph.registerNodeType("basic/console", Console ); - - - -//Show value inside the debug console -function NodeScript() -{ - this.size = [60,20]; - this.addProperty( "onExecute", "" ); - this.addInput("in", ""); - this.addInput("in2", ""); - this.addOutput("out", ""); - this.addOutput("out2", ""); - - this._func = null; -} - -NodeScript.title = "Script"; -NodeScript.desc = "executes a code"; - -NodeScript.widgets_info = { - "onExecute": { type:"code" } -}; - -NodeScript.prototype.onPropertyChanged = function(name,value) -{ - if(name == "onExecute" && LiteGraph.allow_scripts ) - { - this._func = null; - try - { - this._func = new Function( value ); - } - catch (err) - { - console.error("Error parsing script"); - console.error(err); - } - } -} - -NodeScript.prototype.onExecute = function() -{ - if(!this._func) - return; - - try - { - this._func.call(this); - } - catch (err) - { - console.error("Error in script"); - console.error(err); - } -} - -LiteGraph.registerNodeType("basic/script", NodeScript ); - - - -})(this); + +//basic nodes +(function(global){ +var LiteGraph = global.LiteGraph; + +//Constant +function Time() +{ + this.addOutput("in ms","number"); + this.addOutput("in sec","number"); +} + +Time.title = "Time"; +Time.desc = "Time"; + +Time.prototype.onExecute = function() +{ + this.setOutputData(0, this.graph.globaltime * 1000 ); + this.setOutputData(1, this.graph.globaltime ); +} + +LiteGraph.registerNodeType("basic/time", Time); + + +//Subgraph: a node that contains a graph +function Subgraph() +{ + var that = this; + this.size = [120,60]; + + //create inner graph + this.subgraph = new LGraph(); + this.subgraph._subgraph_node = this; + this.subgraph._is_subgraph = true; + + this.subgraph.onGlobalInputAdded = this.onSubgraphNewGlobalInput.bind(this); + this.subgraph.onGlobalInputRenamed = this.onSubgraphRenamedGlobalInput.bind(this); + this.subgraph.onGlobalInputTypeChanged = this.onSubgraphTypeChangeGlobalInput.bind(this); + + this.subgraph.onGlobalOutputAdded = this.onSubgraphNewGlobalOutput.bind(this); + this.subgraph.onGlobalOutputRenamed = this.onSubgraphRenamedGlobalOutput.bind(this); + this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); + + this.bgcolor = "#663"; +} + +Subgraph.title = "Subgraph"; +Subgraph.desc = "Graph inside a node"; + +Subgraph.prototype.onSubgraphNewGlobalInput = function(name, type) +{ + //add input to the node + this.addInput(name, type); +} + +Subgraph.prototype.onSubgraphRenamedGlobalInput = function(oldname, name) +{ + var slot = this.findInputSlot( oldname ); + if(slot == -1) + return; + var info = this.getInputInfo(slot); + info.name = name; +} + +Subgraph.prototype.onSubgraphTypeChangeGlobalInput = function(name, type) +{ + var slot = this.findInputSlot( name ); + if(slot == -1) + return; + var info = this.getInputInfo(slot); + info.type = type; +} + + +Subgraph.prototype.onSubgraphNewGlobalOutput = function(name, type) +{ + //add output to the node + this.addOutput(name, type); +} + + +Subgraph.prototype.onSubgraphRenamedGlobalOutput = function(oldname, name) +{ + var slot = this.findOutputSlot( oldname ); + if(slot == -1) + return; + var info = this.getOutputInfo(slot); + info.name = name; +} + +Subgraph.prototype.onSubgraphTypeChangeGlobalOutput = function(name, type) +{ + var slot = this.findOutputSlot( name ); + if(slot == -1) + return; + var info = this.getOutputInfo(slot); + info.type = type; +} + + +Subgraph.prototype.getExtraMenuOptions = function(graphcanvas) +{ + var that = this; + return [ {content:"Open", callback: + function() { + graphcanvas.openSubgraph( that.subgraph ); + } + }]; +} + +Subgraph.prototype.onExecute = function() +{ + //send inputs to subgraph global inputs + if(this.inputs) + for(var i = 0; i < this.inputs.length; i++) + { + var input = this.inputs[i]; + var value = this.getInputData(i); + this.subgraph.setGlobalInputData( input.name, value ); + } + + //execute + this.subgraph.runStep(); + + //send subgraph global outputs to outputs + if(this.outputs) + for(var i = 0; i < this.outputs.length; i++) + { + var output = this.outputs[i]; + var value = this.subgraph.getGlobalOutputData( output.name ); + this.setOutputData(i, value); + } +} + +Subgraph.prototype.configure = function(o) +{ + LGraphNode.prototype.configure.call(this, o); + //this.subgraph.configure(o.graph); +} + +Subgraph.prototype.serialize = function() +{ + var data = LGraphNode.prototype.serialize.call(this); + data.subgraph = this.subgraph.serialize(); + return data; +} + +Subgraph.prototype.clone = function() +{ + var node = LiteGraph.createNode(this.type); + var data = this.serialize(); + delete data["id"]; + delete data["inputs"]; + delete data["outputs"]; + node.configure(data); + return node; +} + + +LiteGraph.registerNodeType("graph/subgraph", Subgraph ); + + +//Input for a subgraph +function GlobalInput() +{ + + //random name to avoid problems with other outputs when added + var input_name = "input_" + (Math.random()*1000).toFixed(); + + this.addOutput(input_name, null ); + + this.properties = { name: input_name, type: null }; + + var that = this; + + Object.defineProperty( this.properties, "name", { + get: function() { + return input_name; + }, + set: function(v) { + if(v == "") + return; + + var info = that.getOutputInfo(0); + if(info.name == v) + return; + info.name = v; + if(that.graph) + that.graph.renameGlobalInput(input_name, v); + input_name = v; + }, + enumerable: true + }); + + Object.defineProperty( this.properties, "type", { + get: function() { return that.outputs[0].type; }, + set: function(v) { + that.outputs[0].type = v; + if(that.graph) + that.graph.changeGlobalInputType(input_name, that.outputs[0].type); + }, + enumerable: true + }); +} + +GlobalInput.title = "Input"; +GlobalInput.desc = "Input of the graph"; + +//When added to graph tell the graph this is a new global input +GlobalInput.prototype.onAdded = function() +{ + this.graph.addGlobalInput( this.properties.name, this.properties.type ); +} + +GlobalInput.prototype.onExecute = function() +{ + var name = this.properties.name; + + //read from global input + var data = this.graph.global_inputs[name]; + if(!data) return; + + //put through output + this.setOutputData(0,data.value); +} + +LiteGraph.registerNodeType("graph/input", GlobalInput); + + + +//Output for a subgraph +function GlobalOutput() +{ + //random name to avoid problems with other outputs when added + var output_name = "output_" + (Math.random()*1000).toFixed(); + + this.addInput(output_name, null); + + this._value = null; + + this.properties = {name: output_name, type: null }; + + var that = this; + + Object.defineProperty(this.properties, "name", { + get: function() { + return output_name; + }, + set: function(v) { + if(v == "") + return; + + var info = that.getInputInfo(0); + if(info.name == v) + return; + info.name = v; + if(that.graph) + that.graph.renameGlobalOutput(output_name, v); + output_name = v; + }, + enumerable: true + }); + + Object.defineProperty(this.properties, "type", { + get: function() { return that.inputs[0].type; }, + set: function(v) { + that.inputs[0].type = v; + if(that.graph) + that.graph.changeGlobalInputType( output_name, that.inputs[0].type ); + }, + enumerable: true + }); +} + +GlobalOutput.title = "Output"; +GlobalOutput.desc = "Output of the graph"; + +GlobalOutput.prototype.onAdded = function() +{ + var name = this.graph.addGlobalOutput( this.properties.name, this.properties.type ); +} + +GlobalOutput.prototype.getValue = function() +{ + return this._value; +} + +GlobalOutput.prototype.onExecute = function() +{ + this._value = this.getInputData(0); + this.graph.setGlobalOutputData( this.properties.name, this._value ); +} + +LiteGraph.registerNodeType("graph/output", GlobalOutput); + + + +//Constant +function Constant() +{ + this.addOutput("value","number"); + this.addProperty( "value", 1.0 ); + this.editable = { property:"value", type:"number" }; +} + +Constant.title = "Const"; +Constant.desc = "Constant value"; + + +Constant.prototype.setValue = function(v) +{ + if( typeof(v) == "string") v = parseFloat(v); + this.properties["value"] = v; + this.setDirtyCanvas(true); +}; + +Constant.prototype.onExecute = function() +{ + this.setOutputData(0, parseFloat( this.properties["value"] ) ); +} + +Constant.prototype.onDrawBackground = function(ctx) +{ + //show the current value + this.outputs[0].label = this.properties["value"].toFixed(3); +} + +Constant.prototype.onWidget = function(e,widget) +{ + if(widget.name == "value") + this.setValue(widget.value); +} + +LiteGraph.registerNodeType("basic/const", Constant); + + +//Watch a value in the editor +function Watch() +{ + this.size = [60,20]; + this.addInput("value",0,{label:""}); + this.addOutput("value",0,{label:""}); + this.addProperty( "value", "" ); +} + +Watch.title = "Watch"; +Watch.desc = "Show value of input"; + +Watch.prototype.onExecute = function() +{ + this.properties.value = this.getInputData(0); + this.setOutputData(0, this.properties.value); +} + +Watch.prototype.onDrawBackground = function(ctx) +{ + //show the current value + if(this.inputs[0] && this.properties["value"] != null) + { + if (this.properties["value"].constructor === Number ) + this.inputs[0].label = this.properties["value"].toFixed(3); + else + { + var str = this.properties["value"]; + if(str && str.length) //convert typed to array + str = Array.prototype.slice.call(str).join(","); + this.inputs[0].label = str; + } + } +} + +LiteGraph.registerNodeType("basic/watch", Watch); + +//Watch a value in the editor +function Pass() +{ + this.addInput("in",0); + this.addOutput("out",0); + this.size = [40,20]; +} + +Pass.title = "Pass"; +Pass.desc = "Allows to connect different types"; + +Pass.prototype.onExecute = function() +{ + this.setOutputData( 0, this.getInputData(0) ); +} + +LiteGraph.registerNodeType("basic/pass", Pass); + + +//Show value inside the debug console +function Console() +{ + this.mode = LiteGraph.ON_EVENT; + this.size = [60,20]; + this.addProperty( "msg", "" ); + this.addInput("log", LiteGraph.EVENT); + this.addInput("msg",0); +} + +Console.title = "Console"; +Console.desc = "Show value inside the console"; + +Console.prototype.onAction = function(action, param) +{ + if(action == "log") + console.log( param ); + else if(action == "warn") + console.warn( param ); + else if(action == "error") + console.error( param ); +} + +Console.prototype.onExecute = function() +{ + var msg = this.getInputData(1); + if(msg !== null) + this.properties.msg = msg; + console.log(msg); +} + +Console.prototype.onGetInputs = function() +{ + return [["log",LiteGraph.ACTION],["warn",LiteGraph.ACTION],["error",LiteGraph.ACTION]]; +} + +LiteGraph.registerNodeType("basic/console", Console ); + + + +//Show value inside the debug console +function NodeScript() +{ + this.size = [60,20]; + this.addProperty( "onExecute", "" ); + this.addInput("in", ""); + this.addInput("in2", ""); + this.addOutput("out", ""); + this.addOutput("out2", ""); + + this._func = null; +} + +NodeScript.title = "Script"; +NodeScript.desc = "executes a code"; + +NodeScript.widgets_info = { + "onExecute": { type:"code" } +}; + +NodeScript.prototype.onPropertyChanged = function(name,value) +{ + if(name == "onExecute" && LiteGraph.allow_scripts ) + { + this._func = null; + try + { + this._func = new Function( value ); + } + catch (err) + { + console.error("Error parsing script"); + console.error(err); + } + } +} + +NodeScript.prototype.onExecute = function() +{ + if(!this._func) + return; + + try + { + this._func.call(this); + } + catch (err) + { + console.error("Error in script"); + console.error(err); + } +} + +LiteGraph.registerNodeType("basic/script", NodeScript ); + + + +})(this); //event related nodes (function(global){ var LiteGraph = global.LiteGraph; @@ -7233,844 +7231,844 @@ DelayEvent.prototype.onGetInputs = function() LiteGraph.registerNodeType("events/delay", DelayEvent ); -})(this); -//widgets -(function(global){ -var LiteGraph = global.LiteGraph; - - /* Button ****************/ - - function WidgetButton() - { - this.addOutput( "clicked", LiteGraph.EVENT ); - this.addProperty( "text","" ); - this.addProperty( "font","40px Arial" ); - this.addProperty( "message", "" ); - this.size = [64,84]; - } - - WidgetButton.title = "Button"; - WidgetButton.desc = "Triggers an event"; - - WidgetButton.prototype.onDrawForeground = function(ctx) - { - if(this.flags.collapsed) - return; - - //ctx.font = "40px Arial"; - //ctx.textAlign = "center"; - ctx.fillStyle = "black"; - ctx.fillRect(1,1,this.size[0] - 3, this.size[1] - 3); - ctx.fillStyle = "#AAF"; - ctx.fillRect(0,0,this.size[0] - 3, this.size[1] - 3); - ctx.fillStyle = this.clicked ? "white" : (this.mouseOver ? "#668" : "#334"); - ctx.fillRect(1,1,this.size[0] - 4, this.size[1] - 4); - - if( this.properties.text || this.properties.text === 0 ) - { - ctx.textAlign = "center"; - ctx.fillStyle = this.clicked ? "black" : "white"; - if( this.properties.font ) - ctx.font = this.properties.font; - ctx.fillText(this.properties.text, this.size[0] * 0.5, this.size[1] * 0.85 ); - ctx.textAlign = "left"; - } - } - - WidgetButton.prototype.onMouseDown = function(e, local_pos) - { - if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) - { - this.clicked = true; - this.trigger( "clicked", this.properties.message ); - return true; - } - } - - WidgetButton.prototype.onMouseUp = function(e) - { - this.clicked = false; - } - - - LiteGraph.registerNodeType("widget/button", WidgetButton ); - - - function WidgetToggle() - { - this.addInput( "", "boolean" ); - this.addOutput( "v", "boolean" ); - this.addOutput( "e", LiteGraph.EVENT ); - this.properties = { font: "", value: false }; - this.size = [124,64]; - } - - WidgetToggle.title = "Toggle"; - WidgetToggle.desc = "Toggles between true or false"; - - WidgetToggle.prototype.onDrawForeground = function(ctx) - { - if(this.flags.collapsed) - return; - - var size = this.size[1] * 0.5; - var margin = 0.25; - var h = this.size[1] * 0.8; - - ctx.fillStyle = "#AAA"; - ctx.fillRect(10, h - size,size,size); - - ctx.fillStyle = this.properties.value ? "#AEF" : "#000"; - ctx.fillRect(10+size*margin,h - size + size*margin,size*(1-margin*2),size*(1-margin*2)); - - ctx.textAlign = "left"; - ctx.font = this.properties.font || ((size * 0.8).toFixed(0) + "px Arial"); - ctx.fillStyle = "#AAA"; - ctx.fillText( this.title, size + 20, h * 0.85 ); - ctx.textAlign = "left"; - } - - WidgetToggle.prototype.onExecute = function() - { - var v = this.getInputData(0); - if( v != null ) - this.properties.value = v; - this.setOutputData( 0, this.properties.value ); - } - - WidgetToggle.prototype.onMouseDown = function(e, local_pos) - { - if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) - { - this.properties.value = !this.properties.value; - this.trigger( "clicked", this.properties.value ); - return true; - } - } - - LiteGraph.registerNodeType("widget/toggle", WidgetToggle ); - - - - /* Knob ****************/ - - function WidgetKnob() - { - this.addOutput("",'number'); - this.size = [64,84]; - this.properties = {min:0,max:1,value:0.5,wcolor:"#7AF",size:50}; - } - - WidgetKnob.title = "Knob"; - WidgetKnob.desc = "Circular controller"; - WidgetKnob.widgets = [{name:"increase",text:"+",type:"minibutton"},{name:"decrease",text:"-",type:"minibutton"}]; - - - WidgetKnob.prototype.onAdded = function() - { - this.value = (this.properties["value"] - this.properties["min"]) / (this.properties["max"] - this.properties["min"]); - - this.imgbg = this.loadImage("imgs/knob_bg.png"); - this.imgfg = this.loadImage("imgs/knob_fg.png"); - } - - WidgetKnob.prototype.onDrawImageKnob = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - var d = this.imgbg.width*0.5; - var scale = this.size[0] / this.imgfg.width; - - ctx.save(); - ctx.translate(0,20); - ctx.scale(scale,scale); - ctx.drawImage(this.imgbg,0,0); - //ctx.drawImage(this.imgfg,0,20); - - ctx.translate(d,d); - ctx.rotate(this.value * (Math.PI*2) * 6/8 + Math.PI * 10/8); - //ctx.rotate(this.value * (Math.PI*2)); - ctx.translate(-d,-d); - ctx.drawImage(this.imgfg,0,0); - - ctx.restore(); - - if(this.title) - { - ctx.font = "bold 16px Criticized,Tahoma"; - ctx.fillStyle="rgba(100,100,100,0.8)"; - ctx.textAlign = "center"; - ctx.fillText(this.title.toUpperCase(), this.size[0] * 0.5, 18 ); - ctx.textAlign = "left"; - } - } - - WidgetKnob.prototype.onDrawVectorKnob = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - //circle around - ctx.lineWidth = 1; - ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; - ctx.fillStyle="#000"; - ctx.beginPath(); - ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.5,0,Math.PI*2,true); - ctx.stroke(); - - if(this.value > 0) - { - ctx.strokeStyle=this.properties["wcolor"]; - ctx.lineWidth = (this.properties.size * 0.2); - ctx.beginPath(); - ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.35,Math.PI * -0.5 + Math.PI*2 * this.value,Math.PI * -0.5,true); - ctx.stroke(); - ctx.lineWidth = 1; - } - - ctx.font = (this.properties.size * 0.2) + "px Arial"; - ctx.fillStyle="#AAA"; - ctx.textAlign = "center"; - - var str = this.properties["value"]; - if(typeof(str) == 'number') - str = str.toFixed(2); - - ctx.fillText(str,this.size[0] * 0.5,this.size[1]*0.65); - ctx.textAlign = "left"; - } - - WidgetKnob.prototype.onDrawForeground = function(ctx) - { - this.onDrawImageKnob(ctx); - } - - WidgetKnob.prototype.onExecute = function() - { - this.setOutputData(0, this.properties["value"] ); - - this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); - } - - WidgetKnob.prototype.onMouseDown = function(e) - { - if(!this.imgfg || !this.imgfg.width) return; - - //this.center = [this.imgbg.width * 0.5, this.imgbg.height * 0.5 + 20]; - //this.radius = this.imgbg.width * 0.5; - this.center = [this.size[0] * 0.5, this.size[1] * 0.5 + 20]; - this.radius = this.size[0] * 0.5; - - if(e.canvasY - this.pos[1] < 20 || LiteGraph.distance([e.canvasX,e.canvasY],[this.pos[0] + this.center[0],this.pos[1] + this.center[1]]) > this.radius) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - - /* - var tmp = this.localToScreenSpace(0,0); - this.trace(tmp[0] + "," + tmp[1]); */ - return true; - } - - WidgetKnob.prototype.onMouseMove = function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - var v = this.value; - v -= (m[1] - this.oldmouse[1]) * 0.01; - if(v > 1.0) v = 1.0; - else if(v < 0.0) v = 0.0; - - this.value = v; - this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; - - this.oldmouse = m; - this.setDirtyCanvas(true); - } - - WidgetKnob.prototype.onMouseUp = function(e) - { - if(this.oldmouse) - { - this.oldmouse = null; - this.captureInput(false); - } - } - - WidgetKnob.prototype.onMouseLeave = function(e) - { - //this.oldmouse = null; - } - - WidgetKnob.prototype.onWidget = function(e,widget) - { - if(widget.name=="increase") - this.onPropertyChanged("size", this.properties.size + 10); - else if(widget.name=="decrease") - this.onPropertyChanged("size", this.properties.size - 10); - } - - WidgetKnob.prototype.onPropertyChanged = function(name,value) - { - if(name=="wcolor") - this.properties[name] = value; - else if(name=="size") - { - value = parseInt(value); - this.properties[name] = value; - this.size = [value+4,value+24]; - this.setDirtyCanvas(true,true); - } - else if(name=="min" || name=="max" || name=="value") - { - this.properties[name] = parseFloat(value); - } - else - return false; - return true; - } - - LiteGraph.registerNodeType("widget/knob", WidgetKnob); - - //Widget H SLIDER - function WidgetHSlider() - { - this.size = [160,26]; - this.addOutput("",'number'); - this.properties = {wcolor:"#7AF",min:0,max:1,value:0.5}; - } - - WidgetHSlider.title = "H.Slider"; - WidgetHSlider.desc = "Linear slider controller"; - - WidgetHSlider.prototype.onAdded = function() - { - this.value = 0.5; - this.imgfg = this.loadImage("imgs/slider_fg.png"); - } - - WidgetHSlider.prototype.onDrawVectorial = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) return; - - //border - ctx.lineWidth = 1; - ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; - ctx.fillStyle="#000"; - ctx.beginPath(); - ctx.rect(2,0,this.size[0]-4,20); - ctx.stroke(); - - ctx.fillStyle=this.properties["wcolor"]; - ctx.beginPath(); - ctx.rect(2+(this.size[0]-4-20)*this.value,0, 20,20); - ctx.fill(); - } - - WidgetHSlider.prototype.onDrawImage = function(ctx) - { - if(!this.imgfg || !this.imgfg.width) - return; - - //border - ctx.lineWidth = 1; - ctx.fillStyle="#000"; - ctx.fillRect(2,9,this.size[0]-4,2); - - ctx.strokeStyle= "#333"; - ctx.beginPath(); - ctx.moveTo(2,9); - ctx.lineTo(this.size[0]-4,9); - ctx.stroke(); - - ctx.strokeStyle= "#AAA"; - ctx.beginPath(); - ctx.moveTo(2,11); - ctx.lineTo(this.size[0]-4,11); - ctx.stroke(); - - ctx.drawImage(this.imgfg, 2+(this.size[0]-4)*this.value - this.imgfg.width*0.5,-this.imgfg.height*0.5 + 10); - }, - - WidgetHSlider.prototype.onDrawForeground = function(ctx) - { - this.onDrawImage(ctx); - } - - WidgetHSlider.prototype.onExecute = function() - { - this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; - this.setOutputData(0, this.properties["value"] ); - this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); - } - - WidgetHSlider.prototype.onMouseDown = function(e) - { - if(e.canvasY - this.pos[1] < 0) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - return true; - } - - WidgetHSlider.prototype.onMouseMove = function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - var v = this.value; - var delta = (m[0] - this.oldmouse[0]); - v += delta / this.size[0]; - if(v > 1.0) v = 1.0; - else if(v < 0.0) v = 0.0; - - this.value = v; - - this.oldmouse = m; - this.setDirtyCanvas(true); - } - - WidgetHSlider.prototype.onMouseUp = function(e) - { - this.oldmouse = null; - this.captureInput(false); - } - - WidgetHSlider.prototype.onMouseLeave = function(e) - { - //this.oldmouse = null; - } - - WidgetHSlider.prototype.onPropertyChanged = function(name,value) - { - if(name=="wcolor") - this.properties[name] = value; - else - return false; - return true; - } - - LiteGraph.registerNodeType("widget/hslider", WidgetHSlider ); - - - function WidgetProgress() - { - this.size = [160,26]; - this.addInput("",'number'); - this.properties = {min:0,max:1,value:0,wcolor:"#AAF"}; - } - - WidgetProgress.title = "Progress"; - WidgetProgress.desc = "Shows data in linear progress"; - - WidgetProgress.prototype.onExecute = function() - { - var v = this.getInputData(0); - if( v != undefined ) - this.properties["value"] = v; - } - - WidgetProgress.prototype.onDrawForeground = function(ctx) - { - //border - ctx.lineWidth = 1; - ctx.fillStyle=this.properties.wcolor; - var v = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); - v = Math.min(1,v); - v = Math.max(0,v); - ctx.fillRect(2,2,(this.size[0]-4)*v,this.size[1]-4); - } - - LiteGraph.registerNodeType("widget/progress", WidgetProgress); - - - /* - LiteGraph.registerNodeType("widget/kpad",{ - title: "KPad", - desc: "bidimensional slider", - size: [200,200], - outputs: [["x",'number'],["y",'number']], - properties:{x:0,y:0,borderColor:"#333",bgcolorTop:"#444",bgcolorBottom:"#000",shadowSize:1, borderRadius:2}, - - createGradient: function(ctx) - { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - }, - - onDrawBackground: function(ctx) - { - if(!this.lineargradient) - this.createGradient(ctx); - - ctx.lineWidth = 1; - ctx.strokeStyle = this.properties["borderColor"]; - //ctx.fillStyle = "#ebebeb"; - ctx.fillStyle = this.lineargradient; - - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - ctx.roundRect(0,0,this.size[0],this.size[1],this.properties["shadowSize"]); - ctx.fill(); - ctx.shadowColor = "rgba(0,0,0,0)"; - ctx.stroke(); - - ctx.fillStyle = "#A00"; - ctx.fillRect(this.size[0] * this.properties["x"] - 5, this.size[1] * this.properties["y"] - 5,10,10); - }, - - onWidget: function(e,widget) - { - if(widget.name == "update") - { - this.lineargradient = null; - this.setDirtyCanvas(true); - } - }, - - onExecute: function() - { - this.setOutputData(0, this.properties["x"] ); - this.setOutputData(1, this.properties["y"] ); - }, - - onMouseDown: function(e) - { - if(e.canvasY - this.pos[1] < 0) - return false; - - this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - this.captureInput(true); - return true; - }, - - onMouseMove: function(e) - { - if(!this.oldmouse) return; - - var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; - - this.properties.x = m[0] / this.size[0]; - this.properties.y = m[1] / this.size[1]; - - if(this.properties.x > 1.0) this.properties.x = 1.0; - else if(this.properties.x < 0.0) this.properties.x = 0.0; - - if(this.properties.y > 1.0) this.properties.y = 1.0; - else if(this.properties.y < 0.0) this.properties.y = 0.0; - - this.oldmouse = m; - this.setDirtyCanvas(true); - }, - - onMouseUp: function(e) - { - if(this.oldmouse) - { - this.oldmouse = null; - this.captureInput(false); - } - }, - - onMouseLeave: function(e) - { - //this.oldmouse = null; - } - }); - - - - LiteGraph.registerNodeType("widget/button", { - title: "Button", - desc: "A send command button", - - widgets: [{name:"test",text:"Test Button",type:"button"}], - size: [100,40], - properties:{text:"clickme",command:"",color:"#7AF",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",fontsize:"16"}, - outputs:[["M","module"]], - - createGradient: function(ctx) - { - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - }, - - drawVectorShape: function(ctx) - { - ctx.fillStyle = this.mouseOver ? this.properties["color"] : "#AAA"; - - if(this.clicking) - ctx.fillStyle = "#FFF"; - - ctx.strokeStyle = "#AAA"; - ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); - ctx.stroke(); - - if(this.mouseOver) - ctx.fill(); - - //ctx.fillRect(5,20,this.size[0] - 10,this.size[1] - 30); - - ctx.fillStyle = this.mouseOver ? "#000" : "#AAA"; - ctx.font = "bold " + this.properties["fontsize"] + "px Criticized,Tahoma"; - ctx.textAlign = "center"; - ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.5*parseInt(this.properties["fontsize"])); - ctx.textAlign = "left"; - }, - - drawBevelShape: function(ctx) - { - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - - if(!this.lineargradient) - this.createGradient(ctx); - - ctx.fillStyle = this.mouseOver ? this.properties["color"] : this.lineargradient; - if(this.clicking) - ctx.fillStyle = "#444"; - - ctx.strokeStyle = "#FFF"; - ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); - ctx.fill(); - ctx.shadowColor = "rgba(0,0,0,0)"; - ctx.stroke(); - - ctx.fillStyle = this.mouseOver ? "#000" : "#444"; - ctx.font = "bold " + this.properties["fontsize"] + "px Century Gothic"; - ctx.textAlign = "center"; - ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.40*parseInt(this.properties["fontsize"])); - ctx.textAlign = "left"; - }, - - onDrawForeground: function(ctx) - { - this.drawBevelShape(ctx); - }, - - clickButton: function() - { - var module = this.getOutputModule(0); - if(this.properties["command"] && this.properties["command"] != "") - { - if (! module.executeAction(this.properties["command"]) ) - this.trace("Error executing action in other module"); - } - else if(module && module.onTrigger) - { - module.onTrigger(); - } - }, - - onMouseDown: function(e) - { - if(e.canvasY - this.pos[1] < 2) - return false; - this.clickButton(); - this.clicking = true; - return true; - }, - - onMouseUp: function(e) - { - this.clicking = false; - }, - - onExecute: function() - { - }, - - onWidget: function(e,widget) - { - if(widget.name == "test") - { - this.clickButton(); - } - }, - - onPropertyChanged: function(name,value) - { - this.properties[name] = value; - return true; - } - }); - */ - - - function WidgetText() - { - this.addInputs("",0); - this.properties = { value:"...",font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1 }; - } - - WidgetText.title = "Text"; - WidgetText.desc = "Shows the input value"; - WidgetText.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}]; - - WidgetText.prototype.onDrawForeground = function(ctx) - { - //ctx.fillStyle="#000"; - //ctx.fillRect(0,0,100,60); - ctx.fillStyle = this.properties["color"]; - var v = this.properties["value"]; - - if(this.properties["glowSize"]) - { - ctx.shadowColor = this.properties["color"]; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["glowSize"]; - } - else - ctx.shadowColor = "transparent"; - - var fontsize = this.properties["fontsize"]; - - ctx.textAlign = this.properties["align"]; - ctx.font = fontsize.toString() + "px " + this.properties["font"]; - this.str = typeof(v) == 'number' ? v.toFixed(this.properties["decimals"]) : v; - - if( typeof(this.str) == 'string') - { - var lines = this.str.split("\\n"); - for(var i in lines) - ctx.fillText(lines[i],this.properties["align"] == "left" ? 15 : this.size[0] - 15, fontsize * -0.15 + fontsize * (parseInt(i)+1) ); - } - - ctx.shadowColor = "transparent"; - this.last_ctx = ctx; - ctx.textAlign = "left"; - } - - WidgetText.prototype.onExecute = function() - { - var v = this.getInputData(0); - if(v != null) - this.properties["value"] = v; - //this.setDirtyCanvas(true); - } - - WidgetText.prototype.resize = function() - { - if(!this.last_ctx) return; - - var lines = this.str.split("\\n"); - this.last_ctx.font = this.properties["fontsize"] + "px " + this.properties["font"]; - var max = 0; - for(var i in lines) - { - var w = this.last_ctx.measureText(lines[i]).width; - if(max < w) max = w; - } - this.size[0] = max + 20; - this.size[1] = 4 + lines.length * this.properties["fontsize"]; - - this.setDirtyCanvas(true); - } - - WidgetText.prototype.onWidget = function(e,widget) - { - if(widget.name == "resize") - this.resize(); - else if (widget.name == "led_text") - { - this.properties["font"] = "Digital"; - this.properties["glowSize"] = 4; - this.setDirtyCanvas(true); - } - else if (widget.name == "normal_text") - { - this.properties["font"] = "Arial"; - this.setDirtyCanvas(true); - } - } - - WidgetText.prototype.onPropertyChanged = function(name,value) - { - this.properties[name] = value; - this.str = typeof(value) == 'number' ? value.toFixed(3) : value; - //this.resize(); - return true; - } - - LiteGraph.registerNodeType("widget/text", WidgetText ); - - - function WidgetPanel() - { - this.size = [200,100]; - this.properties = {borderColor:"#ffffff",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",shadowSize:2, borderRadius:3}; - } - - WidgetPanel.title = "Panel"; - WidgetPanel.desc = "Non interactive panel"; - WidgetPanel.widgets = [{name:"update",text:"Update",type:"button"}]; - - - WidgetPanel.prototype.createGradient = function(ctx) - { - if(this.properties["bgcolorTop"] == "" || this.properties["bgcolorBottom"] == "") - { - this.lineargradient = 0; - return; - } - - this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); - this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); - this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); - } - - WidgetPanel.prototype.onDrawForeground = function(ctx) - { - if(this.lineargradient == null) - this.createGradient(ctx); - - if(!this.lineargradient) - return; - - ctx.lineWidth = 1; - ctx.strokeStyle = this.properties["borderColor"]; - //ctx.fillStyle = "#ebebeb"; - ctx.fillStyle = this.lineargradient; - - if(this.properties["shadowSize"]) - { - ctx.shadowColor = "#000"; - ctx.shadowOffsetX = 0; - ctx.shadowOffsetY = 0; - ctx.shadowBlur = this.properties["shadowSize"]; - } - else - ctx.shadowColor = "transparent"; - - ctx.roundRect(0,0,this.size[0]-1,this.size[1]-1,this.properties["shadowSize"]); - ctx.fill(); - ctx.shadowColor = "transparent"; - ctx.stroke(); - } - - WidgetPanel.prototype.onWidget = function(e,widget) - { - if(widget.name == "update") - { - this.lineargradient = null; - this.setDirtyCanvas(true); - } - } - - LiteGraph.registerNodeType("widget/panel", WidgetPanel ); - -})(this); +})(this); +//widgets +(function(global){ +var LiteGraph = global.LiteGraph; + + /* Button ****************/ + + function WidgetButton() + { + this.addOutput( "clicked", LiteGraph.EVENT ); + this.addProperty( "text","" ); + this.addProperty( "font","40px Arial" ); + this.addProperty( "message", "" ); + this.size = [64,84]; + } + + WidgetButton.title = "Button"; + WidgetButton.desc = "Triggers an event"; + + WidgetButton.prototype.onDrawForeground = function(ctx) + { + if(this.flags.collapsed) + return; + + //ctx.font = "40px Arial"; + //ctx.textAlign = "center"; + ctx.fillStyle = "black"; + ctx.fillRect(1,1,this.size[0] - 3, this.size[1] - 3); + ctx.fillStyle = "#AAF"; + ctx.fillRect(0,0,this.size[0] - 3, this.size[1] - 3); + ctx.fillStyle = this.clicked ? "white" : (this.mouseOver ? "#668" : "#334"); + ctx.fillRect(1,1,this.size[0] - 4, this.size[1] - 4); + + if( this.properties.text || this.properties.text === 0 ) + { + ctx.textAlign = "center"; + ctx.fillStyle = this.clicked ? "black" : "white"; + if( this.properties.font ) + ctx.font = this.properties.font; + ctx.fillText(this.properties.text, this.size[0] * 0.5, this.size[1] * 0.85 ); + ctx.textAlign = "left"; + } + } + + WidgetButton.prototype.onMouseDown = function(e, local_pos) + { + if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) + { + this.clicked = true; + this.trigger( "clicked", this.properties.message ); + return true; + } + } + + WidgetButton.prototype.onMouseUp = function(e) + { + this.clicked = false; + } + + + LiteGraph.registerNodeType("widget/button", WidgetButton ); + + + function WidgetToggle() + { + this.addInput( "", "boolean" ); + this.addOutput( "v", "boolean" ); + this.addOutput( "e", LiteGraph.EVENT ); + this.properties = { font: "", value: false }; + this.size = [124,64]; + } + + WidgetToggle.title = "Toggle"; + WidgetToggle.desc = "Toggles between true or false"; + + WidgetToggle.prototype.onDrawForeground = function(ctx) + { + if(this.flags.collapsed) + return; + + var size = this.size[1] * 0.5; + var margin = 0.25; + var h = this.size[1] * 0.8; + + ctx.fillStyle = "#AAA"; + ctx.fillRect(10, h - size,size,size); + + ctx.fillStyle = this.properties.value ? "#AEF" : "#000"; + ctx.fillRect(10+size*margin,h - size + size*margin,size*(1-margin*2),size*(1-margin*2)); + + ctx.textAlign = "left"; + ctx.font = this.properties.font || ((size * 0.8).toFixed(0) + "px Arial"); + ctx.fillStyle = "#AAA"; + ctx.fillText( this.title, size + 20, h * 0.85 ); + ctx.textAlign = "left"; + } + + WidgetToggle.prototype.onExecute = function() + { + var v = this.getInputData(0); + if( v != null ) + this.properties.value = v; + this.setOutputData( 0, this.properties.value ); + } + + WidgetToggle.prototype.onMouseDown = function(e, local_pos) + { + if(local_pos[0] > 1 && local_pos[1] > 1 && local_pos[0] < (this.size[0] - 2) && local_pos[1] < (this.size[1] - 2) ) + { + this.properties.value = !this.properties.value; + this.trigger( "clicked", this.properties.value ); + return true; + } + } + + LiteGraph.registerNodeType("widget/toggle", WidgetToggle ); + + + + /* Knob ****************/ + + function WidgetKnob() + { + this.addOutput("",'number'); + this.size = [64,84]; + this.properties = {min:0,max:1,value:0.5,wcolor:"#7AF",size:50}; + } + + WidgetKnob.title = "Knob"; + WidgetKnob.desc = "Circular controller"; + WidgetKnob.widgets = [{name:"increase",text:"+",type:"minibutton"},{name:"decrease",text:"-",type:"minibutton"}]; + + + WidgetKnob.prototype.onAdded = function() + { + this.value = (this.properties["value"] - this.properties["min"]) / (this.properties["max"] - this.properties["min"]); + + this.imgbg = this.loadImage("imgs/knob_bg.png"); + this.imgfg = this.loadImage("imgs/knob_fg.png"); + } + + WidgetKnob.prototype.onDrawImageKnob = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + var d = this.imgbg.width*0.5; + var scale = this.size[0] / this.imgfg.width; + + ctx.save(); + ctx.translate(0,20); + ctx.scale(scale,scale); + ctx.drawImage(this.imgbg,0,0); + //ctx.drawImage(this.imgfg,0,20); + + ctx.translate(d,d); + ctx.rotate(this.value * (Math.PI*2) * 6/8 + Math.PI * 10/8); + //ctx.rotate(this.value * (Math.PI*2)); + ctx.translate(-d,-d); + ctx.drawImage(this.imgfg,0,0); + + ctx.restore(); + + if(this.title) + { + ctx.font = "bold 16px Criticized,Tahoma"; + ctx.fillStyle="rgba(100,100,100,0.8)"; + ctx.textAlign = "center"; + ctx.fillText(this.title.toUpperCase(), this.size[0] * 0.5, 18 ); + ctx.textAlign = "left"; + } + } + + WidgetKnob.prototype.onDrawVectorKnob = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + //circle around + ctx.lineWidth = 1; + ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; + ctx.fillStyle="#000"; + ctx.beginPath(); + ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.5,0,Math.PI*2,true); + ctx.stroke(); + + if(this.value > 0) + { + ctx.strokeStyle=this.properties["wcolor"]; + ctx.lineWidth = (this.properties.size * 0.2); + ctx.beginPath(); + ctx.arc(this.size[0] * 0.5,this.size[1] * 0.5 + 10,this.properties.size * 0.35,Math.PI * -0.5 + Math.PI*2 * this.value,Math.PI * -0.5,true); + ctx.stroke(); + ctx.lineWidth = 1; + } + + ctx.font = (this.properties.size * 0.2) + "px Arial"; + ctx.fillStyle="#AAA"; + ctx.textAlign = "center"; + + var str = this.properties["value"]; + if(typeof(str) == 'number') + str = str.toFixed(2); + + ctx.fillText(str,this.size[0] * 0.5,this.size[1]*0.65); + ctx.textAlign = "left"; + } + + WidgetKnob.prototype.onDrawForeground = function(ctx) + { + this.onDrawImageKnob(ctx); + } + + WidgetKnob.prototype.onExecute = function() + { + this.setOutputData(0, this.properties["value"] ); + + this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); + } + + WidgetKnob.prototype.onMouseDown = function(e) + { + if(!this.imgfg || !this.imgfg.width) return; + + //this.center = [this.imgbg.width * 0.5, this.imgbg.height * 0.5 + 20]; + //this.radius = this.imgbg.width * 0.5; + this.center = [this.size[0] * 0.5, this.size[1] * 0.5 + 20]; + this.radius = this.size[0] * 0.5; + + if(e.canvasY - this.pos[1] < 20 || LiteGraph.distance([e.canvasX,e.canvasY],[this.pos[0] + this.center[0],this.pos[1] + this.center[1]]) > this.radius) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + + /* + var tmp = this.localToScreenSpace(0,0); + this.trace(tmp[0] + "," + tmp[1]); */ + return true; + } + + WidgetKnob.prototype.onMouseMove = function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + var v = this.value; + v -= (m[1] - this.oldmouse[1]) * 0.01; + if(v > 1.0) v = 1.0; + else if(v < 0.0) v = 0.0; + + this.value = v; + this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; + + this.oldmouse = m; + this.setDirtyCanvas(true); + } + + WidgetKnob.prototype.onMouseUp = function(e) + { + if(this.oldmouse) + { + this.oldmouse = null; + this.captureInput(false); + } + } + + WidgetKnob.prototype.onMouseLeave = function(e) + { + //this.oldmouse = null; + } + + WidgetKnob.prototype.onWidget = function(e,widget) + { + if(widget.name=="increase") + this.onPropertyChanged("size", this.properties.size + 10); + else if(widget.name=="decrease") + this.onPropertyChanged("size", this.properties.size - 10); + } + + WidgetKnob.prototype.onPropertyChanged = function(name,value) + { + if(name=="wcolor") + this.properties[name] = value; + else if(name=="size") + { + value = parseInt(value); + this.properties[name] = value; + this.size = [value+4,value+24]; + this.setDirtyCanvas(true,true); + } + else if(name=="min" || name=="max" || name=="value") + { + this.properties[name] = parseFloat(value); + } + else + return false; + return true; + } + + LiteGraph.registerNodeType("widget/knob", WidgetKnob); + + //Widget H SLIDER + function WidgetHSlider() + { + this.size = [160,26]; + this.addOutput("",'number'); + this.properties = {wcolor:"#7AF",min:0,max:1,value:0.5}; + } + + WidgetHSlider.title = "H.Slider"; + WidgetHSlider.desc = "Linear slider controller"; + + WidgetHSlider.prototype.onAdded = function() + { + this.value = 0.5; + this.imgfg = this.loadImage("imgs/slider_fg.png"); + } + + WidgetHSlider.prototype.onDrawVectorial = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) return; + + //border + ctx.lineWidth = 1; + ctx.strokeStyle= this.mouseOver ? "#FFF" : "#AAA"; + ctx.fillStyle="#000"; + ctx.beginPath(); + ctx.rect(2,0,this.size[0]-4,20); + ctx.stroke(); + + ctx.fillStyle=this.properties["wcolor"]; + ctx.beginPath(); + ctx.rect(2+(this.size[0]-4-20)*this.value,0, 20,20); + ctx.fill(); + } + + WidgetHSlider.prototype.onDrawImage = function(ctx) + { + if(!this.imgfg || !this.imgfg.width) + return; + + //border + ctx.lineWidth = 1; + ctx.fillStyle="#000"; + ctx.fillRect(2,9,this.size[0]-4,2); + + ctx.strokeStyle= "#333"; + ctx.beginPath(); + ctx.moveTo(2,9); + ctx.lineTo(this.size[0]-4,9); + ctx.stroke(); + + ctx.strokeStyle= "#AAA"; + ctx.beginPath(); + ctx.moveTo(2,11); + ctx.lineTo(this.size[0]-4,11); + ctx.stroke(); + + ctx.drawImage(this.imgfg, 2+(this.size[0]-4)*this.value - this.imgfg.width*0.5,-this.imgfg.height*0.5 + 10); + }, + + WidgetHSlider.prototype.onDrawForeground = function(ctx) + { + this.onDrawImage(ctx); + } + + WidgetHSlider.prototype.onExecute = function() + { + this.properties["value"] = this.properties["min"] + (this.properties["max"] - this.properties["min"]) * this.value; + this.setOutputData(0, this.properties["value"] ); + this.boxcolor = LiteGraph.colorToString([this.value,this.value,this.value]); + } + + WidgetHSlider.prototype.onMouseDown = function(e) + { + if(e.canvasY - this.pos[1] < 0) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + return true; + } + + WidgetHSlider.prototype.onMouseMove = function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + var v = this.value; + var delta = (m[0] - this.oldmouse[0]); + v += delta / this.size[0]; + if(v > 1.0) v = 1.0; + else if(v < 0.0) v = 0.0; + + this.value = v; + + this.oldmouse = m; + this.setDirtyCanvas(true); + } + + WidgetHSlider.prototype.onMouseUp = function(e) + { + this.oldmouse = null; + this.captureInput(false); + } + + WidgetHSlider.prototype.onMouseLeave = function(e) + { + //this.oldmouse = null; + } + + WidgetHSlider.prototype.onPropertyChanged = function(name,value) + { + if(name=="wcolor") + this.properties[name] = value; + else + return false; + return true; + } + + LiteGraph.registerNodeType("widget/hslider", WidgetHSlider ); + + + function WidgetProgress() + { + this.size = [160,26]; + this.addInput("",'number'); + this.properties = {min:0,max:1,value:0,wcolor:"#AAF"}; + } + + WidgetProgress.title = "Progress"; + WidgetProgress.desc = "Shows data in linear progress"; + + WidgetProgress.prototype.onExecute = function() + { + var v = this.getInputData(0); + if( v != undefined ) + this.properties["value"] = v; + } + + WidgetProgress.prototype.onDrawForeground = function(ctx) + { + //border + ctx.lineWidth = 1; + ctx.fillStyle=this.properties.wcolor; + var v = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + v = Math.min(1,v); + v = Math.max(0,v); + ctx.fillRect(2,2,(this.size[0]-4)*v,this.size[1]-4); + } + + LiteGraph.registerNodeType("widget/progress", WidgetProgress); + + + /* + LiteGraph.registerNodeType("widget/kpad",{ + title: "KPad", + desc: "bidimensional slider", + size: [200,200], + outputs: [["x",'number'],["y",'number']], + properties:{x:0,y:0,borderColor:"#333",bgcolorTop:"#444",bgcolorBottom:"#000",shadowSize:1, borderRadius:2}, + + createGradient: function(ctx) + { + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + }, + + onDrawBackground: function(ctx) + { + if(!this.lineargradient) + this.createGradient(ctx); + + ctx.lineWidth = 1; + ctx.strokeStyle = this.properties["borderColor"]; + //ctx.fillStyle = "#ebebeb"; + ctx.fillStyle = this.lineargradient; + + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + ctx.roundRect(0,0,this.size[0],this.size[1],this.properties["shadowSize"]); + ctx.fill(); + ctx.shadowColor = "rgba(0,0,0,0)"; + ctx.stroke(); + + ctx.fillStyle = "#A00"; + ctx.fillRect(this.size[0] * this.properties["x"] - 5, this.size[1] * this.properties["y"] - 5,10,10); + }, + + onWidget: function(e,widget) + { + if(widget.name == "update") + { + this.lineargradient = null; + this.setDirtyCanvas(true); + } + }, + + onExecute: function() + { + this.setOutputData(0, this.properties["x"] ); + this.setOutputData(1, this.properties["y"] ); + }, + + onMouseDown: function(e) + { + if(e.canvasY - this.pos[1] < 0) + return false; + + this.oldmouse = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + this.captureInput(true); + return true; + }, + + onMouseMove: function(e) + { + if(!this.oldmouse) return; + + var m = [ e.canvasX - this.pos[0], e.canvasY - this.pos[1] ]; + + this.properties.x = m[0] / this.size[0]; + this.properties.y = m[1] / this.size[1]; + + if(this.properties.x > 1.0) this.properties.x = 1.0; + else if(this.properties.x < 0.0) this.properties.x = 0.0; + + if(this.properties.y > 1.0) this.properties.y = 1.0; + else if(this.properties.y < 0.0) this.properties.y = 0.0; + + this.oldmouse = m; + this.setDirtyCanvas(true); + }, + + onMouseUp: function(e) + { + if(this.oldmouse) + { + this.oldmouse = null; + this.captureInput(false); + } + }, + + onMouseLeave: function(e) + { + //this.oldmouse = null; + } + }); + + + + LiteGraph.registerNodeType("widget/button", { + title: "Button", + desc: "A send command button", + + widgets: [{name:"test",text:"Test Button",type:"button"}], + size: [100,40], + properties:{text:"clickme",command:"",color:"#7AF",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",fontsize:"16"}, + outputs:[["M","module"]], + + createGradient: function(ctx) + { + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + }, + + drawVectorShape: function(ctx) + { + ctx.fillStyle = this.mouseOver ? this.properties["color"] : "#AAA"; + + if(this.clicking) + ctx.fillStyle = "#FFF"; + + ctx.strokeStyle = "#AAA"; + ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); + ctx.stroke(); + + if(this.mouseOver) + ctx.fill(); + + //ctx.fillRect(5,20,this.size[0] - 10,this.size[1] - 30); + + ctx.fillStyle = this.mouseOver ? "#000" : "#AAA"; + ctx.font = "bold " + this.properties["fontsize"] + "px Criticized,Tahoma"; + ctx.textAlign = "center"; + ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.5*parseInt(this.properties["fontsize"])); + ctx.textAlign = "left"; + }, + + drawBevelShape: function(ctx) + { + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + + if(!this.lineargradient) + this.createGradient(ctx); + + ctx.fillStyle = this.mouseOver ? this.properties["color"] : this.lineargradient; + if(this.clicking) + ctx.fillStyle = "#444"; + + ctx.strokeStyle = "#FFF"; + ctx.roundRect(5,5,this.size[0] - 10,this.size[1] - 10,4); + ctx.fill(); + ctx.shadowColor = "rgba(0,0,0,0)"; + ctx.stroke(); + + ctx.fillStyle = this.mouseOver ? "#000" : "#444"; + ctx.font = "bold " + this.properties["fontsize"] + "px Century Gothic"; + ctx.textAlign = "center"; + ctx.fillText(this.properties["text"],this.size[0]*0.5,this.size[1]*0.5 + 0.40*parseInt(this.properties["fontsize"])); + ctx.textAlign = "left"; + }, + + onDrawForeground: function(ctx) + { + this.drawBevelShape(ctx); + }, + + clickButton: function() + { + var module = this.getOutputModule(0); + if(this.properties["command"] && this.properties["command"] != "") + { + if (! module.executeAction(this.properties["command"]) ) + this.trace("Error executing action in other module"); + } + else if(module && module.onTrigger) + { + module.onTrigger(); + } + }, + + onMouseDown: function(e) + { + if(e.canvasY - this.pos[1] < 2) + return false; + this.clickButton(); + this.clicking = true; + return true; + }, + + onMouseUp: function(e) + { + this.clicking = false; + }, + + onExecute: function() + { + }, + + onWidget: function(e,widget) + { + if(widget.name == "test") + { + this.clickButton(); + } + }, + + onPropertyChanged: function(name,value) + { + this.properties[name] = value; + return true; + } + }); + */ + + + function WidgetText() + { + this.addInputs("",0); + this.properties = { value:"...",font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1 }; + } + + WidgetText.title = "Text"; + WidgetText.desc = "Shows the input value"; + WidgetText.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}]; + + WidgetText.prototype.onDrawForeground = function(ctx) + { + //ctx.fillStyle="#000"; + //ctx.fillRect(0,0,100,60); + ctx.fillStyle = this.properties["color"]; + var v = this.properties["value"]; + + if(this.properties["glowSize"]) + { + ctx.shadowColor = this.properties["color"]; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["glowSize"]; + } + else + ctx.shadowColor = "transparent"; + + var fontsize = this.properties["fontsize"]; + + ctx.textAlign = this.properties["align"]; + ctx.font = fontsize.toString() + "px " + this.properties["font"]; + this.str = typeof(v) == 'number' ? v.toFixed(this.properties["decimals"]) : v; + + if( typeof(this.str) == 'string') + { + var lines = this.str.split("\\n"); + for(var i in lines) + ctx.fillText(lines[i],this.properties["align"] == "left" ? 15 : this.size[0] - 15, fontsize * -0.15 + fontsize * (parseInt(i)+1) ); + } + + ctx.shadowColor = "transparent"; + this.last_ctx = ctx; + ctx.textAlign = "left"; + } + + WidgetText.prototype.onExecute = function() + { + var v = this.getInputData(0); + if(v != null) + this.properties["value"] = v; + //this.setDirtyCanvas(true); + } + + WidgetText.prototype.resize = function() + { + if(!this.last_ctx) return; + + var lines = this.str.split("\\n"); + this.last_ctx.font = this.properties["fontsize"] + "px " + this.properties["font"]; + var max = 0; + for(var i in lines) + { + var w = this.last_ctx.measureText(lines[i]).width; + if(max < w) max = w; + } + this.size[0] = max + 20; + this.size[1] = 4 + lines.length * this.properties["fontsize"]; + + this.setDirtyCanvas(true); + } + + WidgetText.prototype.onWidget = function(e,widget) + { + if(widget.name == "resize") + this.resize(); + else if (widget.name == "led_text") + { + this.properties["font"] = "Digital"; + this.properties["glowSize"] = 4; + this.setDirtyCanvas(true); + } + else if (widget.name == "normal_text") + { + this.properties["font"] = "Arial"; + this.setDirtyCanvas(true); + } + } + + WidgetText.prototype.onPropertyChanged = function(name,value) + { + this.properties[name] = value; + this.str = typeof(value) == 'number' ? value.toFixed(3) : value; + //this.resize(); + return true; + } + + LiteGraph.registerNodeType("widget/text", WidgetText ); + + + function WidgetPanel() + { + this.size = [200,100]; + this.properties = {borderColor:"#ffffff",bgcolorTop:"#f0f0f0",bgcolorBottom:"#e0e0e0",shadowSize:2, borderRadius:3}; + } + + WidgetPanel.title = "Panel"; + WidgetPanel.desc = "Non interactive panel"; + WidgetPanel.widgets = [{name:"update",text:"Update",type:"button"}]; + + + WidgetPanel.prototype.createGradient = function(ctx) + { + if(this.properties["bgcolorTop"] == "" || this.properties["bgcolorBottom"] == "") + { + this.lineargradient = 0; + return; + } + + this.lineargradient = ctx.createLinearGradient(0,0,0,this.size[1]); + this.lineargradient.addColorStop(0,this.properties["bgcolorTop"]); + this.lineargradient.addColorStop(1,this.properties["bgcolorBottom"]); + } + + WidgetPanel.prototype.onDrawForeground = function(ctx) + { + if(this.lineargradient == null) + this.createGradient(ctx); + + if(!this.lineargradient) + return; + + ctx.lineWidth = 1; + ctx.strokeStyle = this.properties["borderColor"]; + //ctx.fillStyle = "#ebebeb"; + ctx.fillStyle = this.lineargradient; + + if(this.properties["shadowSize"]) + { + ctx.shadowColor = "#000"; + ctx.shadowOffsetX = 0; + ctx.shadowOffsetY = 0; + ctx.shadowBlur = this.properties["shadowSize"]; + } + else + ctx.shadowColor = "transparent"; + + ctx.roundRect(0,0,this.size[0]-1,this.size[1]-1,this.properties["shadowSize"]); + ctx.fill(); + ctx.shadowColor = "transparent"; + ctx.stroke(); + } + + WidgetPanel.prototype.onWidget = function(e,widget) + { + if(widget.name == "update") + { + this.lineargradient = null; + this.setDirtyCanvas(true); + } + } + + LiteGraph.registerNodeType("widget/panel", WidgetPanel ); + +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -8274,7 +8272,7 @@ GamepadInput.prototype.onGetOutputs = function() { LiteGraph.registerNodeType("input/gamepad", GamepadInput ); -})(this); +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -9345,835 +9343,835 @@ if(global.glMatrix) } //glMatrix -})(this); -(function(global){ -var LiteGraph = global.LiteGraph; - -function Selector() -{ - this.addInput("sel","boolean"); - this.addOutput("value","number"); - this.properties = { A:0, B:1 }; - this.size = [60,20]; -} - -Selector.title = "Selector"; -Selector.desc = "outputs A if selector is true, B if selector is false"; - -Selector.prototype.onExecute = function() -{ - var cond = this.getInputData(0); - if(cond === undefined) - return; - - for(var i = 1; i < this.inputs.length; i++) - { - var input = this.inputs[i]; - var v = this.getInputData(i); - if(v === undefined) - continue; - this.properties[input.name] = v; - } - - var A = this.properties.A; - var B = this.properties.B; - this.setOutputData(0, cond ? A : B ); -} - -Selector.prototype.onGetInputs = function() { - return [["A",0],["B",0]]; -} - -LiteGraph.registerNodeType("logic/selector", Selector); - -})(this); -(function(global){ -var LiteGraph = global.LiteGraph; - -function GraphicsPlot() -{ - this.addInput("A","Number"); - this.addInput("B","Number"); - this.addInput("C","Number"); - this.addInput("D","Number"); - - this.values = [[],[],[],[]]; - this.properties = { scale: 2 }; -} - -GraphicsPlot.title = "Plot"; -GraphicsPlot.desc = "Plots data over time"; -GraphicsPlot.colors = ["#FFF","#F99","#9F9","#99F"]; - -GraphicsPlot.prototype.onExecute = function(ctx) -{ - if(this.flags.collapsed) - return; - - var size = this.size; - - for(var i = 0; i < 4; ++i) - { - var v = this.getInputData(i); - if(v == null) - continue; - var values = this.values[i]; - values.push(v); - if(values.length > size[0]) - values.shift(); - } -} - -GraphicsPlot.prototype.onDrawBackground = function(ctx) -{ - if(this.flags.collapsed) - return; - - var size = this.size; - - var scale = 0.5 * size[1] / this.properties.scale; - var colors = GraphicsPlot.colors; - var offset = size[1] * 0.5; - - ctx.fillStyle = "#000"; - ctx.fillRect(0,0, size[0],size[1]); - ctx.strokeStyle = "#555"; - ctx.beginPath(); - ctx.moveTo(0, offset); - ctx.lineTo(size[0], offset); - ctx.stroke(); - - for(var i = 0; i < 4; ++i) - { - var values = this.values[i]; - ctx.strokeStyle = colors[i]; - ctx.beginPath(); - var v = values[0] * scale * -1 + offset; - ctx.moveTo(0, Math.clamp( v, 0, size[1]) ); - for(var j = 1; j < values.length && j < size[0]; ++j) - { - var v = values[j] * scale * -1 + offset; - ctx.lineTo( j, Math.clamp( v, 0, size[1]) ); - } - ctx.stroke(); - } -} - -LiteGraph.registerNodeType("graphics/plot", GraphicsPlot); - - -function GraphicsImage() -{ - this.addOutput("frame","image"); - this.properties = {"url":""}; -} - -GraphicsImage.title = "Image"; -GraphicsImage.desc = "Image loader"; -GraphicsImage.widgets = [{name:"load",text:"Load",type:"button"}]; - -GraphicsImage.supported_extensions = ["jpg","jpeg","png","gif"]; - -GraphicsImage.prototype.onAdded = function() -{ - if(this.properties["url"] != "" && this.img == null) - { - this.loadImage( this.properties["url"] ); - } -} - -GraphicsImage.prototype.onDrawBackground = function(ctx) -{ - if(this.img && this.size[0] > 5 && this.size[1] > 5) - ctx.drawImage(this.img, 0,0,this.size[0],this.size[1]); -} - - -GraphicsImage.prototype.onExecute = function() -{ - if(!this.img) - this.boxcolor = "#000"; - if(this.img && this.img.width) - this.setOutputData(0,this.img); - else - this.setOutputData(0,null); - if(this.img && this.img.dirty) - this.img.dirty = false; -} - -GraphicsImage.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - if (name == "url" && value != "") - this.loadImage(value); - - return true; -} - -GraphicsImage.prototype.loadImage = function( url, callback ) -{ - if(url == "") - { - this.img = null; - return; - } - - this.img = document.createElement("img"); - - if(url.substr(0,7) == "http://") - { - if(LiteGraph.proxy) //proxy external files - url = LiteGraph.proxy + url.substr(7); - } - - this.img.src = url; - this.boxcolor = "#F95"; - var that = this; - this.img.onload = function() - { - if(callback) - callback(this); - that.trace("Image loaded, size: " + that.img.width + "x" + that.img.height ); - this.dirty = true; - that.boxcolor = "#9F9"; - that.setDirtyCanvas(true); - } -} - -GraphicsImage.prototype.onWidget = function(e,widget) -{ - if(widget.name == "load") - { - this.loadImage(this.properties["url"]); - } -} - -GraphicsImage.prototype.onDropFile = function(file) -{ - var that = this; - if(this._url) - URL.revokeObjectURL( this._url ); - this._url = URL.createObjectURL( file ); - this.properties.url = this._url; - this.loadImage( this._url, function(img){ - that.size[1] = (img.height / img.width) * that.size[0]; - }); -} - -LiteGraph.registerNodeType("graphics/image", GraphicsImage); - - - -function ColorPalette() -{ - this.addInput("f","number"); - this.addOutput("Color","color"); - this.properties = {colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}; - -} - -ColorPalette.title = "Palette"; -ColorPalette.desc = "Generates a color"; - -ColorPalette.prototype.onExecute = function() -{ - var c = []; - - if (this.properties.colorA != null) - c.push( hex2num( this.properties.colorA ) ); - if (this.properties.colorB != null) - c.push( hex2num( this.properties.colorB ) ); - if (this.properties.colorC != null) - c.push( hex2num( this.properties.colorC ) ); - if (this.properties.colorD != null) - c.push( hex2num( this.properties.colorD ) ); - - var f = this.getInputData(0); - if(f == null) f = 0.5; - if (f > 1.0) - f = 1.0; - else if (f < 0.0) - f = 0.0; - - if(c.length == 0) - return; - - var result = [0,0,0]; - if(f == 0) - result = c[0]; - else if(f == 1) - result = c[ c.length - 1]; - else - { - var pos = (c.length - 1)* f; - var c1 = c[ Math.floor(pos) ]; - var c2 = c[ Math.floor(pos)+1 ]; - var t = pos - Math.floor(pos); - result[0] = c1[0] * (1-t) + c2[0] * (t); - result[1] = c1[1] * (1-t) + c2[1] * (t); - result[2] = c1[2] * (1-t) + c2[2] * (t); - } - - /* - c[0] = 1.0 - Math.abs( Math.sin( 0.1 * reModular.getTime() * Math.PI) ); - c[1] = Math.abs( Math.sin( 0.07 * reModular.getTime() * Math.PI) ); - c[2] = Math.abs( Math.sin( 0.01 * reModular.getTime() * Math.PI) ); - */ - - for(var i in result) - result[i] /= 255; - - this.boxcolor = colorToString(result); - this.setOutputData(0, result); -} - - -LiteGraph.registerNodeType("color/palette", ColorPalette ); - - -function ImageFrame() -{ - this.addInput("","image"); - this.size = [200,200]; -} - -ImageFrame.title = "Frame"; -ImageFrame.desc = "Frame viewerew"; -ImageFrame.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}]; - - -ImageFrame.prototype.onDrawBackground = function(ctx) -{ - if(this.frame) - ctx.drawImage(this.frame, 0,0,this.size[0],this.size[1]); -} - -ImageFrame.prototype.onExecute = function() -{ - this.frame = this.getInputData(0); - this.setDirtyCanvas(true); -} - -ImageFrame.prototype.onWidget = function(e,widget) -{ - if(widget.name == "resize" && this.frame) - { - var width = this.frame.width; - var height = this.frame.height; - - if(!width && this.frame.videoWidth != null ) - { - width = this.frame.videoWidth; - height = this.frame.videoHeight; - } - - if(width && height) - this.size = [width, height]; - this.setDirtyCanvas(true,true); - } - else if(widget.name == "view") - this.show(); -} - -ImageFrame.prototype.show = function() -{ - //var str = this.canvas.toDataURL("image/png"); - if(showElement && this.frame) - showElement(this.frame); -} - - -LiteGraph.registerNodeType("graphics/frame", ImageFrame ); - - - -/* -LiteGraph.registerNodeType("visualization/graph", { - desc: "Shows a graph of the inputs", - - inputs: [["",0],["",0],["",0],["",0]], - size: [200,200], - properties: {min:-1,max:1,bgColor:"#000"}, - onDrawBackground: function(ctx) - { - var colors = ["#FFF","#FAA","#AFA","#AAF"]; - - if(this.properties.bgColor != null && this.properties.bgColor != "") - { - ctx.fillStyle="#000"; - ctx.fillRect(2,2,this.size[0] - 4, this.size[1]-4); - } - - if(this.data) - { - var min = this.properties["min"]; - var max = this.properties["max"]; - - for(var i in this.data) - { - var data = this.data[i]; - if(!data) continue; - - if(this.getInputInfo(i) == null) continue; - - ctx.strokeStyle = colors[i]; - ctx.beginPath(); - - var d = data.length / this.size[0]; - for(var j = 0; j < data.length; j += d) - { - var value = data[ Math.floor(j) ]; - value = (value - min) / (max - min); - if (value > 1.0) value = 1.0; - else if(value < 0) value = 0; - - if(j == 0) - ctx.moveTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); - else - ctx.lineTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); - } - - ctx.stroke(); - } - } - - //ctx.restore(); - }, - - onExecute: function() - { - if(!this.data) this.data = []; - - for(var i in this.inputs) - { - var value = this.getInputData(i); - - if(typeof(value) == "number") - { - value = value ? value : 0; - if(!this.data[i]) - this.data[i] = []; - this.data[i].push(value); - - if(this.data[i].length > (this.size[1] - 4)) - this.data[i] = this.data[i].slice(1,this.data[i].length); - } - else - this.data[i] = value; - } - - if(this.data.length) - this.setDirtyCanvas(true); - } - }); -*/ - -function ImageFade() -{ - this.addInputs([["img1","image"],["img2","image"],["fade","number"]]); - this.addOutput("","image"); - this.properties = {fade:0.5,width:512,height:512}; -} - -ImageFade.title = "Image fade"; -ImageFade.desc = "Fades between images"; -ImageFade.widgets = [{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}]; - -ImageFade.prototype.onAdded = function() -{ - this.createCanvas(); - var ctx = this.canvas.getContext("2d"); - ctx.fillStyle = "#000"; - ctx.fillRect(0,0,this.properties["width"],this.properties["height"]); -} - -ImageFade.prototype.createCanvas = function() -{ - this.canvas = document.createElement("canvas"); - this.canvas.width = this.properties["width"]; - this.canvas.height = this.properties["height"]; -} - -ImageFade.prototype.onExecute = function() -{ - var ctx = this.canvas.getContext("2d"); - this.canvas.width = this.canvas.width; - - var A = this.getInputData(0); - if (A != null) - { - ctx.drawImage(A,0,0,this.canvas.width, this.canvas.height); - } - - var fade = this.getInputData(2); - if(fade == null) - fade = this.properties["fade"]; - else - this.properties["fade"] = fade; - - ctx.globalAlpha = fade; - var B = this.getInputData(1); - if (B != null) - { - ctx.drawImage(B,0,0,this.canvas.width, this.canvas.height); - } - ctx.globalAlpha = 1.0; - - this.setOutputData(0,this.canvas); - this.setDirtyCanvas(true); -} - -LiteGraph.registerNodeType("graphics/imagefade", ImageFade); - - - -function ImageCrop() -{ - this.addInput("","image"); - this.addOutput("","image"); - this.properties = {width:256,height:256,x:0,y:0,scale:1.0 }; - this.size = [50,20]; -} - -ImageCrop.title = "Crop"; -ImageCrop.desc = "Crop Image"; - -ImageCrop.prototype.onAdded = function() -{ - this.createCanvas(); -} - -ImageCrop.prototype.createCanvas = function() -{ - this.canvas = document.createElement("canvas"); - this.canvas.width = this.properties["width"]; - this.canvas.height = this.properties["height"]; -} - -ImageCrop.prototype.onExecute = function() -{ - var input = this.getInputData(0); - if(!input) - return; - - if(input.width) - { - var ctx = this.canvas.getContext("2d"); - - ctx.drawImage(input, -this.properties["x"],-this.properties["y"], input.width * this.properties["scale"], input.height * this.properties["scale"]); - this.setOutputData(0,this.canvas); - } - else - this.setOutputData(0,null); -} - -ImageCrop.prototype.onDrawBackground = function(ctx) -{ - if(this.flags.collapsed) - return; - if(this.canvas) - ctx.drawImage( this.canvas, 0,0,this.canvas.width,this.canvas.height, 0,0, this.size[0], this.size[1] ); -} - -ImageCrop.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - - if(name == "scale") - { - this.properties[name] = parseFloat(value); - if(this.properties[name] == 0) - { - this.trace("Error in scale"); - this.properties[name] = 1.0; - } - } - else - this.properties[name] = parseInt(value); - - this.createCanvas(); - - return true; -} - -LiteGraph.registerNodeType("graphics/cropImage", ImageCrop ); - - -function ImageVideo() -{ - this.addInput("t","number"); - this.addOutputs([["frame","image"],["t","number"],["d","number"]]); - this.properties = {"url":""}; -} - -ImageVideo.title = "Video"; -ImageVideo.desc = "Video playback"; -ImageVideo.widgets = [{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}]; - -ImageVideo.prototype.onExecute = function() -{ - if(!this.properties.url) - return; - - if(this.properties.url != this._video_url) - this.loadVideo(this.properties.url); - - if(!this._video || this._video.width == 0) - return; - - var t = this.getInputData(0); - if(t && t >= 0 && t <= 1.0) - { - this._video.currentTime = t * this._video.duration; - this._video.pause(); - } - - this._video.dirty = true; - this.setOutputData(0,this._video); - this.setOutputData(1,this._video.currentTime); - this.setOutputData(2,this._video.duration); - this.setDirtyCanvas(true); -} - -ImageVideo.prototype.onStart = function() -{ - this.play(); -} - -ImageVideo.prototype.onStop = function() -{ - this.stop(); -} - -ImageVideo.prototype.loadVideo = function(url) -{ - this._video_url = url; - - this._video = document.createElement("video"); - this._video.src = url; - this._video.type = "type=video/mp4"; - - this._video.muted = true; - this._video.autoplay = true; - - var that = this; - this._video.addEventListener("loadedmetadata",function(e) { - //onload - that.trace("Duration: " + this.duration + " seconds"); - that.trace("Size: " + this.videoWidth + "," + this.videoHeight); - that.setDirtyCanvas(true); - this.width = this.videoWidth; - this.height = this.videoHeight; - }); - this._video.addEventListener("progress",function(e) { - //onload - //that.trace("loading..."); - }); - this._video.addEventListener("error",function(e) { - console.log("Error loading video: " + this.src); - that.trace("Error loading video: " + this.src); - if (this.error) { - switch (this.error.code) { - case this.error.MEDIA_ERR_ABORTED: - that.trace("You stopped the video."); - break; - case this.error.MEDIA_ERR_NETWORK: - that.trace("Network error - please try again later."); - break; - case this.error.MEDIA_ERR_DECODE: - that.trace("Video is broken.."); - break; - case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: - that.trace("Sorry, your browser can't play this video."); - break; - } - } - }); - - this._video.addEventListener("ended",function(e) { - that.trace("Ended."); - this.play(); //loop - }); - - //document.body.appendChild(this.video); -} - -ImageVideo.prototype.onPropertyChanged = function(name,value) -{ - this.properties[name] = value; - if (name == "url" && value != "") - this.loadVideo(value); - - return true; -} - -ImageVideo.prototype.play = function() -{ - if(this._video) - this._video.play(); -} - -ImageVideo.prototype.playPause = function() -{ - if(!this._video) - return; - if(this._video.paused) - this.play(); - else - this.pause(); -} - -ImageVideo.prototype.stop = function() -{ - if(!this._video) - return; - this._video.pause(); - this._video.currentTime = 0; -} - -ImageVideo.prototype.pause = function() -{ - if(!this._video) - return; - this.trace("Video paused"); - this._video.pause(); -} - -ImageVideo.prototype.onWidget = function(e,widget) -{ - /* - if(widget.name == "demo") - { - this.loadVideo(); - } - else if(widget.name == "play") - { - if(this._video) - this.playPause(); - } - if(widget.name == "stop") - { - this.stop(); - } - else if(widget.name == "mute") - { - if(this._video) - this._video.muted = !this._video.muted; - } - */ -} - -LiteGraph.registerNodeType("graphics/video", ImageVideo ); - - -// Texture Webcam ***************************************** -function ImageWebcam() -{ - this.addOutput("Webcam","image"); - this.properties = {}; -} - -ImageWebcam.title = "Webcam"; -ImageWebcam.desc = "Webcam image"; - - -ImageWebcam.prototype.openStream = function() -{ - //Vendor prefixes hell - navigator.getUserMedia = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia); - window.URL = window.URL || window.webkitURL; - - if (!navigator.getUserMedia) { - //console.log('getUserMedia() is not supported in your browser, use chrome and enable WebRTC from about://flags'); - return; - } - - this._waiting_confirmation = true; - - // Not showing vendor prefixes. - navigator.getUserMedia({video: true}, this.streamReady.bind(this), onFailSoHard); - - var that = this; - function onFailSoHard(e) { - console.log('Webcam rejected', e); - that._webcam_stream = false; - that.box_color = "red"; - }; -} - -ImageWebcam.prototype.onRemoved = function() -{ - if(this._webcam_stream) - { - this._webcam_stream.stop(); - this._webcam_stream = null; - this._video = null; - } -} - -ImageWebcam.prototype.streamReady = function(localMediaStream) -{ - this._webcam_stream = localMediaStream; - //this._waiting_confirmation = false; - - var video = this._video; - if(!video) - { - video = document.createElement("video"); - video.autoplay = true; - video.src = window.URL.createObjectURL(localMediaStream); - this._video = video; - //document.body.appendChild( video ); //debug - //when video info is loaded (size and so) - video.onloadedmetadata = function(e) { - // Ready to go. Do some stuff. - console.log(e); - }; - } -}, - -ImageWebcam.prototype.onExecute = function() -{ - if(this._webcam_stream == null && !this._waiting_confirmation) - this.openStream(); - - if(!this._video || !this._video.videoWidth) return; - - this._video.width = this._video.videoWidth; - this._video.height = this._video.videoHeight; - this.setOutputData(0, this._video); -} - -ImageWebcam.prototype.getExtraMenuOptions = function(graphcanvas) -{ - var that = this; - var txt = !that.properties.show ? "Show Frame" : "Hide Frame"; - return [ {content: txt, callback: - function() { - that.properties.show = !that.properties.show; - } - }]; -} - -ImageWebcam.prototype.onDrawBackground = function(ctx) -{ - if(this.flags.collapsed || this.size[1] <= 20 || !this.properties.show) - return; - - if(!this._video) - return; - - //render to graph canvas - ctx.save(); - ctx.drawImage(this._video, 0, 0, this.size[0], this.size[1]); - ctx.restore(); -} - -LiteGraph.registerNodeType("graphics/webcam", ImageWebcam ); - - -})(this); - +})(this); +(function(global){ +var LiteGraph = global.LiteGraph; + +function Selector() +{ + this.addInput("sel","boolean"); + this.addOutput("value","number"); + this.properties = { A:0, B:1 }; + this.size = [60,20]; +} + +Selector.title = "Selector"; +Selector.desc = "outputs A if selector is true, B if selector is false"; + +Selector.prototype.onExecute = function() +{ + var cond = this.getInputData(0); + if(cond === undefined) + return; + + for(var i = 1; i < this.inputs.length; i++) + { + var input = this.inputs[i]; + var v = this.getInputData(i); + if(v === undefined) + continue; + this.properties[input.name] = v; + } + + var A = this.properties.A; + var B = this.properties.B; + this.setOutputData(0, cond ? A : B ); +} + +Selector.prototype.onGetInputs = function() { + return [["A",0],["B",0]]; +} + +LiteGraph.registerNodeType("logic/selector", Selector); + +})(this); +(function(global){ +var LiteGraph = global.LiteGraph; + +function GraphicsPlot() +{ + this.addInput("A","Number"); + this.addInput("B","Number"); + this.addInput("C","Number"); + this.addInput("D","Number"); + + this.values = [[],[],[],[]]; + this.properties = { scale: 2 }; +} + +GraphicsPlot.title = "Plot"; +GraphicsPlot.desc = "Plots data over time"; +GraphicsPlot.colors = ["#FFF","#F99","#9F9","#99F"]; + +GraphicsPlot.prototype.onExecute = function(ctx) +{ + if(this.flags.collapsed) + return; + + var size = this.size; + + for(var i = 0; i < 4; ++i) + { + var v = this.getInputData(i); + if(v == null) + continue; + var values = this.values[i]; + values.push(v); + if(values.length > size[0]) + values.shift(); + } +} + +GraphicsPlot.prototype.onDrawBackground = function(ctx) +{ + if(this.flags.collapsed) + return; + + var size = this.size; + + var scale = 0.5 * size[1] / this.properties.scale; + var colors = GraphicsPlot.colors; + var offset = size[1] * 0.5; + + ctx.fillStyle = "#000"; + ctx.fillRect(0,0, size[0],size[1]); + ctx.strokeStyle = "#555"; + ctx.beginPath(); + ctx.moveTo(0, offset); + ctx.lineTo(size[0], offset); + ctx.stroke(); + + for(var i = 0; i < 4; ++i) + { + var values = this.values[i]; + ctx.strokeStyle = colors[i]; + ctx.beginPath(); + var v = values[0] * scale * -1 + offset; + ctx.moveTo(0, Math.clamp( v, 0, size[1]) ); + for(var j = 1; j < values.length && j < size[0]; ++j) + { + var v = values[j] * scale * -1 + offset; + ctx.lineTo( j, Math.clamp( v, 0, size[1]) ); + } + ctx.stroke(); + } +} + +LiteGraph.registerNodeType("graphics/plot", GraphicsPlot); + + +function GraphicsImage() +{ + this.addOutput("frame","image"); + this.properties = {"url":""}; +} + +GraphicsImage.title = "Image"; +GraphicsImage.desc = "Image loader"; +GraphicsImage.widgets = [{name:"load",text:"Load",type:"button"}]; + +GraphicsImage.supported_extensions = ["jpg","jpeg","png","gif"]; + +GraphicsImage.prototype.onAdded = function() +{ + if(this.properties["url"] != "" && this.img == null) + { + this.loadImage( this.properties["url"] ); + } +} + +GraphicsImage.prototype.onDrawBackground = function(ctx) +{ + if(this.img && this.size[0] > 5 && this.size[1] > 5) + ctx.drawImage(this.img, 0,0,this.size[0],this.size[1]); +} + + +GraphicsImage.prototype.onExecute = function() +{ + if(!this.img) + this.boxcolor = "#000"; + if(this.img && this.img.width) + this.setOutputData(0,this.img); + else + this.setOutputData(0,null); + if(this.img && this.img.dirty) + this.img.dirty = false; +} + +GraphicsImage.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + if (name == "url" && value != "") + this.loadImage(value); + + return true; +} + +GraphicsImage.prototype.loadImage = function( url, callback ) +{ + if(url == "") + { + this.img = null; + return; + } + + this.img = document.createElement("img"); + + if(url.substr(0,7) == "http://") + { + if(LiteGraph.proxy) //proxy external files + url = LiteGraph.proxy + url.substr(7); + } + + this.img.src = url; + this.boxcolor = "#F95"; + var that = this; + this.img.onload = function() + { + if(callback) + callback(this); + that.trace("Image loaded, size: " + that.img.width + "x" + that.img.height ); + this.dirty = true; + that.boxcolor = "#9F9"; + that.setDirtyCanvas(true); + } +} + +GraphicsImage.prototype.onWidget = function(e,widget) +{ + if(widget.name == "load") + { + this.loadImage(this.properties["url"]); + } +} + +GraphicsImage.prototype.onDropFile = function(file) +{ + var that = this; + if(this._url) + URL.revokeObjectURL( this._url ); + this._url = URL.createObjectURL( file ); + this.properties.url = this._url; + this.loadImage( this._url, function(img){ + that.size[1] = (img.height / img.width) * that.size[0]; + }); +} + +LiteGraph.registerNodeType("graphics/image", GraphicsImage); + + + +function ColorPalette() +{ + this.addInput("f","number"); + this.addOutput("Color","color"); + this.properties = {colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}; + +} + +ColorPalette.title = "Palette"; +ColorPalette.desc = "Generates a color"; + +ColorPalette.prototype.onExecute = function() +{ + var c = []; + + if (this.properties.colorA != null) + c.push( hex2num( this.properties.colorA ) ); + if (this.properties.colorB != null) + c.push( hex2num( this.properties.colorB ) ); + if (this.properties.colorC != null) + c.push( hex2num( this.properties.colorC ) ); + if (this.properties.colorD != null) + c.push( hex2num( this.properties.colorD ) ); + + var f = this.getInputData(0); + if(f == null) f = 0.5; + if (f > 1.0) + f = 1.0; + else if (f < 0.0) + f = 0.0; + + if(c.length == 0) + return; + + var result = [0,0,0]; + if(f == 0) + result = c[0]; + else if(f == 1) + result = c[ c.length - 1]; + else + { + var pos = (c.length - 1)* f; + var c1 = c[ Math.floor(pos) ]; + var c2 = c[ Math.floor(pos)+1 ]; + var t = pos - Math.floor(pos); + result[0] = c1[0] * (1-t) + c2[0] * (t); + result[1] = c1[1] * (1-t) + c2[1] * (t); + result[2] = c1[2] * (1-t) + c2[2] * (t); + } + + /* + c[0] = 1.0 - Math.abs( Math.sin( 0.1 * reModular.getTime() * Math.PI) ); + c[1] = Math.abs( Math.sin( 0.07 * reModular.getTime() * Math.PI) ); + c[2] = Math.abs( Math.sin( 0.01 * reModular.getTime() * Math.PI) ); + */ + + for(var i in result) + result[i] /= 255; + + this.boxcolor = colorToString(result); + this.setOutputData(0, result); +} + + +LiteGraph.registerNodeType("color/palette", ColorPalette ); + + +function ImageFrame() +{ + this.addInput("","image"); + this.size = [200,200]; +} + +ImageFrame.title = "Frame"; +ImageFrame.desc = "Frame viewerew"; +ImageFrame.widgets = [{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}]; + + +ImageFrame.prototype.onDrawBackground = function(ctx) +{ + if(this.frame) + ctx.drawImage(this.frame, 0,0,this.size[0],this.size[1]); +} + +ImageFrame.prototype.onExecute = function() +{ + this.frame = this.getInputData(0); + this.setDirtyCanvas(true); +} + +ImageFrame.prototype.onWidget = function(e,widget) +{ + if(widget.name == "resize" && this.frame) + { + var width = this.frame.width; + var height = this.frame.height; + + if(!width && this.frame.videoWidth != null ) + { + width = this.frame.videoWidth; + height = this.frame.videoHeight; + } + + if(width && height) + this.size = [width, height]; + this.setDirtyCanvas(true,true); + } + else if(widget.name == "view") + this.show(); +} + +ImageFrame.prototype.show = function() +{ + //var str = this.canvas.toDataURL("image/png"); + if(showElement && this.frame) + showElement(this.frame); +} + + +LiteGraph.registerNodeType("graphics/frame", ImageFrame ); + + + +/* +LiteGraph.registerNodeType("visualization/graph", { + desc: "Shows a graph of the inputs", + + inputs: [["",0],["",0],["",0],["",0]], + size: [200,200], + properties: {min:-1,max:1,bgColor:"#000"}, + onDrawBackground: function(ctx) + { + var colors = ["#FFF","#FAA","#AFA","#AAF"]; + + if(this.properties.bgColor != null && this.properties.bgColor != "") + { + ctx.fillStyle="#000"; + ctx.fillRect(2,2,this.size[0] - 4, this.size[1]-4); + } + + if(this.data) + { + var min = this.properties["min"]; + var max = this.properties["max"]; + + for(var i in this.data) + { + var data = this.data[i]; + if(!data) continue; + + if(this.getInputInfo(i) == null) continue; + + ctx.strokeStyle = colors[i]; + ctx.beginPath(); + + var d = data.length / this.size[0]; + for(var j = 0; j < data.length; j += d) + { + var value = data[ Math.floor(j) ]; + value = (value - min) / (max - min); + if (value > 1.0) value = 1.0; + else if(value < 0) value = 0; + + if(j == 0) + ctx.moveTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); + else + ctx.lineTo( j / d, (this.size[1] - 5) - (this.size[1] - 10) * value); + } + + ctx.stroke(); + } + } + + //ctx.restore(); + }, + + onExecute: function() + { + if(!this.data) this.data = []; + + for(var i in this.inputs) + { + var value = this.getInputData(i); + + if(typeof(value) == "number") + { + value = value ? value : 0; + if(!this.data[i]) + this.data[i] = []; + this.data[i].push(value); + + if(this.data[i].length > (this.size[1] - 4)) + this.data[i] = this.data[i].slice(1,this.data[i].length); + } + else + this.data[i] = value; + } + + if(this.data.length) + this.setDirtyCanvas(true); + } + }); +*/ + +function ImageFade() +{ + this.addInputs([["img1","image"],["img2","image"],["fade","number"]]); + this.addOutput("","image"); + this.properties = {fade:0.5,width:512,height:512}; +} + +ImageFade.title = "Image fade"; +ImageFade.desc = "Fades between images"; +ImageFade.widgets = [{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}]; + +ImageFade.prototype.onAdded = function() +{ + this.createCanvas(); + var ctx = this.canvas.getContext("2d"); + ctx.fillStyle = "#000"; + ctx.fillRect(0,0,this.properties["width"],this.properties["height"]); +} + +ImageFade.prototype.createCanvas = function() +{ + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties["width"]; + this.canvas.height = this.properties["height"]; +} + +ImageFade.prototype.onExecute = function() +{ + var ctx = this.canvas.getContext("2d"); + this.canvas.width = this.canvas.width; + + var A = this.getInputData(0); + if (A != null) + { + ctx.drawImage(A,0,0,this.canvas.width, this.canvas.height); + } + + var fade = this.getInputData(2); + if(fade == null) + fade = this.properties["fade"]; + else + this.properties["fade"] = fade; + + ctx.globalAlpha = fade; + var B = this.getInputData(1); + if (B != null) + { + ctx.drawImage(B,0,0,this.canvas.width, this.canvas.height); + } + ctx.globalAlpha = 1.0; + + this.setOutputData(0,this.canvas); + this.setDirtyCanvas(true); +} + +LiteGraph.registerNodeType("graphics/imagefade", ImageFade); + + + +function ImageCrop() +{ + this.addInput("","image"); + this.addOutput("","image"); + this.properties = {width:256,height:256,x:0,y:0,scale:1.0 }; + this.size = [50,20]; +} + +ImageCrop.title = "Crop"; +ImageCrop.desc = "Crop Image"; + +ImageCrop.prototype.onAdded = function() +{ + this.createCanvas(); +} + +ImageCrop.prototype.createCanvas = function() +{ + this.canvas = document.createElement("canvas"); + this.canvas.width = this.properties["width"]; + this.canvas.height = this.properties["height"]; +} + +ImageCrop.prototype.onExecute = function() +{ + var input = this.getInputData(0); + if(!input) + return; + + if(input.width) + { + var ctx = this.canvas.getContext("2d"); + + ctx.drawImage(input, -this.properties["x"],-this.properties["y"], input.width * this.properties["scale"], input.height * this.properties["scale"]); + this.setOutputData(0,this.canvas); + } + else + this.setOutputData(0,null); +} + +ImageCrop.prototype.onDrawBackground = function(ctx) +{ + if(this.flags.collapsed) + return; + if(this.canvas) + ctx.drawImage( this.canvas, 0,0,this.canvas.width,this.canvas.height, 0,0, this.size[0], this.size[1] ); +} + +ImageCrop.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + + if(name == "scale") + { + this.properties[name] = parseFloat(value); + if(this.properties[name] == 0) + { + this.trace("Error in scale"); + this.properties[name] = 1.0; + } + } + else + this.properties[name] = parseInt(value); + + this.createCanvas(); + + return true; +} + +LiteGraph.registerNodeType("graphics/cropImage", ImageCrop ); + + +function ImageVideo() +{ + this.addInput("t","number"); + this.addOutputs([["frame","image"],["t","number"],["d","number"]]); + this.properties = {"url":""}; +} + +ImageVideo.title = "Video"; +ImageVideo.desc = "Video playback"; +ImageVideo.widgets = [{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}]; + +ImageVideo.prototype.onExecute = function() +{ + if(!this.properties.url) + return; + + if(this.properties.url != this._video_url) + this.loadVideo(this.properties.url); + + if(!this._video || this._video.width == 0) + return; + + var t = this.getInputData(0); + if(t && t >= 0 && t <= 1.0) + { + this._video.currentTime = t * this._video.duration; + this._video.pause(); + } + + this._video.dirty = true; + this.setOutputData(0,this._video); + this.setOutputData(1,this._video.currentTime); + this.setOutputData(2,this._video.duration); + this.setDirtyCanvas(true); +} + +ImageVideo.prototype.onStart = function() +{ + this.play(); +} + +ImageVideo.prototype.onStop = function() +{ + this.stop(); +} + +ImageVideo.prototype.loadVideo = function(url) +{ + this._video_url = url; + + this._video = document.createElement("video"); + this._video.src = url; + this._video.type = "type=video/mp4"; + + this._video.muted = true; + this._video.autoplay = true; + + var that = this; + this._video.addEventListener("loadedmetadata",function(e) { + //onload + that.trace("Duration: " + this.duration + " seconds"); + that.trace("Size: " + this.videoWidth + "," + this.videoHeight); + that.setDirtyCanvas(true); + this.width = this.videoWidth; + this.height = this.videoHeight; + }); + this._video.addEventListener("progress",function(e) { + //onload + //that.trace("loading..."); + }); + this._video.addEventListener("error",function(e) { + console.log("Error loading video: " + this.src); + that.trace("Error loading video: " + this.src); + if (this.error) { + switch (this.error.code) { + case this.error.MEDIA_ERR_ABORTED: + that.trace("You stopped the video."); + break; + case this.error.MEDIA_ERR_NETWORK: + that.trace("Network error - please try again later."); + break; + case this.error.MEDIA_ERR_DECODE: + that.trace("Video is broken.."); + break; + case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: + that.trace("Sorry, your browser can't play this video."); + break; + } + } + }); + + this._video.addEventListener("ended",function(e) { + that.trace("Ended."); + this.play(); //loop + }); + + //document.body.appendChild(this.video); +} + +ImageVideo.prototype.onPropertyChanged = function(name,value) +{ + this.properties[name] = value; + if (name == "url" && value != "") + this.loadVideo(value); + + return true; +} + +ImageVideo.prototype.play = function() +{ + if(this._video) + this._video.play(); +} + +ImageVideo.prototype.playPause = function() +{ + if(!this._video) + return; + if(this._video.paused) + this.play(); + else + this.pause(); +} + +ImageVideo.prototype.stop = function() +{ + if(!this._video) + return; + this._video.pause(); + this._video.currentTime = 0; +} + +ImageVideo.prototype.pause = function() +{ + if(!this._video) + return; + this.trace("Video paused"); + this._video.pause(); +} + +ImageVideo.prototype.onWidget = function(e,widget) +{ + /* + if(widget.name == "demo") + { + this.loadVideo(); + } + else if(widget.name == "play") + { + if(this._video) + this.playPause(); + } + if(widget.name == "stop") + { + this.stop(); + } + else if(widget.name == "mute") + { + if(this._video) + this._video.muted = !this._video.muted; + } + */ +} + +LiteGraph.registerNodeType("graphics/video", ImageVideo ); + + +// Texture Webcam ***************************************** +function ImageWebcam() +{ + this.addOutput("Webcam","image"); + this.properties = {}; +} + +ImageWebcam.title = "Webcam"; +ImageWebcam.desc = "Webcam image"; + + +ImageWebcam.prototype.openStream = function() +{ + //Vendor prefixes hell + navigator.getUserMedia = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia); + window.URL = window.URL || window.webkitURL; + + if (!navigator.getUserMedia) { + //console.log('getUserMedia() is not supported in your browser, use chrome and enable WebRTC from about://flags'); + return; + } + + this._waiting_confirmation = true; + + // Not showing vendor prefixes. + navigator.getUserMedia({video: true}, this.streamReady.bind(this), onFailSoHard); + + var that = this; + function onFailSoHard(e) { + console.log('Webcam rejected', e); + that._webcam_stream = false; + that.box_color = "red"; + }; +} + +ImageWebcam.prototype.onRemoved = function() +{ + if(this._webcam_stream) + { + this._webcam_stream.stop(); + this._webcam_stream = null; + this._video = null; + } +} + +ImageWebcam.prototype.streamReady = function(localMediaStream) +{ + this._webcam_stream = localMediaStream; + //this._waiting_confirmation = false; + + var video = this._video; + if(!video) + { + video = document.createElement("video"); + video.autoplay = true; + video.src = window.URL.createObjectURL(localMediaStream); + this._video = video; + //document.body.appendChild( video ); //debug + //when video info is loaded (size and so) + video.onloadedmetadata = function(e) { + // Ready to go. Do some stuff. + console.log(e); + }; + } +}, + +ImageWebcam.prototype.onExecute = function() +{ + if(this._webcam_stream == null && !this._waiting_confirmation) + this.openStream(); + + if(!this._video || !this._video.videoWidth) return; + + this._video.width = this._video.videoWidth; + this._video.height = this._video.videoHeight; + this.setOutputData(0, this._video); +} + +ImageWebcam.prototype.getExtraMenuOptions = function(graphcanvas) +{ + var that = this; + var txt = !that.properties.show ? "Show Frame" : "Hide Frame"; + return [ {content: txt, callback: + function() { + that.properties.show = !that.properties.show; + } + }]; +} + +ImageWebcam.prototype.onDrawBackground = function(ctx) +{ + if(this.flags.collapsed || this.size[1] <= 20 || !this.properties.show) + return; + + if(!this._video) + return; + + //render to graph canvas + ctx.save(); + ctx.drawImage(this._video, 0, 0, this.size[0], this.size[1]); + ctx.restore(); +} + +LiteGraph.registerNodeType("graphics/webcam", ImageWebcam ); + + +})(this); + (function(global){ var LiteGraph = global.LiteGraph; @@ -13335,7 +13333,7 @@ LGraphTextureKuwaharaFilter.pixel_shader = "\n\ } //litegl.js defined -})(this); +})(this); (function(global){ var LiteGraph = global.LiteGraph; @@ -14012,7 +14010,7 @@ if(typeof(GL) != "undefined") global.LGraphFXVigneting = LGraphFXVigneting; } -})(this); +})(this); (function( global ) { var LiteGraph = global.LiteGraph; @@ -14720,7 +14718,7 @@ LiteGraph.registerNodeType("midi/cc", LGMIDICC); function now() { return window.performance.now() } -})( this ); +})( this ); (function( global ) { var LiteGraph = global.LiteGraph; @@ -15976,11 +15974,7 @@ LiteGraph.registerNodeType("audio/destination", LGAudioDestination); -<<<<<<< HEAD })( this ); -======= -})( this ); ->>>>>>> heads/upstream/master //event related nodes (function(global){ var LiteGraph = global.LiteGraph; @@ -16239,8 +16233,4 @@ LGSillyClient.prototype.onGetOutputs = function() LiteGraph.registerNodeType("network/sillyclient", LGSillyClient ); -<<<<<<< HEAD -})(this); -======= -})(this); ->>>>>>> heads/upstream/master +})(this); \ No newline at end of file diff --git a/build/litegraph.min.js b/build/litegraph.min.js index 258ac1d24..bcdc2ba28 100755 --- a/build/litegraph.min.js +++ b/build/litegraph.min.js @@ -1,42 +1,41 @@ -<<<<<<< HEAD var $jscomp = $jscomp || {}; $jscomp.scope = {}; $jscomp.ASSUME_ES5 = !1; $jscomp.ASSUME_NO_NATIVE_MAP = !1; $jscomp.ASSUME_NO_NATIVE_SET = !1; -$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(u, f, k) { - u != Array.prototype && u != Object.prototype && (u[f] = k.value); +$jscomp.defineProperty = $jscomp.ASSUME_ES5 || "function" == typeof Object.defineProperties ? Object.defineProperty : function(t, f, g) { + t != Array.prototype && t != Object.prototype && (t[f] = g.value); }; -$jscomp.getGlobal = function(u) { - return "undefined" != typeof window && window === u ? u : "undefined" != typeof global && null != global ? global : u; +$jscomp.getGlobal = function(t) { + return "undefined" != typeof window && window === t ? t : "undefined" != typeof global && null != global ? global : t; }; $jscomp.global = $jscomp.getGlobal(this); -$jscomp.polyfill = function(u, f, k, c) { +$jscomp.polyfill = function(t, f, g, d) { if (f) { - k = $jscomp.global; - u = u.split("."); - for (c = 0; c < u.length - 1; c++) { - var p = u[c]; - p in k || (k[p] = {}); - k = k[p]; + g = $jscomp.global; + t = t.split("."); + for (d = 0; d < t.length - 1; d++) { + var m = t[d]; + m in g || (g[m] = {}); + g = g[m]; } - u = u[u.length - 1]; - c = k[u]; - f = f(c); - f != c && null != f && $jscomp.defineProperty(k, u, {configurable:!0, writable:!0, value:f}); + t = t[t.length - 1]; + d = g[t]; + f = f(d); + f != d && null != f && $jscomp.defineProperty(g, t, {configurable:!0, writable:!0, value:f}); } }; -$jscomp.polyfill("Array.prototype.fill", function(u) { - return u ? u : function(f, k, c) { - var p = this.length || 0; - 0 > k && (k = Math.max(0, p + k)); - if (null == c || c > p) { - c = p; +$jscomp.polyfill("Array.prototype.fill", function(t) { + return t ? t : function(f, g, d) { + var m = this.length || 0; + 0 > g && (g = Math.max(0, m + g)); + if (null == d || d > m) { + d = m; } - c = Number(c); - 0 > c && (c = Math.max(0, p + c)); - for (k = Number(k || 0); k < c; k++) { - this[k] = f; + d = Number(d); + 0 > d && (d = Math.max(0, m + d)); + for (g = Number(g || 0); g < d; g++) { + this[g] = f; } return this; }; @@ -48,71 +47,71 @@ $jscomp.initSymbol = function() { $jscomp.global.Symbol || ($jscomp.global.Symbol = $jscomp.Symbol); }; $jscomp.Symbol = function() { - var u = 0; + var t = 0; return function(f) { - return $jscomp.SYMBOL_PREFIX + (f || "") + u++; + return $jscomp.SYMBOL_PREFIX + (f || "") + t++; }; }(); $jscomp.initSymbolIterator = function() { $jscomp.initSymbol(); - var u = $jscomp.global.Symbol.iterator; - u || (u = $jscomp.global.Symbol.iterator = $jscomp.global.Symbol("iterator")); - "function" != typeof Array.prototype[u] && $jscomp.defineProperty(Array.prototype, u, {configurable:!0, writable:!0, value:function() { + var t = $jscomp.global.Symbol.iterator; + t || (t = $jscomp.global.Symbol.iterator = $jscomp.global.Symbol("iterator")); + "function" != typeof Array.prototype[t] && $jscomp.defineProperty(Array.prototype, t, {configurable:!0, writable:!0, value:function() { return $jscomp.arrayIterator(this); }}); $jscomp.initSymbolIterator = function() { }; }; -$jscomp.arrayIterator = function(u) { +$jscomp.arrayIterator = function(t) { var f = 0; return $jscomp.iteratorPrototype(function() { - return f < u.length ? {done:!1, value:u[f++]} : {done:!0}; + return f < t.length ? {done:!1, value:t[f++]} : {done:!0}; }); }; -$jscomp.iteratorPrototype = function(u) { +$jscomp.iteratorPrototype = function(t) { $jscomp.initSymbolIterator(); - u = {next:u}; - u[$jscomp.global.Symbol.iterator] = function() { + t = {next:t}; + t[$jscomp.global.Symbol.iterator] = function() { return this; }; - return u; + return t; }; -$jscomp.iteratorFromArray = function(u, f) { +$jscomp.iteratorFromArray = function(t, f) { $jscomp.initSymbolIterator(); - u instanceof String && (u += ""); - var k = 0, c = {next:function() { - if (k < u.length) { - var p = k++; - return {value:f(p, u[p]), done:!1}; + t instanceof String && (t += ""); + var g = 0, d = {next:function() { + if (g < t.length) { + var m = g++; + return {value:f(m, t[m]), done:!1}; } - c.next = function() { + d.next = function() { return {done:!0, value:void 0}; }; - return c.next(); + return d.next(); }}; - c[Symbol.iterator] = function() { - return c; + d[Symbol.iterator] = function() { + return d; }; - return c; + return d; }; -$jscomp.polyfill("Array.prototype.values", function(u) { - return u ? u : function() { - return $jscomp.iteratorFromArray(this, function(f, k) { - return k; +$jscomp.polyfill("Array.prototype.values", function(t) { + return t ? t : function() { + return $jscomp.iteratorFromArray(this, function(f, g) { + return g; }); }; }, "es8", "es3"); -(function(u) { +(function(t) { function f() { - e.debug && console.log("Graph created"); + h.debug && console.log("Graph created"); this.list_of_graphcanvas = null; this.clear(); } - function k(a) { - this._ctor(); + function g(a) { + this._ctor(a); } - function c(a, b, d) { - d = d || {}; + function d(a, b, c) { + c = c || {}; this.background_image = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; a && a.constructor === String && (a = document.querySelector(a)); this.max_zoom = 10; @@ -120,6 +119,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.title_text_font = "bold 14px Arial"; this.inner_text_font = "normal 12px Arial"; this.default_link_color = "#AAC"; + this.default_connection_color = {input_off:"#AAB", input_on:"#7F7", output_off:"#AAB", output_on:"#7F7"}; this.highquality_render = !0; this.editor_alpha = 1; this.pause_rendering = !1; @@ -128,107 +128,109 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.allow_interaction = this.allow_dragnodes = this.allow_dragcanvas = this.show_info = !0; this.drag_mode = !1; this.dragging_rectangle = null; - this.render_connections_shadows = this.always_render_background = !1; + this.always_render_background = !1; + this.render_canvas_area = !0; + this.render_connections_shadows = !1; this.render_connection_arrows = this.render_curved_connections = this.render_connections_border = !0; this.connections_width = 3; b && b.attachCanvas(this); this.setCanvas(a); this.clear(); - d.skip_render || this.startRendering(); - this.autoresize = d.autoresize; + c.skip_render || this.startRendering(); + this.autoresize = c.autoresize; } - function p(a, b) { + function m(a, b) { return Math.sqrt((b[0] - a[0]) * (b[0] - a[0]) + (b[1] - a[1]) * (b[1] - a[1])); } - function t(a, b, d, g, h, e) { - return d < a && d + h > a && g < b && g + e > b ? !0 : !1; + function r(a, b, c, n, l, e) { + return c < a && c + l > a && n < b && n + e > b ? !0 : !1; } - function v(a, b) { - var d = a[0] + a[2], g = a[1] + a[3], h = b[1] + b[3]; - return a[0] > b[0] + b[2] || a[1] > h || d < b[0] || g < b[1] ? !1 : !0; + function u(a, b) { + var c = a[0] + a[2], n = a[1] + a[3], l = b[1] + b[3]; + return a[0] > b[0] + b[2] || a[1] > l || c < b[0] || n < b[1] ? !1 : !0; } function w(a, b) { this.options = b = b || {}; - var d = this; + var c = this; b.parentMenu && (b.parentMenu.constructor !== this.constructor ? (console.error("parentMenu must be of class ContextMenu, ignoring it"), b.parentMenu = null) : (this.parentMenu = b.parentMenu, this.parentMenu.lock = !0, this.parentMenu.current_submenu = this)); b.event && b.event.constructor !== MouseEvent && b.event.constructor !== CustomEvent && (console.error("Event passed to ContextMenu is not of type MouseEvent or CustomEvent. Ignoring it."), b.event = null); - var g = document.createElement("div"); - g.className = "litegraph litecontextmenu litemenubar-panel"; - g.style.minWidth = 100; - g.style.minHeight = 100; - g.style.pointerEvents = "none"; + var n = document.createElement("div"); + n.className = "litegraph litecontextmenu litemenubar-panel"; + n.style.minWidth = 100; + n.style.minHeight = 100; + n.style.pointerEvents = "none"; setTimeout(function() { - g.style.pointerEvents = "auto"; + n.style.pointerEvents = "auto"; }, 100); - g.addEventListener("mouseup", function(a) { + n.addEventListener("mouseup", function(a) { a.preventDefault(); return !0; }, !0); - g.addEventListener("contextmenu", function(a) { + n.addEventListener("contextmenu", function(a) { if (2 != a.button) { return !1; } a.preventDefault(); return !1; }, !0); - g.addEventListener("mousedown", function(a) { + n.addEventListener("mousedown", function(a) { if (2 == a.button) { - return d.close(), a.preventDefault(), !0; + return c.close(), a.preventDefault(), !0; } }, !0); - this.root = g; + this.root = n; if (b.title) { - var h = document.createElement("div"); - h.className = "litemenu-title"; - h.innerHTML = b.title; - g.appendChild(h); + var l = document.createElement("div"); + l.className = "litemenu-title"; + l.innerHTML = b.title; + n.appendChild(l); } - h = 0; + l = 0; for (var e in a) { - var n = a.constructor == Array ? a[e] : e; - null != n && n.constructor !== String && (n = void 0 === n.content ? String(n) : n.content); - this.addItem(n, a[e], b); - h++; + var k = a.constructor == Array ? a[e] : e; + null != k && k.constructor !== String && (k = void 0 === k.content ? String(k) : k.content); + this.addItem(k, a[e], b); + l++; } - g.addEventListener("mouseleave", function(a) { - d.lock || d.close(a); + n.addEventListener("mouseleave", function(a) { + c.lock || c.close(a); }); a = document; b.event && (a = b.event.target.ownerDocument); a || (a = document); - a.body.appendChild(g); + a.body.appendChild(n); e = b.left || 0; a = b.top || 0; - b.event && (e = b.event.pageX - 10, a = b.event.pageY - 10, b.title && (a -= 20), b.parentMenu && (b = b.parentMenu.root.getBoundingClientRect(), e = b.left + b.width), b = document.body.getBoundingClientRect(), h = g.getBoundingClientRect(), e > b.width - h.width - 10 && (e = b.width - h.width - 10), a > b.height - h.height - 10 && (a = b.height - h.height - 10)); - g.style.left = e + "px"; - g.style.top = a + "px"; + b.event && (e = b.event.pageX - 10, a = b.event.pageY - 10, b.title && (a -= 20), b.parentMenu && (b = b.parentMenu.root.getBoundingClientRect(), e = b.left + b.width), b = document.body.getBoundingClientRect(), l = n.getBoundingClientRect(), e > b.width - l.width - 10 && (e = b.width - l.width - 10), a > b.height - l.height - 10 && (a = b.height - l.height - 10)); + n.style.left = e + "px"; + n.style.top = a + "px"; } - var e = u.LiteGraph = {NODE_TITLE_HEIGHT:16, NODE_SLOT_HEIGHT:15, NODE_WIDTH:140, NODE_MIN_WIDTH:50, NODE_COLLAPSED_RADIUS:10, NODE_COLLAPSED_WIDTH:80, CANVAS_GRID_SIZE:10, NODE_TITLE_COLOR:"#222", NODE_DEFAULT_COLOR:"#999", NODE_DEFAULT_BGCOLOR:"#444", NODE_DEFAULT_BOXCOLOR:"#AEF", NODE_DEFAULT_SHAPE:"box", MAX_NUMBER_OF_NODES:1000, DEFAULT_POSITION:[100, 100], node_images_path:"", VALID_SHAPES:["box", "round"], BOX_SHAPE:1, ROUND_SHAPE:2, CIRCLE_SHAPE:3, INPUT:1, OUTPUT:2, EVENT:-1, ACTION:-1, + var h = t.LiteGraph = {NODE_TITLE_HEIGHT:16, NODE_SLOT_HEIGHT:15, NODE_WIDTH:140, NODE_MIN_WIDTH:50, NODE_COLLAPSED_RADIUS:10, NODE_COLLAPSED_WIDTH:80, CANVAS_GRID_SIZE:10, NODE_TITLE_COLOR:"#222", NODE_DEFAULT_COLOR:"#999", NODE_DEFAULT_BGCOLOR:"#444", NODE_DEFAULT_BOXCOLOR:"#AEF", NODE_DEFAULT_SHAPE:"box", MAX_NUMBER_OF_NODES:1000, DEFAULT_POSITION:[100, 100], node_images_path:"", VALID_SHAPES:["box", "round"], BOX_SHAPE:1, ROUND_SHAPE:2, CIRCLE_SHAPE:3, INPUT:1, OUTPUT:2, EVENT:-1, ACTION:-1, ALWAYS:0, ON_EVENT:1, NEVER:2, ON_TRIGGER:3, proxy:null, debug:!1, throw_errors:!0, allow_scripts:!0, registered_node_types:{}, node_types_by_file_extension:{}, Nodes:{}, registerNodeType:function(a, b) { if (!b.prototype) { throw "Cannot register a simple object, it must be a class with a prototype"; } b.type = a; - e.debug && console.log("Node registered: " + a); + h.debug && console.log("Node registered: " + a); a.split("/"); - var d = b.constructor.name, g = a.lastIndexOf("/"); - b.category = a.substr(0, g); - b.title || (b.title = d); + var c = b.name, n = a.lastIndexOf("/"); + b.category = a.substr(0, n); + b.title || (b.title = c); if (b.prototype) { - for (var h in k.prototype) { - b.prototype[h] || (b.prototype[h] = k.prototype[h]); + for (var l in g.prototype) { + b.prototype[l] || (b.prototype[l] = g.prototype[l]); } } Object.defineProperty(b.prototype, "shape", {set:function(a) { switch(a) { case "box": - this._shape = e.BOX_SHAPE; + this._shape = h.BOX_SHAPE; break; case "round": - this._shape = e.ROUND_SHAPE; + this._shape = h.ROUND_SHAPE; break; case "circle": - this._shape = e.CIRCLE_SHAPE; + this._shape = h.CIRCLE_SHAPE; break; default: this._shape = a; @@ -237,62 +239,62 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return this._shape; }, enumerable:!0}); this.registered_node_types[a] = b; - b.constructor.name && (this.Nodes[d] = b); + b.constructor.name && (this.Nodes[c] = b); b.prototype.onPropertyChange && console.warn("LiteGraph node class " + a + " has onPropertyChange method, it must be called onPropertyChanged with d at the end"); if (b.supported_extensions) { - for (h in b.supported_extensions) { - this.node_types_by_file_extension[b.supported_extensions[h].toLowerCase()] = b; + for (l in b.supported_extensions) { + this.node_types_by_file_extension[b.supported_extensions[l].toLowerCase()] = b; } } - }, wrapFunctionAsNode:function(a, b, d, g) { - for (var h = Array(b.length), c = "", n = e.getParameterNames(b), l = 0; l < n.length; ++l) { - c += "this.addInput('" + n[l] + "'," + (d && d[l] ? "'" + d[l] + "'" : "0") + ");\n"; + }, wrapFunctionAsNode:function(a, b, c, n) { + for (var l = Array(b.length), e = "", k = h.getParameterNames(b), d = 0; d < k.length; ++d) { + e += "this.addInput('" + k[d] + "'," + (c && c[d] ? "'" + c[d] + "'" : "0") + ");\n"; } - d = Function(c + ("this.addOutput('out'," + (g ? "'" + g + "'" : 0) + ");\n")); - d.title = a.split("/").pop(); - d.desc = "Generated from " + b.name; - d.prototype.onExecute = function() { - for (var a = 0; a < h.length; ++a) { - h[a] = this.getInputData(a); + c = Function(e + ("this.addOutput('out'," + (n ? "'" + n + "'" : 0) + ");\n")); + c.title = a.split("/").pop(); + c.desc = "Generated from " + b.name; + c.prototype.onExecute = function() { + for (var a = 0; a < l.length; ++a) { + l[a] = this.getInputData(a); } - a = b.apply(this, h); + a = b.apply(this, l); this.setOutputData(0, a); }; - this.registerNodeType(a, d); + this.registerNodeType(a, c); }, addNodeMethod:function(a, b) { - k.prototype[a] = b; - for (var d in this.registered_node_types) { - var g = this.registered_node_types[d]; - g.prototype[a] && (g.prototype["_" + a] = g.prototype[a]); - g.prototype[a] = b; + g.prototype[a] = b; + for (var c in this.registered_node_types) { + var n = this.registered_node_types[c]; + n.prototype[a] && (n.prototype["_" + a] = n.prototype[a]); + n.prototype[a] = b; } - }, createNode:function(a, b, d) { - var g = this.registered_node_types[a]; - if (!g) { - return e.debug && console.log('GraphNode type "' + a + '" not registered.'), null; + }, createNode:function(a, b, c) { + var n = this.registered_node_types[a]; + if (!n) { + return h.debug && console.log('GraphNode type "' + a + '" not registered.'), null; } - b = b || g.title || a; - g = new g(b); - g.type = a; - g.title || (g.title = b); - g.properties || (g.properties = {}); - g.properties_info || (g.properties_info = []); - g.flags || (g.flags = {}); - g.size || (g.size = g.computeSize()); - g.pos || (g.pos = e.DEFAULT_POSITION.concat()); - g.mode || (g.mode = e.ALWAYS); - if (d) { - for (var h in d) { - g[h] = d[h]; + b = b || n.title || a; + n = new n(b); + n.type = a; + !n.title && b && (n.title = b); + n.properties || (n.properties = {}); + n.properties_info || (n.properties_info = []); + n.flags || (n.flags = {}); + n.size || (n.size = n.computeSize()); + n.pos || (n.pos = h.DEFAULT_POSITION.concat()); + n.mode || (n.mode = h.ALWAYS); + if (c) { + for (var l in c) { + n[l] = c[l]; } } - return g; + return n; }, getNodeType:function(a) { return this.registered_node_types[a]; }, getNodeTypesInCategory:function(a) { - var b = [], d; - for (d in this.registered_node_types) { - "" == a ? null == this.registered_node_types[d].category && b.push(this.registered_node_types[d]) : this.registered_node_types[d].category == a && b.push(this.registered_node_types[d]); + var b = [], c; + for (c in this.registered_node_types) { + "" == a ? null == this.registered_node_types[c].category && b.push(this.registered_node_types[c]) : this.registered_node_types[c].category == a && b.push(this.registered_node_types[c]); } return b; }, getNodeTypesCategories:function() { @@ -300,37 +302,37 @@ $jscomp.polyfill("Array.prototype.values", function(u) { for (b in this.registered_node_types) { this.registered_node_types[b].category && !this.registered_node_types[b].skip_list && (a[this.registered_node_types[b].category] = 1); } - var d = []; + var c = []; for (b in a) { - d.push(b); + c.push(b); } - return d; + return c; }, reloadNodes:function(a) { - var b = document.getElementsByTagName("script"), d = [], g; - for (g in b) { - d.push(b[g]); + var b = document.getElementsByTagName("script"), c = [], n; + for (n in b) { + c.push(b[n]); } b = document.getElementsByTagName("head")[0]; a = document.location.href + a; - for (g in d) { - var h = d[g].src; - if (h && h.substr(0, a.length) == a) { + for (n in c) { + var l = c[n].src; + if (l && l.substr(0, a.length) == a) { try { - e.debug && console.log("Reloading: " + h); - var c = document.createElement("script"); - c.type = "text/javascript"; - c.src = h; - b.appendChild(c); - b.removeChild(d[g]); - } catch (n) { - if (e.throw_errors) { - throw n; + h.debug && console.log("Reloading: " + l); + var e = document.createElement("script"); + e.type = "text/javascript"; + e.src = l; + b.appendChild(e); + b.removeChild(c[n]); + } catch (k) { + if (h.throw_errors) { + throw k; } - e.debug && console.log("Error while reloading " + h); + h.debug && console.log("Error while reloading " + l); } } } - e.debug && console.log("Nodes reloaded"); + h.debug && console.log("Nodes reloaded"); }, cloneObject:function(a, b) { if (null == a) { return null; @@ -339,12 +341,12 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (!b) { return a; } - for (var d in a) { - b[d] = a[d]; + for (var c in a) { + b[c] = a[c]; } return b; }, isValidConnection:function(a, b) { - if (!a || !b || a == b || a == e.EVENT && b == e.ACTION) { + if (!a || !b || a == b || a == h.EVENT && b == h.ACTION) { return !0; } a = String(a); @@ -356,22 +358,22 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } a = a.split(","); b = b.split(","); - for (var d = 0; d < a.length; ++d) { - for (var g = 0; g < b.length; ++g) { - if (a[d] == b[g]) { + for (var c = 0; c < a.length; ++c) { + for (var n = 0; n < b.length; ++n) { + if (a[c] == b[n]) { return !0; } } } return !1; }}; - e.getTime = "undefined" != typeof performance ? performance.now.bind(performance) : "undefined" != typeof Date && Date.now ? Date.now.bind(Date) : "undefined" != typeof process ? function() { + h.getTime = "undefined" != typeof performance ? performance.now.bind(performance) : "undefined" != typeof Date && Date.now ? Date.now.bind(Date) : "undefined" != typeof process ? function() { var a = process.hrtime(); return 0.001 * a[0] + 1e-6 * a[1]; } : function() { return (new Date).getTime(); }; - u.LGraph = e.LGraph = f; + t.LGraph = h.LGraph = f; f.supported_types = ["number", "string", "boolean"]; f.prototype.getSupportedTypes = function() { return this.supported_types || f.supported_types; @@ -400,7 +402,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.sendActionToCanvas("clear"); }; f.prototype.attachCanvas = function(a) { - if (a.constructor != c) { + if (a.constructor != d) { throw "attachCanvas expects a LGraphCanvas instance"; } a.graph && a.graph != this && a.graph.detachCanvas(a); @@ -421,7 +423,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onPlayEvent(); } this.sendEventToAllNodes("onStart"); - this.starttime = e.getTime(); + this.starttime = h.getTime(); var b = this; this.execution_timer_id = setInterval(function() { b.runStep(1, !this.catch_errors); @@ -441,16 +443,16 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; f.prototype.runStep = function(a, b) { a = a || 1; - var d = e.getTime(); - this.globaltime = 0.001 * (d - this.starttime); - var g = this._nodes_executable ? this._nodes_executable : this._nodes; - if (g) { + var c = h.getTime(); + this.globaltime = 0.001 * (c - this.starttime); + var n = this._nodes_executable ? this._nodes_executable : this._nodes; + if (n) { if (b) { - for (var h = 0; h < a; h++) { - for (var c = 0, n = g.length; c < n; ++c) { - var l = g[c]; - if (l.mode == e.ALWAYS && l.onExecute) { - l.onExecute(); + for (var l = 0; l < a; l++) { + for (var e = 0, k = n.length; e < k; ++e) { + var d = n[e]; + if (d.mode == h.ALWAYS && d.onExecute) { + d.onExecute(); } } this.fixedtime += this.fixedtime_lapse; @@ -463,11 +465,11 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } else { try { - for (h = 0; h < a; h++) { - c = 0; - for (n = g.length; c < n; ++c) { - if (l = g[c], l.mode == e.ALWAYS && l.onExecute) { - l.onExecute(); + for (l = 0; l < a; l++) { + e = 0; + for (k = n.length; e < k; ++e) { + if (d = n[e], d.mode == h.ALWAYS && d.onExecute) { + d.onExecute(); } } this.fixedtime += this.fixedtime_lapse; @@ -479,16 +481,16 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onAfterExecute(); } this.errors_in_execution = !1; - } catch (A) { + } catch (B) { this.errors_in_execution = !0; - if (e.throw_errors) { - throw A; + if (h.throw_errors) { + throw B; } - e.debug && console.log("Error during execution: " + A); + h.debug && console.log("Error during execution: " + B); this.stop(); } } - a = e.getTime() - d; + a = h.getTime() - c; 0 == a && (a = 1); this.elapsed_time = 0.001 * a; this.globaltime += 0.001 * a; @@ -503,53 +505,53 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } }; f.prototype.computeExecutionOrder = function(a, b) { - for (var d = [], g = [], h = {}, c = {}, n = {}, l = 0, f = this._nodes.length; l < f; ++l) { - var q = this._nodes[l]; - if (!a || q.onExecute) { - h[q.id] = q; - var p = 0; - if (q.inputs) { - for (var k = 0, t = q.inputs.length; k < t; k++) { - q.inputs[k] && null != q.inputs[k].link && (p += 1); + for (var c = [], n = [], e = {}, d = {}, k = {}, f = 0, p = this._nodes.length; f < p; ++f) { + var m = this._nodes[f]; + if (!a || m.onExecute) { + e[m.id] = m; + var g = 0; + if (m.inputs) { + for (var r = 0, u = m.inputs.length; r < u; r++) { + m.inputs[r] && null != m.inputs[r].link && (g += 1); } } - 0 == p ? (g.push(q), b && (q._level = 1)) : (b && (q._level = 0), n[q.id] = p); + 0 == g ? (n.push(m), b && (m._level = 1)) : (b && (m._level = 0), k[m.id] = g); } } - for (; 0 != g.length;) { - if (q = g.shift(), d.push(q), delete h[q.id], q.outputs) { - for (l = 0; l < q.outputs.length; l++) { - if (a = q.outputs[l], null != a && null != a.links && 0 != a.links.length) { - for (k = 0; k < a.links.length; k++) { - (f = this.links[a.links[k]]) && !c[f.id] && (p = this.getNodeById(f.target_id), null == p ? c[f.id] = !0 : (b && (!p._level || p._level <= q._level) && (p._level = q._level + 1), c[f.id] = !0, --n[p.id], 0 == n[p.id] && g.push(p))); + for (; 0 != n.length;) { + if (m = n.shift(), c.push(m), delete e[m.id], m.outputs) { + for (f = 0; f < m.outputs.length; f++) { + if (a = m.outputs[f], null != a && null != a.links && 0 != a.links.length) { + for (r = 0; r < a.links.length; r++) { + (p = this.links[a.links[r]]) && !d[p.id] && (g = this.getNodeById(p.target_id), null == g ? d[p.id] = !0 : (b && (!g._level || g._level <= m._level) && (g._level = m._level + 1), d[p.id] = !0, --k[g.id], 0 == k[g.id] && n.push(g))); } } } } } - for (l in h) { - d.push(h[l]); + for (f in e) { + c.push(e[f]); } - d.length != this._nodes.length && e.debug && console.warn("something went wrong, nodes missing"); - for (l = 0; l < d.length; ++l) { - d[l].order = l; + c.length != this._nodes.length && h.debug && console.warn("something went wrong, nodes missing"); + for (f = 0; f < c.length; ++f) { + c[f].order = f; } - return d; + return c; }; f.prototype.arrange = function(a) { a = a || 40; - for (var b = this.computeExecutionOrder(!1, !0), d = [], g = 0; g < b.length; ++g) { - var e = b[g], c = e._level || 1; - d[c] || (d[c] = []); - d[c].push(e); + for (var b = this.computeExecutionOrder(!1, !0), c = [], n = 0; n < b.length; ++n) { + var e = b[n], d = e._level || 1; + c[d] || (c[d] = []); + c[d].push(e); } b = a; - for (g = 0; g < d.length; ++g) { - if (c = d[g]) { - for (var n = 100, l = a, f = 0; f < c.length; ++f) { - e = c[f], e.pos[0] = b, e.pos[1] = l, e.size[0] > n && (n = e.size[0]), l += e.size[1] + a; + for (n = 0; n < c.length; ++n) { + if (d = c[n]) { + for (var k = 100, f = a, p = 0; p < d.length; ++p) { + e = d[p], e.pos[0] = b, e.pos[1] = f, e.size[0] > k && (k = e.size[0]), f += e.size[1] + a; } - b += n + a; + b += k + a; } } this.setDirtyCanvas(!0, !0); @@ -563,20 +565,20 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.prototype.getElapsedTime = function() { return this.elapsed_time; }; - f.prototype.sendEventToAllNodes = function(a, b, d) { - d = d || e.ALWAYS; - var g = this._nodes_in_order ? this._nodes_in_order : this._nodes; - if (g) { - for (var h = 0, c = g.length; h < c; ++h) { - var n = g[h]; - if (n[a] && n.mode == d) { + f.prototype.sendEventToAllNodes = function(a, b, c) { + c = c || h.ALWAYS; + var n = this._nodes_in_order ? this._nodes_in_order : this._nodes; + if (n) { + for (var e = 0, d = n.length; e < d; ++e) { + var k = n[e]; + if (k[a] && k.mode == c) { if (void 0 === b) { - n[a](); + k[a](); } else { if (b && b.constructor === Array) { - n[a].apply(n, b); + k[a].apply(k, b); } else { - n[a](b); + k[a](b); } } } @@ -585,16 +587,16 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; f.prototype.sendActionToCanvas = function(a, b) { if (this.list_of_graphcanvas) { - for (var d = 0; d < this.list_of_graphcanvas.length; ++d) { - var g = this.list_of_graphcanvas[d]; - g[a] && g[a].apply(g, b); + for (var c = 0; c < this.list_of_graphcanvas.length; ++c) { + var n = this.list_of_graphcanvas[c]; + n[a] && n[a].apply(n, b); } } }; f.prototype.add = function(a, b) { if (a) { -1 != a.id && null != this._nodes_by_id[a.id] && (console.warn("LiteGraph: there is already a node with this ID, changing it"), a.id = ++this.last_node_id); - if (this._nodes.length >= e.MAX_NUMBER_OF_NODES) { + if (this._nodes.length >= h.MAX_NUMBER_OF_NODES) { throw "LiteGraph: max number of nodes in a graph reached"; } null == a.id || -1 == a.id ? a.id = ++this.last_node_id : this.last_node_id < a.id && (this.last_node_id = a.id); @@ -618,13 +620,13 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (null != this._nodes_by_id[a.id] && !a.ignore_remove) { if (a.inputs) { for (var b = 0; b < a.inputs.length; b++) { - var d = a.inputs[b]; - null != d.link && a.disconnectInput(b); + var c = a.inputs[b]; + null != c.link && a.disconnectInput(b); } } if (a.outputs) { for (b = 0; b < a.outputs.length; b++) { - d = a.outputs[b], null != d.links && d.links.length && a.disconnectOutput(b); + c = a.outputs[b], null != c.links && c.links.length && a.disconnectOutput(b); } } if (a.onRemoved) { @@ -633,7 +635,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { a.graph = null; if (this.list_of_graphcanvas) { for (b = 0; b < this.list_of_graphcanvas.length; ++b) { - d = this.list_of_graphcanvas[b], d.selected_nodes[a.id] && delete d.selected_nodes[a.id], d.node_dragged == a && (d.node_dragged = null); + c = this.list_of_graphcanvas[b], c.selected_nodes[a.id] && delete c.selected_nodes[a.id], c.node_dragged == a && (c.node_dragged = null); } } b = this._nodes.indexOf(a); @@ -651,36 +653,36 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return null == a ? null : this._nodes_by_id[a]; }; f.prototype.findNodesByClass = function(a) { - for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { - this._nodes[d].constructor === a && b.push(this._nodes[d]); + for (var b = [], c = 0, n = this._nodes.length; c < n; ++c) { + this._nodes[c].constructor === a && b.push(this._nodes[c]); } return b; }; f.prototype.findNodesByType = function(a) { a = a.toLowerCase(); - for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { - this._nodes[d].type.toLowerCase() == a && b.push(this._nodes[d]); + for (var b = [], c = 0, n = this._nodes.length; c < n; ++c) { + this._nodes[c].type.toLowerCase() == a && b.push(this._nodes[c]); } return b; }; f.prototype.findNodesByTitle = function(a) { - for (var b = [], d = 0, g = this._nodes.length; d < g; ++d) { - this._nodes[d].title == a && b.push(this._nodes[d]); + for (var b = [], c = 0, n = this._nodes.length; c < n; ++c) { + this._nodes[c].title == a && b.push(this._nodes[c]); } return b; }; - f.prototype.getNodeOnPos = function(a, b, d) { - d = d || this._nodes; - for (var g = d.length - 1; 0 <= g; g--) { - var e = d[g]; + f.prototype.getNodeOnPos = function(a, b, c) { + c = c || this._nodes; + for (var n = c.length - 1; 0 <= n; n--) { + var e = c[n]; if (e.isPointInsideNode(a, b, 2)) { return e; } } return null; }; - f.prototype.addGlobalInput = function(a, b, d) { - this.global_inputs[a] = {name:a, type:b, value:d}; + f.prototype.addGlobalInput = function(a, b, c) { + this.global_inputs[a] = {name:a, type:b, value:c}; if (this.onGlobalInputAdded) { this.onGlobalInputAdded(a, b); } @@ -693,6 +695,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { a.value = b; } }; + f.prototype.setInputData = f.prototype.setGlobalInputData; f.prototype.getGlobalInputData = function(a) { return (a = this.global_inputs[a]) ? a.value : null; }; @@ -735,8 +738,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return !0; }; - f.prototype.addGlobalOutput = function(a, b, d) { - this.global_outputs[a] = {name:a, type:b, value:d}; + f.prototype.addGlobalOutput = function(a, b, c) { + this.global_outputs[a] = {name:a, type:b, value:c}; if (this.onGlobalOutputAdded) { this.onGlobalOutputAdded(a, b); } @@ -752,6 +755,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.prototype.getGlobalOutputData = function(a) { return (a = this.global_outputs[a]) ? a.value : null; }; + f.prototype.getOutputData = f.prototype.getGlobalOutputData; f.prototype.renameGlobalOutput = function(a, b) { if (!this.global_outputs[a]) { return !1; @@ -789,25 +793,16 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return !0; }; - f.prototype.setInputData = function(a, b) { - a = this.findNodesByName(a); - for (var d = 0, g = a.length; d < g; ++d) { - a[d].setValue(b); - } - }; - f.prototype.getOutputData = function(a) { - return this.findNodesByName(a).length ? m[0].getValue() : null; - }; f.prototype.triggerInput = function(a, b) { - a = this.findNodesByName(a); - for (var d = 0; d < a.length; ++d) { - a[d].onTrigger(b); + a = this.findNodesByTitle(a); + for (var c = 0; c < a.length; ++c) { + a[c].onTrigger(b); } }; f.prototype.setCallback = function(a, b) { - a = this.findNodesByName(a); - for (var d = 0; d < a.length; ++d) { - a[d].setTrigger(b); + a = this.findNodesByTitle(a); + for (var c = 0; c < a.length; ++c) { + a[c].setTrigger(b); } }; f.prototype.connectionChange = function(a) { @@ -829,7 +824,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return !1; }; f.prototype.change = function() { - e.debug && console.log("Graph changed"); + h.debug && console.log("Graph changed"); this.sendActionToCanvas("setDirty", [!0, !0]); if (this.on_change) { this.on_change(this); @@ -839,62 +834,62 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.sendActionToCanvas("setDirty", [a, b]); }; f.prototype.serialize = function() { - for (var a = [], b = 0, d = this._nodes.length; b < d; ++b) { + for (var a = [], b = 0, c = this._nodes.length; b < c; ++b) { a.push(this._nodes[b].serialize()); } - d = []; + c = []; for (b in this.links) { - var g = this.links[b]; - d.push([g.id, g.origin_id, g.origin_slot, g.target_id, g.target_slot, g.type]); + var n = this.links[b]; + c.push([n.id, n.origin_id, n.origin_slot, n.target_id, n.target_slot, n.type]); } - return {iteration:this.iteration, frame:this.frame, last_node_id:this.last_node_id, last_link_id:this.last_link_id, links:d, config:this.config, nodes:a}; + return {iteration:this.iteration, frame:this.frame, last_node_id:this.last_node_id, last_link_id:this.last_link_id, links:c, config:this.config, nodes:a}; }; f.prototype.configure = function(a, b) { b || this.clear(); b = a.nodes; if (a.links && a.links.constructor === Array) { - for (var d = {}, g = 0; g < a.links.length; ++g) { - var h = a.links[g]; - d[h[0]] = {id:h[0], origin_id:h[1], origin_slot:h[2], target_id:h[3], target_slot:h[4], type:h[5]}; + for (var c = {}, n = 0; n < a.links.length; ++n) { + var e = a.links[n]; + c[e[0]] = {id:e[0], origin_id:e[1], origin_slot:e[2], target_id:e[3], target_slot:e[4], type:e[5]}; } - a.links = d; + a.links = c; } - for (g in a) { - this[g] = a[g]; + for (n in a) { + this[n] = a[n]; } a = !1; this._nodes = []; - g = 0; - for (d = b.length; g < d; ++g) { - h = b[g]; - var c = e.createNode(h.type, h.title); - c ? (c.id = h.id, this.add(c, !0)) : (e.debug && console.log("Node not found: " + h.type), a = !0); + n = 0; + for (c = b.length; n < c; ++n) { + e = b[n]; + var d = h.createNode(e.type, e.title); + d ? (d.id = e.id, this.add(d, !0)) : (h.debug && console.log("Node not found: " + e.type), a = !0); } - g = 0; - for (d = b.length; g < d; ++g) { - h = b[g], (c = this.getNodeById(h.id)) && c.configure(h); + n = 0; + for (c = b.length; n < c; ++n) { + e = b[n], (d = this.getNodeById(e.id)) && d.configure(e); } this.updateExecutionOrder(); this.setDirtyCanvas(!0, !0); return a; }; f.prototype.load = function(a) { - var b = this, d = new XMLHttpRequest; - d.open("GET", a, !0); - d.send(null); - d.onload = function(a) { - 200 !== d.status ? console.error("Error loading graph:", d.status, d.response) : (a = JSON.parse(d.response), b.configure(a)); + var b = this, c = new XMLHttpRequest; + c.open("GET", a, !0); + c.send(null); + c.onload = function(a) { + 200 !== c.status ? console.error("Error loading graph:", c.status, c.response) : (a = JSON.parse(c.response), b.configure(a)); }; - d.onerror = function(a) { + c.onerror = function(a) { console.error("Error loading graph:", a); }; }; - f.prototype.onNodeTrace = function(a, b, d) { + f.prototype.onNodeTrace = function(a, b, c) { }; - u.LGraphNode = e.LGraphNode = k; - k.prototype._ctor = function(a) { + t.LGraphNode = h.LGraphNode = g; + g.prototype._ctor = function(a) { this.title = a || "Unnamed"; - this.size = [e.NODE_WIDTH, 60]; + this.size = [h.NODE_WIDTH, 60]; this.graph = null; this._pos = new Float32Array(10, 10); Object.defineProperty(this, "pos", {set:function(a) { @@ -912,45 +907,46 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.data = null; this.flags = {}; }; - k.prototype.configure = function(a) { + g.prototype.configure = function(a) { for (var b in a) { if ("console" != b) { if ("properties" == b) { - for (var d in a.properties) { - if (this.properties[d] = a.properties[d], this.onPropertyChanged) { - this.onPropertyChanged(d, a.properties[d]); + for (var c in a.properties) { + if (this.properties[c] = a.properties[c], this.onPropertyChanged) { + this.onPropertyChanged(c, a.properties[c]); } } } else { - null != a[b] && ("object" == typeof a[b] ? this[b] && this[b].configure ? this[b].configure(a[b]) : this[b] = e.cloneObject(a[b], this[b]) : this[b] = a[b]); + null != a[b] && ("object" == typeof a[b] ? this[b] && this[b].configure ? this[b].configure(a[b]) : this[b] = h.cloneObject(a[b], this[b]) : this[b] = a[b]); } } } + a.title || (this.title = this.constructor.title); if (this.onConnectionsChange) { if (this.inputs) { - for (var g = 0; g < this.inputs.length; ++g) { - d = this.inputs[g]; - var h = this.graph.links[d.link]; - this.onConnectionsChange(e.INPUT, g, !0, h, d); + for (var e = 0; e < this.inputs.length; ++e) { + c = this.inputs[e]; + var l = this.graph.links[c.link]; + this.onConnectionsChange(h.INPUT, e, !0, l, c); } } if (this.outputs) { - for (g = 0; g < this.outputs.length; ++g) { - if (d = this.outputs[g], d.links) { - for (b = 0; b < d.links.length; ++b) { - h = this.graph.links[d.links[b]], this.onConnectionsChange(e.OUTPUT, g, !0, h, d); + for (e = 0; e < this.outputs.length; ++e) { + if (c = this.outputs[e], c.links) { + for (b = 0; b < c.links.length; ++b) { + l = this.graph.links[c.links[b]], this.onConnectionsChange(h.OUTPUT, e, !0, l, c); } } } } } - for (g in this.inputs) { - d = this.inputs[g], d.link && d.link.length && (h = d.link, "object" == typeof h && (d.link = h[0], this.graph.links[h[0]] = {id:h[0], origin_id:h[1], origin_slot:h[2], target_id:h[3], target_slot:h[4]})); + for (e in this.inputs) { + c = this.inputs[e], c.link && c.link.length && (l = c.link, "object" == typeof l && (c.link = l[0], this.graph.links[l[0]] = {id:l[0], origin_id:l[1], origin_slot:l[2], target_id:l[3], target_slot:l[4]})); } - for (g in this.outputs) { - if (d = this.outputs[g], d.links && 0 != d.links.length) { - for (b in d.links) { - h = d.links[b], "object" == typeof h && (d.links[b] = h[0]); + for (e in this.outputs) { + if (c = this.outputs[e], c.links && 0 != c.links.length) { + for (b in c.links) { + l = c.links[b], "object" == typeof l && (c.links[b] = l[0]); } } } @@ -958,14 +954,17 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onConfigure(a); } }; - k.prototype.serialize = function() { + g.prototype.serialize = function() { + var a = {id:this.id, type:this.type, pos:this.pos, size:this.size, data:this.data, flags:h.cloneObject(this.flags), mode:this.mode}; + this.inputs && (a.inputs = this.inputs); if (this.outputs) { - for (var a = 0; a < this.outputs.length; a++) { - delete this.outputs[a]._data; + for (var b = 0; b < this.outputs.length; b++) { + delete this.outputs[b]._data; } + a.outputs = this.outputs; } - a = {id:this.id, title:this.title, type:this.type, pos:this.pos, size:this.size, data:this.data, flags:e.cloneObject(this.flags), inputs:this.inputs, outputs:this.outputs, mode:this.mode}; - this.properties && (a.properties = e.cloneObject(this.properties)); + this.title && this.title != this.constructor.title && (a.title = this.title); + this.properties && (a.properties = h.cloneObject(this.properties)); a.type || (a.type = this.constructor.type); this.color && (a.color = this.color); this.bgcolor && (a.bgcolor = this.bgcolor); @@ -976,39 +975,39 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return a; }; - k.prototype.clone = function() { - var a = e.createNode(this.type), b = e.cloneObject(this.serialize()); + g.prototype.clone = function() { + var a = h.createNode(this.type), b = h.cloneObject(this.serialize()); if (b.inputs) { - for (var d = 0; d < b.inputs.length; ++d) { - b.inputs[d].link = null; + for (var c = 0; c < b.inputs.length; ++c) { + b.inputs[c].link = null; } } if (b.outputs) { - for (d = 0; d < b.outputs.length; ++d) { - b.outputs[d].links && (b.outputs[d].links.length = 0); + for (c = 0; c < b.outputs.length; ++c) { + b.outputs[c].links && (b.outputs[c].links.length = 0); } } delete b.id; a.configure(b); return a; }; - k.prototype.toString = function() { + g.prototype.toString = function() { return JSON.stringify(this.serialize()); }; - k.prototype.getTitle = function() { + g.prototype.getTitle = function() { return this.title || this.constructor.title; }; - k.prototype.setOutputData = function(a, b) { + g.prototype.setOutputData = function(a, b) { if (this.outputs && !(-1 == a || a >= this.outputs.length)) { - var d = this.outputs[a]; - if (d && (d._data = b, this.outputs[a].links)) { - for (d = 0; d < this.outputs[a].links.length; d++) { - this.graph.links[this.outputs[a].links[d]].data = b; + var c = this.outputs[a]; + if (c && (c._data = b, this.outputs[a].links)) { + for (c = 0; c < this.outputs[a].links.length; c++) { + this.graph.links[this.outputs[a].links[c]].data = b; } } } }; - k.prototype.getInputData = function(a, b) { + g.prototype.getInputData = function(a, b) { if (this.inputs && !(a >= this.inputs.length || null == this.inputs[a].link)) { a = this.graph.links[this.inputs[a].link]; if (!a) { @@ -1031,29 +1030,55 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return a.data; } }; - k.prototype.isInputConnected = function(a) { + g.prototype.getInputDataByName = function(a, b) { + a = this.findInputSlot(a); + return -1 == a ? null : this.getInputData(a, b); + }; + g.prototype.isInputConnected = function(a) { return this.inputs ? a < this.inputs.length && null != this.inputs[a].link : !1; }; - k.prototype.getInputInfo = function(a) { + g.prototype.getInputInfo = function(a) { return this.inputs ? a < this.inputs.length ? this.inputs[a] : null : null; }; - k.prototype.getInputNode = function(a) { + g.prototype.getInputNode = function(a) { if (!this.inputs || a >= this.inputs.length) { return null; } a = this.inputs[a]; return a && a.link ? (a = this.graph.links[a.link]) ? this.graph.getNodeById(a.origin_id) : null : null; }; - k.prototype.getOutputData = function(a) { + g.prototype.getInputOrProperty = function(a) { + if (!this.inputs || !this.inputs.length) { + return this.properties ? this.properties[a] : null; + } + for (var b = 0, c = this.inputs.length; b < c; ++b) { + if (a == this.inputs[b].name) { + return (a = this.graph.links[this.inputs[b].link]) ? a.data : null; + } + } + return this.properties[a]; + }; + g.prototype.getOutputData = function(a) { return !this.outputs || a >= this.outputs.length ? null : this.outputs[a]._data; }; - k.prototype.getOutputInfo = function(a) { + g.prototype.getOutputInfo = function(a) { return this.outputs ? a < this.outputs.length ? this.outputs[a] : null : null; }; - k.prototype.isOutputConnected = function(a) { - return this.outputs ? a < this.outputs.length && this.outputs[a].links && this.outputs[a].links.length : null; + g.prototype.isOutputConnected = function(a) { + return this.outputs ? a < this.outputs.length && this.outputs[a].links && this.outputs[a].links.length : !1; }; - k.prototype.getOutputNodes = function(a) { + g.prototype.isAnyOutputConnected = function() { + if (!this.outputs) { + return !1; + } + for (var a = 0; a < this.outputs.length; ++a) { + if (this.outputs[a].links && this.outputs[a].links.length) { + return !0; + } + } + return !1; + }; + g.prototype.getOutputNodes = function(a) { if (!this.outputs || 0 == this.outputs.length || a >= this.outputs.length) { return null; } @@ -1061,34 +1086,34 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (!a.links || 0 == a.links.length) { return null; } - for (var b = [], d = 0; d < a.links.length; d++) { - var g = this.graph.links[a.links[d]]; - g && (g = this.graph.getNodeById(g.target_id)) && b.push(g); + for (var b = [], c = 0; c < a.links.length; c++) { + var e = this.graph.links[a.links[c]]; + e && (e = this.graph.getNodeById(e.target_id)) && b.push(e); } return b; }; - k.prototype.trigger = function(a, b) { + g.prototype.trigger = function(a, b) { if (this.outputs && this.outputs.length) { - this.graph && (this.graph._last_trigger_time = e.getTime()); - for (var d = 0; d < this.outputs.length; ++d) { - var g = this.outputs[d]; - !g || g.type !== e.EVENT || a && g.name != a || this.triggerSlot(d, b); + this.graph && (this.graph._last_trigger_time = h.getTime()); + for (var c = 0; c < this.outputs.length; ++c) { + var e = this.outputs[c]; + !e || e.type !== h.EVENT || a && e.name != a || this.triggerSlot(c, b); } } }; - k.prototype.triggerSlot = function(a, b) { + g.prototype.triggerSlot = function(a, b) { if (this.outputs && (a = this.outputs[a]) && (a = a.links) && a.length) { - this.graph && (this.graph._last_trigger_time = e.getTime()); - for (var d = 0; d < a.length; ++d) { - var g = this.graph.links[a[d]]; - if (g) { - var h = this.graph.getNodeById(g.target_id); - if (h) { - if (g._last_time = e.getTime(), g = h.inputs[g.target_slot], h.onAction) { - h.onAction(g.name, b); + this.graph && (this.graph._last_trigger_time = h.getTime()); + for (var c = 0; c < a.length; ++c) { + var e = this.graph.links[a[c]]; + if (e) { + var l = this.graph.getNodeById(e.target_id); + if (l) { + if (e._last_time = h.getTime(), e = l.inputs[e.target_slot], l.onAction) { + l.onAction(e.name, b); } else { - if (h.mode === e.ON_TRIGGER && h.onExecute) { - h.onExecute(b); + if (l.mode === h.ON_TRIGGER && l.onExecute) { + l.onExecute(b); } } } @@ -1096,24 +1121,24 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - k.prototype.addProperty = function(a, b, d, g) { - d = {name:a, type:d, default_value:b}; - if (g) { - for (var e in g) { - d[e] = g[e]; + g.prototype.addProperty = function(a, b, c, e) { + c = {name:a, type:c, default_value:b}; + if (e) { + for (var n in e) { + c[n] = e[n]; } } this.properties_info || (this.properties_info = []); - this.properties_info.push(d); + this.properties_info.push(c); this.properties || (this.properties = {}); this.properties[a] = b; - return d; + return c; }; - k.prototype.addOutput = function(a, b, d) { + g.prototype.addOutput = function(a, b, c) { a = {name:a, type:b, links:null}; - if (d) { - for (var e in d) { - a[e] = d[e]; + if (c) { + for (var e in c) { + a[e] = c[e]; } } this.outputs || (this.outputs = []); @@ -1124,12 +1149,12 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.size = this.computeSize(); return a; }; - k.prototype.addOutputs = function(a) { + g.prototype.addOutputs = function(a) { for (var b = 0; b < a.length; ++b) { - var d = a[b], e = {name:d[0], type:d[1], link:null}; + var c = a[b], e = {name:c[0], type:c[1], link:null}; if (a[2]) { - for (var h in d[2]) { - e[h] = d[2][h]; + for (var l in c[2]) { + e[l] = c[2][l]; } } this.outputs || (this.outputs = []); @@ -1140,7 +1165,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.size = this.computeSize(); }; - k.prototype.removeOutput = function(a) { + g.prototype.removeOutput = function(a) { this.disconnectOutput(a); this.outputs.splice(a, 1); this.size = this.computeSize(); @@ -1148,11 +1173,11 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onOutputRemoved(a); } }; - k.prototype.addInput = function(a, b, d) { + g.prototype.addInput = function(a, b, c) { a = {name:a, type:b || 0, link:null}; - if (d) { - for (var e in d) { - a[e] = d[e]; + if (c) { + for (var e in c) { + a[e] = c[e]; } } this.inputs || (this.inputs = []); @@ -1163,12 +1188,12 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return a; }; - k.prototype.addInputs = function(a) { + g.prototype.addInputs = function(a) { for (var b = 0; b < a.length; ++b) { - var d = a[b], e = {name:d[0], type:d[1], link:null}; + var c = a[b], e = {name:c[0], type:c[1], link:null}; if (a[2]) { - for (var h in d[2]) { - e[h] = d[2][h]; + for (var l in c[2]) { + e[l] = c[2][l]; } } this.inputs || (this.inputs = []); @@ -1179,7 +1204,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.size = this.computeSize(); }; - k.prototype.removeInput = function(a) { + g.prototype.removeInput = function(a) { this.disconnectInput(a); this.inputs.splice(a, 1); this.size = this.computeSize(); @@ -1187,105 +1212,105 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onInputRemoved(a); } }; - k.prototype.addConnection = function(a, b, d, e) { - a = {name:a, type:b, pos:d, direction:e, links:null}; + g.prototype.addConnection = function(a, b, c, e) { + a = {name:a, type:b, pos:c, direction:e, links:null}; this.connections.push(a); return a; }; - k.prototype.computeSize = function(a, b) { + g.prototype.computeSize = function(a, b) { a = Math.max(this.inputs ? this.inputs.length : 1, this.outputs ? this.outputs.length : 1); b = b || new Float32Array([0, 0]); a = Math.max(a, 1); b[1] = 14 * a + 6; a = (a = this.title) ? 8.4 * a.length : 0; - var d = 0, g = 0; + var c = 0, e = 0; if (this.inputs) { - for (var h = 0, c = this.inputs.length; h < c; ++h) { - var n = this.inputs[h]; - n = (n = n.label || n.name || "") ? 8.4 * n.length : 0; - d < n && (d = n); + for (var l = 0, d = this.inputs.length; l < d; ++l) { + var k = this.inputs[l]; + k = (k = k.label || k.name || "") ? 8.4 * k.length : 0; + c < k && (c = k); } } if (this.outputs) { - for (h = 0, c = this.outputs.length; h < c; ++h) { - n = this.outputs[h], n = (n = n.label || n.name || "") ? 8.4 * n.length : 0, g < n && (g = n); + for (l = 0, d = this.outputs.length; l < d; ++l) { + k = this.outputs[l], k = (k = k.label || k.name || "") ? 8.4 * k.length : 0, e < k && (e = k); } } - b[0] = Math.max(d + g + 10, a); - b[0] = Math.max(b[0], e.NODE_WIDTH); + b[0] = Math.max(c + e + 10, a); + b[0] = Math.max(b[0], h.NODE_WIDTH); return b; }; - k.prototype.getBounding = function(a) { + g.prototype.getBounding = function(a) { a = a || new Float32Array(4); a[0] = this.pos[0] - 4; - a[1] = this.pos[1] - e.NODE_TITLE_HEIGHT; + a[1] = this.pos[1] - h.NODE_TITLE_HEIGHT; a[2] = this.size[0] + 4; - a[3] = this.size[1] + e.NODE_TITLE_HEIGHT; + a[3] = this.size[1] + h.NODE_TITLE_HEIGHT; return a; }; - k.prototype.isPointInsideNode = function(a, b, d) { - d = d || 0; - var g = this.graph && this.graph.isLive() ? 0 : 20; + g.prototype.isPointInsideNode = function(a, b, c) { + c = c || 0; + var e = this.graph && this.graph.isLive() ? 0 : 20; if (this.flags.collapsed) { - if (t(a, b, this.pos[0] - d, this.pos[1] - e.NODE_TITLE_HEIGHT - d, e.NODE_COLLAPSED_WIDTH + 2 * d, e.NODE_TITLE_HEIGHT + 2 * d)) { + if (r(a, b, this.pos[0] - c, this.pos[1] - h.NODE_TITLE_HEIGHT - c, h.NODE_COLLAPSED_WIDTH + 2 * c, h.NODE_TITLE_HEIGHT + 2 * c)) { return !0; } } else { - if (this.pos[0] - 4 - d < a && this.pos[0] + this.size[0] + 4 + d > a && this.pos[1] - g - d < b && this.pos[1] + this.size[1] + d > b) { + if (this.pos[0] - 4 - c < a && this.pos[0] + this.size[0] + 4 + c > a && this.pos[1] - e - c < b && this.pos[1] + this.size[1] + c > b) { return !0; } } return !1; }; - k.prototype.getSlotInPosition = function(a, b) { + g.prototype.getSlotInPosition = function(a, b) { if (this.inputs) { - for (var d = 0, e = this.inputs.length; d < e; ++d) { - var h = this.inputs[d], c = this.getConnectionPos(!0, d); - if (t(a, b, c[0] - 10, c[1] - 5, 20, 10)) { - return {input:h, slot:d, link_pos:c, locked:h.locked}; + for (var c = 0, e = this.inputs.length; c < e; ++c) { + var l = this.inputs[c], d = this.getConnectionPos(!0, c); + if (r(a, b, d[0] - 10, d[1] - 5, 20, 10)) { + return {input:l, slot:c, link_pos:d, locked:l.locked}; } } } if (this.outputs) { - for (d = 0, e = this.outputs.length; d < e; ++d) { - if (h = this.outputs[d], c = this.getConnectionPos(!1, d), t(a, b, c[0] - 10, c[1] - 5, 20, 10)) { - return {output:h, slot:d, link_pos:c, locked:h.locked}; + for (c = 0, e = this.outputs.length; c < e; ++c) { + if (l = this.outputs[c], d = this.getConnectionPos(!1, c), r(a, b, d[0] - 10, d[1] - 5, 20, 10)) { + return {output:l, slot:c, link_pos:d, locked:l.locked}; } } } return null; }; - k.prototype.findInputSlot = function(a) { + g.prototype.findInputSlot = function(a) { if (!this.inputs) { return -1; } - for (var b = 0, d = this.inputs.length; b < d; ++b) { + for (var b = 0, c = this.inputs.length; b < c; ++b) { if (a == this.inputs[b].name) { return b; } } return -1; }; - k.prototype.findOutputSlot = function(a) { + g.prototype.findOutputSlot = function(a) { if (!this.outputs) { return -1; } - for (var b = 0, d = this.outputs.length; b < d; ++b) { + for (var b = 0, c = this.outputs.length; b < c; ++b) { if (a == this.outputs[b].name) { return b; } } return -1; }; - k.prototype.connect = function(a, b, d) { - d = d || 0; + g.prototype.connect = function(a, b, c) { + c = c || 0; if (a.constructor === String) { if (a = this.findOutputSlot(a), -1 == a) { - return e.debug && console.log("Connect: Error, no slot of name " + a), !1; + return h.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.outputs || a >= this.outputs.length) { - return e.debug && console.log("Connect: Error, slot number not found"), !1; + return h.debug && console.log("Connect: Error, slot number not found"), !1; } } b && b.constructor === Number && (b = this.graph.getNodeById(b)); @@ -1295,55 +1320,55 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (b == this) { return !1; } - if (d.constructor === String) { - if (d = b.findInputSlot(d), -1 == d) { - return e.debug && console.log("Connect: Error, no slot of name " + d), !1; + if (c.constructor === String) { + if (c = b.findInputSlot(c), -1 == c) { + return h.debug && console.log("Connect: Error, no slot of name " + c), !1; } } else { - if (d === e.EVENT) { + if (c === h.EVENT) { return !1; } - if (!b.inputs || d >= b.inputs.length) { - return e.debug && console.log("Connect: Error, slot number not found"), !1; + if (!b.inputs || c >= b.inputs.length) { + return h.debug && console.log("Connect: Error, slot number not found"), !1; } } - null != b.inputs[d].link && b.disconnectInput(d); + null != b.inputs[c].link && b.disconnectInput(c); this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); - var g = this.outputs[a]; - if (b.onConnectInput && !1 === b.onConnectInput(d, g.type, g)) { + var e = this.outputs[a]; + if (b.onConnectInput && !1 === b.onConnectInput(c, e.type, e)) { return !1; } - var h = b.inputs[d]; - if (e.isValidConnection(g.type, h.type)) { - var c = {id:this.graph.last_link_id++, type:h.type, origin_id:this.id, origin_slot:a, target_id:b.id, target_slot:d}; - this.graph.links[c.id] = c; - null == g.links && (g.links = []); - g.links.push(c.id); - b.inputs[d].link = c.id; + var l = b.inputs[c]; + if (h.isValidConnection(e.type, l.type)) { + var d = {id:this.graph.last_link_id++, type:l.type, origin_id:this.id, origin_slot:a, target_id:b.id, target_slot:c}; + this.graph.links[d.id] = d; + null == e.links && (e.links = []); + e.links.push(d.id); + b.inputs[c].link = d.id; if (this.onConnectionsChange) { - this.onConnectionsChange(e.OUTPUT, a, !0, c, g); + this.onConnectionsChange(h.OUTPUT, a, !0, d, e); } if (b.onConnectionsChange) { - b.onConnectionsChange(e.INPUT, d, !0, c, h); + b.onConnectionsChange(h.INPUT, c, !0, d, l); } } this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); return !0; }; - k.prototype.disconnectOutput = function(a, b) { + g.prototype.disconnectOutput = function(a, b) { if (a.constructor === String) { if (a = this.findOutputSlot(a), -1 == a) { - return e.debug && console.log("Connect: Error, no slot of name " + a), !1; + return h.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.outputs || a >= this.outputs.length) { - return e.debug && console.log("Connect: Error, slot number not found"), !1; + return h.debug && console.log("Connect: Error, slot number not found"), !1; } } - var d = this.outputs[a]; - if (!d.links || 0 == d.links.length) { + var c = this.outputs[a]; + if (!c.links || 0 == c.links.length) { return !1; } if (b) { @@ -1351,138 +1376,138 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (!b) { throw "Target Node not found"; } - for (var g = 0, h = d.links.length; g < h; g++) { - var c = d.links[g], n = this.graph.links[c]; - if (n.target_id == b.id) { - d.links.splice(g, 1); - var l = b.inputs[n.target_slot]; - l.link = null; - delete this.graph.links[c]; + for (var e = 0, l = c.links.length; e < l; e++) { + var d = c.links[e], k = this.graph.links[d]; + if (k.target_id == b.id) { + c.links.splice(e, 1); + var f = b.inputs[k.target_slot]; + f.link = null; + delete this.graph.links[d]; if (b.onConnectionsChange) { - b.onConnectionsChange(e.INPUT, n.target_slot, !1, n, l); + b.onConnectionsChange(h.INPUT, k.target_slot, !1, k, f); } if (this.onConnectionsChange) { - this.onConnectionsChange(e.OUTPUT, a, !1, n, d); + this.onConnectionsChange(h.OUTPUT, a, !1, k, c); } break; } } } else { - g = 0; - for (h = d.links.length; g < h; g++) { - if (c = d.links[g], n = this.graph.links[c]) { - if (b = this.graph.getNodeById(n.target_id)) { - if (l = b.inputs[n.target_slot], l.link = null, b.onConnectionsChange) { - b.onConnectionsChange(e.INPUT, n.target_slot, !1, n, l); + e = 0; + for (l = c.links.length; e < l; e++) { + if (d = c.links[e], k = this.graph.links[d]) { + if (b = this.graph.getNodeById(k.target_id)) { + if (f = b.inputs[k.target_slot], f.link = null, b.onConnectionsChange) { + b.onConnectionsChange(h.INPUT, k.target_slot, !1, k, f); } } - delete this.graph.links[c]; + delete this.graph.links[d]; if (this.onConnectionsChange) { - this.onConnectionsChange(e.OUTPUT, a, !1, n, d); + this.onConnectionsChange(h.OUTPUT, a, !1, k, c); } } } - d.links = null; + c.links = null; } this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); return !0; }; - k.prototype.disconnectInput = function(a) { + g.prototype.disconnectInput = function(a) { if (a.constructor === String) { if (a = this.findInputSlot(a), -1 == a) { - return e.debug && console.log("Connect: Error, no slot of name " + a), !1; + return h.debug && console.log("Connect: Error, no slot of name " + a), !1; } } else { if (!this.inputs || a >= this.inputs.length) { - return e.debug && console.log("Connect: Error, slot number not found"), !1; + return h.debug && console.log("Connect: Error, slot number not found"), !1; } } var b = this.inputs[a]; if (!b) { return !1; } - var d = this.inputs[a].link; + var c = this.inputs[a].link; this.inputs[a].link = null; - var g = this.graph.links[d]; - if (g) { - var h = this.graph.getNodeById(g.origin_id); - if (!h) { + var e = this.graph.links[c]; + if (e) { + var l = this.graph.getNodeById(e.origin_id); + if (!l) { return !1; } - var c = h.outputs[g.origin_slot]; - if (!c || !c.links || 0 == c.links.length) { + var d = l.outputs[e.origin_slot]; + if (!d || !d.links || 0 == d.links.length) { return !1; } - for (var n = 0, l = c.links.length; n < l; n++) { - if (c.links[n] == d) { - c.links.splice(n, 1); + for (var k = 0, f = d.links.length; k < f; k++) { + if (d.links[k] == c) { + d.links.splice(k, 1); break; } } - delete this.graph.links[d]; + delete this.graph.links[c]; if (this.onConnectionsChange) { - this.onConnectionsChange(e.INPUT, a, !1, g, b); + this.onConnectionsChange(h.INPUT, a, !1, e, b); } - if (h.onConnectionsChange) { - h.onConnectionsChange(e.OUTPUT, n, !1, g, c); + if (l.onConnectionsChange) { + l.onConnectionsChange(h.OUTPUT, k, !1, e, d); } } this.setDirtyCanvas(!1, !0); this.graph.connectionChange(this); return !0; }; - k.prototype.getConnectionPos = function(a, b) { - return this.flags.collapsed ? a ? [this.pos[0], this.pos[1] - 0.5 * e.NODE_TITLE_HEIGHT] : [this.pos[0] + e.NODE_COLLAPSED_WIDTH, this.pos[1] - 0.5 * e.NODE_TITLE_HEIGHT] : a && -1 == b ? [this.pos[0] + 10, this.pos[1] + 10] : a && this.inputs.length > b && this.inputs[b].pos ? [this.pos[0] + this.inputs[b].pos[0], this.pos[1] + this.inputs[b].pos[1]] : !a && this.outputs.length > b && this.outputs[b].pos ? [this.pos[0] + this.outputs[b].pos[0], this.pos[1] + this.outputs[b].pos[1]] : a ? [this.pos[0], - this.pos[1] + 10 + b * e.NODE_SLOT_HEIGHT] : [this.pos[0] + this.size[0] + 1, this.pos[1] + 10 + b * e.NODE_SLOT_HEIGHT]; + g.prototype.getConnectionPos = function(a, b) { + return this.flags.collapsed ? a ? [this.pos[0], this.pos[1] - 0.5 * h.NODE_TITLE_HEIGHT] : [this.pos[0] + h.NODE_COLLAPSED_WIDTH, this.pos[1] - 0.5 * h.NODE_TITLE_HEIGHT] : a && -1 == b ? [this.pos[0] + 10, this.pos[1] + 10] : a && this.inputs.length > b && this.inputs[b].pos ? [this.pos[0] + this.inputs[b].pos[0], this.pos[1] + this.inputs[b].pos[1]] : !a && this.outputs.length > b && this.outputs[b].pos ? [this.pos[0] + this.outputs[b].pos[0], this.pos[1] + this.outputs[b].pos[1]] : a ? [this.pos[0], + this.pos[1] + 10 + b * h.NODE_SLOT_HEIGHT] : [this.pos[0] + this.size[0] + 1, this.pos[1] + 10 + b * h.NODE_SLOT_HEIGHT]; }; - k.prototype.alignToGrid = function() { - this.pos[0] = e.CANVAS_GRID_SIZE * Math.round(this.pos[0] / e.CANVAS_GRID_SIZE); - this.pos[1] = e.CANVAS_GRID_SIZE * Math.round(this.pos[1] / e.CANVAS_GRID_SIZE); + g.prototype.alignToGrid = function() { + this.pos[0] = h.CANVAS_GRID_SIZE * Math.round(this.pos[0] / h.CANVAS_GRID_SIZE); + this.pos[1] = h.CANVAS_GRID_SIZE * Math.round(this.pos[1] / h.CANVAS_GRID_SIZE); }; - k.prototype.trace = function(a) { + g.prototype.trace = function(a) { this.console || (this.console = []); this.console.push(a); - this.console.length > k.MAX_CONSOLE && this.console.shift(); + this.console.length > g.MAX_CONSOLE && this.console.shift(); this.graph.onNodeTrace(this, a); }; - k.prototype.setDirtyCanvas = function(a, b) { + g.prototype.setDirtyCanvas = function(a, b) { this.graph && this.graph.sendActionToCanvas("setDirty", [a, b]); }; - k.prototype.loadImage = function(a) { + g.prototype.loadImage = function(a) { var b = new Image; - b.src = e.node_images_path + a; + b.src = h.node_images_path + a; b.ready = !1; - var d = this; + var c = this; b.onload = function() { this.ready = !0; - d.setDirtyCanvas(!0); + c.setDirtyCanvas(!0); }; return b; }; - k.prototype.captureInput = function(a) { + g.prototype.captureInput = function(a) { if (this.graph && this.graph.list_of_graphcanvas) { - for (var b = this.graph.list_of_graphcanvas, d = 0; d < b.length; ++d) { - var e = b[d]; + for (var b = this.graph.list_of_graphcanvas, c = 0; c < b.length; ++c) { + var e = b[c]; if (a || e.node_capturing_input == this) { e.node_capturing_input = a ? this : null; } } } }; - k.prototype.collapse = function() { + g.prototype.collapse = function() { this.flags.collapsed = this.flags.collapsed ? !1 : !0; this.setDirtyCanvas(!0, !0); }; - k.prototype.pin = function(a) { + g.prototype.pin = function(a) { this.flags.pinned = void 0 === a ? !this.flags.pinned : a; }; - k.prototype.localToScreen = function(a, b, d) { - return [(a + this.pos[0]) * d.scale + d.offset[0], (b + this.pos[1]) * d.scale + d.offset[1]]; + g.prototype.localToScreen = function(a, b, c) { + return [(a + this.pos[0]) * c.scale + c.offset[0], (b + this.pos[1]) * c.scale + c.offset[1]]; }; - u.LGraphCanvas = e.LGraphCanvas = c; - c.link_type_colors = {"-1":"#F85", number:"#AAC", node:"#DCA"}; - c.prototype.clear = function() { + t.LGraphCanvas = h.LGraphCanvas = d; + d.link_type_colors = {"-1":"#F85", number:"#AAC", node:"#DCA"}; + d.prototype.clear = function() { this.fps = this.render_time = this.last_draw_time = this.frame = 0; this.scale = 1; this.offset = [0, 0]; @@ -1499,10 +1524,10 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.onClear(); } }; - c.prototype.setGraph = function(a, b) { + d.prototype.setGraph = function(a, b) { this.graph != a && (b || this.clear(), !a && this.graph ? this.graph.detachCanvas(this) : (a.attachCanvas(this), this.setDirty(!0, !0))); }; - c.prototype.openSubgraph = function(a) { + d.prototype.openSubgraph = function(a) { if (!a) { throw "graph cannot be null"; } @@ -1514,7 +1539,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { a.attachCanvas(this); this.setDirty(!0, !0); }; - c.prototype.closeSubgraph = function() { + d.prototype.closeSubgraph = function() { if (this._graph_stack && 0 != this._graph_stack.length) { var a = this._graph_stack.pop(); this.selected_nodes = {}; @@ -1523,7 +1548,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.setDirty(!0, !0); } }; - c.prototype.setCanvas = function(a, b) { + d.prototype.setCanvas = function(a, b) { if (a && a.constructor === String && (a = document.getElementById(a), !a)) { throw "Error creating LiteGraph canvas: Canvas not found"; } @@ -1544,15 +1569,15 @@ $jscomp.polyfill("Array.prototype.values", function(u) { b || this.bindEvents(); } }; - c.prototype._doNothing = function(a) { + d.prototype._doNothing = function(a) { a.preventDefault(); return !1; }; - c.prototype._doReturnTrue = function(a) { + d.prototype._doReturnTrue = function(a) { a.preventDefault(); return !0; }; - c.prototype.bindEvents = function() { + d.prototype.bindEvents = function() { if (this._events_binded) { console.warn("LGraphCanvas: events already binded"); } else { @@ -1579,7 +1604,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._events_binded = !0; } }; - c.prototype.unbindEvents = function() { + d.prototype.unbindEvents = function() { if (this._events_binded) { var a = this.getCanvasWindow().document; this.canvas.removeEventListener("mousedown", this._mousedown_callback); @@ -1600,30 +1625,30 @@ $jscomp.polyfill("Array.prototype.values", function(u) { console.warn("LGraphCanvas: no events binded"); } }; - c.getFileExtension = function(a) { + d.getFileExtension = function(a) { var b = a.indexOf("?"); -1 != b && (a = a.substr(0, b)); b = a.lastIndexOf("."); return -1 == b ? "" : a.substr(b + 1).toLowerCase(); }; - c.prototype.enableWebGL = function() { + d.prototype.enableWebGL = function() { this.gl = this.ctx = enableWebGLCanvas(this.canvas); this.ctx.webgl = !0; this.bgcanvas = this.canvas; this.bgctx = this.gl; }; - c.prototype.setDirty = function(a, b) { + d.prototype.setDirty = function(a, b) { a && (this.dirty_canvas = !0); b && (this.dirty_bgcanvas = !0); }; - c.prototype.getCanvasWindow = function() { + d.prototype.getCanvasWindow = function() { if (!this.canvas) { return window; } var a = this.canvas.ownerDocument; return a.defaultView || a.parentWindow; }; - c.prototype.startRendering = function() { + d.prototype.startRendering = function() { function a() { this.pause_rendering || this.draw(); var b = this.getCanvasWindow(); @@ -1631,69 +1656,69 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.is_rendering || (this.is_rendering = !0, a.call(this)); }; - c.prototype.stopRendering = function() { + d.prototype.stopRendering = function() { this.is_rendering = !1; }; - c.prototype.processMouseDown = function(a) { + d.prototype.processMouseDown = function(a) { if (this.graph) { this.adjustMouseEvent(a); var b = this.getCanvasWindow(); - c.active_canvas = this; + d.active_canvas = this; this.canvas.removeEventListener("mousemove", this._mousemove_callback); b.document.addEventListener("mousemove", this._mousemove_callback, !0); b.document.addEventListener("mouseup", this._mouseup_callback, !0); - var d = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes), g = !1; - e.closeAllContextMenus(b); + var c = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes), e = !1; + h.closeAllContextMenus(b); if (1 == a.which) { - a.ctrlKey && (this.dragging_rectangle = new Float32Array(4), this.dragging_rectangle[0] = a.canvasX, this.dragging_rectangle[1] = a.canvasY, this.dragging_rectangle[2] = 1, this.dragging_rectangle[3] = 1, g = !0); - var h = !1; - if (d && this.allow_interaction && !g) { - this.live_mode || d.flags.pinned || this.bringToFront(d); - if (!this.connecting_node && !d.flags.collapsed && !this.live_mode) { - if (d.outputs) { - for (var l = 0, n = d.outputs.length; l < n; ++l) { - var f = d.outputs[l], q = d.getConnectionPos(!1, l); - if (t(a.canvasX, a.canvasY, q[0] - 10, q[1] - 5, 20, 10)) { - this.connecting_node = d; - this.connecting_output = f; - this.connecting_pos = d.getConnectionPos(!1, l); - this.connecting_slot = l; - g = !0; + a.ctrlKey && (this.dragging_rectangle = new Float32Array(4), this.dragging_rectangle[0] = a.canvasX, this.dragging_rectangle[1] = a.canvasY, this.dragging_rectangle[2] = 1, this.dragging_rectangle[3] = 1, e = !0); + var l = !1; + if (c && this.allow_interaction && !e) { + this.live_mode || c.flags.pinned || this.bringToFront(c); + if (!this.connecting_node && !c.flags.collapsed && !this.live_mode) { + if (c.outputs) { + for (var f = 0, k = c.outputs.length; f < k; ++f) { + var p = c.outputs[f], m = c.getConnectionPos(!1, f); + if (r(a.canvasX, a.canvasY, m[0] - 10, m[1] - 5, 20, 10)) { + this.connecting_node = c; + this.connecting_output = p; + this.connecting_pos = c.getConnectionPos(!1, f); + this.connecting_slot = f; + e = !0; break; } } } - if (d.inputs) { - for (l = 0, n = d.inputs.length; l < n; ++l) { - f = d.inputs[l], q = d.getConnectionPos(!0, l), t(a.canvasX, a.canvasY, q[0] - 10, q[1] - 5, 20, 10) && null !== f.link && (d.disconnectInput(l), g = this.dirty_bgcanvas = !0); + if (c.inputs) { + for (f = 0, k = c.inputs.length; f < k; ++f) { + p = c.inputs[f], m = c.getConnectionPos(!0, f), r(a.canvasX, a.canvasY, m[0] - 10, m[1] - 5, 20, 10) && null !== p.link && (c.disconnectInput(f), e = this.dirty_bgcanvas = !0); } } - !g && t(a.canvasX, a.canvasY, d.pos[0] + d.size[0] - 5, d.pos[1] + d.size[1] - 5, 5, 5) && (this.resizing_node = d, this.canvas.style.cursor = "se-resize", g = !0); + !e && r(a.canvasX, a.canvasY, c.pos[0] + c.size[0] - 5, c.pos[1] + c.size[1] - 5, 5, 5) && (this.resizing_node = c, this.canvas.style.cursor = "se-resize", e = !0); } - !g && t(a.canvasX, a.canvasY, d.pos[0], d.pos[1] - e.NODE_TITLE_HEIGHT, e.NODE_TITLE_HEIGHT, e.NODE_TITLE_HEIGHT) && (d.collapse(), g = !0); - if (!g) { - l = !1; - if (300 > e.getTime() - this.last_mouseclick && this.selected_nodes[d.id]) { - if (d.onDblClick) { - d.onDblClick(a); + !e && r(a.canvasX, a.canvasY, c.pos[0], c.pos[1] - h.NODE_TITLE_HEIGHT, h.NODE_TITLE_HEIGHT, h.NODE_TITLE_HEIGHT) && (c.collapse(), e = !0); + if (!e) { + f = !1; + if (300 > h.getTime() - this.last_mouseclick && this.selected_nodes[c.id]) { + if (c.onDblClick) { + c.onDblClick(a); } - this.processNodeDblClicked(d); - l = !0; + this.processNodeDblClicked(c); + f = !0; } - d.onMouseDown && d.onMouseDown(a, [a.canvasX - d.pos[0], a.canvasY - d.pos[1]]) ? l = !0 : this.live_mode && (l = h = !0); - l || (this.allow_dragnodes && (this.node_dragged = d), this.selected_nodes[d.id] || this.processNodeSelected(d, a)); + c.onMouseDown && c.onMouseDown(a, [a.canvasX - c.pos[0], a.canvasY - c.pos[1]]) ? f = !0 : this.live_mode && (f = l = !0); + f || (this.allow_dragnodes && (this.node_dragged = c), this.selected_nodes[c.id] || this.processNodeSelected(c, a)); this.dirty_canvas = !0; } } else { - h = !0; + l = !0; } - !g && h && this.allow_dragcanvas && (this.dragging_canvas = !0); + !e && l && this.allow_dragcanvas && (this.dragging_canvas = !0); } else { - 2 != a.which && 3 == a.which && this.processContextMenu(d, a); + 2 != a.which && 3 == a.which && this.processContextMenu(c, a); } this.last_mouse[0] = a.localX; this.last_mouse[1] = a.localY; - this.last_mouseclick = e.getTime(); + this.last_mouseclick = h.getTime(); this.canvas_mouse = [a.canvasX, a.canvasY]; this.graph.change(); (!b.document.activeElement || "input" != b.document.activeElement.nodeName.toLowerCase() && "textarea" != b.document.activeElement.nodeName.toLowerCase()) && a.preventDefault(); @@ -1704,26 +1729,26 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return !1; } }; - c.prototype.processMouseMove = function(a) { + d.prototype.processMouseMove = function(a) { this.autoresize && this.resize(); if (this.graph) { - c.active_canvas = this; + d.active_canvas = this; this.adjustMouseEvent(a); - var b = [a.localX, a.localY], d = [b[0] - this.last_mouse[0], b[1] - this.last_mouse[1]]; + var b = [a.localX, a.localY], c = [b[0] - this.last_mouse[0], b[1] - this.last_mouse[1]]; this.last_mouse = b; this.canvas_mouse = [a.canvasX, a.canvasY]; if (this.dragging_rectangle) { this.dragging_rectangle[2] = a.canvasX - this.dragging_rectangle[0], this.dragging_rectangle[3] = a.canvasY - this.dragging_rectangle[1], this.dirty_canvas = !0; } else { if (this.dragging_canvas) { - this.offset[0] += d[0] / this.scale, this.offset[1] += d[1] / this.scale, this.dirty_bgcanvas = this.dirty_canvas = !0; + this.offset[0] += c[0] / this.scale, this.offset[1] += c[1] / this.scale, this.dirty_bgcanvas = this.dirty_canvas = !0; } else { if (this.allow_interaction) { this.connecting_node && (this.dirty_canvas = !0); b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); - for (var g = 0, h = this.graph._nodes.length; g < h; ++g) { - if (this.graph._nodes[g].mouseOver && b != this.graph._nodes[g]) { - this.graph._nodes[g].mouseOver = !1; + for (var e = 0, l = this.graph._nodes.length; e < l; ++e) { + if (this.graph._nodes[e].mouseOver && b != this.graph._nodes[e]) { + this.graph._nodes[e].mouseOver = !1; if (this.node_over && this.node_over.onMouseLeave) { this.node_over.onMouseLeave(a); } @@ -1738,11 +1763,11 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (b.onMouseMove) { b.onMouseMove(a); } - if (this.connecting_node && (h = this._highlight_input || [0, 0], !this.isOverNodeBox(b, a.canvasX, a.canvasY))) { - var l = this.isOverNodeInput(b, a.canvasX, a.canvasY, h); - -1 != l && b.inputs[l] ? e.isValidConnection(this.connecting_output.type, b.inputs[l].type) && (this._highlight_input = h) : this._highlight_input = null; + if (this.connecting_node && (l = this._highlight_input || [0, 0], !this.isOverNodeBox(b, a.canvasX, a.canvasY))) { + var f = this.isOverNodeInput(b, a.canvasX, a.canvasY, l); + -1 != f && b.inputs[f] ? h.isValidConnection(this.connecting_output.type, b.inputs[f].type) && (this._highlight_input = l) : this._highlight_input = null; } - t(a.canvasX, a.canvasY, b.pos[0] + b.size[0] - 5, b.pos[1] + b.size[1] - 5, 5, 5) ? this.canvas.style.cursor = "se-resize" : this.canvas.style.cursor = null; + r(a.canvasX, a.canvasY, b.pos[0] + b.size[0] - 5, b.pos[1] + b.size[1] - 5, 5, 5) ? this.canvas.style.cursor = "se-resize" : this.canvas.style.cursor = null; } else { this.canvas.style.cursor = null; } @@ -1750,12 +1775,12 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.node_capturing_input.onMouseMove(a); } if (this.node_dragged && !this.live_mode) { - for (g in this.selected_nodes) { - b = this.selected_nodes[g], b.pos[0] += d[0] / this.scale, b.pos[1] += d[1] / this.scale; + for (e in this.selected_nodes) { + b = this.selected_nodes[e], b.pos[0] += c[0] / this.scale, b.pos[1] += c[1] / this.scale; } this.dirty_bgcanvas = this.dirty_canvas = !0; } - this.resizing_node && !this.live_mode && (this.resizing_node.size[0] += d[0] / this.scale, this.resizing_node.size[1] += d[1] / this.scale, d = Math.max(this.resizing_node.inputs ? this.resizing_node.inputs.length : 0, this.resizing_node.outputs ? this.resizing_node.outputs.length : 0), this.resizing_node.size[1] < d * e.NODE_SLOT_HEIGHT + 4 && (this.resizing_node.size[1] = d * e.NODE_SLOT_HEIGHT + 4), this.resizing_node.size[0] < e.NODE_MIN_WIDTH && (this.resizing_node.size[0] = e.NODE_MIN_WIDTH), + this.resizing_node && !this.live_mode && (this.resizing_node.size[0] += c[0] / this.scale, this.resizing_node.size[1] += c[1] / this.scale, c = Math.max(this.resizing_node.inputs ? this.resizing_node.inputs.length : 0, this.resizing_node.outputs ? this.resizing_node.outputs.length : 0), this.resizing_node.size[1] < c * h.NODE_SLOT_HEIGHT + 4 && (this.resizing_node.size[1] = c * h.NODE_SLOT_HEIGHT + 4), this.resizing_node.size[0] < h.NODE_MIN_WIDTH && (this.resizing_node.size[0] = h.NODE_MIN_WIDTH), this.canvas.style.cursor = "se-resize", this.dirty_bgcanvas = this.dirty_canvas = !0); } } @@ -1764,10 +1789,10 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return !1; } }; - c.prototype.processMouseUp = function(a) { + d.prototype.processMouseUp = function(a) { if (this.graph) { var b = this.getCanvasWindow().document; - c.active_canvas = this; + d.active_canvas = this; b.removeEventListener("mousemove", this._mousemove_callback, !0); this.canvas.addEventListener("mousemove", this._mousemove_callback, !0); b.removeEventListener("mouseup", this._mouseup_callback, !0); @@ -1775,14 +1800,14 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (1 == a.which) { if (this.dragging_rectangle) { if (this.graph) { - var d = this.graph._nodes, g = new Float32Array(4); + var c = this.graph._nodes, e = new Float32Array(4); this.deselectAllNodes(); 0 > this.dragging_rectangle[2] && (this.dragging_rectangle[0] += this.dragging_rectangle[2]); 0 > this.dragging_rectangle[3] && (this.dragging_rectangle[1] += this.dragging_rectangle[3]); this.dragging_rectangle[2] = Math.abs(this.dragging_rectangle[2] * this.scale); this.dragging_rectangle[3] = Math.abs(this.dragging_rectangle[3] * this.scale); - for (var h = 0; h < d.length; ++h) { - b = d[h], b.getBounding(g), v(this.dragging_rectangle, g) && this.selectNode(b, !0); + for (var l = 0; l < c.length; ++l) { + b = c[l], b.getBounding(e), u(this.dragging_rectangle, e) && this.selectNode(b, !0); } } this.dragging_rectangle = null; @@ -1790,7 +1815,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (this.connecting_node) { this.dirty_bgcanvas = this.dirty_canvas = !0; if (b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes)) { - this.connecting_output.type == e.EVENT && this.isOverNodeBox(b, a.canvasX, a.canvasY) ? this.connecting_node.connect(this.connecting_slot, b, e.EVENT) : (d = this.isOverNodeInput(b, a.canvasX, a.canvasY), -1 != d ? this.connecting_node.connect(this.connecting_slot, b, d) : (d = b.getInputInfo(0), this.connecting_output.type == e.EVENT ? this.connecting_node.connect(this.connecting_slot, b, e.EVENT) : d && !d.link && e.isValidConnection(d.type && this.connecting_output.type) && this.connecting_node.connect(this.connecting_slot, + this.connecting_output.type == h.EVENT && this.isOverNodeBox(b, a.canvasX, a.canvasY) ? this.connecting_node.connect(this.connecting_slot, b, h.EVENT) : (c = this.isOverNodeInput(b, a.canvasX, a.canvasY), -1 != c ? this.connecting_node.connect(this.connecting_slot, b, c) : (c = b.getInputInfo(0), this.connecting_output.type == h.EVENT ? this.connecting_node.connect(this.connecting_slot, b, h.EVENT) : c && !c.link && h.isValidConnection(c.type && this.connecting_output.type) && this.connecting_node.connect(this.connecting_slot, b, 0))); } this.connecting_node = this.connecting_pos = this.connecting_output = null; @@ -1803,8 +1828,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.dirty_bgcanvas = this.dirty_canvas = !0, this.node_dragged.pos[0] = Math.round(this.node_dragged.pos[0]), this.node_dragged.pos[1] = Math.round(this.node_dragged.pos[1]), this.graph.config.align_to_grid && this.node_dragged.alignToGrid(), this.node_dragged = null; } else { b = this.graph.getNodeOnPos(a.canvasX, a.canvasY, this.visible_nodes); - d = e.getTime(); - !b && 300 > d - this.last_mouseclick && this.deselectAllNodes(); + c = h.getTime(); + !b && 300 > c - this.last_mouseclick && this.deselectAllNodes(); this.dirty_canvas = !0; this.dragging_canvas = !1; if (this.node_over && this.node_over.onMouseUp) { @@ -1826,34 +1851,34 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return !1; } }; - c.prototype.processMouseWheel = function(a) { + d.prototype.processMouseWheel = function(a) { if (this.graph && this.allow_dragcanvas) { var b = null != a.wheelDeltaY ? a.wheelDeltaY : -60 * a.detail; this.adjustMouseEvent(a); - var d = this.scale; - 0 < b ? d *= 1.1 : 0 > b && (d *= 1 / 1.1); - this.setZoom(d, [a.localX, a.localY]); + var c = this.scale; + 0 < b ? c *= 1.1 : 0 > b && (c *= 1 / 1.1); + this.setZoom(c, [a.localX, a.localY]); this.graph.change(); a.preventDefault(); return !1; } }; - c.prototype.isOverNodeBox = function(a, b, d) { - var g = e.NODE_TITLE_HEIGHT; - return t(b, d, a.pos[0] + 2, a.pos[1] + 2 - g, g - 4, g - 4) ? !0 : !1; + d.prototype.isOverNodeBox = function(a, b, c) { + var e = h.NODE_TITLE_HEIGHT; + return r(b, c, a.pos[0] + 2, a.pos[1] + 2 - e, e - 4, e - 4) ? !0 : !1; }; - c.prototype.isOverNodeInput = function(a, b, d, e) { + d.prototype.isOverNodeInput = function(a, b, c, e) { if (a.inputs) { - for (var g = 0, c = a.inputs.length; g < c; ++g) { - var n = a.getConnectionPos(!0, g); - if (t(b, d, n[0] - 10, n[1] - 5, 20, 10)) { - return e && (e[0] = n[0], e[1] = n[1]), g; + for (var l = 0, d = a.inputs.length; l < d; ++l) { + var k = a.getConnectionPos(!0, l); + if (r(b, c, k[0] - 10, k[1] - 5, 20, 10)) { + return e && (e[0] = k[0], e[1] = k[1]), l; } } } return -1; }; - c.prototype.processKey = function(a) { + d.prototype.processKey = function(a) { if (this.graph) { var b = !1; if ("input" != a.target.localName) { @@ -1866,17 +1891,17 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.deleteSelectedNodes(), b = !0; } if (this.selected_nodes) { - for (var d in this.selected_nodes) { - if (this.selected_nodes[d].onKeyDown) { - this.selected_nodes[d].onKeyDown(a); + for (var c in this.selected_nodes) { + if (this.selected_nodes[c].onKeyDown) { + this.selected_nodes[c].onKeyDown(a); } } } } else { if ("keyup" == a.type && (32 == a.keyCode && (this.dragging_canvas = !1), this.selected_nodes)) { - for (d in this.selected_nodes) { - if (this.selected_nodes[d].onKeyUp) { - this.selected_nodes[d].onKeyUp(a); + for (c in this.selected_nodes) { + if (this.selected_nodes[c].onKeyUp) { + this.selected_nodes[c].onKeyUp(a); } } } @@ -1888,80 +1913,80 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - c.prototype.copyToClipboard = function() { - var a = {nodes:[], links:[]}, b = 0, d = [], e; + d.prototype.copyToClipboard = function() { + var a = {nodes:[], links:[]}, b = 0, c = [], e; for (e in this.selected_nodes) { - var h = this.selected_nodes[e]; - h._relative_id = b; - d.push(h); + var l = this.selected_nodes[e]; + l._relative_id = b; + c.push(l); b += 1; } - for (e = 0; e < d.length; ++e) { - if (h = d[e], a.nodes.push(h.clone().serialize()), h.inputs && h.inputs.length) { - for (b = 0; b < h.inputs.length; ++b) { - var c = h.inputs[b]; - if (c && null != c.link && (c = this.graph.links[c.link])) { - var n = this.graph.getNodeById(c.origin_id); - n && this.selected_nodes[n.id] && a.links.push([n._relative_id, b, h._relative_id, c.target_slot]); + for (e = 0; e < c.length; ++e) { + if (l = c[e], a.nodes.push(l.clone().serialize()), l.inputs && l.inputs.length) { + for (b = 0; b < l.inputs.length; ++b) { + var d = l.inputs[b]; + if (d && null != d.link && (d = this.graph.links[d.link])) { + var k = this.graph.getNodeById(d.origin_id); + k && this.selected_nodes[k.id] && a.links.push([k._relative_id, b, l._relative_id, d.target_slot]); } } } } localStorage.setItem("litegrapheditor_clipboard", JSON.stringify(a)); }; - c.prototype.pasteFromClipboard = function() { + d.prototype.pasteFromClipboard = function() { var a = localStorage.getItem("litegrapheditor_clipboard"); if (a) { a = JSON.parse(a); - for (var b = [], d = 0; d < a.nodes.length; ++d) { - var g = a.nodes[d], h = e.createNode(g.type); - h && (h.configure(g), h.pos[0] += 5, h.pos[1] += 5, this.graph.add(h), b.push(h)); + for (var b = [], c = 0; c < a.nodes.length; ++c) { + var e = a.nodes[c], d = h.createNode(e.type); + d && (d.configure(e), d.pos[0] += 5, d.pos[1] += 5, this.graph.add(d), b.push(d)); } - for (d = 0; d < a.links.length; ++d) { - g = a.links[d], b[g[0]].connect(g[1], b[g[2]], g[3]); + for (c = 0; c < a.links.length; ++c) { + e = a.links[c], b[e[0]].connect(e[1], b[e[2]], e[3]); } this.selectNodes(b); } }; - c.prototype.processDrop = function(a) { + d.prototype.processDrop = function(a) { a.preventDefault(); this.adjustMouseEvent(a); - var b = [a.canvasX, a.canvasY], d = this.graph.getNodeOnPos(b[0], b[1]); - if (d) { - if ((d.onDropFile || d.onDropData) && (b = a.dataTransfer.files) && b.length) { + var b = [a.canvasX, a.canvasY], c = this.graph.getNodeOnPos(b[0], b[1]); + if (c) { + if ((c.onDropFile || c.onDropData) && (b = a.dataTransfer.files) && b.length) { for (var e = 0; e < b.length; e++) { - var h = a.dataTransfer.files[0], l = h.name; - c.getFileExtension(l); - if (d.onDropFile) { - d.onDropFile(h); + var l = a.dataTransfer.files[0], f = l.name; + d.getFileExtension(f); + if (c.onDropFile) { + c.onDropFile(l); } - if (d.onDropData) { - var n = new FileReader; - n.onload = function(a) { - d.onDropData(a.target.result, l, h); + if (c.onDropData) { + var k = new FileReader; + k.onload = function(a) { + c.onDropData(a.target.result, f, l); }; - var f = h.type.split("/")[0]; - "text" == f || "" == f ? n.readAsText(h) : "image" == f ? n.readAsDataURL(h) : n.readAsArrayBuffer(h); + var p = l.type.split("/")[0]; + "text" == p || "" == p ? k.readAsText(l) : "image" == p ? k.readAsDataURL(l) : k.readAsArrayBuffer(l); } } } - return d.onDropItem && d.onDropItem(event) ? !0 : this.onDropItem ? this.onDropItem(event) : !1; + return c.onDropItem && c.onDropItem(event) ? !0 : this.onDropItem ? this.onDropItem(event) : !1; } b = null; this.onDropItem && (b = this.onDropItem(event)); b || this.checkDropItem(a); }; - c.prototype.checkDropItem = function(a) { + d.prototype.checkDropItem = function(a) { if (a.dataTransfer.files.length) { - var b = a.dataTransfer.files[0], d = c.getFileExtension(b.name).toLowerCase(); - if (d = e.node_types_by_file_extension[d]) { - if (d = e.createNode(d.type), d.pos = [a.canvasX, a.canvasY], this.graph.add(d), d.onDropFile) { - d.onDropFile(b); + var b = a.dataTransfer.files[0], c = d.getFileExtension(b.name).toLowerCase(); + if (c = h.node_types_by_file_extension[c]) { + if (c = h.createNode(c.type), c.pos = [a.canvasX, a.canvasY], this.graph.add(c), c.onDropFile) { + c.onDropFile(b); } } } }; - c.prototype.processNodeDblClicked = function(a) { + d.prototype.processNodeDblClicked = function(a) { if (this.onShowNodePanel) { this.onShowNodePanel(a); } @@ -1970,43 +1995,43 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.setDirty(!0); }; - c.prototype.processNodeSelected = function(a, b) { + d.prototype.processNodeSelected = function(a, b) { this.selectNode(a, b && b.shiftKey); if (this.onNodeSelected) { this.onNodeSelected(a); } }; - c.prototype.processNodeDeselected = function(a) { + d.prototype.processNodeDeselected = function(a) { this.deselectNode(a); if (this.onNodeDeselected) { this.onNodeDeselected(a); } }; - c.prototype.selectNode = function(a, b) { + d.prototype.selectNode = function(a, b) { null == a ? this.deselectAllNodes() : this.selectNodes([a], b); }; - c.prototype.selectNodes = function(a, b) { + d.prototype.selectNodes = function(a, b) { b || this.deselectAllNodes(); a = a || this.graph._nodes; for (b = 0; b < a.length; ++b) { - var d = a[b]; - if (!d.selected) { - if (!d.selected && d.onSelected) { - d.onSelected(); + var c = a[b]; + if (!c.selected) { + if (!c.selected && c.onSelected) { + c.onSelected(); } - d.selected = !0; - this.selected_nodes[d.id] = d; - if (d.inputs) { - for (b = 0; b < d.inputs.length; ++b) { - this.highlighted_links[d.inputs[b].link] = !0; + c.selected = !0; + this.selected_nodes[c.id] = c; + if (c.inputs) { + for (b = 0; b < c.inputs.length; ++b) { + this.highlighted_links[c.inputs[b].link] = !0; } } - if (d.outputs) { - for (b = 0; b < d.outputs.length; ++b) { - var e = d.outputs[b]; + if (c.outputs) { + for (b = 0; b < c.outputs.length; ++b) { + var e = c.outputs[b]; if (e.links) { - for (var h = 0; h < e.links.length; ++h) { - this.highlighted_links[e.links[h]] = !0; + for (var d = 0; d < e.links.length; ++d) { + this.highlighted_links[e.links[d]] = !0; } } } @@ -2015,7 +2040,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.setDirty(!0); }; - c.prototype.deselectNode = function(a) { + d.prototype.deselectNode = function(a) { if (a.selected) { if (a.onDeselected) { a.onDeselected(); @@ -2028,19 +2053,19 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } if (a.outputs) { for (b = 0; b < a.outputs.length; ++b) { - var d = a.outputs[b]; - if (d.links) { - for (var e = 0; e < d.links.length; ++e) { - delete this.highlighted_links[d.links[e]]; + var c = a.outputs[b]; + if (c.links) { + for (var e = 0; e < c.links.length; ++e) { + delete this.highlighted_links[c.links[e]]; } } } } } }; - c.prototype.deselectAllNodes = function() { + d.prototype.deselectAllNodes = function() { if (this.graph) { - for (var a = this.graph._nodes, b = 0, d = a.length; b < d; ++b) { + for (var a = this.graph._nodes, b = 0, c = a.length; b < c; ++b) { var e = a[b]; if (e.selected) { if (e.onDeselected) { @@ -2054,7 +2079,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.setDirty(!0); } }; - c.prototype.deleteSelectedNodes = function() { + d.prototype.deleteSelectedNodes = function() { for (var a in this.selected_nodes) { this.graph.remove(this.selected_nodes[a]); } @@ -2062,80 +2087,80 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.highlighted_links = {}; this.setDirty(!0); }; - c.prototype.centerOnNode = function(a) { + d.prototype.centerOnNode = function(a) { this.offset[0] = -a.pos[0] - 0.5 * a.size[0] + 0.5 * this.canvas.width / this.scale; this.offset[1] = -a.pos[1] - 0.5 * a.size[1] + 0.5 * this.canvas.height / this.scale; this.setDirty(!0, !0); }; - c.prototype.adjustMouseEvent = function(a) { + d.prototype.adjustMouseEvent = function(a) { var b = this.canvas.getBoundingClientRect(); a.localX = a.pageX - b.left; a.localY = a.pageY - b.top; a.canvasX = a.localX / this.scale - this.offset[0]; a.canvasY = a.localY / this.scale - this.offset[1]; }; - c.prototype.setZoom = function(a, b) { + d.prototype.setZoom = function(a, b) { b || (b = [0.5 * this.canvas.width, 0.5 * this.canvas.height]); - var d = this.convertOffsetToCanvas(b); + var c = this.convertOffsetToCanvas(b); this.scale = a; this.scale > this.max_zoom ? this.scale = this.max_zoom : this.scale < this.min_zoom && (this.scale = this.min_zoom); a = this.convertOffsetToCanvas(b); - d = [a[0] - d[0], a[1] - d[1]]; - this.offset[0] += d[0]; - this.offset[1] += d[1]; + c = [a[0] - c[0], a[1] - c[1]]; + this.offset[0] += c[0]; + this.offset[1] += c[1]; this.dirty_bgcanvas = this.dirty_canvas = !0; }; - c.prototype.convertOffsetToCanvas = function(a, b) { + d.prototype.convertOffsetToCanvas = function(a, b) { b = b || []; b[0] = a[0] / this.scale - this.offset[0]; b[1] = a[1] / this.scale - this.offset[1]; return b; }; - c.prototype.convertCanvasToOffset = function(a, b) { + d.prototype.convertCanvasToOffset = function(a, b) { b = b || []; b[0] = (a[0] + this.offset[0]) * this.scale; b[1] = (a[1] + this.offset[1]) * this.scale; return b; }; - c.prototype.convertEventToCanvas = function(a) { + d.prototype.convertEventToCanvas = function(a) { var b = this.canvas.getBoundingClientRect(); return this.convertOffsetToCanvas([a.pageX - b.left, a.pageY - b.top]); }; - c.prototype.bringToFront = function(a) { + d.prototype.bringToFront = function(a) { var b = this.graph._nodes.indexOf(a); -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.push(a)); }; - c.prototype.sendToBack = function(a) { + d.prototype.sendToBack = function(a) { var b = this.graph._nodes.indexOf(a); -1 != b && (this.graph._nodes.splice(b, 1), this.graph._nodes.unshift(a)); }; - var q = new Float32Array(4); - c.prototype.computeVisibleNodes = function(a, b) { + var p = new Float32Array(4); + d.prototype.computeVisibleNodes = function(a, b) { b = b || []; b.length = 0; a = a || this.graph._nodes; - for (var d = 0, e = a.length; d < e; ++d) { - var h = a[d]; - (!this.live_mode || h.onDrawBackground || h.onDrawForeground) && v(this.visible_area, h.getBounding(q)) && b.push(h); + for (var c = 0, e = a.length; c < e; ++c) { + var d = a[c]; + (!this.live_mode || d.onDrawBackground || d.onDrawForeground) && u(this.visible_area, d.getBounding(p)) && b.push(d); } return b; }; - c.prototype.draw = function(a, b) { + d.prototype.draw = function(a, b) { if (this.canvas) { - var d = e.getTime(); - this.render_time = 0.001 * (d - this.last_draw_time); - this.last_draw_time = d; + var c = h.getTime(); + this.render_time = 0.001 * (c - this.last_draw_time); + this.last_draw_time = c; if (this.graph) { - var g = [-this.offset[0], -this.offset[1]], h = [g[0] + this.canvas.width / this.scale, g[1] + this.canvas.height / this.scale]; - this.visible_area = new Float32Array([g[0], g[1], h[0] - g[0], h[1] - g[1]]); + var e = [-this.offset[0], -this.offset[1]], d = [e[0] + this.canvas.width / this.scale, e[1] + this.canvas.height / this.scale]; + this.visible_area = new Float32Array([e[0], e[1], d[0] - e[0], d[1] - e[1]]); } - (this.dirty_bgcanvas || b || this.always_render_background || this.graph && this.graph._last_trigger_time && 1000 > d - this.graph._last_trigger_time) && this.drawBackCanvas(); + (this.dirty_bgcanvas || b || this.always_render_background || this.graph && this.graph._last_trigger_time && 1000 > c - this.graph._last_trigger_time) && this.drawBackCanvas(); (this.dirty_canvas || a) && this.drawFrontCanvas(); this.fps = this.render_time ? 1.0 / this.render_time : 0; this.frame += 1; } }; - c.prototype.drawFrontCanvas = function() { + d.prototype.drawFrontCanvas = function() { this.ctx || (this.ctx = this.bgcanvas.getContext("2d")); var a = this.ctx; if (a) { @@ -2155,18 +2180,18 @@ $jscomp.polyfill("Array.prototype.values", function(u) { a.scale(this.scale, this.scale); a.translate(this.offset[0], this.offset[1]); b = this.computeVisibleNodes(null, this.visible_nodes); - for (var d = 0; d < b.length; ++d) { - var g = b[d]; + for (var c = 0; c < b.length; ++c) { + var e = b[c]; a.save(); - a.translate(g.pos[0], g.pos[1]); - this.drawNode(g, a); + a.translate(e.pos[0], e.pos[1]); + this.drawNode(e, a); a.restore(); } this.graph.config.links_ontop && (this.live_mode || this.drawConnections(a)); if (null != this.connecting_pos) { a.lineWidth = this.connections_width; switch(this.connecting_output.type) { - case e.EVENT: + case h.EVENT: b = "#F85"; break; default: @@ -2174,7 +2199,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } this.renderLink(a, this.connecting_pos, [this.canvas_mouse[0], this.canvas_mouse[1]], null, !1, null, b); a.beginPath(); - this.connecting_output.type === e.EVENT ? a.rect(this.connecting_pos[0] - 6 + 0.5, this.connecting_pos[1] - 5 + 0.5, 14, 10) : a.arc(this.connecting_pos[0], this.connecting_pos[1], 4, 0, 2 * Math.PI); + this.connecting_output.type === h.EVENT ? a.rect(this.connecting_pos[0] - 6 + 0.5, this.connecting_pos[1] - 5 + 0.5, 14, 10) : a.arc(this.connecting_pos[0], this.connecting_pos[1], 4, 0, 2 * Math.PI); a.fill(); a.fillStyle = "#ffcc00"; this._highlight_input && (a.beginPath(), a.arc(this._highlight_input[0], this._highlight_input[1], 6, 0, 2 * Math.PI), a.fill()); @@ -2187,17 +2212,17 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.dirty_canvas = !1; } }; - c.prototype.renderInfo = function(a, b, d) { + d.prototype.renderInfo = function(a, b, c) { b = b || 0; - d = d || 0; + c = c || 0; a.save(); - a.translate(b, d); + a.translate(b, c); a.font = "10px Arial"; a.fillStyle = "#888"; this.graph ? (a.fillText("T: " + this.graph.globaltime.toFixed(2) + "s", 5, 13), a.fillText("I: " + this.graph.iteration, 5, 26), a.fillText("F: " + this.frame, 5, 39), a.fillText("FPS:" + this.fps.toFixed(2), 5, 52)) : a.fillText("No graph selected", 5, 13); a.restore(); }; - c.prototype.drawBackCanvas = function() { + d.prototype.drawBackCanvas = function() { var a = this.bgcanvas; if (a.width != this.canvas.width || a.height != this.canvas.height) { a.width = this.canvas.width, a.height = this.canvas.height; @@ -2220,9 +2245,9 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._bg_img = new Image; this._bg_img.name = this.background_image; this._bg_img.src = this.background_image; - var d = this; + var c = this; this._bg_img.onload = function() { - d.draw(!0, !0); + c.draw(!0, !0); }; } var e = null; @@ -2234,8 +2259,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (this.onBackgroundRender) { this.onBackgroundRender(a, b); } - b.strokeStyle = "#235"; - b.strokeRect(0, 0, a.width, a.height); + this.render_canvas_area && (b.strokeStyle = "#235", b.strokeRect(0, 0, a.width, a.height)); this.render_connections_shadows ? (b.shadowColor = "#000", b.shadowOffsetX = 0, b.shadowOffsetY = 0, b.shadowBlur = 6) : b.shadowColor = "rgba(0,0,0,0)"; this.live_mode || this.drawConnections(b); b.shadowColor = "rgba(0,0,0,0)"; @@ -2245,55 +2269,55 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.dirty_bgcanvas = !1; this.dirty_canvas = !0; }; - var l = new Float32Array(2); - c.prototype.drawNode = function(a, b) { - var d = a.color || e.NODE_DEFAULT_COLOR, c = !0; + var e = new Float32Array(2); + d.prototype.drawNode = function(a, b) { + var c = a.color || h.NODE_DEFAULT_COLOR, d = !0; if (a.flags.skip_title_render || a.graph.isLive()) { - c = !1; + d = !1; } - a.mouseOver && (c = !0); + a.mouseOver && (d = !0); a.selected || (this.render_shadows ? (b.shadowColor = "rgba(0,0,0,0.5)", b.shadowOffsetX = 2, b.shadowOffsetY = 2, b.shadowBlur = 3) : b.shadowColor = "transparent"); if (this.live_mode) { if (!a.flags.collapsed && (b.shadowColor = "transparent", a.onDrawForeground)) { a.onDrawForeground(b); } } else { - var h = this.editor_alpha; - b.globalAlpha = h; - var f = a._shape || e.BOX_SHAPE; - l.set(a.size); - a.flags.collapsed && (l[0] = e.NODE_COLLAPSED_WIDTH, l[1] = 0); - a.flags.clip_area && (b.save(), f == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, 0, l[0], l[1])) : f == e.ROUND_SHAPE ? b.roundRect(0, 0, l[0], l[1], 10) : f == e.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * l[0], 0.5 * l[1], 0.5 * l[0], 0, 2 * Math.PI)), b.clip()); - this.drawNodeShape(a, b, l, d, a.bgcolor, !c, a.selected); + var l = this.editor_alpha; + b.globalAlpha = l; + var f = a._shape || h.BOX_SHAPE; + e.set(a.size); + a.flags.collapsed && (e[0] = h.NODE_COLLAPSED_WIDTH, e[1] = 0); + a.flags.clip_area && (b.save(), f == h.BOX_SHAPE ? (b.beginPath(), b.rect(0, 0, e[0], e[1])) : f == h.ROUND_SHAPE ? b.roundRect(0, 0, e[0], e[1], 10) : f == h.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * e[0], 0.5 * e[1], 0.5 * e[0], 0, 2 * Math.PI)), b.clip()); + this.drawNodeShape(a, b, e, c, a.bgcolor, !d, a.selected); b.shadowColor = "transparent"; b.textAlign = "left"; b.font = this.inner_text_font; - c = 0.6 < this.scale; + d = 0.6 < this.scale; f = this.connecting_output; if (!a.flags.collapsed) { if (a.inputs) { - for (var n = 0; n < a.inputs.length; n++) { - var q = a.inputs[n]; - b.globalAlpha = h; - this.connecting_node && e.isValidConnection(q.type && f.type) && (b.globalAlpha = 0.4 * h); - b.fillStyle = null != q.link ? "#7F7" : "#AAA"; - var p = a.getConnectionPos(!0, n); - p[0] -= a.pos[0]; - p[1] -= a.pos[1]; + for (var k = 0; k < a.inputs.length; k++) { + var p = a.inputs[k]; + b.globalAlpha = l; + this.connecting_node && h.isValidConnection(p.type && f.type) && (b.globalAlpha = 0.4 * l); + b.fillStyle = null != p.link ? this.default_connection_color.input_on : this.default_connection_color.input_off; + var m = a.getConnectionPos(!0, k); + m[0] -= a.pos[0]; + m[1] -= a.pos[1]; b.beginPath(); - q.type === e.EVENT ? b.rect(p[0] - 6 + 0.5, p[1] - 5 + 0.5, 14, 10) : b.arc(p[0], p[1], 4, 0, 2 * Math.PI); + p.type === h.EVENT ? b.rect(m[0] - 6 + 0.5, m[1] - 5 + 0.5, 14, 10) : b.arc(m[0], m[1], 4, 0, 2 * Math.PI); b.fill(); - c && (q = null != q.label ? q.label : q.name) && (b.fillStyle = d, b.fillText(q, p[0] + 10, p[1] + 5)); + d && (p = null != p.label ? p.label : p.name) && (b.fillStyle = c, b.fillText(p, m[0] + 10, m[1] + 5)); } } - this.connecting_node && (b.globalAlpha = 0.4 * h); + this.connecting_node && (b.globalAlpha = 0.4 * l); b.lineWidth = 1; b.textAlign = "right"; b.strokeStyle = "black"; if (a.outputs) { - for (n = 0; n < a.outputs.length; n++) { - if (q = a.outputs[n], p = a.getConnectionPos(!1, n), p[0] -= a.pos[0], p[1] -= a.pos[1], b.fillStyle = q.links && q.links.length ? "#7F7" : "#AAA", b.beginPath(), q.type === e.EVENT ? b.rect(p[0] - 6 + 0.5, p[1] - 5 + 0.5, 14, 10) : b.arc(p[0], p[1], 4, 0, 2 * Math.PI), b.fill(), b.stroke(), c && (q = null != q.label ? q.label : q.name)) { - b.fillStyle = d, b.fillText(q, p[0] - 10, p[1] + 5); + for (k = 0; k < a.outputs.length; k++) { + if (p = a.outputs[k], m = a.getConnectionPos(!1, k), m[0] -= a.pos[0], m[1] -= a.pos[1], b.fillStyle = p.links && p.links.length ? this.default_connection_color.output_on : this.default_connection_color.output_off, b.beginPath(), p.type === h.EVENT ? b.rect(m[0] - 6 + 0.5, m[1] - 5 + 0.5, 14, 10) : b.arc(m[0], m[1], 4, 0, 2 * Math.PI), b.fill(), b.stroke(), d && (p = null != p.label ? p.label : p.name)) { + b.fillStyle = c, b.fillText(p, m[0] - 10, m[1] + 5); } } } @@ -2307,51 +2331,51 @@ $jscomp.polyfill("Array.prototype.values", function(u) { b.globalAlpha = 1.0; } }; - c.prototype.drawNodeShape = function(a, b, d, c, h, l, n) { - b.strokeStyle = c || e.NODE_DEFAULT_COLOR; - b.fillStyle = h || e.NODE_DEFAULT_BGCOLOR; - h = e.NODE_TITLE_HEIGHT; - var g = a._shape || e.BOX_SHAPE; - g == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, l ? 0 : -h, d[0] + 1, l ? d[1] : d[1] + h), b.fill(), b.shadowColor = "transparent", n && (b.strokeStyle = "#CCC", b.strokeRect(-0.5, l ? -0.5 : -h + -0.5, d[0] + 2, l ? d[1] + 2 : d[1] + h + 2 - 1), b.strokeStyle = c)) : g == e.ROUND_SHAPE ? (b.roundRect(0, l ? 0 : -h, d[0], l ? d[1] : d[1] + h, 10), b.fill()) : g == e.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * d[0], 0.5 * d[1], 0.5 * d[0], 0, 2 * Math.PI), b.fill()); + d.prototype.drawNodeShape = function(a, b, c, e, d, f, k) { + b.strokeStyle = e || h.NODE_DEFAULT_COLOR; + b.fillStyle = d || h.NODE_DEFAULT_BGCOLOR; + d = h.NODE_TITLE_HEIGHT; + var l = a._shape || h.BOX_SHAPE; + l == h.BOX_SHAPE ? (b.beginPath(), b.rect(0, f ? 0 : -d, c[0] + 1, f ? c[1] : c[1] + d), b.fill(), b.shadowColor = "transparent", k && (b.strokeStyle = "#CCC", b.strokeRect(-0.5, f ? -0.5 : -d + -0.5, c[0] + 2, f ? c[1] + 2 : c[1] + d + 2 - 1), b.strokeStyle = e)) : l == h.ROUND_SHAPE ? (b.roundRect(0, f ? 0 : -d, c[0], f ? c[1] : c[1] + d, 10), b.fill()) : l == h.CIRCLE_SHAPE && (b.beginPath(), b.arc(0.5 * c[0], 0.5 * c[1], 0.5 * c[0], 0, 2 * Math.PI), b.fill()); b.shadowColor = "transparent"; - a.bgImage && a.bgImage.width && b.drawImage(a.bgImage, 0.5 * (d[0] - a.bgImage.width), 0.5 * (d[1] - a.bgImage.height)); + a.bgImage && a.bgImage.width && b.drawImage(a.bgImage, 0.5 * (c[0] - a.bgImage.width), 0.5 * (c[1] - a.bgImage.height)); a.bgImageUrl && !a.bgImage && (a.bgImage = a.loadImage(a.bgImageUrl)); if (a.onDrawBackground) { a.onDrawBackground(b); } - l || (b.fillStyle = c || e.NODE_DEFAULT_COLOR, c = b.globalAlpha, b.globalAlpha = 0.5 * c, g == e.BOX_SHAPE ? (b.beginPath(), b.rect(0, -h, d[0] + 1, h), b.fill()) : g == e.ROUND_SHAPE && (b.roundRect(0, -h, d[0], h, 10, 0), b.fill()), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), g == e.ROUND_SHAPE || g == e.CIRCLE_SHAPE ? b.arc(0.5 * h, -0.5 * h, 0.5 * (h - 6), 0, 2 * Math.PI) : b.rect(3, -h + 3, h - 6, h - 6), b.fill(), b.globalAlpha = c, b.font = this.title_text_font, - (a = a.getTitle()) && 0.5 < this.scale && (b.fillStyle = e.NODE_TITLE_COLOR, b.fillText(a, 16, 13 - h))); + f || (b.fillStyle = e || h.NODE_DEFAULT_COLOR, e = b.globalAlpha, b.globalAlpha = 0.5 * e, l == h.BOX_SHAPE ? (b.beginPath(), b.rect(0, -d, c[0] + 1, d), b.fill()) : l == h.ROUND_SHAPE && (b.roundRect(0, -d, c[0], d, 10, 0), b.fill()), b.fillStyle = a.boxcolor || h.NODE_DEFAULT_BOXCOLOR, b.beginPath(), l == h.ROUND_SHAPE || l == h.CIRCLE_SHAPE ? b.arc(0.5 * d, -0.5 * d, 0.5 * (d - 6), 0, 2 * Math.PI) : b.rect(3, -d + 3, d - 6, d - 6), b.fill(), b.globalAlpha = e, b.font = this.title_text_font, + (a = a.getTitle()) && 0.5 < this.scale && (b.fillStyle = h.NODE_TITLE_COLOR, b.fillText(a, 16, 13 - d))); }; - c.prototype.drawNodeCollapsed = function(a, b, d, c) { - b.strokeStyle = d || e.NODE_DEFAULT_COLOR; - b.fillStyle = c || e.NODE_DEFAULT_BGCOLOR; - d = e.NODE_COLLAPSED_RADIUS; - c = a._shape || e.BOX_SHAPE; - c == e.CIRCLE_SHAPE ? (b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], d, 0, 2 * Math.PI), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], 0.5 * d, 0, 2 * Math.PI)) : c == e.ROUND_SHAPE ? (b.beginPath(), b.roundRect(0.5 * a.size[0] - d, 0.5 * a.size[1] - d, 2 * d, 2 * d, 5), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, - b.beginPath(), b.roundRect(0.5 * a.size[0] - 0.5 * d, 0.5 * a.size[1] - 0.5 * d, d, d, 2)) : (b.beginPath(), b.rect(0, 0, a.size[0], 2 * d), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || e.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.rect(0.5 * d, 0.5 * d, d, d)); + d.prototype.drawNodeCollapsed = function(a, b, c, e) { + b.strokeStyle = c || h.NODE_DEFAULT_COLOR; + b.fillStyle = e || h.NODE_DEFAULT_BGCOLOR; + c = h.NODE_COLLAPSED_RADIUS; + e = a._shape || h.BOX_SHAPE; + e == h.CIRCLE_SHAPE ? (b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], c, 0, 2 * Math.PI), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || h.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.arc(0.5 * a.size[0], 0.5 * a.size[1], 0.5 * c, 0, 2 * Math.PI)) : e == h.ROUND_SHAPE ? (b.beginPath(), b.roundRect(0.5 * a.size[0] - c, 0.5 * a.size[1] - c, 2 * c, 2 * c, 5), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || h.NODE_DEFAULT_BOXCOLOR, + b.beginPath(), b.roundRect(0.5 * a.size[0] - 0.5 * c, 0.5 * a.size[1] - 0.5 * c, c, c, 2)) : (b.beginPath(), b.rect(0, 0, a.size[0], 2 * c), b.fill(), b.shadowColor = "rgba(0,0,0,0)", b.stroke(), b.fillStyle = a.boxcolor || h.NODE_DEFAULT_BOXCOLOR, b.beginPath(), b.rect(0.5 * c, 0.5 * c, c, c)); b.fill(); }; - c.prototype.drawConnections = function(a) { - var b = e.getTime(); + d.prototype.drawConnections = function(a) { + var b = h.getTime(); a.lineWidth = this.connections_width; a.fillStyle = "#AAA"; a.strokeStyle = "#AAA"; a.globalAlpha = this.editor_alpha; - for (var d = 0, c = this.graph._nodes.length; d < c; ++d) { - var h = this.graph._nodes[d]; - if (h.inputs && h.inputs.length) { - for (var l = 0; l < h.inputs.length; ++l) { - var n = h.inputs[l]; - if (n && null != n.link && (n = this.graph.links[n.link])) { - var f = this.graph.getNodeById(n.origin_id); - if (null != f) { - var q = n.origin_slot; - f = -1 == q ? [f.pos[0] + 10, f.pos[1] + 10] : f.getConnectionPos(!1, q); - this.renderLink(a, f, h.getConnectionPos(!0, l), n); - if (n && n._last_time && 1000 > b - n._last_time) { - q = 2.0 - 0.002 * (b - n._last_time); - var p = "rgba(255,255,255, " + q.toFixed(2) + ")"; - this.renderLink(a, f, h.getConnectionPos(!0, l), n, !0, q, p); + for (var c = 0, e = this.graph._nodes.length; c < e; ++c) { + var d = this.graph._nodes[c]; + if (d.inputs && d.inputs.length) { + for (var f = 0; f < d.inputs.length; ++f) { + var k = d.inputs[f]; + if (k && null != k.link && (k = this.graph.links[k.link])) { + var p = this.graph.getNodeById(k.origin_id); + if (null != p) { + var m = k.origin_slot; + p = -1 == m ? [p.pos[0] + 10, p.pos[1] + 10] : p.getConnectionPos(!1, m); + this.renderLink(a, p, d.getConnectionPos(!0, f), k); + if (k && k._last_time && 1000 > b - k._last_time) { + m = 2.0 - 0.002 * (b - k._last_time); + var g = "rgba(255,255,255, " + m.toFixed(2) + ")"; + this.renderLink(a, p, d.getConnectionPos(!0, f), k, !0, m, g); } } } @@ -2360,369 +2384,369 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } a.globalAlpha = 1; }; - c.prototype.renderLink = function(a, b, d, g, h, l, n) { + d.prototype.renderLink = function(a, b, c, e, f, p, k) { if (this.highquality_render) { - var f = p(b, d); + var l = m(b, c); this.render_connections_border && 0.6 < this.scale && (a.lineWidth = this.connections_width + 4); - !n && g && (n = c.link_type_colors[g.type]); - n || (n = this.default_link_color); - null != g && this.highlighted_links[g.id] && (n = "#FFF"); + !k && e && (k = d.link_type_colors[e.type]); + k || (k = this.default_link_color); + null != e && this.highlighted_links[e.id] && (k = "#FFF"); a.beginPath(); - this.render_curved_connections ? (a.moveTo(b[0], b[1]), a.bezierCurveTo(b[0] + 0.25 * f, b[1], d[0] - 0.25 * f, d[1], d[0], d[1])) : (a.moveTo(b[0] + 10, b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), b[1]), a.lineTo(0.5 * (b[0] + 10 + (d[0] - 10)), d[1]), a.lineTo(d[0] - 10, d[1])); - this.render_connections_border && 0.6 < this.scale && !h && (a.strokeStyle = "rgba(0,0,0,0.5)", a.stroke()); + this.render_curved_connections ? (a.moveTo(b[0], b[1]), a.bezierCurveTo(b[0] + 0.25 * l, b[1], c[0] - 0.25 * l, c[1], c[0], c[1])) : (a.moveTo(b[0] + 10, b[1]), a.lineTo(0.5 * (b[0] + 10 + (c[0] - 10)), b[1]), a.lineTo(0.5 * (b[0] + 10 + (c[0] - 10)), c[1]), a.lineTo(c[0] - 10, c[1])); + this.render_connections_border && 0.6 < this.scale && !f && (a.strokeStyle = "rgba(0,0,0,0.5)", a.stroke()); a.lineWidth = this.connections_width; - a.fillStyle = a.strokeStyle = n; + a.fillStyle = a.strokeStyle = k; a.stroke(); - this.render_connection_arrows && 0.6 <= this.scale && this.render_connection_arrows && 0.6 < this.scale && (g = this.computeConnectionPoint(b, d, 0.5), h = this.computeConnectionPoint(b, d, 0.51), h = this.render_curved_connections ? -Math.atan2(h[0] - g[0], h[1] - g[1]) : d[1] > b[1] ? 0 : Math.PI, a.save(), a.translate(g[0], g[1]), a.rotate(h), a.beginPath(), a.moveTo(-5, -5), a.lineTo(0, 5), a.lineTo(5, -5), a.fill(), a.restore()); - if (l) { - for (l = 0; 5 > l; ++l) { - g = (0.001 * e.getTime() + 0.2 * l) % 1, g = this.computeConnectionPoint(b, d, g), a.beginPath(), a.arc(g[0], g[1], 5, 0, 2 * Math.PI), a.fill(); + this.render_connection_arrows && 0.6 <= this.scale && this.render_connection_arrows && 0.6 < this.scale && (e = this.computeConnectionPoint(b, c, 0.5), f = this.computeConnectionPoint(b, c, 0.51), f = this.render_curved_connections ? -Math.atan2(f[0] - e[0], f[1] - e[1]) : c[1] > b[1] ? 0 : Math.PI, a.save(), a.translate(e[0], e[1]), a.rotate(f), a.beginPath(), a.moveTo(-5, -5), a.lineTo(0, 5), a.lineTo(5, -5), a.fill(), a.restore()); + if (p) { + for (p = 0; 5 > p; ++p) { + e = (0.001 * h.getTime() + 0.2 * p) % 1, e = this.computeConnectionPoint(b, c, e), a.beginPath(), a.arc(e[0], e[1], 5, 0, 2 * Math.PI), a.fill(); } } } else { - a.beginPath(), a.moveTo(b[0], b[1]), a.lineTo(d[0], d[1]), a.stroke(); + a.beginPath(), a.moveTo(b[0], b[1]), a.lineTo(c[0], c[1]), a.stroke(); } }; - c.prototype.computeConnectionPoint = function(a, b, d) { - var e = p(a, b), c = [a[0] + 0.25 * e, a[1]]; + d.prototype.computeConnectionPoint = function(a, b, c) { + var e = m(a, b), d = [a[0] + 0.25 * e, a[1]]; e = [b[0] - 0.25 * e, b[1]]; - var l = (1 - d) * (1 - d) * (1 - d), n = 3 * (1 - d) * (1 - d) * d, f = 3 * (1 - d) * d * d; - d *= d * d; - return [l * a[0] + n * c[0] + f * e[0] + d * b[0], l * a[1] + n * c[1] + f * e[1] + d * b[1]]; + var f = (1 - c) * (1 - c) * (1 - c), k = 3 * (1 - c) * (1 - c) * c, p = 3 * (1 - c) * c * c; + c *= c * c; + return [f * a[0] + k * d[0] + p * e[0] + c * b[0], f * a[1] + k * d[1] + p * e[1] + c * b[1]]; }; - c.prototype.resize = function(a, b) { + d.prototype.resize = function(a, b) { a || b || (b = this.canvas.parentNode, a = b.offsetWidth, b = b.offsetHeight); if (this.canvas.width != a || this.canvas.height != b) { this.canvas.width = a, this.canvas.height = b, this.bgcanvas.width = this.canvas.width, this.bgcanvas.height = this.canvas.height, this.setDirty(!0, !0); } }; - c.prototype.switchLiveMode = function(a) { + d.prototype.switchLiveMode = function(a) { if (a) { - var b = this, d = this.live_mode ? 1.1 : 0.9; + var b = this, c = this.live_mode ? 1.1 : 0.9; this.live_mode && (this.live_mode = !1, this.editor_alpha = 0.1); var e = setInterval(function() { - b.editor_alpha *= d; + b.editor_alpha *= c; b.dirty_canvas = !0; b.dirty_bgcanvas = !0; - 1 > d && 0.01 > b.editor_alpha && (clearInterval(e), 1 > d && (b.live_mode = !0)); - 1 < d && 0.99 < b.editor_alpha && (clearInterval(e), b.editor_alpha = 1); + 1 > c && 0.01 > b.editor_alpha && (clearInterval(e), 1 > c && (b.live_mode = !0)); + 1 < c && 0.99 < b.editor_alpha && (clearInterval(e), b.editor_alpha = 1); }, 1); } else { this.live_mode = !this.live_mode, this.dirty_bgcanvas = this.dirty_canvas = !0; } }; - c.prototype.onNodeSelectionChange = function(a) { + d.prototype.onNodeSelectionChange = function(a) { }; - c.prototype.touchHandler = function(a) { + d.prototype.touchHandler = function(a) { var b = a.changedTouches[0]; switch(a.type) { case "touchstart": - var d = "mousedown"; + var c = "mousedown"; break; case "touchmove": - d = "mousemove"; + c = "mousemove"; break; case "touchend": - d = "mouseup"; + c = "mouseup"; break; default: return; } - var e = this.getCanvasWindow(), c = e.document.createEvent("MouseEvent"); - c.initMouseEvent(d, !0, !0, e, 1, b.screenX, b.screenY, b.clientX, b.clientY, !1, !1, !1, !1, 0, null); - b.target.dispatchEvent(c); + var e = this.getCanvasWindow(), d = e.document.createEvent("MouseEvent"); + d.initMouseEvent(c, !0, !0, e, 1, b.screenX, b.screenY, b.clientX, b.clientY, !1, !1, !1, !1, 0, null); + b.target.dispatchEvent(d); a.preventDefault(); }; - c.onMenuAdd = function(a, b, d, l) { - function h(a, b) { - b = l.getFirstEvent(); - if (a = e.createNode(a.value)) { - a.pos = g.convertEventToCanvas(b), g.graph.add(a); + d.onMenuAdd = function(a, b, c, e) { + function f(a, b) { + b = e.getFirstEvent(); + if (a = h.createNode(a.value)) { + a.pos = p.convertEventToCanvas(b), p.graph.add(a); } } - var g = c.active_canvas, n = g.getCanvasWindow(); - a = e.getNodeTypesCategories(); + var p = d.active_canvas, k = p.getCanvasWindow(); + a = h.getNodeTypesCategories(); b = []; - for (var f in a) { - a[f] && b.push({value:a[f], content:a[f], has_submenu:!0}); + for (var m in a) { + a[m] && b.push({value:a[m], content:a[m], has_submenu:!0}); } - var q = new e.ContextMenu(b, {event:d, callback:function(a, b, d) { - a = e.getNodeTypesInCategory(a.value); + var n = new h.ContextMenu(b, {event:c, callback:function(a, b, c) { + a = h.getNodeTypesInCategory(a.value); b = []; - for (var c in a) { - b.push({content:a[c].title, value:a[c].type}); + for (var e in a) { + b.push({content:a[e].title, value:a[e].type}); } - new e.ContextMenu(b, {event:d, callback:h, parentMenu:q}, n); + new h.ContextMenu(b, {event:c, callback:f, parentMenu:n}, k); return !1; - }, parentMenu:l}, n); + }, parentMenu:e}, k); return !1; }; - c.onMenuCollapseAll = function() { + d.onMenuCollapseAll = function() { }; - c.onMenuNodeEdit = function() { + d.onMenuNodeEdit = function() { }; - c.showMenuNodeOptionalInputs = function(a, b, d, l, h) { - if (h) { - var g = this; - a = c.active_canvas.getCanvasWindow(); - b = h.optional_inputs; - h.onGetInputs && (b = h.onGetInputs()); - var n = []; + d.showMenuNodeOptionalInputs = function(a, b, c, e, f) { + if (f) { + var p = this; + a = d.active_canvas.getCanvasWindow(); + b = f.optional_inputs; + f.onGetInputs && (b = f.onGetInputs()); + var k = []; if (b) { - for (var f in b) { - var q = b[f]; - if (q) { - var p = q[0]; - q[2] && q[2].label && (p = q[2].label); - p = {content:p, value:q}; - q[1] == e.ACTION && (p.className = "event"); - n.push(p); + for (var l in b) { + var m = b[l]; + if (m) { + var n = m[0]; + m[2] && m[2].label && (n = m[2].label); + n = {content:n, value:m}; + m[1] == h.ACTION && (n.className = "event"); + k.push(n); } else { - n.push(null); + k.push(null); } } } - this.onMenuNodeInputs && (n = this.onMenuNodeInputs(n)); - if (n.length) { - return new e.ContextMenu(n, {event:d, callback:function(a, b, d) { - h && (a.callback && a.callback.call(g, h, a, b, d), a.value && (h.addInput(a.value[0], a.value[1], a.value[2]), h.setDirtyCanvas(!0, !0))); - }, parentMenu:l, node:h}, a), !1; + this.onMenuNodeInputs && (k = this.onMenuNodeInputs(k)); + if (k.length) { + return new h.ContextMenu(k, {event:c, callback:function(a, b, c) { + f && (a.callback && a.callback.call(p, f, a, b, c), a.value && (f.addInput(a.value[0], a.value[1], a.value[2]), f.setDirtyCanvas(!0, !0))); + }, parentMenu:e, node:f}, a), !1; } } }; - c.showMenuNodeOptionalOutputs = function(a, b, d, l, h) { - function g(a, b, d) { - if (h && (a.callback && a.callback.call(n, h, a, b, d), a.value)) { - if (d = a.value[1], !d || d.constructor !== Object && d.constructor !== Array) { - h.addOutput(a.value[0], a.value[1], a.value[2]), h.setDirtyCanvas(!0, !0); + d.showMenuNodeOptionalOutputs = function(a, b, c, e, f) { + function p(a, b, c) { + if (f && (a.callback && a.callback.call(k, f, a, b, c), a.value)) { + if (c = a.value[1], !c || c.constructor !== Object && c.constructor !== Array) { + f.addOutput(a.value[0], a.value[1], a.value[2]), f.setDirtyCanvas(!0, !0); } else { a = []; - for (var c in d) { - a.push({content:c, value:d[c]}); + for (var d in c) { + a.push({content:d, value:c[d]}); } - new e.ContextMenu(a, {event:b, callback:g, parentMenu:l, node:h}); + new h.ContextMenu(a, {event:b, callback:p, parentMenu:e, node:f}); return !1; } } } - if (h) { - var n = this; - a = c.active_canvas.getCanvasWindow(); - b = h.optional_outputs; - h.onGetOutputs && (b = h.onGetOutputs()); - var f = []; + if (f) { + var k = this; + a = d.active_canvas.getCanvasWindow(); + b = f.optional_outputs; + f.onGetOutputs && (b = f.onGetOutputs()); + var l = []; if (b) { - for (var q in b) { - var p = b[q]; - if (!p) { - f.push(null); + for (var m in b) { + var n = b[m]; + if (!n) { + l.push(null); } else { - if (!h.flags || !h.flags.skip_repeated_outputs || -1 == h.findOutputSlot(p[0])) { - var k = p[0]; - p[2] && p[2].label && (k = p[2].label); - k = {content:k, value:p}; - p[1] == e.EVENT && (k.className = "event"); - f.push(k); + if (!f.flags || !f.flags.skip_repeated_outputs || -1 == f.findOutputSlot(n[0])) { + var g = n[0]; + n[2] && n[2].label && (g = n[2].label); + g = {content:g, value:n}; + n[1] == h.EVENT && (g.className = "event"); + l.push(g); } } } } - this.onMenuNodeOutputs && (f = this.onMenuNodeOutputs(f)); - if (f.length) { - return new e.ContextMenu(f, {event:d, callback:g, parentMenu:l, node:h}, a), !1; + this.onMenuNodeOutputs && (l = this.onMenuNodeOutputs(l)); + if (l.length) { + return new h.ContextMenu(l, {event:c, callback:p, parentMenu:e, node:f}, a), !1; } } }; - c.onShowMenuNodeProperties = function(a, b, d, l, h) { - if (h && h.properties) { - var g = c.active_canvas; - b = g.getCanvasWindow(); - var n = [], f; - for (f in h.properties) { - a = void 0 !== h.properties[f] ? h.properties[f] : " ", a = c.decodeHTML(a), n.push({content:"" + f + "" + a + "", value:f}); + d.onShowMenuNodeProperties = function(a, b, c, e, f) { + if (f && f.properties) { + var p = d.active_canvas; + b = p.getCanvasWindow(); + var k = [], l; + for (l in f.properties) { + a = void 0 !== f.properties[l] ? f.properties[l] : " ", a = d.decodeHTML(a), k.push({content:"" + l + "" + a + "", value:l}); } - if (n.length) { - return new e.ContextMenu(n, {event:d, callback:function(a, b, d, e) { - h && (b = this.getBoundingClientRect(), g.showEditPropertyValue(h, a.value, {position:[b.left, b.top]})); - }, parentMenu:l, allow_html:!0, node:h}, b), !1; + if (k.length) { + return new h.ContextMenu(k, {event:c, callback:function(a, b, c, e) { + f && (b = this.getBoundingClientRect(), p.showEditPropertyValue(f, a.value, {position:[b.left, b.top]})); + }, parentMenu:e, allow_html:!0, node:f}, b), !1; } } }; - c.decodeHTML = function(a) { + d.decodeHTML = function(a) { var b = document.createElement("div"); b.innerText = a; return b.innerHTML; }; - c.onResizeNode = function(a, b, d, e, c) { - c && (c.size = c.computeSize(), c.setDirtyCanvas(!0, !0)); + d.onResizeNode = function(a, b, c, e, d) { + d && (d.size = d.computeSize(), d.setDirtyCanvas(!0, !0)); }; - c.onShowTitleEditor = function(a, b, d, e, h) { - function l() { - h.title = g.value; - n.parentNode.removeChild(n); - h.setDirtyCanvas(!0, !0); + d.onShowTitleEditor = function(a, b, c, e, f) { + function p() { + f.title = l.value; + k.parentNode.removeChild(k); + f.setDirtyCanvas(!0, !0); } - var n = document.createElement("div"); - n.className = "graphdialog"; - n.innerHTML = "Title"; - var g = n.querySelector("input"); - g && (g.value = h.title, g.addEventListener("keydown", function(a) { - 13 == a.keyCode && (l(), a.preventDefault(), a.stopPropagation()); + var k = document.createElement("div"); + k.className = "graphdialog"; + k.innerHTML = "Title"; + var l = k.querySelector("input"); + l && (l.value = f.title, l.addEventListener("keydown", function(a) { + 13 == a.keyCode && (p(), a.preventDefault(), a.stopPropagation()); })); - a = c.active_canvas.canvas; + a = d.active_canvas.canvas; b = a.getBoundingClientRect(); - e = d = -20; - b && (d -= b.left, e -= b.top); - event ? (n.style.left = event.pageX + d + "px", n.style.top = event.pageY + e + "px") : (n.style.left = 0.5 * a.width + d + "px", n.style.top = 0.5 * a.height + e + "px"); - n.querySelector("button").addEventListener("click", l); - a.parentNode.appendChild(n); + e = c = -20; + b && (c -= b.left, e -= b.top); + event ? (k.style.left = event.pageX + c + "px", k.style.top = event.pageY + e + "px") : (k.style.left = 0.5 * a.width + c + "px", k.style.top = 0.5 * a.height + e + "px"); + k.querySelector("button").addEventListener("click", p); + a.parentNode.appendChild(k); }; - c.prototype.showEditPropertyValue = function(a, b, d) { + d.prototype.showEditPropertyValue = function(a, b, c) { function e() { - c(t.value); + d(r.value); } - function c(d) { - "number" == typeof a.properties[b] && (d = Number(d)); - a.properties[b] = d; + function d(c) { + "number" == typeof a.properties[b] && (c = Number(c)); + a.properties[b] = c; if (a.onPropertyChanged) { - a.onPropertyChanged(b, d); + a.onPropertyChanged(b, c); } - k.close(); + g.close(); a.setDirtyCanvas(!0, !0); } if (a && void 0 !== a.properties[b]) { - d = d || {}; - var l = "string"; - null !== a.properties[b] && (l = typeof a.properties[b]); - var n = null; - a.getPropertyInfo && (n = a.getPropertyInfo(b)); + c = c || {}; + var f = "string"; + null !== a.properties[b] && (f = typeof a.properties[b]); + var k = null; + a.getPropertyInfo && (k = a.getPropertyInfo(b)); if (a.properties_info) { - for (var f = 0; f < a.properties_info.length; ++f) { - if (a.properties_info[f].name == b) { - n = a.properties_info[f]; + for (var p = 0; p < a.properties_info.length; ++p) { + if (a.properties_info[p].name == b) { + k = a.properties_info[p]; break; } } } - void 0 !== n && null !== n && n.type && (l = n.type); - var q = ""; - if ("string" == l || "number" == l) { - q = ""; + void 0 !== k && null !== k && k.type && (f = k.type); + var m = ""; + if ("string" == f || "number" == f) { + m = ""; } else { - if ("enum" == l && n.values) { - q = ""; + for (p in k.values) { + var h = k.values.constructor === Array ? k.values[p] : p; + m += ""; } - q += ""; + m += ""; } else { - "boolean" == l && (q = ""); + "boolean" == f && (m = ""); } } - var k = this.createDialog("" + b + "" + q + "", d); - if ("enum" == l && n.values) { - var t = k.querySelector("select"); - t.addEventListener("change", function(a) { - c(a.target.value); + var g = this.createDialog("" + b + "" + m + "", c); + if ("enum" == f && k.values) { + var r = g.querySelector("select"); + r.addEventListener("change", function(a) { + d(a.target.value); }); } else { - if ("boolean" == l) { - (t = k.querySelector("input")) && t.addEventListener("click", function(a) { - c(!!t.checked); + if ("boolean" == f) { + (r = g.querySelector("input")) && r.addEventListener("click", function(a) { + d(!!r.checked); }); } else { - if (t = k.querySelector("input")) { - t.value = void 0 !== a.properties[b] ? a.properties[b] : "", t.addEventListener("keydown", function(a) { + if (r = g.querySelector("input")) { + r.value = void 0 !== a.properties[b] ? a.properties[b] : "", r.addEventListener("keydown", function(a) { 13 == a.keyCode && (e(), a.preventDefault(), a.stopPropagation()); }); } } } - k.querySelector("button").addEventListener("click", e); + g.querySelector("button").addEventListener("click", e); } }; - c.prototype.createDialog = function(a, b) { + d.prototype.createDialog = function(a, b) { b = b || {}; - var d = document.createElement("div"); - d.className = "graphdialog"; - d.innerHTML = a; + var c = document.createElement("div"); + c.className = "graphdialog"; + c.innerHTML = a; a = this.canvas.getBoundingClientRect(); - var e = -20, c = -20; - a && (e -= a.left, c -= a.top); - b.position ? (e += b.position[0], c += b.position[1]) : b.event ? (e += b.event.pageX, c += b.event.pageY) : (e += 0.5 * this.canvas.width, c += 0.5 * this.canvas.height); - d.style.left = e + "px"; - d.style.top = c + "px"; - this.canvas.parentNode.appendChild(d); - d.close = function() { + var e = -20, d = -20; + a && (e -= a.left, d -= a.top); + b.position ? (e += b.position[0], d += b.position[1]) : b.event ? (e += b.event.pageX, d += b.event.pageY) : (e += 0.5 * this.canvas.width, d += 0.5 * this.canvas.height); + c.style.left = e + "px"; + c.style.top = d + "px"; + this.canvas.parentNode.appendChild(c); + c.close = function() { this.parentNode && this.parentNode.removeChild(this); }; - return d; + return c; }; - c.onMenuNodeCollapse = function(a, b, d, e, c) { - c.flags.collapsed = !c.flags.collapsed; - c.setDirtyCanvas(!0, !0); + d.onMenuNodeCollapse = function(a, b, c, e, d) { + d.flags.collapsed = !d.flags.collapsed; + d.setDirtyCanvas(!0, !0); }; - c.onMenuNodePin = function(a, b, d, e, c) { - c.pin(); + d.onMenuNodePin = function(a, b, c, e, d) { + d.pin(); }; - c.onMenuNodeMode = function(a, b, d, c, l) { - new e.ContextMenu(["Always", "On Event", "On Trigger", "Never"], {event:d, callback:function(a) { - if (l) { + d.onMenuNodeMode = function(a, b, c, e, d) { + new h.ContextMenu(["Always", "On Event", "On Trigger", "Never"], {event:c, callback:function(a) { + if (d) { switch(a) { case "On Event": - l.mode = e.ON_EVENT; + d.mode = h.ON_EVENT; break; case "On Trigger": - l.mode = e.ON_TRIGGER; + d.mode = h.ON_TRIGGER; break; case "Never": - l.mode = e.NEVER; + d.mode = h.NEVER; break; default: - l.mode = e.ALWAYS; + d.mode = h.ALWAYS; } } - }, parentMenu:c, node:l}); + }, parentMenu:e, node:d}); return !1; }; - c.onMenuNodeColors = function(a, b, d, l, h) { - if (!h) { + d.onMenuNodeColors = function(a, b, c, e, f) { + if (!f) { throw "no node for color"; } b = []; - for (var f in c.node_colors) { - a = c.node_colors[f], a = {value:f, content:"" + f + ""}, b.push(a); + for (var p in d.node_colors) { + a = d.node_colors[p], a = {value:p, content:"" + p + ""}, b.push(a); } - new e.ContextMenu(b, {event:d, callback:function(a) { - h && (a = c.node_colors[a.value]) && (h.color = a.color, h.bgcolor = a.bgcolor, h.setDirtyCanvas(!0)); - }, parentMenu:l, node:h}); + new h.ContextMenu(b, {event:c, callback:function(a) { + f && (a = d.node_colors[a.value]) && (f.color = a.color, f.bgcolor = a.bgcolor, f.setDirtyCanvas(!0)); + }, parentMenu:e, node:f}); return !1; }; - c.onMenuNodeShapes = function(a, b, d, c, l) { - if (!l) { + d.onMenuNodeShapes = function(a, b, c, e, d) { + if (!d) { throw "no node passed"; } - new e.ContextMenu(e.VALID_SHAPES, {event:d, callback:function(a) { - l && (l.shape = a, l.setDirtyCanvas(!0)); - }, parentMenu:c, node:l}); + new h.ContextMenu(h.VALID_SHAPES, {event:c, callback:function(a) { + d && (d.shape = a, d.setDirtyCanvas(!0)); + }, parentMenu:e, node:d}); return !1; }; - c.onMenuNodeRemove = function(a, b, d, e, c) { - if (!c) { + d.onMenuNodeRemove = function(a, b, c, e, d) { + if (!d) { throw "no node passed"; } - 0 != c.removable && (c.graph.remove(c), c.setDirtyCanvas(!0, !0)); + 0 != d.removable && (d.graph.remove(d), d.setDirtyCanvas(!0, !0)); }; - c.onMenuNodeClone = function(a, b, d, e, c) { - 0 != c.clonable && (a = c.clone()) && (a.pos = [c.pos[0] + 5, c.pos[1] + 5], c.graph.add(a), c.setDirtyCanvas(!0, !0)); + d.onMenuNodeClone = function(a, b, c, e, d) { + 0 != d.clonable && (a = d.clone()) && (a.pos = [d.pos[0] + 5, d.pos[1] + 5], d.graph.add(a), d.setDirtyCanvas(!0, !0)); }; - c.node_colors = {red:{color:"#FAA", bgcolor:"#944"}, green:{color:"#AFA", bgcolor:"#494"}, blue:{color:"#AAF", bgcolor:"#449"}, cyan:{color:"#AFF", bgcolor:"#499"}, purple:{color:"#FAF", bgcolor:"#949"}, yellow:{color:"#FFA", bgcolor:"#994"}, black:{color:"#777", bgcolor:"#000"}, white:{color:"#FFF", bgcolor:"#AAA"}}; - c.prototype.getCanvasMenuOptions = function() { + d.node_colors = {red:{color:"#FAA", bgcolor:"#944"}, green:{color:"#AFA", bgcolor:"#494"}, blue:{color:"#AAF", bgcolor:"#449"}, cyan:{color:"#AFF", bgcolor:"#499"}, purple:{color:"#FAF", bgcolor:"#949"}, yellow:{color:"#FFA", bgcolor:"#994"}, black:{color:"#777", bgcolor:"#000"}, white:{color:"#FFF", bgcolor:"#AAA"}}; + d.prototype.getCanvasMenuOptions = function() { if (this.getMenuOptions) { var a = this.getMenuOptions(); } else { - a = [{content:"Add Node", has_submenu:!0, callback:c.onMenuAdd}], this._graph_stack && 0 < this._graph_stack.length && (a = [{content:"Close subgraph", callback:this.closeSubgraph.bind(this)}, null].concat(a)); + a = [{content:"Add Node", has_submenu:!0, callback:d.onMenuAdd}], this._graph_stack && 0 < this._graph_stack.length && (a = [{content:"Close subgraph", callback:this.closeSubgraph.bind(this)}, null].concat(a)); } if (this.getExtraMenuOptions) { var b = this.getExtraMenuOptions(this, a); @@ -2730,150 +2754,150 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return a; }; - c.prototype.getNodeMenuOptions = function(a) { - var b = a.getMenuOptions ? a.getMenuOptions(this) : [{content:"Inputs", has_submenu:!0, disabled:!0, callback:c.showMenuNodeOptionalInputs}, {content:"Outputs", has_submenu:!0, disabled:!0, callback:c.showMenuNodeOptionalOutputs}, null, {content:"Properties", has_submenu:!0, callback:c.onShowMenuNodeProperties}, null, {content:"Title", callback:c.onShowTitleEditor}, {content:"Mode", has_submenu:!0, callback:c.onMenuNodeMode}, {content:"Resize", callback:c.onResizeNode}, {content:"Collapse", callback:c.onMenuNodeCollapse}, - {content:"Pin", callback:c.onMenuNodePin}, {content:"Colors", has_submenu:!0, callback:c.onMenuNodeColors}, {content:"Shapes", has_submenu:!0, callback:c.onMenuNodeShapes}, null]; + d.prototype.getNodeMenuOptions = function(a) { + var b = a.getMenuOptions ? a.getMenuOptions(this) : [{content:"Inputs", has_submenu:!0, disabled:!0, callback:d.showMenuNodeOptionalInputs}, {content:"Outputs", has_submenu:!0, disabled:!0, callback:d.showMenuNodeOptionalOutputs}, null, {content:"Properties", has_submenu:!0, callback:d.onShowMenuNodeProperties}, null, {content:"Title", callback:d.onShowTitleEditor}, {content:"Mode", has_submenu:!0, callback:d.onMenuNodeMode}, {content:"Resize", callback:d.onResizeNode}, {content:"Collapse", callback:d.onMenuNodeCollapse}, + {content:"Pin", callback:d.onMenuNodePin}, {content:"Colors", has_submenu:!0, callback:d.onMenuNodeColors}, {content:"Shapes", has_submenu:!0, callback:d.onMenuNodeShapes}, null]; if (a.getExtraMenuOptions) { - var d = a.getExtraMenuOptions(this); - d && (d.push(null), b = d.concat(b)); + var c = a.getExtraMenuOptions(this); + c && (c.push(null), b = c.concat(b)); } - !1 !== a.clonable && b.push({content:"Clone", callback:c.onMenuNodeClone}); - !1 !== a.removable && b.push(null, {content:"Remove", callback:c.onMenuNodeRemove}); - a.onGetInputs && (d = a.onGetInputs()) && d.length && (b[0].disabled = !1); - a.onGetOutputs && (d = a.onGetOutputs()) && d.length && (b[1].disabled = !1); + !1 !== a.clonable && b.push({content:"Clone", callback:d.onMenuNodeClone}); + !1 !== a.removable && b.push(null, {content:"Remove", callback:d.onMenuNodeRemove}); + a.onGetInputs && (c = a.onGetInputs()) && c.length && (b[0].disabled = !1); + a.onGetOutputs && (c = a.onGetOutputs()) && c.length && (b[1].disabled = !1); if (a.graph && a.graph.onGetNodeMenuOptions) { a.graph.onGetNodeMenuOptions(b, a); } return b; }; - c.prototype.processContextMenu = function(a, b) { - var d = this, l = c.active_canvas.getCanvasWindow(), f = null, q = {event:b, callback:function(b, e, c) { + d.prototype.processContextMenu = function(a, b) { + var c = this, e = d.active_canvas.getCanvasWindow(), f = null, p = {event:b, callback:function(b, e, d) { if (b) { if ("Remove Slot" == b.content) { - var l = b.slot; - l.input ? a.removeInput(l.slot) : l.output && a.removeOutput(l.slot); + var f = b.slot; + f.input ? a.removeInput(f.slot) : f.output && a.removeOutput(f.slot); } else { if ("Rename Slot" == b.content) { - l = b.slot; - var n = d.createDialog("Name", e), f = n.querySelector("input"); - n.querySelector("button").addEventListener("click", function(b) { - if (f.value) { - if (b = l.input ? a.getInputInfo(l.slot) : a.getOutputInfo(l.slot)) { - b.label = f.value; + f = b.slot; + var k = c.createDialog("Name", e), p = k.querySelector("input"); + k.querySelector("button").addEventListener("click", function(b) { + if (p.value) { + if (b = f.input ? a.getInputInfo(f.slot) : a.getOutputInfo(f.slot)) { + b.label = p.value; } - d.setDirty(!0); + c.setDirty(!0); } - n.close(); + k.close(); }); } } } - }, node:a}, n = null; - a && (n = a.getSlotInPosition(b.canvasX, b.canvasY), c.active_node = a); - n ? (f = [], f.push(n.locked ? "Cannot remove" : {content:"Remove Slot", slot:n}), f.push({content:"Rename Slot", slot:n}), q.title = (n.input ? n.input.type : n.output.type) || "*", n.input && n.input.type == e.ACTION && (q.title = "Action"), n.output && n.output.type == e.EVENT && (q.title = "Event")) : f = a ? this.getNodeMenuOptions(a) : this.getCanvasMenuOptions(); - f && new e.ContextMenu(f, q, l); + }, node:a}, k = null; + a && (k = a.getSlotInPosition(b.canvasX, b.canvasY), d.active_node = a); + k ? (f = [], f.push(k.locked ? "Cannot remove" : {content:"Remove Slot", slot:k}), f.push({content:"Rename Slot", slot:k}), p.title = (k.input ? k.input.type : k.output.type) || "*", k.input && k.input.type == h.ACTION && (p.title = "Action"), k.output && k.output.type == h.EVENT && (p.title = "Event")) : f = a ? this.getNodeMenuOptions(a) : this.getCanvasMenuOptions(); + f && new h.ContextMenu(f, p, e); }; - this.CanvasRenderingContext2D && (CanvasRenderingContext2D.prototype.roundRect = function(a, b, d, e, c, l) { - void 0 === c && (c = 5); - void 0 === l && (l = c); + this.CanvasRenderingContext2D && (CanvasRenderingContext2D.prototype.roundRect = function(a, b, c, e, d, f) { + void 0 === d && (d = 5); + void 0 === f && (f = d); this.beginPath(); - this.moveTo(a + c, b); - this.lineTo(a + d - c, b); - this.quadraticCurveTo(a + d, b, a + d, b + c); - this.lineTo(a + d, b + e - l); - this.quadraticCurveTo(a + d, b + e, a + d - l, b + e); - this.lineTo(a + l, b + e); - this.quadraticCurveTo(a, b + e, a, b + e - l); - this.lineTo(a, b + c); - this.quadraticCurveTo(a, b, a + c, b); + this.moveTo(a + d, b); + this.lineTo(a + c - d, b); + this.quadraticCurveTo(a + c, b, a + c, b + d); + this.lineTo(a + c, b + e - f); + this.quadraticCurveTo(a + c, b + e, a + c - f, b + e); + this.lineTo(a + f, b + e); + this.quadraticCurveTo(a, b + e, a, b + e - f); + this.lineTo(a, b + d); + this.quadraticCurveTo(a, b, a + d, b); }); - e.compareObjects = function(a, b) { - for (var d in a) { - if (a[d] != b[d]) { + h.compareObjects = function(a, b) { + for (var c in a) { + if (a[c] != b[c]) { return !1; } } return !0; }; - e.distance = p; - e.colorToString = function(a) { + h.distance = m; + h.colorToString = function(a) { return "rgba(" + Math.round(255 * a[0]).toFixed() + "," + Math.round(255 * a[1]).toFixed() + "," + Math.round(255 * a[2]).toFixed() + "," + (4 == a.length ? a[3].toFixed(2) : "1.0") + ")"; }; - e.isInsideRectangle = t; - e.growBounding = function(a, b, d) { + h.isInsideRectangle = r; + h.growBounding = function(a, b, c) { b < a[0] ? a[0] = b : b > a[2] && (a[2] = b); - d < a[1] ? a[1] = d : d > a[3] && (a[3] = d); + c < a[1] ? a[1] = c : c > a[3] && (a[3] = c); }; - e.isInsideBounding = function(a, b) { + h.isInsideBounding = function(a, b) { return a[0] < b[0][0] || a[1] < b[0][1] || a[0] > b[1][0] || a[1] > b[1][1] ? !1 : !0; }; - e.overlapBounding = v; - e.hex2num = function(a) { + h.overlapBounding = u; + h.hex2num = function(a) { "#" == a.charAt(0) && (a = a.slice(1)); a = a.toUpperCase(); - for (var b = Array(3), d = 0, e, c, l = 0; 6 > l; l += 2) { - e = "0123456789ABCDEF".indexOf(a.charAt(l)), c = "0123456789ABCDEF".indexOf(a.charAt(l + 1)), b[d] = 16 * e + c, d++; + for (var b = Array(3), c = 0, e, d, f = 0; 6 > f; f += 2) { + e = "0123456789ABCDEF".indexOf(a.charAt(f)), d = "0123456789ABCDEF".indexOf(a.charAt(f + 1)), b[c] = 16 * e + d, c++; } return b; }; - e.num2hex = function(a) { - for (var b = "#", d, e, c = 0; 3 > c; c++) { - d = a[c] / 16, e = a[c] % 16, b += "0123456789ABCDEF".charAt(d) + "0123456789ABCDEF".charAt(e); + h.num2hex = function(a) { + for (var b = "#", c, e, d = 0; 3 > d; d++) { + c = a[d] / 16, e = a[d] % 16, b += "0123456789ABCDEF".charAt(c) + "0123456789ABCDEF".charAt(e); } return b; }; - w.prototype.addItem = function(a, b, d) { + w.prototype.addItem = function(a, b, c) { function e(a) { var b = this.value; - b && b.has_submenu && c.call(this, a); + b && b.has_submenu && d.call(this, a); } - function c(a) { + function d(a) { var b = this.value, e = !0; - l.current_submenu && l.current_submenu.close(a); - if (d.callback) { - var c = d.callback.call(this, b, d, a, l, d.node); - !0 === c && (e = !1); + f.current_submenu && f.current_submenu.close(a); + if (c.callback) { + var d = c.callback.call(this, b, c, a, f, c.node); + !0 === d && (e = !1); } - if (b && (b.callback && !d.ignore_item_callbacks && !0 !== b.disabled && (c = b.callback.call(this, b, d, a, l, d.node), !0 === c && (e = !1)), b.submenu)) { + if (b && (b.callback && !c.ignore_item_callbacks && !0 !== b.disabled && (d = b.callback.call(this, b, c, a, f, c.node), !0 === d && (e = !1)), b.submenu)) { if (!b.submenu.options) { throw "ContextMenu submenu needs options"; } - new l.constructor(b.submenu.options, {callback:b.submenu.callback, event:a, parentMenu:l, ignore_item_callbacks:b.submenu.ignore_item_callbacks, title:b.submenu.title, autoopen:d.autoopen}); + new f.constructor(b.submenu.options, {callback:b.submenu.callback, event:a, parentMenu:f, ignore_item_callbacks:b.submenu.ignore_item_callbacks, title:b.submenu.title, autoopen:c.autoopen}); e = !1; } - e && !l.lock && l.close(); + e && !f.lock && f.close(); } - var l = this; - d = d || {}; - var n = document.createElement("div"); - n.className = "litemenu-entry submenu"; - var f = !1; + var f = this; + c = c || {}; + var k = document.createElement("div"); + k.className = "litemenu-entry submenu"; + var p = !1; if (null === b) { - n.classList.add("separator"); + k.classList.add("separator"); } else { - n.innerHTML = b && b.title ? b.title : a; - if (n.value = b) { - b.disabled && (f = !0, n.classList.add("disabled")), (b.submenu || b.has_submenu) && n.classList.add("has_submenu"); + k.innerHTML = b && b.title ? b.title : a; + if (k.value = b) { + b.disabled && (p = !0, k.classList.add("disabled")), (b.submenu || b.has_submenu) && k.classList.add("has_submenu"); } - "function" == typeof b ? (n.dataset.value = a, n.onclick_callback = b) : n.dataset.value = b; - b.className && (n.className += " " + b.className); + "function" == typeof b ? (k.dataset.value = a, k.onclick_callback = b) : k.dataset.value = b; + b.className && (k.className += " " + b.className); } - this.root.appendChild(n); - f || n.addEventListener("click", c); - d.autoopen && n.addEventListener("mouseenter", e); - return n; + this.root.appendChild(k); + p || k.addEventListener("click", d); + c.autoopen && k.addEventListener("mouseenter", e); + return k; }; w.prototype.close = function(a, b) { this.root.parentNode && this.root.parentNode.removeChild(this.root); this.parentMenu && !b && (this.parentMenu.lock = !1, this.parentMenu.current_submenu = null, void 0 === a ? this.parentMenu.close() : a && !w.isCursorOverElement(a, this.parentMenu.root) && w.trigger(this.parentMenu.root, "mouseleave", a)); this.current_submenu && this.current_submenu.close(a, !0); }; - w.trigger = function(a, b, d, e) { - var c = document.createEvent("CustomEvent"); - c.initCustomEvent(b, !0, !0, d); - c.srcElement = e; - a.dispatchEvent ? a.dispatchEvent(c) : a.__events && a.__events.dispatchEvent(c); - return c; + w.trigger = function(a, b, c, e) { + var d = document.createEvent("CustomEvent"); + d.initCustomEvent(b, !0, !0, c); + d.srcElement = e; + a.dispatchEvent ? a.dispatchEvent(d) : a.__events && a.__events.dispatchEvent(d); + return d; }; w.prototype.getTopMenu = function() { return this.options.parentMenu ? this.options.parentMenu.getTopMenu() : this; @@ -2882,47 +2906,50 @@ $jscomp.polyfill("Array.prototype.values", function(u) { return this.options.parentMenu ? this.options.parentMenu.getFirstEvent() : this.options.event; }; w.isCursorOverElement = function(a, b) { - var d = a.pageX; + var c = a.pageX; a = a.pageY; - return (b = b.getBoundingClientRect()) ? a > b.top && a < b.top + b.height && d > b.left && d < b.left + b.width ? !0 : !1 : !1; + return (b = b.getBoundingClientRect()) ? a > b.top && a < b.top + b.height && c > b.left && c < b.left + b.width ? !0 : !1 : !1; }; - e.ContextMenu = w; - e.closeAllContextMenus = function(a) { + h.ContextMenu = w; + h.closeAllContextMenus = function(a) { a = a || window; a = a.document.querySelectorAll(".litecontextmenu"); if (a.length) { - for (var b = [], d = 0; d < a.length; d++) { - b.push(a[d]); + for (var b = [], c = 0; c < a.length; c++) { + b.push(a[c]); } - for (d in b) { - b[d].close ? b[d].close() : b[d].parentNode && b[d].parentNode.removeChild(b[d]); + for (c in b) { + b[c].close ? b[c].close() : b[c].parentNode && b[c].parentNode.removeChild(b[c]); } } }; - e.extendClass = function(a, b) { - for (var d in b) { - a.hasOwnProperty(d) || (a[d] = b[d]); + h.extendClass = function(a, b) { + for (var c in b) { + a.hasOwnProperty(c) || (a[c] = b[c]); } if (b.prototype) { - for (d in b.prototype) { - b.prototype.hasOwnProperty(d) && !a.prototype.hasOwnProperty(d) && (b.prototype.__lookupGetter__(d) ? a.prototype.__defineGetter__(d, b.prototype.__lookupGetter__(d)) : a.prototype[d] = b.prototype[d], b.prototype.__lookupSetter__(d) && a.prototype.__defineSetter__(d, b.prototype.__lookupSetter__(d))); + for (c in b.prototype) { + b.prototype.hasOwnProperty(c) && !a.prototype.hasOwnProperty(c) && (b.prototype.__lookupGetter__(c) ? a.prototype.__defineGetter__(c, b.prototype.__lookupGetter__(c)) : a.prototype[c] = b.prototype[c], b.prototype.__lookupSetter__(c) && a.prototype.__defineSetter__(c, b.prototype.__lookupSetter__(c))); } } }; - e.getParameterNames = function(a) { + h.getParameterNames = function(a) { return (a + "").replace(/[/][/].*$/mg, "").replace(/\s+/g, "").replace(/[/][*][^/*]*[*][/]/g, "").split("){", 1)[0].replace(/^[^(]*[(]/, "").replace(/=[^,]+/g, "").split(",").filter(Boolean); }; + Math.clamp = function(a, b, c) { + return b > a ? b : c < a ? c : a; + }; "undefined" == typeof window || window.requestAnimationFrame || (window.requestAnimationFrame = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(a) { window.setTimeout(a, 1000 / 60); }); })(this); "undefined" != typeof exports && (exports.LiteGraph = this.LiteGraph); -(function(u) { +(function(t) { function f() { this.addOutput("in ms", "number"); this.addOutput("in sec", "number"); } - function k() { + function g() { this.size = [120, 60]; this.subgraph = new LGraph; this.subgraph._subgraph_node = this; @@ -2935,52 +2962,53 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.subgraph.onGlobalOutputTypeChanged = this.onSubgraphTypeChangeGlobalOutput.bind(this); this.bgcolor = "#663"; } - function c() { + function d() { var a = "input_" + (1000 * Math.random()).toFixed(); this.addOutput(a, null); this.properties = {name:a, type:null}; var b = this; Object.defineProperty(this.properties, "name", {get:function() { return a; - }, set:function(d) { - if ("" != d) { + }, set:function(c) { + if ("" != c) { var e = b.getOutputInfo(0); - e.name != d && (e.name = d, b.graph && b.graph.renameGlobalInput(a, d), a = d); + e.name != c && (e.name = c, b.graph && b.graph.renameGlobalInput(a, c), a = c); } }, enumerable:!0}); Object.defineProperty(this.properties, "type", {get:function() { return b.outputs[0].type; - }, set:function(d) { - b.outputs[0].type = d; + }, set:function(c) { + b.outputs[0].type = c; b.graph && b.graph.changeGlobalInputType(a, b.outputs[0].type); }, enumerable:!0}); } - function p() { + function m() { var a = "output_" + (1000 * Math.random()).toFixed(); this.addInput(a, null); + this._value = null; this.properties = {name:a, type:null}; var b = this; Object.defineProperty(this.properties, "name", {get:function() { return a; - }, set:function(d) { - if ("" != d) { + }, set:function(c) { + if ("" != c) { var e = b.getInputInfo(0); - e.name != d && (e.name = d, b.graph && b.graph.renameGlobalOutput(a, d), a = d); + e.name != c && (e.name = c, b.graph && b.graph.renameGlobalOutput(a, c), a = c); } }, enumerable:!0}); Object.defineProperty(this.properties, "type", {get:function() { return b.inputs[0].type; - }, set:function(d) { - b.inputs[0].type = d; + }, set:function(c) { + b.inputs[0].type = c; b.graph && b.graph.changeGlobalInputType(a, b.inputs[0].type); }, enumerable:!0}); } - function t() { + function r() { this.addOutput("value", "number"); this.addProperty("value", 1.0); this.editable = {property:"value", type:"number"}; } - function v() { + function u() { this.size = [60, 20]; this.addInput("value", 0, {label:""}); this.addOutput("value", 0, {label:""}); @@ -2991,14 +3019,14 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addOutput("out", 0); this.size = [40, 20]; } - function e() { - this.mode = l.ON_EVENT; + function h() { + this.mode = e.ON_EVENT; this.size = [60, 20]; this.addProperty("msg", ""); - this.addInput("log", l.EVENT); + this.addInput("log", e.EVENT); this.addInput("msg", 0); } - function q() { + function p() { this.size = [60, 20]; this.addProperty("onExecute", ""); this.addInput("in", ""); @@ -3007,155 +3035,159 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addOutput("out2", ""); this._func = null; } - var l = u.LiteGraph; + var e = t.LiteGraph; f.title = "Time"; f.desc = "Time"; f.prototype.onExecute = function() { this.setOutputData(0, 1000 * this.graph.globaltime); this.setOutputData(1, this.graph.globaltime); }; - l.registerNodeType("basic/time", f); - k.title = "Subgraph"; - k.desc = "Graph inside a node"; - k.prototype.onSubgraphNewGlobalInput = function(a, b) { + e.registerNodeType("basic/time", f); + g.title = "Subgraph"; + g.desc = "Graph inside a node"; + g.prototype.onSubgraphNewGlobalInput = function(a, b) { this.addInput(a, b); }; - k.prototype.onSubgraphRenamedGlobalInput = function(a, b) { + g.prototype.onSubgraphRenamedGlobalInput = function(a, b) { a = this.findInputSlot(a); -1 != a && (this.getInputInfo(a).name = b); }; - k.prototype.onSubgraphTypeChangeGlobalInput = function(a, b) { + g.prototype.onSubgraphTypeChangeGlobalInput = function(a, b) { a = this.findInputSlot(a); -1 != a && (this.getInputInfo(a).type = b); }; - k.prototype.onSubgraphNewGlobalOutput = function(a, b) { + g.prototype.onSubgraphNewGlobalOutput = function(a, b) { this.addOutput(a, b); }; - k.prototype.onSubgraphRenamedGlobalOutput = function(a, b) { + g.prototype.onSubgraphRenamedGlobalOutput = function(a, b) { a = this.findOutputSlot(a); -1 != a && (this.getOutputInfo(a).name = b); }; - k.prototype.onSubgraphTypeChangeGlobalOutput = function(a, b) { + g.prototype.onSubgraphTypeChangeGlobalOutput = function(a, b) { a = this.findOutputSlot(a); -1 != a && (this.getOutputInfo(a).type = b); }; - k.prototype.getExtraMenuOptions = function(a) { + g.prototype.getExtraMenuOptions = function(a) { var b = this; return [{content:"Open", callback:function() { a.openSubgraph(b.subgraph); }}]; }; - k.prototype.onExecute = function() { + g.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { - var b = this.inputs[a], d = this.getInputData(a); - this.subgraph.setGlobalInputData(b.name, d); + var b = this.inputs[a], c = this.getInputData(a); + this.subgraph.setGlobalInputData(b.name, c); } } this.subgraph.runStep(); if (this.outputs) { for (a = 0; a < this.outputs.length; a++) { - d = this.subgraph.getGlobalOutputData(this.outputs[a].name), this.setOutputData(a, d); + c = this.subgraph.getGlobalOutputData(this.outputs[a].name), this.setOutputData(a, c); } } }; - k.prototype.configure = function(a) { + g.prototype.configure = function(a) { LGraphNode.prototype.configure.call(this, a); }; - k.prototype.serialize = function() { + g.prototype.serialize = function() { var a = LGraphNode.prototype.serialize.call(this); a.subgraph = this.subgraph.serialize(); return a; }; - k.prototype.clone = function() { - var a = l.createNode(this.type), b = this.serialize(); + g.prototype.clone = function() { + var a = e.createNode(this.type), b = this.serialize(); delete b.id; delete b.inputs; delete b.outputs; a.configure(b); return a; }; - l.registerNodeType("graph/subgraph", k); - c.title = "Input"; - c.desc = "Input of the graph"; - c.prototype.onAdded = function() { + e.registerNodeType("graph/subgraph", g); + d.title = "Input"; + d.desc = "Input of the graph"; + d.prototype.onAdded = function() { this.graph.addGlobalInput(this.properties.name, this.properties.type); }; - c.prototype.onExecute = function() { + d.prototype.onExecute = function() { var a = this.graph.global_inputs[this.properties.name]; a && this.setOutputData(0, a.value); }; - l.registerNodeType("graph/input", c); - p.title = "Ouput"; - p.desc = "Output of the graph"; - p.prototype.onAdded = function() { + e.registerNodeType("graph/input", d); + m.title = "Output"; + m.desc = "Output of the graph"; + m.prototype.onAdded = function() { this.graph.addGlobalOutput(this.properties.name, this.properties.type); }; - p.prototype.onExecute = function() { - this.graph.setGlobalOutputData(this.properties.name, this.getInputData(0)); + m.prototype.getValue = function() { + return this._value; }; - l.registerNodeType("graph/output", p); - t.title = "Const"; - t.desc = "Constant value"; - t.prototype.setValue = function(a) { + m.prototype.onExecute = function() { + this._value = this.getInputData(0); + this.graph.setGlobalOutputData(this.properties.name, this._value); + }; + e.registerNodeType("graph/output", m); + r.title = "Const"; + r.desc = "Constant value"; + r.prototype.setValue = function(a) { "string" == typeof a && (a = parseFloat(a)); this.properties.value = a; this.setDirtyCanvas(!0); }; - t.prototype.onExecute = function() { + r.prototype.onExecute = function() { this.setOutputData(0, parseFloat(this.properties.value)); }; - t.prototype.onDrawBackground = function(a) { + r.prototype.onDrawBackground = function(a) { this.outputs[0].label = this.properties.value.toFixed(3); }; - t.prototype.onWidget = function(a, b) { + r.prototype.onWidget = function(a, b) { "value" == b.name && this.setValue(b.value); }; - l.registerNodeType("basic/const", t); - v.title = "Watch"; - v.desc = "Show value of input"; - v.prototype.onExecute = function() { + e.registerNodeType("basic/const", r); + u.title = "Watch"; + u.desc = "Show value of input"; + u.prototype.onExecute = function() { this.properties.value = this.getInputData(0); this.setOutputData(0, this.properties.value); }; - v.prototype.onDrawBackground = function(a) { + u.prototype.onDrawBackground = function(a) { this.inputs[0] && null != this.properties.value && (this.properties.value.constructor === Number ? this.inputs[0].label = this.properties.value.toFixed(3) : ((a = this.properties.value) && a.length && (a = Array.prototype.slice.call(a).join(",")), this.inputs[0].label = a)); }; - l.registerNodeType("basic/watch", v); + e.registerNodeType("basic/watch", u); w.title = "Pass"; w.desc = "Allows to connect different types"; w.prototype.onExecute = function() { this.setOutputData(0, this.getInputData(0)); }; - l.registerNodeType("basic/pass", w); - e.title = "Console"; - e.desc = "Show value inside the console"; - e.prototype.onAction = function(a, b) { + e.registerNodeType("basic/pass", w); + h.title = "Console"; + h.desc = "Show value inside the console"; + h.prototype.onAction = function(a, b) { "log" == a ? console.log(b) : "warn" == a ? console.warn(b) : "error" == a && console.error(b); }; - e.prototype.onExecute = function() { + h.prototype.onExecute = function() { var a = this.getInputData(1); null !== a && (this.properties.msg = a); console.log(a); }; - e.prototype.onGetInputs = function() { - return [["log", l.ACTION], ["warn", l.ACTION], ["error", l.ACTION]]; + h.prototype.onGetInputs = function() { + return [["log", e.ACTION], ["warn", e.ACTION], ["error", e.ACTION]]; }; - l.registerNodeType("basic/console", e); - q.title = "Script"; - q.desc = "executes a code"; - q.widgets_info = {onExecute:{type:"code"}}; - q.prototype.onPropertyChanged = function(a, b) { - if ("onExecute" == a && l.allow_scripts) { + e.registerNodeType("basic/console", h); + p.title = "Script"; + p.desc = "executes a code"; + p.widgets_info = {onExecute:{type:"code"}}; + p.prototype.onPropertyChanged = function(a, b) { + if ("onExecute" == a && e.allow_scripts) { this._func = null; try { this._func = new Function(b); - } catch (d) { - console.error("Error parsing script"), console.error(d); + } catch (c) { + console.error("Error parsing script"), console.error(c); } } }; - q.prototype.onExecute = function() { + p.prototype.onExecute = function() { if (this._func) { try { this._func.call(this); @@ -3164,203 +3196,237 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - l.registerNodeType("basic/script", q); + e.registerNodeType("basic/script", p); })(this); -(function(u) { +(function(t) { function f() { this.size = [60, 20]; - this.addInput("event", p.ACTION); + this.addInput("event", m.ACTION); } - function k() { + function g() { this.size = [60, 20]; - this.addInput("event", p.ACTION); - this.addOutput("event", p.EVENT); + this.addInput("event", m.ACTION); + this.addOutput("event", m.EVENT); this.properties = {equal_to:"", has_property:"", property_equal_to:""}; } - function c() { + function d() { this.size = [60, 20]; this.addProperty("time", 1000); - this.addInput("event", p.ACTION); - this.addOutput("on_time", p.EVENT); + this.addInput("event", m.ACTION); + this.addOutput("on_time", m.EVENT); this._pending = []; } - var p = u.LiteGraph; + var m = t.LiteGraph; f.title = "Log Event"; f.desc = "Log event in console"; - f.prototype.onAction = function(c, f) { - console.log(c, f); + f.prototype.onAction = function(d, f) { + console.log(d, f); }; - p.registerNodeType("events/log", f); - k.title = "Filter Event"; - k.desc = "Blocks events that do not match the filter"; - k.prototype.onAction = function(c, f) { + m.registerNodeType("events/log", f); + g.title = "Filter Event"; + g.desc = "Blocks events that do not match the filter"; + g.prototype.onAction = function(d, f) { if (null != f && (!this.properties.equal_to || this.properties.equal_to == f)) { - if (this.properties.has_property && (c = f[this.properties.has_property], null == c || this.properties.property_equal_to && this.properties.property_equal_to != c)) { + if (this.properties.has_property && (d = f[this.properties.has_property], null == d || this.properties.property_equal_to && this.properties.property_equal_to != d)) { return; } this.triggerSlot(0, f); } }; - p.registerNodeType("events/filter", k); - c.title = "Delay"; - c.desc = "Delays one event"; - c.prototype.onAction = function(c, f) { + m.registerNodeType("events/filter", g); + d.title = "Delay"; + d.desc = "Delays one event"; + d.prototype.onAction = function(d, f) { this._pending.push([this.properties.time, f]); }; - c.prototype.onExecute = function() { - for (var c = 1000 * this.graph.elapsed_time, f = 0; f < this._pending.length; ++f) { - var p = this._pending[f]; - p[0] -= c; - 0 < p[0] || (this._pending.splice(f, 1), --f, this.trigger(null, p[1])); + d.prototype.onExecute = function() { + for (var d = 1000 * this.graph.elapsed_time, f = 0; f < this._pending.length; ++f) { + var m = this._pending[f]; + m[0] -= d; + 0 < m[0] || (this._pending.splice(f, 1), --f, this.trigger(null, m[1])); } }; - c.prototype.onGetInputs = function() { - return [["event", p.ACTION]]; + d.prototype.onGetInputs = function() { + return [["event", m.ACTION]]; }; - p.registerNodeType("events/delay", c); + m.registerNodeType("events/delay", d); })(this); -(function(u) { +(function(t) { function f() { - this.addOutput("clicked", w.EVENT); + this.addOutput("clicked", h.EVENT); this.addProperty("text", ""); this.addProperty("font", "40px Arial"); this.addProperty("message", ""); this.size = [64, 84]; } - function k() { + function g() { + this.addInput("", "boolean"); + this.addOutput("v", "boolean"); + this.addOutput("e", h.EVENT); + this.properties = {font:"", value:!1}; + this.size = [124, 64]; + } + function d() { this.addOutput("", "number"); this.size = [64, 84]; this.properties = {min:0, max:1, value:0.5, wcolor:"#7AF", size:50}; } - function c() { + function m() { this.size = [160, 26]; this.addOutput("", "number"); this.properties = {wcolor:"#7AF", min:0, max:1, value:0.5}; } - function p() { + function r() { this.size = [160, 26]; this.addInput("", "number"); this.properties = {min:0, max:1, value:0, wcolor:"#AAF"}; } - function t() { + function u() { this.addInputs("", 0); this.properties = {value:"...", font:"Arial", fontsize:18, color:"#AAA", align:"left", glowSize:0, decimals:1}; } - function v() { + function w() { this.size = [200, 100]; this.properties = {borderColor:"#ffffff", bgcolorTop:"#f0f0f0", bgcolorBottom:"#e0e0e0", shadowSize:2, borderRadius:3}; } - var w = u.LiteGraph; + var h = t.LiteGraph; f.title = "Button"; f.desc = "Triggers an event"; - f.prototype.onDrawForeground = function(e) { - !this.flags.collapsed && (e.fillStyle = "black", e.fillRect(1, 1, this.size[0] - 3, this.size[1] - 3), e.fillStyle = "#AAF", e.fillRect(0, 0, this.size[0] - 3, this.size[1] - 3), e.fillStyle = this.clicked ? "white" : this.mouseOver ? "#668" : "#334", e.fillRect(1, 1, this.size[0] - 4, this.size[1] - 4), this.properties.text || 0 === this.properties.text) && (e.textAlign = "center", e.fillStyle = this.clicked ? "black" : "white", this.properties.font && (e.font = this.properties.font), e.fillText(this.properties.text, - 0.5 * this.size[0], 0.85 * this.size[1]), e.textAlign = "left"); + f.prototype.onDrawForeground = function(d) { + !this.flags.collapsed && (d.fillStyle = "black", d.fillRect(1, 1, this.size[0] - 3, this.size[1] - 3), d.fillStyle = "#AAF", d.fillRect(0, 0, this.size[0] - 3, this.size[1] - 3), d.fillStyle = this.clicked ? "white" : this.mouseOver ? "#668" : "#334", d.fillRect(1, 1, this.size[0] - 4, this.size[1] - 4), this.properties.text || 0 === this.properties.text) && (d.textAlign = "center", d.fillStyle = this.clicked ? "black" : "white", this.properties.font && (d.font = this.properties.font), d.fillText(this.properties.text, + 0.5 * this.size[0], 0.85 * this.size[1]), d.textAlign = "left"); }; - f.prototype.onMouseDown = function(e, c) { - if (1 < c[0] && 1 < c[1] && c[0] < this.size[0] - 2 && c[1] < this.size[1] - 2) { + f.prototype.onMouseDown = function(d, e) { + if (1 < e[0] && 1 < e[1] && e[0] < this.size[0] - 2 && e[1] < this.size[1] - 2) { return this.clicked = !0, this.trigger("clicked", this.properties.message), !0; } }; - f.prototype.onMouseUp = function(e) { + f.prototype.onMouseUp = function(d) { this.clicked = !1; }; - w.registerNodeType("widget/button", f); - k.title = "Knob"; - k.desc = "Circular controller"; - k.widgets = [{name:"increase", text:"+", type:"minibutton"}, {name:"decrease", text:"-", type:"minibutton"}]; - k.prototype.onAdded = function() { + h.registerNodeType("widget/button", f); + g.title = "Toggle"; + g.desc = "Toggles between true or false"; + g.prototype.onDrawForeground = function(d) { + if (!this.flags.collapsed) { + var e = 0.5 * this.size[1], a = 0.8 * this.size[1]; + d.fillStyle = "#AAA"; + d.fillRect(10, a - e, e, e); + d.fillStyle = this.properties.value ? "#AEF" : "#000"; + d.fillRect(10 + 0.25 * e, a - e + 0.25 * e, .5 * e, .5 * e); + d.textAlign = "left"; + d.font = this.properties.font || (0.8 * e).toFixed(0) + "px Arial"; + d.fillStyle = "#AAA"; + d.fillText(this.title, e + 20, 0.85 * a); + d.textAlign = "left"; + } + }; + g.prototype.onExecute = function() { + var d = this.getInputData(0); + null != d && (this.properties.value = d); + this.setOutputData(0, this.properties.value); + }; + g.prototype.onMouseDown = function(d, e) { + if (1 < e[0] && 1 < e[1] && e[0] < this.size[0] - 2 && e[1] < this.size[1] - 2) { + return this.properties.value = !this.properties.value, this.trigger("clicked", this.properties.value), !0; + } + }; + h.registerNodeType("widget/toggle", g); + d.title = "Knob"; + d.desc = "Circular controller"; + d.widgets = [{name:"increase", text:"+", type:"minibutton"}, {name:"decrease", text:"-", type:"minibutton"}]; + d.prototype.onAdded = function() { this.value = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); this.imgbg = this.loadImage("imgs/knob_bg.png"); this.imgfg = this.loadImage("imgs/knob_fg.png"); }; - k.prototype.onDrawImageKnob = function(e) { + d.prototype.onDrawImageKnob = function(d) { if (this.imgfg && this.imgfg.width) { - var c = 0.5 * this.imgbg.width, l = this.size[0] / this.imgfg.width; - e.save(); - e.translate(0, 20); - e.scale(l, l); - e.drawImage(this.imgbg, 0, 0); - e.translate(c, c); - e.rotate(2 * this.value * Math.PI * 6 / 8 + 10 * Math.PI / 8); - e.translate(-c, -c); - e.drawImage(this.imgfg, 0, 0); - e.restore(); - this.title && (e.font = "bold 16px Criticized,Tahoma", e.fillStyle = "rgba(100,100,100,0.8)", e.textAlign = "center", e.fillText(this.title.toUpperCase(), 0.5 * this.size[0], 18), e.textAlign = "left"); + var e = 0.5 * this.imgbg.width, a = this.size[0] / this.imgfg.width; + d.save(); + d.translate(0, 20); + d.scale(a, a); + d.drawImage(this.imgbg, 0, 0); + d.translate(e, e); + d.rotate(2 * this.value * Math.PI * 6 / 8 + 10 * Math.PI / 8); + d.translate(-e, -e); + d.drawImage(this.imgfg, 0, 0); + d.restore(); + this.title && (d.font = "bold 16px Criticized,Tahoma", d.fillStyle = "rgba(100,100,100,0.8)", d.textAlign = "center", d.fillText(this.title.toUpperCase(), 0.5 * this.size[0], 18), d.textAlign = "left"); } }; - k.prototype.onDrawVectorKnob = function(e) { + d.prototype.onDrawVectorKnob = function(d) { if (this.imgfg && this.imgfg.width) { - e.lineWidth = 1; - e.strokeStyle = this.mouseOver ? "#FFF" : "#AAA"; - e.fillStyle = "#000"; - e.beginPath(); - e.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.5 * this.properties.size, 0, 2 * Math.PI, !0); - e.stroke(); - 0 < this.value && (e.strokeStyle = this.properties.wcolor, e.lineWidth = 0.2 * this.properties.size, e.beginPath(), e.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.35 * this.properties.size, -0.5 * Math.PI + 2 * Math.PI * this.value, -0.5 * Math.PI, !0), e.stroke(), e.lineWidth = 1); - e.font = 0.2 * this.properties.size + "px Arial"; - e.fillStyle = "#AAA"; - e.textAlign = "center"; - var c = this.properties.value; - "number" == typeof c && (c = c.toFixed(2)); - e.fillText(c, 0.5 * this.size[0], 0.65 * this.size[1]); - e.textAlign = "left"; + d.lineWidth = 1; + d.strokeStyle = this.mouseOver ? "#FFF" : "#AAA"; + d.fillStyle = "#000"; + d.beginPath(); + d.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.5 * this.properties.size, 0, 2 * Math.PI, !0); + d.stroke(); + 0 < this.value && (d.strokeStyle = this.properties.wcolor, d.lineWidth = 0.2 * this.properties.size, d.beginPath(), d.arc(0.5 * this.size[0], 0.5 * this.size[1] + 10, 0.35 * this.properties.size, -0.5 * Math.PI + 2 * Math.PI * this.value, -0.5 * Math.PI, !0), d.stroke(), d.lineWidth = 1); + d.font = 0.2 * this.properties.size + "px Arial"; + d.fillStyle = "#AAA"; + d.textAlign = "center"; + var e = this.properties.value; + "number" == typeof e && (e = e.toFixed(2)); + d.fillText(e, 0.5 * this.size[0], 0.65 * this.size[1]); + d.textAlign = "left"; } }; - k.prototype.onDrawForeground = function(e) { - this.onDrawImageKnob(e); + d.prototype.onDrawForeground = function(d) { + this.onDrawImageKnob(d); }; - k.prototype.onExecute = function() { + d.prototype.onExecute = function() { this.setOutputData(0, this.properties.value); - this.boxcolor = w.colorToString([this.value, this.value, this.value]); + this.boxcolor = h.colorToString([this.value, this.value, this.value]); }; - k.prototype.onMouseDown = function(e) { + d.prototype.onMouseDown = function(d) { if (this.imgfg && this.imgfg.width) { this.center = [0.5 * this.size[0], 0.5 * this.size[1] + 20]; this.radius = 0.5 * this.size[0]; - if (20 > e.canvasY - this.pos[1] || w.distance([e.canvasX, e.canvasY], [this.pos[0] + this.center[0], this.pos[1] + this.center[1]]) > this.radius) { + if (20 > d.canvasY - this.pos[1] || h.distance([d.canvasX, d.canvasY], [this.pos[0] + this.center[0], this.pos[1] + this.center[1]]) > this.radius) { return !1; } - this.oldmouse = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; + this.oldmouse = [d.canvasX - this.pos[0], d.canvasY - this.pos[1]]; this.captureInput(!0); return !0; } }; - k.prototype.onMouseMove = function(e) { + d.prototype.onMouseMove = function(d) { if (this.oldmouse) { - e = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; - var c = this.value; - c -= 0.01 * (e[1] - this.oldmouse[1]); - 1.0 < c ? c = 1.0 : 0.0 > c && (c = 0.0); - this.value = c; + d = [d.canvasX - this.pos[0], d.canvasY - this.pos[1]]; + var e = this.value; + e -= 0.01 * (d[1] - this.oldmouse[1]); + 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); + this.value = e; this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; - this.oldmouse = e; + this.oldmouse = d; this.setDirtyCanvas(!0); } }; - k.prototype.onMouseUp = function(e) { + d.prototype.onMouseUp = function(d) { this.oldmouse && (this.oldmouse = null, this.captureInput(!1)); }; - k.prototype.onMouseLeave = function(e) { + d.prototype.onMouseLeave = function(d) { }; - k.prototype.onWidget = function(e, c) { - if ("increase" == c.name) { + d.prototype.onWidget = function(d, e) { + if ("increase" == e.name) { this.onPropertyChanged("size", this.properties.size + 10); } else { - if ("decrease" == c.name) { + if ("decrease" == e.name) { this.onPropertyChanged("size", this.properties.size - 10); } } }; - k.prototype.onPropertyChanged = function(e, c) { - if ("wcolor" == e) { - this.properties[e] = c; + d.prototype.onPropertyChanged = function(d, e) { + if ("wcolor" == d) { + this.properties[d] = e; } else { - if ("size" == e) { - c = parseInt(c), this.properties[e] = c, this.size = [c + 4, c + 24], this.setDirtyCanvas(!0, !0); + if ("size" == d) { + e = parseInt(e), this.properties[d] = e, this.size = [e + 4, e + 24], this.setDirtyCanvas(!0, !0); } else { - if ("min" == e || "max" == e || "value" == e) { - this.properties[e] = parseFloat(c); + if ("min" == d || "max" == d || "value" == d) { + this.properties[d] = parseFloat(e); } else { return !1; } @@ -3368,144 +3434,144 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return !0; }; - w.registerNodeType("widget/knob", k); - c.title = "H.Slider"; - c.desc = "Linear slider controller"; - c.prototype.onAdded = function() { + h.registerNodeType("widget/knob", d); + m.title = "H.Slider"; + m.desc = "Linear slider controller"; + m.prototype.onAdded = function() { this.value = 0.5; this.imgfg = this.loadImage("imgs/slider_fg.png"); }; - c.prototype.onDrawVectorial = function(e) { - this.imgfg && this.imgfg.width && (e.lineWidth = 1, e.strokeStyle = this.mouseOver ? "#FFF" : "#AAA", e.fillStyle = "#000", e.beginPath(), e.rect(2, 0, this.size[0] - 4, 20), e.stroke(), e.fillStyle = this.properties.wcolor, e.beginPath(), e.rect(2 + (this.size[0] - 4 - 20) * this.value, 0, 20, 20), e.fill()); + m.prototype.onDrawVectorial = function(d) { + this.imgfg && this.imgfg.width && (d.lineWidth = 1, d.strokeStyle = this.mouseOver ? "#FFF" : "#AAA", d.fillStyle = "#000", d.beginPath(), d.rect(2, 0, this.size[0] - 4, 20), d.stroke(), d.fillStyle = this.properties.wcolor, d.beginPath(), d.rect(2 + (this.size[0] - 4 - 20) * this.value, 0, 20, 20), d.fill()); }; - c.prototype.onDrawImage = function(e) { - this.imgfg && this.imgfg.width && (e.lineWidth = 1, e.fillStyle = "#000", e.fillRect(2, 9, this.size[0] - 4, 2), e.strokeStyle = "#333", e.beginPath(), e.moveTo(2, 9), e.lineTo(this.size[0] - 4, 9), e.stroke(), e.strokeStyle = "#AAA", e.beginPath(), e.moveTo(2, 11), e.lineTo(this.size[0] - 4, 11), e.stroke(), e.drawImage(this.imgfg, 2 + (this.size[0] - 4) * this.value - 0.5 * this.imgfg.width, 0.5 * -this.imgfg.height + 10)); + m.prototype.onDrawImage = function(d) { + this.imgfg && this.imgfg.width && (d.lineWidth = 1, d.fillStyle = "#000", d.fillRect(2, 9, this.size[0] - 4, 2), d.strokeStyle = "#333", d.beginPath(), d.moveTo(2, 9), d.lineTo(this.size[0] - 4, 9), d.stroke(), d.strokeStyle = "#AAA", d.beginPath(), d.moveTo(2, 11), d.lineTo(this.size[0] - 4, 11), d.stroke(), d.drawImage(this.imgfg, 2 + (this.size[0] - 4) * this.value - 0.5 * this.imgfg.width, 0.5 * -this.imgfg.height + 10)); }; - c.prototype.onDrawForeground = function(e) { - this.onDrawImage(e); + m.prototype.onDrawForeground = function(d) { + this.onDrawImage(d); }; - c.prototype.onExecute = function() { + m.prototype.onExecute = function() { this.properties.value = this.properties.min + (this.properties.max - this.properties.min) * this.value; this.setOutputData(0, this.properties.value); - this.boxcolor = w.colorToString([this.value, this.value, this.value]); + this.boxcolor = h.colorToString([this.value, this.value, this.value]); }; - c.prototype.onMouseDown = function(e) { - if (0 > e.canvasY - this.pos[1]) { + m.prototype.onMouseDown = function(d) { + if (0 > d.canvasY - this.pos[1]) { return !1; } - this.oldmouse = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; + this.oldmouse = [d.canvasX - this.pos[0], d.canvasY - this.pos[1]]; this.captureInput(!0); return !0; }; - c.prototype.onMouseMove = function(e) { + m.prototype.onMouseMove = function(d) { if (this.oldmouse) { - e = [e.canvasX - this.pos[0], e.canvasY - this.pos[1]]; - var c = this.value; - c += (e[0] - this.oldmouse[0]) / this.size[0]; - 1.0 < c ? c = 1.0 : 0.0 > c && (c = 0.0); - this.value = c; - this.oldmouse = e; + d = [d.canvasX - this.pos[0], d.canvasY - this.pos[1]]; + var e = this.value; + e += (d[0] - this.oldmouse[0]) / this.size[0]; + 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); + this.value = e; + this.oldmouse = d; this.setDirtyCanvas(!0); } }; - c.prototype.onMouseUp = function(e) { + m.prototype.onMouseUp = function(d) { this.oldmouse = null; this.captureInput(!1); }; - c.prototype.onMouseLeave = function(e) { + m.prototype.onMouseLeave = function(d) { }; - c.prototype.onPropertyChanged = function(e, c) { - if ("wcolor" == e) { - this.properties[e] = c; + m.prototype.onPropertyChanged = function(d, e) { + if ("wcolor" == d) { + this.properties[d] = e; } else { return !1; } return !0; }; - w.registerNodeType("widget/hslider", c); - p.title = "Progress"; - p.desc = "Shows data in linear progress"; - p.prototype.onExecute = function() { - var e = this.getInputData(0); - void 0 != e && (this.properties.value = e); + h.registerNodeType("widget/hslider", m); + r.title = "Progress"; + r.desc = "Shows data in linear progress"; + r.prototype.onExecute = function() { + var d = this.getInputData(0); + void 0 != d && (this.properties.value = d); }; - p.prototype.onDrawForeground = function(e) { - e.lineWidth = 1; - e.fillStyle = this.properties.wcolor; - var c = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); - c = Math.min(1, c); - c = Math.max(0, c); - e.fillRect(2, 2, (this.size[0] - 4) * c, this.size[1] - 4); + r.prototype.onDrawForeground = function(d) { + d.lineWidth = 1; + d.fillStyle = this.properties.wcolor; + var e = (this.properties.value - this.properties.min) / (this.properties.max - this.properties.min); + e = Math.min(1, e); + e = Math.max(0, e); + d.fillRect(2, 2, (this.size[0] - 4) * e, this.size[1] - 4); }; - w.registerNodeType("widget/progress", p); - t.title = "Text"; - t.desc = "Shows the input value"; - t.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"led_text", text:"LED", type:"minibutton"}, {name:"normal_text", text:"Normal", type:"minibutton"}]; - t.prototype.onDrawForeground = function(e) { - e.fillStyle = this.properties.color; - var c = this.properties.value; - this.properties.glowSize ? (e.shadowColor = this.properties.color, e.shadowOffsetX = 0, e.shadowOffsetY = 0, e.shadowBlur = this.properties.glowSize) : e.shadowColor = "transparent"; - var l = this.properties.fontsize; - e.textAlign = this.properties.align; - e.font = l.toString() + "px " + this.properties.font; - this.str = "number" == typeof c ? c.toFixed(this.properties.decimals) : c; + h.registerNodeType("widget/progress", r); + u.title = "Text"; + u.desc = "Shows the input value"; + u.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"led_text", text:"LED", type:"minibutton"}, {name:"normal_text", text:"Normal", type:"minibutton"}]; + u.prototype.onDrawForeground = function(d) { + d.fillStyle = this.properties.color; + var e = this.properties.value; + this.properties.glowSize ? (d.shadowColor = this.properties.color, d.shadowOffsetX = 0, d.shadowOffsetY = 0, d.shadowBlur = this.properties.glowSize) : d.shadowColor = "transparent"; + var a = this.properties.fontsize; + d.textAlign = this.properties.align; + d.font = a.toString() + "px " + this.properties.font; + this.str = "number" == typeof e ? e.toFixed(this.properties.decimals) : e; if ("string" == typeof this.str) { - c = this.str.split("\\n"); - for (var a in c) { - e.fillText(c[a], "left" == this.properties.align ? 15 : this.size[0] - 15, -0.15 * l + l * (parseInt(a) + 1)); + e = this.str.split("\\n"); + for (var b in e) { + d.fillText(e[b], "left" == this.properties.align ? 15 : this.size[0] - 15, -0.15 * a + a * (parseInt(b) + 1)); } } - e.shadowColor = "transparent"; - this.last_ctx = e; - e.textAlign = "left"; + d.shadowColor = "transparent"; + this.last_ctx = d; + d.textAlign = "left"; }; - t.prototype.onExecute = function() { - var e = this.getInputData(0); - null != e && (this.properties.value = e); + u.prototype.onExecute = function() { + var d = this.getInputData(0); + null != d && (this.properties.value = d); }; - t.prototype.resize = function() { + u.prototype.resize = function() { if (this.last_ctx) { - var e = this.str.split("\\n"); + var d = this.str.split("\\n"); this.last_ctx.font = this.properties.fontsize + "px " + this.properties.font; - var c = 0, l; - for (l in e) { - var a = this.last_ctx.measureText(e[l]).width; - c < a && (c = a); + var e = 0, a; + for (a in d) { + var b = this.last_ctx.measureText(d[a]).width; + e < b && (e = b); } - this.size[0] = c + 20; - this.size[1] = 4 + e.length * this.properties.fontsize; + this.size[0] = e + 20; + this.size[1] = 4 + d.length * this.properties.fontsize; this.setDirtyCanvas(!0); } }; - t.prototype.onWidget = function(c, f) { - "resize" == f.name ? this.resize() : "led_text" == f.name ? (this.properties.font = "Digital", this.properties.glowSize = 4, this.setDirtyCanvas(!0)) : "normal_text" == f.name && (this.properties.font = "Arial", this.setDirtyCanvas(!0)); + u.prototype.onWidget = function(d, e) { + "resize" == e.name ? this.resize() : "led_text" == e.name ? (this.properties.font = "Digital", this.properties.glowSize = 4, this.setDirtyCanvas(!0)) : "normal_text" == e.name && (this.properties.font = "Arial", this.setDirtyCanvas(!0)); }; - t.prototype.onPropertyChanged = function(c, f) { - this.properties[c] = f; - this.str = "number" == typeof f ? f.toFixed(3) : f; + u.prototype.onPropertyChanged = function(d, e) { + this.properties[d] = e; + this.str = "number" == typeof e ? e.toFixed(3) : e; return !0; }; - w.registerNodeType("widget/text", t); - v.title = "Panel"; - v.desc = "Non interactive panel"; - v.widgets = [{name:"update", text:"Update", type:"button"}]; - v.prototype.createGradient = function(c) { - "" == this.properties.bgcolorTop || "" == this.properties.bgcolorBottom ? this.lineargradient = 0 : (this.lineargradient = c.createLinearGradient(0, 0, 0, this.size[1]), this.lineargradient.addColorStop(0, this.properties.bgcolorTop), this.lineargradient.addColorStop(1, this.properties.bgcolorBottom)); + h.registerNodeType("widget/text", u); + w.title = "Panel"; + w.desc = "Non interactive panel"; + w.widgets = [{name:"update", text:"Update", type:"button"}]; + w.prototype.createGradient = function(d) { + "" == this.properties.bgcolorTop || "" == this.properties.bgcolorBottom ? this.lineargradient = 0 : (this.lineargradient = d.createLinearGradient(0, 0, 0, this.size[1]), this.lineargradient.addColorStop(0, this.properties.bgcolorTop), this.lineargradient.addColorStop(1, this.properties.bgcolorBottom)); }; - v.prototype.onDrawForeground = function(c) { - null == this.lineargradient && this.createGradient(c); - this.lineargradient && (c.lineWidth = 1, c.strokeStyle = this.properties.borderColor, c.fillStyle = this.lineargradient, this.properties.shadowSize ? (c.shadowColor = "#000", c.shadowOffsetX = 0, c.shadowOffsetY = 0, c.shadowBlur = this.properties.shadowSize) : c.shadowColor = "transparent", c.roundRect(0, 0, this.size[0] - 1, this.size[1] - 1, this.properties.shadowSize), c.fill(), c.shadowColor = "transparent", c.stroke()); + w.prototype.onDrawForeground = function(d) { + null == this.lineargradient && this.createGradient(d); + this.lineargradient && (d.lineWidth = 1, d.strokeStyle = this.properties.borderColor, d.fillStyle = this.lineargradient, this.properties.shadowSize ? (d.shadowColor = "#000", d.shadowOffsetX = 0, d.shadowOffsetY = 0, d.shadowBlur = this.properties.shadowSize) : d.shadowColor = "transparent", d.roundRect(0, 0, this.size[0] - 1, this.size[1] - 1, this.properties.shadowSize), d.fill(), d.shadowColor = "transparent", d.stroke()); }; - v.prototype.onWidget = function(c, f) { - "update" == f.name && (this.lineargradient = null, this.setDirtyCanvas(!0)); + w.prototype.onWidget = function(d, e) { + "update" == e.name && (this.lineargradient = null, this.setDirtyCanvas(!0)); }; - w.registerNodeType("widget/panel", v); + h.registerNodeType("widget/panel", w); })(this); -(function(u) { +(function(t) { function f() { this.addOutput("left_x_axis", "number"); this.addOutput("left_y_axis", "number"); - this.addOutput("button_pressed", k.EVENT); + this.addOutput("button_pressed", g.EVENT); this.properties = {gamepad_index:0, threshold:0.1}; this._left_axis = new Float32Array(2); this._right_axis = new Float32Array(2); @@ -3513,202 +3579,202 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._previous_buttons = new Uint8Array(17); this._current_buttons = new Uint8Array(17); } - var k = u.LiteGraph; + var g = t.LiteGraph; f.title = "Gamepad"; f.desc = "gets the input of the gamepad"; f.zero = new Float32Array(2); f.buttons = "a b x y lb rb lt rt back start ls rs home".split(" "); f.prototype.onExecute = function() { - var c = this.getGamepad(), p = this.properties.threshold || 0.0; - c && (this._left_axis[0] = Math.abs(c.xbox.axes.lx) > p ? c.xbox.axes.lx : 0, this._left_axis[1] = Math.abs(c.xbox.axes.ly) > p ? c.xbox.axes.ly : 0, this._right_axis[0] = Math.abs(c.xbox.axes.rx) > p ? c.xbox.axes.rx : 0, this._right_axis[1] = Math.abs(c.xbox.axes.ry) > p ? c.xbox.axes.ry : 0, this._triggers[0] = Math.abs(c.xbox.axes.ltrigger) > p ? c.xbox.axes.ltrigger : 0, this._triggers[1] = Math.abs(c.xbox.axes.rtrigger) > p ? c.xbox.axes.rtrigger : 0); + var d = this.getGamepad(), m = this.properties.threshold || 0.0; + d && (this._left_axis[0] = Math.abs(d.xbox.axes.lx) > m ? d.xbox.axes.lx : 0, this._left_axis[1] = Math.abs(d.xbox.axes.ly) > m ? d.xbox.axes.ly : 0, this._right_axis[0] = Math.abs(d.xbox.axes.rx) > m ? d.xbox.axes.rx : 0, this._right_axis[1] = Math.abs(d.xbox.axes.ry) > m ? d.xbox.axes.ry : 0, this._triggers[0] = Math.abs(d.xbox.axes.ltrigger) > m ? d.xbox.axes.ltrigger : 0, this._triggers[1] = Math.abs(d.xbox.axes.rtrigger) > m ? d.xbox.axes.rtrigger : 0); if (this.outputs) { - for (p = 0; p < this.outputs.length; p++) { - var k = this.outputs[p]; - if (k.links && k.links.length) { - var v = null; - if (c) { - switch(k.name) { + for (m = 0; m < this.outputs.length; m++) { + var g = this.outputs[m]; + if (g.links && g.links.length) { + var u = null; + if (d) { + switch(g.name) { case "left_axis": - v = this._left_axis; + u = this._left_axis; break; case "right_axis": - v = this._right_axis; + u = this._right_axis; break; case "left_x_axis": - v = this._left_axis[0]; + u = this._left_axis[0]; break; case "left_y_axis": - v = this._left_axis[1]; + u = this._left_axis[1]; break; case "right_x_axis": - v = this._right_axis[0]; + u = this._right_axis[0]; break; case "right_y_axis": - v = this._right_axis[1]; + u = this._right_axis[1]; break; case "trigger_left": - v = this._triggers[0]; + u = this._triggers[0]; break; case "trigger_right": - v = this._triggers[1]; + u = this._triggers[1]; break; case "a_button": - v = c.xbox.buttons.a ? 1 : 0; + u = d.xbox.buttons.a ? 1 : 0; break; case "b_button": - v = c.xbox.buttons.b ? 1 : 0; + u = d.xbox.buttons.b ? 1 : 0; break; case "x_button": - v = c.xbox.buttons.x ? 1 : 0; + u = d.xbox.buttons.x ? 1 : 0; break; case "y_button": - v = c.xbox.buttons.y ? 1 : 0; + u = d.xbox.buttons.y ? 1 : 0; break; case "lb_button": - v = c.xbox.buttons.lb ? 1 : 0; + u = d.xbox.buttons.lb ? 1 : 0; break; case "rb_button": - v = c.xbox.buttons.rb ? 1 : 0; + u = d.xbox.buttons.rb ? 1 : 0; break; case "ls_button": - v = c.xbox.buttons.ls ? 1 : 0; + u = d.xbox.buttons.ls ? 1 : 0; break; case "rs_button": - v = c.xbox.buttons.rs ? 1 : 0; + u = d.xbox.buttons.rs ? 1 : 0; break; case "start_button": - v = c.xbox.buttons.start ? 1 : 0; + u = d.xbox.buttons.start ? 1 : 0; break; case "back_button": - v = c.xbox.buttons.back ? 1 : 0; + u = d.xbox.buttons.back ? 1 : 0; break; case "button_pressed": - for (k = 0; k < this._current_buttons.length; ++k) { - this._current_buttons[k] && !this._previous_buttons[k] && this.triggerSlot(p, f.buttons[k]); + for (g = 0; g < this._current_buttons.length; ++g) { + this._current_buttons[g] && !this._previous_buttons[g] && this.triggerSlot(m, f.buttons[g]); } } } else { - switch(k.name) { + switch(g.name) { case "button_pressed": break; case "left_axis": case "right_axis": - v = f.zero; + u = f.zero; break; default: - v = 0; + u = 0; } } - this.setOutputData(p, v); + this.setOutputData(m, u); } } } }; f.prototype.getGamepad = function() { - var c = navigator.getGamepads || navigator.webkitGetGamepads || navigator.mozGetGamepads; - if (!c) { + var d = navigator.getGamepads || navigator.webkitGetGamepads || navigator.mozGetGamepads; + if (!d) { return null; } - c = c.call(navigator); + d = d.call(navigator); this._previous_buttons.set(this._current_buttons); for (var f = this.properties.gamepad_index; 4 > f; f++) { - if (c[f]) { - c = c[f]; + if (d[f]) { + d = d[f]; f = this.xbox_mapping; f || (f = this.xbox_mapping = {axes:[], buttons:{}, hat:""}); - f.axes.lx = c.axes[0]; - f.axes.ly = c.axes[1]; - f.axes.rx = c.axes[2]; - f.axes.ry = c.axes[3]; - f.axes.ltrigger = c.buttons[6].value; - f.axes.rtrigger = c.buttons[7].value; - for (var k = 0; k < c.buttons.length; k++) { - switch(this._current_buttons[k] = c.buttons[k].pressed, k) { + f.axes.lx = d.axes[0]; + f.axes.ly = d.axes[1]; + f.axes.rx = d.axes[2]; + f.axes.ry = d.axes[3]; + f.axes.ltrigger = d.buttons[6].value; + f.axes.rtrigger = d.buttons[7].value; + for (var g = 0; g < d.buttons.length; g++) { + switch(this._current_buttons[g] = d.buttons[g].pressed, g) { case 0: - f.buttons.a = c.buttons[k].pressed; + f.buttons.a = d.buttons[g].pressed; break; case 1: - f.buttons.b = c.buttons[k].pressed; + f.buttons.b = d.buttons[g].pressed; break; case 2: - f.buttons.x = c.buttons[k].pressed; + f.buttons.x = d.buttons[g].pressed; break; case 3: - f.buttons.y = c.buttons[k].pressed; + f.buttons.y = d.buttons[g].pressed; break; case 4: - f.buttons.lb = c.buttons[k].pressed; + f.buttons.lb = d.buttons[g].pressed; break; case 5: - f.buttons.rb = c.buttons[k].pressed; + f.buttons.rb = d.buttons[g].pressed; break; case 6: - f.buttons.lt = c.buttons[k].pressed; + f.buttons.lt = d.buttons[g].pressed; break; case 7: - f.buttons.rt = c.buttons[k].pressed; + f.buttons.rt = d.buttons[g].pressed; break; case 8: - f.buttons.back = c.buttons[k].pressed; + f.buttons.back = d.buttons[g].pressed; break; case 9: - f.buttons.start = c.buttons[k].pressed; + f.buttons.start = d.buttons[g].pressed; break; case 10: - f.buttons.ls = c.buttons[k].pressed; + f.buttons.ls = d.buttons[g].pressed; break; case 11: - f.buttons.rs = c.buttons[k].pressed; + f.buttons.rs = d.buttons[g].pressed; break; case 12: - c.buttons[k].pressed && (f.hat += "up"); + d.buttons[g].pressed && (f.hat += "up"); break; case 13: - c.buttons[k].pressed && (f.hat += "down"); + d.buttons[g].pressed && (f.hat += "down"); break; case 14: - c.buttons[k].pressed && (f.hat += "left"); + d.buttons[g].pressed && (f.hat += "left"); break; case 15: - c.buttons[k].pressed && (f.hat += "right"); + d.buttons[g].pressed && (f.hat += "right"); break; case 16: - f.buttons.home = c.buttons[k].pressed; + f.buttons.home = d.buttons[g].pressed; } } - c.xbox = f; - return c; + d.xbox = f; + return d; } } }; - f.prototype.onDrawBackground = function(c) { - var f = this._left_axis, k = this._right_axis; - c.strokeStyle = "#88A"; - c.strokeRect(0.5 * (f[0] + 1) * this.size[0] - 4, 0.5 * (f[1] + 1) * this.size[1] - 4, 8, 8); - c.strokeStyle = "#8A8"; - c.strokeRect(0.5 * (k[0] + 1) * this.size[0] - 4, 0.5 * (k[1] + 1) * this.size[1] - 4, 8, 8); + f.prototype.onDrawBackground = function(d) { + var f = this._left_axis, g = this._right_axis; + d.strokeStyle = "#88A"; + d.strokeRect(0.5 * (f[0] + 1) * this.size[0] - 4, 0.5 * (f[1] + 1) * this.size[1] - 4, 8, 8); + d.strokeStyle = "#8A8"; + d.strokeRect(0.5 * (g[0] + 1) * this.size[0] - 4, 0.5 * (g[1] + 1) * this.size[1] - 4, 8, 8); f = this.size[1] / this._current_buttons.length; - c.fillStyle = "#AEB"; - for (k = 0; k < this._current_buttons.length; ++k) { - this._current_buttons[k] && c.fillRect(0, f * k, 6, f); + d.fillStyle = "#AEB"; + for (g = 0; g < this._current_buttons.length; ++g) { + this._current_buttons[g] && d.fillRect(0, f * g, 6, f); } }; f.prototype.onGetOutputs = function() { - return [["left_axis", "vec2"], ["right_axis", "vec2"], ["left_x_axis", "number"], ["left_y_axis", "number"], ["right_x_axis", "number"], ["right_y_axis", "number"], ["trigger_left", "number"], ["trigger_right", "number"], ["a_button", "number"], ["b_button", "number"], ["x_button", "number"], ["y_button", "number"], ["lb_button", "number"], ["rb_button", "number"], ["ls_button", "number"], ["rs_button", "number"], ["start", "number"], ["back", "number"], ["button_pressed", k.EVENT]]; + return [["left_axis", "vec2"], ["right_axis", "vec2"], ["left_x_axis", "number"], ["left_y_axis", "number"], ["right_x_axis", "number"], ["right_y_axis", "number"], ["trigger_left", "number"], ["trigger_right", "number"], ["a_button", "number"], ["b_button", "number"], ["x_button", "number"], ["y_button", "number"], ["lb_button", "number"], ["rb_button", "number"], ["ls_button", "number"], ["rs_button", "number"], ["start", "number"], ["back", "number"], ["button_pressed", g.EVENT]]; }; - k.registerNodeType("input/gamepad", f); + g.registerNodeType("input/gamepad", f); })(this); -(function(u) { +(function(t) { function f() { this.addInput("in", "*"); this.size = [60, 20]; } - function k() { + function g() { this.addInput("in"); this.addOutput("out"); this.size = [60, 20]; } - function c() { + function d() { this.addInput("in", "number", {locked:!0}); this.addOutput("out", "number", {locked:!0}); this.addProperty("in", 0); @@ -3717,20 +3783,20 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addProperty("out_min", 0); this.addProperty("out_max", 1); } - function p() { + function m() { this.addOutput("value", "number"); this.addProperty("min", 0); this.addProperty("max", 1); this.size = [60, 20]; } - function t() { + function r() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; this.addProperty("min", 0); this.addProperty("max", 1); } - function v() { + function u() { this.properties = {f:0.5}; this.addInput("A", "number"); this.addInput("B", "number"); @@ -3741,20 +3807,20 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addOutput("out", "number"); this.size = [60, 20]; } + function h() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + } + function p() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.size = [60, 20]; + } function e() { this.addInput("in", "number"); this.addOutput("out", "number"); this.size = [60, 20]; - } - function q() { - this.addInput("in", "number"); - this.addOutput("out", "number"); - this.size = [60, 20]; - } - function l() { - this.addInput("in", "number"); - this.addOutput("out", "number"); - this.size = [60, 20]; this.properties = {A:0, B:1}; } function a() { @@ -3771,15 +3837,22 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._values = new Float32Array(10); this._current = 0; } - function d() { + function c() { + this.addInput("in", "number"); + this.addOutput("out", "number"); + this.addProperty("factor", 0.1); + this.size = [60, 20]; + this._value = null; + } + function n() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("=", "number"); this.addProperty("A", 1); this.addProperty("B", 1); - this.addProperty("OP", "+", "string", {values:d.values}); + this.addProperty("OP", "+", "string", {values:n.values}); } - function g() { + function l() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("A==B", "boolean"); @@ -3787,34 +3860,34 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addProperty("A", 0); this.addProperty("B", 0); } - function h() { + function v() { this.addInput("A", "number"); this.addInput("B", "number"); this.addOutput("out", "boolean"); this.addProperty("A", 1); this.addProperty("B", 1); - this.addProperty("OP", ">", "string", {values:h.values}); + this.addProperty("OP", ">", "string", {values:v.values}); this.size = [60, 40]; } - function x() { + function k() { this.addInput("inc", "number"); this.addOutput("total", "number"); this.addProperty("increment", 1); this.addProperty("value", 0); } - function n() { + function y() { this.addInput("v", "number"); this.addOutput("sin", "number"); this.addProperty("amplitude", 1); this.addProperty("offset", 0); this.bgImageUrl = "nodes/imgs/icon-sin.png"; } - function z() { + function B() { this.addInput("vec2", "vec2"); this.addOutput("x", "number"); this.addOutput("y", "number"); } - function A() { + function C() { this.addInputs([["x", "number"], ["y", "number"]]); this.addOutput("vec2", "vec2"); this.properties = {x:0, y:0}; @@ -3826,62 +3899,62 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addOutput("y", "number"); this.addOutput("z", "number"); } - function B() { + function H() { this.addInputs([["x", "number"], ["y", "number"], ["z", "number"]]); this.addOutput("vec3", "vec3"); this.properties = {x:0, y:0, z:0}; this._data = new Float32Array(3); } - function C() { + function A() { this.addInput("vec4", "vec4"); this.addOutput("x", "number"); this.addOutput("y", "number"); this.addOutput("z", "number"); this.addOutput("w", "number"); } - function E() { + function F() { this.addInputs([["x", "number"], ["y", "number"], ["z", "number"], ["w", "number"]]); this.addOutput("vec4", "vec4"); this.properties = {x:0, y:0, z:0, w:0}; this._data = new Float32Array(4); } - var y = u.LiteGraph; + var x = t.LiteGraph; f.title = "Converter"; f.desc = "type A to type B"; f.prototype.onExecute = function() { var a = this.getInputData(0); if (null != a && this.outputs) { for (var b = 0; b < this.outputs.length; b++) { - var d = this.outputs[b]; - if (d.links && d.links.length) { - var c = null; - switch(d.name) { + var c = this.outputs[b]; + if (c.links && c.links.length) { + var e = null; + switch(c.name) { case "number": - c = a.length ? a[0] : parseFloat(a); + e = a.length ? a[0] : parseFloat(a); break; case "vec2": case "vec3": case "vec4": - c = 1; - switch(d.name) { + e = 1; + switch(c.name) { case "vec2": - c = 2; + e = 2; break; case "vec3": - c = 3; + e = 3; break; case "vec4": - c = 4; - }c = new Float32Array(c); + e = 4; + }e = new Float32Array(e); if (a.length) { - for (d = 0; d < a.length && d < c.length; d++) { - c[d] = a[d]; + for (c = 0; c < a.length && c < e.length; c++) { + e[c] = a[c]; } } else { - c[0] = parseFloat(a); + e[0] = parseFloat(a); } } - this.setOutputData(b, c); + this.setOutputData(b, e); } } } @@ -3889,111 +3962,111 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.prototype.onGetOutputs = function() { return [["number", "number"], ["vec2", "vec2"], ["vec3", "vec3"], ["vec4", "vec4"]]; }; - y.registerNodeType("math/converter", f); - k.title = "Bypass"; - k.desc = "removes the type"; - k.prototype.onExecute = function() { + x.registerNodeType("math/converter", f); + g.title = "Bypass"; + g.desc = "removes the type"; + g.prototype.onExecute = function() { var a = this.getInputData(0); this.setOutputData(0, a); }; - y.registerNodeType("math/bypass", k); - c.title = "Range"; - c.desc = "Convert a number from one range to another"; - c.prototype.onExecute = function() { + x.registerNodeType("math/bypass", g); + d.title = "Range"; + d.desc = "Convert a number from one range to another"; + d.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { - var b = this.inputs[a], d = this.getInputData(a); - void 0 !== d && (this.properties[b.name] = d); + var b = this.inputs[a], c = this.getInputData(a); + void 0 !== c && (this.properties[b.name] = c); } } - d = this.properties["in"]; - if (void 0 === d || null === d || d.constructor !== Number) { - d = 0; + c = this.properties["in"]; + if (void 0 === c || null === c || c.constructor !== Number) { + c = 0; } a = this.properties.in_min; b = this.properties.out_min; - this._last_v = (d - a) / (this.properties.in_max - a) * (this.properties.out_max - b) + b; + this._last_v = (c - a) / (this.properties.in_max - a) * (this.properties.out_max - b) + b; this.setOutputData(0, this._last_v); }; - c.prototype.onDrawBackground = function(a) { + d.prototype.onDrawBackground = function(a) { this.outputs[0].label = this._last_v ? this._last_v.toFixed(3) : "?"; }; - c.prototype.onGetInputs = function() { + d.prototype.onGetInputs = function() { return [["in_min", "number"], ["in_max", "number"], ["out_min", "number"], ["out_max", "number"]]; }; - y.registerNodeType("math/range", c); - p.title = "Rand"; - p.desc = "Random number"; - p.prototype.onExecute = function() { + x.registerNodeType("math/range", d); + m.title = "Rand"; + m.desc = "Random number"; + m.prototype.onExecute = function() { if (this.inputs) { for (var a = 0; a < this.inputs.length; a++) { - var b = this.inputs[a], d = this.getInputData(a); - void 0 !== d && (this.properties[b.name] = d); + var b = this.inputs[a], c = this.getInputData(a); + void 0 !== c && (this.properties[b.name] = c); } } a = this.properties.min; this._last_v = Math.random() * (this.properties.max - a) + a; this.setOutputData(0, this._last_v); }; - p.prototype.onDrawBackground = function(a) { + m.prototype.onDrawBackground = function(a) { this.outputs[0].label = this._last_v ? this._last_v.toFixed(3) : "?"; }; - p.prototype.onGetInputs = function() { + m.prototype.onGetInputs = function() { return [["min", "number"], ["max", "number"]]; }; - y.registerNodeType("math/rand", p); - t.title = "Clamp"; - t.desc = "Clamp number between min and max"; - t.filter = "shader"; - t.prototype.onExecute = function() { + x.registerNodeType("math/rand", m); + r.title = "Clamp"; + r.desc = "Clamp number between min and max"; + r.filter = "shader"; + r.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (a = Math.max(this.properties.min, a), a = Math.min(this.properties.max, a), this.setOutputData(0, a)); }; - t.prototype.getCode = function(a) { + r.prototype.getCode = function(a) { a = ""; this.isInputConnected(0) && (a += "clamp({{0}}," + this.properties.min + "," + this.properties.max + ")"); return a; }; - y.registerNodeType("math/clamp", t); - v.title = "Lerp"; - v.desc = "Linear Interpolation"; - v.prototype.onExecute = function() { + x.registerNodeType("math/clamp", r); + u.title = "Lerp"; + u.desc = "Linear Interpolation"; + u.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = 0); var b = this.getInputData(1); null == b && (b = 0); - var d = this.properties.f, c = this.getInputData(2); - void 0 !== c && (d = c); - this.setOutputData(0, a * (1 - d) + b * d); + var c = this.properties.f, e = this.getInputData(2); + void 0 !== e && (c = e); + this.setOutputData(0, a * (1 - c) + b * c); }; - v.prototype.onGetInputs = function() { + u.prototype.onGetInputs = function() { return [["f", "number"]]; }; - y.registerNodeType("math/lerp", v); + x.registerNodeType("math/lerp", u); w.title = "Abs"; w.desc = "Absolute"; w.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, Math.abs(a)); }; - y.registerNodeType("math/abs", w); - e.title = "Floor"; - e.desc = "Floor number to remove fractional part"; - e.prototype.onExecute = function() { + x.registerNodeType("math/abs", w); + h.title = "Floor"; + h.desc = "Floor number to remove fractional part"; + h.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, Math.floor(a)); }; - y.registerNodeType("math/floor", e); - q.title = "Frac"; - q.desc = "Returns fractional part"; - q.prototype.onExecute = function() { + x.registerNodeType("math/floor", h); + p.title = "Frac"; + p.desc = "Returns fractional part"; + p.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, a % 1); }; - y.registerNodeType("math/frac", q); - l.title = "Smoothstep"; - l.desc = "Smoothstep"; - l.prototype.onExecute = function() { + x.registerNodeType("math/frac", p); + e.title = "Smoothstep"; + e.desc = "Smoothstep"; + e.prototype.onExecute = function() { var a = this.getInputData(0); if (void 0 !== a) { var b = this.properties.A; @@ -4001,14 +4074,14 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.setOutputData(0, a * a * (3 - 2 * a)); } }; - y.registerNodeType("math/smoothstep", l); + x.registerNodeType("math/smoothstep", e); a.title = "Scale"; a.desc = "v * factor"; a.prototype.onExecute = function() { var a = this.getInputData(0); null != a && this.setOutputData(0, a * this.properties.factor); }; - y.registerNodeType("math/scale", a); + x.registerNodeType("math/scale", a); b.title = "Average"; b.desc = "Average Filter"; b.prototype.onExecute = function() { @@ -4018,8 +4091,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._values[this._current % b] = a; this._current += 1; this._current > b && (this._current = 0); - for (var d = a = 0; d < b; ++d) { - a += this._values[d]; + for (var c = a = 0; c < b; ++c) { + a += this._values[c]; } this.setOutputData(0, a / b); }; @@ -4030,60 +4103,70 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._values = new Float32Array(this.properties.samples); a.length <= this._values.length ? this._values.set(a) : this._values.set(a.subarray(0, this._values.length)); }; - y.registerNodeType("math/average", b); - d.values = "+-*/%^".split(""); - d.title = "Operation"; - d.desc = "Easy math operators"; - d["@OP"] = {type:"enum", title:"operation", values:d.values}; - d.prototype.setValue = function(a) { + x.registerNodeType("math/average", b); + c.title = "TendTo"; + c.desc = "moves the output value always closer to the input"; + c.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = 0); + var b = this.properties.factor; + this._value = null == this._value ? a : this._value * (1 - b) + a * b; + this.setOutputData(0, this._value); + }; + x.registerNodeType("math/tendTo", c); + n.values = "+-*/%^".split(""); + n.title = "Operation"; + n.desc = "Easy math operators"; + n["@OP"] = {type:"enum", title:"operation", values:n.values}; + n.prototype.setValue = function(a) { "string" == typeof a && (a = parseFloat(a)); this.properties.value = a; }; - d.prototype.onExecute = function() { + n.prototype.onExecute = function() { var a = this.getInputData(0), b = this.getInputData(1); null != a ? this.properties.A = a : a = this.properties.A; null != b ? this.properties.B = b : b = this.properties.B; - var d = 0; + var c = 0; switch(this.properties.OP) { case "+": - d = a + b; + c = a + b; break; case "-": - d = a - b; + c = a - b; break; case "x": case "X": case "*": - d = a * b; + c = a * b; break; case "/": - d = a / b; + c = a / b; break; case "%": - d = a % b; + c = a % b; break; case "^": - d = Math.pow(a, b); + c = Math.pow(a, b); break; default: console.warn("Unknown operation: " + this.properties.OP); } - this.setOutputData(0, d); + this.setOutputData(0, c); }; - d.prototype.onDrawBackground = function(a) { - this.flags.collapsed || (a.font = "40px Arial", a.fillStyle = "black", a.textAlign = "center", a.fillText(this.properties.OP, 0.5 * this.size[0], 0.5 * this.size[1] + y.NODE_TITLE_HEIGHT), a.textAlign = "left"); + n.prototype.onDrawBackground = function(a) { + this.flags.collapsed || (a.font = "40px Arial", a.fillStyle = "black", a.textAlign = "center", a.fillText(this.properties.OP, 0.5 * this.size[0], 0.5 * this.size[1] + x.NODE_TITLE_HEIGHT), a.textAlign = "left"); }; - y.registerNodeType("math/operation", d); - g.title = "Compare"; - g.desc = "compares between two values"; - g.prototype.onExecute = function() { + x.registerNodeType("math/operation", n); + l.title = "Compare"; + l.desc = "compares between two values"; + l.prototype.onExecute = function() { var a = this.getInputData(0), b = this.getInputData(1); void 0 !== a ? this.properties.A = a : a = this.properties.A; void 0 !== b ? this.properties.B = b : b = this.properties.B; - for (var d = 0, c = this.outputs.length; d < c; ++d) { - var e = this.outputs[d]; - if (e.links && e.links.length) { - switch(e.name) { + for (var c = 0, e = this.outputs.length; c < e; ++c) { + var d = this.outputs[c]; + if (d.links && d.links.length) { + switch(d.name) { case "A==B": value = a == b; break; @@ -4102,69 +4185,69 @@ $jscomp.polyfill("Array.prototype.values", function(u) { case "A>=B": value = a >= b; } - this.setOutputData(d, value); + this.setOutputData(c, value); } } }; - g.prototype.onGetOutputs = function() { + l.prototype.onGetOutputs = function() { return [["A==B", "boolean"], ["A!=B", "boolean"], ["A>B", "boolean"], ["A=B", "boolean"], ["A<=B", "boolean"]]; }; - y.registerNodeType("math/compare", g); - h.values = "> < == != <= >=".split(" "); - h["@OP"] = {type:"enum", title:"operation", values:h.values}; - h.title = "Condition"; - h.desc = "evaluates condition between A and B"; - h.prototype.onExecute = function() { + x.registerNodeType("math/compare", l); + v.values = "> < == != <= >=".split(" "); + v["@OP"] = {type:"enum", title:"operation", values:v.values}; + v.title = "Condition"; + v.desc = "evaluates condition between A and B"; + v.prototype.onExecute = function() { var a = this.getInputData(0); void 0 === a ? a = this.properties.A : this.properties.A = a; var b = this.getInputData(1); void 0 === b ? b = this.properties.B : this.properties.B = b; - var d = !0; + var c = !0; switch(this.properties.OP) { case ">": - d = a > b; + c = a > b; break; case "<": - d = a < b; + c = a < b; break; case "==": - d = a == b; + c = a == b; break; case "!=": - d = a != b; + c = a != b; break; case "<=": - d = a <= b; + c = a <= b; break; case ">=": - d = a >= b; + c = a >= b; } - this.setOutputData(0, d); + this.setOutputData(0, c); }; - y.registerNodeType("math/condition", h); - x.title = "Accumulate"; - x.desc = "Increments a value every time"; - x.prototype.onExecute = function() { + x.registerNodeType("math/condition", v); + k.title = "Accumulate"; + k.desc = "Increments a value every time"; + k.prototype.onExecute = function() { null === this.properties.value && (this.properties.value = 0); var a = this.getInputData(0); this.properties.value = null !== a ? this.properties.value + a : this.properties.value + this.properties.increment; this.setOutputData(0, this.properties.value); }; - y.registerNodeType("math/accumulate", x); - n.title = "Trigonometry"; - n.desc = "Sin Cos Tan"; - n.filter = "shader"; - n.prototype.onExecute = function() { + x.registerNodeType("math/accumulate", k); + y.title = "Trigonometry"; + y.desc = "Sin Cos Tan"; + y.filter = "shader"; + y.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = 0); - var b = this.properties.amplitude, d = this.findInputSlot("amplitude"); - -1 != d && (b = this.getInputData(d)); - var c = this.properties.offset; - d = this.findInputSlot("offset"); - -1 != d && (c = this.getInputData(d)); - d = 0; - for (var e = this.outputs.length; d < e; ++d) { - switch(this.outputs[d].name) { + var b = this.properties.amplitude, c = this.findInputSlot("amplitude"); + -1 != c && (b = this.getInputData(c)); + var e = this.properties.offset; + c = this.findInputSlot("offset"); + -1 != c && (e = this.getInputData(c)); + c = 0; + for (var d = this.outputs.length; c < d; ++c) { + switch(this.outputs[c].name) { case "sin": value = Math.sin(a); break; @@ -4183,146 +4266,146 @@ $jscomp.polyfill("Array.prototype.values", function(u) { case "atan": value = Math.atan(a); } - this.setOutputData(d, b * value + c); + this.setOutputData(c, b * value + e); } }; - n.prototype.onGetInputs = function() { + y.prototype.onGetInputs = function() { return [["v", "number"], ["amplitude", "number"], ["offset", "number"]]; }; - n.prototype.onGetOutputs = function() { + y.prototype.onGetOutputs = function() { return [["sin", "number"], ["cos", "number"], ["tan", "number"], ["asin", "number"], ["acos", "number"], ["atan", "number"]]; }; - y.registerNodeType("math/trigonometry", n); - var r = function() { + x.registerNodeType("math/trigonometry", y); + var z = function() { this.addInputs("x", "number"); this.addInputs("y", "number"); this.addOutputs("", "number"); this.properties = {x:1.0, y:1.0, formula:"x+y"}; }; - r.title = "Formula"; - r.desc = "Compute safe formula"; - r.prototype.onExecute = function() { + z.title = "Formula"; + z.desc = "Compute safe formula"; + z.prototype.onExecute = function() { var a = this.getInputData(0), b = this.getInputData(1); null != a ? this.properties.x = a : a = this.properties.x; null != b ? this.properties.y = b : b = this.properties.y; a = math.eval(this.properties.formula, {x:a, y:b, T:this.graph.globaltime}); this.setOutputData(0, a); }; - r.prototype.onDrawBackground = function() { + z.prototype.onDrawBackground = function() { this.outputs[0].label = this.properties.formula; }; - r.prototype.onGetOutputs = function() { + z.prototype.onGetOutputs = function() { return [["A-B", "number"], ["A*B", "number"], ["A/B", "number"]]; }; - y.registerNodeType("math/formula", r); - z.title = "Vec2->XY"; - z.desc = "vector 2 to components"; - z.prototype.onExecute = function() { + x.registerNodeType("math/formula", z); + B.title = "Vec2->XY"; + B.desc = "vector 2 to components"; + B.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1])); }; - y.registerNodeType("math3d/vec2-to-xyz", z); - A.title = "XY->Vec2"; - A.desc = "components to vector2"; - A.prototype.onExecute = function() { + x.registerNodeType("math3d/vec2-to-xyz", B); + C.title = "XY->Vec2"; + C.desc = "components to vector2"; + C.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = this.properties.x); var b = this.getInputData(1); null == b && (b = this.properties.y); - var d = this._data; - d[0] = a; - d[1] = b; - this.setOutputData(0, d); + var c = this._data; + c[0] = a; + c[1] = b; + this.setOutputData(0, c); }; - y.registerNodeType("math3d/xy-to-vec2", A); + x.registerNodeType("math3d/xy-to-vec2", C); D.title = "Vec3->XYZ"; D.desc = "vector 3 to components"; D.prototype.onExecute = function() { var a = this.getInputData(0); null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2])); }; - y.registerNodeType("math3d/vec3-to-xyz", D); - B.title = "XYZ->Vec3"; - B.desc = "components to vector3"; - B.prototype.onExecute = function() { + x.registerNodeType("math3d/vec3-to-xyz", D); + H.title = "XYZ->Vec3"; + H.desc = "components to vector3"; + H.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = this.properties.x); var b = this.getInputData(1); null == b && (b = this.properties.y); - var d = this.getInputData(2); - null == d && (d = this.properties.z); - var c = this._data; - c[0] = a; - c[1] = b; - c[2] = d; - this.setOutputData(0, c); - }; - y.registerNodeType("math3d/xyz-to-vec3", B); - C.title = "Vec4->XYZW"; - C.desc = "vector 4 to components"; - C.prototype.onExecute = function() { - var a = this.getInputData(0); - null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2]), this.setOutputData(3, a[3])); - }; - y.registerNodeType("math3d/vec4-to-xyzw", C); - E.title = "XYZW->Vec4"; - E.desc = "components to vector4"; - E.prototype.onExecute = function() { - var a = this.getInputData(0); - null == a && (a = this.properties.x); - var b = this.getInputData(1); - null == b && (b = this.properties.y); - var d = this.getInputData(2); - null == d && (d = this.properties.z); - var c = this.getInputData(3); - null == c && (c = this.properties.w); + var c = this.getInputData(2); + null == c && (c = this.properties.z); var e = this._data; e[0] = a; e[1] = b; - e[2] = d; - e[3] = c; + e[2] = c; this.setOutputData(0, e); }; - y.registerNodeType("math3d/xyzw-to-vec4", E); - if (u.glMatrix) { - u = function() { + x.registerNodeType("math3d/xyz-to-vec3", H); + A.title = "Vec4->XYZW"; + A.desc = "vector 4 to components"; + A.prototype.onExecute = function() { + var a = this.getInputData(0); + null != a && (this.setOutputData(0, a[0]), this.setOutputData(1, a[1]), this.setOutputData(2, a[2]), this.setOutputData(3, a[3])); + }; + x.registerNodeType("math3d/vec4-to-xyzw", A); + F.title = "XYZW->Vec4"; + F.desc = "components to vector4"; + F.prototype.onExecute = function() { + var a = this.getInputData(0); + null == a && (a = this.properties.x); + var b = this.getInputData(1); + null == b && (b = this.properties.y); + var c = this.getInputData(2); + null == c && (c = this.properties.z); + var e = this.getInputData(3); + null == e && (e = this.properties.w); + var d = this._data; + d[0] = a; + d[1] = b; + d[2] = c; + d[3] = e; + this.setOutputData(0, d); + }; + x.registerNodeType("math3d/xyzw-to-vec4", F); + if (t.glMatrix) { + t = function() { this.addInputs([["A", "quat"], ["B", "quat"], ["factor", "number"]]); this.addOutput("slerp", "quat"); this.addProperty("factor", 0.5); this._value = quat.create(); }; - r = function() { + z = function() { this.addInputs([["A", "quat"], ["B", "quat"]]); this.addOutput("A*B", "quat"); this._value = quat.create(); }; - var F = function() { + var E = function() { this.addInputs([["vec3", "vec3"], ["quat", "quat"]]); this.addOutput("result", "vec3"); this.properties = {vec:[0, 0, 1]}; - }, G = function() { + }, I = function() { this.addInputs([["degrees", "number"], ["axis", "vec3"]]); this.addOutput("quat", "quat"); this.properties = {angle:90.0, axis:vec3.fromValues(0, 1, 0)}; this._value = quat.create(); - }, H = function() { + }, G = function() { this.addOutput("quat", "quat"); this.properties = {x:0, y:0, z:0, w:1}; this._value = quat.create(); }; - H.title = "Quaternion"; - H.desc = "quaternion"; - H.prototype.onExecute = function() { + G.title = "Quaternion"; + G.desc = "quaternion"; + G.prototype.onExecute = function() { this._value[0] = this.properties.x; this._value[1] = this.properties.y; this._value[2] = this.properties.z; this._value[3] = this.properties.w; this.setOutputData(0, this._value); }; - y.registerNodeType("math3d/quaternion", H); - G.title = "Rotation"; - G.desc = "quaternion rotation"; - G.prototype.onExecute = function() { + x.registerNodeType("math3d/quaternion", G); + I.title = "Rotation"; + I.desc = "quaternion rotation"; + I.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = this.properties.angle); var b = this.getInputData(1); @@ -4330,270 +4413,317 @@ $jscomp.polyfill("Array.prototype.values", function(u) { a = quat.setAxisAngle(this._value, b, 0.0174532925 * a); this.setOutputData(0, a); }; - y.registerNodeType("math3d/rotation", G); - F.title = "Rot. Vec3"; - F.desc = "rotate a point"; - F.prototype.onExecute = function() { + x.registerNodeType("math3d/rotation", I); + E.title = "Rot. Vec3"; + E.desc = "rotate a point"; + E.prototype.onExecute = function() { var a = this.getInputData(0); null == a && (a = this.properties.vec); var b = this.getInputData(1); null == b ? this.setOutputData(a) : this.setOutputData(0, vec3.transformQuat(vec3.create(), a, b)); }; - y.registerNodeType("math3d/rotate_vec3", F); - r.title = "Mult. Quat"; - r.desc = "rotate quaternion"; - r.prototype.onExecute = function() { + x.registerNodeType("math3d/rotate_vec3", E); + z.title = "Mult. Quat"; + z.desc = "rotate quaternion"; + z.prototype.onExecute = function() { var a = this.getInputData(0); if (null != a) { var b = this.getInputData(1); null != b && (a = quat.multiply(this._value, a, b), this.setOutputData(0, a)); } }; - y.registerNodeType("math3d/mult-quat", r); - u.title = "Quat Slerp"; - u.desc = "quaternion spherical interpolation"; - u.prototype.onExecute = function() { + x.registerNodeType("math3d/mult-quat", z); + t.title = "Quat Slerp"; + t.desc = "quaternion spherical interpolation"; + t.prototype.onExecute = function() { var a = this.getInputData(0); if (null != a) { var b = this.getInputData(1); if (null != b) { - var d = this.properties.factor; - null != this.getInputData(2) && (d = this.getInputData(2)); - a = quat.slerp(this._value, a, b, d); + var c = this.properties.factor; + null != this.getInputData(2) && (c = this.getInputData(2)); + a = quat.slerp(this._value, a, b, c); this.setOutputData(0, a); } } }; - y.registerNodeType("math3d/quat-slerp", u); + x.registerNodeType("math3d/quat-slerp", t); } })(this); -(function(u) { +(function(t) { function f() { this.addInput("sel", "boolean"); this.addOutput("value", "number"); this.properties = {A:0, B:1}; this.size = [60, 20]; } - u = u.LiteGraph; + t = t.LiteGraph; f.title = "Selector"; f.desc = "outputs A if selector is true, B if selector is false"; f.prototype.onExecute = function() { var f = this.getInputData(0); if (void 0 !== f) { - for (var c = 1; c < this.inputs.length; c++) { - var p = this.inputs[c], t = this.getInputData(c); - void 0 !== t && (this.properties[p.name] = t); + for (var d = 1; d < this.inputs.length; d++) { + var m = this.inputs[d], r = this.getInputData(d); + void 0 !== r && (this.properties[m.name] = r); } - c = this.properties.A; - p = this.properties.B; - this.setOutputData(0, f ? c : p); + d = this.properties.A; + m = this.properties.B; + this.setOutputData(0, f ? d : m); } }; f.prototype.onGetInputs = function() { return [["A", 0], ["B", 0]]; }; - u.registerNodeType("logic/selector", f); + t.registerNodeType("logic/selector", f); })(this); -(function(u) { +(function(t) { function f() { - this.inputs = []; + this.addInput("A", "Number"); + this.addInput("B", "Number"); + this.addInput("C", "Number"); + this.addInput("D", "Number"); + this.values = [[], [], [], []]; + this.properties = {scale:2}; + } + function g() { this.addOutput("frame", "image"); this.properties = {url:""}; } - function k() { + function d() { this.addInput("f", "number"); this.addOutput("Color", "color"); this.properties = {colorA:"#444444", colorB:"#44AAFF", colorC:"#44FFAA", colorD:"#FFFFFF"}; } - function c() { + function m() { this.addInput("", "image"); this.size = [200, 200]; } - function p() { + function r() { this.addInputs([["img1", "image"], ["img2", "image"], ["fade", "number"]]); this.addOutput("", "image"); this.properties = {fade:0.5, width:512, height:512}; } - function t() { + function u() { this.addInput("", "image"); this.addOutput("", "image"); this.properties = {width:256, height:256, x:0, y:0, scale:1.0}; this.size = [50, 20]; } - function v() { + function w() { this.addInput("t", "number"); this.addOutputs([["frame", "image"], ["t", "number"], ["d", "number"]]); this.properties = {url:""}; } - function w() { + function h() { this.addOutput("Webcam", "image"); this.properties = {}; } - var e = u.LiteGraph; - f.title = "Image"; - f.desc = "Image loader"; - f.widgets = [{name:"load", text:"Load", type:"button"}]; - f.supported_extensions = ["jpg", "jpeg", "png", "gif"]; - f.prototype.onAdded = function() { + var p = t.LiteGraph; + f.title = "Plot"; + f.desc = "Plots data over time"; + f.colors = ["#FFF", "#F99", "#9F9", "#99F"]; + f.prototype.onExecute = function(e) { + if (!this.flags.collapsed) { + e = this.size; + for (var a = 0; 4 > a; ++a) { + var b = this.getInputData(a); + if (null != b) { + var c = this.values[a]; + c.push(b); + c.length > e[0] && c.shift(); + } + } + } + }; + f.prototype.onDrawBackground = function(e) { + if (!this.flags.collapsed) { + var a = this.size, b = 0.5 * a[1] / this.properties.scale, c = f.colors, d = 0.5 * a[1]; + e.fillStyle = "#000"; + e.fillRect(0, 0, a[0], a[1]); + e.strokeStyle = "#555"; + e.beginPath(); + e.moveTo(0, d); + e.lineTo(a[0], d); + e.stroke(); + for (var h = 0; 4 > h; ++h) { + var g = this.values[h]; + e.strokeStyle = c[h]; + e.beginPath(); + var k = g[0] * b * -1 + d; + e.moveTo(0, Math.clamp(k, 0, a[1])); + for (var m = 1; m < g.length && m < a[0]; ++m) { + k = g[m] * b * -1 + d, e.lineTo(m, Math.clamp(k, 0, a[1])); + } + e.stroke(); + } + } + }; + p.registerNodeType("graphics/plot", f); + g.title = "Image"; + g.desc = "Image loader"; + g.widgets = [{name:"load", text:"Load", type:"button"}]; + g.supported_extensions = ["jpg", "jpeg", "png", "gif"]; + g.prototype.onAdded = function() { "" != this.properties.url && null == this.img && this.loadImage(this.properties.url); }; - f.prototype.onDrawBackground = function(c) { - this.img && 5 < this.size[0] && 5 < this.size[1] && c.drawImage(this.img, 0, 0, this.size[0], this.size[1]); + g.prototype.onDrawBackground = function(e) { + this.img && 5 < this.size[0] && 5 < this.size[1] && e.drawImage(this.img, 0, 0, this.size[0], this.size[1]); }; - f.prototype.onExecute = function() { + g.prototype.onExecute = function() { this.img || (this.boxcolor = "#000"); this.img && this.img.width ? this.setOutputData(0, this.img) : this.setOutputData(0, null); this.img && this.img.dirty && (this.img.dirty = !1); }; - f.prototype.onPropertyChanged = function(c, e) { - this.properties[c] = e; - "url" == c && "" != e && this.loadImage(e); + g.prototype.onPropertyChanged = function(e, a) { + this.properties[e] = a; + "url" == e && "" != a && this.loadImage(a); return !0; }; - f.prototype.loadImage = function(c, l) { - if ("" == c) { + g.prototype.loadImage = function(e, a) { + if ("" == e) { this.img = null; } else { this.img = document.createElement("img"); - "http://" == c.substr(0, 7) && e.proxy && (c = e.proxy + c.substr(7)); - this.img.src = c; + "http://" == e.substr(0, 7) && p.proxy && (e = p.proxy + e.substr(7)); + this.img.src = e; this.boxcolor = "#F95"; - var a = this; + var b = this; this.img.onload = function() { - l && l(this); - a.trace("Image loaded, size: " + a.img.width + "x" + a.img.height); + a && a(this); + b.trace("Image loaded, size: " + b.img.width + "x" + b.img.height); this.dirty = !0; - a.boxcolor = "#9F9"; - a.setDirtyCanvas(!0); + b.boxcolor = "#9F9"; + b.setDirtyCanvas(!0); }; } }; - f.prototype.onWidget = function(c, e) { - "load" == e.name && this.loadImage(this.properties.url); + g.prototype.onWidget = function(e, a) { + "load" == a.name && this.loadImage(this.properties.url); }; - f.prototype.onDropFile = function(c) { - var e = this; + g.prototype.onDropFile = function(e) { + var a = this; this._url && URL.revokeObjectURL(this._url); - this._url = URL.createObjectURL(c); + this._url = URL.createObjectURL(e); this.properties.url = this._url; - this.loadImage(this._url, function(a) { - e.size[1] = a.height / a.width * e.size[0]; + this.loadImage(this._url, function(b) { + a.size[1] = b.height / b.width * a.size[0]; }); }; - e.registerNodeType("graphics/image", f); - k.title = "Palette"; - k.desc = "Generates a color"; - k.prototype.onExecute = function() { - var c = []; - null != this.properties.colorA && c.push(hex2num(this.properties.colorA)); - null != this.properties.colorB && c.push(hex2num(this.properties.colorB)); - null != this.properties.colorC && c.push(hex2num(this.properties.colorC)); - null != this.properties.colorD && c.push(hex2num(this.properties.colorD)); - var e = this.getInputData(0); - null == e && (e = 0.5); - 1.0 < e ? e = 1.0 : 0.0 > e && (e = 0.0); - if (0 != c.length) { - var a = [0, 0, 0]; - if (0 == e) { - a = c[0]; + p.registerNodeType("graphics/image", g); + d.title = "Palette"; + d.desc = "Generates a color"; + d.prototype.onExecute = function() { + var e = []; + null != this.properties.colorA && e.push(hex2num(this.properties.colorA)); + null != this.properties.colorB && e.push(hex2num(this.properties.colorB)); + null != this.properties.colorC && e.push(hex2num(this.properties.colorC)); + null != this.properties.colorD && e.push(hex2num(this.properties.colorD)); + var a = this.getInputData(0); + null == a && (a = 0.5); + 1.0 < a ? a = 1.0 : 0.0 > a && (a = 0.0); + if (0 != e.length) { + var b = [0, 0, 0]; + if (0 == a) { + b = e[0]; } else { - if (1 == e) { - a = c[c.length - 1]; + if (1 == a) { + b = e[e.length - 1]; } else { - var b = (c.length - 1) * e; - e = c[Math.floor(b)]; - c = c[Math.floor(b) + 1]; - b -= Math.floor(b); - a[0] = e[0] * (1 - b) + c[0] * b; - a[1] = e[1] * (1 - b) + c[1] * b; - a[2] = e[2] * (1 - b) + c[2] * b; + var c = (e.length - 1) * a; + a = e[Math.floor(c)]; + e = e[Math.floor(c) + 1]; + c -= Math.floor(c); + b[0] = a[0] * (1 - c) + e[0] * c; + b[1] = a[1] * (1 - c) + e[1] * c; + b[2] = a[2] * (1 - c) + e[2] * c; } } - for (var d in a) { - a[d] /= 255; + for (var d in b) { + b[d] /= 255; } - this.boxcolor = colorToString(a); - this.setOutputData(0, a); + this.boxcolor = colorToString(b); + this.setOutputData(0, b); } }; - e.registerNodeType("color/palette", k); - c.title = "Frame"; - c.desc = "Frame viewerew"; - c.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"view", text:"View Image", type:"button"}]; - c.prototype.onDrawBackground = function(c) { - this.frame && c.drawImage(this.frame, 0, 0, this.size[0], this.size[1]); + p.registerNodeType("color/palette", d); + m.title = "Frame"; + m.desc = "Frame viewerew"; + m.widgets = [{name:"resize", text:"Resize box", type:"button"}, {name:"view", text:"View Image", type:"button"}]; + m.prototype.onDrawBackground = function(e) { + this.frame && e.drawImage(this.frame, 0, 0, this.size[0], this.size[1]); }; - c.prototype.onExecute = function() { + m.prototype.onExecute = function() { this.frame = this.getInputData(0); this.setDirtyCanvas(!0); }; - c.prototype.onWidget = function(c, e) { - "resize" == e.name && this.frame ? (c = this.frame.width, e = this.frame.height, c || null == this.frame.videoWidth || (c = this.frame.videoWidth, e = this.frame.videoHeight), c && e && (this.size = [c, e]), this.setDirtyCanvas(!0, !0)) : "view" == e.name && this.show(); + m.prototype.onWidget = function(e, a) { + "resize" == a.name && this.frame ? (e = this.frame.width, a = this.frame.height, e || null == this.frame.videoWidth || (e = this.frame.videoWidth, a = this.frame.videoHeight), e && a && (this.size = [e, a]), this.setDirtyCanvas(!0, !0)) : "view" == a.name && this.show(); }; - c.prototype.show = function() { + m.prototype.show = function() { showElement && this.frame && showElement(this.frame); }; - e.registerNodeType("graphics/frame", c); - p.title = "Image fade"; - p.desc = "Fades between images"; - p.widgets = [{name:"resizeA", text:"Resize to A", type:"button"}, {name:"resizeB", text:"Resize to B", type:"button"}]; - p.prototype.onAdded = function() { + p.registerNodeType("graphics/frame", m); + r.title = "Image fade"; + r.desc = "Fades between images"; + r.widgets = [{name:"resizeA", text:"Resize to A", type:"button"}, {name:"resizeB", text:"Resize to B", type:"button"}]; + r.prototype.onAdded = function() { this.createCanvas(); - var c = this.canvas.getContext("2d"); - c.fillStyle = "#000"; - c.fillRect(0, 0, this.properties.width, this.properties.height); + var e = this.canvas.getContext("2d"); + e.fillStyle = "#000"; + e.fillRect(0, 0, this.properties.width, this.properties.height); }; - p.prototype.createCanvas = function() { + r.prototype.createCanvas = function() { this.canvas = document.createElement("canvas"); this.canvas.width = this.properties.width; this.canvas.height = this.properties.height; }; - p.prototype.onExecute = function() { - var c = this.canvas.getContext("2d"); + r.prototype.onExecute = function() { + var e = this.canvas.getContext("2d"); this.canvas.width = this.canvas.width; - var e = this.getInputData(0); - null != e && c.drawImage(e, 0, 0, this.canvas.width, this.canvas.height); - e = this.getInputData(2); - null == e ? e = this.properties.fade : this.properties.fade = e; - c.globalAlpha = e; - e = this.getInputData(1); - null != e && c.drawImage(e, 0, 0, this.canvas.width, this.canvas.height); - c.globalAlpha = 1.0; + var a = this.getInputData(0); + null != a && e.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); + a = this.getInputData(2); + null == a ? a = this.properties.fade : this.properties.fade = a; + e.globalAlpha = a; + a = this.getInputData(1); + null != a && e.drawImage(a, 0, 0, this.canvas.width, this.canvas.height); + e.globalAlpha = 1.0; this.setOutputData(0, this.canvas); this.setDirtyCanvas(!0); }; - e.registerNodeType("graphics/imagefade", p); - t.title = "Crop"; - t.desc = "Crop Image"; - t.prototype.onAdded = function() { + p.registerNodeType("graphics/imagefade", r); + u.title = "Crop"; + u.desc = "Crop Image"; + u.prototype.onAdded = function() { this.createCanvas(); }; - t.prototype.createCanvas = function() { + u.prototype.createCanvas = function() { this.canvas = document.createElement("canvas"); this.canvas.width = this.properties.width; this.canvas.height = this.properties.height; }; - t.prototype.onExecute = function() { - var c = this.getInputData(0); - c && (c.width ? (this.canvas.getContext("2d").drawImage(c, -this.properties.x, -this.properties.y, c.width * this.properties.scale, c.height * this.properties.scale), this.setOutputData(0, this.canvas)) : this.setOutputData(0, null)); + u.prototype.onExecute = function() { + var e = this.getInputData(0); + e && (e.width ? (this.canvas.getContext("2d").drawImage(e, -this.properties.x, -this.properties.y, e.width * this.properties.scale, e.height * this.properties.scale), this.setOutputData(0, this.canvas)) : this.setOutputData(0, null)); }; - t.prototype.onDrawBackground = function(c) { - this.flags.collapsed || this.canvas && c.drawImage(this.canvas, 0, 0, this.canvas.width, this.canvas.height, 0, 0, this.size[0], this.size[1]); + u.prototype.onDrawBackground = function(e) { + this.flags.collapsed || this.canvas && e.drawImage(this.canvas, 0, 0, this.canvas.width, this.canvas.height, 0, 0, this.size[0], this.size[1]); }; - t.prototype.onPropertyChanged = function(c, e) { - this.properties[c] = e; - "scale" == c ? (this.properties[c] = parseFloat(e), 0 == this.properties[c] && (this.trace("Error in scale"), this.properties[c] = 1.0)) : this.properties[c] = parseInt(e); + u.prototype.onPropertyChanged = function(e, a) { + this.properties[e] = a; + "scale" == e ? (this.properties[e] = parseFloat(a), 0 == this.properties[e] && (this.trace("Error in scale"), this.properties[e] = 1.0)) : this.properties[e] = parseInt(a); this.createCanvas(); return !0; }; - e.registerNodeType("graphics/cropImage", t); - v.title = "Video"; - v.desc = "Video playback"; - v.widgets = [{name:"play", text:"PLAY", type:"minibutton"}, {name:"stop", text:"STOP", type:"minibutton"}, {name:"demo", text:"Demo video", type:"button"}, {name:"mute", text:"Mute video", type:"button"}]; - v.prototype.onExecute = function() { + p.registerNodeType("graphics/cropImage", u); + w.title = "Video"; + w.desc = "Video playback"; + w.widgets = [{name:"play", text:"PLAY", type:"minibutton"}, {name:"stop", text:"STOP", type:"minibutton"}, {name:"demo", text:"Demo video", type:"button"}, {name:"mute", text:"Mute video", type:"button"}]; + w.prototype.onExecute = function() { if (this.properties.url && (this.properties.url != this._video_url && this.loadVideo(this.properties.url), this._video && 0 != this._video.width)) { - var c = this.getInputData(0); - c && 0 <= c && 1.0 >= c && (this._video.currentTime = c * this._video.duration, this._video.pause()); + var e = this.getInputData(0); + e && 0 <= e && 1.0 >= e && (this._video.currentTime = e * this._video.duration, this._video.pause()); this._video.dirty = !0; this.setOutputData(0, this._video); this.setOutputData(1, this._video.currentTime); @@ -4601,158 +4731,188 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.setDirtyCanvas(!0); } }; - v.prototype.onStart = function() { + w.prototype.onStart = function() { this.play(); }; - v.prototype.onStop = function() { + w.prototype.onStop = function() { this.stop(); }; - v.prototype.loadVideo = function(c) { - this._video_url = c; + w.prototype.loadVideo = function(e) { + this._video_url = e; this._video = document.createElement("video"); - this._video.src = c; + this._video.src = e; this._video.type = "type=video/mp4"; this._video.muted = !0; this._video.autoplay = !0; - var e = this; - this._video.addEventListener("loadedmetadata", function(a) { - e.trace("Duration: " + this.duration + " seconds"); - e.trace("Size: " + this.videoWidth + "," + this.videoHeight); - e.setDirtyCanvas(!0); + var a = this; + this._video.addEventListener("loadedmetadata", function(b) { + a.trace("Duration: " + this.duration + " seconds"); + a.trace("Size: " + this.videoWidth + "," + this.videoHeight); + a.setDirtyCanvas(!0); this.width = this.videoWidth; this.height = this.videoHeight; }); this._video.addEventListener("progress", function(a) { }); - this._video.addEventListener("error", function(a) { + this._video.addEventListener("error", function(b) { console.log("Error loading video: " + this.src); - e.trace("Error loading video: " + this.src); + a.trace("Error loading video: " + this.src); if (this.error) { switch(this.error.code) { case this.error.MEDIA_ERR_ABORTED: - e.trace("You stopped the video."); + a.trace("You stopped the video."); break; case this.error.MEDIA_ERR_NETWORK: - e.trace("Network error - please try again later."); + a.trace("Network error - please try again later."); break; case this.error.MEDIA_ERR_DECODE: - e.trace("Video is broken.."); + a.trace("Video is broken.."); break; case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED: - e.trace("Sorry, your browser can't play this video."); + a.trace("Sorry, your browser can't play this video."); } } }); - this._video.addEventListener("ended", function(a) { - e.trace("Ended."); + this._video.addEventListener("ended", function(b) { + a.trace("Ended."); this.play(); }); }; - v.prototype.onPropertyChanged = function(c, e) { - this.properties[c] = e; - "url" == c && "" != e && this.loadVideo(e); + w.prototype.onPropertyChanged = function(e, a) { + this.properties[e] = a; + "url" == e && "" != a && this.loadVideo(a); return !0; }; - v.prototype.play = function() { + w.prototype.play = function() { this._video && this._video.play(); }; - v.prototype.playPause = function() { + w.prototype.playPause = function() { this._video && (this._video.paused ? this.play() : this.pause()); }; - v.prototype.stop = function() { + w.prototype.stop = function() { this._video && (this._video.pause(), this._video.currentTime = 0); }; - v.prototype.pause = function() { + w.prototype.pause = function() { this._video && (this.trace("Video paused"), this._video.pause()); }; - v.prototype.onWidget = function(c, e) { + w.prototype.onWidget = function(e, a) { }; - e.registerNodeType("graphics/video", v); - w.title = "Webcam"; - w.desc = "Webcam image"; - w.prototype.openStream = function() { + p.registerNodeType("graphics/video", w); + h.title = "Webcam"; + h.desc = "Webcam image"; + h.prototype.openStream = function() { navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; window.URL = window.URL || window.webkitURL; if (navigator.getUserMedia) { this._waiting_confirmation = !0; - navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(e) { - console.log("Webcam rejected", e); - c._webcam_stream = !1; - c.box_color = "red"; + navigator.getUserMedia({video:!0}, this.streamReady.bind(this), function(a) { + console.log("Webcam rejected", a); + e._webcam_stream = !1; + e.box_color = "red"; }); - var c = this; + var e = this; } }; - w.prototype.onRemoved = function() { + h.prototype.onRemoved = function() { this._webcam_stream && (this._webcam_stream.stop(), this._video = this._webcam_stream = null); }; - w.prototype.streamReady = function(c) { - this._webcam_stream = c; - var e = this._video; - e || (e = document.createElement("video"), e.autoplay = !0, e.src = window.URL.createObjectURL(c), this._video = e, e.onloadedmetadata = function(a) { + h.prototype.streamReady = function(e) { + this._webcam_stream = e; + var a = this._video; + a || (a = document.createElement("video"), a.autoplay = !0, a.src = window.URL.createObjectURL(e), this._video = a, a.onloadedmetadata = function(a) { console.log(a); }); }; - w.prototype.onExecute = function() { + h.prototype.onExecute = function() { null != this._webcam_stream || this._waiting_confirmation || this.openStream(); this._video && this._video.videoWidth && (this._video.width = this._video.videoWidth, this._video.height = this._video.videoHeight, this.setOutputData(0, this._video)); }; - w.prototype.getExtraMenuOptions = function(c) { - var e = this; - return [{content:e.properties.show ? "Hide Frame" : "Show Frame", callback:function() { - e.properties.show = !e.properties.show; + h.prototype.getExtraMenuOptions = function(e) { + var a = this; + return [{content:a.properties.show ? "Hide Frame" : "Show Frame", callback:function() { + a.properties.show = !a.properties.show; }}]; }; - w.prototype.onDrawBackground = function(c) { - this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._video || (c.save(), c.drawImage(this._video, 0, 0, this.size[0], this.size[1]), c.restore()); + h.prototype.onDrawBackground = function(e) { + this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._video || (e.save(), e.drawImage(this._video, 0, 0, this.size[0], this.size[1]), e.restore()); }; - e.registerNodeType("graphics/webcam", w); + p.registerNodeType("graphics/webcam", h); })(this); -(function(u) { - var f = u.LiteGraph; - u.LGraphTexture = null; +(function(t) { + var f = t.LiteGraph; + t.LGraphTexture = null; if ("undefined" != typeof GL) { - var k = function() { + var g = function() { this.addOutput("Cubemap", "Cubemap"); this.properties = {name:""}; - this.size = [r.image_preview_size, r.image_preview_size]; - }, c = function() { + this.size = [q.image_preview_size, q.image_preview_size]; + }, d = function() { this.addInput("in", "Texture"); this.addOutput("out", "Texture"); - this.properties = {key_color:vec3.fromValues(0., 1., 0.), threshold:0.8, slope:0.2, precision:r.DEFAULT}; - c._shader || (c._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, c.pixel_shader)); - }, p = function() { + this.properties = {key_color:vec3.fromValues(0., 1., 0.), threshold:0.8, slope:0.2, precision:q.DEFAULT}; + }, m = function() { + this.addOutput("out", "Texture"); + this.properties = {width:512, height:512, seed:0, persistence:0.1, octaves:8, scale:1, offset:[0, 0], amplitude:1, precision:q.DEFAULT}; + this._key = 0; + this._uniforms = {u_persistence:0.1, u_seed:0, u_offset:vec2.create(), u_scale:1, u_viewport:vec2.create()}; + }, r = function() { + this.addInput("in", "Texture"); + this.addInput("avg", "number"); + this.addOutput("out", "Texture"); + this.properties = {scale:1, gamma:1, average_lum:1, lum_white:1, precision:q.LOW}; + this._uniforms = {u_texture:0, u_lumwhite2:1, u_igamma:1, u_scale:1, u_average_lum:1}; + }, u = function() { + this.addInput("in", "Texture"); + this.addInput("exp", "number"); + this.addOutput("out", "Texture"); + this.properties = {exposition:1, precision:q.LOW}; + this._uniforms = {u_texture:0, u_exposition:exp}; + }, w = function() { + this.addInput("in", "Texture"); + this.addInput("f", "number"); + this.addOutput("out", "Texture"); + this.properties = {factor:1, precision:q.LOW}; + this._uniforms = {u_texture:0, u_factor:1}; + }, h = function() { this.addOutput("Webcam", "Texture"); this.properties = {texture_name:""}; - }, t = function() { + }, p = function() { this.addInput("Texture", "Texture"); this.addOutput("Filtered", "Texture"); this.properties = {intensity:1, radius:5}; - }, v = function() { + }, e = function() { + this.addInput("in", "Texture"); + this.addInput("dirt", "Texture"); + this.addOutput("out", "Texture"); + this.addOutput("glow", "Texture"); + this.properties = {intensity:1, persistence:0.99, iterations:16, threshold:0, scale:1, dirt_factor:0.5, precision:q.DEFAULT}; + this._textures = []; + this._uniforms = {u_intensity:1, u_texture:0, u_glow_texture:1, u_threshold:0, u_texel_size:vec2.create()}; + }, a = function() { this.addInput("Texture", "Texture"); this.addInput("Iterations", "number"); this.addInput("Intensity", "number"); this.addOutput("Blurred", "Texture"); - this.properties = {intensity:1, iterations:1, preserve_aspect:!1, scale:[1, 1]}; - }, w = function() { + this.properties = {intensity:1, iterations:1, preserve_aspect:!1, scale:[1, 1], precision:q.DEFAULT}; + }, b = function() { this.addInput("Texture", "Texture"); this.addInput("Distance", "number"); this.addInput("Range", "number"); this.addOutput("Texture", "Texture"); this.properties = {distance:100, range:50, only_depth:!1, high_precision:!1}; this._uniforms = {u_texture:0, u_distance:100, u_range:50, u_camera_planes:null}; - }, e = function() { + }, c = function() { this.addInput("Tex.", "Texture"); this.addOutput("Edges", "Texture"); - this.properties = {invert:!0, factor:1, precision:r.DEFAULT}; - e._shader || (e._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, e.pixel_shader)); - }, q = function() { + this.properties = {invert:!0, threshold:!1, factor:1, precision:q.DEFAULT}; + c._shader || (c._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, c.pixel_shader)); + }, n = function() { this.addInput("A", "Texture"); this.addInput("B", "Texture"); this.addInput("Mixer", "Texture"); this.addOutput("Texture", "Texture"); - this.properties = {precision:r.DEFAULT}; - q._shader || (q._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, q.pixel_shader)); + this.properties = {precision:q.DEFAULT}; + n._shader || (n._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, n.pixel_shader)); }, l = function() { this.addInput("A", "color"); this.addInput("B", "color"); @@ -4760,109 +4920,113 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.properties = {angle:0, scale:1, A:[0, 0, 0], B:[1, 1, 1], texture_size:32}; l._shader || (l._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, l.pixel_shader)); this._uniforms = {u_angle:0, u_colorA:vec3.create(), u_colorB:vec3.create()}; - }, a = function() { + }, v = function() { this.addInput("R", "Texture"); this.addInput("G", "Texture"); this.addInput("B", "Texture"); this.addInput("A", "Texture"); this.addOutput("Texture", "Texture"); this.properties = {}; - a._shader || (a._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a.pixel_shader)); - }, b = function() { + v._shader || (v._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, v.pixel_shader)); + }, k = function() { this.addInput("Texture", "Texture"); this.addOutput("R", "Texture"); this.addOutput("G", "Texture"); this.addOutput("B", "Texture"); this.addOutput("A", "Texture"); this.properties = {}; - b._shader || (b._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader)); - }, d = function() { + k._shader || (k._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, k.pixel_shader)); + }, y = function() { this.addInput("Texture", "Texture"); this.addInput("LUT", "Texture"); this.addInput("Intensity", "number"); this.addOutput("", "Texture"); - this.properties = {intensity:1, precision:r.DEFAULT, texture:null}; - d._shader || (d._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, d.pixel_shader)); - }, g = function() { + this.properties = {intensity:1, precision:q.DEFAULT, texture:null}; + y._shader || (y._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, y.pixel_shader)); + }, B = function() { this.addInput("Image", "image"); this.addOutput("", "Texture"); this.properties = {}; - }, h = function() { + }, C = function() { this.addInput("Texture", "Texture"); - this.addOutput("", "Texture"); + this.addOutput("tex", "Texture"); + this.addOutput("avg", "vec4"); + this.addOutput("lum", "number"); this.properties = {mipmap_offset:0, low_precision:!1}; this._uniforms = {u_texture:0, u_mipmap_offset:this.properties.mipmap_offset}; - }, x = function() { + this._luminance = new Float32Array(4); + }, D = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); - this.properties = {iterations:1, generate_mipmaps:!1, precision:r.DEFAULT}; - }, n = function() { + this.properties = {iterations:1, generate_mipmaps:!1, precision:q.DEFAULT}; + }, H = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); - this.properties = {size:0, generate_mipmaps:!1, precision:r.DEFAULT}; - }, z = function() { + this.properties = {size:0, generate_mipmaps:!1, precision:q.DEFAULT}; + }, A = function() { this.addInput("Texture", "Texture"); this.properties = {additive:!1, antialiasing:!1, filter:!0, disable_alpha:!1, gamma:1.0}; this.size[0] = 130; - }, A = function() { + }, F = function() { this.addInput("in", "Texture"); this.addInput("warp", "Texture"); this.addInput("factor", "number"); this.addOutput("out", "Texture"); - this.properties = {factor:0.01, precision:r.DEFAULT}; - }, D = function() { + this.properties = {factor:0.01, precision:q.DEFAULT}; + }, x = function() { this.addInput("in", "Texture"); this.addInput("scale", "vec2"); this.addInput("offset", "vec2"); this.addOutput("out", "Texture"); - this.properties = {offset:vec2.fromValues(0, 0), scale:vec2.fromValues(1, 1), precision:r.DEFAULT}; - }, B = function() { + this.properties = {offset:vec2.fromValues(0, 0), scale:vec2.fromValues(1, 1), precision:q.DEFAULT}; + }, z = function() { this.addOutput("Texture", "Texture"); - this.properties = {code:"", width:512, height:512}; + this.properties = {code:"", width:512, height:512, precision:q.DEFAULT}; this.properties.code = "\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n//your code here\n\ngl_FragColor = vec4(color, 1.0);\n}\n"; - }, C = function() { + this._uniforms = {texSize:vec2.create(), time:time}; + }, E = function() { this.addInput("Texture", "Texture"); this.addInput("TextureB", "Texture"); this.addInput("value", "number"); this.addOutput("Texture", "Texture"); this.help = "

pixelcode must be vec3

\r\n\t\t\t

uvcode must be vec2, is optional

\r\n\t\t\t

uv: tex. coords

color: texture

colorB: textureB

time: scene time

value: input value

"; - this.properties = {value:1, uvcode:"", pixelcode:"color + colorB * value", precision:r.DEFAULT}; - }, E = function() { + this.properties = {value:1, uvcode:"", pixelcode:"color + colorB * value", precision:q.DEFAULT}; + }, I = function() { this.addInput("Texture", "Texture"); this.addOutput("", "Texture"); this.properties = {name:""}; - }, y = function() { + }, G = function() { this.addInput("Texture", "Texture"); this.properties = {flipY:!1}; - this.size = [r.image_preview_size, r.image_preview_size]; - }, r = function() { + this.size = [q.image_preview_size, q.image_preview_size]; + }, q = function() { this.addOutput("Texture", "Texture"); this.properties = {name:"", filter:!0}; - this.size = [r.image_preview_size, r.image_preview_size]; + this.size = [q.image_preview_size, q.image_preview_size]; }; - u.LGraphTexture = r; - r.title = "Texture"; - r.desc = "Texture"; - r.widgets_info = {name:{widget:"texture"}, filter:{widget:"checkbox"}}; - r.loadTextureCallback = null; - r.image_preview_size = 256; - r.PASS_THROUGH = 1; - r.COPY = 2; - r.LOW = 3; - r.HIGH = 4; - r.REUSE = 5; - r.DEFAULT = 2; - r.MODE_VALUES = {"pass through":r.PASS_THROUGH, copy:r.COPY, low:r.LOW, high:r.HIGH, reuse:r.REUSE, "default":r.DEFAULT}; - r.getTexturesContainer = function() { + t.LGraphTexture = q; + q.title = "Texture"; + q.desc = "Texture"; + q.widgets_info = {name:{widget:"texture"}, filter:{widget:"checkbox"}}; + q.loadTextureCallback = null; + q.image_preview_size = 256; + q.PASS_THROUGH = 1; + q.COPY = 2; + q.LOW = 3; + q.HIGH = 4; + q.REUSE = 5; + q.DEFAULT = 2; + q.MODE_VALUES = {"pass through":q.PASS_THROUGH, copy:q.COPY, low:q.LOW, high:q.HIGH, reuse:q.REUSE, "default":q.DEFAULT}; + q.getTexturesContainer = function() { return gl.textures; }; - r.loadTexture = function(a, b) { + q.loadTexture = function(a, b) { b = b || {}; - var d = a; - "http://" == d.substr(0, 7) && f.proxy && (d = f.proxy + d.substr(7)); - return r.getTexturesContainer()[a] = GL.Texture.fromURL(d, b); + var c = a; + "http://" == c.substr(0, 7) && f.proxy && (c = f.proxy + c.substr(7)); + return q.getTexturesContainer()[a] = GL.Texture.fromURL(c, b); }; - r.getTexture = function(a) { + q.getTexture = function(a) { var b = this.getTexturesContainer(); if (!b) { throw "Cannot load texture, container of textures not found"; @@ -4870,26 +5034,37 @@ $jscomp.polyfill("Array.prototype.values", function(u) { b = b[a]; return !b && a && ":" != a[0] ? this.loadTexture(a) : b; }; - r.getTargetTexture = function(a, b, d) { + q.getTargetTexture = function(a, b, c) { if (!a) { throw "LGraphTexture.getTargetTexture expects a reference texture"; } - switch(d) { - case r.LOW: - d = gl.UNSIGNED_BYTE; + switch(c) { + case q.LOW: + c = gl.UNSIGNED_BYTE; break; - case r.HIGH: - d = gl.HIGH_PRECISION_FORMAT; + case q.HIGH: + c = gl.HIGH_PRECISION_FORMAT; break; - case r.REUSE: + case q.REUSE: return a; default: - d = a ? a.type : gl.UNSIGNED_BYTE; + c = a ? a.type : gl.UNSIGNED_BYTE; } - b && b.width == a.width && b.height == a.height && b.type == d || (b = new GL.Texture(a.width, a.height, {type:d, format:gl.RGBA, filter:gl.LINEAR})); + b && b.width == a.width && b.height == a.height && b.type == c || (b = new GL.Texture(a.width, a.height, {type:c, format:gl.RGBA, filter:gl.LINEAR})); return b; }; - r.getNoiseTexture = function() { + q.getTextureType = function(a, b) { + b = b ? b.type : gl.UNSIGNED_BYTE; + switch(a) { + case q.LOW: + b = gl.UNSIGNED_BYTE; + break; + case q.HIGH: + b = gl.HIGH_PRECISION_FORMAT; + } + return b; + }; + q.getNoiseTexture = function() { if (this._noise_texture) { return this._noise_texture; } @@ -4898,10 +5073,10 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return this._noise_texture = a = GL.Texture.fromMemory(512, 512, a, {format:gl.RGBA, wrap:gl.REPEAT, filter:gl.NEAREST}); }; - r.prototype.onDropFile = function(a, b, d) { - a ? ("string" == typeof a ? a = GL.Texture.fromURL(a) : -1 != b.toLowerCase().indexOf(".dds") ? a = GL.Texture.fromDDSInMemory(a) : (a = new Blob([d]), a = URL.createObjectURL(a), a = GL.Texture.fromURL(a)), this._drop_texture = a, this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); + q.prototype.onDropFile = function(a, b, c) { + a ? ("string" == typeof a ? a = GL.Texture.fromURL(a) : -1 != b.toLowerCase().indexOf(".dds") ? a = GL.Texture.fromDDSInMemory(a) : (a = new Blob([c]), a = URL.createObjectURL(a), a = GL.Texture.fromURL(a)), this._drop_texture = a, this.properties.name = b) : (this._drop_texture = null, this.properties.name = ""); }; - r.prototype.getExtraMenuOptions = function(a) { + q.prototype.getExtraMenuOptions = function(a) { var b = this; if (this._drop_texture) { return [{content:"Clear", callback:function() { @@ -4910,29 +5085,29 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }}]; } }; - r.prototype.onExecute = function() { + q.prototype.onExecute = function() { var a = null; this.isOutputConnected(1) && (a = this.getInputData(0)); !a && this._drop_texture && (a = this._drop_texture); - !a && this.properties.name && (a = r.getTexture(this.properties.name)); + !a && this.properties.name && (a = q.getTexture(this.properties.name)); if (a) { this._last_tex = a; !1 === this.properties.filter ? a.setParameter(gl.TEXTURE_MAG_FILTER, gl.NEAREST) : a.setParameter(gl.TEXTURE_MAG_FILTER, gl.LINEAR); this.setOutputData(0, a); for (var b = 1; b < this.outputs.length; b++) { - var d = this.outputs[b]; - if (d) { - var c = null; - "width" == d.name ? c = a.width : "height" == d.name ? c = a.height : "aspect" == d.name && (c = a.width / a.height); - this.setOutputData(b, c); + var c = this.outputs[b]; + if (c) { + var e = null; + "width" == c.name ? e = a.width : "height" == c.name ? e = a.height : "aspect" == c.name && (e = a.width / a.height); + this.setOutputData(b, e); } } } }; - r.prototype.onResourceRenamed = function(a, b) { + q.prototype.onResourceRenamed = function(a, b) { this.properties.name == a && (this.properties.name = b); }; - r.prototype.onDrawBackground = function(a) { + q.prototype.onDrawBackground = function(a) { if (!(this.flags.collapsed || 20 >= this.size[1])) { if (this._drop_texture && a.webgl) { a.drawImage(this._drop_texture, 0, 0, this.size[0], this.size[1]); @@ -4941,7 +5116,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { if (a.webgl) { this._canvas = this._last_tex; } else { - var b = r.generateLowResTexturePreview(this._last_tex); + var b = q.generateLowResTexturePreview(this._last_tex); if (!b) { return; } @@ -4953,94 +5128,95 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - r.generateLowResTexturePreview = function(a) { + q.generateLowResTexturePreview = function(a) { if (!a) { return null; } - var b = r.image_preview_size, d = a; + var b = q.image_preview_size, c = a; if (a.format == gl.DEPTH_COMPONENT) { return null; } if (a.width > b || a.height > b) { - d = this._preview_temp_tex, this._preview_temp_tex || (this._preview_temp_tex = d = new GL.Texture(b, b, {minFilter:gl.NEAREST})), a.copyTo(d); + c = this._preview_temp_tex, this._preview_temp_tex || (this._preview_temp_tex = c = new GL.Texture(b, b, {minFilter:gl.NEAREST})), a.copyTo(c); } a = this._preview_canvas; a || (this._preview_canvas = a = createCanvas(b, b)); - d && d.toCanvas(a); + c && c.toCanvas(a); return a; }; - r.prototype.getResources = function(a) { + q.prototype.getResources = function(a) { a[this.properties.name] = GL.Texture; return a; }; - r.prototype.onGetInputs = function() { + q.prototype.onGetInputs = function() { return [["in", "Texture"]]; }; - r.prototype.onGetOutputs = function() { + q.prototype.onGetOutputs = function() { return [["width", "number"], ["height", "number"], ["aspect", "number"]]; }; - f.registerNodeType("texture/texture", r); - y.title = "Preview"; - y.desc = "Show a texture in the graph canvas"; - y.allow_preview = !1; - y.prototype.onDrawBackground = function(a) { - if (!this.flags.collapsed && (a.webgl || y.allow_preview)) { + f.registerNodeType("texture/texture", q); + G.title = "Preview"; + G.desc = "Show a texture in the graph canvas"; + G.allow_preview = !1; + G.prototype.onDrawBackground = function(a) { + if (!this.flags.collapsed && (a.webgl || G.allow_preview)) { var b = this.getInputData(0); - b && (b = !b.handle && a.webgl ? b : r.generateLowResTexturePreview(b), a.save(), this.properties.flipY && (a.translate(0, this.size[1]), a.scale(1, -1)), a.drawImage(b, 0, 0, this.size[0], this.size[1]), a.restore()); + b && (b = !b.handle && a.webgl ? b : q.generateLowResTexturePreview(b), a.save(), this.properties.flipY && (a.translate(0, this.size[1]), a.scale(1, -1)), a.drawImage(b, 0, 0, this.size[0], this.size[1]), a.restore()); } }; - f.registerNodeType("texture/preview", y); - E.title = "Save"; - E.desc = "Save a texture in the repository"; - E.prototype.onExecute = function() { + f.registerNodeType("texture/preview", G); + I.title = "Save"; + I.desc = "Save a texture in the repository"; + I.prototype.onExecute = function() { var a = this.getInputData(0); - a && (this.properties.name && (r.storeTexture ? r.storeTexture(this.properties.name, a) : r.getTexturesContainer()[this.properties.name] = a), this.setOutputData(0, a)); + a && (this.properties.name && (q.storeTexture ? q.storeTexture(this.properties.name, a) : q.getTexturesContainer()[this.properties.name] = a), this.setOutputData(0, a)); }; - f.registerNodeType("texture/save", E); - C.widgets_info = {uvcode:{widget:"textarea", height:100}, pixelcode:{widget:"textarea", height:100}, precision:{widget:"combo", values:r.MODE_VALUES}}; - C.title = "Operation"; - C.desc = "Texture shader operation"; - C.prototype.getExtraMenuOptions = function(a) { + f.registerNodeType("texture/save", I); + E.widgets_info = {uvcode:{widget:"textarea", height:100}, pixelcode:{widget:"textarea", height:100}, precision:{widget:"combo", values:q.MODE_VALUES}}; + E.title = "Operation"; + E.desc = "Texture shader operation"; + E.prototype.getExtraMenuOptions = function(a) { var b = this; return [{content:b.properties.show ? "Hide Texture" : "Show Texture", callback:function() { b.properties.show = !b.properties.show; }}]; }; - C.prototype.onDrawBackground = function(a) { + E.prototype.onDrawBackground = function(a) { this.flags.collapsed || 20 >= this.size[1] || !this.properties.show || !this._tex || this._tex.gl != a || (a.save(), a.drawImage(this._tex, 0, 0, this.size[0], this.size[1]), a.restore()); }; - C.prototype.onExecute = function() { + E.prototype.onExecute = function() { var a = this.getInputData(0); if (this.isOutputConnected(0)) { - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { var b = this.getInputData(1); if (this.properties.uvcode || this.properties.pixelcode) { - var d = 512, c = 512; - a ? (d = a.width, c = a.height) : b && (d = b.width, c = b.height); - this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(d, c, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); - var e = ""; - this.properties.uvcode && (e = "uv = " + this.properties.uvcode, -1 != this.properties.uvcode.indexOf(";") && (e = this.properties.uvcode)); + var c = 512, e = 512; + a ? (c = a.width, e = a.height) : b && (c = b.width, e = b.height); + var d = q.getTextureType(this.properties.precision, a); + this._tex = a || this._tex ? q.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, e, {type:d, format:gl.RGBA, filter:gl.LINEAR}); + d = ""; + this.properties.uvcode && (d = "uv = " + this.properties.uvcode, -1 != this.properties.uvcode.indexOf(";") && (d = this.properties.uvcode)); var f = ""; this.properties.pixelcode && (f = "result = " + this.properties.pixelcode, -1 != this.properties.pixelcode.indexOf(";") && (f = this.properties.pixelcode)); - var n = this._shader; - if (!n || this._shader_code != e + "|" + f) { + var k = this._shader; + if (!k || this._shader_code != d + "|" + f) { try { - this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, C.pixel_shader, {UV_CODE:e, PIXEL_CODE:f}), this.boxcolor = "#00FF00"; - } catch (I) { - console.log("Error compiling shader: ", I); + this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, E.pixel_shader, {UV_CODE:d, PIXEL_CODE:f}), this.boxcolor = "#00FF00"; + } catch (J) { + console.log("Error compiling shader: ", J); this.boxcolor = "#FF0000"; return; } this.boxcolor = "#FF0000"; - this._shader_code = e + "|" + f; - n = this._shader; + this._shader_code = d + "|" + f; + k = this._shader; } - if (n) { + if (k) { this.boxcolor = "green"; - var l = this.getInputData(2); - null != l ? this.properties.value = l : l = parseFloat(this.properties.value); + var h = this.getInputData(2); + null != h ? this.properties.value = h : h = parseFloat(this.properties.value); var g = this.graph.getTime(); this._tex.drawTo(function() { gl.disable(gl.DEPTH_TEST); @@ -5048,8 +5224,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { gl.disable(gl.BLEND); a && a.bind(0); b && b.bind(1); - var e = Mesh.getScreenQuad(); - n.uniforms({u_texture:0, u_textureB:1, value:l, texSize:[d, c], time:g}).draw(e); + var d = Mesh.getScreenQuad(); + k.uniforms({u_texture:0, u_textureB:1, value:h, texSize:[c, e], time:g}).draw(d); }); this.setOutputData(0, this._tex); } else { @@ -5059,26 +5235,26 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - C.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 texSize;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\tuniform float value;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tUV_CODE;\n\r\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\r\n\t\t\t\tvec3 color = color4.rgb;\n\r\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\r\n\t\t\t\tvec3 colorB = color4B.rgb;\n\r\n\t\t\t\tvec3 result = color;\n\r\n\t\t\t\tfloat alpha = 1.0;\n\r\n\t\t\t\tPIXEL_CODE;\n\r\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/operation", C); - B.title = "Shader"; - B.desc = "Texture shader"; - B.widgets_info = {code:{type:"code"}, precision:{widget:"combo", values:r.MODE_VALUES}}; - B.prototype.onPropertyChanged = function(a, b) { + E.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 texSize;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\tuniform float value;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tUV_CODE;\n\r\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\r\n\t\t\t\tvec3 color = color4.rgb;\n\r\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\r\n\t\t\t\tvec3 colorB = color4B.rgb;\n\r\n\t\t\t\tvec3 result = color;\n\r\n\t\t\t\tfloat alpha = 1.0;\n\r\n\t\t\t\tPIXEL_CODE;\n\r\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/operation", E); + z.title = "Shader"; + z.desc = "Texture shader"; + z.widgets_info = {code:{type:"code"}, precision:{widget:"combo", values:q.MODE_VALUES}}; + z.prototype.onPropertyChanged = function(a, b) { if ("code" == a && (a = this.getShader())) { b = a.uniformInfo; if (this.inputs) { - for (var d = {}, c = 0; c < this.inputs.length; ++c) { - var e = this.getInputInfo(c); - e && (b[e.name] && !d[e.name] ? d[e.name] = !0 : (this.removeInput(c), c--)); + for (var c = {}, e = 0; e < this.inputs.length; ++e) { + var d = this.getInputInfo(e); + d && (b[d.name] && !c[d.name] ? c[d.name] = !0 : (this.removeInput(e), e--)); } } - for (c in b) { - if (e = a.uniformInfo[c], null !== e.loc && "time" != c) { - if (this._shader.samplers[c]) { + for (e in b) { + if (d = a.uniformInfo[e], null !== d.loc && "time" != e) { + if (this._shader.samplers[e]) { b = "texture"; } else { - switch(e.size) { + switch(d.size) { case 1: b = "number"; break; @@ -5101,91 +5277,98 @@ $jscomp.polyfill("Array.prototype.values", function(u) { continue; } } - d = this.findInputSlot(c); - if (-1 != d && (e = this.getInputInfo(d))) { - if (e.type == b) { + c = this.findInputSlot(e); + if (-1 != c && (d = this.getInputInfo(c))) { + if (d.type == b) { continue; } - this.removeInput(d, b); + this.removeInput(c, b); } - this.addInput(c, b); + this.addInput(e, b); } } } }; - B.prototype.getShader = function() { + z.prototype.getShader = function() { if (this._shader && this._shader_code == this.properties.code) { return this._shader; } this._shader_code = this.properties.code; - this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, B.pixel_shader + this.properties.code), this.boxcolor = "green"; + this._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, z.pixel_shader + this.properties.code), this.boxcolor = "green"; return this._shader; }; - B.prototype.onExecute = function() { + z.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getShader(); if (a) { for (var b = 0; b < this.inputs.length; ++b) { - var d = this.getInputInfo(b), c = this.getInputData(b); - null != c && (c.constructor === GL.Texture && (c.bind(slot), c = slot, slot++), a.setUniform(d.name, c)); + var c = this.getInputInfo(b), e = this.getInputData(b); + null != e && (e.constructor === GL.Texture && (e.bind(slot), e = slot, slot++), a.setUniform(c.name, e)); } - this._tex && this._tex.width == this.properties.width && this._tex.height == this.properties.height || (this._tex = new GL.Texture(this.properties.width, this.properties.height, {format:gl.RGBA, filter:gl.LINEAR})); - var e = this._tex, f = this.graph.getTime(); - e.drawTo(function() { - a.uniforms({texSize:[e.width, e.height], time:f}).draw(Mesh.getScreenQuad()); + var d = this._uniforms; + b = q.getTextureType(this.properties.precision); + c = this.properties.width | 0; + e = this.properties.height | 0; + d.texSize[0] = c; + d.texSize[1] = e; + this._tex && this._tex.type == b && this._tex.width == c && this._tex.height == e || (this._tex = new GL.Texture(c, e, {type:b, format:gl.RGBA, filter:gl.LINEAR})); + b = this._tex; + this.graph.getTime(); + b.drawTo(function() { + a.uniforms(d).draw(GL.Mesh.getScreenQuad()); }); this.setOutputData(0, this._tex); } } }; - B.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\t"; - f.registerNodeType("texture/shader", B); - D.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - D.title = "Scale/Offset"; - D.desc = "Applies an scaling and offseting"; - D.prototype.onExecute = function() { + z.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float time;\n\r\n\t\t\t"; + f.registerNodeType("texture/shader", z); + x.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + x.title = "Scale/Offset"; + x.desc = "Applies an scaling and offseting"; + x.prototype.onExecute = function() { var a = this.getInputData(0); if (this.isOutputConnected(0) && a) { - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = a.width, d = a.height, c = this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT; - this.precision === r.DEFAULT && (c = a.type); - this._tex && this._tex.width == b && this._tex.height == d && this._tex.type == c || (this._tex = new GL.Texture(b, d, {type:c, format:gl.RGBA, filter:gl.LINEAR})); - var e = this._shader; - e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, D.pixel_shader)); + var b = a.width, c = a.height, e = this.precision === q.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT; + this.precision === q.DEFAULT && (e = a.type); + this._tex && this._tex.width == b && this._tex.height == c && this._tex.type == e || (this._tex = new GL.Texture(b, c, {type:e, format:gl.RGBA, filter:gl.LINEAR})); + var d = this._shader; + d || (d = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, x.pixel_shader)); var f = this.getInputData(1); f ? (this.properties.scale[0] = f[0], this.properties.scale[1] = f[1]) : f = this.properties.scale; - var n = this.getInputData(2); - n ? (this.properties.offset[0] = n[0], this.properties.offset[1] = n[1]) : n = this.properties.offset; + var k = this.getInputData(2); + k ? (this.properties.offset[0] = k[0], this.properties.offset[1] = k[1]) : k = this.properties.offset; this._tex.drawTo(function() { gl.disable(gl.DEPTH_TEST); gl.disable(gl.CULL_FACE); gl.disable(gl.BLEND); a.bind(0); var b = Mesh.getScreenQuad(); - e.uniforms({u_texture:0, u_scale:f, u_offset:n}).draw(b); + d.uniforms({u_texture:0, u_scale:f, u_offset:k}).draw(b); }); this.setOutputData(0, this._tex); } } }; - D.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 u_scale;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv = uv / u_scale - u_offset;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/scaleOffset", D); - A.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - A.title = "Warp"; - A.desc = "Texture warp operation"; - A.prototype.onExecute = function() { + x.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform vec2 u_scale;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv = uv / u_scale - u_offset;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/scaleOffset", x); + F.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + F.title = "Warp"; + F.desc = "Texture warp operation"; + F.prototype.onExecute = function() { var a = this.getInputData(0); if (this.isOutputConnected(0)) { - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = this.getInputData(1), d = 512, c = 512; - a ? (d = a.width, c = a.height) : b && (d = b.width, c = b.height); - this._tex = a || this._tex ? r.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(d, c, {type:this.precision === r.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); - var e = this._shader; - e || (e = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, A.pixel_shader)); + var b = this.getInputData(1), c = 512, e = 512; + a ? (c = a.width, e = a.height) : b && (c = b.width, e = b.height); + this._tex = a || this._tex ? q.getTargetTexture(a || this._tex, this._tex, this.properties.precision) : new GL.Texture(c, e, {type:this.precision === q.LOW ? gl.UNSIGNED_BYTE : gl.HIGH_PRECISION_FORMAT, format:gl.RGBA, filter:gl.LINEAR}); + var d = this._shader; + d || (d = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, F.pixel_shader)); var f = this.getInputData(2); null != f ? this.properties.factor = f : f = parseFloat(this.properties.factor); this._tex.drawTo(function() { @@ -5194,18 +5377,18 @@ $jscomp.polyfill("Array.prototype.values", function(u) { gl.disable(gl.BLEND); a && a.bind(0); b && b.bind(1); - var d = Mesh.getScreenQuad(); - e.uniforms({u_texture:0, u_textureB:1, u_factor:f}).draw(d); + var c = Mesh.getScreenQuad(); + d.uniforms({u_texture:0, u_textureB:1, u_factor:f}).draw(c); }); this.setOutputData(0, this._tex); } } }; - A.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv += ( texture2D(u_textureB, uv).rg - vec2(0.5)) * u_factor;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/warp", A); - z.title = "to Viewport"; - z.desc = "Texture to viewport"; - z.prototype.onExecute = function() { + F.pixel_shader = "precision highp float;\n\r\n\t\t\t\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 uv = v_coord;\n\r\n\t\t\t\tuv += ( texture2D(u_textureB, uv).rg - vec2(0.5)) * u_factor;\n\r\n\t\t\t\tgl_FragColor = texture2D(u_texture, uv);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/warp", F); + A.title = "to Viewport"; + A.desc = "Texture to viewport"; + A.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { this.properties.disable_alpha ? gl.disable(gl.BLEND) : (gl.enable(gl.BLEND), this.properties.additive ? gl.blendFunc(gl.SRC_ALPHA, gl.ONE) : gl.blendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA)); @@ -5214,118 +5397,129 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.isInputConnected(1) && (b = this.getInputData(1)); a.setParameter(gl.TEXTURE_MAG_FILTER, this.properties.filter ? gl.LINEAR : gl.NEAREST); if (this.properties.antialiasing) { - z._shader || (z._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, z.aa_pixel_shader)); + A._shader || (A._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, A.aa_pixel_shader)); gl.getViewport(); - var d = Mesh.getScreenQuad(); + var c = Mesh.getScreenQuad(); a.bind(0); - z._shader.uniforms({u_texture:0, uViewportSize:[a.width, a.height], u_igamma:1 / b, inverseVP:[1 / a.width, 1 / a.height]}).draw(d); + A._shader.uniforms({u_texture:0, uViewportSize:[a.width, a.height], u_igamma:1 / b, inverseVP:[1 / a.width, 1 / a.height]}).draw(c); } else { - 1.0 != b ? (z._gamma_shader || (z._gamma_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, z.gamma_pixel_shader)), a.toViewport(z._gamma_shader, {u_texture:0, u_igamma:1 / b})) : a.toViewport(); + 1.0 != b ? (A._gamma_shader || (A._gamma_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, A.gamma_pixel_shader)), a.toViewport(A._gamma_shader, {u_texture:0, u_igamma:1 / b})) : a.toViewport(); } } }; - z.prototype.onGetInputs = function() { + A.prototype.onGetInputs = function() { return [["gamma", "number"]]; }; - z.aa_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 uViewportSize;\n\r\n\t\t\tuniform vec2 inverseVP;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\t#define FXAA_REDUCE_MIN (1.0/ 128.0)\n\r\n\t\t\t#define FXAA_REDUCE_MUL (1.0 / 8.0)\n\r\n\t\t\t#define FXAA_SPAN_MAX 8.0\n\r\n\t\t\t\n\r\n\t\t\t/* from mitsuhiko/webgl-meincraft based on the code on geeks3d.com */\n\r\n\t\t\tvec4 applyFXAA(sampler2D tex, vec2 fragCoord)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\t/*vec2 inverseVP = vec2(1.0 / uViewportSize.x, 1.0 / uViewportSize.y);*/\n\r\n\t\t\t\tvec3 rgbNW = texture2D(tex, (fragCoord + vec2(-1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbNE = texture2D(tex, (fragCoord + vec2(1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSW = texture2D(tex, (fragCoord + vec2(-1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSE = texture2D(tex, (fragCoord + vec2(1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbM = texture2D(tex, fragCoord * inverseVP).xyz;\n\r\n\t\t\t\tvec3 luma = vec3(0.299, 0.587, 0.114);\n\r\n\t\t\t\tfloat lumaNW = dot(rgbNW, luma);\n\r\n\t\t\t\tfloat lumaNE = dot(rgbNE, luma);\n\r\n\t\t\t\tfloat lumaSW = dot(rgbSW, luma);\n\r\n\t\t\t\tfloat lumaSE = dot(rgbSE, luma);\n\r\n\t\t\t\tfloat lumaM = dot(rgbM, luma);\n\r\n\t\t\t\tfloat lumaMin = min(lumaM, min(min(lumaNW, lumaNE), min(lumaSW, lumaSE)));\n\r\n\t\t\t\tfloat lumaMax = max(lumaM, max(max(lumaNW, lumaNE), max(lumaSW, lumaSE)));\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec2 dir;\n\r\n\t\t\t\tdir.x = -((lumaNW + lumaNE) - (lumaSW + lumaSE));\n\r\n\t\t\t\tdir.y = ((lumaNW + lumaSW) - (lumaNE + lumaSE));\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat dirReduce = max((lumaNW + lumaNE + lumaSW + lumaSE) * (0.25 * FXAA_REDUCE_MUL), FXAA_REDUCE_MIN);\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat rcpDirMin = 1.0 / (min(abs(dir.x), abs(dir.y)) + dirReduce);\n\r\n\t\t\t\tdir = min(vec2(FXAA_SPAN_MAX, FXAA_SPAN_MAX), max(vec2(-FXAA_SPAN_MAX, -FXAA_SPAN_MAX), dir * rcpDirMin)) * inverseVP;\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec3 rgbA = 0.5 * (texture2D(tex, fragCoord * inverseVP + dir * (1.0 / 3.0 - 0.5)).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * (2.0 / 3.0 - 0.5)).xyz);\n\r\n\t\t\t\tvec3 rgbB = rgbA * 0.5 + 0.25 * (texture2D(tex, fragCoord * inverseVP + dir * -0.5).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * 0.5).xyz);\n\r\n\t\t\t\t\n\r\n\t\t\t\t//return vec4(rgbA,1.0);\n\r\n\t\t\t\tfloat lumaB = dot(rgbB, luma);\n\r\n\t\t\t\tif ((lumaB < lumaMin) || (lumaB > lumaMax))\n\r\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\r\n\t\t\t\tif(u_igamma != 1.0)\n\r\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\r\n\t\t\t\treturn color;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\r\n\t\t\t}\n\r\n\t\t\t"; - z.gamma_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\r\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\r\n\t\t\t gl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/toviewport", z); - n.title = "Copy"; - n.desc = "Copy Texture"; - n.widgets_info = {size:{widget:"combo", values:[0, 32, 64, 128, 256, 512, 1024, 2048]}, precision:{widget:"combo", values:r.MODE_VALUES}}; - n.prototype.onExecute = function() { + A.aa_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 uViewportSize;\n\r\n\t\t\tuniform vec2 inverseVP;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\t#define FXAA_REDUCE_MIN (1.0/ 128.0)\n\r\n\t\t\t#define FXAA_REDUCE_MUL (1.0 / 8.0)\n\r\n\t\t\t#define FXAA_SPAN_MAX 8.0\n\r\n\t\t\t\n\r\n\t\t\t/* from mitsuhiko/webgl-meincraft based on the code on geeks3d.com */\n\r\n\t\t\tvec4 applyFXAA(sampler2D tex, vec2 fragCoord)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\t/*vec2 inverseVP = vec2(1.0 / uViewportSize.x, 1.0 / uViewportSize.y);*/\n\r\n\t\t\t\tvec3 rgbNW = texture2D(tex, (fragCoord + vec2(-1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbNE = texture2D(tex, (fragCoord + vec2(1.0, -1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSW = texture2D(tex, (fragCoord + vec2(-1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbSE = texture2D(tex, (fragCoord + vec2(1.0, 1.0)) * inverseVP).xyz;\n\r\n\t\t\t\tvec3 rgbM = texture2D(tex, fragCoord * inverseVP).xyz;\n\r\n\t\t\t\tvec3 luma = vec3(0.299, 0.587, 0.114);\n\r\n\t\t\t\tfloat lumaNW = dot(rgbNW, luma);\n\r\n\t\t\t\tfloat lumaNE = dot(rgbNE, luma);\n\r\n\t\t\t\tfloat lumaSW = dot(rgbSW, luma);\n\r\n\t\t\t\tfloat lumaSE = dot(rgbSE, luma);\n\r\n\t\t\t\tfloat lumaM = dot(rgbM, luma);\n\r\n\t\t\t\tfloat lumaMin = min(lumaM, min(min(lumaNW, lumaNE), min(lumaSW, lumaSE)));\n\r\n\t\t\t\tfloat lumaMax = max(lumaM, max(max(lumaNW, lumaNE), max(lumaSW, lumaSE)));\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec2 dir;\n\r\n\t\t\t\tdir.x = -((lumaNW + lumaNE) - (lumaSW + lumaSE));\n\r\n\t\t\t\tdir.y = ((lumaNW + lumaSW) - (lumaNE + lumaSE));\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat dirReduce = max((lumaNW + lumaNE + lumaSW + lumaSE) * (0.25 * FXAA_REDUCE_MUL), FXAA_REDUCE_MIN);\n\r\n\t\t\t\t\n\r\n\t\t\t\tfloat rcpDirMin = 1.0 / (min(abs(dir.x), abs(dir.y)) + dirReduce);\n\r\n\t\t\t\tdir = min(vec2(FXAA_SPAN_MAX, FXAA_SPAN_MAX), max(vec2(-FXAA_SPAN_MAX, -FXAA_SPAN_MAX), dir * rcpDirMin)) * inverseVP;\n\r\n\t\t\t\t\n\r\n\t\t\t\tvec3 rgbA = 0.5 * (texture2D(tex, fragCoord * inverseVP + dir * (1.0 / 3.0 - 0.5)).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * (2.0 / 3.0 - 0.5)).xyz);\n\r\n\t\t\t\tvec3 rgbB = rgbA * 0.5 + 0.25 * (texture2D(tex, fragCoord * inverseVP + dir * -0.5).xyz + \n\r\n\t\t\t\t\ttexture2D(tex, fragCoord * inverseVP + dir * 0.5).xyz);\n\r\n\t\t\t\t\n\r\n\t\t\t\t//return vec4(rgbA,1.0);\n\r\n\t\t\t\tfloat lumaB = dot(rgbB, luma);\n\r\n\t\t\t\tif ((lumaB < lumaMin) || (lumaB > lumaMax))\n\r\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\r\n\t\t\t\tif(u_igamma != 1.0)\n\r\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\r\n\t\t\t\treturn color;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\r\n\t\t\t}\n\r\n\t\t\t"; + A.gamma_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_igamma;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\r\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\r\n\t\t\t gl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/toviewport", A); + H.title = "Copy"; + H.desc = "Copy Texture"; + H.widgets_info = {size:{widget:"combo", values:[0, 32, 64, 128, 256, 512, 1024, 2048]}, precision:{widget:"combo", values:q.MODE_VALUES}}; + H.prototype.onExecute = function() { var a = this.getInputData(0); if ((a || this._temp_texture) && this.isOutputConnected(0)) { if (a) { - var b = a.width, d = a.height; - 0 != this.properties.size && (d = b = this.properties.size); - var c = this._temp_texture, e = a.type; - this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); - c && c.width == b && c.height == d && c.type == e || (c = gl.LINEAR, this.properties.generate_mipmaps && isPowerOfTwo(b) && isPowerOfTwo(d) && (c = gl.LINEAR_MIPMAP_LINEAR), this._temp_texture = new GL.Texture(b, d, {type:e, format:gl.RGBA, minFilter:c, magFilter:gl.LINEAR})); + var b = a.width, c = a.height; + 0 != this.properties.size && (c = b = this.properties.size); + var e = this._temp_texture, d = a.type; + this.properties.precision === q.LOW ? d = gl.UNSIGNED_BYTE : this.properties.precision === q.HIGH && (d = gl.HIGH_PRECISION_FORMAT); + e && e.width == b && e.height == c && e.type == d || (e = gl.LINEAR, this.properties.generate_mipmaps && isPowerOfTwo(b) && isPowerOfTwo(c) && (e = gl.LINEAR_MIPMAP_LINEAR), this._temp_texture = new GL.Texture(b, c, {type:d, format:gl.RGBA, minFilter:e, magFilter:gl.LINEAR})); a.copyTo(this._temp_texture); this.properties.generate_mipmaps && (this._temp_texture.bind(0), gl.generateMipmap(this._temp_texture.texture_type), this._temp_texture.unbind(0)); } this.setOutputData(0, this._temp_texture); } }; - f.registerNodeType("texture/copy", n); - x.title = "Downsample"; - x.desc = "Downsample Texture"; - x.widgets_info = {iterations:{type:"number", step:1, precision:0, min:1}, precision:{widget:"combo", values:r.MODE_VALUES}}; - x.prototype.onExecute = function() { + f.registerNodeType("texture/copy", H); + D.title = "Downsample"; + D.desc = "Downsample Texture"; + D.widgets_info = {iterations:{type:"number", step:1, precision:0, min:1}, precision:{widget:"combo", values:q.MODE_VALUES}}; + D.prototype.onExecute = function() { var a = this.getInputData(0); if ((a || this._temp_texture) && this.isOutputConnected(0) && a && a.texture_type === GL.TEXTURE_2D) { - var b = x._shader; - b || (x._shader = b = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, x.pixel_shader)); - var d = a.width | 0, c = a.height | 0, e = a.type; - this.properties.precision === r.LOW ? e = gl.UNSIGNED_BYTE : this.properties.precision === r.HIGH && (e = gl.HIGH_PRECISION_FORMAT); - var f = this.properties.iterations || 1, n = a, l = []; - e = {type:e, format:a.format}; - var g = vec2.create(), h = {u_offset:g}; + var b = D._shader; + b || (D._shader = b = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, D.pixel_shader)); + var c = a.width | 0, e = a.height | 0, d = a.type; + this.properties.precision === q.LOW ? d = gl.UNSIGNED_BYTE : this.properties.precision === q.HIGH && (d = gl.HIGH_PRECISION_FORMAT); + var f = this.properties.iterations || 1, k = a, h = []; + d = {type:d, format:a.format}; + var g = vec2.create(), m = {u_offset:g}; this._texture && GL.Texture.releaseTemporary(this._texture); - for (var k = 0; k < f; ++k) { - g[0] = 1 / d; - g[1] = 1 / c; - d = d >> 1 || 0; + for (var l = 0; l < f; ++l) { + g[0] = 1 / c; + g[1] = 1 / e; c = c >> 1 || 0; - a = GL.Texture.getTemporary(d, c, e); - l.push(a); - n.setParameter(GL.TEXTURE_MAG_FILTER, GL.NEAREST); - n.copyTo(a, b, h); - if (1 == d && 1 == c) { + e = e >> 1 || 0; + a = GL.Texture.getTemporary(c, e, d); + h.push(a); + k.setParameter(GL.TEXTURE_MAG_FILTER, GL.NEAREST); + k.copyTo(a, b, m); + if (1 == c && 1 == e) { break; } - n = a; + k = a; } - this._texture = l.pop(); - for (k = 0; k < l.length; ++k) { - GL.Texture.releaseTemporary(l[k]); + this._texture = h.pop(); + for (l = 0; l < h.length; ++l) { + GL.Texture.releaseTemporary(h[l]); } this.properties.generate_mipmaps && (this._texture.bind(0), gl.generateMipmap(this._texture.texture_type), this._texture.unbind(0)); this.setOutputData(0, this._texture); } }; - x.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, 0.0 ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( 0.0, u_offset.y ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, u_offset.y ) );\n\r\n\t\t\t gl_FragColor = color * 0.25;\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/downsample", x); - h.title = "Average"; - h.desc = "Compute a partial average (32 random samples) of a texture and stores it as a 1x1 pixel texture"; - h.prototype.onExecute = function() { + D.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, 0.0 ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( 0.0, u_offset.y ) );\n\r\n\t\t\t\tcolor += texture2D(u_texture, v_coord + vec2( u_offset.x, u_offset.y ) );\n\r\n\t\t\t gl_FragColor = color * 0.25;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/downsample", D); + C.title = "Average"; + C.desc = "Compute a partial average (32 random samples) of a texture and stores it as a 1x1 pixel texture"; + C.prototype.onExecute = function() { var a = this.getInputData(0); - if (a && this.isOutputConnected(0)) { - if (!h._shader) { - h._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, h.pixel_shader); - for (var b = new Float32Array(32), d = 0; 32 > d; ++d) { - b[d] = Math.random(); + if (a && (this.isOutputConnected(0) || this.isOutputConnected(1) || this.isOutputConnected(2))) { + if (!C._shader) { + C._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, C.pixel_shader); + for (var b = new Float32Array(32), c = 0; 32 > c; ++c) { + b[c] = Math.random(); } - h._shader.uniforms({u_samples_a:b.subarray(0, 16), u_samples_b:b.subarray(16, 32)}); + C._shader.uniforms({u_samples_a:b.subarray(0, 16), u_samples_b:b.subarray(16, 32)}); } - b = this._temp_texture; - d = this.properties.low_precision ? gl.UNSIGNED_BYTE : a.type; - b && b.type == d || (this._temp_texture = new GL.Texture(1, 1, {type:d, format:gl.RGBA, filter:gl.NEAREST})); - var c = h._shader, e = this._uniforms; - e.u_mipmap_offset = this.properties.mipmap_offset; + c = this._temp_texture; + b = gl.UNSIGNED_BYTE; + a.type != b && (b = gl.FLOAT); + c && c.type == b || (this._temp_texture = new GL.Texture(1, 1, {type:b, format:gl.RGBA, filter:gl.NEAREST})); + var e = C._shader, d = this._uniforms; + d.u_mipmap_offset = this.properties.mipmap_offset; this._temp_texture.drawTo(function() { - a.toViewport(c, e); + a.toViewport(e, d); }); this.setOutputData(0, this._temp_texture); + if (this.isOutputConnected(1) || this.isOutputConnected(2)) { + if (c = this._temp_texture.getPixels()) { + var f = this._luminance; + b = this._temp_texture.type; + f.set(c); + b == gl.UNSIGNED_BYTE ? vec4.scale(f, f, 1 / 255) : (b == GL.HALF_FLOAT || b == GL.HALF_FLOAT_OES) && vec4.scale(f, f, 1 / 65025); + this.setOutputData(1, f); + this.setOutputData(2, (f[0] + f[1] + f[2]) / 3); + } + } } }; - h.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform mat4 u_samples_a;\n\r\n\t\t\tuniform mat4 u_samples_b;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_mipmap_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\r\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\r\n\t\t\t\t\t{\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t}\n\r\n\t\t\t gl_FragColor = color * 0.03125;\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/average", h); - g.title = "Image to Texture"; - g.desc = "Uploads an image to the GPU"; - g.prototype.onExecute = function() { + C.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tuniform mat4 u_samples_a;\n\r\n\t\t\tuniform mat4 u_samples_b;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_mipmap_offset;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = vec4(0.0);\n\r\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\r\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\r\n\t\t\t\t\t{\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\r\n\t\t\t\t\t}\n\r\n\t\t\t gl_FragColor = color * 0.03125;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/average", C); + B.title = "Image to Texture"; + B.desc = "Uploads an image to the GPU"; + B.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { - var b = a.videoWidth || a.width, d = a.videoHeight || a.height; + var b = a.videoWidth || a.width, c = a.videoHeight || a.height; if (a.gltexture) { this.setOutputData(0, a.gltexture); } else { - var c = this._temp_texture; - c && c.width == b && c.height == d || (this._temp_texture = new GL.Texture(b, d, {format:gl.RGBA, filter:gl.LINEAR})); + var e = this._temp_texture; + e && e.width == b && e.height == c || (this._temp_texture = new GL.Texture(b, c, {format:gl.RGBA, filter:gl.LINEAR})); try { this._temp_texture.uploadImage(a); - } catch (J) { + } catch (K) { console.error("image comes from an unsafe location, cannot be uploaded to webgl"); return; } @@ -5333,20 +5527,19 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - f.registerNodeType("texture/imageToTexture", g); - d.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - d.title = "LUT"; - d.desc = "Apply LUT to Texture"; - d.widgets_info = {texture:{widget:"texture"}}; - d.prototype.onExecute = function() { + f.registerNodeType("texture/imageToTexture", B); + y.widgets_info = {texture:{widget:"texture"}, precision:{widget:"combo", values:q.MODE_VALUES}}; + y.title = "LUT"; + y.desc = "Apply LUT to Texture"; + y.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { if (a) { var b = this.getInputData(1); - b || (b = r.getTexture(this.properties.texture)); + b || (b = q.getTexture(this.properties.texture)); if (b) { b.bind(0); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); @@ -5355,10 +5548,10 @@ $jscomp.polyfill("Array.prototype.values", function(u) { gl.bindTexture(gl.TEXTURE_2D, null); var c = this.properties.intensity; this.isInputConnected(2) && (this.properties.intensity = c = this.getInputData(2)); - this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + this._tex = q.getTargetTexture(a, this._tex, this.properties.precision); this._tex.drawTo(function() { b.bind(1); - a.toViewport(d._shader, {u_texture:0, u_textureB:1, u_amount:c}); + a.toViewport(y._shader, {u_texture:0, u_textureB:1, u_amount:c}); }); this.setOutputData(0, this._tex); } else { @@ -5368,53 +5561,53 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - d.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform float u_amount;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\r\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\r\n\t\t\t\t mediump vec2 quad1;\n\r\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\r\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\r\n\t\t\t\t mediump vec2 quad2;\n\r\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\r\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\r\n\t\t\t\t highp vec2 texPos1;\n\r\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t highp vec2 texPos2;\n\r\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\r\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\r\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\r\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/LUT", d); - b.title = "Texture to Channels"; - b.desc = "Split texture channels"; - b.prototype.onExecute = function() { + y.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform float u_amount;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\r\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\r\n\t\t\t\t mediump vec2 quad1;\n\r\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\r\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\r\n\t\t\t\t mediump vec2 quad2;\n\r\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\r\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\r\n\t\t\t\t highp vec2 texPos1;\n\r\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t highp vec2 texPos2;\n\r\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\r\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\r\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\r\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\r\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\r\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/LUT", y); + k.title = "Texture to Channels"; + k.desc = "Split texture channels"; + k.prototype.onExecute = function() { var a = this.getInputData(0); if (a) { this._channels || (this._channels = Array(4)); - for (var d = 0, c = 0; 4 > c; c++) { - this.isOutputConnected(c) ? (this._channels[c] && this._channels[c].width == a.width && this._channels[c].height == a.height && this._channels[c].type == a.type || (this._channels[c] = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})), d++) : this._channels[c] = null; + for (var b = 0, c = 0; 4 > c; c++) { + this.isOutputConnected(c) ? (this._channels[c] && this._channels[c].width == a.width && this._channels[c].height == a.height && this._channels[c].type == a.type || (this._channels[c] = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})), b++) : this._channels[c] = null; } - if (d) { + if (b) { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var e = Mesh.getScreenQuad(), f = b._shader, n = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; + var e = Mesh.getScreenQuad(), d = k._shader, f = [[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]; for (c = 0; 4 > c; c++) { this._channels[c] && (this._channels[c].drawTo(function() { a.bind(0); - f.uniforms({u_texture:0, u_mask:n[c]}).draw(e); + d.uniforms({u_texture:0, u_mask:f[c]}).draw(e); }), this.setOutputData(c, this._channels[c])); } } } }; - b.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec4 u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/textureChannels", b); - a.title = "Channels to Texture"; - a.desc = "Split texture channels"; - a.prototype.onExecute = function() { - var b = [this.getInputData(0), this.getInputData(1), this.getInputData(2), this.getInputData(3)]; - if (b[0] && b[1] && b[2] && b[3]) { + k.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec4 u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/textureChannels", k); + v.title = "Channels to Texture"; + v.desc = "Split texture channels"; + v.prototype.onExecute = function() { + var a = [this.getInputData(0), this.getInputData(1), this.getInputData(2), this.getInputData(3)]; + if (a[0] && a[1] && a[2] && a[3]) { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var d = Mesh.getScreenQuad(), c = a._shader; - this._tex = r.getTargetTexture(b[0], this._tex); + var b = Mesh.getScreenQuad(), c = v._shader; + this._tex = q.getTargetTexture(a[0], this._tex); this._tex.drawTo(function() { - b[0].bind(0); - b[1].bind(1); - b[2].bind(2); - b[3].bind(3); - c.uniforms({u_textureR:0, u_textureG:1, u_textureB:2, u_textureA:3}).draw(d); + a[0].bind(0); + a[1].bind(1); + a[2].bind(2); + a[3].bind(3); + c.uniforms({u_textureR:0, u_textureG:1, u_textureB:2, u_textureA:3}).draw(b); }); this.setOutputData(0, this._tex); } }; - a.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureR;\n\r\n\t\t\tuniform sampler2D u_textureG;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( \r\n\t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/channelsTexture", a); + v.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureR;\n\r\n\t\t\tuniform sampler2D u_textureG;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = vec4( \r\n\t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\r\n\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/channelsTexture", v); l.title = "Gradient"; l.desc = "Generates a gradient"; l["@A"] = {type:"color"}; @@ -5423,23 +5616,23 @@ $jscomp.polyfill("Array.prototype.values", function(u) { l.prototype.onExecute = function() { gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var a = GL.Mesh.getScreenQuad(), b = l._shader, d = this.getInputData(0); - d || (d = this.properties.A); - var c = this.getInputData(1); - c || (c = this.properties.B); - for (var e = 2; e < this.inputs.length; e++) { - var f = this.inputs[e], n = this.getInputData(e); - void 0 !== n && (this.properties[f.name] = n); + var a = GL.Mesh.getScreenQuad(), b = l._shader, c = this.getInputData(0); + c || (c = this.properties.A); + var e = this.getInputData(1); + e || (e = this.properties.B); + for (var d = 2; d < this.inputs.length; d++) { + var f = this.inputs[d], k = this.getInputData(d); + void 0 !== k && (this.properties[f.name] = k); } - var g = this._uniforms; + var h = this._uniforms; this._uniforms.u_angle = this.properties.angle * DEG2RAD; this._uniforms.u_scale = this.properties.scale; - vec3.copy(g.u_colorA, d); - vec3.copy(g.u_colorB, c); - d = parseInt(this.properties.texture_size); - this._tex && this._tex.width == d || (this._tex = new GL.Texture(d, d, {format:gl.RGB, filter:gl.LINEAR})); + vec3.copy(h.u_colorA, c); + vec3.copy(h.u_colorB, e); + c = parseInt(this.properties.texture_size); + this._tex && this._tex.width == c || (this._tex = new GL.Texture(c, c, {format:gl.RGB, filter:gl.LINEAR})); this._tex.drawTo(function() { - b.uniforms(g).draw(a); + b.uniforms(h).draw(a); }); this.setOutputData(0, this._tex); }; @@ -5448,155 +5641,233 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; l.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform float u_angle;\n\r\n\t\t\tuniform float u_scale;\n\r\n\t\t\tuniform vec3 u_colorA;\n\r\n\t\t\tuniform vec3 u_colorB;\n\r\n\t\t\t\n\r\n\t\t\tvec2 rotate(vec2 v, float angle)\n\r\n\t\t\t{\n\r\n\t\t\t\tvec2 result;\n\r\n\t\t\t\tfloat _cos = cos(angle);\n\r\n\t\t\t\tfloat _sin = sin(angle);\n\r\n\t\t\t\tresult.x = v.x * _cos - v.y * _sin;\n\r\n\t\t\t\tresult.y = v.x * _sin + v.y * _cos;\n\r\n\t\t\t\treturn result;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat f = (rotate(u_scale * (v_coord - vec2(0.5)), u_angle) + vec2(0.5)).x;\n\r\n\t\t\t\tvec3 color = mix(u_colorA,u_colorB,clamp(f,0.0,1.0));\n\r\n\t\t\t gl_FragColor = vec4(color,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; f.registerNodeType("texture/gradient", l); - q.title = "Mix"; - q.desc = "Generates a texture mixing two textures"; - q.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - q.prototype.onExecute = function() { + n.title = "Mix"; + n.desc = "Generates a texture mixing two textures"; + n.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + n.prototype.onExecute = function() { var a = this.getInputData(0); if (this.isOutputConnected(0)) { - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { - var b = this.getInputData(1), d = this.getInputData(2); - if (a && b && d) { - this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + var b = this.getInputData(1), c = this.getInputData(2); + if (a && b && c) { + this._tex = q.getTargetTexture(a, this._tex, this.properties.precision); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var c = Mesh.getScreenQuad(), e = q._shader; + var e = Mesh.getScreenQuad(), d = n._shader; this._tex.drawTo(function() { a.bind(0); b.bind(1); - d.bind(2); - e.uniforms({u_textureA:0, u_textureB:1, u_textureMix:2}).draw(c); + c.bind(2); + d.uniforms({u_textureA:0, u_textureB:1, u_textureMix:2}).draw(e); }); this.setOutputData(0, this._tex); } } } }; - q.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureMix;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = mix( texture2D(u_textureA, v_coord), texture2D(u_textureB, v_coord), texture2D(u_textureMix, v_coord) );\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/mix", q); - e.title = "Edges"; - e.desc = "Detects edges"; - e.widgets_info = {precision:{widget:"combo", values:r.MODE_VALUES}}; - e.prototype.onExecute = function() { + n.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_textureA;\n\r\n\t\t\tuniform sampler2D u_textureB;\n\r\n\t\t\tuniform sampler2D u_textureMix;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t gl_FragColor = mix( texture2D(u_textureA, v_coord), texture2D(u_textureB, v_coord), texture2D(u_textureMix, v_coord) );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/mix", n); + c.title = "Edges"; + c.desc = "Detects edges"; + c.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + c.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); - if (this.properties.precision === r.PASS_THROUGH) { + if (this.properties.precision === q.PASS_THROUGH) { this.setOutputData(0, a); } else { if (a) { - this._tex = r.getTargetTexture(a, this._tex, this.properties.precision); + this._tex = q.getTargetTexture(a, this._tex, this.properties.precision); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var b = Mesh.getScreenQuad(), d = e._shader, c = this.properties.invert, f = this.properties.factor; + var b = Mesh.getScreenQuad(), e = c._shader, d = this.properties.invert, f = this.properties.factor, k = this.properties.threshold ? 1 : 0; this._tex.drawTo(function() { a.bind(0); - d.uniforms({u_texture:0, u_isize:[1 / a.width, 1 / a.height], u_factor:f, u_invert:c ? 1 : 0}).draw(b); + e.uniforms({u_texture:0, u_isize:[1 / a.width, 1 / a.height], u_factor:f, u_threshold:k, u_invert:d ? 1 : 0}).draw(b); }); this.setOutputData(0, this._tex); } } } }; - e.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_isize;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 up = texture2D(u_texture, v_coord + u_isize * vec2(0.0,1.0) );\n\r\n\t\t\t\tvec4 down = texture2D(u_texture, v_coord + u_isize * vec2(0.0,-1.0) );\n\r\n\t\t\t\tvec4 left = texture2D(u_texture, v_coord + u_isize * vec2(1.0,0.0) );\n\r\n\t\t\t\tvec4 right = texture2D(u_texture, v_coord + u_isize * vec2(-1.0,0.0) );\n\r\n\t\t\t\tvec4 diff = abs(center - up) + abs(center - down) + abs(center - left) + abs(center - right);\n\r\n\t\t\t\tdiff *= u_factor;\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tdiff.xyz = vec3(1.0) - diff.xyz;\n\r\n\t\t\t gl_FragColor = vec4( diff.xyz, center.a );\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/edges", e); - w.title = "Depth Range"; - w.desc = "Generates a texture with a depth range"; - w.prototype.onExecute = function() { + c.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_isize;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 up = texture2D(u_texture, v_coord + u_isize * vec2(0.0,1.0) );\n\r\n\t\t\t\tvec4 down = texture2D(u_texture, v_coord + u_isize * vec2(0.0,-1.0) );\n\r\n\t\t\t\tvec4 left = texture2D(u_texture, v_coord + u_isize * vec2(1.0,0.0) );\n\r\n\t\t\t\tvec4 right = texture2D(u_texture, v_coord + u_isize * vec2(-1.0,0.0) );\n\r\n\t\t\t\tvec4 diff = abs(center - up) + abs(center - down) + abs(center - left) + abs(center - right);\n\r\n\t\t\t\tdiff *= u_factor;\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tdiff.xyz = vec3(1.0) - diff.xyz;\n\r\n\t\t\t\tif( u_threshold == 0.0 )\n\r\n\t\t\t\t\tgl_FragColor = vec4( diff.xyz, center.a );\n\r\n\t\t\t\telse\n\r\n\t\t\t\t\tgl_FragColor = vec4( diff.x > 0.5 ? 1.0 : 0.0, diff.y > 0.5 ? 1.0 : 0.0, diff.z > 0.5 ? 1.0 : 0.0, center.a );\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/edges", c); + b.title = "Depth Range"; + b.desc = "Generates a texture with a depth range"; + b.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.getInputData(0); if (a) { - var b = gl.UNSIGNED_BYTE; - this.properties.high_precision && (b = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); - this._temp_texture && this._temp_texture.type == b && this._temp_texture.width == a.width && this._temp_texture.height == a.height || (this._temp_texture = new GL.Texture(a.width, a.height, {type:b, format:gl.RGBA, filter:gl.LINEAR})); - var d = this._uniforms; - b = this.properties.distance; - this.isInputConnected(1) && (b = this.getInputData(1), this.properties.distance = b); - var c = this.properties.range; - this.isInputConnected(2) && (c = this.getInputData(2), this.properties.range = c); - d.u_distance = b; - d.u_range = c; + var c = gl.UNSIGNED_BYTE; + this.properties.high_precision && (c = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); + this._temp_texture && this._temp_texture.type == c && this._temp_texture.width == a.width && this._temp_texture.height == a.height || (this._temp_texture = new GL.Texture(a.width, a.height, {type:c, format:gl.RGBA, filter:gl.LINEAR})); + var e = this._uniforms; + c = this.properties.distance; + this.isInputConnected(1) && (c = this.getInputData(1), this.properties.distance = c); + var d = this.properties.range; + this.isInputConnected(2) && (d = this.getInputData(2), this.properties.range = d); + e.u_distance = c; + e.u_range = d; gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var e = Mesh.getScreenQuad(); - w._shader || (w._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.pixel_shader), w._shader_onlydepth = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, w.pixel_shader, {ONLY_DEPTH:""})); - var f = this.properties.only_depth ? w._shader_onlydepth : w._shader; - b = null; - b = a.near_far_planes ? a.near_far_planes : window.LS && LS.Renderer._main_camera ? LS.Renderer._main_camera._uniforms.u_camera_planes : [0.1, 1000]; - d.u_camera_planes = b; + var f = Mesh.getScreenQuad(); + b._shader || (b._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader), b._shader_onlydepth = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, b.pixel_shader, {ONLY_DEPTH:""})); + var k = this.properties.only_depth ? b._shader_onlydepth : b._shader; + c = null; + c = a.near_far_planes ? a.near_far_planes : window.LS && LS.Renderer._main_camera ? LS.Renderer._main_camera._uniforms.u_camera_planes : [0.1, 1000]; + e.u_camera_planes = c; this._temp_texture.drawTo(function() { a.bind(0); - f.uniforms(d).draw(e); + k.uniforms(e).draw(f); }); + this._temp_texture.near_far_planes = c; this.setOutputData(0, this._temp_texture); } } }; - w.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_distance;\n\r\n\t\t\tuniform float u_range;\n\r\n\t\t\t\n\r\n\t\t\tfloat LinearDepth()\n\r\n\t\t\t{\n\r\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\r\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\r\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\r\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\r\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat depth = LinearDepth();\n\r\n\t\t\t\t#ifdef ONLY_DEPTH\n\r\n\t\t\t\t gl_FragColor = vec4(depth);\n\r\n\t\t\t\t#else\n\r\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\r\n\t\t\t\t\tfloat dof = 1.0;\n\r\n\t\t\t\t\tif(diff <= u_range)\n\r\n\t\t\t\t\t\tdof = diff / u_range;\n\r\n\t\t\t\t gl_FragColor = vec4(dof);\n\r\n\t\t\t\t#endif\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/depth_range", w); - v.title = "Blur"; - v.desc = "Blur a texture"; - v.max_iterations = 20; - v.prototype.onExecute = function() { - var a = this.getInputData(0); - if (a && this.isOutputConnected(0)) { - var b = this._temp_texture; - b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR}), this._final_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); - b = this.properties.iterations; - this.isInputConnected(1) && (b = this.getInputData(1), this.properties.iterations = b); - b = Math.min(Math.floor(b), v.max_iterations); - if (0 == b) { - this.setOutputData(0, a); + b.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_distance;\n\r\n\t\t\tuniform float u_range;\n\r\n\t\t\t\n\r\n\t\t\tfloat LinearDepth()\n\r\n\t\t\t{\n\r\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\r\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\r\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\r\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\r\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat depth = LinearDepth();\n\r\n\t\t\t\t#ifdef ONLY_DEPTH\n\r\n\t\t\t\t gl_FragColor = vec4(depth);\n\r\n\t\t\t\t#else\n\r\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\r\n\t\t\t\t\tfloat dof = 1.0;\n\r\n\t\t\t\t\tif(diff <= u_range)\n\r\n\t\t\t\t\t\tdof = diff / u_range;\n\r\n\t\t\t\t gl_FragColor = vec4(dof);\n\r\n\t\t\t\t#endif\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("texture/depth_range", b); + a.title = "Blur"; + a.desc = "Blur a texture"; + a.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + a.max_iterations = 20; + a.prototype.onExecute = function() { + var b = this.getInputData(0); + if (b && this.isOutputConnected(0)) { + var c = this._final_texture; + c && c.width == b.width && c.height == b.height && c.type == b.type || (c = this._final_texture = new GL.Texture(b.width, b.height, {type:b.type, format:gl.RGBA, filter:gl.LINEAR})); + var e = this.properties.iterations; + this.isInputConnected(1) && (e = this.getInputData(1), this.properties.iterations = e); + e = Math.min(Math.floor(e), a.max_iterations); + if (0 == e) { + this.setOutputData(0, b); } else { var d = this.properties.intensity; this.isInputConnected(2) && (d = this.getInputData(2), this.properties.intensity = d); - var c = f.camera_aspect; - c || void 0 === window.gl || (c = gl.canvas.height / gl.canvas.width); - c || (c = 1); - c = this.properties.preserve_aspect ? c : 1; - for (var e = this.properties.scale || [1, 1], n = 0; n < b; ++n) { - a.applyBlur(c * e[0] * n, e[1] * n, d, this._temp_texture, this._final_texture), a = this._final_texture; + var k = f.camera_aspect; + k || void 0 === window.gl || (k = gl.canvas.height / gl.canvas.width); + k || (k = 1); + k = this.properties.preserve_aspect ? k : 1; + var h = this.properties.scale || [1, 1]; + b.applyBlur(k * h[0], h[1], d, c); + for (b = 1; b < e; ++b) { + c.applyBlur(k * h[0] * (b + 1), h[1] * (b + 1), d); } - this.setOutputData(0, this._final_texture); + this.setOutputData(0, c); } } }; - v.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_offset;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t vec4 sum = vec4(0.0);\n\r\n\t\t\t vec4 center = texture2D(u_texture, v_coord);\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * -1.0) * 0.15/0.98;\n\r\n\t\t\t sum += center * 0.16/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 4.0) * 0.05/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 3.0) * 0.09/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 2.0) * 0.12/0.98;\n\r\n\t\t\t sum += texture2D(u_texture, v_coord + u_offset * 1.0) * 0.15/0.98;\n\r\n\t\t\t gl_FragColor = u_intensity * sum;\n\r\n\t\t\t /*gl_FragColor.a = center.a*/;\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("texture/blur", v); - t.title = "Kuwahara Filter"; - t.desc = "Filters a texture giving an artistic oil canvas painting"; - t.max_radius = 10; - t._shaders = []; - t.prototype.onExecute = function() { + f.registerNodeType("texture/blur", a); + e.title = "Glow"; + e.desc = "Filters a texture giving it a glow effect"; + e.weights = new Float32Array([0.5, 0.4, 0.3, 0.2]); + e.widgets_info = {iterations:{type:"number", min:0, max:16, step:1, precision:0}, threshold:{type:"number", min:0, max:10, step:0.01, precision:2}, precision:{widget:"combo", values:q.MODE_VALUES}}; + e.prototype.onGetInputs = function() { + return [["enabled", "boolean"], ["threshold", "number"], ["intensity", "number"], ["persistence", "number"], ["iterations", "number"], ["dirt_factor", "number"]]; + }; + e.prototype.onGetOutputs = function() { + return [["average", "Texture"]]; + }; + e.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a && this.isAnyOutputConnected()) { + if (this.properties.precision === q.PASS_THROUGH || !1 === this.getInputDataByName("enabled")) { + this.setOutputData(0, a); + } else { + var b = a.width, c = a.height, d = {format:a.format, type:a.type, minFilter:GL.LINEAR, magFilter:GL.LINEAR, wrap:gl.CLAMP_TO_EDGE}, f = q.getTextureType(this.properties.precision, a), k = this._uniforms, h = this._textures, g = e._cut_shader; + g || (g = e._cut_shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.cut_pixel_shader)); + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.BLEND); + k.u_threshold = this.getInputOrProperty("threshold"); + var m = h[0] = GL.Texture.getTemporary(b, c, d); + a.blit(m, g.uniforms(k)); + var l = m, p = this.getInputOrProperty("iterations"); + p = Math.clamp(p, 1, 16) | 0; + var n = k.u_texel_size, r = this.getInputOrProperty("intensity"); + k.u_intensity = 1; + k.u_delta = this.properties.scale; + g = e._shader; + g || (g = e._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.scale_pixel_shader)); + for (var u = 1; u < p; u++) { + b >>= 1; + 1 < (c | 0) && (c >>= 1); + if (2 > b) { + break; + } + m = h[u] = GL.Texture.getTemporary(b, c, d); + n[0] = 1 / l.width; + n[1] = 1 / l.height; + l.blit(m, g.uniforms(k)); + l = m; + } + this.isOutputConnected(2) && (b = this._average_texture, b && b.type == a.type && b.format == a.format || (b = this._average_texture = new GL.Texture(1, 1, {type:a.type, format:a.format, filter:gl.LINEAR})), n[0] = 1 / l.width, n[1] = 1 / l.height, k.u_intensity = r, k.u_delta = 1, l.blit(b, g.uniforms(k)), this.setOutputData(2, b)); + gl.enable(gl.BLEND); + gl.blendFunc(gl.ONE, gl.ONE); + k.u_intensity = this.getInputOrProperty("persistence"); + k.u_delta = 0.5; + for (u -= 2; 0 <= u; u--) { + m = h[u], h[u] = null, n[0] = 1 / l.width, n[1] = 1 / l.height, l.blit(m, g.uniforms(k)), GL.Texture.releaseTemporary(l), l = m; + } + gl.disable(gl.BLEND); + this.isOutputConnected(1) && (h = this._glow_texture, h && h.width == a.width && h.height == a.height && h.type == f && h.format == a.format || (h = this._glow_texture = new GL.Texture(a.width, a.height, {type:f, format:a.format, filter:gl.LINEAR})), l.blit(h), this.setOutputData(1, h)); + if (this.isOutputConnected(0)) { + h = this._final_texture; + h && h.width == a.width && h.height == a.height && h.type == f && h.format == a.format || (h = this._final_texture = new GL.Texture(a.width, a.height, {type:f, format:a.format, filter:gl.LINEAR})); + var y = this.getInputData(1), w = this.getInputOrProperty("dirt_factor"); + k.u_intensity = r; + g = y ? e._dirt_final_shader : e._final_shader; + g || (g = y ? e._dirt_final_shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.final_pixel_shader, {USE_DIRT:""}) : e._final_shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, e.final_pixel_shader)); + h.drawTo(function() { + a.bind(0); + l.bind(1); + y && (g.setUniform("u_dirt_factor", w), g.setUniform("u_dirt_texture", y.bind(2))); + g.toViewport(k); + }); + this.setOutputData(0, h); + } + GL.Texture.releaseTemporary(l); + } + } + }; + e.cut_pixel_shader = "precision highp float;\n\r\n\t\tvarying vec2 v_coord;\n\r\n\t\tuniform sampler2D u_texture;\n\r\n\t\tuniform float u_threshold;\n\r\n\t\tvoid main() {\n\r\n\t\t\tgl_FragColor = max( texture2D( u_texture, v_coord ) - vec4( u_threshold ), vec4(0.0) );\n\r\n\t\t}"; + e.scale_pixel_shader = "precision highp float;\n\r\n\t\tvarying vec2 v_coord;\n\r\n\t\tuniform sampler2D u_texture;\n\r\n\t\tuniform vec2 u_texel_size;\n\r\n\t\tuniform float u_delta;\n\r\n\t\tuniform float u_intensity;\n\r\n\t\t\n\r\n\t\tvec4 sampleBox(vec2 uv) {\n\r\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\r\n\t\t\tvec4 s = texture2D( u_texture, uv + o.xy ) + texture2D( u_texture, uv + o.zy) + texture2D( u_texture, uv + o.xw) + texture2D( u_texture, uv + o.zw);\n\r\n\t\t\treturn s * 0.25;\n\r\n\t\t}\n\r\n\t\tvoid main() {\n\r\n\t\t\tgl_FragColor = u_intensity * sampleBox( v_coord );\n\r\n\t\t}"; + e.final_pixel_shader = "precision highp float;\n\r\n\t\tvarying vec2 v_coord;\n\r\n\t\tuniform sampler2D u_texture;\n\r\n\t\tuniform sampler2D u_glow_texture;\n\r\n\t\t#ifdef USE_DIRT\n\r\n\t\t\tuniform sampler2D u_dirt_texture;\n\r\n\t\t#endif\n\r\n\t\tuniform vec2 u_texel_size;\n\r\n\t\tuniform float u_delta;\n\r\n\t\tuniform float u_intensity;\n\r\n\t\tuniform float u_dirt_factor;\n\r\n\t\t\n\r\n\t\tvec4 sampleBox(vec2 uv) {\n\r\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\r\n\t\t\tvec4 s = texture2D( u_glow_texture, uv + o.xy ) + texture2D( u_glow_texture, uv + o.zy) + texture2D( u_glow_texture, uv + o.xw) + texture2D( u_glow_texture, uv + o.zw);\n\r\n\t\t\treturn s * 0.25;\n\r\n\t\t}\n\r\n\t\tvoid main() {\n\r\n\t\t\tvec4 glow = sampleBox( v_coord );\n\r\n\t\t\t#ifdef USE_DIRT\n\r\n\t\t\t\tglow = mix( glow, glow * texture2D( u_dirt_texture, v_coord ), u_dirt_factor );\n\r\n\t\t\t#endif\n\r\n\t\t\tgl_FragColor = texture2D( u_texture, v_coord ) + u_intensity * glow;\n\r\n\t\t}"; + f.registerNodeType("texture/glow", e); + p.title = "Kuwahara Filter"; + p.desc = "Filters a texture giving an artistic oil canvas painting"; + p.max_radius = 10; + p._shaders = []; + p.prototype.onExecute = function() { var a = this.getInputData(0); if (a && this.isOutputConnected(0)) { var b = this._temp_texture; b && b.width == a.width && b.height == a.height && b.type == a.type || (this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); b = this.properties.radius; - b = Math.min(Math.floor(b), t.max_radius); + b = Math.min(Math.floor(b), p.max_radius); if (0 == b) { this.setOutputData(0, a); } else { - var d = this.properties.intensity, c = f.camera_aspect; - c || void 0 === window.gl || (c = gl.canvas.height / gl.canvas.width); - c || (c = 1); - c = this.properties.preserve_aspect ? c : 1; - t._shaders[b] || (t._shaders[b] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, t.pixel_shader, {RADIUS:b.toFixed(0)})); - var e = t._shaders[b], n = GL.Mesh.getScreenQuad(); + var c = this.properties.intensity, e = f.camera_aspect; + e || void 0 === window.gl || (e = gl.canvas.height / gl.canvas.width); + e || (e = 1); + e = this.properties.preserve_aspect ? e : 1; + p._shaders[b] || (p._shaders[b] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, p.pixel_shader, {RADIUS:b.toFixed(0)})); + var d = p._shaders[b], k = GL.Mesh.getScreenQuad(); a.bind(0); this._temp_texture.drawTo(function() { - e.uniforms({u_texture:0, u_intensity:d, u_resolution:[a.width, a.height], u_iResolution:[1 / a.width, 1 / a.height]}).draw(n); + d.uniforms({u_texture:0, u_intensity:c, u_resolution:[a.width, a.height], u_iResolution:[1 / a.width, 1 / a.height]}).draw(k); }); this.setOutputData(0, this._temp_texture); } } }; - t.pixel_shader = "\n\r\n\tprecision highp float;\n\r\n\tvarying vec2 v_coord;\n\r\n\tuniform sampler2D u_texture;\n\r\n\tuniform float u_intensity;\n\r\n\tuniform vec2 u_resolution;\n\r\n\tuniform vec2 u_iResolution;\n\r\n\t#ifndef RADIUS\n\r\n\t\t#define RADIUS 7\n\r\n\t#endif\n\r\n\tvoid main() {\n\r\n\t\n\r\n\t\tconst int radius = RADIUS;\n\r\n\t\tvec2 fragCoord = v_coord;\n\r\n\t\tvec2 src_size = u_iResolution;\n\r\n\t\tvec2 uv = v_coord;\n\r\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\r\n\t\tint i;\n\r\n\t\tint j;\n\r\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\r\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\r\n\t\tvec3 c;\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm0 += c;\n\r\n\t\t\t\ts0 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm1 += c;\n\r\n\t\t\t\ts1 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm2 += c;\n\r\n\t\t\t\ts2 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm3 += c;\n\r\n\t\t\t\ts3 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfloat min_sigma2 = 1e+2;\n\r\n\t\tm0 /= n;\n\r\n\t\ts0 = abs(s0 / n - m0 * m0);\n\r\n\t\t\n\r\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm1 /= n;\n\r\n\t\ts1 = abs(s1 / n - m1 * m1);\n\r\n\t\t\n\r\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm2 /= n;\n\r\n\t\ts2 = abs(s2 / n - m2 * m2);\n\r\n\t\t\n\r\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm3 /= n;\n\r\n\t\ts3 = abs(s3 / n - m3 * m3);\n\r\n\t\t\n\r\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\r\n\t\t}\n\r\n\t}\n\r\n\t"; - f.registerNodeType("texture/kuwahara", t); - p.title = "Webcam"; - p.desc = "Webcam texture"; - p.prototype.openStream = function() { + p.pixel_shader = "\n\r\n\tprecision highp float;\n\r\n\tvarying vec2 v_coord;\n\r\n\tuniform sampler2D u_texture;\n\r\n\tuniform float u_intensity;\n\r\n\tuniform vec2 u_resolution;\n\r\n\tuniform vec2 u_iResolution;\n\r\n\t#ifndef RADIUS\n\r\n\t\t#define RADIUS 7\n\r\n\t#endif\n\r\n\tvoid main() {\n\r\n\t\n\r\n\t\tconst int radius = RADIUS;\n\r\n\t\tvec2 fragCoord = v_coord;\n\r\n\t\tvec2 src_size = u_iResolution;\n\r\n\t\tvec2 uv = v_coord;\n\r\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\r\n\t\tint i;\n\r\n\t\tint j;\n\r\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\r\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\r\n\t\tvec3 c;\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm0 += c;\n\r\n\t\t\t\ts0 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm1 += c;\n\r\n\t\t\t\ts1 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm2 += c;\n\r\n\t\t\t\ts2 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfor (int j = 0; j <= radius; ++j) {\n\r\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\r\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\r\n\t\t\t\tm3 += c;\n\r\n\t\t\t\ts3 += c * c;\n\r\n\t\t\t}\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tfloat min_sigma2 = 1e+2;\n\r\n\t\tm0 /= n;\n\r\n\t\ts0 = abs(s0 / n - m0 * m0);\n\r\n\t\t\n\r\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm1 /= n;\n\r\n\t\ts1 = abs(s1 / n - m1 * m1);\n\r\n\t\t\n\r\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm2 /= n;\n\r\n\t\ts2 = abs(s2 / n - m2 * m2);\n\r\n\t\t\n\r\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\r\n\t\t}\n\r\n\t\t\n\r\n\t\tm3 /= n;\n\r\n\t\ts3 = abs(s3 / n - m3 * m3);\n\r\n\t\t\n\r\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\r\n\t\tif (sigma2 < min_sigma2) {\n\r\n\t\t\tmin_sigma2 = sigma2;\n\r\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\r\n\t\t}\n\r\n\t}\n\r\n\t"; + f.registerNodeType("texture/kuwahara", p); + h.title = "Webcam"; + h.desc = "Webcam texture"; + h.prototype.openStream = function() { navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; window.URL = window.URL || window.webkitURL; if (navigator.getUserMedia) { @@ -5609,208 +5880,330 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }); } }; - p.prototype.streamReady = function(a) { + h.prototype.streamReady = function(a) { this._webcam_stream = a; var b = this._video; b || (b = document.createElement("video"), b.autoplay = !0, b.src = window.URL.createObjectURL(a), this._video = b, b.onloadedmetadata = function(a) { console.log(a); }); }; - p.prototype.onRemoved = function() { - this._webcam_stream && (this._webcam_stream.stop(), this._video = this._webcam_stream = null); + h.prototype.onRemoved = function() { + if (this._webcam_stream) { + var a = this._webcam_stream.getVideoTracks(); + a.length && a[0].stop(); + this._video = this._webcam_stream = null; + } }; - p.prototype.onDrawBackground = function(a) { + h.prototype.onDrawBackground = function(a) { this.flags.collapsed || 20 >= this.size[1] || !this._video || (a.save(), a.webgl ? this._temp_texture && a.drawImage(this._temp_texture, 0, 0, this.size[0], this.size[1]) : (a.translate(0, this.size[1]), a.scale(1, -1), a.drawImage(this._video, 0, 0, this.size[0], this.size[1])), a.restore()); }; - p.prototype.onExecute = function() { + h.prototype.onExecute = function() { null != this._webcam_stream || this._waiting_confirmation || this.openStream(); if (this._video && this._video.videoWidth) { - var a = this._video.videoWidth, b = this._video.videoHeight, d = this._temp_texture; - d && d.width == a && d.height == b || (this._temp_texture = new GL.Texture(a, b, {format:gl.RGB, filter:gl.LINEAR})); + var a = this._video.videoWidth, b = this._video.videoHeight, c = this._temp_texture; + c && c.width == a && c.height == b || (this._temp_texture = new GL.Texture(a, b, {format:gl.RGB, filter:gl.LINEAR})); this._temp_texture.uploadImage(this._video); - this.properties.texture_name && (r.getTexturesContainer()[this.properties.texture_name] = this._temp_texture); + this.properties.texture_name && (q.getTexturesContainer()[this.properties.texture_name] = this._temp_texture); this.setOutputData(0, this._temp_texture); } }; - f.registerNodeType("texture/webcam", p); - c.title = "Matte"; - c.desc = "Extracts background"; - c.widgets_info = {key_color:{widget:"color"}, precision:{widget:"combo", values:r.MODE_VALUES}}; - c.prototype.onExecute = function() { + f.registerNodeType("texture/webcam", h); + w.title = "Lens FX"; + w.desc = "distortion and chromatic aberration"; + w.widgets_info = {precision:{widget:"combo", values:q.MODE_VALUES}}; + w.prototype.onExecute = function() { + var a = this.getInputData(0); + if (a && this.isOutputConnected(0)) { + var b = this._temp_texture; + b && b.width == a.width && b.height == a.height && b.type == a.type || (b = this._temp_texture = new GL.Texture(a.width, a.height, {type:a.type, format:gl.RGBA, filter:gl.LINEAR})); + var c = w._shader; + c || (c = w._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, w.pixel_shader)); + var e = this.getInputData(1); + null == e && (e = this.properties.factor); + var d = this._uniforms; + d.u_factor = e; + gl.disable(gl.DEPTH_TEST); + b.drawTo(function() { + a.bind(0); + c.uniforms(d).draw(GL.Mesh.getScreenQuad()); + }); + this.setOutputData(0, b); + } + }; + w.pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_factor;\n\r\n\t\t\tvec2 barrelDistortion(vec2 coord, float amt) {\n\r\n\t\t\t\tvec2 cc = coord - 0.5;\n\r\n\t\t\t\tfloat dist = dot(cc, cc);\n\r\n\t\t\t\treturn coord + cc * dist * amt;\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tfloat sat( float t )\n\r\n\t\t\t{\n\r\n\t\t\t\treturn clamp( t, 0.0, 1.0 );\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tfloat linterp( float t ) {\n\r\n\t\t\t\treturn sat( 1.0 - abs( 2.0*t - 1.0 ) );\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tfloat remap( float t, float a, float b ) {\n\r\n\t\t\t\treturn sat( (t - a) / (b - a) );\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tvec4 spectrum_offset( float t ) {\n\r\n\t\t\t\tvec4 ret;\n\r\n\t\t\t\tfloat lo = step(t,0.5);\n\r\n\t\t\t\tfloat hi = 1.0-lo;\n\r\n\t\t\t\tfloat w = linterp( remap( t, 1.0/6.0, 5.0/6.0 ) );\n\r\n\t\t\t\tret = vec4(lo,1.0,hi, 1.) * vec4(1.0-w, w, 1.0-w, 1.);\n\r\n\t\t\t\n\r\n\t\t\t\treturn pow( ret, vec4(1.0/2.2) );\n\r\n\t\t\t}\n\r\n\t\t\t\n\r\n\t\t\tconst float max_distort = 2.2;\n\r\n\t\t\tconst int num_iter = 12;\n\r\n\t\t\tconst float reci_num_iter_f = 1.0 / float(num_iter);\n\r\n\t\t\t\n\r\n\t\t\tvoid main()\n\r\n\t\t\t{\t\n\r\n\t\t\t\tvec2 uv=v_coord;\n\r\n\t\t\t\tvec4 sumcol = vec4(0.0);\n\r\n\t\t\t\tvec4 sumw = vec4(0.0);\t\n\r\n\t\t\t\tfor ( int i=0; i= this.size[1] || !a.webgl || gl.meshes.cube || (gl.meshes.cube = GL.Mesh.cube({size:1})); }; - f.registerNodeType("texture/cubemap", k); + f.registerNodeType("texture/cubemap", g); } })(this); -(function(u) { - var f = u.LiteGraph; +(function(t) { + var f = t.LiteGraph; if ("undefined" != typeof GL) { - var k = function() { + var g = function() { this.addInput("Tex.", "Texture"); this.addInput("intensity", "number"); this.addOutput("Texture", "Texture"); this.properties = {intensity:1, invert:!1, precision:LGraphTexture.DEFAULT}; - k._shader || (k._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, k.pixel_shader)); - }, c = function() { + g._shader || (g._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, g.pixel_shader)); + }, d = function() { this.addInput("Texture", "Texture"); this.addInput("value1", "number"); this.addInput("value2", "number"); this.addOutput("Texture", "Texture"); this.properties = {fx:"halftone", value1:1, value2:1, precision:LGraphTexture.DEFAULT}; - }, p = function() { + }, m = function() { this.addInput("Texture", "Texture"); this.addInput("Blurred", "Texture"); this.addInput("Mask", "Texture"); this.addInput("Threshold", "number"); this.addOutput("Texture", "Texture"); this.properties = {shape:"", size:10, alpha:1.0, threshold:1.0, high_precision:!1}; - }, t = function() { + }, r = function() { this.addInput("Texture", "Texture"); this.addInput("Aberration", "number"); this.addInput("Distortion", "number"); this.addInput("Blur", "number"); this.addOutput("Texture", "Texture"); this.properties = {aberration:1.0, distortion:1.0, blur:1.0, precision:LGraphTexture.DEFAULT}; - t._shader || (t._shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, t.pixel_shader), t._texture = new GL.Texture(3, 1, {format:gl.RGB, wrap:gl.CLAMP_TO_EDGE, magFilter:gl.LINEAR, minFilter:gl.LINEAR, pixel_data:[255, 0, 0, 0, 255, 0, 0, 0, 255]})); + r._shader || (r._shader = new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER, r.pixel_shader), r._texture = new GL.Texture(3, 1, {format:gl.RGB, wrap:gl.CLAMP_TO_EDGE, magFilter:gl.LINEAR, minFilter:gl.LINEAR, pixel_data:[255, 0, 0, 0, 255, 0, 0, 0, 255]})); }; - t.title = "Lens"; - t.desc = "Camera Lens distortion"; - t.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - t.prototype.onExecute = function() { - var c = this.getInputData(0); + r.title = "Lens"; + r.desc = "Camera Lens distortion"; + r.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + r.prototype.onExecute = function() { + var d = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { - this.setOutputData(0, c); + this.setOutputData(0, d); } else { - if (c) { - this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); + if (d) { + this._tex = LGraphTexture.getTargetTexture(d, this._tex, this.properties.precision); var f = this.properties.aberration; this.isInputConnected(1) && (f = this.getInputData(1), this.properties.aberration = f); - var e = this.properties.distortion; - this.isInputConnected(2) && (e = this.getInputData(2), this.properties.distortion = e); - var k = this.properties.blur; - this.isInputConnected(3) && (k = this.getInputData(3), this.properties.blur = k); + var h = this.properties.distortion; + this.isInputConnected(2) && (h = this.getInputData(2), this.properties.distortion = h); + var g = this.properties.blur; + this.isInputConnected(3) && (g = this.getInputData(3), this.properties.blur = g); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var l = Mesh.getScreenQuad(), a = t._shader; + var e = Mesh.getScreenQuad(), a = r._shader; this._tex.drawTo(function() { - c.bind(0); - a.uniforms({u_texture:0, u_aberration:f, u_distortion:e, u_blur:k}).draw(l); + d.bind(0); + a.uniforms({u_texture:0, u_aberration:f, u_distortion:h, u_blur:g}).draw(e); }); this.setOutputData(0, this._tex); } } }; - t.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_aberration;\n\r\n\t\t\tuniform float u_distortion;\n\r\n\t\t\tuniform float u_blur;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = v_coord;\n\r\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\r\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\r\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\r\n\t\t\t\tdist_coord *= percent;\n\r\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\r\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\r\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\r\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("fx/lens", t); - window.LGraphFXLens = t; - p.title = "Bokeh"; - p.desc = "applies an Bokeh effect"; - p.widgets_info = {shape:{widget:"texture"}}; - p.prototype.onExecute = function() { - var c = this.getInputData(0), f = this.getInputData(1), e = this.getInputData(2); - if (c && e && this.properties.shape) { - f || (f = c); - var k = LGraphTexture.getTexture(this.properties.shape); - if (k) { - var l = this.properties.threshold; - this.isInputConnected(3) && (l = this.getInputData(3), this.properties.threshold = l); + r.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform float u_aberration;\n\r\n\t\t\tuniform float u_distortion;\n\r\n\t\t\tuniform float u_blur;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = v_coord;\n\r\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\r\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\r\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\r\n\t\t\t\tdist_coord *= percent;\n\r\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\r\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\r\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\r\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("fx/lens", r); + t.LGraphFXLens = r; + m.title = "Bokeh"; + m.desc = "applies an Bokeh effect"; + m.widgets_info = {shape:{widget:"texture"}}; + m.prototype.onExecute = function() { + var d = this.getInputData(0), f = this.getInputData(1), h = this.getInputData(2); + if (d && h && this.properties.shape) { + f || (f = d); + var g = LGraphTexture.getTexture(this.properties.shape); + if (g) { + var e = this.properties.threshold; + this.isInputConnected(3) && (e = this.getInputData(3), this.properties.threshold = e); var a = gl.UNSIGNED_BYTE; this.properties.high_precision && (a = gl.half_float_ext ? gl.HALF_FLOAT_OES : gl.FLOAT); - this._temp_texture && this._temp_texture.type == a && this._temp_texture.width == c.width && this._temp_texture.height == c.height || (this._temp_texture = new GL.Texture(c.width, c.height, {type:a, format:gl.RGBA, filter:gl.LINEAR})); - var b = p._first_shader; - b || (b = p._first_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, p._first_pixel_shader)); - var d = p._second_shader; - d || (d = p._second_shader = new GL.Shader(p._second_vertex_shader, p._second_pixel_shader)); - var g = this._points_mesh; - g && g._width == c.width && g._height == c.height && 2 == g._spacing || (g = this.createPointsMesh(c.width, c.height, 2)); - var h = Mesh.getScreenQuad(), t = this.properties.size, n = this.properties.alpha; + this._temp_texture && this._temp_texture.type == a && this._temp_texture.width == d.width && this._temp_texture.height == d.height || (this._temp_texture = new GL.Texture(d.width, d.height, {type:a, format:gl.RGBA, filter:gl.LINEAR})); + var b = m._first_shader; + b || (b = m._first_shader = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, m._first_pixel_shader)); + var c = m._second_shader; + c || (c = m._second_shader = new GL.Shader(m._second_vertex_shader, m._second_pixel_shader)); + var n = this._points_mesh; + n && n._width == d.width && n._height == d.height && 2 == n._spacing || (n = this.createPointsMesh(d.width, d.height, 2)); + var l = Mesh.getScreenQuad(), r = this.properties.size, k = this.properties.alpha; gl.disable(gl.DEPTH_TEST); gl.disable(gl.BLEND); this._temp_texture.drawTo(function() { - c.bind(0); + d.bind(0); f.bind(1); - e.bind(2); - b.uniforms({u_texture:0, u_texture_blur:1, u_mask:2, u_texsize:[c.width, c.height]}).draw(h); + h.bind(2); + b.uniforms({u_texture:0, u_texture_blur:1, u_mask:2, u_texsize:[d.width, d.height]}).draw(l); }); this._temp_texture.drawTo(function() { gl.enable(gl.BLEND); gl.blendFunc(gl.ONE, gl.ONE); - c.bind(0); - k.bind(3); - d.uniforms({u_texture:0, u_mask:2, u_shape:3, u_alpha:n, u_threshold:l, u_pointSize:t, u_itexsize:[1.0 / c.width, 1.0 / c.height]}).draw(g, gl.POINTS); + d.bind(0); + g.bind(3); + c.uniforms({u_texture:0, u_mask:2, u_shape:3, u_alpha:k, u_threshold:e, u_pointSize:r, u_itexsize:[1.0 / d.width, 1.0 / d.height]}).draw(n, gl.POINTS); }); this.setOutputData(0, this._temp_texture); } } else { - this.setOutputData(0, c); + this.setOutputData(0, d); } }; - p.prototype.createPointsMesh = function(c, f, e) { - for (var k = Math.round(c / e), l = Math.round(f / e), a = new Float32Array(k * l * 2), b = -1, d = 2 / c * e, g = 2 / f * e, h = 0; h < l; ++h) { - for (var p = -1, n = 0; n < k; ++n) { - var t = h * k * 2 + 2 * n; - a[t] = p; - a[t + 1] = b; - p += d; + m.prototype.createPointsMesh = function(d, f, h) { + for (var g = Math.round(d / h), e = Math.round(f / h), a = new Float32Array(g * e * 2), b = -1, c = 2 / d * h, m = 2 / f * h, l = 0; l < e; ++l) { + for (var r = -1, k = 0; k < g; ++k) { + var y = l * g * 2 + 2 * k; + a[y] = r; + a[y + 1] = b; + r += c; } - b += g; + b += m; } this._points_mesh = GL.Mesh.load({vertices2D:a}); - this._points_mesh._width = c; + this._points_mesh._width = d; this._points_mesh._height = f; - this._points_mesh._spacing = e; + this._points_mesh._spacing = h; return this._points_mesh; }; - p._first_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_texture_blur;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 blurred_color = texture2D(u_texture_blur, v_coord);\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, v_coord).x;\n\r\n\t\t\t gl_FragColor = mix(color, blurred_color, mask);\n\r\n\t\t\t}\n\r\n\t\t\t"; - p._second_vertex_shader = "precision highp float;\n\r\n\t\t\tattribute vec2 a_vertex2D;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\tuniform vec2 u_itexsize;\n\r\n\t\t\tuniform float u_pointSize;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = a_vertex2D * 0.5 + 0.5;\n\r\n\t\t\t\tv_color = texture2D( u_texture, coord );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(u_itexsize.x, 0.0) );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(0.0, u_itexsize.y));\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + u_itexsize);\n\r\n\t\t\t\tv_color *= 0.25;\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, coord).x;\n\r\n\t\t\t\tfloat luminance = length(v_color) * mask;\n\r\n\t\t\t\t/*luminance /= (u_pointSize*u_pointSize)*0.01 */;\n\r\n\t\t\t\tluminance -= u_threshold;\n\r\n\t\t\t\tif(luminance < 0.0)\n\r\n\t\t\t\t{\n\r\n\t\t\t\t\tgl_Position.x = -100.0;\n\r\n\t\t\t\t\treturn;\n\r\n\t\t\t\t}\n\r\n\t\t\t\tgl_PointSize = u_pointSize;\n\r\n\t\t\t\tgl_Position = vec4(a_vertex2D,0.0,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; - p._second_pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_shape;\n\r\n\t\t\tuniform float u_alpha;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_shape, gl_PointCoord );\n\r\n\t\t\t\tcolor *= v_color * u_alpha;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; - f.registerNodeType("fx/bokeh", p); - window.LGraphFXBokeh = p; - c.title = "FX"; - c.desc = "applies an FX from a list"; - c.widgets_info = {fx:{widget:"combo", values:["halftone", "pixelate", "lowpalette", "noise", "gamma"]}, precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - c.shaders = {}; - c.prototype.onExecute = function() { + m._first_pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_texture_blur;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec4 blurred_color = texture2D(u_texture_blur, v_coord);\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, v_coord).x;\n\r\n\t\t\t gl_FragColor = mix(color, blurred_color, mask);\n\r\n\t\t\t}\n\r\n\t\t\t"; + m._second_vertex_shader = "precision highp float;\n\r\n\t\t\tattribute vec2 a_vertex2D;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_mask;\n\r\n\t\t\tuniform vec2 u_itexsize;\n\r\n\t\t\tuniform float u_pointSize;\n\r\n\t\t\tuniform float u_threshold;\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = a_vertex2D * 0.5 + 0.5;\n\r\n\t\t\t\tv_color = texture2D( u_texture, coord );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(u_itexsize.x, 0.0) );\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + vec2(0.0, u_itexsize.y));\n\r\n\t\t\t\tv_color += texture2D( u_texture, coord + u_itexsize);\n\r\n\t\t\t\tv_color *= 0.25;\n\r\n\t\t\t\tfloat mask = texture2D(u_mask, coord).x;\n\r\n\t\t\t\tfloat luminance = length(v_color) * mask;\n\r\n\t\t\t\t/*luminance /= (u_pointSize*u_pointSize)*0.01 */;\n\r\n\t\t\t\tluminance -= u_threshold;\n\r\n\t\t\t\tif(luminance < 0.0)\n\r\n\t\t\t\t{\n\r\n\t\t\t\t\tgl_Position.x = -100.0;\n\r\n\t\t\t\t\treturn;\n\r\n\t\t\t\t}\n\r\n\t\t\t\tgl_PointSize = u_pointSize;\n\r\n\t\t\t\tgl_Position = vec4(a_vertex2D,0.0,1.0);\n\r\n\t\t\t}\n\r\n\t\t\t"; + m._second_pixel_shader = "precision highp float;\n\r\n\t\t\tvarying vec4 v_color;\n\r\n\t\t\tuniform sampler2D u_shape;\n\r\n\t\t\tuniform float u_alpha;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D( u_shape, gl_PointCoord );\n\r\n\t\t\t\tcolor *= v_color * u_alpha;\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; + f.registerNodeType("fx/bokeh", m); + t.LGraphFXBokeh = m; + d.title = "FX"; + d.desc = "applies an FX from a list"; + d.widgets_info = {fx:{widget:"combo", values:["halftone", "pixelate", "lowpalette", "noise", "gamma"]}, precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + d.shaders = {}; + d.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var f = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { @@ -5818,142 +6211,142 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } else { if (f) { this._tex = LGraphTexture.getTargetTexture(f, this._tex, this.properties.precision); - var k = this.properties.value1; - this.isInputConnected(1) && (k = this.getInputData(1), this.properties.value1 = k); - var e = this.properties.value2; - this.isInputConnected(2) && (e = this.getInputData(2), this.properties.value2 = e); - var p = this.properties.fx, l = c.shaders[p]; - if (!l) { - var a = c["pixel_shader_" + p]; + var g = this.properties.value1; + this.isInputConnected(1) && (g = this.getInputData(1), this.properties.value1 = g); + var h = this.properties.value2; + this.isInputConnected(2) && (h = this.getInputData(2), this.properties.value2 = h); + var m = this.properties.fx, e = d.shaders[m]; + if (!e) { + var a = d["pixel_shader_" + m]; if (!a) { return; } - l = c.shaders[p] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a); + e = d.shaders[m] = new GL.Shader(Shader.SCREEN_VERTEX_SHADER, a); } gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); var b = Mesh.getScreenQuad(); - camera_planes = window.LS && LS.Renderer._current_camera ? [LS.Renderer._current_camera.near, LS.Renderer._current_camera.far] : [1, 100]; - var d = null; - "noise" == p && (d = LGraphTexture.getNoiseTexture()); + camera_planes = t.LS && LS.Renderer._current_camera ? [LS.Renderer._current_camera.near, LS.Renderer._current_camera.far] : [1, 100]; + var c = null; + "noise" == m && (c = LGraphTexture.getNoiseTexture()); this._tex.drawTo(function() { f.bind(0); - "noise" == p && d.bind(1); - l.uniforms({u_texture:0, u_noise:1, u_size:[f.width, f.height], u_rand:[Math.random(), Math.random()], u_value1:k, u_value2:e, u_camera_planes:camera_planes}).draw(b); + "noise" == m && c.bind(1); + e.uniforms({u_texture:0, u_noise:1, u_size:[f.width, f.height], u_rand:[Math.random(), Math.random()], u_value1:g, u_value2:h, u_camera_planes:camera_planes}).draw(b); }); this.setOutputData(0, this._tex); } } } }; - c.pixel_shader_halftone = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tfloat pattern() {\n\r\n\t\t\t\tfloat s = sin(u_value1 * 3.1415), c = cos(u_value1 * 3.1415);\n\r\n\t\t\t\tvec2 tex = v_coord * u_size.xy;\n\r\n\t\t\t\tvec2 point = vec2(\n\r\n\t\t\t\t c * tex.x - s * tex.y ,\n\r\n\t\t\t\t s * tex.x + c * tex.y \n\r\n\t\t\t\t) * u_value2;\n\r\n\t\t\t\treturn (sin(point.x) * sin(point.y)) * 4.0;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat average = (color.r + color.g + color.b) / 3.0;\n\r\n\t\t\t\tgl_FragColor = vec4(vec3(average * 10.0 - 5.0 + pattern()), color.a);\n\r\n\t\t\t}\n"; - c.pixel_shader_pixelate = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = vec2( floor(v_coord.x * u_value1) / u_value1, floor(v_coord.y * u_value2) / u_value2 );\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, coord);\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; - c.pixel_shader_lowpalette = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tgl_FragColor = floor(color * u_value1) / u_value1;\n\r\n\t\t\t}\n"; - c.pixel_shader_noise = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_noise;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\tuniform vec2 u_rand;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec3 noise = texture2D(u_noise, v_coord * vec2(u_size.x / 512.0, u_size.y / 512.0) + u_rand).xyz - vec3(0.5);\n\r\n\t\t\t\tgl_FragColor = vec4( color.xyz + noise * u_value1, color.a );\n\r\n\t\t\t}\n"; - c.pixel_shader_gamma = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat gamma = 1.0 / u_value1;\n\r\n\t\t\t\tgl_FragColor = vec4( pow( color.xyz, vec3(gamma) ), color.a );\n\r\n\t\t\t}\n"; - f.registerNodeType("fx/generic", c); - window.LGraphFXGeneric = c; - k.title = "Vigneting"; - k.desc = "Vigneting"; - k.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; - k.prototype.onExecute = function() { - var c = this.getInputData(0); + d.pixel_shader_halftone = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tfloat pattern() {\n\r\n\t\t\t\tfloat s = sin(u_value1 * 3.1415), c = cos(u_value1 * 3.1415);\n\r\n\t\t\t\tvec2 tex = v_coord * u_size.xy;\n\r\n\t\t\t\tvec2 point = vec2(\n\r\n\t\t\t\t c * tex.x - s * tex.y ,\n\r\n\t\t\t\t s * tex.x + c * tex.y \n\r\n\t\t\t\t) * u_value2;\n\r\n\t\t\t\treturn (sin(point.x) * sin(point.y)) * 4.0;\n\r\n\t\t\t}\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat average = (color.r + color.g + color.b) / 3.0;\n\r\n\t\t\t\tgl_FragColor = vec4(vec3(average * 10.0 - 5.0 + pattern()), color.a);\n\r\n\t\t\t}\n"; + d.pixel_shader_pixelate = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec2 coord = vec2( floor(v_coord.x * u_value1) / u_value1, floor(v_coord.y * u_value2) / u_value2 );\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, coord);\n\r\n\t\t\t\tgl_FragColor = color;\n\r\n\t\t\t}\n"; + d.pixel_shader_lowpalette = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform vec2 u_camera_planes;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tgl_FragColor = floor(color * u_value1) / u_value1;\n\r\n\t\t\t}\n"; + d.pixel_shader_noise = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform sampler2D u_noise;\n\r\n\t\t\tuniform vec2 u_size;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\tuniform float u_value2;\n\r\n\t\t\tuniform vec2 u_rand;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tvec3 noise = texture2D(u_noise, v_coord * vec2(u_size.x / 512.0, u_size.y / 512.0) + u_rand).xyz - vec3(0.5);\n\r\n\t\t\t\tgl_FragColor = vec4( color.xyz + noise * u_value1, color.a );\n\r\n\t\t\t}\n"; + d.pixel_shader_gamma = "precision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_value1;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tfloat gamma = 1.0 / u_value1;\n\r\n\t\t\t\tgl_FragColor = vec4( pow( color.xyz, vec3(gamma) ), color.a );\n\r\n\t\t\t}\n"; + f.registerNodeType("fx/generic", d); + t.LGraphFXGeneric = d; + g.title = "Vigneting"; + g.desc = "Vigneting"; + g.widgets_info = {precision:{widget:"combo", values:LGraphTexture.MODE_VALUES}}; + g.prototype.onExecute = function() { + var d = this.getInputData(0); if (this.properties.precision === LGraphTexture.PASS_THROUGH) { - this.setOutputData(0, c); + this.setOutputData(0, d); } else { - if (c) { - this._tex = LGraphTexture.getTargetTexture(c, this._tex, this.properties.precision); + if (d) { + this._tex = LGraphTexture.getTargetTexture(d, this._tex, this.properties.precision); var f = this.properties.intensity; this.isInputConnected(1) && (f = this.getInputData(1), this.properties.intensity = f); gl.disable(gl.BLEND); gl.disable(gl.DEPTH_TEST); - var e = Mesh.getScreenQuad(), p = k._shader, l = this.properties.invert; + var h = Mesh.getScreenQuad(), m = g._shader, e = this.properties.invert; this._tex.drawTo(function() { - c.bind(0); - p.uniforms({u_texture:0, u_intensity:f, u_isize:[1 / c.width, 1 / c.height], u_invert:l ? 1 : 0}).draw(e); + d.bind(0); + m.uniforms({u_texture:0, u_intensity:f, u_isize:[1 / d.width, 1 / d.height], u_invert:e ? 1 : 0}).draw(h); }); this.setOutputData(0, this._tex); } } }; - k.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat luminance = 1.0 - length( v_coord - vec2(0.5) ) * 1.414;\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tluminance = 1.0 - luminance;\n\r\n\t\t\t\tluminance = mix(1.0, luminance, u_intensity);\n\r\n\t\t\t gl_FragColor = vec4( luminance * color.xyz, color.a);\n\r\n\t\t\t}\n\r\n\t\t\t"; - f.registerNodeType("fx/vigneting", k); - u.LGraphFXVigneting = k; + g.pixel_shader = "precision highp float;\n\r\n\t\t\tprecision highp float;\n\r\n\t\t\tvarying vec2 v_coord;\n\r\n\t\t\tuniform sampler2D u_texture;\n\r\n\t\t\tuniform float u_intensity;\n\r\n\t\t\tuniform int u_invert;\n\r\n\t\t\t\n\r\n\t\t\tvoid main() {\n\r\n\t\t\t\tfloat luminance = 1.0 - length( v_coord - vec2(0.5) ) * 1.414;\n\r\n\t\t\t\tvec4 color = texture2D(u_texture, v_coord);\n\r\n\t\t\t\tif(u_invert == 1)\n\r\n\t\t\t\t\tluminance = 1.0 - luminance;\n\r\n\t\t\t\tluminance = mix(1.0, luminance, u_intensity);\n\r\n\t\t\t gl_FragColor = vec4( luminance * color.xyz, color.a);\n\r\n\t\t\t}\n\r\n\t\t\t"; + f.registerNodeType("fx/vigneting", g); + t.LGraphFXVigneting = g; } })(this); -(function(u) { - function f(c) { +(function(t) { + function f(e) { this.cmd = this.channel = 0; - c ? this.setup(c) : this.data = [0, 0, 0]; + e ? this.setup(e) : this.data = [0, 0, 0]; } - function k(c, a) { - navigator.requestMIDIAccess ? (this.on_ready = c, this.state = {note:[], cc:[]}, navigator.requestMIDIAccess().then(this.onMIDISuccess.bind(this), this.onMIDIFailure.bind(this))) : (this.error = "not suppoorted", a ? a("Not supported") : console.error("MIDI NOT SUPPORTED, enable by chrome://flags")); + function g(e, a) { + navigator.requestMIDIAccess ? (this.on_ready = e, this.state = {note:[], cc:[]}, navigator.requestMIDIAccess().then(this.onMIDISuccess.bind(this), this.onMIDIFailure.bind(this))) : (this.error = "not suppoorted", a ? a("Not supported") : console.error("MIDI NOT SUPPORTED, enable by chrome://flags")); } - function c() { - this.addOutput("on_midi", q.EVENT); + function d() { + this.addOutput("on_midi", p.EVENT); this.addOutput("out", "midi"); this.properties = {port:0}; this._current_midi_event = this._last_midi_event = null; - var c = this; - new k(function(a) { - c._midi = a; - if (c._waiting) { - c.onStart(); + var e = this; + new g(function(a) { + e._midi = a; + if (e._waiting) { + e.onStart(); } - c._waiting = !1; + e._waiting = !1; }); } - function p() { - this.addInput("send", q.EVENT); + function m() { + this.addInput("send", p.EVENT); this.properties = {port:0}; - var c = this; - new k(function(a) { - c._midi = a; + var e = this; + new g(function(a) { + e._midi = a; }); } - function t() { - this.addInput("on_midi", q.EVENT); + function r() { + this.addInput("on_midi", p.EVENT); this._str = ""; this.size = [200, 40]; } - function v() { + function u() { this.properties = {channel:-1, cmd:-1, min_value:-1, max_value:-1}; - this.addInput("in", q.EVENT); - this.addOutput("on_midi", q.EVENT); + this.addInput("in", p.EVENT); + this.addOutput("on_midi", p.EVENT); } function w() { this.properties = {channel:0, cmd:"CC", value1:1, value2:1}; - this.addInput("send", q.EVENT); - this.addInput("assign", q.EVENT); - this.addOutput("on_midi", q.EVENT); + this.addInput("send", p.EVENT); + this.addInput("assign", p.EVENT); + this.addOutput("on_midi", p.EVENT); } - function e() { + function h() { this.properties = {cc:1, value:0}; this.addOutput("value", "number"); } - var q = u.LiteGraph; - f.prototype.setup = function(c) { - this.data = c; - this.status = c = c[0]; - var a = c & 240; - this.cmd = 240 <= c ? c : a; + var p = t.LiteGraph; + f.prototype.setup = function(e) { + this.data = e; + this.status = e = e[0]; + var a = e & 240; + this.cmd = 240 <= e ? e : a; this.cmd == f.NOTEON && 0 == this.velocity && (this.cmd = f.NOTEOFF); this.cmd_str = f.commands[this.cmd] || ""; if (a >= f.NOTEON || a <= f.NOTEOFF) { - this.channel = c & 15; + this.channel = e & 15; } }; Object.defineProperty(f.prototype, "velocity", {get:function() { return this.cmd == f.NOTEON ? this.data[2] : -1; - }, set:function(c) { - this.data[2] = c; + }, set:function(e) { + this.data[2] = e; }, enumerable:!0}); f.notes = "A A# B C C# D D# E F F# G G#".split(" "); f.prototype.getPitch = function() { return 440 * Math.pow(2, (this.data[1] - 69) / 12); }; - f.computePitch = function(c) { - return 440 * Math.pow(2, (c - 69) / 12); + f.computePitch = function(e) { + return 440 * Math.pow(2, (e - 69) / 12); }; f.prototype.getCC = function() { return this.data[1]; @@ -5964,21 +6357,21 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.prototype.getPitchBend = function() { return this.data[1] + (this.data[2] << 7) - 8192; }; - f.computePitchBend = function(c, a) { - return c + (a << 7) - 8192; + f.computePitchBend = function(e, a) { + return e + (a << 7) - 8192; }; - f.prototype.setCommandFromString = function(c) { - this.cmd = f.computeCommandFromString(c); + f.prototype.setCommandFromString = function(e) { + this.cmd = f.computeCommandFromString(e); }; - f.computeCommandFromString = function(c) { - if (!c) { + f.computeCommandFromString = function(e) { + if (!e) { return 0; } - if (c && c.constructor === Number) { - return c; + if (e && e.constructor === Number) { + return e; } - c = c.toUpperCase(); - switch(c) { + e = e.toUpperCase(); + switch(e) { case "NOTE ON": case "NOTEON": return f.NOTEON; @@ -6006,40 +6399,40 @@ $jscomp.polyfill("Array.prototype.values", function(u) { case "TIMETICK": return f.TIMETICK; default: - return Number(c); + return Number(e); } }; - f.toNoteString = function(c) { - var a = (c - 21) % 12; + f.toNoteString = function(e) { + var a = (e - 21) % 12; 0 > a && (a = 12 + a); - return f.notes[a] + Math.floor((c - 24) / 12 + 1); + return f.notes[a] + Math.floor((e - 24) / 12 + 1); }; f.prototype.toString = function() { - var c = "" + this.channel + ". "; + var e = "" + this.channel + ". "; switch(this.cmd) { case f.NOTEON: - c += "NOTEON " + f.toNoteString(this.data[1]); + e += "NOTEON " + f.toNoteString(this.data[1]); break; case f.NOTEOFF: - c += "NOTEOFF " + f.toNoteString(this.data[1]); + e += "NOTEOFF " + f.toNoteString(this.data[1]); break; case f.CONTROLLERCHANGE: - c += "CC " + this.data[1] + " " + this.data[2]; + e += "CC " + this.data[1] + " " + this.data[2]; break; case f.PROGRAMCHANGE: - c += "PC " + this.data[1]; + e += "PC " + this.data[1]; break; case f.PITCHBEND: - c += "PITCHBEND " + this.getPitchBend(); + e += "PITCHBEND " + this.getPitchBend(); break; case f.KEYPRESSURE: - c += "KEYPRESS " + this.data[1]; + e += "KEYPRESS " + this.data[1]; } - return c; + return e; }; f.prototype.toHexString = function() { - for (var c = "", a = 0; a < this.data.length; a++) { - c += this.data[a].toString(16) + " "; + for (var e = "", a = 0; a < this.data.length; a++) { + e += this.data[a].toString(16) + " "; } }; f.NOTEOFF = 128; @@ -6051,100 +6444,100 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.PITCHBEND = 224; f.TIMETICK = 248; f.commands = {128:"note off", 144:"note on", 160:"key pressure", 176:"controller change", 192:"program change", 208:"channel pressure", 224:"pitch bend", 240:"system", 242:"Song pos", 243:"Song select", 246:"Tune request", 248:"time tick", 250:"Start Song", 251:"Continue Song", 252:"Stop Song", 254:"Sensing", 255:"Reset"}; - k.input = null; - k.MIDIEvent = f; - k.prototype.onMIDISuccess = function(c) { + g.input = null; + g.MIDIEvent = f; + g.prototype.onMIDISuccess = function(e) { console.log("MIDI ready!"); - console.log(c); - this.midi = c; + console.log(e); + this.midi = e; this.updatePorts(); if (this.on_ready) { this.on_ready(this); } }; - k.prototype.updatePorts = function() { - var c = this.midi; - this.input_ports = c.inputs; - for (var a = 0, b = this.input_ports.values(), d = b.next(); d && !1 === d.done;) { - d = d.value, console.log("Input port [type:'" + d.type + "'] id:'" + d.id + "' manufacturer:'" + d.manufacturer + "' name:'" + d.name + "' version:'" + d.version + "'"), a++, d = b.next(); + g.prototype.updatePorts = function() { + var e = this.midi; + this.input_ports = e.inputs; + for (var a = 0, b = this.input_ports.values(), c = b.next(); c && !1 === c.done;) { + c = c.value, console.log("Input port [type:'" + c.type + "'] id:'" + c.id + "' manufacturer:'" + c.manufacturer + "' name:'" + c.name + "' version:'" + c.version + "'"), a++, c = b.next(); } this.num_input_ports = a; a = 0; - this.output_ports = c.outputs; + this.output_ports = e.outputs; b = this.output_ports.values(); - for (d = b.next(); d && !1 === d.done;) { - d = d.value, console.log("Output port [type:'" + d.type + "'] id:'" + d.id + "' manufacturer:'" + d.manufacturer + "' name:'" + d.name + "' version:'" + d.version + "'"), a++, d = b.next(); + for (c = b.next(); c && !1 === c.done;) { + c = c.value, console.log("Output port [type:'" + c.type + "'] id:'" + c.id + "' manufacturer:'" + c.manufacturer + "' name:'" + c.name + "' version:'" + c.version + "'"), a++, c = b.next(); } this.num_output_ports = a; }; - k.prototype.onMIDIFailure = function(c) { - console.error("Failed to get MIDI access - " + c); + g.prototype.onMIDIFailure = function(e) { + console.error("Failed to get MIDI access - " + e); }; - k.prototype.openInputPort = function(c, a) { - c = this.input_ports.get("input-" + c); - if (!c) { + g.prototype.openInputPort = function(e, a) { + e = this.input_ports.get("input-" + e); + if (!e) { return !1; } - k.input = this; + g.input = this; var b = this; - c.onmidimessage = function(d) { - var c = new f(d.data); - b.updateState(c); - a && a(d.data, c); - if (k.on_message) { - k.on_message(d.data, c); + e.onmidimessage = function(c) { + var e = new f(c.data); + b.updateState(e); + a && a(c.data, e); + if (g.on_message) { + g.on_message(c.data, e); } }; - console.log("port open: ", c); + console.log("port open: ", e); return !0; }; - k.parseMsg = function(c) { + g.parseMsg = function(e) { }; - k.prototype.updateState = function(c) { - switch(c.cmd) { + g.prototype.updateState = function(e) { + switch(e.cmd) { case f.NOTEON: - this.state.note[c.value1 | 0] = c.value2; + this.state.note[e.value1 | 0] = e.value2; break; case f.NOTEOFF: - this.state.note[c.value1 | 0] = 0; + this.state.note[e.value1 | 0] = 0; break; case f.CONTROLLERCHANGE: - this.state.cc[c.getCC()] = c.getCCValue(); + this.state.cc[e.getCC()] = e.getCCValue(); } }; - k.prototype.sendMIDI = function(c, a) { - a && (c = this.output_ports.get("output-" + c)) && (k.output = this, a.constructor === f ? c.send(a.data) : c.send(a)); + g.prototype.sendMIDI = function(e, a) { + a && (e = this.output_ports.get("output-" + e)) && (g.output = this, a.constructor === f ? e.send(a.data) : e.send(a)); }; - c.MIDIInterface = k; - c.title = "MIDI Input"; - c.desc = "Reads MIDI from a input port"; - c.prototype.getPropertyInfo = function(c) { - if (this._midi && "port" == c) { - c = {}; + d.MIDIInterface = g; + d.title = "MIDI Input"; + d.desc = "Reads MIDI from a input port"; + d.prototype.getPropertyInfo = function(e) { + if (this._midi && "port" == e) { + e = {}; for (var a = 0; a < this._midi.input_ports.size; ++a) { var b = this._midi.input_ports.get("input-" + a); - c[a] = a + ".- " + b.name + " version:" + b.version; + e[a] = a + ".- " + b.name + " version:" + b.version; } - return {type:"enum", values:c}; + return {type:"enum", values:e}; } }; - c.prototype.onStart = function() { + d.prototype.onStart = function() { this._midi ? this._midi.openInputPort(this.properties.port, this.onMIDIEvent.bind(this)) : this._waiting = !0; }; - c.prototype.onMIDIEvent = function(c, a) { + d.prototype.onMIDIEvent = function(e, a) { this._last_midi_event = a; this.trigger("on_midi", a); a.cmd == f.NOTEON ? this.trigger("on_noteon", a) : a.cmd == f.NOTEOFF ? this.trigger("on_noteoff", a) : a.cmd == f.CONTROLLERCHANGE ? this.trigger("on_cc", a) : a.cmd == f.PROGRAMCHANGE ? this.trigger("on_pc", a) : a.cmd == f.PITCHBEND && this.trigger("on_pitchbend", a); }; - c.prototype.onExecute = function() { + d.prototype.onExecute = function() { if (this.outputs) { - for (var c = this._last_midi_event, a = 0; a < this.outputs.length; ++a) { + for (var e = this._last_midi_event, a = 0; a < this.outputs.length; ++a) { switch(this.outputs[a].name) { case "midi": var b = this._midi; break; case "last_midi": - b = c; + b = e; break; default: continue; @@ -6153,90 +6546,90 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - c.prototype.onGetOutputs = function() { - return [["last_midi", "midi"], ["on_midi", q.EVENT], ["on_noteon", q.EVENT], ["on_noteoff", q.EVENT], ["on_cc", q.EVENT], ["on_pc", q.EVENT], ["on_pitchbend", q.EVENT]]; + d.prototype.onGetOutputs = function() { + return [["last_midi", "midi"], ["on_midi", p.EVENT], ["on_noteon", p.EVENT], ["on_noteoff", p.EVENT], ["on_cc", p.EVENT], ["on_pc", p.EVENT], ["on_pitchbend", p.EVENT]]; }; - q.registerNodeType("midi/input", c); - p.MIDIInterface = k; - p.title = "MIDI Output"; - p.desc = "Sends MIDI to output channel"; - p.prototype.getPropertyInfo = function(c) { - if (this._midi && "port" == c) { - c = {}; + p.registerNodeType("midi/input", d); + m.MIDIInterface = g; + m.title = "MIDI Output"; + m.desc = "Sends MIDI to output channel"; + m.prototype.getPropertyInfo = function(e) { + if (this._midi && "port" == e) { + e = {}; for (var a = 0; a < this._midi.output_ports.size; ++a) { var b = this._midi.output_ports.get(a); - c[a] = a + ".- " + b.name + " version:" + b.version; + e[a] = a + ".- " + b.name + " version:" + b.version; } - return {type:"enum", values:c}; + return {type:"enum", values:e}; } }; - p.prototype.onAction = function(c, a) { + m.prototype.onAction = function(e, a) { console.log(a); - this._midi && ("send" == c && this._midi.sendMIDI(this.port, a), this.trigger("midi", a)); + this._midi && ("send" == e && this._midi.sendMIDI(this.port, a), this.trigger("midi", a)); }; - p.prototype.onGetInputs = function() { - return [["send", q.ACTION]]; + m.prototype.onGetInputs = function() { + return [["send", p.ACTION]]; }; - p.prototype.onGetOutputs = function() { - return [["on_midi", q.EVENT]]; + m.prototype.onGetOutputs = function() { + return [["on_midi", p.EVENT]]; }; - q.registerNodeType("midi/output", p); - t.title = "MIDI Show"; - t.desc = "Shows MIDI in the graph"; - t.prototype.onAction = function(c, a) { + p.registerNodeType("midi/output", m); + r.title = "MIDI Show"; + r.desc = "Shows MIDI in the graph"; + r.prototype.onAction = function(e, a) { a && (this._str = a.constructor === f ? a.toString() : "???"); }; - t.prototype.onDrawForeground = function(c) { - this._str && (c.font = "30px Arial", c.fillText(this._str, 10, 0.8 * this.size[1])); + r.prototype.onDrawForeground = function(e) { + this._str && (e.font = "30px Arial", e.fillText(this._str, 10, 0.8 * this.size[1])); }; - t.prototype.onGetInputs = function() { - return [["in", q.ACTION]]; + r.prototype.onGetInputs = function() { + return [["in", p.ACTION]]; }; - t.prototype.onGetOutputs = function() { - return [["on_midi", q.EVENT]]; + r.prototype.onGetOutputs = function() { + return [["on_midi", p.EVENT]]; }; - q.registerNodeType("midi/show", t); - v.title = "MIDI Filter"; - v.desc = "Filters MIDI messages"; - v.prototype.onAction = function(c, a) { + p.registerNodeType("midi/show", r); + u.title = "MIDI Filter"; + u.desc = "Filters MIDI messages"; + u.prototype.onAction = function(e, a) { !a || a.constructor !== f || -1 != this.properties.channel && a.channel != this.properties.channel || -1 != this.properties.cmd && a.cmd != this.properties.cmd || -1 != this.properties.min_value && a.data[1] < this.properties.min_value || -1 != this.properties.max_value && a.data[1] > this.properties.max_value || this.trigger("on_midi", a); }; - q.registerNodeType("midi/filter", v); + p.registerNodeType("midi/filter", u); w.title = "MIDIEvent"; w.desc = "Create a MIDI Event"; - w.prototype.onAction = function(c, a) { - "assign" == c ? (this.properties.channel = a.channel, this.properties.cmd = a.cmd, this.properties.value1 = a.data[1], this.properties.value2 = a.data[2]) : (a = new f, a.channel = this.properties.channel, this.properties.cmd && this.properties.cmd.constructor === String ? a.setCommandFromString(this.properties.cmd) : a.cmd = this.properties.cmd, a.data[0] = a.cmd | a.channel, a.data[1] = Number(this.properties.value1), a.data[2] = Number(this.properties.value2), this.trigger("on_midi", a)); + w.prototype.onAction = function(e, a) { + "assign" == e ? (this.properties.channel = a.channel, this.properties.cmd = a.cmd, this.properties.value1 = a.data[1], this.properties.value2 = a.data[2]) : (a = new f, a.channel = this.properties.channel, this.properties.cmd && this.properties.cmd.constructor === String ? a.setCommandFromString(this.properties.cmd) : a.cmd = this.properties.cmd, a.data[0] = a.cmd | a.channel, a.data[1] = Number(this.properties.value1), a.data[2] = Number(this.properties.value2), this.trigger("on_midi", a)); }; w.prototype.onExecute = function() { - var c = this.properties; + var e = this.properties; if (this.outputs) { for (var a = 0; a < this.outputs.length; ++a) { switch(this.outputs[a].name) { case "midi": var b = new f; - b.setup([c.cmd, c.value1, c.value2]); - b.channel = c.channel; + b.setup([e.cmd, e.value1, e.value2]); + b.channel = e.channel; break; case "command": - b = c.cmd; + b = e.cmd; break; case "cc": - b = c.value1; + b = e.value1; break; case "cc_value": - b = c.value2; + b = e.value2; break; case "note": - b = c.cmd == f.NOTEON || c.cmd == f.NOTEOFF ? c.value1 : null; + b = e.cmd == f.NOTEON || e.cmd == f.NOTEOFF ? e.value1 : null; break; case "velocity": - b = c.cmd == f.NOTEON ? c.value2 : null; + b = e.cmd == f.NOTEON ? e.value2 : null; break; case "pitch": - b = c.cmd == f.NOTEON ? f.computePitch(c.value1) : null; + b = e.cmd == f.NOTEON ? f.computePitch(e.value1) : null; break; case "pitchbend": - b = c.cmd == f.PITCHBEND ? f.computePitchBend(c.value1, c.value2) : null; + b = e.cmd == f.PITCHBEND ? f.computePitchBend(e.value1, e.value2) : null; break; default: continue; @@ -6245,22 +6638,22 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - w.prototype.onPropertyChanged = function(c, a) { - "cmd" == c && (this.properties.cmd = f.computeCommandFromString(a)); + w.prototype.onPropertyChanged = function(e, a) { + "cmd" == e && (this.properties.cmd = f.computeCommandFromString(a)); }; w.prototype.onGetOutputs = function() { - return [["midi", "midi"], ["on_midi", q.EVENT], ["command", "number"], ["note", "number"], ["velocity", "number"], ["cc", "number"], ["cc_value", "number"], ["pitch", "number"], ["pitchbend", "number"]]; + return [["midi", "midi"], ["on_midi", p.EVENT], ["command", "number"], ["note", "number"], ["velocity", "number"], ["cc", "number"], ["cc_value", "number"], ["pitch", "number"], ["pitchbend", "number"]]; }; - q.registerNodeType("midi/event", w); - e.title = "MIDICC"; - e.desc = "gets a Controller Change"; - e.prototype.onExecute = function() { - k.input && (this.properties.value = k.input.state.cc[this.properties.cc]); + p.registerNodeType("midi/event", w); + h.title = "MIDICC"; + h.desc = "gets a Controller Change"; + h.prototype.onExecute = function() { + g.input && (this.properties.value = g.input.state.cc[this.properties.cc]); this.setOutputData(0, this.properties.value); }; - q.registerNodeType("midi/cc", e); + p.registerNodeType("midi/cc", h); })(this); -(function(u) { +(function(t) { function f() { this.properties = {src:"", gain:0.5, loop:!0, autoplay:!0, playbackRate:1}; this._loading_audio = !1; @@ -6269,14 +6662,14 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._last_sourcenode = null; this.addOutput("out", "audio"); this.addInput("gain", "number"); - this.audionode = x.getAudioContext().createGain(); + this.audionode = v.getAudioContext().createGain(); this.audionode.graphnode = this; this.audionode.gain.value = this.properties.gain; this.properties.src && this.loadSound(this.properties.src); } - function k() { + function g() { this.properties = {fftSize:2048, minDecibels:-100, maxDecibels:-10, smoothingTimeConstant:0.5}; - this.audionode = x.getAudioContext().createAnalyser(); + this.audionode = v.getAudioContext().createAnalyser(); this.audionode.graphnode = this; this.audionode.fftSize = this.properties.fftSize; this.audionode.minDecibels = this.properties.minDecibels; @@ -6287,38 +6680,38 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addOutput("samples", "array"); this._time_bin = this._freq_bin = null; } - function c() { + function d() { this.properties = {gain:1}; - this.audionode = x.getAudioContext().createGain(); + this.audionode = v.getAudioContext().createGain(); this.addInput("in", "audio"); this.addInput("gain", "number"); this.addOutput("out", "audio"); } - function p() { + function m() { this.properties = {impulse_src:"", normalize:!0}; - this.audionode = x.getAudioContext().createConvolver(); + this.audionode = v.getAudioContext().createConvolver(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function t() { + function r() { this.properties = {threshold:-50, knee:40, ratio:12, reduction:-20, attack:0, release:0.25}; - this.audionode = x.getAudioContext().createDynamicsCompressor(); + this.audionode = v.getAudioContext().createDynamicsCompressor(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function v() { + function u() { this.properties = {}; - this.audionode = x.getAudioContext().createWaveShaper(); + this.audionode = v.getAudioContext().createWaveShaper(); this.addInput("in", "audio"); this.addInput("shape", "waveshape"); this.addOutput("out", "audio"); } function w() { this.properties = {gain1:0.5, gain2:0.5}; - this.audionode = x.getAudioContext().createGain(); - this.audionode1 = x.getAudioContext().createGain(); + this.audionode = v.getAudioContext().createGain(); + this.audionode1 = v.getAudioContext().createGain(); this.audionode1.gain.value = this.properties.gain1; - this.audionode2 = x.getAudioContext().createGain(); + this.audionode2 = v.getAudioContext().createGain(); this.audionode2.gain.value = this.properties.gain2; this.audionode1.connect(this.audionode); this.audionode2.connect(this.audionode); @@ -6328,25 +6721,25 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addInput("in2 gain", "number"); this.addOutput("out", "audio"); } - function e() { + function h() { this.properties = {delayTime:0.5}; - this.audionode = x.getAudioContext().createDelay(10); + this.audionode = v.getAudioContext().createDelay(10); this.audionode.delayTime.value = this.properties.delayTime; this.addInput("in", "audio"); this.addInput("time", "number"); this.addOutput("out", "audio"); } - function q() { + function p() { this.properties = {frequency:350, detune:0, Q:1}; this.addProperty("type", "lowpass", "enum", {values:"lowpass highpass bandpass lowshelf highshelf peaking notch allpass".split(" ")}); - this.audionode = x.getAudioContext().createBiquadFilter(); + this.audionode = v.getAudioContext().createBiquadFilter(); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function l() { + function e() { this.properties = {frequency:440, detune:0, type:"sine"}; this.addProperty("type", "sine", "enum", {values:["sine", "square", "sawtooth", "triangle", "custom"]}); - this.audionode = x.getAudioContext().createOscillator(); + this.audionode = v.getAudioContext().createOscillator(); this.addOutput("out", "audio"); } function a() { @@ -6361,26 +6754,26 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this.addInput("freqs", "array"); this.addOutput("signal", "number"); } - function d() { - if (!d.default_code) { - var a = d.default_function.toString(), b = a.indexOf("{") + 1, c = a.lastIndexOf("}"); - d.default_code = a.substr(b, c - b); + function c() { + if (!c.default_code) { + var a = c.default_function.toString(), b = a.indexOf("{") + 1, e = a.lastIndexOf("}"); + c.default_code = a.substr(b, e - b); } - this.properties = {code:d.default_code}; - a = x.getAudioContext(); + this.properties = {code:c.default_code}; + a = v.getAudioContext(); a.createScriptProcessor ? this.audionode = a.createScriptProcessor(4096, 1, 1) : (console.warn("ScriptProcessorNode deprecated"), this.audionode = a.createGain()); this.processCode(); - d._bypass_function || (d._bypass_function = this.audionode.onaudioprocess); + c._bypass_function || (c._bypass_function = this.audionode.onaudioprocess); this.addInput("in", "audio"); this.addOutput("out", "audio"); } - function g() { - this.audionode = x.getAudioContext().destination; + function n() { + this.audionode = v.getAudioContext().destination; this.addInput("in", "audio"); } - var h = u.LiteGraph, x = {}; - u.LGAudio = x; - x.getAudioContext = function() { + var l = t.LiteGraph, v = {}; + t.LGAudio = v; + v.getAudioContext = function() { if (!this._audio_context) { window.AudioContext = window.AudioContext || window.webkitAudioContext; if (!window.AudioContext) { @@ -6399,80 +6792,80 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } return this._audio_context; }; - x.connect = function(a, b) { + v.connect = function(a, b) { try { a.connect(b); - } catch (A) { - console.warn("LGraphAudio:", A); + } catch (B) { + console.warn("LGraphAudio:", B); } }; - x.disconnect = function(a, b) { + v.disconnect = function(a, b) { try { a.disconnect(b); - } catch (A) { - console.warn("LGraphAudio:", A); + } catch (B) { + console.warn("LGraphAudio:", B); } }; - x.changeAllAudiosConnections = function(a, b) { + v.changeAllAudiosConnections = function(a, b) { if (a.inputs) { - for (var d = 0; d < a.inputs.length; ++d) { - var c = a.graph.links[a.inputs[d].link]; - if (c) { - var e = a.graph.getNodeById(c.origin_id); - e = e.getAudioNodeInOutputSlot ? e.getAudioNodeInOutputSlot(c.origin_slot) : e.audionode; - c = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(d) : a.audionode; - b ? x.connect(e, c) : x.disconnect(e, c); + for (var c = 0; c < a.inputs.length; ++c) { + var e = a.graph.links[a.inputs[c].link]; + if (e) { + var d = a.graph.getNodeById(e.origin_id); + d = d.getAudioNodeInOutputSlot ? d.getAudioNodeInOutputSlot(e.origin_slot) : d.audionode; + e = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(c) : a.audionode; + b ? v.connect(d, e) : v.disconnect(d, e); } } } if (a.outputs) { - for (d = 0; d < a.outputs.length; ++d) { - for (var f = a.outputs[d], n = 0; n < f.links.length; ++n) { - if (c = a.graph.links[f.links[n]]) { - e = a.getAudioNodeInOutputSlot ? a.getAudioNodeInOutputSlot(d) : a.audionode; - var g = a.graph.getNodeById(c.target_id); - c = g.getAudioNodeInInputSlot ? g.getAudioNodeInInputSlot(c.target_slot) : g.audionode; - b ? x.connect(e, c) : x.disconnect(e, c); + for (c = 0; c < a.outputs.length; ++c) { + for (var f = a.outputs[c], k = 0; k < f.links.length; ++k) { + if (e = a.graph.links[f.links[k]]) { + d = a.getAudioNodeInOutputSlot ? a.getAudioNodeInOutputSlot(c) : a.audionode; + var h = a.graph.getNodeById(e.target_id); + e = h.getAudioNodeInInputSlot ? h.getAudioNodeInInputSlot(e.target_slot) : h.audionode; + b ? v.connect(d, e) : v.disconnect(d, e); } } } } }; - x.onConnectionsChange = function(a, b, d, c) { - a == h.OUTPUT && (a = null, c && (a = this.graph.getNodeById(c.target_id)), a && (b = this.getAudioNodeInOutputSlot ? this.getAudioNodeInOutputSlot(b) : this.audionode, c = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(c.target_slot) : a.audionode, d ? x.connect(b, c) : x.disconnect(b, c))); + v.onConnectionsChange = function(a, b, c, e) { + a == l.OUTPUT && (a = null, e && (a = this.graph.getNodeById(e.target_id)), a && (b = this.getAudioNodeInOutputSlot ? this.getAudioNodeInOutputSlot(b) : this.audionode, e = a.getAudioNodeInInputSlot ? a.getAudioNodeInInputSlot(e.target_slot) : a.audionode, c ? v.connect(b, e) : v.disconnect(b, e))); }; - x.createAudioNodeWrapper = function(a) { + v.createAudioNodeWrapper = function(a) { var b = a.prototype.onPropertyChanged; a.prototype.onPropertyChanged = function(a, c) { b && b.call(this, a, c); this.audionode && void 0 !== this.audionode[a] && (void 0 !== this.audionode[a].value ? this.audionode[a].value = c : this.audionode[a] = c); }; - a.prototype.onConnectionsChange = x.onConnectionsChange; + a.prototype.onConnectionsChange = v.onConnectionsChange; }; - x.cached_audios = {}; - x.loadSound = function(a, b, c) { - function d(a) { + v.cached_audios = {}; + v.loadSound = function(a, b, c) { + function e(a) { console.log("Audio loading sample error:", a); c && c(a); } - if (x.cached_audios[a] && -1 == a.indexOf("blob:")) { - b && b(x.cached_audios[a]); + if (v.cached_audios[a] && -1 == a.indexOf("blob:")) { + b && b(v.cached_audios[a]); } else { - x.onProcessAudioURL && (a = x.onProcessAudioURL(a)); - var e = new XMLHttpRequest; - e.open("GET", a, !0); - e.responseType = "arraybuffer"; - var f = x.getAudioContext(); - e.onload = function() { + v.onProcessAudioURL && (a = v.onProcessAudioURL(a)); + var d = new XMLHttpRequest; + d.open("GET", a, !0); + d.responseType = "arraybuffer"; + var f = v.getAudioContext(); + d.onload = function() { console.log("AudioSource loaded"); - f.decodeAudioData(e.response, function(c) { + f.decodeAudioData(d.response, function(c) { console.log("AudioSource decoded"); - x.cached_audios[a] = c; + v.cached_audios[a] = c; b && b(c); - }, d); + }, e); }; - e.send(); - return e; + d.send(); + return d; } }; f["@src"] = {widget:"resource"}; @@ -6505,10 +6898,10 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._audionodes.length = 0; }; f.prototype.pauseAllSounds = function() { - x.getAudioContext().suspend(); + v.getAudioContext().suspend(); }; f.prototype.unpauseAllSounds = function() { - x.getAudioContext().resume(); + v.getAudioContext().resume(); }; f.prototype.onExecute = function() { if (this.inputs) { @@ -6555,7 +6948,7 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } }; f.prototype.playBuffer = function(a) { - var b = this, c = x.getAudioContext().createBufferSource(); + var b = this, c = v.getAudioContext().createBufferSource(); this._last_sourcenode = c; c.graphnode = this; c.buffer = a; @@ -6577,8 +6970,8 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._request && (this._request.abort(), this._request = null); this._audiobuffer = null; this._loading_audio = !1; - a && (this._request = x.loadSound(a, function(a) { - this.boxcolor = h.NODE_DEFAULT_BOXCOLOR; + a && (this._request = v.loadSound(a, function(a) { + this.boxcolor = l.NODE_DEFAULT_BOXCOLOR; b._audiobuffer = a; b._loading_audio = !1; if (b.graph && b.graph.status === LGraph.STATUS_RUNNING) { @@ -6586,12 +6979,12 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } }), this._loading_audio = !0, this.boxcolor = "#AA4"); }; - f.prototype.onConnectionsChange = x.onConnectionsChange; + f.prototype.onConnectionsChange = v.onConnectionsChange; f.prototype.onGetInputs = function() { - return [["playbackRate", "number"], ["Play", h.ACTION], ["Stop", h.ACTION]]; + return [["playbackRate", "number"], ["Play", l.ACTION], ["Stop", l.ACTION]]; }; f.prototype.onGetOutputs = function() { - return [["buffer", "audiobuffer"], ["ended", h.EVENT]]; + return [["buffer", "audiobuffer"], ["ended", l.EVENT]]; }; f.prototype.onDropFile = function(a) { this._dropped_url && URL.revokeObjectURL(this._dropped_url); @@ -6602,11 +6995,11 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; f.title = "Source"; f.desc = "Plays audio"; - h.registerNodeType("audio/source", f); - k.prototype.onPropertyChanged = function(a, b) { + l.registerNodeType("audio/source", f); + g.prototype.onPropertyChanged = function(a, b) { this.audionode[a] = b; }; - k.prototype.onExecute = function() { + g.prototype.onExecute = function() { if (this.isOutputConnected(0)) { var a = this.audionode.frequencyBinCount; this._freq_bin && this._freq_bin.length == a || (this._freq_bin = new Uint8Array(a)); @@ -6622,16 +7015,16 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - k.prototype.onGetInputs = function() { + g.prototype.onGetInputs = function() { return [["minDecibels", "number"], ["maxDecibels", "number"], ["smoothingTimeConstant", "number"]]; }; - k.prototype.onGetOutputs = function() { + g.prototype.onGetOutputs = function() { return [["freqs", "array"], ["samples", "array"]]; }; - k.title = "Analyser"; - k.desc = "Audio Analyser"; - h.registerNodeType("audio/analyser", k); - c.prototype.onExecute = function() { + g.title = "Analyser"; + g.desc = "Audio Analyser"; + l.registerNodeType("audio/analyser", g); + d.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a], c = this.getInputData(a); @@ -6639,40 +7032,40 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - x.createAudioNodeWrapper(c); - c.title = "Gain"; - c.desc = "Audio gain"; - h.registerNodeType("audio/gain", c); - x.createAudioNodeWrapper(p); - p.prototype.onRemove = function() { + v.createAudioNodeWrapper(d); + d.title = "Gain"; + d.desc = "Audio gain"; + l.registerNodeType("audio/gain", d); + v.createAudioNodeWrapper(m); + m.prototype.onRemove = function() { this._dropped_url && URL.revokeObjectURL(this._dropped_url); }; - p.prototype.onPropertyChanged = function(a, b) { + m.prototype.onPropertyChanged = function(a, b) { "impulse_src" == a ? this.loadImpulse(b) : "normalize" == a && (this.audionode.normalize = b); }; - p.prototype.onDropFile = function(a) { + m.prototype.onDropFile = function(a) { this._dropped_url && URL.revokeObjectURL(this._dropped_url); this._dropped_url = URL.createObjectURL(a); this.properties.impulse_src = this._dropped_url; this.loadImpulse(this._dropped_url); }; - p.prototype.loadImpulse = function(a) { + m.prototype.loadImpulse = function(a) { var b = this; this._request && (this._request.abort(), this._request = null); this._impulse_buffer = null; this._loading_impulse = !1; - a && (this._request = x.loadSound(a, function(a) { + a && (this._request = v.loadSound(a, function(a) { b._impulse_buffer = a; b.audionode.buffer = a; console.log("Impulse signal set"); b._loading_impulse = !1; }), this._loading_impulse = !0); }; - p.title = "Convolver"; - p.desc = "Convolves the signal (used for reverb)"; - h.registerNodeType("audio/convolver", p); - x.createAudioNodeWrapper(t); - t.prototype.onExecute = function() { + m.title = "Convolver"; + m.desc = "Convolves the signal (used for reverb)"; + l.registerNodeType("audio/convolver", m); + v.createAudioNodeWrapper(r); + r.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6683,22 +7076,22 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - t.prototype.onGetInputs = function() { + r.prototype.onGetInputs = function() { return [["threshold", "number"], ["knee", "number"], ["ratio", "number"], ["reduction", "number"], ["attack", "number"], ["release", "number"]]; }; - t.title = "DynamicsCompressor"; - t.desc = "Dynamics Compressor"; - h.registerNodeType("audio/dynamicsCompressor", t); - v.prototype.onExecute = function() { + r.title = "DynamicsCompressor"; + r.desc = "Dynamics Compressor"; + l.registerNodeType("audio/dynamicsCompressor", r); + u.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { var a = this.getInputData(1); void 0 !== a && (this.audionode.curve = a); } }; - v.prototype.setWaveShape = function(a) { + u.prototype.setWaveShape = function(a) { this.audionode.curve = a; }; - x.createAudioNodeWrapper(v); + v.createAudioNodeWrapper(u); w.prototype.getAudioNodeInInputSlot = function(a) { if (0 == a) { return this.audionode1; @@ -6718,19 +7111,19 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - x.createAudioNodeWrapper(w); + v.createAudioNodeWrapper(w); w.title = "Mixer"; w.desc = "Audio mixer"; - h.registerNodeType("audio/mixer", w); - x.createAudioNodeWrapper(e); - e.prototype.onExecute = function() { + l.registerNodeType("audio/mixer", w); + v.createAudioNodeWrapper(h); + h.prototype.onExecute = function() { var a = this.getInputData(1); void 0 !== a && (this.audionode.delayTime.value = a); }; - e.title = "Delay"; - e.desc = "Audio delay"; - h.registerNodeType("audio/delay", e); - q.prototype.onExecute = function() { + h.title = "Delay"; + h.desc = "Audio delay"; + l.registerNodeType("audio/delay", h); + p.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 1; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6741,26 +7134,26 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - q.prototype.onGetInputs = function() { + p.prototype.onGetInputs = function() { return [["frequency", "number"], ["detune", "number"], ["Q", "number"]]; }; - x.createAudioNodeWrapper(q); - q.title = "BiquadFilter"; - q.desc = "Audio filter"; - h.registerNodeType("audio/biquadfilter", q); - l.prototype.onStart = function() { + v.createAudioNodeWrapper(p); + p.title = "BiquadFilter"; + p.desc = "Audio filter"; + l.registerNodeType("audio/biquadfilter", p); + e.prototype.onStart = function() { this.audionode.started || (this.audionode.started = !0, this.audionode.start()); }; - l.prototype.onStop = function() { + e.prototype.onStop = function() { this.audionode.started && (this.audionode.started = !1, this.audionode.stop()); }; - l.prototype.onPause = function() { + e.prototype.onPause = function() { this.onStop(); }; - l.prototype.onUnpause = function() { + e.prototype.onUnpause = function() { this.onStart(); }; - l.prototype.onExecute = function() { + e.prototype.onExecute = function() { if (this.inputs && this.inputs.length) { for (var a = 0; a < this.inputs.length; ++a) { var b = this.inputs[a]; @@ -6771,13 +7164,13 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } } }; - l.prototype.onGetInputs = function() { + e.prototype.onGetInputs = function() { return [["frequency", "number"], ["detune", "number"], ["type", "string"]]; }; - x.createAudioNodeWrapper(l); - l.title = "Oscillator"; - l.desc = "Oscillator"; - h.registerNodeType("audio/oscillator", l); + v.createAudioNodeWrapper(e); + e.title = "Oscillator"; + e.desc = "Oscillator"; + l.registerNodeType("audio/oscillator", e); a.prototype.onExecute = function() { this._last_buffer = this.getInputData(0); var a = this.getInputData(1); @@ -6786,34 +7179,34 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; a.prototype.onDrawForeground = function(a) { if (this._last_buffer) { - var b = this._last_buffer, c = b.length / this.size[0], d = this.size[1]; + var b = this._last_buffer, c = b.length / this.size[0], e = this.size[1]; a.fillStyle = "black"; a.fillRect(0, 0, this.size[0], this.size[1]); a.strokeStyle = "white"; a.beginPath(); - var e = 0; + var d = 0; if (this.properties.continuous) { - a.moveTo(e, d); + a.moveTo(d, e); for (var f = 0; f < b.length; f += c) { - a.lineTo(e, d - b[f | 0] / 255 * d), e++; + a.lineTo(d, e - b[f | 0] / 255 * e), d++; } } else { for (f = 0; f < b.length; f += c) { - a.moveTo(e + 0.5, d), a.lineTo(e + 0.5, d - b[f | 0] / 255 * d), e++; + a.moveTo(d + 0.5, e), a.lineTo(d + 0.5, e - b[f | 0] / 255 * e), d++; } } a.stroke(); - 0 <= this.properties.mark && (b = x.getAudioContext().sampleRate / b.length, e = this.properties.mark / b * 2 / c, e >= this.size[0] && (e = this.size[0] - 1), a.strokeStyle = "red", a.beginPath(), a.moveTo(e, d), a.lineTo(e, 0), a.stroke()); + 0 <= this.properties.mark && (b = v.getAudioContext().sampleRate / b.length, d = this.properties.mark / b * 2 / c, d >= this.size[0] && (d = this.size[0] - 1), a.strokeStyle = "red", a.beginPath(), a.moveTo(d, e), a.lineTo(d, 0), a.stroke()); } }; a.title = "Visualization"; a.desc = "Audio Visualization"; - h.registerNodeType("audio/visualization", a); + l.registerNodeType("audio/visualization", a); b.prototype.onExecute = function() { if (this._freqs = this.getInputData(0)) { var a = this.properties.band, b = this.getInputData(1); void 0 !== b && (a = b); - b = x.getAudioContext().sampleRate / this._freqs.length; + b = v.getAudioContext().sampleRate / this._freqs.length; b = a / b * 2; b >= this._freqs.length ? b = this._freqs[this._freqs.length - 1] : (a = b | 0, b -= a, b = this._freqs[a] * (1 - b) + this._freqs[a + 1] * b); this.setOutputData(0, b / 255 * this.properties.amplitude); @@ -6824,72 +7217,72 @@ $jscomp.polyfill("Array.prototype.values", function(u) { }; b.title = "Signal"; b.desc = "extract the signal of some frequency"; - h.registerNodeType("audio/signal", b); - d.prototype.onAdded = function(a) { + l.registerNodeType("audio/signal", b); + c.prototype.onAdded = function(a) { a.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback); }; - d["@code"] = {widget:"code"}; - d.prototype.onStart = function() { + c["@code"] = {widget:"code"}; + c.prototype.onStart = function() { this.audionode.onaudioprocess = this._callback; }; - d.prototype.onStop = function() { - this.audionode.onaudioprocess = d._bypass_function; + c.prototype.onStop = function() { + this.audionode.onaudioprocess = c._bypass_function; }; - d.prototype.onPause = function() { - this.audionode.onaudioprocess = d._bypass_function; + c.prototype.onPause = function() { + this.audionode.onaudioprocess = c._bypass_function; }; - d.prototype.onUnpause = function() { + c.prototype.onUnpause = function() { this.audionode.onaudioprocess = this._callback; }; - d.prototype.onExecute = function() { + c.prototype.onExecute = function() { }; - d.prototype.onRemoved = function() { - this.audionode.onaudioprocess = d._bypass_function; + c.prototype.onRemoved = function() { + this.audionode.onaudioprocess = c._bypass_function; }; - d.prototype.processCode = function() { + c.prototype.processCode = function() { try { this._script = new (new Function("properties", this.properties.code))(this.properties), this._old_code = this.properties.code, this._callback = this._script.onaudioprocess; - } catch (n) { - console.error("Error in onaudioprocess code", n), this._callback = d._bypass_function, this.audionode.onaudioprocess = this._callback; + } catch (k) { + console.error("Error in onaudioprocess code", k), this._callback = c._bypass_function, this.audionode.onaudioprocess = this._callback; } }; - d.prototype.onPropertyChanged = function(a, b) { + c.prototype.onPropertyChanged = function(a, b) { "code" == a && (this.properties.code = b, this.processCode(), this.graph && this.graph.status == LGraph.STATUS_RUNNING && (this.audionode.onaudioprocess = this._callback)); }; - d.default_function = function() { + c.default_function = function() { this.onaudioprocess = function(a) { var b = a.inputBuffer; a = a.outputBuffer; for (var c = 0; c < a.numberOfChannels; c++) { - for (var d = b.getChannelData(c), e = a.getChannelData(c), f = 0; f < b.length; f++) { - e[f] = d[f]; + for (var e = b.getChannelData(c), d = a.getChannelData(c), f = 0; f < b.length; f++) { + d[f] = e[f]; } } }; }; - x.createAudioNodeWrapper(d); - d.title = "Script"; - d.desc = "apply script to signal"; - h.registerNodeType("audio/script", d); - g.title = "Destination"; - g.desc = "Audio output"; - h.registerNodeType("audio/destination", g); + v.createAudioNodeWrapper(c); + c.title = "Script"; + c.desc = "apply script to signal"; + l.registerNodeType("audio/script", c); + n.title = "Destination"; + n.desc = "Audio output"; + l.registerNodeType("audio/destination", n); })(this); -(function(u) { +(function(t) { function f() { this.size = [60, 20]; - this.addInput("send", c.ACTION); - this.addOutput("received", c.EVENT); + this.addInput("send", d.ACTION); + this.addOutput("received", d.EVENT); this.addInput("in", 0); this.addOutput("out", 0); this.properties = {url:"", room:"lgraph"}; this._ws = null; this._last_data = []; } - function k() { + function g() { this.size = [60, 20]; - this.addInput("send", c.ACTION); - this.addOutput("received", c.EVENT); + this.addInput("send", d.ACTION); + this.addOutput("received", d.EVENT); this.addInput("in", 0); this.addOutput("out", 0); this.properties = {url:"tamats.com:55000", room:"lgraph", save_bandwidth:!0}; @@ -6898,24 +7291,24 @@ $jscomp.polyfill("Array.prototype.values", function(u) { this._last_input_data = []; this._last_output_data = []; } - var c = u.LiteGraph; + var d = t.LiteGraph; f.title = "WebSocket"; f.desc = "Send data through a websocket"; - f.prototype.onPropertyChanged = function(c, f) { - "url" == c && this.createSocket(); + f.prototype.onPropertyChanged = function(d, f) { + "url" == d && this.createSocket(); }; f.prototype.onExecute = function() { !this._ws && this.properties.url && this.createSocket(); if (this._ws && this._ws.readyState == WebSocket.OPEN) { - for (var c = this.properties.room, f = 1; f < this.inputs.length; ++f) { - var k = this.getInputData(f); - if (null != k) { + for (var d = this.properties.room, f = 1; f < this.inputs.length; ++f) { + var g = this.getInputData(f); + if (null != g) { try { - var u = JSON.stringify({type:0, room:c, channel:f, data:k}); - } catch (e) { + var t = JSON.stringify({type:0, room:d, channel:f, data:g}); + } catch (h) { continue; } - this._ws.send(u); + this._ws.send(t); } } for (f = 1; f < this.outputs.length; ++f) { @@ -6924,31 +7317,31 @@ $jscomp.polyfill("Array.prototype.values", function(u) { } }; f.prototype.createSocket = function() { - var c = this, f = this.properties.url; + var d = this, f = this.properties.url; "ws" != f.substr(0, 2) && (f = "ws://" + f); this._ws = new WebSocket(f); this._ws.onopen = function() { console.log("ready"); - c.boxcolor = "#8E8"; + d.boxcolor = "#8E8"; }; this._ws.onmessage = function(f) { - var k = JSON.parse(f.data); - k.room && k.room != this.properties.room || (1 == f.data.type ? c.triggerSlot(0, k) : c._last_data[f.data.channel || 0] = k.data); + var g = JSON.parse(f.data); + g.room && g.room != this.properties.room || (1 == f.data.type ? d.triggerSlot(0, g) : d._last_data[f.data.channel || 0] = g.data); }; this._ws.onerror = function(f) { console.log("couldnt connect to websocket"); - c.boxcolor = "#E88"; + d.boxcolor = "#E88"; }; this._ws.onclose = function(f) { console.log("connection closed"); - c.boxcolor = "#000"; + d.boxcolor = "#000"; }; }; - f.prototype.send = function(c) { - this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send(JSON.stringify({type:1, msg:c})); + f.prototype.send = function(d) { + this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send(JSON.stringify({type:1, msg:d})); }; - f.prototype.onAction = function(c, f) { - this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send({type:1, room:this.properties.room, action:c, data:f}); + f.prototype.onAction = function(d, f) { + this._ws && this._ws.readyState == WebSocket.OPEN && this._ws.send({type:1, room:this.properties.room, action:d, data:f}); }; f.prototype.onGetInputs = function() { return [["in", 0]]; @@ -6956,500 +7349,57 @@ $jscomp.polyfill("Array.prototype.values", function(u) { f.prototype.onGetOutputs = function() { return [["out", 0]]; }; - c.registerNodeType("network/websocket", f); - k.title = "SillyClient"; - k.desc = "Connects to SillyServer to broadcast messages"; - k.prototype.onPropertyChanged = function(c, f) { - c = this.properties.url + "/" + this.properties.room; - this._server && this._final_url != c && (this._server.connect(this.properties.url, this.properties.room), this._final_url = c); + d.registerNodeType("network/websocket", f); + g.title = "SillyClient"; + g.desc = "Connects to SillyServer to broadcast messages"; + g.prototype.onPropertyChanged = function(d, f) { + d = this.properties.url + "/" + this.properties.room; + this._server && this._final_url != d && (this._server.connect(this.properties.url, this.properties.room), this._final_url = d); }; - k.prototype.onExecute = function() { + g.prototype.onExecute = function() { if (this._server && this._server.is_connected) { - for (var c = this.properties.save_bandwidth, f = 1; f < this.inputs.length; ++f) { - var k = this.getInputData(f); - null == k || c && this._last_input_data[f] == k || (this._server.sendMessage({type:0, channel:f, data:k}), this._last_input_data[f] = k); + for (var d = this.properties.save_bandwidth, f = 1; f < this.inputs.length; ++f) { + var g = this.getInputData(f); + null == g || d && this._last_input_data[f] == g || (this._server.sendMessage({type:0, channel:f, data:g}), this._last_input_data[f] = g); } for (f = 1; f < this.outputs.length; ++f) { this.setOutputData(f, this._last_output_data[f]); } } }; - k.prototype.createSocket = function() { - var c = this; + g.prototype.createSocket = function() { + var d = this; "undefined" == typeof SillyClient ? (this._error || console.error("SillyClient node cannot be used, you must include SillyServer.js"), this._error = !0) : (this._server = new SillyClient, this._server.on_ready = function() { console.log("ready"); - c.boxcolor = "#8E8"; - }, this._server.on_message = function(f, k) { + d.boxcolor = "#8E8"; + }, this._server.on_message = function(f, g) { f = null; try { - f = JSON.parse(k); + f = JSON.parse(g); } catch (w) { return; } - 1 == f.type ? c.triggerSlot(0, f) : c._last_output_data[f.channel || 0] = f.data; + 1 == f.type ? d.triggerSlot(0, f) : d._last_output_data[f.channel || 0] = f.data; }, this._server.on_error = function(f) { console.log("couldnt connect to websocket"); - c.boxcolor = "#E88"; + d.boxcolor = "#E88"; }, this._server.on_close = function(f) { console.log("connection closed"); - c.boxcolor = "#000"; + d.boxcolor = "#000"; }, this.properties.url && this.properties.room && (this._server.connect(this.properties.url, this.properties.room), this._final_url = this.properties.url + "/" + this.properties.room)); }; - k.prototype.send = function(c) { - this._server && this._server.is_connected && this._server.sendMessage({type:1, data:c}); + g.prototype.send = function(d) { + this._server && this._server.is_connected && this._server.sendMessage({type:1, data:d}); }; - k.prototype.onAction = function(c, f) { - this._server && this._server.is_connected && this._server.sendMessage({type:1, action:c, data:f}); + g.prototype.onAction = function(d, f) { + this._server && this._server.is_connected && this._server.sendMessage({type:1, action:d, data:f}); }; - k.prototype.onGetInputs = function() { + g.prototype.onGetInputs = function() { return [["in", 0]]; }; - k.prototype.onGetOutputs = function() { + g.prototype.onGetOutputs = function() { return [["out", 0]]; }; - c.registerNodeType("network/sillyclient", k); + d.registerNodeType("network/sillyclient", g); })(this); -======= -(function(r){function g(){l.debug&&console.log("Graph created");this.list_of_graphcanvas=null;this.clear()}function f(a){this._ctor(a)}function e(a,b,c){c=c||{};this.background_image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; -a&&a.constructor===String&&(a=document.querySelector(a));this.max_zoom=10;this.min_zoom=0.1;this.title_text_font="bold 14px Arial";this.inner_text_font="normal 12px Arial";this.default_link_color="#AAC";this.default_connection_color={input_off:"#AAB",input_on:"#7F7",output_off:"#AAB",output_on:"#7F7"};this.highquality_render=!0;this.editor_alpha=1;this.pause_rendering=!1;this.render_only_selected=this.clear_background=this.render_shadows=!0;this.live_mode=!1;this.allow_interaction=this.allow_dragnodes= -this.allow_dragcanvas=this.show_info=!0;this.drag_mode=!1;this.dragging_rectangle=null;this.always_render_background=!1;this.render_canvas_area=!0;this.render_connections_shadows=!1;this.render_connection_arrows=this.render_curved_connections=this.render_connections_border=!0;this.connections_width=3;b&&b.attachCanvas(this);this.setCanvas(a);this.clear();c.skip_render||this.startRendering();this.autoresize=c.autoresize}function p(a,b){return Math.sqrt((b[0]-a[0])*(b[0]-a[0])+(b[1]-a[1])*(b[1]-a[1]))} -function q(a,b,c,m,k,d){return ca&&mb?!0:!1}function s(a,b){var c=a[0]+a[2],m=a[1]+a[3],k=b[1]+b[3];return a[0]>b[0]+b[2]||a[1]>k||ch.width-e.width-10&&(k=h.width-e.width-10);d>h.height-e.height-10&&(d=h.height-e.height-10)}m.style.left=k+"px";m.style.top=d+"px"}var l=r.LiteGraph={NODE_TITLE_HEIGHT:16,NODE_SLOT_HEIGHT:15, -NODE_WIDTH:140,NODE_MIN_WIDTH:50,NODE_COLLAPSED_RADIUS:10,NODE_COLLAPSED_WIDTH:80,CANVAS_GRID_SIZE:10,NODE_TITLE_COLOR:"#222",NODE_DEFAULT_COLOR:"#999",NODE_DEFAULT_BGCOLOR:"#444",NODE_DEFAULT_BOXCOLOR:"#AEF",NODE_DEFAULT_SHAPE:"box",MAX_NUMBER_OF_NODES:1E3,DEFAULT_POSITION:[100,100],node_images_path:"",VALID_SHAPES:["box","round"],BOX_SHAPE:1,ROUND_SHAPE:2,CIRCLE_SHAPE:3,INPUT:1,OUTPUT:2,EVENT:-1,ACTION:-1,ALWAYS:0,ON_EVENT:1,NEVER:2,ON_TRIGGER:3,proxy:null,debug:!1,throw_errors:!0,allow_scripts:!0, -registered_node_types:{},node_types_by_file_extension:{},Nodes:{},registerNodeType:function(a,b){if(!b.prototype)throw"Cannot register a simple object, it must be a class with a prototype";b.type=a;l.debug&&console.log("Node registered: "+a);a.split("/");var c=b.name,m=a.lastIndexOf("/");b.category=a.substr(0,m);b.title||(b.title=c);if(b.prototype)for(var k in f.prototype)b.prototype[k]||(b.prototype[k]=f.prototype[k]);Object.defineProperty(b.prototype,"shape",{set:function(a){switch(a){case "box":this._shape= -l.BOX_SHAPE;break;case "round":this._shape=l.ROUND_SHAPE;break;case "circle":this._shape=l.CIRCLE_SHAPE;break;default:this._shape=a}},get:function(a){return this._shape},enumerable:!0});this.registered_node_types[a]=b;b.constructor.name&&(this.Nodes[c]=b);b.prototype.onPropertyChange&&console.warn("LiteGraph node class "+a+" has onPropertyChange method, it must be called onPropertyChanged with d at the end");if(b.supported_extensions)for(k in b.supported_extensions)this.node_types_by_file_extension[b.supported_extensions[k].toLowerCase()]= -b},wrapFunctionAsNode:function(a,b,c,m){for(var k=Array(b.length),d="",h=l.getParameterNames(b),e=0;eh&&(h=k.size[0]),e+=k.size[1]+a;b+=h+a}this.setDirtyCanvas(!0,!0)};g.prototype.getTime=function(){return this.globaltime};g.prototype.getFixedTime=function(){return this.fixedtime};g.prototype.getElapsedTime=function(){return this.elapsed_time};g.prototype.sendEventToAllNodes=function(a,b,c){c=c||l.ALWAYS;var m=this._nodes_in_order?this._nodes_in_order:this._nodes;if(m)for(var k= -0,d=m.length;k= -l.MAX_NUMBER_OF_NODES)throw"LiteGraph: max number of nodes in a graph reached";null==a.id||-1==a.id?a.id=++this.last_node_id:this.last_node_id!a.length||(this._pos[0]=a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});this.id=-1;this.type=null;this.inputs=[];this.outputs=[];this.connections=[];this.properties={};this.properties_info=[];this.data=null;this.flags={}};f.prototype.configure=function(a){for(var b in a)if("console"!=b)if("properties"==b)for(var c in a.properties){if(this.properties[c]=a.properties[c],this.onPropertyChanged)this.onPropertyChanged(c,a.properties[c])}else null!= -a[b]&&("object"==typeof a[b]?this[b]&&this[b].configure?this[b].configure(a[b]):this[b]=l.cloneObject(a[b],this[b]):this[b]=a[b]);a.title||(this.title=this.constructor.title);if(this.onConnectionsChange){if(this.inputs)for(var m=0;m=this.outputs.length)){var c=this.outputs[a];if(c&&(c._data=b,this.outputs[a].links))for(c=0;c=this.inputs.length||null==this.inputs[a].link)){var c=this.graph.links[this.inputs[a].link];if(!c)return null;if(!b)return c.data;var m=this.graph.getNodeById(c.origin_id);if(!m)return c.data;if(m.updateOutputData)m.updateOutputData(c.origin_slot); -else if(m.onExecute)m.onExecute();return c.data}};f.prototype.getInputDataByName=function(a,b){var c=this.findInputSlot(a);return-1==c?null:this.getInputData(c,b)};f.prototype.isInputConnected=function(a){return this.inputs?a=this.inputs.length)return null;a=this.inputs[a];return a&&a.link? -(a=this.graph.links[a.link])?this.graph.getNodeById(a.origin_id):null:null};f.prototype.getInputOrProperty=function(a){if(!this.inputs||!this.inputs.length)return this.properties?this.properties[a]:null;for(var b=0,c=this.inputs.length;b=this.outputs.length?null:this.outputs[a]._data};f.prototype.getOutputInfo=function(a){return this.outputs? -a=this.outputs.length)return null;a=this.outputs[a]; -if(!a.links||0==a.links.length)return null;for(var b=[],c=0;ca&&this.pos[1]-d-cb)return!0;return!1};f.prototype.getSlotInPosition=function(a,b){if(this.inputs)for(var c=0,d=this.inputs.length;c=this.outputs.length)return l.debug&&console.log("Connect: Error, slot number not found"),!1;b&&b.constructor===Number&&(b=this.graph.getNodeById(b));if(!b)throw"Node not found";if(b==this)return!1;if(c.constructor===String){if(c=b.findInputSlot(c),-1==c)return l.debug&&console.log("Connect: Error, no slot of name "+c),!1}else{if(c===l.EVENT)return!1;if(!b.inputs||c>=b.inputs.length)return l.debug&&console.log("Connect: Error, slot number not found"),!1}null!=b.inputs[c].link&&b.disconnectInput(c); -this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this);var d=this.outputs[a];if(b.onConnectInput&&!1===b.onConnectInput(c,d.type,d))return!1;var k=b.inputs[c];if(l.isValidConnection(d.type,k.type)){var e={id:this.graph.last_link_id++,type:k.type,origin_id:this.id,origin_slot:a,target_id:b.id,target_slot:c};this.graph.links[e.id]=e;null==d.links&&(d.links=[]);d.links.push(e.id);b.inputs[c].link=e.id;if(this.onConnectionsChange)this.onConnectionsChange(l.OUTPUT,a,!0,e,d);if(b.onConnectionsChange)b.onConnectionsChange(l.INPUT, -c,!0,e,k)}this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this);return!0};f.prototype.disconnectOutput=function(a,b){if(a.constructor===String){if(a=this.findOutputSlot(a),-1==a)return l.debug&&console.log("Connect: Error, no slot of name "+a),!1}else if(!this.outputs||a>=this.outputs.length)return l.debug&&console.log("Connect: Error, slot number not found"),!1;var c=this.outputs[a];if(!c.links||0==c.links.length)return!1;if(b){b.constructor===Number&&(b=this.graph.getNodeById(b));if(!b)throw"Target Node not found"; -for(var d=0,k=c.links.length;d=this.inputs.length)return l.debug&&console.log("Connect: Error, slot number not found"), -!1;var b=this.inputs[a];if(!b)return!1;var c=this.inputs[a].link;this.inputs[a].link=null;var d=this.graph.links[c];if(d){var k=this.graph.getNodeById(d.origin_id);if(!k)return!1;var e=k.outputs[d.origin_slot];if(!e||!e.links||0==e.links.length)return!1;for(var h=0,f=e.links.length;hb&&this.inputs[b].pos?[this.pos[0]+this.inputs[b].pos[0],this.pos[1]+this.inputs[b].pos[1]]:!a&&this.outputs.length>b&&this.outputs[b].pos?[this.pos[0]+this.outputs[b].pos[0],this.pos[1]+this.outputs[b].pos[1]]: -a?[this.pos[0],this.pos[1]+10+b*l.NODE_SLOT_HEIGHT]:[this.pos[0]+this.size[0]+1,this.pos[1]+10+b*l.NODE_SLOT_HEIGHT]};f.prototype.alignToGrid=function(){this.pos[0]=l.CANVAS_GRID_SIZE*Math.round(this.pos[0]/l.CANVAS_GRID_SIZE);this.pos[1]=l.CANVAS_GRID_SIZE*Math.round(this.pos[1]/l.CANVAS_GRID_SIZE)};f.prototype.trace=function(a){this.console||(this.console=[]);this.console.push(a);this.console.length>f.MAX_CONSOLE&&this.console.shift();this.graph.onNodeTrace(this,a)};f.prototype.setDirtyCanvas=function(a, -b){this.graph&&this.graph.sendActionToCanvas("setDirty",[a,b])};f.prototype.loadImage=function(a){var b=new Image;b.src=l.node_images_path+a;b.ready=!1;var c=this;b.onload=function(){this.ready=!0;c.setDirtyCanvas(!0)};return b};f.prototype.captureInput=function(a){if(this.graph&&this.graph.list_of_graphcanvas)for(var b=this.graph.list_of_graphcanvas,c=0;c element, you passed a "+a.localName;throw"This browser doesnt support Canvas"; -}null==(this.ctx=a.getContext("2d"))&&(console.warn("This canvas seems to be WebGL, enabling WebGL renderer"),this.enableWebGL());this._mousemove_callback=this.processMouseMove.bind(this);this._mouseup_callback=this.processMouseUp.bind(this);b||this.bindEvents()}};e.prototype._doNothing=function(a){a.preventDefault();return!1};e.prototype._doReturnTrue=function(a){a.preventDefault();return!0};e.prototype.bindEvents=function(){if(this._events_binded)console.warn("LGraphCanvas: events already binded"); -else{var a=this.canvas,b=this.getCanvasWindow().document;this._mousedown_callback=this.processMouseDown.bind(this);this._mousewheel_callback=this.processMouseWheel.bind(this);a.addEventListener("mousedown",this._mousedown_callback,!0);a.addEventListener("mousemove",this._mousemove_callback);a.addEventListener("mousewheel",this._mousewheel_callback,!1);a.addEventListener("contextmenu",this._doNothing);a.addEventListener("DOMMouseScroll",this._mousewheel_callback,!1);a.addEventListener("touchstart", -this.touchHandler,!0);a.addEventListener("touchmove",this.touchHandler,!0);a.addEventListener("touchend",this.touchHandler,!0);a.addEventListener("touchcancel",this.touchHandler,!0);this._key_callback=this.processKey.bind(this);a.addEventListener("keydown",this._key_callback,!0);b.addEventListener("keyup",this._key_callback,!0);this._ondrop_callback=this.processDrop.bind(this);a.addEventListener("dragover",this._doNothing,!1);a.addEventListener("dragend",this._doNothing,!1);a.addEventListener("drop", -this._ondrop_callback,!1);a.addEventListener("dragenter",this._doReturnTrue,!1);this._events_binded=!0}};e.prototype.unbindEvents=function(){if(this._events_binded){var a=this.getCanvasWindow().document;this.canvas.removeEventListener("mousedown",this._mousedown_callback);this.canvas.removeEventListener("mousewheel",this._mousewheel_callback);this.canvas.removeEventListener("DOMMouseScroll",this._mousewheel_callback);this.canvas.removeEventListener("keydown",this._key_callback);a.removeEventListener("keyup", -this._key_callback);this.canvas.removeEventListener("contextmenu",this._doNothing);this.canvas.removeEventListener("drop",this._ondrop_callback);this.canvas.removeEventListener("dragenter",this._doReturnTrue);this.canvas.removeEventListener("touchstart",this.touchHandler);this.canvas.removeEventListener("touchmove",this.touchHandler);this.canvas.removeEventListener("touchend",this.touchHandler);this.canvas.removeEventListener("touchcancel",this.touchHandler);this._ondrop_callback=this._key_callback= -this._mousewheel_callback=this._mousedown_callback=null;this._events_binded=!1}else console.warn("LGraphCanvas: no events binded")};e.getFileExtension=function(a){var b=a.indexOf("?");-1!=b&&(a=a.substr(0,b));b=a.lastIndexOf(".");return-1==b?"":a.substr(b+1).toLowerCase()};e.prototype.enableWebGL=function(){if(void 0===typeof GL)throw"litegl.js must be included to use a WebGL canvas";if(void 0===typeof enableWebGLCanvas)throw"webglCanvas.js must be included to use this feature";this.gl=this.ctx=enableWebGLCanvas(this.canvas); -this.ctx.webgl=!0;this.bgcanvas=this.canvas;this.bgctx=this.gl};e.prototype.setDirty=function(a,b){a&&(this.dirty_canvas=!0);b&&(this.dirty_bgcanvas=!0)};e.prototype.getCanvasWindow=function(){if(!this.canvas)return window;var a=this.canvas.ownerDocument;return a.defaultView||a.parentWindow};e.prototype.startRendering=function(){function a(){this.pause_rendering||this.draw();var b=this.getCanvasWindow();this.is_rendering&&b.requestAnimationFrame(a.bind(this))}this.is_rendering||(this.is_rendering= -!0,a.call(this))};e.prototype.stopRendering=function(){this.is_rendering=!1};e.prototype.processMouseDown=function(a){if(this.graph){this.adjustMouseEvent(a);var b=this.getCanvasWindow();e.active_canvas=this;this.canvas.removeEventListener("mousemove",this._mousemove_callback);b.document.addEventListener("mousemove",this._mousemove_callback,!0);b.document.addEventListener("mouseup",this._mouseup_callback,!0);var c=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes),d=!1;l.closeAllContextMenus(b); -if(1==a.which){a.ctrlKey&&(this.dragging_rectangle=new Float32Array(4),this.dragging_rectangle[0]=a.canvasX,this.dragging_rectangle[1]=a.canvasY,this.dragging_rectangle[2]=1,this.dragging_rectangle[3]=1,d=!0);var k=!1;if(c&&this.allow_interaction&&!d){this.live_mode||c.flags.pinned||this.bringToFront(c);if(!this.connecting_node&&!c.flags.collapsed&&!this.live_mode){if(c.outputs)for(var f=0,h=c.outputs.length;fl.getTime()-this.last_mouseclick&&this.selected_nodes[c.id]){if(c.onDblClick)c.onDblClick(a);this.processNodeDblClicked(c);f=!0}c.onMouseDown&&c.onMouseDown(a,[a.canvasX-c.pos[0],a.canvasY-c.pos[1]])?f=!0:this.live_mode&&(f=k=!0);f||(this.allow_dragnodes&&(this.node_dragged=c),this.selected_nodes[c.id]||this.processNodeSelected(c,a));this.dirty_canvas=!0}}else k=!0;!d&&k&&this.allow_dragcanvas&& -(this.dragging_canvas=!0)}else 2!=a.which&&3==a.which&&this.processContextMenu(c,a);this.last_mouse[0]=a.localX;this.last_mouse[1]=a.localY;this.last_mouseclick=l.getTime();this.canvas_mouse=[a.canvasX,a.canvasY];this.graph.change();(!b.document.activeElement||"input"!=b.document.activeElement.nodeName.toLowerCase()&&"textarea"!=b.document.activeElement.nodeName.toLowerCase())&&a.preventDefault();a.stopPropagation();if(this.onMouseDown)this.onMouseDown(a);return!1}};e.prototype.processMouseMove=function(a){this.autoresize&& -this.resize();if(this.graph){e.active_canvas=this;this.adjustMouseEvent(a);var b=[a.localX,a.localY],c=[b[0]-this.last_mouse[0],b[1]-this.last_mouse[1]];this.last_mouse=b;this.canvas_mouse=[a.canvasX,a.canvasY];if(this.dragging_rectangle)this.dragging_rectangle[2]=a.canvasX-this.dragging_rectangle[0],this.dragging_rectangle[3]=a.canvasY-this.dragging_rectangle[1],this.dirty_canvas=!0;else if(this.dragging_canvas)this.offset[0]+=c[0]/this.scale,this.offset[1]+=c[1]/this.scale,this.dirty_bgcanvas=this.dirty_canvas= -!0;else if(this.allow_interaction){this.connecting_node&&(this.dirty_canvas=!0);for(var b=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes),d=0,k=this.graph._nodes.length;dthis.dragging_rectangle[2]&&(this.dragging_rectangle[0]+=this.dragging_rectangle[2]);0>this.dragging_rectangle[3]&&(this.dragging_rectangle[1]+=this.dragging_rectangle[3]);this.dragging_rectangle[2]=Math.abs(this.dragging_rectangle[2]* -this.scale);this.dragging_rectangle[3]=Math.abs(this.dragging_rectangle[3]*this.scale);for(var k=0;kc-this.last_mouseclick&&this.deselectAllNodes();this.dirty_canvas=!0;this.dragging_canvas=!1;if(this.node_over&& -this.node_over.onMouseUp)this.node_over.onMouseUp(a,[a.canvasX-this.node_over.pos[0],a.canvasY-this.node_over.pos[1]]);if(this.node_capturing_input&&this.node_capturing_input.onMouseUp)this.node_capturing_input.onMouseUp(a,[a.canvasX-this.node_capturing_input.pos[0],a.canvasY-this.node_capturing_input.pos[1]])}else 2==a.which?(this.dirty_canvas=!0,this.dragging_canvas=!1):3==a.which&&(this.dirty_canvas=!0,this.dragging_canvas=!1);this.graph.change();a.stopPropagation();a.preventDefault();return!1}}; -e.prototype.processMouseWheel=function(a){if(this.graph&&this.allow_dragcanvas){var b=null!=a.wheelDeltaY?a.wheelDeltaY:-60*a.detail;this.adjustMouseEvent(a);var c=this.scale;0b&&(c*=1/1.1);this.setZoom(c,[a.localX,a.localY]);this.graph.change();a.preventDefault();return!1}};e.prototype.isOverNodeBox=function(a,b,c){var d=l.NODE_TITLE_HEIGHT;return q(b,c,a.pos[0]+2,a.pos[1]+2-d,d-4,d-4)?!0:!1};e.prototype.isOverNodeInput=function(a,b,c,d){if(a.inputs)for(var k=0,e=a.inputs.length;kthis.max_zoom?this.scale=this.max_zoom:this.scalec-this.graph._last_trigger_time)&&this.drawBackCanvas();(this.dirty_canvas||a)&&this.drawFrontCanvas();this.fps=this.render_time?1/this.render_time:0;this.frame+=1}};e.prototype.drawFrontCanvas=function(){this.ctx||(this.ctx=this.bgcanvas.getContext("2d")); -var a=this.ctx;if(a){a.start2D&&a.start2D();var b=this.canvas;a.restore();a.setTransform(1,0,0,1,0,0);this.dirty_area&&(a.save(),a.beginPath(),a.rect(this.dirty_area[0],this.dirty_area[1],this.dirty_area[2],this.dirty_area[3]),a.clip());this.clear_background&&a.clearRect(0,0,b.width,b.height);this.bgcanvas==this.canvas?this.drawBackCanvas():a.drawImage(this.bgcanvas,0,0);if(this.onRender)this.onRender(b,a);this.show_info&&this.renderInfo(a);if(this.graph){a.save();a.scale(this.scale,this.scale);a.translate(this.offset[0], -this.offset[1]);for(var b=this.computeVisibleNodes(null,this.visible_nodes),c=0;cb-h._last_time&&(n=2-0.002*(b-h._last_time),g="rgba(255,255,255, "+n.toFixed(2)+")",this.renderLink(a,p,e.getConnectionPos(!0,f),h,!0,n,g))}}}}a.globalAlpha=1};e.prototype.renderLink=function(a,b,c,d,k,f,h){if(this.highquality_render){var n=p(b,c);this.render_connections_border&&0.6b[1]?0:Math.PI,a.save(),a.translate(d[0],d[1]),a.rotate(h),a.beginPath(),a.moveTo(-5,-5),a.lineTo(0,5),a.lineTo(5,-5),a.fill(),a.restore());if(f)for(f=0;5>f;++f)d=(0.001*l.getTime()+0.2*f)%1,d=this.computeConnectionPoint(b,c,d),a.beginPath(),a.arc(d[0],d[1],5,0,2*Math.PI),a.fill()}else a.beginPath(),a.moveTo(b[0],b[1]),a.lineTo(c[0], -c[1]),a.stroke()};e.prototype.computeConnectionPoint=function(a,b,c){var d=p(a,b),e=[a[0]+0.25*d,a[1]],d=[b[0]-0.25*d,b[1]],f=(1-c)*(1-c)*(1-c),h=3*(1-c)*(1-c)*c,n=3*(1-c)*c*c;c*=c*c;return[f*a[0]+h*e[0]+n*d[0]+c*b[0],f*a[1]+h*e[1]+n*d[1]+c*b[1]]};e.prototype.resize=function(a,b){if(!a&&!b){var c=this.canvas.parentNode;a=c.offsetWidth;b=c.offsetHeight}if(this.canvas.width!=a||this.canvas.height!=b)this.canvas.width=a,this.canvas.height=b,this.bgcanvas.width=this.canvas.width,this.bgcanvas.height= -this.canvas.height,this.setDirty(!0,!0)};e.prototype.switchLiveMode=function(a){if(a){var b=this,c=this.live_mode?1.1:0.9;this.live_mode&&(this.live_mode=!1,this.editor_alpha=0.1);var d=setInterval(function(){b.editor_alpha*=c;b.dirty_canvas=!0;b.dirty_bgcanvas=!0;1>c&&0.01>b.editor_alpha&&(clearInterval(d),1>c&&(b.live_mode=!0));1"+g+""+a+"",value:g});if(n.length)return new l.ContextMenu(n,{event:c,callback:f,parentMenu:d, -allow_html:!0,node:k},b),!1}};e.decodeHTML=function(a){var b=document.createElement("div");b.innerText=a;return b.innerHTML};e.onResizeNode=function(a,b,c,d,e){e&&(e.size=e.computeSize(),e.setDirtyCanvas(!0,!0))};e.onShowTitleEditor=function(a,b,c,d,k){function f(){k.title=n.value;h.parentNode.removeChild(h);k.setDirtyCanvas(!0,!0)}var h=document.createElement("div");h.className="graphdialog";h.innerHTML="Title"; -var n=h.querySelector("input");n&&(n.value=k.title,n.addEventListener("keydown",function(a){13==a.keyCode&&(f(),a.preventDefault(),a.stopPropagation())}));a=e.active_canvas.canvas;b=a.getBoundingClientRect();d=c=-20;b&&(c-=b.left,d-=b.top);event?(h.style.left=event.pageX+c+"px",h.style.top=event.pageY+d+"px"):(h.style.left=0.5*a.width+c+"px",h.style.top=0.5*a.height+d+"px");h.querySelector("button").addEventListener("click",f);a.parentNode.appendChild(h)};e.prototype.showEditPropertyValue=function(a, -b,c){function d(){e(q.value)}function e(c){"number"==typeof a.properties[b]&&(c=Number(c));a.properties[b]=c;if(a.onPropertyChanged)a.onPropertyChanged(b,c);p.close();a.setDirtyCanvas(!0,!0)}if(a&&void 0!==a.properties[b]){c=c||{};var f="string";null!==a.properties[b]&&(f=typeof a.properties[b]);var h=null;a.getPropertyInfo&&(h=a.getPropertyInfo(b));if(a.properties_info)for(var n=0;n";else if("enum"==f&&h.values){g=""}else"boolean"==f&&(g="");var p=this.createDialog(""+ -b+""+g+"",c);if("enum"==f&&h.values){var q=p.querySelector("select");q.addEventListener("change",function(a){e(a.target.value)})}else if("boolean"==f)(q=p.querySelector("input"))&&q.addEventListener("click",function(a){e(!!q.checked)});else if(q=p.querySelector("input"))q.value=void 0!==a.properties[b]?a.properties[b]:"",q.addEventListener("keydown",function(a){13==a.keyCode&&(d(),a.preventDefault(),a.stopPropagation())});p.querySelector("button").addEventListener("click", -d)}};e.prototype.createDialog=function(a,b){b=b||{};var c=document.createElement("div");c.className="graphdialog";c.innerHTML=a;var d=this.canvas.getBoundingClientRect(),e=-20,f=-20;d&&(e-=d.left,f-=d.top);b.position?(e+=b.position[0],f+=b.position[1]):b.event?(e+=b.event.pageX,f+=b.event.pageY):(e+=0.5*this.canvas.width,f+=0.5*this.canvas.height);c.style.left=e+"px";c.style.top=f+"px";this.canvas.parentNode.appendChild(c);c.close=function(){this.parentNode&&this.parentNode.removeChild(this)};return c}; -e.onMenuNodeCollapse=function(a,b,c,d,e){e.flags.collapsed=!e.flags.collapsed;e.setDirtyCanvas(!0,!0)};e.onMenuNodePin=function(a,b,c,d,e){e.pin()};e.onMenuNodeMode=function(a,b,c,d,e){new l.ContextMenu(["Always","On Event","On Trigger","Never"],{event:c,callback:function(a){if(e)switch(a){case "On Event":e.mode=l.ON_EVENT;break;case "On Trigger":e.mode=l.ON_TRIGGER;break;case "Never":e.mode=l.NEVER;break;default:e.mode=l.ALWAYS}},parentMenu:d,node:e});return!1};e.onMenuNodeColors=function(a,b,c, -d,f){if(!f)throw"no node for color";b=[];for(var n in e.node_colors)a=e.node_colors[n],a={value:n,content:""+n+""},b.push(a);new l.ContextMenu(b,{event:c,callback:function(a){f&&(a=e.node_colors[a.value])&&(f.color=a.color,f.bgcolor=a.bgcolor,f.setDirtyCanvas(!0))},parentMenu:d,node:f});return!1};e.onMenuNodeShapes=function(a,b,c,d,e){if(!e)throw"no node passed";new l.ContextMenu(l.VALID_SHAPES,{event:c,callback:function(a){e&& -(e.shape=a,e.setDirtyCanvas(!0))},parentMenu:d,node:e});return!1};e.onMenuNodeRemove=function(a,b,c,d,e){if(!e)throw"no node passed";!1!=e.removable&&(e.graph.remove(e),e.setDirtyCanvas(!0,!0))};e.onMenuNodeClone=function(a,b,c,d,e){!1!=e.clonable&&(a=e.clone())&&(a.pos=[e.pos[0]+5,e.pos[1]+5],e.graph.add(a),e.setDirtyCanvas(!0,!0))};e.node_colors={red:{color:"#FAA",bgcolor:"#944"},green:{color:"#AFA",bgcolor:"#494"},blue:{color:"#AAF",bgcolor:"#449"},cyan:{color:"#AFF",bgcolor:"#499"},purple:{color:"#FAF", -bgcolor:"#949"},yellow:{color:"#FFA",bgcolor:"#994"},black:{color:"#777",bgcolor:"#000"},white:{color:"#FFF",bgcolor:"#AAA"}};e.prototype.getCanvasMenuOptions=function(){var a=null;this.getMenuOptions?a=this.getMenuOptions():(a=[{content:"Add Node",has_submenu:!0,callback:e.onMenuAdd}],this._graph_stack&&0Name", -d),n=f.querySelector("input");f.querySelector("button").addEventListener("click",function(b){if(n.value){if(b=h.input?a.getInputInfo(h.slot):a.getOutputInfo(h.slot))b.label=n.value;c.setDirty(!0)}f.close()})}},node:a},h=null;a&&(h=a.getSlotInPosition(b.canvasX,b.canvasY),e.active_node=a);h?(f=[],f.push(h.locked?"Cannot remove":{content:"Remove Slot",slot:h}),f.push({content:"Rename Slot",slot:h}),n.title=(h.input?h.input.type:h.output.type)||"*",h.input&&h.input.type==l.ACTION&&(n.title="Action"), -h.output&&h.output.type==l.EVENT&&(n.title="Event")):f=a?this.getNodeMenuOptions(a):this.getCanvasMenuOptions();f&&new l.ContextMenu(f,n,d)};this.CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.roundRect=function(a,b,c,d,e,f){void 0===e&&(e=5);void 0===f&&(f=e);this.beginPath();this.moveTo(a+e,b);this.lineTo(a+c-e,b);this.quadraticCurveTo(a+c,b,a+c,b+e);this.lineTo(a+c,b+d-f);this.quadraticCurveTo(a+c,b+d,a+c-f,b+d);this.lineTo(a+f,b+d);this.quadraticCurveTo(a,b+d,a,b+d-f);this.lineTo(a, -b+e);this.quadraticCurveTo(a,b,a+e,b)});l.compareObjects=function(a,b){for(var c in a)if(a[c]!=b[c])return!1;return!0};l.distance=p;l.colorToString=function(a){return"rgba("+Math.round(255*a[0]).toFixed()+","+Math.round(255*a[1]).toFixed()+","+Math.round(255*a[2]).toFixed()+","+(4==a.length?a[3].toFixed(2):"1.0")+")"};l.isInsideRectangle=q;l.growBounding=function(a,b,c){ba[2]&&(a[2]=b);ca[3]&&(a[3]=c)};l.isInsideBounding=function(a,b){return a[0]b[1][0]||a[1]>b[1][1]?!1:!0};l.overlapBounding=s;l.hex2num=function(a){"#"==a.charAt(0)&&(a=a.slice(1));a=a.toUpperCase();for(var b=Array(3),c=0,d,e,f=0;6>f;f+=2)d="0123456789ABCDEF".indexOf(a.charAt(f)),e="0123456789ABCDEF".indexOf(a.charAt(f+1)),b[c]=16*d+e,c++;return b};l.num2hex=function(a){for(var b="#",c,d,e=0;3>e;e++)c=a[e]/16,d=a[e]%16,b+="0123456789ABCDEF".charAt(c)+"0123456789ABCDEF".charAt(d);return b};u.prototype.addItem=function(a,b,c){function d(a){var b=this.value;b&&b.has_submenu&& -e.call(this,a)}function e(a){var b=this.value,d=!0;f.current_submenu&&f.current_submenu.close(a);if(c.callback){var h=c.callback.call(this,b,c,a,f,c.node);!0===h&&(d=!1)}if(b&&(b.callback&&!c.ignore_item_callbacks&&!0!==b.disabled&&(h=b.callback.call(this,b,c,a,f,c.node),!0===h&&(d=!1)),b.submenu)){if(!b.submenu.options)throw"ContextMenu submenu needs options";new f.constructor(b.submenu.options,{callback:b.submenu.callback,event:a,parentMenu:f,ignore_item_callbacks:b.submenu.ignore_item_callbacks, -title:b.submenu.title,autoopen:c.autoopen});d=!1}d&&!f.lock&&f.close()}var f=this;c=c||{};var h=document.createElement("div");h.className="litemenu-entry submenu";var n=!1;if(null===b)h.classList.add("separator");else{h.innerHTML=b&&b.title?b.title:a;if(h.value=b)b.disabled&&(n=!0,h.classList.add("disabled")),(b.submenu||b.has_submenu)&&h.classList.add("has_submenu");"function"==typeof b?(h.dataset.value=a,h.onclick_callback=b):h.dataset.value=b;b.className&&(h.className+=" "+b.className)}this.root.appendChild(h); -n||h.addEventListener("click",e);c.autoopen&&h.addEventListener("mouseenter",d);return h};u.prototype.close=function(a,b){this.root.parentNode&&this.root.parentNode.removeChild(this.root);this.parentMenu&&!b&&(this.parentMenu.lock=!1,this.parentMenu.current_submenu=null,void 0===a?this.parentMenu.close():a&&!u.isCursorOverElement(a,this.parentMenu.root)&&u.trigger(this.parentMenu.root,"mouseleave",a));this.current_submenu&&this.current_submenu.close(a,!0)};u.trigger=function(a,b,c,d){var e=document.createEvent("CustomEvent"); -e.initCustomEvent(b,!0,!0,c);e.srcElement=d;a.dispatchEvent?a.dispatchEvent(e):a.__events&&a.__events.dispatchEvent(e);return e};u.prototype.getTopMenu=function(){return this.options.parentMenu?this.options.parentMenu.getTopMenu():this};u.prototype.getFirstEvent=function(){return this.options.parentMenu?this.options.parentMenu.getFirstEvent():this.options.event};u.isCursorOverElement=function(a,b){var c=a.pageX,d=a.pageY,e=b.getBoundingClientRect();return e?d>e.top&&de.left&&c< -e.left+e.width?!0:!1:!1};l.ContextMenu=u;l.closeAllContextMenus=function(a){a=a||window;a=a.document.querySelectorAll(".litecontextmenu");if(a.length){for(var b=[],c=0;ca?b:ce.canvasY-this.pos[1]||l.distance([e.canvasX,e.canvasY],[this.pos[0]+this.center[0],this.pos[1]+this.center[1]])>this.radius)return!1;this.oldmouse=[e.canvasX-this.pos[0],e.canvasY-this.pos[1]];this.captureInput(!0);return!0}};e.prototype.onMouseMove=function(e){if(this.oldmouse){e=[e.canvasX-this.pos[0],e.canvasY-this.pos[1]];var d=this.value,d=d-0.01*(e[1]-this.oldmouse[1]);1d&&(d=0);this.value=d;this.properties.value=this.properties.min+(this.properties.max- -this.properties.min)*this.value;this.oldmouse=e;this.setDirtyCanvas(!0)}};e.prototype.onMouseUp=function(e){this.oldmouse&&(this.oldmouse=null,this.captureInput(!1))};e.prototype.onMouseLeave=function(e){};e.prototype.onWidget=function(e,d){if("increase"==d.name)this.onPropertyChanged("size",this.properties.size+10);else if("decrease"==d.name)this.onPropertyChanged("size",this.properties.size-10)};e.prototype.onPropertyChanged=function(e,d){if("wcolor"==e)this.properties[e]=d;else if("size"==e)d= -parseInt(d),this.properties[e]=d,this.size=[d+4,d+24],this.setDirtyCanvas(!0,!0);else if("min"==e||"max"==e||"value"==e)this.properties[e]=parseFloat(d);else return!1;return!0};l.registerNodeType("widget/knob",e);p.title="H.Slider";p.desc="Linear slider controller";p.prototype.onAdded=function(){this.value=0.5;this.imgfg=this.loadImage("imgs/slider_fg.png")};p.prototype.onDrawVectorial=function(e){this.imgfg&&this.imgfg.width&&(e.lineWidth=1,e.strokeStyle=this.mouseOver?"#FFF":"#AAA",e.fillStyle= -"#000",e.beginPath(),e.rect(2,0,this.size[0]-4,20),e.stroke(),e.fillStyle=this.properties.wcolor,e.beginPath(),e.rect(2+(this.size[0]-4-20)*this.value,0,20,20),e.fill())};p.prototype.onDrawImage=function(e){this.imgfg&&this.imgfg.width&&(e.lineWidth=1,e.fillStyle="#000",e.fillRect(2,9,this.size[0]-4,2),e.strokeStyle="#333",e.beginPath(),e.moveTo(2,9),e.lineTo(this.size[0]-4,9),e.stroke(),e.strokeStyle="#AAA",e.beginPath(),e.moveTo(2,11),e.lineTo(this.size[0]-4,11),e.stroke(),e.drawImage(this.imgfg, -2+(this.size[0]-4)*this.value-0.5*this.imgfg.width,0.5*-this.imgfg.height+10))};p.prototype.onDrawForeground=function(e){this.onDrawImage(e)};p.prototype.onExecute=function(){this.properties.value=this.properties.min+(this.properties.max-this.properties.min)*this.value;this.setOutputData(0,this.properties.value);this.boxcolor=l.colorToString([this.value,this.value,this.value])};p.prototype.onMouseDown=function(e){if(0>e.canvasY-this.pos[1])return!1;this.oldmouse=[e.canvasX-this.pos[0],e.canvasY-this.pos[1]]; -this.captureInput(!0);return!0};p.prototype.onMouseMove=function(e){if(this.oldmouse){e=[e.canvasX-this.pos[0],e.canvasY-this.pos[1]];var d=this.value,d=d+(e[0]-this.oldmouse[0])/this.size[0];1d&&(d=0);this.value=d;this.oldmouse=e;this.setDirtyCanvas(!0)}};p.prototype.onMouseUp=function(e){this.oldmouse=null;this.captureInput(!1)};p.prototype.onMouseLeave=function(e){};p.prototype.onPropertyChanged=function(e,d){if("wcolor"==e)this.properties[e]=d;else return!1;return!0};l.registerNodeType("widget/hslider", -p);q.title="Progress";q.desc="Shows data in linear progress";q.prototype.onExecute=function(){var e=this.getInputData(0);void 0!=e&&(this.properties.value=e)};q.prototype.onDrawForeground=function(e){e.lineWidth=1;e.fillStyle=this.properties.wcolor;var d=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min),d=Math.min(1,d),d=Math.max(0,d);e.fillRect(2,2,(this.size[0]-4)*d,this.size[1]-4)};l.registerNodeType("widget/progress",q);s.title="Text";s.desc="Shows the input value"; -s.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}];s.prototype.onDrawForeground=function(e){e.fillStyle=this.properties.color;var d=this.properties.value;this.properties.glowSize?(e.shadowColor=this.properties.color,e.shadowOffsetX=0,e.shadowOffsetY=0,e.shadowBlur=this.properties.glowSize):e.shadowColor="transparent";var a=this.properties.fontsize;e.textAlign=this.properties.align;e.font=a.toString()+ -"px "+this.properties.font;this.str="number"==typeof d?d.toFixed(this.properties.decimals):d;if("string"==typeof this.str){var d=this.str.split("\\n"),b;for(b in d)e.fillText(d[b],"left"==this.properties.align?15:this.size[0]-15,-0.15*a+a*(parseInt(b)+1))}e.shadowColor="transparent";this.last_ctx=e;e.textAlign="left"};s.prototype.onExecute=function(){var e=this.getInputData(0);null!=e&&(this.properties.value=e)};s.prototype.resize=function(){if(this.last_ctx){var e=this.str.split("\\n");this.last_ctx.font= -this.properties.fontsize+"px "+this.properties.font;var d=0,a;for(a in e){var b=this.last_ctx.measureText(e[a]).width;df?e.xbox.axes.lx:0,this._left_axis[1]=Math.abs(e.xbox.axes.ly)>f?e.xbox.axes.ly:0,this._right_axis[0]=Math.abs(e.xbox.axes.rx)>f?e.xbox.axes.rx:0,this._right_axis[1]=Math.abs(e.xbox.axes.ry)>f?e.xbox.axes.ry:0,this._triggers[0]=Math.abs(e.xbox.axes.ltrigger)>f?e.xbox.axes.ltrigger:0,this._triggers[1]=Math.abs(e.xbox.axes.rtrigger)>f?e.xbox.axes.rtrigger:0);if(this.outputs)for(f= -0;fe;e++)if(f[e]){e=f[e];f=this.xbox_mapping;f||(f=this.xbox_mapping= -{axes:[],buttons:{},hat:""});f.axes.lx=e.axes[0];f.axes.ly=e.axes[1];f.axes.rx=e.axes[2];f.axes.ry=e.axes[3];f.axes.ltrigger=e.buttons[6].value;f.axes.rtrigger=e.buttons[7].value;for(var g=0;g","string",{values:t.values});this.size=[60,40]}function h(){this.addInput("inc","number");this.addOutput("total","number");this.addProperty("increment",1);this.addProperty("value",0)}function x(){this.addInput("v","number");this.addOutput("sin","number");this.addProperty("amplitude",1);this.addProperty("offset",0);this.bgImageUrl="nodes/imgs/icon-sin.png"}function w(){this.addInput("vec2", -"vec2");this.addOutput("x","number");this.addOutput("y","number")}function y(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2","vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function A(){this.addInput("vec3","vec3");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number")}function B(){this.addInputs([["x","number"],["y","number"],["z","number"]]);this.addOutput("vec3","vec3");this.properties={x:0,y:0,z:0};this._data=new Float32Array(3)} -function z(){this.addInput("vec4","vec4");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number");this.addOutput("w","number")}function C(){this.addInputs([["x","number"],["y","number"],["z","number"],["w","number"]]);this.addOutput("vec4","vec4");this.properties={x:0,y:0,z:0,w:0};this._data=new Float32Array(4)}var v=r.LiteGraph;g.title="Converter";g.desc="type A to type B";g.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a&&this.outputs)for(var b= -0;bb&&(this._current=0);for(var c=a=0;cb&&(b=1);this.properties.samples=Math.round(b);var c=this._values;this._values=new Float32Array(this.properties.samples);c.length<=this._values.length?this._values.set(c):this._values.set(c.subarray(0,this._values.length))};v.registerNodeType("math/average",b);c.title="TendTo";c.desc="moves the output value always closer to the input";c.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var b=this.properties.factor;this._value=null==this._value?a:this._value* -(1-b)+a*b;this.setOutputData(0,this._value)};v.registerNodeType("math/tendTo",c);m.values="+-*/%^".split("");m.title="Operation";m.desc="Easy math operators";m["@OP"]={type:"enum",title:"operation",values:m.values};m.prototype.setValue=function(a){"string"==typeof a&&(a=parseFloat(a));this.properties.value=a};m.prototype.onExecute=function(){var a=this.getInputData(0),b=this.getInputData(1);null!=a?this.properties.A=a:a=this.properties.A;null!=b?this.properties.B=b:b=this.properties.B;var c=0;switch(this.properties.OP){case "+":c= -a+b;break;case "-":c=a-b;break;case "x":case "X":case "*":c=a*b;break;case "/":c=a/b;break;case "%":c=a%b;break;case "^":c=Math.pow(a,b);break;default:console.warn("Unknown operation: "+this.properties.OP)}this.setOutputData(0,c)};m.prototype.onDrawBackground=function(a){this.flags.collapsed||(a.font="40px Arial",a.fillStyle="black",a.textAlign="center",a.fillText(this.properties.OP,0.5*this.size[0],0.5*this.size[1]+v.NODE_TITLE_HEIGHT),a.textAlign="left")};v.registerNodeType("math/operation",m); -k.title="Compare";k.desc="compares between two values";k.prototype.onExecute=function(){var a=this.getInputData(0),b=this.getInputData(1);void 0!==a?this.properties.A=a:a=this.properties.A;void 0!==b?this.properties.B=b:b=this.properties.B;for(var c=0,d=this.outputs.length;cB":value=a>b;break;case "A=B":value= -a>=b}this.setOutputData(c,value)}}};k.prototype.onGetOutputs=function(){return[["A==B","boolean"],["A!=B","boolean"],["A>B","boolean"],["A=B","boolean"],["A<=B","boolean"]]};v.registerNodeType("math/compare",k);t.values="> < == != <= >=".split(" ");t["@OP"]={type:"enum",title:"operation",values:t.values};t.title="Condition";t.desc="evaluates condition between A and B";t.prototype.onExecute=function(){var a=this.getInputData(0);void 0===a?a=this.properties.A:this.properties.A=a; -var b=this.getInputData(1);void 0===b?b=this.properties.B:this.properties.B=b;var c=!0;switch(this.properties.OP){case ">":c=a>b;break;case "<":c=a=":c=a>=b}this.setOutputData(0,c)};v.registerNodeType("math/condition",t);h.title="Accumulate";h.desc="Increments a value every time";h.prototype.onExecute=function(){null===this.properties.value&&(this.properties.value=0);var a=this.getInputData(0);this.properties.value= -null!==a?this.properties.value+a:this.properties.value+this.properties.increment;this.setOutputData(0,this.properties.value)};v.registerNodeType("math/accumulate",h);x.title="Trigonometry";x.desc="Sin Cos Tan";x.filter="shader";x.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var b=this.properties.amplitude,c=this.findInputSlot("amplitude");-1!=c&&(b=this.getInputData(c));var d=this.properties.offset,c=this.findInputSlot("offset");-1!=c&&(d=this.getInputData(c));for(var c= -0,e=this.outputs.length;cXY";w.desc="vector 2 to components";w.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0,a[0]),this.setOutputData(1,a[1]))};v.registerNodeType("math3d/vec2-to-xyz",w);y.title= -"XY->Vec2";y.desc="components to vector2";y.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this._data;c[0]=a;c[1]=b;this.setOutputData(0,c)};v.registerNodeType("math3d/xy-to-vec2",y);A.title="Vec3->XYZ";A.desc="vector 3 to components";A.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0,a[0]),this.setOutputData(1,a[1]),this.setOutputData(2,a[2]))};v.registerNodeType("math3d/vec3-to-xyz", -A);B.title="XYZ->Vec3";B.desc="components to vector3";B.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this.getInputData(2);null==c&&(c=this.properties.z);var d=this._data;d[0]=a;d[1]=b;d[2]=c;this.setOutputData(0,d)};v.registerNodeType("math3d/xyz-to-vec3",B);z.title="Vec4->XYZW";z.desc="vector 4 to components";z.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0, -a[0]),this.setOutputData(1,a[1]),this.setOutputData(2,a[2]),this.setOutputData(3,a[3]))};v.registerNodeType("math3d/vec4-to-xyzw",z);C.title="XYZW->Vec4";C.desc="components to vector4";C.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var b=this.getInputData(1);null==b&&(b=this.properties.y);var c=this.getInputData(2);null==c&&(c=this.properties.z);var d=this.getInputData(3);null==d&&(d=this.properties.w);var e=this._data;e[0]=a;e[1]=b;e[2]=c;e[3]=d;this.setOutputData(0, -e)};v.registerNodeType("math3d/xyzw-to-vec4",C);r.glMatrix&&(r=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1};this._value=quat.create()},r.title="Quaternion",r.desc="quaternion",r.prototype.onExecute=function(){this._value[0]=this.properties.x;this._value[1]=this.properties.y;this._value[2]=this.properties.z;this._value[3]=this.properties.w;this.setOutputData(0,this._value)},v.registerNodeType("math3d/quaternion",r),r=function(){this.addInputs([["degrees","number"],["axis", -"vec3"]]);this.addOutput("quat","quat");this.properties={angle:90,axis:vec3.fromValues(0,1,0)};this._value=quat.create()},r.title="Rotation",r.desc="quaternion rotation",r.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.angle);var b=this.getInputData(1);null==b&&(b=this.properties.axis);a=quat.setAxisAngle(this._value,b,0.0174532925*a);this.setOutputData(0,a)},v.registerNodeType("math3d/rotation",r),r=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]); -this.addOutput("result","vec3");this.properties={vec:[0,0,1]}},r.title="Rot. Vec3",r.desc="rotate a point",r.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.vec);var b=this.getInputData(1);null==b?this.setOutputData(a):this.setOutputData(0,vec3.transformQuat(vec3.create(),a,b))},v.registerNodeType("math3d/rotate_vec3",r),r=function(){this.addInputs([["A","quat"],["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},r.title="Mult. Quat",r.desc= -"rotate quaternion",r.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a){var b=this.getInputData(1);null!=b&&(a=quat.multiply(this._value,a,b),this.setOutputData(0,a))}},v.registerNodeType("math3d/mult-quat",r),r=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor",0.5);this._value=quat.create()},r.title="Quat Slerp",r.desc="quaternion spherical interpolation",r.prototype.onExecute=function(){var a=this.getInputData(0); -if(null!=a){var b=this.getInputData(1);if(null!=b){var c=this.properties.factor;null!=this.getInputData(2)&&(c=this.getInputData(2));a=quat.slerp(this._value,a,b,c);this.setOutputData(0,a)}}},v.registerNodeType("math3d/quat-slerp",r))})(this); -(function(r){function g(){this.addInput("sel","boolean");this.addOutput("value","number");this.properties={A:0,B:1};this.size=[60,20]}r=r.LiteGraph;g.title="Selector";g.desc="outputs A if selector is true, B if selector is false";g.prototype.onExecute=function(){var f=this.getInputData(0);if(void 0!==f){for(var e=1;ea;++a){var b=this.getInputData(a);if(null!=b){var c=this.values[a];c.push(b);c.length>d[0]&&c.shift()}}}};g.prototype.onDrawBackground=function(d){if(!this.flags.collapsed){var a=this.size,b=0.5*a[1]/this.properties.scale,c=g.colors,e=0.5*a[1];d.fillStyle="#000";d.fillRect(0,0,a[0],a[1]);d.strokeStyle="#555";d.beginPath();d.moveTo(0,e);d.lineTo(a[0],e);d.stroke();for(var f= -0;4>f;++f){var l=this.values[f];d.strokeStyle=c[f];d.beginPath();var h=l[0]*b*-1+e;d.moveTo(0,Math.clamp(h,0,a[1]));for(var n=1;na&&(a=0);if(0!=d.length){var b=[0,0,0];if(0==a)b=d[0];else if(1==a)b=d[d.length-1];else{var c=(d.length-1)*a,a=d[Math.floor(c)],d=d[Math.floor(c)+1],c=c-Math.floor(c);b[0]=a[0]*(1-c)+d[0]*c;b[1]=a[1]*(1-c)+d[1]*c;b[2]=a[2]*(1-c)+d[2]*c}for(var e in b)b[e]/=255;this.boxcolor=colorToString(b);this.setOutputData(0,b)}};n.registerNodeType("color/palette",e);p.title="Frame";p.desc="Frame viewerew";p.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}]; -p.prototype.onDrawBackground=function(d){this.frame&&d.drawImage(this.frame,0,0,this.size[0],this.size[1])};p.prototype.onExecute=function(){this.frame=this.getInputData(0);this.setDirtyCanvas(!0)};p.prototype.onWidget=function(d,a){if("resize"==a.name&&this.frame){var b=this.frame.width,c=this.frame.height;b||null==this.frame.videoWidth||(b=this.frame.videoWidth,c=this.frame.videoHeight);b&&c&&(this.size=[b,c]);this.setDirtyCanvas(!0,!0)}else"view"==a.name&&this.show()};p.prototype.show=function(){showElement&& -this.frame&&showElement(this.frame)};n.registerNodeType("graphics/frame",p);q.title="Image fade";q.desc="Fades between images";q.widgets=[{name:"resizeA",text:"Resize to A",type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}];q.prototype.onAdded=function(){this.createCanvas();var d=this.canvas.getContext("2d");d.fillStyle="#000";d.fillRect(0,0,this.properties.width,this.properties.height)};q.prototype.createCanvas=function(){this.canvas=document.createElement("canvas");this.canvas.width= -this.properties.width;this.canvas.height=this.properties.height};q.prototype.onExecute=function(){var d=this.canvas.getContext("2d");this.canvas.width=this.canvas.width;var a=this.getInputData(0);null!=a&&d.drawImage(a,0,0,this.canvas.width,this.canvas.height);a=this.getInputData(2);null==a?a=this.properties.fade:this.properties.fade=a;d.globalAlpha=a;a=this.getInputData(1);null!=a&&d.drawImage(a,0,0,this.canvas.width,this.canvas.height);d.globalAlpha=1;this.setOutputData(0,this.canvas);this.setDirtyCanvas(!0)}; -n.registerNodeType("graphics/imagefade",q);s.title="Crop";s.desc="Crop Image";s.prototype.onAdded=function(){this.createCanvas()};s.prototype.createCanvas=function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};s.prototype.onExecute=function(){var d=this.getInputData(0);d&&(d.width?(this.canvas.getContext("2d").drawImage(d,-this.properties.x,-this.properties.y,d.width*this.properties.scale,d.height*this.properties.scale), -this.setOutputData(0,this.canvas)):this.setOutputData(0,null))};s.prototype.onDrawBackground=function(d){this.flags.collapsed||this.canvas&&d.drawImage(this.canvas,0,0,this.canvas.width,this.canvas.height,0,0,this.size[0],this.size[1])};s.prototype.onPropertyChanged=function(d,a){this.properties[d]=a;"scale"==d?(this.properties[d]=parseFloat(a),0==this.properties[d]&&(this.trace("Error in scale"),this.properties[d]=1)):this.properties[d]=parseInt(a);this.createCanvas();return!0};n.registerNodeType("graphics/cropImage", -s);u.title="Video";u.desc="Video playback";u.widgets=[{name:"play",text:"PLAY",type:"minibutton"},{name:"stop",text:"STOP",type:"minibutton"},{name:"demo",text:"Demo video",type:"button"},{name:"mute",text:"Mute video",type:"button"}];u.prototype.onExecute=function(){if(this.properties.url&&(this.properties.url!=this._video_url&&this.loadVideo(this.properties.url),this._video&&0!=this._video.width)){var d=this.getInputData(0);d&&0<=d&&1>=d&&(this._video.currentTime=d*this._video.duration,this._video.pause()); -this._video.dirty=!0;this.setOutputData(0,this._video);this.setOutputData(1,this._video.currentTime);this.setOutputData(2,this._video.duration);this.setDirtyCanvas(!0)}};u.prototype.onStart=function(){this.play()};u.prototype.onStop=function(){this.stop()};u.prototype.loadVideo=function(d){this._video_url=d;this._video=document.createElement("video");this._video.src=d;this._video.type="type=video/mp4";this._video.muted=!0;this._video.autoplay=!0;var a=this;this._video.addEventListener("loadedmetadata", -function(b){a.trace("Duration: "+this.duration+" seconds");a.trace("Size: "+this.videoWidth+","+this.videoHeight);a.setDirtyCanvas(!0);this.width=this.videoWidth;this.height=this.videoHeight});this._video.addEventListener("progress",function(a){});this._video.addEventListener("error",function(b){console.log("Error loading video: "+this.src);a.trace("Error loading video: "+this.src);if(this.error)switch(this.error.code){case this.error.MEDIA_ERR_ABORTED:a.trace("You stopped the video.");break;case this.error.MEDIA_ERR_NETWORK:a.trace("Network error - please try again later."); -break;case this.error.MEDIA_ERR_DECODE:a.trace("Video is broken..");break;case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED:a.trace("Sorry, your browser can't play this video.")}});this._video.addEventListener("ended",function(b){a.trace("Ended.");this.play()})};u.prototype.onPropertyChanged=function(d,a){this.properties[d]=a;"url"==d&&""!=a&&this.loadVideo(a);return!0};u.prototype.play=function(){this._video&&this._video.play()};u.prototype.playPause=function(){this._video&&(this._video.paused?this.play(): -this.pause())};u.prototype.stop=function(){this._video&&(this._video.pause(),this._video.currentTime=0)};u.prototype.pause=function(){this._video&&(this.trace("Video paused"),this._video.pause())};u.prototype.onWidget=function(d,a){};n.registerNodeType("graphics/video",u);l.title="Webcam";l.desc="Webcam image";l.prototype.openStream=function(){function d(b){console.log("Webcam rejected",b);a._webcam_stream=!1;a.box_color="red"}navigator.getUserMedia=navigator.getUserMedia||navigator.webkitGetUserMedia|| -navigator.mozGetUserMedia||navigator.msGetUserMedia;window.URL=window.URL||window.webkitURL;if(navigator.getUserMedia){this._waiting_confirmation=!0;navigator.getUserMedia({video:!0},this.streamReady.bind(this),d);var a=this}};l.prototype.onRemoved=function(){this._webcam_stream&&(this._webcam_stream.stop(),this._video=this._webcam_stream=null)};l.prototype.streamReady=function(d){this._webcam_stream=d;var a=this._video;a||(a=document.createElement("video"),a.autoplay=!0,a.src=window.URL.createObjectURL(d), -this._video=a,a.onloadedmetadata=function(a){console.log(a)})};l.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();this._video&&this._video.videoWidth&&(this._video.width=this._video.videoWidth,this._video.height=this._video.videoHeight,this.setOutputData(0,this._video))};l.prototype.getExtraMenuOptions=function(d){var a=this;return[{content:a.properties.show?"Hide Frame":"Show Frame",callback:function(){a.properties.show=!a.properties.show}}]}; -l.prototype.onDrawBackground=function(d){this.flags.collapsed||20>=this.size[1]||!this.properties.show||!this._video||(d.save(),d.drawImage(this._video,0,0,this.size[0],this.size[1]),d.restore())};n.registerNodeType("graphics/webcam",l)})(this); -(function(r){var g=r.LiteGraph;r.LGraphTexture=null;if("undefined"!=typeof GL){var f=function(){this.addOutput("Texture","Texture");this.properties={name:"",filter:!0};this.size=[f.image_preview_size,f.image_preview_size]};r.LGraphTexture=f;f.title="Texture";f.desc="Texture";f.widgets_info={name:{widget:"texture"},filter:{widget:"checkbox"}};f.loadTextureCallback=null;f.image_preview_size=256;f.PASS_THROUGH=1;f.COPY=2;f.LOW=3;f.HIGH=4;f.REUSE=5;f.DEFAULT=2;f.MODE_VALUES={"pass through":f.PASS_THROUGH, -copy:f.COPY,low:f.LOW,high:f.HIGH,reuse:f.REUSE,"default":f.DEFAULT};f.getTexturesContainer=function(){return gl.textures};f.loadTexture=function(a,b){b=b||{};var c=a;"http://"==c.substr(0,7)&&g.proxy&&(c=g.proxy+c.substr(7));return f.getTexturesContainer()[a]=GL.Texture.fromURL(c,b)};f.getTexture=function(a){var b=this.getTexturesContainer();if(!b)throw"Cannot load texture, container of textures not found";b=b[a];return!b&&a&&":"!=a[0]?this.loadTexture(a):b};f.getTargetTexture=function(a,b,c){if(!a)throw"LGraphTexture.getTargetTexture expects a reference texture"; -var d=null;switch(c){case f.LOW:d=gl.UNSIGNED_BYTE;break;case f.HIGH:d=gl.HIGH_PRECISION_FORMAT;break;case f.REUSE:return a;default:d=a?a.type:gl.UNSIGNED_BYTE}b&&b.width==a.width&&b.height==a.height&&b.type==d||(b=new GL.Texture(a.width,a.height,{type:d,format:gl.RGBA,filter:gl.LINEAR}));return b};f.getTextureType=function(a,b){var c=b?b.type:gl.UNSIGNED_BYTE;switch(a){case f.LOW:c=gl.UNSIGNED_BYTE;break;case f.HIGH:c=gl.HIGH_PRECISION_FORMAT}return c};f.getNoiseTexture=function(){if(this._noise_texture)return this._noise_texture; -for(var a=new Uint8Array(1048576),b=0;1048576>b;++b)a[b]=255*Math.random();return this._noise_texture=a=GL.Texture.fromMemory(512,512,a,{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})};f.prototype.onDropFile=function(a,b,c){if(a){var d=null;"string"==typeof a?d=GL.Texture.fromURL(a):-1!=b.toLowerCase().indexOf(".dds")?d=GL.Texture.fromDDSInMemory(a):(a=new Blob([c]),a=URL.createObjectURL(a),d=GL.Texture.fromURL(a));this._drop_texture=d;this.properties.name=b}else this._drop_texture=null,this.properties.name= -""};f.prototype.getExtraMenuOptions=function(a){var b=this;if(this._drop_texture)return[{content:"Clear",callback:function(){b._drop_texture=null;b.properties.name=""}}]};f.prototype.onExecute=function(){var a=null;this.isOutputConnected(1)&&(a=this.getInputData(0));!a&&this._drop_texture&&(a=this._drop_texture);!a&&this.properties.name&&(a=f.getTexture(this.properties.name));if(a){this._last_tex=a;!1===this.properties.filter?a.setParameter(gl.TEXTURE_MAG_FILTER,gl.NEAREST):a.setParameter(gl.TEXTURE_MAG_FILTER, -gl.LINEAR);this.setOutputData(0,a);for(var b=1;b=this.size[1]))if(this._drop_texture&&a.webgl)a.drawImage(this._drop_texture,0,0,this.size[0],this.size[1]); -else{if(this._last_preview_tex!=this._last_tex)if(a.webgl)this._canvas=this._last_tex;else{var b=f.generateLowResTexturePreview(this._last_tex);if(!b)return;this._last_preview_tex=this._last_tex;this._canvas=cloneCanvas(b)}this._canvas&&(a.save(),a.webgl||(a.translate(0,this.size[1]),a.scale(1,-1)),a.drawImage(this._canvas,0,0,this.size[0],this.size[1]),a.restore())}};f.generateLowResTexturePreview=function(a){if(!a)return null;var b=f.image_preview_size,c=a;if(a.format==gl.DEPTH_COMPONENT)return null; -if(a.width>b||a.height>b)c=this._preview_temp_tex,this._preview_temp_tex||(this._preview_temp_tex=c=new GL.Texture(b,b,{minFilter:gl.NEAREST})),a.copyTo(c);a=this._preview_canvas;a||(this._preview_canvas=a=createCanvas(b,b));c&&c.toCanvas(a);return a};f.prototype.getResources=function(a){a[this.properties.name]=GL.Texture;return a};f.prototype.onGetInputs=function(){return[["in","Texture"]]};f.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["aspect","number"]]};g.registerNodeType("texture/texture", -f);var e=function(){this.addInput("Texture","Texture");this.properties={flipY:!1};this.size=[f.image_preview_size,f.image_preview_size]};e.title="Preview";e.desc="Show a texture in the graph canvas";e.allow_preview=!1;e.prototype.onDrawBackground=function(a){if(!this.flags.collapsed&&(a.webgl||e.allow_preview)){var b=this.getInputData(0);if(b){var c=null,c=!b.handle&&a.webgl?b:f.generateLowResTexturePreview(b);a.save();this.properties.flipY&&(a.translate(0,this.size[1]),a.scale(1,-1));a.drawImage(c, -0,0,this.size[0],this.size[1]);a.restore()}}};g.registerNodeType("texture/preview",e);r=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={name:""}};r.title="Save";r.desc="Save a texture in the repository";r.prototype.onExecute=function(){var a=this.getInputData(0);a&&(this.properties.name&&(f.storeTexture?f.storeTexture(this.properties.name,a):f.getTexturesContainer()[this.properties.name]=a),this.setOutputData(0,a))};g.registerNodeType("texture/save",r); -var p=function(){this.addInput("Texture","Texture");this.addInput("TextureB","Texture");this.addInput("value","number");this.addOutput("Texture","Texture");this.help="

pixelcode must be vec3

\t\t\t

uvcode must be vec2, is optional

\t\t\t

uv: tex. coords

color: texture

colorB: textureB

time: scene time

value: input value

";this.properties={value:1,uvcode:"",pixelcode:"color + colorB * value", -precision:f.DEFAULT}};p.widgets_info={uvcode:{widget:"textarea",height:100},pixelcode:{widget:"textarea",height:100},precision:{widget:"combo",values:f.MODE_VALUES}};p.title="Operation";p.desc="Texture shader operation";p.prototype.getExtraMenuOptions=function(a){var b=this;return[{content:b.properties.show?"Hide Texture":"Show Texture",callback:function(){b.properties.show=!b.properties.show}}]};p.prototype.onDrawBackground=function(a){this.flags.collapsed||20>=this.size[1]||!this.properties.show|| -!this._tex||this._tex.gl!=a||(a.save(),a.drawImage(this._tex,0,0,this.size[0],this.size[1]),a.restore())};p.prototype.onExecute=function(){var a=this.getInputData(0);if(this.isOutputConnected(0))if(this.properties.precision===f.PASS_THROUGH)this.setOutputData(0,a);else{var b=this.getInputData(1);if(this.properties.uvcode||this.properties.pixelcode){var c=512,d=512;a?(c=a.width,d=a.height):b&&(c=b.width,d=b.height);var e=f.getTextureType(this.properties.precision,a);this._tex=a||this._tex?f.getTargetTexture(a|| -this._tex,this._tex,this.properties.precision):new GL.Texture(c,d,{type:e,format:gl.RGBA,filter:gl.LINEAR});e="";this.properties.uvcode&&(e="uv = "+this.properties.uvcode,-1!=this.properties.uvcode.indexOf(";")&&(e=this.properties.uvcode));var h="";this.properties.pixelcode&&(h="result = "+this.properties.pixelcode,-1!=this.properties.pixelcode.indexOf(";")&&(h=this.properties.pixelcode));var g=this._shader;if(!g||this._shader_code!=e+"|"+h){try{this._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER, -p.pixel_shader,{UV_CODE:e,PIXEL_CODE:h}),this.boxcolor="#00FF00"}catch(k){console.log("Error compiling shader: ",k);this.boxcolor="#FF0000";return}this.boxcolor="#FF0000";this._shader_code=e+"|"+h;g=this._shader}if(g){this.boxcolor="green";var l=this.getInputData(2);null!=l?this.properties.value=l:l=parseFloat(this.properties.value);var m=this.graph.getTime();this._tex.drawTo(function(){gl.disable(gl.DEPTH_TEST);gl.disable(gl.CULL_FACE);gl.disable(gl.BLEND);a&&a.bind(0);b&&b.bind(1);var e=Mesh.getScreenQuad(); -g.uniforms({u_texture:0,u_textureB:1,value:l,texSize:[c,d],time:m}).draw(e)});this.setOutputData(0,this._tex)}else this.boxcolor="red"}}};p.pixel_shader="precision highp float;\n\t\t\t\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform vec2 texSize;\n\t\t\tuniform float time;\n\t\t\tuniform float value;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec2 uv = v_coord;\n\t\t\t\tUV_CODE;\n\t\t\t\tvec4 color4 = texture2D(u_texture, uv);\n\t\t\t\tvec3 color = color4.rgb;\n\t\t\t\tvec4 color4B = texture2D(u_textureB, uv);\n\t\t\t\tvec3 colorB = color4B.rgb;\n\t\t\t\tvec3 result = color;\n\t\t\t\tfloat alpha = 1.0;\n\t\t\t\tPIXEL_CODE;\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/operation",p);var q=function(){this.addOutput("Texture","Texture");this.properties={code:"",width:512,height:512,precision:f.DEFAULT};this.properties.code="\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n//your code here\n\ngl_FragColor = vec4(color, 1.0);\n}\n";this._uniforms={texSize:vec2.create(),time:time}};q.title="Shader";q.desc="Texture shader";q.widgets_info={code:{type:"code"},precision:{widget:"combo",values:f.MODE_VALUES}};q.prototype.onPropertyChanged= -function(a,b){if("code"==a){var c=this.getShader();if(c){var d=c.uniformInfo;if(this.inputs)for(var e={},f=0;f lumaMax))\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\t\t\t\telse\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\t\t\t\tif(u_igamma != 1.0)\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\t\t\t\treturn color;\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\t\t\t}\n\t\t\t"; -l.gamma_pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_igamma;\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\t\t\t gl_FragColor = color;\n\t\t\t}\n\t\t\t";g.registerNodeType("texture/toviewport",l);r=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={size:0,generate_mipmaps:!1, -precision:f.DEFAULT}};r.title="Copy";r.desc="Copy Texture";r.widgets_info={size:{widget:"combo",values:[0,32,64,128,256,512,1024,2048]},precision:{widget:"combo",values:f.MODE_VALUES}};r.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)){if(a){var b=a.width,c=a.height;0!=this.properties.size&&(c=b=this.properties.size);var d=this._temp_texture,e=a.type;this.properties.precision===f.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===f.HIGH&& -(e=gl.HIGH_PRECISION_FORMAT);d&&d.width==b&&d.height==c&&d.type==e||(d=gl.LINEAR,this.properties.generate_mipmaps&&isPowerOfTwo(b)&&isPowerOfTwo(c)&&(d=gl.LINEAR_MIPMAP_LINEAR),this._temp_texture=new GL.Texture(b,c,{type:e,format:gl.RGBA,minFilter:d,magFilter:gl.LINEAR}));a.copyTo(this._temp_texture);this.properties.generate_mipmaps&&(this._temp_texture.bind(0),gl.generateMipmap(this._temp_texture.texture_type),this._temp_texture.unbind(0))}this.setOutputData(0,this._temp_texture)}};g.registerNodeType("texture/copy", -r);var n=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={iterations:1,generate_mipmaps:!1,precision:f.DEFAULT}};n.title="Downsample";n.desc="Downsample Texture";n.widgets_info={iterations:{type:"number",step:1,precision:0,min:1},precision:{widget:"combo",values:f.MODE_VALUES}};n.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)&&a&&a.texture_type===GL.TEXTURE_2D){var b=n._shader;b||(n._shader= -b=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,n.pixel_shader));var c=a.width|0,d=a.height|0,e=a.type;this.properties.precision===f.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===f.HIGH&&(e=gl.HIGH_PRECISION_FORMAT);var h=this.properties.iterations||1,g=a,k=null,l=[],a={type:e,format:a.format},e=vec2.create(),m={u_offset:e};this._texture&&GL.Texture.releaseTemporary(this._texture);for(var p=0;p>1||0;d=d>>1||0;k=GL.Texture.getTemporary(c,d,a);l.push(k);g.setParameter(GL.TEXTURE_MAG_FILTER, -GL.NEAREST);g.copyTo(k,b,m);if(1==c&&1==d)break;g=k}this._texture=l.pop();for(p=0;pc;++c)b[c]=Math.random();d._shader.uniforms({u_samples_a:b.subarray(0,16),u_samples_b:b.subarray(16,32)})}c=this._temp_texture;b=gl.UNSIGNED_BYTE;a.type!=b&&(b=gl.FLOAT);c&&c.type==b||(this._temp_texture=new GL.Texture(1,1,{type:b,format:gl.RGBA,filter:gl.NEAREST})); -var e=d._shader,f=this._uniforms;f.u_mipmap_offset=this.properties.mipmap_offset;this._temp_texture.drawTo(function(){a.toViewport(e,f)});this.setOutputData(0,this._temp_texture);if(this.isOutputConnected(1)||this.isOutputConnected(2))if(c=this._temp_texture.getPixels()){var h=this._luminance,b=this._temp_texture.type;h.set(c);b==gl.UNSIGNED_BYTE?vec4.scale(h,h,1/255):b!=GL.HALF_FLOAT&&b!=GL.HALF_FLOAT_OES||vec4.scale(h,h,1/65025);this.setOutputData(1,h);this.setOutputData(2,(h[0]+h[1]+h[2])/3)}}}; -d.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tuniform mat4 u_samples_a;\n\t\t\tuniform mat4 u_samples_b;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_mipmap_offset;\n\t\t\tvarying vec2 v_coord;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = vec4(0.0);\n\t\t\t\tfor(int i = 0; i < 4; ++i)\n\t\t\t\t\tfor(int j = 0; j < 4; ++j)\n\t\t\t\t\t{\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\t\t\t\t\t\tcolor += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\t\t\t\t\t}\n\t\t\t gl_FragColor = color * 0.03125;\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/average",d);r=function(){this.addInput("Image","image");this.addOutput("","Texture");this.properties={}};r.title="Image to Texture";r.desc="Uploads an image to the GPU";r.prototype.onExecute=function(){var a=this.getInputData(0);if(a){var b=a.videoWidth||a.width,c=a.videoHeight||a.height;if(a.gltexture)this.setOutputData(0,a.gltexture);else{var d=this._temp_texture;d&&d.width==b&&d.height==c||(this._temp_texture=new GL.Texture(b,c,{format:gl.RGBA,filter:gl.LINEAR}));try{this._temp_texture.uploadImage(a)}catch(e){console.error("image comes from an unsafe location, cannot be uploaded to webgl"); -return}this.setOutputData(0,this._temp_texture)}}};g.registerNodeType("texture/imageToTexture",r);var a=function(){this.addInput("Texture","Texture");this.addInput("LUT","Texture");this.addInput("Intensity","number");this.addOutput("","Texture");this.properties={intensity:1,precision:f.DEFAULT,texture:null};a._shader||(a._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,a.pixel_shader))};a.widgets_info={texture:{widget:"texture"},precision:{widget:"combo",values:f.MODE_VALUES}};a.title="LUT";a.desc= -"Apply LUT to Texture";a.prototype.onExecute=function(){if(this.isOutputConnected(0)){var b=this.getInputData(0);if(this.properties.precision===f.PASS_THROUGH)this.setOutputData(0,b);else if(b){var c=this.getInputData(1);c||(c=f.getTexture(this.properties.texture));if(c){c.bind(0);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_MIN_FILTER,gl.LINEAR);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_WRAP_S,gl.CLAMP_TO_EDGE);gl.texParameteri(gl.TEXTURE_2D,gl.TEXTURE_WRAP_T,gl.CLAMP_TO_EDGE);gl.bindTexture(gl.TEXTURE_2D, -null);var d=this.properties.intensity;this.isInputConnected(2)&&(this.properties.intensity=d=this.getInputData(2));this._tex=f.getTargetTexture(b,this._tex,this.properties.precision);this._tex.drawTo(function(){c.bind(1);b.toViewport(a._shader,{u_texture:0,u_textureB:1,u_amount:d})});this.setOutputData(0,this._tex)}else this.setOutputData(0,b)}}};a.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform float u_amount;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\t lowp vec4 textureColor = clamp( texture2D(u_texture, v_coord), vec4(0.0), vec4(1.0) );\n\t\t\t\t mediump float blueColor = textureColor.b * 63.0;\n\t\t\t\t mediump vec2 quad1;\n\t\t\t\t quad1.y = floor(floor(blueColor) / 8.0);\n\t\t\t\t quad1.x = floor(blueColor) - (quad1.y * 8.0);\n\t\t\t\t mediump vec2 quad2;\n\t\t\t\t quad2.y = floor(ceil(blueColor) / 8.0);\n\t\t\t\t quad2.x = ceil(blueColor) - (quad2.y * 8.0);\n\t\t\t\t highp vec2 texPos1;\n\t\t\t\t texPos1.x = (quad1.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\t\t\t\t texPos1.y = 1.0 - ((quad1.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\t\t\t\t highp vec2 texPos2;\n\t\t\t\t texPos2.x = (quad2.x * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.r);\n\t\t\t\t texPos2.y = 1.0 - ((quad2.y * 0.125) + 0.5/512.0 + ((0.125 - 1.0/512.0) * textureColor.g));\n\t\t\t\t lowp vec4 newColor1 = texture2D(u_textureB, texPos1);\n\t\t\t\t lowp vec4 newColor2 = texture2D(u_textureB, texPos2);\n\t\t\t\t lowp vec4 newColor = mix(newColor1, newColor2, fract(blueColor));\n\t\t\t\t gl_FragColor = vec4( mix( textureColor.rgb, newColor.rgb, u_amount), textureColor.w);\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/LUT",a);var b=function(){this.addInput("Texture","Texture");this.addOutput("R","Texture");this.addOutput("G","Texture");this.addOutput("B","Texture");this.addOutput("A","Texture");this.properties={};b._shader||(b._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,b.pixel_shader))};b.title="Texture to Channels";b.desc="Split texture channels";b.prototype.onExecute=function(){var a=this.getInputData(0);if(a){this._channels||(this._channels=Array(4));for(var c=0,d=0;4>d;d++)this.isOutputConnected(d)? -(this._channels[d]&&this._channels[d].width==a.width&&this._channels[d].height==a.height&&this._channels[d].type==a.type||(this._channels[d]=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR})),c++):this._channels[d]=null;if(c){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);for(var e=Mesh.getScreenQuad(),f=b._shader,h=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]],d=0;4>d;d++)this._channels[d]&&(this._channels[d].drawTo(function(){a.bind(0);f.uniforms({u_texture:0,u_mask:h[d]}).draw(e)}), -this.setOutputData(d,this._channels[d]))}}};b.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec4 u_mask;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\t\t\t}\n\t\t\t";g.registerNodeType("texture/textureChannels",b);var c=function(){this.addInput("R","Texture");this.addInput("G","Texture");this.addInput("B","Texture");this.addInput("A", -"Texture");this.addOutput("Texture","Texture");this.properties={};c._shader||(c._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,c.pixel_shader))};c.title="Channels to Texture";c.desc="Split texture channels";c.prototype.onExecute=function(){var a=[this.getInputData(0),this.getInputData(1),this.getInputData(2),this.getInputData(3)];if(a[0]&&a[1]&&a[2]&&a[3]){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var b=Mesh.getScreenQuad(),d=c._shader;this._tex=f.getTargetTexture(a[0],this._tex);this._tex.drawTo(function(){a[0].bind(0); -a[1].bind(1);a[2].bind(2);a[3].bind(3);d.uniforms({u_textureR:0,u_textureG:1,u_textureB:2,u_textureA:3}).draw(b)});this.setOutputData(0,this._tex)}};c.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_textureR;\n\t\t\tuniform sampler2D u_textureG;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform sampler2D u_textureA;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( \t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/channelsTexture",c);var m=function(){this.addInput("A","color");this.addInput("B","color");this.addOutput("Texture","Texture");this.properties={angle:0,scale:1,A:[0,0,0],B:[1,1,1],texture_size:32};m._shader||(m._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,m.pixel_shader));this._uniforms={u_angle:0,u_colorA:vec3.create(),u_colorB:vec3.create()}};m.title="Gradient";m.desc="Generates a gradient";m["@A"]={type:"color"};m["@B"]={type:"color"};m["@texture_size"]={type:"enum", -values:[32,64,128,256,512]};m.prototype.onExecute=function(){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var a=GL.Mesh.getScreenQuad(),b=m._shader,c=this.getInputData(0);c||(c=this.properties.A);var d=this.getInputData(1);d||(d=this.properties.B);for(var e=2;e 0.5 ? 1.0 : 0.0, diff.y > 0.5 ? 1.0 : 0.0, diff.z > 0.5 ? 1.0 : 0.0, center.a );\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/edges",t);var h=function(){this.addInput("Texture","Texture");this.addInput("Distance","number");this.addInput("Range","number");this.addOutput("Texture","Texture");this.properties={distance:100,range:50,only_depth:!1,high_precision:!1};this._uniforms={u_texture:0,u_distance:100,u_range:50,u_camera_planes:null}};h.title="Depth Range";h.desc="Generates a texture with a depth range";h.prototype.onExecute=function(){if(this.isOutputConnected(0)){var a=this.getInputData(0); -if(a){var b=gl.UNSIGNED_BYTE;this.properties.high_precision&&(b=gl.half_float_ext?gl.HALF_FLOAT_OES:gl.FLOAT);this._temp_texture&&this._temp_texture.type==b&&this._temp_texture.width==a.width&&this._temp_texture.height==a.height||(this._temp_texture=new GL.Texture(a.width,a.height,{type:b,format:gl.RGBA,filter:gl.LINEAR}));var c=this._uniforms,b=this.properties.distance;this.isInputConnected(1)&&(b=this.getInputData(1),this.properties.distance=b);var d=this.properties.range;this.isInputConnected(2)&& -(d=this.getInputData(2),this.properties.range=d);c.u_distance=b;c.u_range=d;gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var e=Mesh.getScreenQuad();h._shader||(h._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,h.pixel_shader),h._shader_onlydepth=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,h.pixel_shader,{ONLY_DEPTH:""}));var f=this.properties.only_depth?h._shader_onlydepth:h._shader,b=null,b=a.near_far_planes?a.near_far_planes:window.LS&&LS.Renderer._main_camera?LS.Renderer._main_camera._uniforms.u_camera_planes: -[0.1,1E3];c.u_camera_planes=b;this._temp_texture.drawTo(function(){a.bind(0);f.uniforms(c).draw(e)});this._temp_texture.near_far_planes=b;this.setOutputData(0,this._temp_texture)}}};h.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_distance;\n\t\t\tuniform float u_range;\n\t\t\t\n\t\t\tfloat LinearDepth()\n\t\t\t{\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tfloat depth = LinearDepth();\n\t\t\t\t#ifdef ONLY_DEPTH\n\t\t\t\t gl_FragColor = vec4(depth);\n\t\t\t\t#else\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\t\t\t\t\tfloat dof = 1.0;\n\t\t\t\t\tif(diff <= u_range)\n\t\t\t\t\t\tdof = diff / u_range;\n\t\t\t\t gl_FragColor = vec4(dof);\n\t\t\t\t#endif\n\t\t\t}\n\t\t\t"; -g.registerNodeType("texture/depth_range",h);var x=function(){this.addInput("Texture","Texture");this.addInput("Iterations","number");this.addInput("Intensity","number");this.addOutput("Blurred","Texture");this.properties={intensity:1,iterations:1,preserve_aspect:!1,scale:[1,1],precision:f.DEFAULT}};x.title="Blur";x.desc="Blur a texture";x.widgets_info={precision:{widget:"combo",values:f.MODE_VALUES}};x.max_iterations=20;x.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var b= -this._final_texture;b&&b.width==a.width&&b.height==a.height&&b.type==a.type||(b=this._final_texture=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));var c=this.properties.iterations;this.isInputConnected(1)&&(c=this.getInputData(1),this.properties.iterations=c);c=Math.min(Math.floor(c),x.max_iterations);if(0==c)this.setOutputData(0,a);else{var d=this.properties.intensity;this.isInputConnected(2)&&(d=this.getInputData(2),this.properties.intensity=d);var e=g.camera_aspect; -e||void 0===window.gl||(e=gl.canvas.height/gl.canvas.width);e||(e=1);var e=this.properties.preserve_aspect?e:1,f=this.properties.scale||[1,1];a.applyBlur(e*f[0],f[1],d,b);for(a=1;a>=1;1<(c|0)&&(c>>=1);if(2>b)break;l=g[s]=GL.Texture.getTemporary(b,c,d);p[0]=1/m.width;p[1]=1/m.height;m.blit(l,k.uniforms(h));m=l}this.isOutputConnected(2)&&(b=this._average_texture,b&&b.type==a.type&&b.format==a.format||(b=this._average_texture=new GL.Texture(1,1,{type:a.type,format:a.format,filter:gl.LINEAR})),p[0]=1/m.width,p[1]=1/m.height,h.u_intensity= -q,h.u_delta=1,m.blit(b,k.uniforms(h)),this.setOutputData(2,b));gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);h.u_intensity=this.getInputOrProperty("persistence");h.u_delta=0.5;for(s-=2;0<=s;s--)l=g[s],g[s]=null,p[0]=1/m.width,p[1]=1/m.height,m.blit(l,k.uniforms(h)),GL.Texture.releaseTemporary(m),m=l;gl.disable(gl.BLEND);this.isOutputConnected(1)&&(g=this._glow_texture,g&&g.width==a.width&&g.height==a.height&&g.type==e&&g.format==a.format||(g=this._glow_texture=new GL.Texture(a.width,a.height,{type:e, -format:a.format,filter:gl.LINEAR})),m.blit(g),this.setOutputData(1,g));if(this.isOutputConnected(0)){g=this._final_texture;g&&g.width==a.width&&g.height==a.height&&g.type==e&&g.format==a.format||(g=this._final_texture=new GL.Texture(a.width,a.height,{type:e,format:a.format,filter:gl.LINEAR}));var x=this.getInputData(1),u=this.getInputOrProperty("dirt_factor");h.u_intensity=q;k=x?w._dirt_final_shader:w._final_shader;k||(k=x?w._dirt_final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,w.final_pixel_shader, -{USE_DIRT:""}):w._final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,w.final_pixel_shader));g.drawTo(function(){a.bind(0);m.bind(1);x&&(k.setUniform("u_dirt_factor",u),k.setUniform("u_dirt_texture",x.bind(2)));k.toViewport(h)});this.setOutputData(0,g)}GL.Texture.releaseTemporary(m)}};w.cut_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform float u_threshold;\n\t\tvoid main() {\n\t\t\tgl_FragColor = max( texture2D( u_texture, v_coord ) - vec4( u_threshold ), vec4(0.0) );\n\t\t}"; -w.scale_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_texture, uv + o.xy ) + texture2D( u_texture, uv + o.zy) + texture2D( u_texture, uv + o.xw) + texture2D( u_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tgl_FragColor = u_intensity * sampleBox( v_coord );\n\t\t}"; -w.final_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform sampler2D u_glow_texture;\n\t\t#ifdef USE_DIRT\n\t\t\tuniform sampler2D u_dirt_texture;\n\t\t#endif\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\tuniform float u_dirt_factor;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_glow_texture, uv + o.xy ) + texture2D( u_glow_texture, uv + o.zy) + texture2D( u_glow_texture, uv + o.xw) + texture2D( u_glow_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tvec4 glow = sampleBox( v_coord );\n\t\t\t#ifdef USE_DIRT\n\t\t\t\tglow = mix( glow, glow * texture2D( u_dirt_texture, v_coord ), u_dirt_factor );\n\t\t\t#endif\n\t\t\tgl_FragColor = texture2D( u_texture, v_coord ) + u_intensity * glow;\n\t\t}"; -g.registerNodeType("texture/glow",w);var y=function(){this.addInput("Texture","Texture");this.addOutput("Filtered","Texture");this.properties={intensity:1,radius:5}};y.title="Kuwahara Filter";y.desc="Filters a texture giving an artistic oil canvas painting";y.max_radius=10;y._shaders=[];y.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var b=this._temp_texture;b&&b.width==a.width&&b.height==a.height&&b.type==a.type||(this._temp_texture=new GL.Texture(a.width, -a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));b=this.properties.radius;b=Math.min(Math.floor(b),y.max_radius);if(0==b)this.setOutputData(0,a);else{var c=this.properties.intensity,d=g.camera_aspect;d||void 0===window.gl||(d=gl.canvas.height/gl.canvas.width);d||(d=1);d=this.properties.preserve_aspect?d:1;y._shaders[b]||(y._shaders[b]=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,y.pixel_shader,{RADIUS:b.toFixed(0)}));var e=y._shaders[b],f=GL.Mesh.getScreenQuad();a.bind(0);this._temp_texture.drawTo(function(){e.uniforms({u_texture:0, -u_intensity:c,u_resolution:[a.width,a.height],u_iResolution:[1/a.width,1/a.height]}).draw(f)});this.setOutputData(0,this._temp_texture)}}};y.pixel_shader="\n\tprecision highp float;\n\tvarying vec2 v_coord;\n\tuniform sampler2D u_texture;\n\tuniform float u_intensity;\n\tuniform vec2 u_resolution;\n\tuniform vec2 u_iResolution;\n\t#ifndef RADIUS\n\t\t#define RADIUS 7\n\t#endif\n\tvoid main() {\n\t\n\t\tconst int radius = RADIUS;\n\t\tvec2 fragCoord = v_coord;\n\t\tvec2 src_size = u_iResolution;\n\t\tvec2 uv = v_coord;\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\t\tint i;\n\t\tint j;\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\t\tvec3 c;\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm0 += c;\n\t\t\t\ts0 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm1 += c;\n\t\t\t\ts1 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm2 += c;\n\t\t\t\ts2 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm3 += c;\n\t\t\t\ts3 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfloat min_sigma2 = 1e+2;\n\t\tm0 /= n;\n\t\ts0 = abs(s0 / n - m0 * m0);\n\t\t\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\t\t}\n\t\t\n\t\tm1 /= n;\n\t\ts1 = abs(s1 / n - m1 * m1);\n\t\t\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\t\t}\n\t\t\n\t\tm2 /= n;\n\t\ts2 = abs(s2 / n - m2 * m2);\n\t\t\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\t\t}\n\t\t\n\t\tm3 /= n;\n\t\ts3 = abs(s3 / n - m3 * m3);\n\t\t\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\t\t}\n\t}\n\t"; -g.registerNodeType("texture/kuwahara",y);r=function(){this.addOutput("Webcam","Texture");this.properties={texture_name:""}};r.title="Webcam";r.desc="Webcam texture";r.prototype.openStream=function(){function a(c){console.log("Webcam rejected",c);b._webcam_stream=!1;b.box_color="red"}navigator.getUserMedia=navigator.getUserMedia||navigator.webkitGetUserMedia||navigator.mozGetUserMedia||navigator.msGetUserMedia;window.URL=window.URL||window.webkitURL;if(navigator.getUserMedia){this._waiting_confirmation= -!0;var b=this;navigator.getUserMedia({video:!0},this.streamReady.bind(this),a)}};r.prototype.streamReady=function(a){this._webcam_stream=a;var b=this._video;b||(b=document.createElement("video"),b.autoplay=!0,b.src=window.URL.createObjectURL(a),this._video=b,b.onloadedmetadata=function(a){console.log(a)})};r.prototype.onRemoved=function(){if(this._webcam_stream){var a=this._webcam_stream.getVideoTracks();a.length&&a[0].stop();this._video=this._webcam_stream=null}};r.prototype.onDrawBackground=function(a){this.flags.collapsed|| -20>=this.size[1]||!this._video||(a.save(),a.webgl?this._temp_texture&&a.drawImage(this._temp_texture,0,0,this.size[0],this.size[1]):(a.translate(0,this.size[1]),a.scale(1,-1),a.drawImage(this._video,0,0,this.size[0],this.size[1])),a.restore())};r.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();if(this._video&&this._video.videoWidth){var a=this._video.videoWidth,b=this._video.videoHeight,c=this._temp_texture;c&&c.width==a&&c.height==b||(this._temp_texture= -new GL.Texture(a,b,{format:gl.RGB,filter:gl.LINEAR}));this._temp_texture.uploadImage(this._video);this.properties.texture_name&&(f.getTexturesContainer()[this.properties.texture_name]=this._temp_texture);this.setOutputData(0,this._temp_texture)}};g.registerNodeType("texture/webcam",r);var A=function(){this.addInput("in","Texture");this.addInput("f","number");this.addOutput("out","Texture");this.properties={factor:1,precision:f.LOW};this._uniforms={u_texture:0,u_factor:1}};A.title="Lens FX";A.desc= -"distortion and chromatic aberration";A.widgets_info={precision:{widget:"combo",values:f.MODE_VALUES}};A.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var b=this._temp_texture;b&&b.width==a.width&&b.height==a.height&&b.type==a.type||(b=this._temp_texture=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));var c=A._shader;c||(c=A._shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,A.pixel_shader));var d=this.getInputData(1); -null==d&&(d=this.properties.factor);var e=this._uniforms;e.u_factor=d;gl.disable(gl.DEPTH_TEST);b.drawTo(function(){a.bind(0);c.uniforms(e).draw(GL.Mesh.getScreenQuad())});this.setOutputData(0,b)}};A.pixel_shader="precision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_factor;\n\t\t\tvec2 barrelDistortion(vec2 coord, float amt) {\n\t\t\t\tvec2 cc = coord - 0.5;\n\t\t\t\tfloat dist = dot(cc, cc);\n\t\t\t\treturn coord + cc * dist * amt;\n\t\t\t}\n\t\t\t\n\t\t\tfloat sat( float t )\n\t\t\t{\n\t\t\t\treturn clamp( t, 0.0, 1.0 );\n\t\t\t}\n\t\t\t\n\t\t\tfloat linterp( float t ) {\n\t\t\t\treturn sat( 1.0 - abs( 2.0*t - 1.0 ) );\n\t\t\t}\n\t\t\t\n\t\t\tfloat remap( float t, float a, float b ) {\n\t\t\t\treturn sat( (t - a) / (b - a) );\n\t\t\t}\n\t\t\t\n\t\t\tvec4 spectrum_offset( float t ) {\n\t\t\t\tvec4 ret;\n\t\t\t\tfloat lo = step(t,0.5);\n\t\t\t\tfloat hi = 1.0-lo;\n\t\t\t\tfloat w = linterp( remap( t, 1.0/6.0, 5.0/6.0 ) );\n\t\t\t\tret = vec4(lo,1.0,hi, 1.) * vec4(1.0-w, w, 1.0-w, 1.);\n\t\t\t\n\t\t\t\treturn pow( ret, vec4(1.0/2.2) );\n\t\t\t}\n\t\t\t\n\t\t\tconst float max_distort = 2.2;\n\t\t\tconst int num_iter = 12;\n\t\t\tconst float reci_num_iter_f = 1.0 / float(num_iter);\n\t\t\t\n\t\t\tvoid main()\n\t\t\t{\t\n\t\t\t\tvec2 uv=v_coord;\n\t\t\t\tvec4 sumcol = vec4(0.0);\n\t\t\t\tvec4 sumw = vec4(0.0);\t\n\t\t\t\tfor ( int i=0; i=this.size[1]||a.webgl&&(gl.meshes.cube||(gl.meshes.cube=GL.Mesh.cube({size:1})))};g.registerNodeType("texture/cubemap",r)}})(this); -(function(r){var g=r.LiteGraph;if("undefined"!=typeof GL){var f=function(){this.addInput("Texture","Texture");this.addInput("Aberration","number");this.addInput("Distortion","number");this.addInput("Blur","number");this.addOutput("Texture","Texture");this.properties={aberration:1,distortion:1,blur:1,precision:LGraphTexture.DEFAULT};f._shader||(f._shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,f.pixel_shader),f._texture=new GL.Texture(3,1,{format:gl.RGB,wrap:gl.CLAMP_TO_EDGE,magFilter:gl.LINEAR, -minFilter:gl.LINEAR,pixel_data:[255,0,0,0,255,0,0,0,255]}))};f.title="Lens";f.desc="Camera Lens distortion";f.widgets_info={precision:{widget:"combo",values:LGraphTexture.MODE_VALUES}};f.prototype.onExecute=function(){var e=this.getInputData(0);if(this.properties.precision===LGraphTexture.PASS_THROUGH)this.setOutputData(0,e);else if(e){this._tex=LGraphTexture.getTargetTexture(e,this._tex,this.properties.precision);var g=this.properties.aberration;this.isInputConnected(1)&&(g=this.getInputData(1), -this.properties.aberration=g);var l=this.properties.distortion;this.isInputConnected(2)&&(l=this.getInputData(2),this.properties.distortion=l);var n=this.properties.blur;this.isInputConnected(3)&&(n=this.getInputData(3),this.properties.blur=n);gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var d=Mesh.getScreenQuad(),a=f._shader;this._tex.drawTo(function(){e.bind(0);a.uniforms({u_texture:0,u_aberration:g,u_distortion:l,u_blur:n}).draw(d)});this.setOutputData(0,this._tex)}};f.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_aberration;\n\t\t\tuniform float u_distortion;\n\t\t\tuniform float u_blur;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec2 coord = v_coord;\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\t\t\t\tdist_coord *= percent;\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\t\t\t\tgl_FragColor = color;\n\t\t\t}\n\t\t\t"; -g.registerNodeType("fx/lens",f);r.LGraphFXLens=f;var e=function(){this.addInput("Texture","Texture");this.addInput("Blurred","Texture");this.addInput("Mask","Texture");this.addInput("Threshold","number");this.addOutput("Texture","Texture");this.properties={shape:"",size:10,alpha:1,threshold:1,high_precision:!1}};e.title="Bokeh";e.desc="applies an Bokeh effect";e.widgets_info={shape:{widget:"texture"}};e.prototype.onExecute=function(){var f=this.getInputData(0),g=this.getInputData(1),l=this.getInputData(2); -if(f&&l&&this.properties.shape){g||(g=f);var n=LGraphTexture.getTexture(this.properties.shape);if(n){var d=this.properties.threshold;this.isInputConnected(3)&&(d=this.getInputData(3),this.properties.threshold=d);var a=gl.UNSIGNED_BYTE;this.properties.high_precision&&(a=gl.half_float_ext?gl.HALF_FLOAT_OES:gl.FLOAT);this._temp_texture&&this._temp_texture.type==a&&this._temp_texture.width==f.width&&this._temp_texture.height==f.height||(this._temp_texture=new GL.Texture(f.width,f.height,{type:a,format:gl.RGBA, -filter:gl.LINEAR}));var b=e._first_shader;b||(b=e._first_shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,e._first_pixel_shader));var c=e._second_shader;c||(c=e._second_shader=new GL.Shader(e._second_vertex_shader,e._second_pixel_shader));var m=this._points_mesh;m&&m._width==f.width&&m._height==f.height&&2==m._spacing||(m=this.createPointsMesh(f.width,f.height,2));var k=Mesh.getScreenQuad(),p=this.properties.size,h=this.properties.alpha;gl.disable(gl.DEPTH_TEST);gl.disable(gl.BLEND);this._temp_texture.drawTo(function(){f.bind(0); -g.bind(1);l.bind(2);b.uniforms({u_texture:0,u_texture_blur:1,u_mask:2,u_texsize:[f.width,f.height]}).draw(k)});this._temp_texture.drawTo(function(){gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);f.bind(0);n.bind(3);c.uniforms({u_texture:0,u_mask:2,u_shape:3,u_alpha:h,u_threshold:d,u_pointSize:p,u_itexsize:[1/f.width,1/f.height]}).draw(m,gl.POINTS)});this.setOutputData(0,this._temp_texture)}}else this.setOutputData(0,f)};e.prototype.createPointsMesh=function(e,f,g){for(var n=Math.round(e/g),d=Math.round(f/ -g),a=new Float32Array(n*d*2),b=-1,c=2/e*g,m=2/f*g,k=0;k=g.NOTEON||a<=g.NOTEOFF)this.channel=d&15};Object.defineProperty(g.prototype,"velocity",{get:function(){return this.cmd==g.NOTEON?this.data[2]: --1},set:function(d){this.data[2]=d},enumerable:!0});g.notes="A A# B C C# D D# E F F# G G#".split(" ");g.prototype.getPitch=function(){return 440*Math.pow(2,(this.data[1]-69)/12)};g.computePitch=function(d){return 440*Math.pow(2,(d-69)/12)};g.prototype.getCC=function(){return this.data[1]};g.prototype.getCCValue=function(){return this.data[2]};g.prototype.getPitchBend=function(){return this.data[1]+(this.data[2]<<7)-8192};g.computePitchBend=function(d,a){return d+(a<<7)-8192};g.prototype.setCommandFromString= -function(d){this.cmd=g.computeCommandFromString(d)};g.computeCommandFromString=function(d){if(!d)return 0;if(d&&d.constructor===Number)return d;d=d.toUpperCase();switch(d){case "NOTE ON":case "NOTEON":return g.NOTEON;case "NOTE OFF":case "NOTEOFF":return g.NOTEON;case "KEY PRESSURE":case "KEYPRESSURE":return g.KEYPRESSURE;case "CONTROLLER CHANGE":case "CONTROLLERCHANGE":case "CC":return g.CONTROLLERCHANGE;case "PROGRAM CHANGE":case "PROGRAMCHANGE":case "PC":return g.PROGRAMCHANGE;case "CHANNEL PRESSURE":case "CHANNELPRESSURE":return g.CHANNELPRESSURE; -case "PITCH BEND":case "PITCHBEND":return g.PITCHBEND;case "TIME TICK":case "TIMETICK":return g.TIMETICK;default:return Number(d)}};g.toNoteString=function(d){var a;a=(d-21)%12;0>a&&(a=12+a);return g.notes[a]+Math.floor((d-24)/12+1)};g.prototype.toString=function(){var d=""+this.channel+". ";switch(this.cmd){case g.NOTEON:d+="NOTEON "+g.toNoteString(this.data[1]);break;case g.NOTEOFF:d+="NOTEOFF "+g.toNoteString(this.data[1]);break;case g.CONTROLLERCHANGE:d+="CC "+this.data[1]+" "+this.data[2];break; -case g.PROGRAMCHANGE:d+="PC "+this.data[1];break;case g.PITCHBEND:d+="PITCHBEND "+this.getPitchBend();break;case g.KEYPRESSURE:d+="KEYPRESS "+this.data[1]}return d};g.prototype.toHexString=function(){for(var d="",a=0;athis.properties.max_value||this.trigger("on_midi",a)};n.registerNodeType("midi/filter",s);u.title="MIDIEvent";u.desc="Create a MIDI Event";u.prototype.onAction=function(d,a){"assign"==d?(this.properties.channel=a.channel,this.properties.cmd=a.cmd,this.properties.value1= -a.data[1],this.properties.value2=a.data[2]):(a=new g,a.channel=this.properties.channel,this.properties.cmd&&this.properties.cmd.constructor===String?a.setCommandFromString(this.properties.cmd):a.cmd=this.properties.cmd,a.data[0]=a.cmd|a.channel,a.data[1]=Number(this.properties.value1),a.data[2]=Number(this.properties.value2),this.trigger("on_midi",a))};u.prototype.onExecute=function(){var d=this.properties;if(this.outputs)for(var a=0;a=this.size[0]&&(e=this.size[0]-1),a.strokeStyle="red",a.beginPath(),a.moveTo(e,d),a.lineTo(e,0),a.stroke())}};a.title="Visualization";a.desc="Audio Visualization";k.registerNodeType("audio/visualization", -a);b.prototype.onExecute=function(){if(this._freqs=this.getInputData(0)){var a=this.properties.band,b=this.getInputData(1);void 0!==b&&(a=b);b=t.getAudioContext().sampleRate/this._freqs.length;b=a/b*2;b>=this._freqs.length?b=this._freqs[this._freqs.length-1]:(a=b|0,b-=a,b=this._freqs[a]*(1-b)+this._freqs[a+1]*b);this.setOutputData(0,b/255*this.properties.amplitude)}};b.prototype.onGetInputs=function(){return[["band","number"]]};b.title="Signal";b.desc="extract the signal of some frequency";k.registerNodeType("audio/signal", -b);c.prototype.onAdded=function(a){a.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback)};c["@code"]={widget:"code"};c.prototype.onStart=function(){this.audionode.onaudioprocess=this._callback};c.prototype.onStop=function(){this.audionode.onaudioprocess=c._bypass_function};c.prototype.onPause=function(){this.audionode.onaudioprocess=c._bypass_function};c.prototype.onUnpause=function(){this.audionode.onaudioprocess=this._callback};c.prototype.onExecute=function(){};c.prototype.onRemoved= -function(){this.audionode.onaudioprocess=c._bypass_function};c.prototype.processCode=function(){try{this._script=new new Function("properties",this.properties.code)(this.properties),this._old_code=this.properties.code,this._callback=this._script.onaudioprocess}catch(a){console.error("Error in onaudioprocess code",a),this._callback=c._bypass_function,this.audionode.onaudioprocess=this._callback}};c.prototype.onPropertyChanged=function(a,b){"code"==a&&(this.properties.code=b,this.processCode(),this.graph&& -this.graph.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback))};c.default_function=function(){this.onaudioprocess=function(a){var b=a.inputBuffer;a=a.outputBuffer;for(var c=0;c>>>>>> heads/upstream/master diff --git a/package.json b/package.json index 528cacb6b..006a61f04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "litegraph.js", - "version": "0.5.0", + "version": "0.6.0", "description": "A graph node editor similar to PD or UDK Blueprints, it works in a HTML5 Canvas and allow to exported graphs to be included in applications.", "main": "build/litegraph.js", "directories": {