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 = ""; } 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\tuvcode must be vec2, is optional
\r\n\t\t\tuv: 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; ipixelcode must be vec3
\t\t\tuvcode must be vec2, is optional
\t\t\tuv: 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