From 35773309fbcdf41a4a036549566a1e66801c96ec Mon Sep 17 00:00:00 2001 From: tamat Date: Thu, 18 Jul 2019 15:02:49 +0200 Subject: [PATCH] JSON exporting graphs contain the node execution order --- build/litegraph.js | 910 ++++++++++++++++++++++-------- build/litegraph.min.js | 1217 ++++++++++++++++++++-------------------- src/litegraph.js | 1 + 3 files changed, 1281 insertions(+), 847 deletions(-) diff --git a/build/litegraph.js b/build/litegraph.js index 1d77ad393..8d36d3e72 100644 --- a/build/litegraph.js +++ b/build/litegraph.js @@ -368,14 +368,15 @@ * @return {Array} array with all the names of the categories */ - getNodeTypesCategories: function() { + getNodeTypesCategories: function( filter ) { var categories = { "": 1 }; for (var i in this.registered_node_types) { - if ( - this.registered_node_types[i].category && - !this.registered_node_types[i].skip_list - ) { - categories[this.registered_node_types[i].category] = 1; + var type = this.registered_node_types[i]; + if ( type.category && !type.skip_list ) + { + if(filter && type.filter != filter) + continue; + categories[type.category] = 1; } } var result = []; @@ -584,6 +585,7 @@ //custom data this.config = {}; + this.vars = {}; //timing this.globaltime = 0; @@ -721,9 +723,11 @@ * Run N steps (cycles) of the graph * @method runStep * @param {number} num number of steps to run, default is 1 + * @param {Boolean} do_not_catch_errors [optional] if you want to try/catch errors + * @param {number} limit max number of nodes to execute (used to execute from start to a node) */ - LGraph.prototype.runStep = function(num, do_not_catch_errors) { + LGraph.prototype.runStep = function(num, do_not_catch_errors, limit ) { num = num || 1; var start = LiteGraph.getTime(); @@ -736,13 +740,15 @@ return; } + limit = limit || nodes.length; + if (do_not_catch_errors) { //iterations for (var i = 0; i < num; i++) { - for (var j = 0, l = nodes.length; j < l; ++j) { + for (var j = 0; j < limit; ++j) { var node = nodes[j]; if (node.mode == LiteGraph.ALWAYS && node.onExecute) { - node.onExecute(); + node.onExecute(); //hard to send elapsed time } } @@ -759,7 +765,7 @@ try { //iterations for (var i = 0; i < num; i++) { - for (var j = 0, l = nodes.length; j < l; ++j) { + for (var j = 0; j < limit; ++j) { var node = nodes[j]; if (node.mode == LiteGraph.ALWAYS && node.onExecute) { node.onExecute(); @@ -2201,6 +2207,7 @@ pos: this.pos, size: this.size, flags: LiteGraph.cloneObject(this.flags), + order: this.order, mode: this.mode }; @@ -3130,6 +3137,7 @@ throw "LiteGraph addWidget('combo',...) requires to pass values in options: { values:['red','blue'] }"; } this.widgets.push(w); + this.size = this.computeSize(); return w; }; @@ -4334,6 +4342,7 @@ LGraphNode.prototype.executeAction = function(action) this.render_collapsed_slots = true; this.render_execution_order = false; this.render_title_colored = true; + this.render_link_tooltip = true; this.links_render_mode = LiteGraph.SPLINE_LINK; @@ -4348,12 +4357,14 @@ LGraphNode.prototype.executeAction = function(action) this.onDrawBackground = null; //to render background objects (behind nodes and connections) in the canvas affected by transform this.onDrawForeground = null; //to render foreground objects (above nodes and connections) in the canvas affected by transform this.onDrawOverlay = null; //to render foreground objects not affected by transform (for GUIs) + this.onDrawLinkTooltip = null; //called when rendering a tooltip this.connections_width = 3; this.round_radius = 8; this.current_node = null; this.node_widget = null; //used for widgets + this.over_link_center = null; this.last_mouse_position = [0, 0]; this.visible_area = this.ds.visible_area; this.visible_links = []; @@ -4919,10 +4930,7 @@ LGraphNode.prototype.executeAction = function(action) ) { this.connecting_node = node; this.connecting_output = output; - this.connecting_pos = node.getConnectionPos( - false, - i - ); + this.connecting_pos = node.getConnectionPos( false, i ); this.connecting_slot = i; if (e.shiftKey) { @@ -4992,10 +5000,7 @@ LGraphNode.prototype.executeAction = function(action) this.connecting_output = this.connecting_node.outputs[ this.connecting_slot ]; - this.connecting_pos = this.connecting_node.getConnectionPos( - false, - this.connecting_slot - ); + this.connecting_pos = this.connecting_node.getConnectionPos( false, this.connecting_slot ); } this.dirty_bgcanvas = true; @@ -5095,25 +5100,14 @@ LGraphNode.prototype.executeAction = function(action) break; } - this.selected_group = this.graph.getGroupOnPos( - e.canvasX, - e.canvasY - ); + this.selected_group = this.graph.getGroupOnPos( e.canvasX, e.canvasY ); this.selected_group_resizing = false; if (this.selected_group && !this.read_only ) { if (e.ctrlKey) { this.dragging_rectangle = null; } - var dist = distance( - [e.canvasX, e.canvasY], - [ - this.selected_group.pos[0] + - this.selected_group.size[0], - this.selected_group.pos[1] + - this.selected_group.size[1] - ] - ); + var dist = distance( [e.canvasX, e.canvasY], [ this.selected_group.pos[0] + this.selected_group.size[0], this.selected_group.pos[1] + this.selected_group.size[1] ] ); if (dist * this.ds.scale < 10) { this.selected_group_resizing = true; } else { @@ -5333,9 +5327,35 @@ LGraphNode.prototype.executeAction = function(action) this.canvas.style.cursor = "crosshair"; } } - } else if (this.canvas) { - this.canvas.style.cursor = ""; - } + } else { //outside + + //search for link connector + var over_link = null; + for (var i = 0; i < this.visible_links.length; ++i) { + var link = this.visible_links[i]; + var center = link._pos; + if ( + !center || + e.canvasX < center[0] - 4 || + e.canvasX > center[0] + 4 || + e.canvasY < center[1] - 4 || + e.canvasY > center[1] + 4 + ) { + continue; + } + over_link = link; + break; + } + if( over_link != this.over_link_center ) + { + this.over_link_center = over_link; + this.dirty_canvas = true; + } + + if (this.canvas) { + this.canvas.style.cursor = ""; + } + } if ( this.node_capturing_input && @@ -6519,6 +6539,7 @@ LGraphNode.prototype.executeAction = function(action) } } + //the selection rectangle if (this.dragging_rectangle) { ctx.strokeStyle = "#FFF"; ctx.strokeRect( @@ -6529,6 +6550,14 @@ LGraphNode.prototype.executeAction = function(action) ); } + //on top of link center + if(this.over_link_center && this.render_link_tooltip) + this.drawLinkTooltip( ctx, this.over_link_center ); + else + if(this.onDrawLinkTooltip) //to remove + this.onDrawLinkTooltip(ctx,null); + + //custom info if (this.onDrawForeground) { this.onDrawForeground(ctx, this.visible_rect); } @@ -6565,21 +6594,9 @@ LGraphNode.prototype.executeAction = function(action) ctx.font = "10px Arial"; ctx.fillStyle = "#888"; if (this.graph) { - ctx.fillText( - "T: " + this.graph.globaltime.toFixed(2) + "s", - 5, - 13 * 1 - ); - ctx.fillText("I: " + this.graph.iteration, 5, 13 * 2); - ctx.fillText( - "N: " + - this.graph._nodes.length + - " [" + - this.visible_nodes.length + - "]", - 5, - 13 * 3 - ); + ctx.fillText( "T: " + this.graph.globaltime.toFixed(2) + "s", 5, 13 * 1 ); + ctx.fillText("I: " + this.graph.iteration, 5, 13 * 2 ); + ctx.fillText("N: " + this.graph._nodes.length + " [" + this.visible_nodes.length + "]", 5, 13 * 3 ); ctx.fillText("V: " + this.graph._version, 5, 13 * 4); ctx.fillText("FPS:" + this.fps.toFixed(2), 5, 13 * 5); } else { @@ -6894,10 +6911,7 @@ LGraphNode.prototype.executeAction = function(action) ctx.globalAlpha = editor_alpha; //change opacity of incompatible slots when dragging a connection - if ( - this.connecting_node && - LiteGraph.isValidConnection(slot.type && out_slot.type) - ) { + if ( this.connecting_node && !LiteGraph.isValidConnection( slot.type , out_slot.type) ) { ctx.globalAlpha = 0.4 * editor_alpha; } @@ -7142,6 +7156,60 @@ LGraphNode.prototype.executeAction = function(action) ctx.globalAlpha = 1.0; }; + //used by this.over_link_center + LGraphCanvas.prototype.drawLinkTooltip = function( ctx, link ) + { + var pos = link._pos; + ctx.fillStyle = "black"; + ctx.beginPath(); + ctx.arc( pos[0], pos[1], 3, 0, Math.PI * 2 ); + ctx.fill(); + + if(link.data == null) + return; + + if(this.onDrawLinkTooltip) + if( this.onDrawLinkTooltip(ctx,link,this) == true ) + return; + + var data = link.data; + var text = null; + + if( data.constructor === Number ) + text = data.toFixed(2); + else if( data.constructor === String ) + text = "\"" + data + "\""; + else if( data.constructor === Boolean ) + text = String(data); + else if (data.toToolTip) + text = data.toToolTip(); + else + text = "[" + data.constructor.name + "]"; + + if(text == null) + return; + + ctx.font = "14px Courier New"; + var info = ctx.measureText(text); + var w = info.width + 20; + var h = 24; + ctx.shadowColor = "black"; + ctx.shadowOffsetX = 2; + ctx.shadowOffsetY = 2; + ctx.shadowBlur = 3; + ctx.fillStyle = "#454"; + ctx.beginPath(); + ctx.roundRect( pos[0] - w*0.5, pos[1] - 15 - h, w, h,3, 3); + ctx.moveTo( pos[0] - 10, pos[1] - 15 ); + ctx.lineTo( pos[0] + 10, pos[1] - 15 ); + ctx.lineTo( pos[0], pos[1] - 5 ); + ctx.fill(); + ctx.shadowColor = "transparent"; + ctx.textAlign = "center"; + ctx.fillStyle = "#CEC"; + ctx.fillText(text, pos[0], pos[1] - 15 - h * 0.3); + } + /** * draws the shape of the given node in the canvas * @method drawNodeShape @@ -7214,9 +7282,13 @@ LGraphNode.prototype.executeAction = function(action) } ctx.fill(); - ctx.shadowColor = "transparent"; - ctx.fillStyle = "rgba(0,0,0,0.2)"; - ctx.fillRect(0, -1, area[2], 2); + //separator + if(!node.flags.collapsed) + { + ctx.shadowColor = "transparent"; + ctx.fillStyle = "rgba(0,0,0,0.2)"; + ctx.fillRect(0, -1, area[2], 2); + } } ctx.shadowColor = "transparent"; @@ -7249,9 +7321,7 @@ LGraphNode.prototype.executeAction = function(action) if (this.use_gradients) { var grad = LGraphCanvas.gradients[title_color]; if (!grad) { - grad = LGraphCanvas.gradients[ - title_color - ] = ctx.createLinearGradient(0, 0, 400, 0); + grad = LGraphCanvas.gradients[ title_color ] = ctx.createLinearGradient(0, 0, 400, 0); grad.addColorStop(0, title_color); grad.addColorStop(1, "#000"); } @@ -7264,10 +7334,7 @@ LGraphNode.prototype.executeAction = function(action) ctx.beginPath(); if (shape == LiteGraph.BOX_SHAPE || low_quality) { ctx.rect(0, -title_height, size[0] + 1, title_height); - } else if ( - shape == LiteGraph.ROUND_SHAPE || - shape == LiteGraph.CARD_SHAPE - ) { + } else if ( shape == LiteGraph.ROUND_SHAPE || shape == LiteGraph.CARD_SHAPE ) { ctx.roundRect( 0, -title_height, @@ -7303,8 +7370,7 @@ LGraphNode.prototype.executeAction = function(action) ctx.fill(); } - ctx.fillStyle = - node.boxcolor || LiteGraph.NODE_DEFAULT_BOXCOLOR; + ctx.fillStyle = node.boxcolor || LiteGraph.NODE_DEFAULT_BOXCOLOR; ctx.beginPath(); ctx.arc( title_height * 0.5, @@ -7324,8 +7390,7 @@ LGraphNode.prototype.executeAction = function(action) box_size + 2 ); } - ctx.fillStyle = - node.boxcolor || LiteGraph.NODE_DEFAULT_BOXCOLOR; + ctx.fillStyle = node.boxcolor || LiteGraph.NODE_DEFAULT_BOXCOLOR; ctx.fillRect( (title_height - box_size) * 0.5, (title_height + box_size) * -0.5, @@ -8495,31 +8560,20 @@ LGraphNode.prototype.executeAction = function(action) var canvas = LGraphCanvas.active_canvas; var ref_window = canvas.getCanvasWindow(); - var values = LiteGraph.getNodeTypesCategories(); + var values = LiteGraph.getNodeTypesCategories( canvas.filter ); var entries = []; for (var i in values) { if (values[i]) { - entries.push({ - value: values[i], - content: values[i], - has_submenu: true - }); + entries.push({ value: values[i], content: values[i], has_submenu: true }); } } //show categories - var menu = new LiteGraph.ContextMenu( - entries, - { event: e, callback: inner_clicked, parentMenu: prev_menu }, - ref_window - ); + var menu = new LiteGraph.ContextMenu( entries, { event: e, callback: inner_clicked, parentMenu: prev_menu }, ref_window ); function inner_clicked(v, option, e) { var category = v.value; - var node_types = LiteGraph.getNodeTypesInCategory( - category, - canvas.filter - ); + var node_types = LiteGraph.getNodeTypesInCategory( category, canvas.filter ); var values = []; for (var i in node_types) { if (!node_types[i].skip_list) { @@ -8530,11 +8584,7 @@ LGraphNode.prototype.executeAction = function(action) } } - new LiteGraph.ContextMenu( - values, - { event: e, callback: inner_create, parentMenu: menu }, - ref_window - ); + new LiteGraph.ContextMenu( values, { event: e, callback: inner_create, parentMenu: menu }, ref_window ); return false; } @@ -8816,9 +8866,10 @@ LGraphNode.prototype.executeAction = function(action) LGraphCanvas.prototype.showLinkMenu = function(link, e) { var that = this; - + console.log(link.data); new LiteGraph.ContextMenu(["Delete"], { event: e, + title: link.data != null ? link.data.constructor.name : null, callback: inner_clicked }); @@ -10810,12 +10861,15 @@ if (typeof exports != "undefined") { if (v == "" || v == that.name_in_graph || v == "enabled") { return; } - if (that.name_in_graph) { - //already added - that.graph.renameInput(that.name_in_graph, v); - } else { - that.graph.addInput(v, that.properties.type); - } + if(that.graph) + { + if (that.name_in_graph) { + //already added + that.graph.renameInput(that.name_in_graph, v); + } else { + that.graph.addInput(v, that.properties.type); + } + } //what if not?! that.name_widget.value = v; that.name_in_graph = v; }, @@ -11158,9 +11212,84 @@ if (typeof exports != "undefined") { LiteGraph.registerNodeType("basic/object_property", ObjectProperty); + function ObjectKeys() { + this.addInput("obj", ""); + this.addOutput("keys", "array"); + this.size = [140, 30]; + } + + ObjectKeys.title = "Object keys"; + ObjectKeys.desc = "Outputs an array with the keys of an object"; + + ObjectKeys.prototype.onExecute = function() { + var data = this.getInputData(0); + if (data != null) { + this.setOutputData(0, Object.keys(data) ); + } + }; + + LiteGraph.registerNodeType("basic/object_keys", ObjectKeys); + + function MergeObjects() { + this.addInput("A", "object"); + this.addInput("B", "object"); + this.addOutput("", "object"); + this._result = {}; + var that = this; + this.addWidget("button","clear","",function(){ + that._result = {}; + }); + this.size = this.computeSize(); + } + + MergeObjects.title = "Merge Objects"; + MergeObjects.desc = "Creates an object copying properties from others"; + + MergeObjects.prototype.onExecute = function() { + var A = this.getInputData(0); + var B = this.getInputData(1); + var C = this._result; + if(A) + for(var i in A) + C[i] = A[i]; + if(B) + for(var i in B) + C[i] = B[i]; + this.setOutputData(0,C); + }; + + LiteGraph.registerNodeType("basic/merge_objects", MergeObjects ); + + //Store as variable + function Variable() { + this.size = [60, 30]; + this.addInput("in"); + this.addOutput("out"); + this.properties = { varname: "myname", global: false }; + this.value = null; + } + + Variable.title = "Variable"; + Variable.desc = "store/read variable value"; + + Variable.prototype.onExecute = function() { + this.value = this.getInputData(0); + if(this.graph) + this.graph.vars[ this.properties.varname ] = this.value; + if(this.properties.global) + global[this.properties.varname] = this.value; + this.setOutputData(0, this.value ); + }; + + Variable.prototype.getTitle = function() { + return this.properties.varname; + }; + + LiteGraph.registerNodeType("basic/variable", Variable); + //Watch a value in the editor function Watch() { - this.size = [60, 20]; + this.size = [60, 30]; this.addInput("value", 0, { label: "" }); this.value = 0; } @@ -11209,7 +11338,7 @@ if (typeof exports != "undefined") { function Cast() { this.addInput("in", 0); this.addOutput("out", 0); - this.size = [40, 20]; + this.size = [40, 30]; } Cast.title = "Cast"; @@ -11293,7 +11422,7 @@ if (typeof exports != "undefined") { //Execites simple code function NodeScript() { - this.size = [60, 20]; + this.size = [60, 30]; this.addProperty("onExecute", "return A;"); this.addInput("A", ""); this.addInput("B", ""); @@ -11304,9 +11433,10 @@ if (typeof exports != "undefined") { } NodeScript.prototype.onConfigure = function(o) { - if (o.properties.onExecute) { + if (o.properties.onExecute && LiteGraph.allow_scripts) this.compileCode(o.properties.onExecute); - } + else + console.warn("Script not compiled, LiteGraph.allow_scripts is false"); }; NodeScript.title = "Script"; @@ -11317,9 +11447,10 @@ if (typeof exports != "undefined") { }; NodeScript.prototype.onPropertyChanged = function(name, value) { - if (name == "onExecute" && LiteGraph.allow_scripts) { + if (name == "onExecute" && LiteGraph.allow_scripts) this.compileCode(value); - } + else + console.warn("Script not compiled, LiteGraph.allow_scripts is false"); }; NodeScript.prototype.compileCode = function(code) { @@ -11380,7 +11511,7 @@ if (typeof exports != "undefined") { //Show value inside the debug console function LogEvent() { - this.size = [60, 20]; + this.size = [60, 30]; this.addInput("event", LiteGraph.ACTION); } @@ -11393,6 +11524,29 @@ if (typeof exports != "undefined") { LiteGraph.registerNodeType("events/log", LogEvent); + //convert to Event if the value is true + function TriggerEvent() { + this.size = [60, 30]; + this.addInput("in", ""); + this.addOutput("true", LiteGraph.EVENT); + this.addOutput("change", LiteGraph.EVENT); + this.was_true = false; + } + + TriggerEvent.title = "TriggerEvent"; + TriggerEvent.desc = "Triggers event if value is true"; + + TriggerEvent.prototype.onExecute = function(action, param) { + var v = this.getInputData(0); + if(v) + this.triggerSlot(0, param); + if(v && !this.was_true) + this.triggerSlot(1, param); + this.was_true = v; + }; + + LiteGraph.registerNodeType("events/trigger", TriggerEvent); + //Sequencer for events function Sequencer() { this.addInput("", LiteGraph.ACTION); @@ -11430,7 +11584,7 @@ if (typeof exports != "undefined") { //Filter events function FilterEvent() { - this.size = [60, 20]; + this.size = [60, 30]; this.addInput("event", LiteGraph.ACTION); this.addOutput("event", LiteGraph.EVENT); this.properties = { @@ -11523,7 +11677,7 @@ if (typeof exports != "undefined") { //Show value inside the debug console function DelayEvent() { - this.size = [60, 20]; + this.size = [60, 30]; this.addProperty("time_in_ms", 1000); this.addInput("event", LiteGraph.ACTION); this.addOutput("on_time", LiteGraph.EVENT); @@ -11641,6 +11795,41 @@ if (typeof exports != "undefined") { }; LiteGraph.registerNodeType("events/timer", TimerEvent); + + function DataStore() { + this.addInput("data", ""); + this.addInput("assign", LiteGraph.ACTION); + this.addOutput("data", ""); + this._last_value = null; + this.properties = { data: null, serialize: true }; + var that = this; + this.addWidget("button","store","",function(){ + that.properties.data = that._last_value; + }); + } + + DataStore.title = "Data Store"; + DataStore.desc = "Stores data and only changes when event is received"; + + DataStore.prototype.onExecute = function() + { + this._last_value = this.getInputData(0); + this.setOutputData(0, this.properties.data ); + } + + DataStore.prototype.onAction = function(action, param) { + this.properties.data = this._last_value; + }; + + DataStore.prototype.onSerialize = function(o) + { + if(o.data == null) + return; + if(this.properties.serialize == false || (o.data.constructor !== String && o.data.constructor !== Number && o.data.constructor !== Boolean && o.data.constructor !== Array && o.data.constructor !== Object )) + o.data = null; + } + + LiteGraph.registerNodeType("basic/data_store", DataStore); })(this); //widgets @@ -12591,6 +12780,9 @@ if (typeof exports != "undefined") { } }; + GamepadInput.mapping = {a:0,b:1,x:2,y:3,lb:4,rb:5,lt:6,rt:7,back:8,start:9,ls:10,rs:11 }; + GamepadInput.mapping_array = ["a","b","x","y","lb","rb","lt","rt","back","start","ls","rs"]; + GamepadInput.prototype.getGamepad = function() { var getGamepads = navigator.getGamepads || @@ -12634,75 +12826,44 @@ if (typeof exports != "undefined") { for (var j = 0; j < gamepad.buttons.length; j++) { this._current_buttons[j] = gamepad.buttons[j].pressed; - //mapping of XBOX - switch ( - j //I use a switch to ensure that a player with another gamepad could play - ) { - case 0: - xbox.buttons["a"] = gamepad.buttons[j].pressed; - break; - case 1: - xbox.buttons["b"] = gamepad.buttons[j].pressed; - break; - case 2: - xbox.buttons["x"] = gamepad.buttons[j].pressed; - break; - case 3: - xbox.buttons["y"] = gamepad.buttons[j].pressed; - break; - case 4: - xbox.buttons["lb"] = gamepad.buttons[j].pressed; - break; - case 5: - xbox.buttons["rb"] = gamepad.buttons[j].pressed; - break; - case 6: - xbox.buttons["lt"] = gamepad.buttons[j].pressed; - break; - case 7: - xbox.buttons["rt"] = gamepad.buttons[j].pressed; - break; - case 8: - xbox.buttons["back"] = gamepad.buttons[j].pressed; - break; - case 9: - xbox.buttons["start"] = gamepad.buttons[j].pressed; - break; - case 10: - xbox.buttons["ls"] = gamepad.buttons[j].pressed; - break; - case 11: - xbox.buttons["rs"] = gamepad.buttons[j].pressed; - break; - case 12: - if (gamepad.buttons[j].pressed) { - xbox.hat += "up"; - xbox.hatmap |= GamepadInput.UP; - } - break; - case 13: - if (gamepad.buttons[j].pressed) { - xbox.hat += "down"; - xbox.hatmap |= GamepadInput.DOWN; - } - break; - case 14: - if (gamepad.buttons[j].pressed) { - xbox.hat += "left"; - xbox.hatmap |= GamepadInput.LEFT; - } - break; - case 15: - if (gamepad.buttons[j].pressed) { - xbox.hat += "right"; - xbox.hatmap |= GamepadInput.RIGHT; - } - break; - case 16: - xbox.buttons["home"] = gamepad.buttons[j].pressed; - break; - default: - } + if(j < 12) + { + xbox.buttons[ GamepadInput.mapping_array[j] ] = gamepad.buttons[j].pressed; + if(gamepad.buttons[j].was_pressed) + this.trigger( GamepadInput.mapping_array[j] + "_button_event" ); + } + else //mapping of XBOX + switch ( j ) //I use a switch to ensure that a player with another gamepad could play + { + case 12: + if (gamepad.buttons[j].pressed) { + xbox.hat += "up"; + xbox.hatmap |= GamepadInput.UP; + } + break; + case 13: + if (gamepad.buttons[j].pressed) { + xbox.hat += "down"; + xbox.hatmap |= GamepadInput.DOWN; + } + break; + case 14: + if (gamepad.buttons[j].pressed) { + xbox.hat += "left"; + xbox.hatmap |= GamepadInput.LEFT; + } + break; + case 15: + if (gamepad.buttons[j].pressed) { + xbox.hat += "right"; + xbox.hatmap |= GamepadInput.RIGHT; + } + break; + case 16: + xbox.buttons["home"] = gamepad.buttons[j].pressed; + break; + default: + } } gamepad.xbox = xbox; return gamepad; @@ -12760,6 +12921,16 @@ if (typeof exports != "undefined") { ["rs_button", "number"], ["start_button", "number"], ["back_button", "number"], + ["a_button_event", LiteGraph.EVENT ], + ["b_button_event", LiteGraph.EVENT ], + ["x_button_event", LiteGraph.EVENT ], + ["y_button_event", LiteGraph.EVENT ], + ["lb_button_event", LiteGraph.EVENT ], + ["rb_button_event", LiteGraph.EVENT ], + ["ls_button_event", LiteGraph.EVENT ], + ["rs_button_event", LiteGraph.EVENT ], + ["start_button_event", LiteGraph.EVENT ], + ["back_button_event", LiteGraph.EVENT ], ["hat_left", "number"], ["hat_right", "number"], ["hat_up", "number"], @@ -12778,7 +12949,7 @@ if (typeof exports != "undefined") { //Converter function Converter() { this.addInput("in", "*"); - this.size = [60, 20]; + this.size = [80, 30]; } Converter.title = "Converter"; @@ -12853,7 +13024,7 @@ if (typeof exports != "undefined") { function Bypass() { this.addInput("in"); this.addOutput("out"); - this.size = [60, 20]; + this.size = [80, 30]; } Bypass.title = "Bypass"; @@ -12891,7 +13062,7 @@ if (typeof exports != "undefined") { this.addProperty("out_min", 0); this.addProperty("out_max", 1); - this.size = [80, 20]; + this.size = [80, 30]; } MathRange.title = "Range"; @@ -12955,7 +13126,7 @@ if (typeof exports != "undefined") { this.addOutput("value", "number"); this.addProperty("min", 0); this.addProperty("max", 1); - this.size = [60, 20]; + this.size = [80, 30]; } MathRand.title = "Rand"; @@ -12997,7 +13168,7 @@ if (typeof exports != "undefined") { this.addProperty("min", 0); this.addProperty("max", 1); this.addProperty("smooth", true); - this.size = [90, 20]; + this.size = [90, 30]; } MathNoise.title = "Noise"; @@ -13047,7 +13218,7 @@ if (typeof exports != "undefined") { this.addProperty("min_time", 1); this.addProperty("max_time", 2); this.addProperty("duration", 0.2); - this.size = [90, 20]; + this.size = [90, 30]; this._remaining_time = 0; this._blink_time = 0; } @@ -13086,7 +13257,7 @@ if (typeof exports != "undefined") { function MathClamp() { this.addInput("in", "number"); this.addOutput("out", "number"); - this.size = [60, 20]; + this.size = [80, 30]; this.addProperty("min", 0); this.addProperty("max", 1); } @@ -13162,7 +13333,7 @@ if (typeof exports != "undefined") { function MathAbs() { this.addInput("in", "number"); this.addOutput("out", "number"); - this.size = [60, 20]; + this.size = [80, 30]; } MathAbs.title = "Abs"; @@ -13561,12 +13732,12 @@ if (typeof exports != "undefined") { this.addOutput("out", "boolean"); this.addProperty("A", 1); this.addProperty("B", 1); - this.addProperty("OP", ">", "string", { values: MathCondition.values }); + this.addProperty("OP", ">", "enum", { values: MathCondition.values }); this.size = [80, 60]; } - MathCondition.values = [">", "<", "==", "!=", "<=", ">="]; + MathCondition.values = [">", "<", "==", "!=", "<=", ">=", "||", "&&" ]; MathCondition["@OP"] = { type: "enum", title: "operation", @@ -13576,6 +13747,10 @@ if (typeof exports != "undefined") { MathCondition.title = "Condition"; MathCondition.desc = "evaluates condition between A and B"; + MathCondition.prototype.getTitle = function() { + return "A " + this.properties.OP + " B"; + }; + MathCondition.prototype.onExecute = function() { var A = this.getInputData(0); if (A === undefined) { @@ -13611,6 +13786,12 @@ if (typeof exports != "undefined") { case ">=": result = A >= B; break; + case "||": + result = A || B; + break; + case "&&": + result = A && B; + break; } this.setOutputData(0, result); @@ -14132,6 +14313,102 @@ if (typeof exports != "undefined") { (function(global) { var LiteGraph = global.LiteGraph; + //Math 3D operation + function Math3DOperation() { + this.addInput("A", "number,vec3"); + this.addInput("B", "number,vec3"); + this.addOutput("=", "vec3"); + this.addProperty("OP", "+", "enum", { values: Math3DOperation.values }); + this._result = vec3.create(); + } + + Math3DOperation.values = ["+", "-", "*", "/", "%", "^", "max", "min"]; + + Math3DOperation.title = "Operation"; + Math3DOperation.desc = "Easy math 3D operators"; + Math3DOperation["@OP"] = { + type: "enum", + title: "operation", + values: Math3DOperation.values + }; + Math3DOperation.size = [100, 60]; + + Math3DOperation.prototype.getTitle = function() { + if(this.properties.OP == "max" || this.properties.OP == "min" ) + return this.properties.OP + "(A,B)"; + return "A " + this.properties.OP + " B"; + }; + + Math3DOperation.prototype.onExecute = function() { + var A = this.getInputData(0); + var B = this.getInputData(1); + if(A == null || B == null) + return; + if(A.constructor === Number) + A = [A,A,A]; + if(B.constructor === Number) + B = [B,B,B]; + + var result = this._result; + switch (this.properties.OP) { + case "+": + result = vec3.add(result,A,B); + break; + case "-": + result = vec3.sub(result,A,B); + break; + case "x": + case "X": + case "*": + result = vec3.mul(result,A,B); + break; + case "/": + result = vec3.div(result,A,B); + break; + case "%": + result[0] = A[0]%B[0]; + result[1] = A[1]%B[1]; + result[2] = A[2]%B[2]; + break; + case "^": + result[0] = Math.pow(A[0],B[0]); + result[1] = Math.pow(A[1],B[1]); + result[2] = Math.pow(A[2],B[2]); + break; + case "max": + result[0] = Math.max(A[0],B[0]); + result[1] = Math.max(A[1],B[1]); + result[2] = Math.max(A[2],B[2]); + break; + case "min": + result[0] = Math.min(A[0],B[0]); + result[1] = Math.min(A[1],B[1]); + result[2] = Math.min(A[2],B[2]); + break; + default: + console.warn("Unknown operation: " + this.properties.OP); + } + this.setOutputData(0, result); + }; + + Math3DOperation.prototype.onDrawBackground = function(ctx) { + if (this.flags.collapsed) { + return; + } + + ctx.font = "40px Arial"; + ctx.fillStyle = "#666"; + ctx.textAlign = "center"; + ctx.fillText( + this.properties.OP, + this.size[0] * 0.5, + (this.size[1] + LiteGraph.NODE_TITLE_HEIGHT) * 0.5 + ); + ctx.textAlign = "left"; + }; + + LiteGraph.registerNodeType("math3d/operation", Math3DOperation); + function Math3DVec2ToXYZ() { this.addInput("vec2", "vec2"); this.addOutput("x", "number"); @@ -14588,7 +14865,59 @@ if (typeof exports != "undefined") { }; LiteGraph.registerNodeType("math3d/quat-slerp", Math3DQuatSlerp); + + + //Math3D rotate vec3 + function Math3DRemapRange() { + this.addInput("vec3", "vec3"); + this.addOutput("remap", "vec3"); + this.addOutput("clamped", "vec3"); + this.properties = { clamp: true, range_min: [-1, -1, 0], range_max: [1, 1, 0], target_min: [-1,-1,0], target_max:[1,1,0] }; + this._value = vec3.create(); + this._clamped = vec3.create(); + } + + Math3DRemapRange.title = "Remap Range"; + Math3DRemapRange.desc = "remap a 3D range"; + + Math3DRemapRange.prototype.onExecute = function() { + var vec = this.getInputData(0); + if(vec) + this._value.set(vec); + var range_min = this.properties.range_min; + var range_max = this.properties.range_max; + var target_min = this.properties.target_min; + var target_max = this.properties.target_max; + + for(var i = 0; i < 3; ++i) + { + var r = range_max[i] - range_min[i]; + this._clamped[i] = Math.clamp( this._value[i], range_min[i], range_max[i] ); + if(r == 0) + { + this._value[i] = (target_min[i] + target_max[i]) * 0.5; + continue; + } + + var n = (this._value[i] - range_min[i]) / r; + if(this.properties.clamp) + n = Math.clamp(n,0,1); + var t = target_max[i] - target_min[i]; + this._value[i] = target_min[i] + n * t; + } + + this.setOutputData(0,this._value); + this.setOutputData(1,this._clamped); + }; + + LiteGraph.registerNodeType("math3d/remap_range", Math3DRemapRange); + + + } //glMatrix + else + console.warn("No glmatrix found, some Math3D nodes may not work"); + })(this); //basic nodes @@ -14719,9 +15048,8 @@ if (typeof exports != "undefined") { Selector.prototype.onExecute = function() { var sel = this.getInputData(0); - if (sel == null) { + if (sel == null || sel.constructor !== Number) sel = 0; - } this.selected = sel = Math.round(sel) % (this.inputs.length - 1); var v = this.getInputData(sel + 1); if (v !== undefined) { @@ -17308,6 +17636,135 @@ if (typeof exports != "undefined") { LiteGraph.registerNodeType("texture/average", LGraphTextureAverage); + + + // Computes operation between pixels (max, min) ***************************************** + function LGraphTextureMinMax() { + this.addInput("Texture", "Texture"); + this.addOutput("min_t", "Texture"); + this.addOutput("max_t", "Texture"); + this.addOutput("min", "vec4"); + this.addOutput("max", "vec4"); + this.properties = { + mode: "max", + use_previous_frame: true //to avoid stalls + }; + + this._uniforms = { + u_texture: 0 + }; + + this._max = new Float32Array(4); + this._min = new Float32Array(4); + + this._textures_chain = []; + } + + LGraphTextureMinMax.widgets_info = { + mode: { widget: "combo", values: ["min","max","avg"] } + }; + + LGraphTextureMinMax.title = "MinMax"; + LGraphTextureMinMax.desc = "Compute the scene min max"; + + LGraphTextureMinMax.prototype.onExecute = function() { + if (!this.properties.use_previous_frame) { + this.update(); + } + + this.setOutputData(0, this._temp_texture); + this.setOutputData(1, this._luminance); + }; + + //executed before rendering the frame + LGraphTextureMinMax.prototype.onPreRenderExecute = function() { + this.update(); + }; + + LGraphTextureMinMax.prototype.update = function() { + var tex = this.getInputData(0); + if (!tex) { + return; + } + + if ( !this.isOutputConnected(0) && !this.isOutputConnected(1) ) { + return; + } //saves work + + if (!LGraphTextureMinMax._shader) { + LGraphTextureMinMax._shader = new GL.Shader( GL.Shader.SCREEN_VERTEX_SHADER, LGraphTextureMinMax.pixel_shader ); + } + + var temp = this._temp_texture; + var type = gl.UNSIGNED_BYTE; + if (tex.type != type) { + //force floats, half floats cannot be read with gl.readPixels + type = gl.FLOAT; + } + + var size = 512; + + if( !this._textures_chain.length || this._textures_chain[0].type != type ) + { + var index = 0; + while(i) + { + this._textures_chain[i] = new GL.Texture( size, size, { + type: type, + format: gl.RGBA, + filter: gl.NEAREST + }); + size = size >> 2; + i++; + if(size == 1) + break; + } + } + + tex.copyTo( this._textures_chain[0] ); + var prev = this._textures_chain[0]; + for(var i = 1; i <= this._textures_chain.length; ++i) + { + var tex = this._textures_chain[i]; + + prev = tex; + } + + var shader = LGraphTextureMinMax._shader; + var uniforms = this._uniforms; + uniforms.u_mipmap_offset = this.properties.mipmap_offset; + gl.disable(gl.DEPTH_TEST); + gl.disable(gl.BLEND); + this._temp_texture.drawTo(function() { + tex.toViewport(shader, uniforms); + }); + }; + + LGraphTextureMinMax.pixel_shader = + "precision highp float;\n\ + precision highp float;\n\ + uniform mat4 u_samples_a;\n\ + uniform mat4 u_samples_b;\n\ + uniform sampler2D u_texture;\n\ + uniform float u_mipmap_offset;\n\ + varying vec2 v_coord;\n\ + \n\ + void main() {\n\ + vec4 color = vec4(0.0);\n\ + //random average\n\ + for(int i = 0; i < 4; ++i)\n\ + for(int j = 0; j < 4; ++j)\n\ + {\n\ + color += texture2D(u_texture, vec2( u_samples_a[i][j], u_samples_b[i][j] ), u_mipmap_offset );\n\ + color += texture2D(u_texture, vec2( 1.0 - u_samples_a[i][j], 1.0 - u_samples_b[i][j] ), u_mipmap_offset );\n\ + }\n\ + gl_FragColor = color * 0.03125;\n\ + }\n\ + "; + + //LiteGraph.registerNodeType("texture/clustered_operation", LGraphTextureClusteredOperation); + + function LGraphTextureTemporalSmooth() { this.addInput("in", "Texture"); this.addInput("factor", "Number"); @@ -17695,7 +18152,7 @@ if (typeof exports != "undefined") { this.addOutput("B", "Texture"); this.addOutput("A", "Texture"); - this.properties = { use_luminance: true }; + //this.properties = { use_single_channel: true }; if (!LGraphTextureChannels._shader) { LGraphTextureChannels._shader = new GL.Shader( Shader.SCREEN_VERTEX_SHADER, @@ -17717,7 +18174,8 @@ if (typeof exports != "undefined") { this._channels = Array(4); } - var format = this.properties.use_luminance ? gl.LUMINANCE : gl.RGBA; + //var format = this.properties.use_single_channel ? gl.LUMINANCE : gl.RGBA; //not supported by WebGL1 + var format = gl.RGB; var connections = 0; for (var i = 0; i < 4; i++) { if (this.isOutputConnected(i)) { @@ -20230,69 +20688,31 @@ if (typeof exports != "undefined") { LiteGraph.registerNodeType("texture/matte", LGraphTextureMatte); //*********************************** - //Cubemap reader (to pass a cubemap to a node that requires cubemaps and no images) - function LGraphCubemap() { - this.addOutput("Cubemap", "Cubemap"); - this.properties = { name: "" }; - this.size = [ - LGraphTexture.image_preview_size, - LGraphTexture.image_preview_size - ]; + function LGraphCubemapToTexture2D() { + this.addInput("in", "texture"); + this.addInput("yaw", "number"); + this.addOutput("out", "texture"); + this.properties = { yaw: 0 }; } - LGraphCubemap.title = "Cubemap"; + LGraphCubemapToTexture2D.title = "CubemapToTexture2D"; + LGraphCubemapToTexture2D.desc = "Transforms a CUBEMAP texture into a TEXTURE2D in Polar Representation"; - LGraphCubemap.prototype.onDropFile = function(data, filename, file) { - if (!data) { - this._drop_texture = null; - this.properties.name = ""; - } else { - if (typeof data == "string") { - this._drop_texture = GL.Texture.fromURL(data); - } else { - this._drop_texture = GL.Texture.fromDDSInMemory(data); - } - this.properties.name = filename; - } + LGraphCubemapToTexture2D.prototype.onExecute = function() { + if (!this.isOutputConnected(0)) + return; + + var tex = this.getInputData(0); + if ( !tex || tex.texture_type != GL.TEXTURE_CUBE_MAP ) + return; + if( this._last_tex && ( this._last_tex.height != tex.height || this._last_tex.type != tex.type )) + this._last_tex = null; + var yaw = this.getInputOrProperty("yaw"); + this._last_tex = GL.Texture.cubemapToTexture2D( tex, tex.height, this._last_tex, true, yaw ); + this.setOutputData( 0, this._last_tex ); }; - LGraphCubemap.prototype.onExecute = function() { - if (this._drop_texture) { - this.setOutputData(0, this._drop_texture); - return; - } - - if (!this.properties.name) { - return; - } - - var tex = LGraphTexture.getTexture(this.properties.name); - if (!tex) { - return; - } - - this._last_tex = tex; - this.setOutputData(0, tex); - }; - - LGraphCubemap.prototype.onDrawBackground = function(ctx) { - if (this.flags.collapsed || this.size[1] <= 20) { - return; - } - - if (!ctx.webgl) { - return; - } - - var cube_mesh = gl.meshes["cube"]; - if (!cube_mesh) { - cube_mesh = gl.meshes["cube"] = GL.Mesh.cube({ size: 1 }); - } - - //var view = mat4.lookAt( mat4.create(), [0,0 - }; - - LiteGraph.registerNodeType("texture/cubemap", LGraphCubemap); + LiteGraph.registerNodeType( "texture/cubemapToTexture2D", LGraphCubemapToTexture2D ); } //litegl.js defined })(this); diff --git a/build/litegraph.min.js b/build/litegraph.min.js index 2abf065f8..dfaf00a26 100755 --- a/build/litegraph.min.js +++ b/build/litegraph.min.js @@ -1,608 +1,621 @@ -(function(v){function d(a){c.debug&&console.log("Graph created");this.list_of_graphcanvas=null;this.clear();a&&this.configure(a)}function h(a,b,e,s,l,c){this.id=a;this.type=b;this.origin_id=e;this.origin_slot=s;this.target_id=l;this.target_slot=c;this._data=null;this._pos=new Float32Array(2)}function q(a){this._ctor(a)}function n(a){this._ctor(a)}function t(a,b){this.offset=new Float32Array([0,0]);this.scale=1;this.max_scale=10;this.min_scale=0.1;this.onredraw=null;this.enabled=!0;this.last_mouse= -[0,0];this.element=null;this.visible_area=new Float32Array(4);a&&(this.element=a,b||this.bindEvents(a))}function f(a,b,e){e=e||{};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.ds=new t;this.zoom_modify_alpha=!0;this.title_text_font=""+c.NODE_TEXT_SIZE+"px Arial";this.inner_text_font="normal "+c.NODE_SUBTEXT_SIZE+"px Arial";this.node_title_color=c.NODE_TITLE_COLOR;this.default_link_color=c.LINK_COLOR;this.default_connection_color={input_off:"#778",input_on:"#7F7",output_off:"#778",output_on:"#7F7"};this.highquality_render=!0;this.use_gradients=!1;this.editor_alpha=1;this.pause_rendering=!1;this.clear_background= +(function(t){function e(a){b.debug&&console.log("Graph created");this.list_of_graphcanvas=null;this.clear();a&&this.configure(a)}function f(a,c,d,r,m,b){this.id=a;this.type=c;this.origin_id=d;this.origin_slot=r;this.target_id=m;this.target_slot=b;this._data=null;this._pos=new Float32Array(2)}function q(a){this._ctor(a)}function p(a){this._ctor(a)}function s(a,c){this.offset=new Float32Array([0,0]);this.scale=1;this.max_scale=10;this.min_scale=0.1;this.onredraw=null;this.enabled=!0;this.last_mouse= +[0,0];this.element=null;this.visible_area=new Float32Array(4);a&&(this.element=a,c||this.bindEvents(a))}function l(a,c,d){d=d||{};this.background_image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAIAAAD/gAIDAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQBJREFUeNrs1rEKwjAUhlETUkj3vP9rdmr1Ysammk2w5wdxuLgcMHyptfawuZX4pJSWZTnfnu/lnIe/jNNxHHGNn//HNbbv+4dr6V+11uF527arU7+u63qfa/bnmh8sWLBgwYJlqRf8MEptXPBXJXa37BSl3ixYsGDBMliwFLyCV/DeLIMFCxYsWLBMwSt4Be/NggXLYMGCBUvBK3iNruC9WbBgwYJlsGApeAWv4L1ZBgsWLFiwYJmCV/AK3psFC5bBggULloJX8BpdwXuzYMGCBctgwVLwCl7Be7MMFixYsGDBsu8FH1FaSmExVfAxBa/gvVmwYMGCZbBg/W4vAQYA5tRF9QYlv/QAAAAASUVORK5CYII="; +a&&a.constructor===String&&(a=document.querySelector(a));this.ds=new s;this.zoom_modify_alpha=!0;this.title_text_font=""+b.NODE_TEXT_SIZE+"px Arial";this.inner_text_font="normal "+b.NODE_SUBTEXT_SIZE+"px Arial";this.node_title_color=b.NODE_TITLE_COLOR;this.default_link_color=b.LINK_COLOR;this.default_connection_color={input_off:"#778",input_on:"#7F7",output_off:"#778",output_on:"#7F7"};this.highquality_render=!0;this.use_gradients=!1;this.editor_alpha=1;this.pause_rendering=!1;this.clear_background= !0;this.read_only=!1;this.render_only_selected=!0;this.live_mode=!1;this.allow_searchbox=this.allow_interaction=this.allow_dragnodes=this.allow_dragcanvas=this.show_info=!0;this.drag_mode=this.allow_reconnect_links=!1;this.filter=this.dragging_rectangle=null;this.always_render_background=!1;this.render_canvas_border=this.render_shadows=!0;this.render_connections_shadows=!1;this.render_connections_border=!0;this.render_connection_arrows=this.render_curved_connections=!1;this.render_collapsed_slots= -!0;this.render_execution_order=!1;this.render_title_colored=!0;this.links_render_mode=c.SPLINE_LINK;this.canvas_mouse=[0,0];this.onDrawOverlay=this.onDrawForeground=this.onDrawBackground=this.onMouse=this.onSearchBoxSelection=this.onSearchBox=null;this.connections_width=3;this.round_radius=8;this.node_widget=this.current_node=null;this.last_mouse_position=[0,0];this.visible_area=this.ds.visible_area;this.visible_links=[];b&&b.attachCanvas(this);this.setCanvas(a);this.clear();e.skip_render||this.startRendering(); -this.autoresize=e.autoresize}function y(a,b){return Math.sqrt((b[0]-a[0])*(b[0]-a[0])+(b[1]-a[1])*(b[1]-a[1]))}function B(a,b,e,s,l,c){return ea&&sb?!0:!1}function A(a,b){var e=a[0]+a[2],s=a[1]+a[3],l=b[1]+b[3];return a[0]>b[0]+b[2]||a[1]>l||ed.width-f.width-10&&(c=d.width-f.width-10);g>d.height-f.height-10&&(g=d.height-f.height-10)}l.style.left=c+"px";l.style.top=g+"px";b.scale&& -(l.style.transform="scale("+b.scale+")")}var c=v.LiteGraph={VERSION:0.4,CANVAS_GRID_SIZE:10,NODE_TITLE_HEIGHT:30,NODE_TITLE_TEXT_Y:20,NODE_SLOT_HEIGHT:20,NODE_WIDGET_HEIGHT:20,NODE_WIDTH:140,NODE_MIN_WIDTH:50,NODE_COLLAPSED_RADIUS:10,NODE_COLLAPSED_WIDTH:80,NODE_TITLE_COLOR:"#999",NODE_TEXT_SIZE:14,NODE_TEXT_COLOR:"#AAA",NODE_SUBTEXT_SIZE:12,NODE_DEFAULT_COLOR:"#333",NODE_DEFAULT_BGCOLOR:"#353535",NODE_DEFAULT_BOXCOLOR:"#666",NODE_DEFAULT_SHAPE:"box",DEFAULT_SHADOW_COLOR:"rgba(0,0,0,0.5)",DEFAULT_GROUP_FONT:24, -LINK_COLOR:"#9A9",EVENT_LINK_COLOR:"#A86",CONNECTING_LINK_COLOR:"#AFA",MAX_NUMBER_OF_NODES:1E3,DEFAULT_POSITION:[100,100],VALID_SHAPES:["default","box","round","card"],BOX_SHAPE:1,ROUND_SHAPE:2,CIRCLE_SHAPE:3,CARD_SHAPE:4,ARROW_SHAPE:5,INPUT:1,OUTPUT:2,EVENT:-1,ACTION:-1,ALWAYS:0,ON_EVENT:1,NEVER:2,ON_TRIGGER:3,UP:1,DOWN:2,LEFT:3,RIGHT:4,CENTER:5,STRAIGHT_LINK:0,LINEAR_LINK:1,SPLINE_LINK:2,NORMAL_TITLE:0,NO_TITLE:1,TRANSPARENT_TITLE:2,AUTOHIDE_TITLE:3,proxy:null,node_images_path:"",debug:!1,catch_exceptions:!0, -throw_errors:!0,allow_scripts:!1,registered_node_types:{},node_types_by_file_extension:{},Nodes:{},searchbox_extras:{},registerNodeType:function(a,b){if(!b.prototype)throw"Cannot register a simple object, it must be a class with a prototype";b.type=a;c.debug&&console.log("Node registered: "+a);a.split("/");var e=b.name,s=a.lastIndexOf("/");b.category=a.substr(0,s);b.title||(b.title=e);if(b.prototype)for(var l in q.prototype)b.prototype[l]||(b.prototype[l]=q.prototype[l]);Object.defineProperty(b.prototype, -"shape",{set:function(a){switch(a){case "default":delete this._shape;break;case "box":this._shape=c.BOX_SHAPE;break;case "round":this._shape=c.ROUND_SHAPE;break;case "circle":this._shape=c.CIRCLE_SHAPE;break;case "card":this._shape=c.CARD_SHAPE;break;default:this._shape=a}},get:function(a){return this._shape},enumerable:!0});s=this.registered_node_types[a];this.registered_node_types[a]=b;b.constructor.name&&(this.Nodes[e]=b);if(c.onNodeTypeRegistered)c.onNodeTypeRegistered(a,b);if(s&&c.onNodeTypeReplaced)c.onNodeTypeReplaced(a, -b,s);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(l in b.supported_extensions)this.node_types_by_file_extension[b.supported_extensions[l].toLowerCase()]=b},wrapFunctionAsNode:function(a,b,e,s,l){for(var g=Array(b.length),d="",f=c.getParameterNames(b),k=0;kd&&(d=c.size[0]),f+=c.size[1]+a;b+=d+a}this.setDirtyCanvas(!0,!0)};d.prototype.getTime=function(){return this.globaltime};d.prototype.getFixedTime=function(){return this.fixedtime};d.prototype.getElapsedTime=function(){return this.elapsed_time};d.prototype.sendEventToAllNodes=function(a,b,e){e=e||c.ALWAYS;var s=this._nodes_in_order?this._nodes_in_order:this._nodes; -if(s)for(var l=0,g=s.length;l=c.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_ida.length||(this._pos[0]=a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});this.id=-1;this.type=null;this.inputs=[];this.outputs=[];this.connections=[]; -this.properties={};this.properties_info=[];this.flags={}};q.prototype.configure=function(a){this.graph&&this.graph._version++;for(var b in a)if("properties"==b)for(var e in a.properties){if(this.properties[e]=a.properties[e],this.onPropertyChanged)this.onPropertyChanged(e,a.properties[e])}else null!=a[b]&&("object"==typeof a[b]?this[b]&&this[b].configure?this[b].configure(a[b]):this[b]=c.cloneObject(a[b],this[b]):this[b]=a[b]);a.title||(this.title=this.constructor.title);if(this.onConnectionsChange){if(this.inputs)for(e= -0;e=this.outputs.length)){var e=this.outputs[a];if(e&&(e._data=b,this.outputs[a].links))for(e=0;e=this.outputs.length)){var e=this.outputs[a];if(e&&(e.type=b,this.outputs[a].links))for(e=0;e=this.inputs.length||null==this.inputs[a].link)){var e=this.graph.links[this.inputs[a].link];if(!e)return null;if(!b)return e.data;var c=this.graph.getNodeById(e.origin_id);if(!c)return e.data;if(c.updateOutputData)c.updateOutputData(e.origin_slot);else if(c.onExecute)c.onExecute();return e.data}};q.prototype.getInputDataType=function(a){if(!this.inputs||a>=this.inputs.length||null==this.inputs[a].link)return null;a=this.graph.links[this.inputs[a].link]; -if(!a)return null;var b=this.graph.getNodeById(a.origin_id);return b?(a=b.outputs[a.origin_slot])?a.type:null:a.type};q.prototype.getInputDataByName=function(a,b){var e=this.findInputSlot(a);return-1==e?null:this.getInputData(e,b)};q.prototype.isInputConnected=function(a){return this.inputs?a=this.inputs.length)return null;a=this.inputs[a];return a&&null!==a.link?(a=this.graph.links[a.link])?this.graph.getNodeById(a.origin_id):null:null};q.prototype.getInputOrProperty=function(a){if(!this.inputs||!this.inputs.length)return this.properties?this.properties[a]:null;for(var b=0,e=this.inputs.length;b= +!0;this.render_execution_order=!1;this.render_link_tooltip=this.render_title_colored=!0;this.links_render_mode=b.SPLINE_LINK;this.canvas_mouse=[0,0];this.onDrawLinkTooltip=this.onDrawOverlay=this.onDrawForeground=this.onDrawBackground=this.onMouse=this.onSearchBoxSelection=this.onSearchBox=null;this.connections_width=3;this.round_radius=8;this.over_link_center=this.node_widget=this.current_node=null;this.last_mouse_position=[0,0];this.visible_area=this.ds.visible_area;this.visible_links=[];c&&c.attachCanvas(this); +this.setCanvas(a);this.clear();d.skip_render||this.startRendering();this.autoresize=d.autoresize}function A(a,c){return Math.sqrt((c[0]-a[0])*(c[0]-a[0])+(c[1]-a[1])*(c[1]-a[1]))}function z(a,c,d,r,m,b){return da&&rc?!0:!1}function w(a,c){var d=a[0]+a[2],r=a[1]+a[3],b=c[1]+c[3];return a[0]>c[0]+c[2]||a[1]>b||dh.width-k.width-10&&(g=h.width-k.width-10);E>h.height-k.height- +10&&(E=h.height-k.height-10)}b.style.left=g+"px";b.style.top=E+"px";c.scale&&(b.style.transform="scale("+c.scale+")")}var b=t.LiteGraph={VERSION:0.4,CANVAS_GRID_SIZE:10,NODE_TITLE_HEIGHT:30,NODE_TITLE_TEXT_Y:20,NODE_SLOT_HEIGHT:20,NODE_WIDGET_HEIGHT:20,NODE_WIDTH:140,NODE_MIN_WIDTH:50,NODE_COLLAPSED_RADIUS:10,NODE_COLLAPSED_WIDTH:80,NODE_TITLE_COLOR:"#999",NODE_TEXT_SIZE:14,NODE_TEXT_COLOR:"#AAA",NODE_SUBTEXT_SIZE:12,NODE_DEFAULT_COLOR:"#333",NODE_DEFAULT_BGCOLOR:"#353535",NODE_DEFAULT_BOXCOLOR:"#666", +NODE_DEFAULT_SHAPE:"box",DEFAULT_SHADOW_COLOR:"rgba(0,0,0,0.5)",DEFAULT_GROUP_FONT:24,LINK_COLOR:"#9A9",EVENT_LINK_COLOR:"#A86",CONNECTING_LINK_COLOR:"#AFA",MAX_NUMBER_OF_NODES:1E3,DEFAULT_POSITION:[100,100],VALID_SHAPES:["default","box","round","card"],BOX_SHAPE:1,ROUND_SHAPE:2,CIRCLE_SHAPE:3,CARD_SHAPE:4,ARROW_SHAPE:5,INPUT:1,OUTPUT:2,EVENT:-1,ACTION:-1,ALWAYS:0,ON_EVENT:1,NEVER:2,ON_TRIGGER:3,UP:1,DOWN:2,LEFT:3,RIGHT:4,CENTER:5,STRAIGHT_LINK:0,LINEAR_LINK:1,SPLINE_LINK:2,NORMAL_TITLE:0,NO_TITLE:1, +TRANSPARENT_TITLE:2,AUTOHIDE_TITLE:3,proxy:null,node_images_path:"",debug:!1,catch_exceptions:!0,throw_errors:!0,allow_scripts:!1,registered_node_types:{},node_types_by_file_extension:{},Nodes:{},searchbox_extras:{},registerNodeType:function(a,c){if(!c.prototype)throw"Cannot register a simple object, it must be a class with a prototype";c.type=a;b.debug&&console.log("Node registered: "+a);a.split("/");var d=c.name,r=a.lastIndexOf("/");c.category=a.substr(0,r);c.title||(c.title=d);if(c.prototype)for(var m in q.prototype)c.prototype[m]|| +(c.prototype[m]=q.prototype[m]);Object.defineProperty(c.prototype,"shape",{set:function(a){switch(a){case "default":delete this._shape;break;case "box":this._shape=b.BOX_SHAPE;break;case "round":this._shape=b.ROUND_SHAPE;break;case "circle":this._shape=b.CIRCLE_SHAPE;break;case "card":this._shape=b.CARD_SHAPE;break;default:this._shape=a}},get:function(a){return this._shape},enumerable:!0});r=this.registered_node_types[a];this.registered_node_types[a]=c;c.constructor.name&&(this.Nodes[d]=c);if(b.onNodeTypeRegistered)b.onNodeTypeRegistered(a, +c);if(r&&b.onNodeTypeReplaced)b.onNodeTypeReplaced(a,c,r);c.prototype.onPropertyChange&&console.warn("LiteGraph node class "+a+" has onPropertyChange method, it must be called onPropertyChanged with d at the end");if(c.supported_extensions)for(m in c.supported_extensions)this.node_types_by_file_extension[c.supported_extensions[m].toLowerCase()]=c},wrapFunctionAsNode:function(a,c,d,r,m){for(var g=Array(c.length),h="",k=b.getParameterNames(c),e=0;eh&&(h=m.size[0]),k+=m.size[1]+a;c+=h+a}this.setDirtyCanvas(!0,!0)};e.prototype.getTime=function(){return this.globaltime};e.prototype.getFixedTime=function(){return this.fixedtime};e.prototype.getElapsedTime=function(){return this.elapsed_time};e.prototype.sendEventToAllNodes=function(a,c,d){d=d||b.ALWAYS;var r=this._nodes_in_order?this._nodes_in_order:this._nodes; +if(r)for(var m=0,g=r.length;m=b.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_ida.length||(this._pos[0]=a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});this.id=-1;this.type=null;this.inputs=[];this.outputs=[];this.connections=[]; +this.properties={};this.properties_info=[];this.flags={}};q.prototype.configure=function(a){this.graph&&this.graph._version++;for(var c in a)if("properties"==c)for(var d in a.properties){if(this.properties[d]=a.properties[d],this.onPropertyChanged)this.onPropertyChanged(d,a.properties[d])}else null!=a[c]&&("object"==typeof a[c]?this[c]&&this[c].configure?this[c].configure(a[c]):this[c]=b.cloneObject(a[c],this[c]):this[c]=a[c]);a.title||(this.title=this.constructor.title);if(this.onConnectionsChange){if(this.inputs)for(d= +0;d=this.outputs.length)){var d=this.outputs[a];if(d&&(d._data=c,this.outputs[a].links))for(d=0;d=this.outputs.length)){var d=this.outputs[a];if(d&&(d.type=c,this.outputs[a].links))for(d=0;d=this.inputs.length||null==this.inputs[a].link)){var d=this.graph.links[this.inputs[a].link];if(!d)return null;if(!c)return d.data;var b=this.graph.getNodeById(d.origin_id);if(!b)return d.data;if(b.updateOutputData)b.updateOutputData(d.origin_slot);else if(b.onExecute)b.onExecute();return d.data}};q.prototype.getInputDataType=function(a){if(!this.inputs||a>=this.inputs.length||null==this.inputs[a].link)return null;a=this.graph.links[this.inputs[a].link]; +if(!a)return null;var c=this.graph.getNodeById(a.origin_id);return c?(a=c.outputs[a.origin_slot])?a.type:null:a.type};q.prototype.getInputDataByName=function(a,c){var d=this.findInputSlot(a);return-1==d?null:this.getInputData(d,c)};q.prototype.isInputConnected=function(a){return this.inputs?a=this.inputs.length)return null;a=this.inputs[a];return a&&null!==a.link?(a=this.graph.links[a.link])?this.graph.getNodeById(a.origin_id):null:null};q.prototype.getInputOrProperty=function(a){if(!this.inputs||!this.inputs.length)return this.properties?this.properties[a]:null;for(var c=0,d=this.inputs.length;c= this.outputs.length?null:this.outputs[a]._data};q.prototype.getOutputInfo=function(a){return this.outputs?a=this.outputs.length)return null;a=this.outputs[a];if(!a.links||0==a.links.length)return null;for(var b=[],e=0;ea&&this.pos[1]-l-eb)return!0;return!1};q.prototype.getSlotInPosition=function(a,b){var e=new Float32Array(2);if(this.inputs)for(var c=0,l=this.inputs.length;c< -l;++c){var g=this.inputs[c];this.getConnectionPos(!0,c,e);if(B(a,b,e[0]-10,e[1]-5,20,10))return{input:g,slot:c,link_pos:e}}if(this.outputs)for(c=0,l=this.outputs.length;c=this.outputs.length)return c.debug&&console.log("Connect: Error, slot number not found"), -null;b&&b.constructor===Number&&(b=this.graph.getNodeById(b));if(!b)throw"target node is null";if(b==this)return null;if(e.constructor===String){if(e=b.findInputSlot(e),-1==e)return c.debug&&console.log("Connect: Error, no slot of name "+e),null}else{if(e===c.EVENT)return null;if(!b.inputs||e>=b.inputs.length)return c.debug&&console.log("Connect: Error, slot number not found"),null}null!=b.inputs[e].link&&b.disconnectInput(e);var s=this.outputs[a];if(b.onConnectInput&&!1===b.onConnectInput(e,s.type, -s))return null;var l=b.inputs[e],g=null;if(c.isValidConnection(s.type,l.type)){g=new h(this.graph.last_link_id++,l.type,this.id,a,b.id,e);this.graph.links[g.id]=g;null==s.links&&(s.links=[]);s.links.push(g.id);b.inputs[e].link=g.id;this.graph&&this.graph._version++;if(this.onConnectionsChange)this.onConnectionsChange(c.OUTPUT,a,!0,g,s);if(b.onConnectionsChange)b.onConnectionsChange(c.INPUT,e,!0,g,l);this.graph&&this.graph.onNodeConnectionChange&&(this.graph.onNodeConnectionChange(c.INPUT,b,e,this, -a),this.graph.onNodeConnectionChange(c.OUTPUT,this,a,b,e))}this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this,g);return g};q.prototype.disconnectOutput=function(a,b){if(a.constructor===String){if(a=this.findOutputSlot(a),-1==a)return c.debug&&console.log("Connect: Error, no slot of name "+a),!1}else if(!this.outputs||a>=this.outputs.length)return c.debug&&console.log("Connect: Error, slot number not found"),!1;var e=this.outputs[a];if(!e||!e.links||0==e.links.length)return!1;if(b){b.constructor=== -Number&&(b=this.graph.getNodeById(b));if(!b)throw"Target Node not found";for(var s=0,l=e.links.length;s=this.inputs.length)return c.debug&&console.log("Connect: Error, slot number not found"),!1;var b=this.inputs[a];if(!b)return!1;var e=this.inputs[a].link;this.inputs[a].link=null;var s=this.graph.links[e];if(s){var l=this.graph.getNodeById(s.origin_id);if(!l)return!1;var g=l.outputs[s.origin_slot];if(!g||!g.links||0==g.links.length)return!1;for(var d=0,f=g.links.length;db&&this.inputs[b].pos)return e[0]=this.pos[0]+this.inputs[b].pos[0],e[1]=this.pos[1]+this.inputs[b].pos[1],e;if(!a&& -s>b&&this.outputs[b].pos)return e[0]=this.pos[0]+this.outputs[b].pos[0],e[1]=this.pos[1]+this.outputs[b].pos[1],e;if(this.horizontal)return e[0]=this.pos[0]+this.size[0]/s*(b+0.5),e[1]=a?this.pos[1]-c.NODE_TITLE_HEIGHT:this.pos[1]+this.size[1],e;e[0]=a?this.pos[0]+l:this.pos[0]+this.size[0]+1-l;e[1]=this.pos[1]+(b+0.7)*c.NODE_SLOT_HEIGHT+(this.constructor.slot_start_y||0);return e};q.prototype.alignToGrid=function(){this.pos[0]=c.CANVAS_GRID_SIZE*Math.round(this.pos[0]/c.CANVAS_GRID_SIZE);this.pos[1]= -c.CANVAS_GRID_SIZE*Math.round(this.pos[1]/c.CANVAS_GRID_SIZE)};q.prototype.trace=function(a){this.console||(this.console=[]);this.console.push(a);this.console.length>q.MAX_CONSOLE&&this.console.shift();this.graph.onNodeTrace(this,a)};q.prototype.setDirtyCanvas=function(a,b){this.graph&&this.graph.sendActionToCanvas("setDirty",[a,b])};q.prototype.loadImage=function(a){var b=new Image;b.src=c.node_images_path+a;b.ready=!1;var e=this;b.onload=function(){this.ready=!0;e.setDirtyCanvas(!0)};return b}; -q.prototype.captureInput=function(a){if(this.graph&&this.graph.list_of_graphcanvas)for(var b=this.graph.list_of_graphcanvas,e=0;ea.length||(this._pos[0]= -a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});Object.defineProperty(this,"size",{set:function(a){!a||2>a.length||(this._size[0]=Math.max(140,a[0]),this._size[1]=Math.max(80,a[1]))},get:function(){return this._size},enumerable:!0})};n.prototype.configure=function(a){this.title=a.title;this._bounding.set(a.bounding);this.color=a.color;this.font=a.font};n.prototype.serialize=function(){var a=this._bounding;return{title:this.title,bounding:[Math.round(a[0]),Math.round(a[1]), -Math.round(a[2]),Math.round(a[3])],color:this.color,font:this.font}};n.prototype.move=function(a,b,e){this._pos[0]+=a;this._pos[1]+=b;if(!e)for(e=0;ethis.max_scale&& -(a=this.max_scale);if(a!=this.scale&&this.element){var e=this.element.getBoundingClientRect();if(e){b=b||[0.5*e.width,0.5*e.height];e=this.convertCanvasToOffset(b);this.scale=a;0.01>Math.abs(this.scale-1)&&(this.scale=1);var c=this.convertCanvasToOffset(b),e=[c[0]-e[0],c[1]-e[1]];this.offset[0]+=e[0];this.offset[1]+=e[1];if(this.onredraw)this.onredraw(this)}}};t.prototype.changeDeltaScale=function(a,b){this.changeScale(this.scale*a,b)};t.prototype.reset=function(){this.scale=1;this.offset[0]=0;this.offset[1]= -0};v.LGraphCanvas=c.LGraphCanvas=f;f.link_type_colors={"-1":c.EVENT_LINK_COLOR,number:"#AAA",node:"#DCA"};f.gradients={};f.prototype.clear=function(){this.fps=this.render_time=this.last_draw_time=this.frame=0;this.dragging_rectangle=null;this.selected_nodes={};this.selected_group=null;this.visible_nodes=[];this.connecting_node=this.node_capturing_input=this.node_over=this.node_dragged=null;this.highlighted_links={};this.dirty_bgcanvas=this.dirty_canvas=!0;this.node_widget=this.node_in_panel=this.dirty_area= -null;this.last_mouse=[0,0];this.last_mouseclick=0;this.visible_area.set([0,0,0,0]);if(this.onClear)this.onClear()};f.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)))};f.prototype.openSubgraph=function(a){if(!a)throw"graph cannot be null";if(this.graph==a)throw"graph cannot be the same";this.clear();this.graph&&(this._graph_stack||(this._graph_stack=[]),this._graph_stack.push(this.graph));a.attachCanvas(this); -this.setDirty(!0,!0)};f.prototype.closeSubgraph=function(){if(this._graph_stack&&0!=this._graph_stack.length){var a=this.graph._subgraph_node,b=this._graph_stack.pop();this.selected_nodes={};this.highlighted_links={};b.attachCanvas(this);this.setDirty(!0,!0);a&&(this.centerOnNode(a),this.selectNodes([a]))}};f.prototype.getCurrentGraph=function(){return this.graph};f.prototype.setCanvas=function(a,b){if(a&&a.constructor===String&&(a=document.getElementById(a),!a))throw"Error creating LiteGraph canvas: Canvas not found"; -if(a!==this.canvas&&(!a&&this.canvas&&(b||this.unbindEvents()),this.canvas=a,this.ds.element=a)){a.className+=" lgraphcanvas";a.data=this;a.tabindex="1";this.bgcanvas=null;this.bgcanvas||(this.bgcanvas=document.createElement("canvas"),this.bgcanvas.width=this.canvas.width,this.bgcanvas.height=this.canvas.height);if(null==a.getContext){if("canvas"!=a.localName)throw"Element supplied for LGraphCanvas must be a element, you passed a "+a.localName;throw"This browser doesn't support Canvas";}null== -(this.ctx=a.getContext("2d"))&&(a.webgl_enabled||console.warn("This canvas seems to be WebGL, enabling WebGL renderer"),this.enableWebGL());this._mousemove_callback=this.processMouseMove.bind(this);this._mouseup_callback=this.processMouseUp.bind(this);b||this.bindEvents()}};f.prototype._doNothing=function(a){a.preventDefault();return!1};f.prototype._doReturnTrue=function(a){a.preventDefault();return!0};f.prototype.bindEvents=function(){if(this._events_binded)console.warn("LGraphCanvas: events already binded"); -else{var a=this.canvas,b=this.getCanvasWindow().document;this._mousedown_callback=this.processMouseDown.bind(this);this._mousewheel_callback=this.processMouseWheel.bind(this);a.addEventListener("mousedown",this._mousedown_callback,!0);a.addEventListener("mousemove",this._mousemove_callback);a.addEventListener("mousewheel",this._mousewheel_callback,!1);a.addEventListener("contextmenu",this._doNothing);a.addEventListener("DOMMouseScroll",this._mousewheel_callback,!1);a.addEventListener("touchstart", -this.touchHandler,!0);a.addEventListener("touchmove",this.touchHandler,!0);a.addEventListener("touchend",this.touchHandler,!0);a.addEventListener("touchcancel",this.touchHandler,!0);this._key_callback=this.processKey.bind(this);a.addEventListener("keydown",this._key_callback,!0);b.addEventListener("keyup",this._key_callback,!0);this._ondrop_callback=this.processDrop.bind(this);a.addEventListener("dragover",this._doNothing,!1);a.addEventListener("dragend",this._doNothing,!1);a.addEventListener("drop", -this._ondrop_callback,!1);a.addEventListener("dragenter",this._doReturnTrue,!1);this._events_binded=!0}};f.prototype.unbindEvents=function(){if(this._events_binded){var a=this.getCanvasWindow().document;this.canvas.removeEventListener("mousedown",this._mousedown_callback);this.canvas.removeEventListener("mousewheel",this._mousewheel_callback);this.canvas.removeEventListener("DOMMouseScroll",this._mousewheel_callback);this.canvas.removeEventListener("keydown",this._key_callback);a.removeEventListener("keyup", -this._key_callback);this.canvas.removeEventListener("contextmenu",this._doNothing);this.canvas.removeEventListener("drop",this._ondrop_callback);this.canvas.removeEventListener("dragenter",this._doReturnTrue);this.canvas.removeEventListener("touchstart",this.touchHandler);this.canvas.removeEventListener("touchmove",this.touchHandler);this.canvas.removeEventListener("touchend",this.touchHandler);this.canvas.removeEventListener("touchcancel",this.touchHandler);this._ondrop_callback=this._key_callback= -this._mousewheel_callback=this._mousedown_callback=null;this._events_binded=!1}else console.warn("LGraphCanvas: no events binded")};f.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()};f.prototype.enableWebGL=function(){if(void 0===typeof GL)throw"litegl.js must be included to use a WebGL canvas";if(void 0===typeof enableWebGLCanvas)throw"webglCanvas.js must be included to use this feature";this.gl=this.ctx=enableWebGLCanvas(this.canvas); -this.ctx.webgl=!0;this.bgcanvas=this.canvas;this.bgctx=this.gl;this.canvas.webgl_enabled=!0};f.prototype.setDirty=function(a,b){a&&(this.dirty_canvas=!0);b&&(this.dirty_bgcanvas=!0)};f.prototype.getCanvasWindow=function(){if(!this.canvas)return window;var a=this.canvas.ownerDocument;return a.defaultView||a.parentWindow};f.prototype.startRendering=function(){function a(){this.pause_rendering||this.draw();var b=this.getCanvasWindow();this.is_rendering&&b.requestAnimationFrame(a.bind(this))}this.is_rendering|| -(this.is_rendering=!0,a.call(this))};f.prototype.stopRendering=function(){this.is_rendering=!1};f.prototype.processMouseDown=function(a){if(this.graph){this.adjustMouseEvent(a);var b=this.getCanvasWindow();f.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 e=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes,5), -g=!1,l=300>c.getTime()-this.last_mouseclick;this.canvas_mouse[0]=a.canvasX;this.canvas_mouse[1]=a.canvasY;this.canvas.focus();c.closeAllContextMenus(b);if(!this.onMouse||!0!=this.onMouse(a)){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 d=!1;if(e&&this.allow_interaction&&!g&&!this.read_only){this.live_mode||e.flags.pinned||this.bringToFront(e); -if(!this.connecting_node&&!e.flags.collapsed&&!this.live_mode)if(!g&&!1!==e.resizable&&B(a.canvasX,a.canvasY,e.pos[0]+e.size[0]-5,e.pos[1]+e.size[1]-5,10,10))this.resizing_node=e,this.canvas.style.cursor="se-resize",g=!0;else{if(e.outputs)for(var k=0,m=e.outputs.length;kd[0]+4||a.canvasYd[1]+4)){this.showLinkMenu(e,a);break}this.selected_group=this.graph.getGroupOnPos(a.canvasX,a.canvasY);this.selected_group_resizing=!1;this.selected_group&& -!this.read_only&&(a.ctrlKey&&(this.dragging_rectangle=null),10>y([a.canvasX,a.canvasY],[this.selected_group.pos[0]+this.selected_group.size[0],this.selected_group.pos[1]+this.selected_group.size[1]])*this.ds.scale?this.selected_group_resizing=!0:this.selected_group.recomputeInsideNodes());l&&!this.read_only&&this.showSearchBox(a);d=!0}!g&&d&&this.allow_dragcanvas&&(this.dragging_canvas=!0)}else 2!=a.which&&3==a.which&&(this.read_only||this.processContextMenu(e,a));this.last_mouse[0]=a.localX;this.last_mouse[1]= -a.localY;this.last_mouseclick=c.getTime();this.last_mouse_dragging=!0;this.graph.change();(!b.document.activeElement||"input"!=b.document.activeElement.nodeName.toLowerCase()&&"textarea"!=b.document.activeElement.nodeName.toLowerCase())&&a.preventDefault();a.stopPropagation();if(this.onMouseDown)this.onMouseDown(a);return!1}}};f.prototype.processMouseMove=function(a){this.autoresize&&this.resize();if(this.graph){f.active_canvas=this;this.adjustMouseEvent(a);var b=[a.localX,a.localY],e=[b[0]-this.last_mouse[0], -b[1]-this.last_mouse[1]];this.last_mouse=b;this.canvas_mouse[0]=a.canvasX;this.canvas_mouse[1]=a.canvasY;a.dragging=this.last_mouse_dragging;this.node_widget&&(this.processNodeWidgets(this.node_widget[0],this.canvas_mouse,a,this.node_widget[1]),this.dirty_canvas=!0);if(this.dragging_rectangle)this.dragging_rectangle[2]=a.canvasX-this.dragging_rectangle[0],this.dragging_rectangle[3]=a.canvasY-this.dragging_rectangle[1],this.dirty_canvas=!0;else if(this.selected_group&&!this.read_only)this.selected_group_resizing? -this.selected_group.size=[a.canvasX-this.selected_group.pos[0],a.canvasY-this.selected_group.pos[1]]:(this.selected_group.move(e[0]/this.ds.scale,e[1]/this.ds.scale,a.ctrlKey),this.selected_group._nodes.length&&(this.dirty_canvas=!0)),this.dirty_bgcanvas=!0;else if(this.dragging_canvas)this.ds.offset[0]+=e[0]/this.ds.scale,this.ds.offset[1]+=e[1]/this.ds.scale,this.dirty_bgcanvas=this.dirty_canvas=!0;else if(this.allow_interaction&&!this.read_only){this.connecting_node&&(this.dirty_canvas=!0);for(var g= -this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes),b=0,l=this.graph._nodes.length;bthis.dragging_rectangle[3]?this.dragging_rectangle[1]-l:this.dragging_rectangle[1];this.dragging_rectangle[0]=0>this.dragging_rectangle[2]?this.dragging_rectangle[0]-g:this.dragging_rectangle[0];this.dragging_rectangle[1]=d;this.dragging_rectangle[2]=g;this.dragging_rectangle[3]=l;l=[];for(d=0;da.click_time&&B(a.canvasX,a.canvasY,g.pos[0],g.pos[1]-c.NODE_TITLE_HEIGHT,c.NODE_TITLE_HEIGHT,c.NODE_TITLE_HEIGHT)&&g.collapse(),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{g=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes);!g&&300>a.click_time&&this.deselectAllNodes();this.dirty_canvas=!0;this.dragging_canvas=!1;if(this.node_over&&this.node_over.onMouseUp)this.node_over.onMouseUp(a,[a.canvasX-this.node_over.pos[0],a.canvasY-this.node_over.pos[1]],this);if(this.node_capturing_input&&this.node_capturing_input.onMouseUp)this.node_capturing_input.onMouseUp(a, -[a.canvasX-this.node_capturing_input.pos[0],a.canvasY-this.node_capturing_input.pos[1]])}}else 2==a.which?(this.dirty_canvas=!0,this.dragging_canvas=!1):3==a.which&&(this.dirty_canvas=!0,this.dragging_canvas=!1);this.graph.change();a.stopPropagation();a.preventDefault();return!1}};f.prototype.processMouseWheel=function(a){if(this.graph&&this.allow_dragcanvas){var b=null!=a.wheelDeltaY?a.wheelDeltaY:-60*a.detail;this.adjustMouseEvent(a);var e=this.ds.scale;0b&&(e*=1/1.1);this.ds.changeScale(e, -[a.localX,a.localY]);this.graph.change();a.preventDefault();return!1}};f.prototype.isOverNodeBox=function(a,b,e){var g=c.NODE_TITLE_HEIGHT;return B(b,e,a.pos[0]+2,a.pos[1]+2-g,g-4,g-4)?!0:!1};f.prototype.isOverNodeInput=function(a,b,e,c){if(a.inputs)for(var g=0,d=a.inputs.length;ge-this.graph._last_trigger_time)&&this.drawBackCanvas();(this.dirty_canvas||a)&&this.drawFrontCanvas();this.fps=this.render_time?1/this.render_time: -0;this.frame+=1}};f.prototype.drawFrontCanvas=function(){this.dirty_canvas=!1;this.ctx||(this.ctx=this.bgcanvas.getContext("2d"));var a=this.ctx;if(a){a.start2D&&a.start2D();var b=this.canvas;a.restore();a.setTransform(1,0,0,1,0,0);this.dirty_area&&(a.save(),a.beginPath(),a.rect(this.dirty_area[0],this.dirty_area[1],this.dirty_area[2],this.dirty_area[3]),a.clip());this.clear_background&&a.clearRect(0,0,b.width,b.height);this.bgcanvas==this.canvas?this.drawBackCanvas():a.drawImage(this.bgcanvas,0, -0);if(this.onRender)this.onRender(b,a);this.show_info&&this.renderInfo(a);if(this.graph){a.save();this.ds.toCanvasContext(a);for(var b=this.computeVisibleNodes(null,this.visible_nodes),e=0;e> ";b.fillText(c+e.getTitle(),0.5*a.width,40);b.restore()}e=!1;this.onRenderBackground&&(e=this.onRenderBackground(a,b));b.restore();b.setTransform(1,0,0,1,0,0);this.visible_links.length=0;if(this.graph){b.save();this.ds.toCanvasContext(b);if(this.background_image&&0.5this.ds.scale,r=a._shape||a.constructor.shape||c.ROUND_SHAPE,h=a.constructor.title_mode,n=!0;h==c.TRANSPARENT_TITLE?n=!1:h==c.AUTOHIDE_TITLE&&k&&(n=!0);m[0]=0;m[1]=n?-l:0;m[2]=e[0]+1;m[3]=n?e[1]+l:e[1];k=b.globalAlpha;b.beginPath();r==c.BOX_SHAPE||p?b.fillRect(m[0],m[1],m[2],m[3]):r==c.ROUND_SHAPE||r==c.CARD_SHAPE?b.roundRect(m[0],m[1],m[2],m[3],this.round_radius,r==c.CARD_SHAPE?0:this.round_radius):r==c.CIRCLE_SHAPE&&b.arc(0.5*e[0],0.5*e[1],0.5*e[0],0,2*Math.PI);b.fill();b.shadowColor="transparent"; -b.fillStyle="rgba(0,0,0,0.2)";b.fillRect(0,-1,m[2],2);b.shadowColor="transparent";if(a.onDrawBackground)a.onDrawBackground(b,this,this.canvas);if(n||h==c.TRANSPARENT_TITLE){if(a.onDrawTitleBar)a.onDrawTitleBar(b,l,e,this.ds.scale,g);else if(h!=c.TRANSPARENT_TITLE&&(a.constructor.title_color||this.render_title_colored)){n=a.constructor.title_color||g;a.flags.collapsed&&(b.shadowColor=c.DEFAULT_SHADOW_COLOR);if(this.use_gradients){var u=f.gradients[n];u||(u=f.gradients[n]=b.createLinearGradient(0,0, -400,0),u.addColorStop(0,n),u.addColorStop(1,"#000"));b.fillStyle=u}else b.fillStyle=n;b.beginPath();r==c.BOX_SHAPE||p?b.rect(0,-l,e[0]+1,l):r!=c.ROUND_SHAPE&&r!=c.CARD_SHAPE||b.roundRect(0,-l,e[0]+1,l,this.round_radius,a.flags.collapsed?this.round_radius:0);b.fill();b.shadowColor="transparent"}if(a.onDrawTitleBox)a.onDrawTitleBox(b,l,e,this.ds.scale);else r==c.ROUND_SHAPE||r==c.CIRCLE_SHAPE||r==c.CARD_SHAPE?(p&&(b.fillStyle="black",b.beginPath(),b.arc(0.5*l,-0.5*l,6,0,2*Math.PI),b.fill()),b.fillStyle= -a.boxcolor||c.NODE_DEFAULT_BOXCOLOR,b.beginPath(),b.arc(0.5*l,-0.5*l,5,0,2*Math.PI),b.fill()):(p&&(b.fillStyle="black",b.fillRect(0.5*(l-10)-1,-0.5*(l+10)-1,12,12)),b.fillStyle=a.boxcolor||c.NODE_DEFAULT_BOXCOLOR,b.fillRect(0.5*(l-10),-0.5*(l+10),10,10));b.globalAlpha=k;if(a.onDrawTitleText)a.onDrawTitleText(b,l,e,this.ds.scale,this.title_text_font,d);!p&&(b.font=this.title_text_font,p=a.getTitle())&&(b.fillStyle=d?"white":a.constructor.title_text_color||this.node_title_color,a.flags.collapsed?(b.textAlign= -"center",k=b.measureText(p),b.fillText(p,l+0.5*k.width,c.NODE_TITLE_TEXT_Y-l),b.textAlign="left"):(b.textAlign="left",b.fillText(p,l,c.NODE_TITLE_TEXT_Y-l)));if(a.onDrawTitle)a.onDrawTitle(b)}if(d){if(a.onBounding)a.onBounding(m);h==c.TRANSPARENT_TITLE&&(m[1]-=l,m[3]+=l);b.lineWidth=1;b.globalAlpha=0.8;b.beginPath();r==c.BOX_SHAPE?b.rect(-6+m[0],-6+m[1],12+m[2],12+m[3]):r==c.ROUND_SHAPE||r==c.CARD_SHAPE&&a.flags.collapsed?b.roundRect(-6+m[0],-6+m[1],12+m[2],12+m[3],2*this.round_radius):r==c.CARD_SHAPE? -b.roundRect(-6+m[0],-6+m[1],12+m[2],12+m[3],2*this.round_radius,2):r==c.CIRCLE_SHAPE&&b.arc(0.5*e[0],0.5*e[1],0.5*e[0]+6,0,2*Math.PI);b.strokeStyle="#FFF";b.stroke();b.strokeStyle=g;b.globalAlpha=1}};var r=new Float32Array(4),g=new Float32Array(4),p=new Float32Array(2),w=new Float32Array(2);f.prototype.drawConnections=function(a){var b=c.getTime(),e=this.visible_area;r[0]=e[0]-20;r[1]=e[1]-20;r[2]=e[2]+40;r[3]=e[3]+40;a.lineWidth=this.connections_width;a.fillStyle="#AAA";a.strokeStyle="#AAA";a.globalAlpha= -this.editor_alpha;for(var e=this.graph._nodes,d=0,l=e.length;dg[2]&&(g[0]+=g[2],g[2]=Math.abs(g[2]));0>g[3]&&(g[1]+=g[3],g[3]=Math.abs(g[3])); -if(A(g,r)){var D=h.outputs[n],n=f.inputs[k];if(D&&n&&(h=D.dir||(h.horizontal?c.DOWN:c.RIGHT),n=n.dir||(f.horizontal?c.UP:c.LEFT),this.renderLink(a,q,u,m,!1,0,null,h,n),m&&m._last_time&&1E3>b-m._last_time)){var D=2-0.002*(b-m._last_time),E=a.globalAlpha;a.globalAlpha=E*D;this.renderLink(a,q,u,m,!0,D,"white",h,n);a.globalAlpha=E}}}}}}a.globalAlpha=1};f.prototype.renderLink=function(a,b,e,g,l,d,k,m,r,p){g&&this.visible_links.push(g);!k&&g&&(k=g.color||f.link_type_colors[g.type]);k||(k=this.default_link_color); -null!=g&&this.highlighted_links[g.id]&&(k="#FFF");m=m||c.RIGHT;r=r||c.LEFT;var h=y(b,e);this.render_connections_border&&0.6b[1]?0:Math.PI,a.save(),a.translate(u[0],u[1]),a.rotate(D),a.beginPath(),a.moveTo(-5,-3),a.lineTo(0,7),a.lineTo(5,-3),a.fill(),a.restore(),a.save(),a.translate(p[0], -p[1]),a.rotate(E),a.beginPath(),a.moveTo(-5,-3),a.lineTo(0,7),a.lineTo(5,-3),a.fill(),a.restore()),a.beginPath(),a.arc(l[0],l[1],5,0,2*Math.PI),a.fill());if(d)for(a.fillStyle=k,u=0;5>u;++u)d=(0.001*c.getTime()+0.2*u)%1,l=this.computeConnectionPoint(b,e,d,m,r),a.beginPath(),a.arc(l[0],l[1],5,0,2*Math.PI),a.fill()};f.prototype.computeConnectionPoint=function(a,b,e,g,l){g=g||c.RIGHT;l=l||c.LEFT;var d=y(a,b),f=[a[0],a[1]],k=[b[0],b[1]];switch(g){case c.LEFT:f[0]+=-0.25*d;break;case c.RIGHT:f[0]+=0.25* -d;break;case c.UP:f[1]+=-0.25*d;break;case c.DOWN:f[1]+=0.25*d}switch(l){case c.LEFT:k[0]+=-0.25*d;break;case c.RIGHT:k[0]+=0.25*d;break;case c.UP:k[1]+=-0.25*d;break;case c.DOWN:k[1]+=0.25*d}g=(1-e)*(1-e)*(1-e);l=3*(1-e)*(1-e)*e;d=3*(1-e)*e*e;e*=e*e;return[g*a[0]+l*f[0]+d*k[0]+e*b[0],g*a[1]+l*f[1]+d*k[1]+e*b[1]]};f.prototype.drawExecutionOrder=function(a){a.shadowColor="transparent";a.globalAlpha=0.25;a.textAlign="center";a.strokeStyle="white";a.globalAlpha=0.75;for(var b=this.visible_nodes,e=0;e< -b.length;++e){var g=b[e];a.fillStyle="black";a.fillRect(g.pos[0]-c.NODE_TITLE_HEIGHT,g.pos[1]-c.NODE_TITLE_HEIGHT,c.NODE_TITLE_HEIGHT,c.NODE_TITLE_HEIGHT);0==g.order&&a.strokeRect(g.pos[0]-c.NODE_TITLE_HEIGHT+0.5,g.pos[1]-c.NODE_TITLE_HEIGHT+0.5,c.NODE_TITLE_HEIGHT,c.NODE_TITLE_HEIGHT);a.fillStyle="#FFF";a.fillText(g.order,g.pos[0]+-0.5*c.NODE_TITLE_HEIGHT,g.pos[1]-6)}a.globalAlpha=1};f.prototype.drawNodeWidgets=function(a,b,e,g){if(!a.widgets||!a.widgets.length)return 0;var l=a.size[0],d=a.widgets; -b+=2;var f=c.NODE_WIDGET_HEIGHT,k=0.5u.last_y&&fu.options.max&&(u.value=u.options.max);else if("mousedown"==e.type)if((g=u.options.values)&&g.constructor===Function&&(g=u.options.values(u,a)),d=40>d?-1:d>k-40?1:0,"number"==u.type)u.value+=0.1*d*(u.options.step||1),null!=u.options.min&&u.valueu.options.max&&(u.value=u.options.max);else if(d)m= -g.indexOf(u.value)+d,m>=g.length&&(m=0),0>m&&(m=g.length-1),u.value=g[m];else{new c.ContextMenu(g,{scale:Math.max(1,this.ds.scale),event:e,className:"dark",callback:D.bind(u)},m);var D=function(a,b,e){this.value=a;l(this,a);r.dirty_canvas=!0;return!1}}setTimeout(function(){l(this,this.value)}.bind(u),20);this.dirty_canvas=!0;break;case "toggle":"mousedown"==e.type&&(u.value=!u.value,u.callback&&setTimeout(function(){l(u,u.value)},20));break;case "string":case "text":"mousedown"==e.type&&this.prompt("Value", -u.value,function(a){this.value=a;l(this,a)}.bind(u),e);break;default:u.mouse&&u.mouse(ctx,e,[d,f],a)}return u}}return null};f.prototype.drawGroups=function(a,b){if(this.graph){var e=this.graph._groups;b.save();b.globalAlpha=0.5*this.editor_alpha;for(var g=0;ge&&0.01>b.editor_alpha&&(clearInterval(c),1>e&&(b.live_mode=!0));1"+p+""+a+"",value:p});if(m.length)return new c.ContextMenu(m,{event:e,callback:k,parentMenu:g,allow_html:!0,node:d},b),!1}};f.decodeHTML=function(a){var b=document.createElement("div");b.innerText=a;return b.innerHTML};f.onResizeNode=function(a,b,e,c,g){g&&(g.size=g.computeSize(), -g.setDirtyCanvas(!0,!0))};f.prototype.showLinkMenu=function(a,b){var e=this;new c.ContextMenu(["Delete"],{event:b,callback:function(b){switch(b){case "Delete":e.graph.removeLink(a.id)}}});return!1};f.onShowPropertyEditor=function(a,b,e,c,g){function d(){var b=r.value;"Number"==a.type?b=Number(b):"Boolean"==a.type&&(b=Boolean(b));g[k]=b;m.parentNode&&m.parentNode.removeChild(m);g.setDirtyCanvas(!0,!0)}var k=a.property||"title";b=g[k];var m=document.createElement("div");m.className="graphdialog";m.innerHTML= -"";m.querySelector(".name").innerText=k;var r=m.querySelector("input");r&&(r.value=b,r.addEventListener("blur",function(a){this.focus()}),r.addEventListener("keydown",function(a){13==a.keyCode&&(d(),a.preventDefault(),a.stopPropagation())}));b=f.active_canvas.canvas;e=b.getBoundingClientRect();var p=c=-20;e&&(c-=e.left,p-=e.top);event?(m.style.left=event.clientX+c+"px",m.style.top=event.clientY+p+"px"):(m.style.left= -0.5*b.width+c+"px",m.style.top=0.5*b.height+p+"px");m.querySelector("button").addEventListener("click",d);b.parentNode.appendChild(m)};f.prototype.prompt=function(a,b,e,c){var g=this;a=a||"";var d=!1,k=document.createElement("div");k.className="graphdialog rounded";k.innerHTML=" ";k.close=function(){g.prompt_box=null;k.parentNode&&k.parentNode.removeChild(k)};1f.search_limit))break}if(Array.prototype.filter)for(E=Object.keys(c.registered_node_types).filter(function(a){return-1!==a.toLowerCase().indexOf(e)}),m=0;mf.search_limit);m++);else for(m in c.registered_node_types)if(-1!= -m.indexOf(e)&&(a(m),-1!==f.search_limit&&k++>f.search_limit))break}}var d=this,k=document.createElement("div");k.className="litegraph litesearchbox graphdialog rounded";k.innerHTML="Search
";k.close=function(){d.search_box=null;document.body.focus();setTimeout(function(){d.canvas.focus()},20);k.parentNode&&k.parentNode.removeChild(k)};var m=null;1";else if("enum"==d&&k.values){m=""}else if("boolean"==d)m="";else{console.warn("unknown type: "+d);return}var p=this.createDialog(""+b+""+m+"",e);if("enum"==d&&k.values){var h=p.querySelector("select");h.addEventListener("change",function(a){g(a.target.value)})}else if("boolean"==d)(h=p.querySelector("input"))&&h.addEventListener("click",function(a){g(!!h.checked)});else if(h=p.querySelector("input"))h.addEventListener("blur",function(a){this.focus()}),h.value=void 0!==a.properties[b]?a.properties[b]:"",h.addEventListener("keydown", -function(a){13==a.keyCode&&(c(),a.preventDefault(),a.stopPropagation())});p.querySelector("button").addEventListener("click",c)}};f.prototype.createDialog=function(a,b){b=b||{};var e=document.createElement("div");e.className="graphdialog";e.innerHTML=a;var c=this.canvas.getBoundingClientRect(),g=-20,d=-20;c&&(g-=c.left,d-=c.top);b.position?(g+=b.position[0],d+=b.position[1]):b.event?(g+=b.event.clientX,d+=b.event.clientY):(g+=0.5*this.canvas.width,d+=0.5*this.canvas.height);e.style.left=g+"px";e.style.top= -d+"px";this.canvas.parentNode.appendChild(e);e.close=function(){this.parentNode&&this.parentNode.removeChild(this)};return e};f.onMenuNodeCollapse=function(a,b,e,c,g){g.collapse()};f.onMenuNodePin=function(a,b,e,c,g){g.pin()};f.onMenuNodeMode=function(a,b,e,g,d){new c.ContextMenu(["Always","On Event","On Trigger","Never"],{event:e,callback:function(a){if(d)switch(a){case "On Event":d.mode=c.ON_EVENT;break;case "On Trigger":d.mode=c.ON_TRIGGER;break;case "Never":d.mode=c.NEVER;break;default:d.mode= -c.ALWAYS}},parentMenu:g,node:d});return!1};f.onMenuNodeColors=function(a,b,e,g,d){if(!d)throw"no node for color";b=[];b.push({value:null,content:"No color"});for(var k in f.node_colors)a=f.node_colors[k],a={value:k,content:""+k+""},b.push(a);new c.ContextMenu(b,{event:e,callback:function(a){d&&((a=a.value?f.node_colors[a.value]: -null)?d.constructor===c.LGraphGroup?d.color=a.groupcolor:(d.color=a.color,d.bgcolor=a.bgcolor):(delete d.color,delete d.bgcolor),d.setDirtyCanvas(!0,!0))},parentMenu:g,node:d});return!1};f.onMenuNodeShapes=function(a,b,e,g,d){if(!d)throw"no node passed";new c.ContextMenu(c.VALID_SHAPES,{event:e,callback:function(a){d&&(d.shape=a,d.setDirtyCanvas(!0))},parentMenu:g,node:d});return!1};f.onMenuNodeRemove=function(a,b,e,c,g){if(!g)throw"no node passed";!1!==g.removable&&(g.graph.remove(g),g.setDirtyCanvas(!0, -!0))};f.onMenuNodeClone=function(a,b,e,c,g){!1!=g.clonable&&(a=g.clone())&&(a.pos=[g.pos[0]+5,g.pos[1]+5],g.graph.add(a),g.setDirtyCanvas(!0,!0))};f.node_colors={red:{color:"#322",bgcolor:"#533",groupcolor:"#A88"},brown:{color:"#332922",bgcolor:"#593930",groupcolor:"#b06634"},green:{color:"#232",bgcolor:"#353",groupcolor:"#8A8"},blue:{color:"#223",bgcolor:"#335",groupcolor:"#88A"},pale_blue:{color:"#2a363b",bgcolor:"#3f5159",groupcolor:"#3f789e"},cyan:{color:"#233",bgcolor:"#355",groupcolor:"#8AA"}, -purple:{color:"#323",bgcolor:"#535",groupcolor:"#a1309b"},yellow:{color:"#432",bgcolor:"#653",groupcolor:"#b58b2a"},black:{color:"#222",bgcolor:"#000",groupcolor:"#444"}};f.prototype.getCanvasMenuOptions=function(){var a=null;this.getMenuOptions?a=this.getMenuOptions():(a=[{content:"Add Node",has_submenu:!0,callback:f.onMenuAdd},{content:"Add Group",callback:f.onGroupAdd}],this._graph_stack&&0Name",c),k=D.querySelector("input");k&&d&&(k.value=d.label||"");D.querySelector("button").addEventListener("click",function(a){k.value&&(d&&(d.label=k.value),e.setDirty(!0));D.close()})}},extra:a},m=null;a&&(m=a.getSlotInPosition(b.canvasX,b.canvasY),f.active_node=a);if(m){d=[];m&&m.output&&m.output.links&&m.output.links.length&&d.push({content:"Disconnect Links",slot:m});var r=m.input||m.output;d.push(r.locked? -"Cannot remove":{content:"Remove Slot",slot:m});d.push(r.nameLocked?"Cannot rename":{content:"Rename Slot",slot:m});k.title=(m.input?m.input.type:m.output.type)||"*";m.input&&m.input.type==c.ACTION&&(k.title="Action");m.output&&m.output.type==c.EVENT&&(k.title="Event")}else a?d=this.getNodeMenuOptions(a):(d=this.getCanvasMenuOptions(),(m=this.graph.getGroupOnPos(b.canvasX,b.canvasY))&&d.push(null,{content:"Edit Group",has_submenu:!0,submenu:{title:"Group",extra:m,options:this.getGroupMenuOptions(m)}})); -d&&new c.ContextMenu(d,k,g)};this.CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.roundRect=function(a,b,e,c,g,d){void 0===g&&(g=5);void 0===d&&(d=g);this.moveTo(a+g,b);this.lineTo(a+e-g,b);this.quadraticCurveTo(a+e,b,a+e,b+g);this.lineTo(a+e,b+c-d);this.quadraticCurveTo(a+e,b+c,a+e-d,b+c);this.lineTo(a+d,b+c);this.quadraticCurveTo(a,b+c,a,b+c-d);this.lineTo(a,b+g);this.quadraticCurveTo(a,b,a+g,b)});c.compareObjects=function(a,b){for(var e in a)if(a[e]!=b[e])return!1;return!0};c.distance= -y;c.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")+")"};c.isInsideRectangle=B;c.growBounding=function(a,b,e){ba[2]&&(a[2]=b);ea[3]&&(a[3]=e)};c.isInsideBounding=function(a,b){return a[0]b[1][0]||a[1]>b[1][1]?!1:!0};c.overlapBounding=A;c.hex2num=function(a){"#"==a.charAt(0)&&(a=a.slice(1));a=a.toUpperCase(); -for(var b=Array(3),e=0,c,g,d=0;6>d;d+=2)c="0123456789ABCDEF".indexOf(a.charAt(d)),g="0123456789ABCDEF".indexOf(a.charAt(d+1)),b[e]=16*c+g,e++;return b};c.num2hex=function(a){for(var b="#",e,c,g=0;3>g;g++)e=a[g]/16,c=a[g]%16,b+="0123456789ABCDEF".charAt(e)+"0123456789ABCDEF".charAt(c);return b};z.prototype.addItem=function(a,b,e){function c(a){var b=this.value;b&&b.has_submenu&&g.call(this,a)}function g(a){var b=this.value,c=!0;d.current_submenu&&d.current_submenu.close(a);if(e.callback){var k=e.callback.call(this, -b,e,a,d,e.node);!0===k&&(c=!1)}if(b&&(b.callback&&!e.ignore_item_callbacks&&!0!==b.disabled&&(k=b.callback.call(this,b,e,a,d,e.extra),!0===k&&(c=!1)),b.submenu)){if(!b.submenu.options)throw"ContextMenu submenu needs options";new d.constructor(b.submenu.options,{callback:b.submenu.callback,event:a,parentMenu:d,ignore_item_callbacks:b.submenu.ignore_item_callbacks,title:b.submenu.title,extra:b.submenu.extra,autoopen:e.autoopen});c=!1}c&&!d.lock&&d.close()}var d=this;e=e||{};var k=document.createElement("div"); -k.className="litemenu-entry submenu";var f=!1;if(null===b)k.classList.add("separator");else{k.innerHTML=b&&b.title?b.title:a;if(k.value=b)b.disabled&&(f=!0,k.classList.add("disabled")),(b.submenu||b.has_submenu)&&k.classList.add("has_submenu");"function"==typeof b?(k.dataset.value=a,k.onclick_callback=b):k.dataset.value=b;b.className&&(k.className+=" "+b.className)}this.root.appendChild(k);f||k.addEventListener("click",g);e.autoopen&&k.addEventListener("mouseenter",c);return k};z.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&&!z.isCursorOverElement(a,this.parentMenu.root)&&z.trigger(this.parentMenu.root,"mouseleave",a));this.current_submenu&&this.current_submenu.close(a,!0);this.root.closing_timer&&clearTimeout(this.root.closing_timer)};z.trigger=function(a,b,e,c){var g=document.createEvent("CustomEvent");g.initCustomEvent(b, -!0,!0,e);g.srcElement=c;a.dispatchEvent?a.dispatchEvent(g):a.__events&&a.__events.dispatchEvent(g);return g};z.prototype.getTopMenu=function(){return this.options.parentMenu?this.options.parentMenu.getTopMenu():this};z.prototype.getFirstEvent=function(){return this.options.parentMenu?this.options.parentMenu.getFirstEvent():this.options.event};z.isCursorOverElement=function(a,b){var e=a.clientX,c=a.clientY,g=b.getBoundingClientRect();return g?c>g.top&&cg.left&&ea?b:e=this.outputs.length)return null;a=this.outputs[a];if(!a.links||0==a.links.length)return null;for(var c=[],d=0;da&&this.pos[1]-m-dc)return!0;return!1};q.prototype.getSlotInPosition=function(a,c){var d=new Float32Array(2); +if(this.inputs)for(var b=0,m=this.inputs.length;b=this.outputs.length)return b.debug&&console.log("Connect: Error, slot number not found"),null;c&&c.constructor===Number&&(c=this.graph.getNodeById(c));if(!c)throw"target node is null";if(c==this)return null;if(d.constructor===String){if(d=c.findInputSlot(d),-1==d)return b.debug&&console.log("Connect: Error, no slot of name "+d),null}else{if(d===b.EVENT)return null;if(!c.inputs||d>=c.inputs.length)return b.debug&&console.log("Connect: Error, slot number not found"),null}null!=c.inputs[d].link&& +c.disconnectInput(d);var r=this.outputs[a];if(c.onConnectInput&&!1===c.onConnectInput(d,r.type,r))return null;var m=c.inputs[d],g=null;if(b.isValidConnection(r.type,m.type)){g=new f(this.graph.last_link_id++,m.type,this.id,a,c.id,d);this.graph.links[g.id]=g;null==r.links&&(r.links=[]);r.links.push(g.id);c.inputs[d].link=g.id;this.graph&&this.graph._version++;if(this.onConnectionsChange)this.onConnectionsChange(b.OUTPUT,a,!0,g,r);if(c.onConnectionsChange)c.onConnectionsChange(b.INPUT,d,!0,g,m);this.graph&& +this.graph.onNodeConnectionChange&&(this.graph.onNodeConnectionChange(b.INPUT,c,d,this,a),this.graph.onNodeConnectionChange(b.OUTPUT,this,a,c,d))}this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this,g);return g};q.prototype.disconnectOutput=function(a,c){if(a.constructor===String){if(a=this.findOutputSlot(a),-1==a)return b.debug&&console.log("Connect: Error, no slot of name "+a),!1}else if(!this.outputs||a>=this.outputs.length)return b.debug&&console.log("Connect: Error, slot number not found"), +!1;var d=this.outputs[a];if(!d||!d.links||0==d.links.length)return!1;if(c){c.constructor===Number&&(c=this.graph.getNodeById(c));if(!c)throw"Target Node not found";for(var r=0,m=d.links.length;r=this.inputs.length)return b.debug&&console.log("Connect: Error, slot number not found"),!1;var c=this.inputs[a];if(!c)return!1;var d=this.inputs[a].link;this.inputs[a].link=null;var r=this.graph.links[d];if(r){var m=this.graph.getNodeById(r.origin_id);if(!m)return!1;var g=m.outputs[r.origin_slot];if(!g||!g.links||0==g.links.length)return!1;for(var h=0,k=g.links.length;h< +k;h++)if(g.links[h]==d){g.links.splice(h,1);break}delete this.graph.links[d];this.graph&&this.graph._version++;if(this.onConnectionsChange)this.onConnectionsChange(b.INPUT,a,!1,r,c);if(m.onConnectionsChange)m.onConnectionsChange(b.OUTPUT,h,!1,r,g);this.graph&&this.graph.onNodeConnectionChange&&(this.graph.onNodeConnectionChange(b.OUTPUT,m,h),this.graph.onNodeConnectionChange(b.INPUT,this,a))}this.setDirtyCanvas(!1,!0);this.graph.connectionChange(this);return!0};q.prototype.getConnectionPos=function(a, +c,d){d=d||new Float32Array(2);var r=0;a&&this.inputs&&(r=this.inputs.length);!a&&this.outputs&&(r=this.outputs.length);var m=0.5*b.NODE_SLOT_HEIGHT;if(this.flags.collapsed)return c=this._collapsed_width||b.NODE_COLLAPSED_WIDTH,this.horizontal?(d[0]=this.pos[0]+0.5*c,d[1]=a?this.pos[1]-b.NODE_TITLE_HEIGHT:this.pos[1]):(d[0]=a?this.pos[0]:this.pos[0]+c,d[1]=this.pos[1]-0.5*b.NODE_TITLE_HEIGHT),d;if(a&&-1==c)return d[0]=this.pos[0]+0.5*b.NODE_TITLE_HEIGHT,d[1]=this.pos[1]+0.5*b.NODE_TITLE_HEIGHT,d;if(a&& +r>c&&this.inputs[c].pos)return d[0]=this.pos[0]+this.inputs[c].pos[0],d[1]=this.pos[1]+this.inputs[c].pos[1],d;if(!a&&r>c&&this.outputs[c].pos)return d[0]=this.pos[0]+this.outputs[c].pos[0],d[1]=this.pos[1]+this.outputs[c].pos[1],d;if(this.horizontal)return d[0]=this.pos[0]+this.size[0]/r*(c+0.5),d[1]=a?this.pos[1]-b.NODE_TITLE_HEIGHT:this.pos[1]+this.size[1],d;d[0]=a?this.pos[0]+m:this.pos[0]+this.size[0]+1-m;d[1]=this.pos[1]+(c+0.7)*b.NODE_SLOT_HEIGHT+(this.constructor.slot_start_y||0);return d}; +q.prototype.alignToGrid=function(){this.pos[0]=b.CANVAS_GRID_SIZE*Math.round(this.pos[0]/b.CANVAS_GRID_SIZE);this.pos[1]=b.CANVAS_GRID_SIZE*Math.round(this.pos[1]/b.CANVAS_GRID_SIZE)};q.prototype.trace=function(a){this.console||(this.console=[]);this.console.push(a);this.console.length>q.MAX_CONSOLE&&this.console.shift();this.graph.onNodeTrace(this,a)};q.prototype.setDirtyCanvas=function(a,c){this.graph&&this.graph.sendActionToCanvas("setDirty",[a,c])};q.prototype.loadImage=function(a){var c=new Image; +c.src=b.node_images_path+a;c.ready=!1;var d=this;c.onload=function(){this.ready=!0;d.setDirtyCanvas(!0)};return c};q.prototype.captureInput=function(a){if(this.graph&&this.graph.list_of_graphcanvas)for(var c=this.graph.list_of_graphcanvas,d=0;da.length||(this._pos[0]=a[0],this._pos[1]=a[1])},get:function(){return this._pos},enumerable:!0});Object.defineProperty(this,"size",{set:function(a){!a||2>a.length||(this._size[0]=Math.max(140,a[0]),this._size[1]=Math.max(80,a[1]))},get:function(){return this._size},enumerable:!0})};p.prototype.configure=function(a){this.title=a.title;this._bounding.set(a.bounding);this.color=a.color; +this.font=a.font};p.prototype.serialize=function(){var a=this._bounding;return{title:this.title,bounding:[Math.round(a[0]),Math.round(a[1]),Math.round(a[2]),Math.round(a[3])],color:this.color,font:this.font}};p.prototype.move=function(a,c,d){this._pos[0]+=a;this._pos[1]+=c;if(!d)for(d=0;dthis.max_scale&&(a=this.max_scale);if(a!=this.scale&&this.element){var d=this.element.getBoundingClientRect();if(d){c=c||[0.5*d.width,0.5*d.height];d=this.convertCanvasToOffset(c);this.scale=a;0.01>Math.abs(this.scale-1)&&(this.scale=1);var b=this.convertCanvasToOffset(c),d=[b[0]-d[0],b[1]-d[1]];this.offset[0]+=d[0];this.offset[1]+=d[1];if(this.onredraw)this.onredraw(this)}}}; +s.prototype.changeDeltaScale=function(a,c){this.changeScale(this.scale*a,c)};s.prototype.reset=function(){this.scale=1;this.offset[0]=0;this.offset[1]=0};t.LGraphCanvas=b.LGraphCanvas=l;l.link_type_colors={"-1":b.EVENT_LINK_COLOR,number:"#AAA",node:"#DCA"};l.gradients={};l.prototype.clear=function(){this.fps=this.render_time=this.last_draw_time=this.frame=0;this.dragging_rectangle=null;this.selected_nodes={};this.selected_group=null;this.visible_nodes=[];this.connecting_node=this.node_capturing_input= +this.node_over=this.node_dragged=null;this.highlighted_links={};this.dirty_bgcanvas=this.dirty_canvas=!0;this.node_widget=this.node_in_panel=this.dirty_area=null;this.last_mouse=[0,0];this.last_mouseclick=0;this.visible_area.set([0,0,0,0]);if(this.onClear)this.onClear()};l.prototype.setGraph=function(a,c){this.graph!=a&&(c||this.clear(),!a&&this.graph?this.graph.detachCanvas(this):(a.attachCanvas(this),this.setDirty(!0,!0)))};l.prototype.openSubgraph=function(a){if(!a)throw"graph cannot be null"; +if(this.graph==a)throw"graph cannot be the same";this.clear();this.graph&&(this._graph_stack||(this._graph_stack=[]),this._graph_stack.push(this.graph));a.attachCanvas(this);this.setDirty(!0,!0)};l.prototype.closeSubgraph=function(){if(this._graph_stack&&0!=this._graph_stack.length){var a=this.graph._subgraph_node,c=this._graph_stack.pop();this.selected_nodes={};this.highlighted_links={};c.attachCanvas(this);this.setDirty(!0,!0);a&&(this.centerOnNode(a),this.selectNodes([a]))}};l.prototype.getCurrentGraph= +function(){return this.graph};l.prototype.setCanvas=function(a,c){if(a&&a.constructor===String&&(a=document.getElementById(a),!a))throw"Error creating LiteGraph canvas: Canvas not found";if(a!==this.canvas&&(!a&&this.canvas&&(c||this.unbindEvents()),this.canvas=a,this.ds.element=a)){a.className+=" lgraphcanvas";a.data=this;a.tabindex="1";this.bgcanvas=null;this.bgcanvas||(this.bgcanvas=document.createElement("canvas"),this.bgcanvas.width=this.canvas.width,this.bgcanvas.height=this.canvas.height); +if(null==a.getContext){if("canvas"!=a.localName)throw"Element supplied for LGraphCanvas must be a element, you passed a "+a.localName;throw"This browser doesn't support Canvas";}null==(this.ctx=a.getContext("2d"))&&(a.webgl_enabled||console.warn("This canvas seems to be WebGL, enabling WebGL renderer"),this.enableWebGL());this._mousemove_callback=this.processMouseMove.bind(this);this._mouseup_callback=this.processMouseUp.bind(this);c||this.bindEvents()}};l.prototype._doNothing=function(a){a.preventDefault(); +return!1};l.prototype._doReturnTrue=function(a){a.preventDefault();return!0};l.prototype.bindEvents=function(){if(this._events_binded)console.warn("LGraphCanvas: events already binded");else{var a=this.canvas,c=this.getCanvasWindow().document;this._mousedown_callback=this.processMouseDown.bind(this);this._mousewheel_callback=this.processMouseWheel.bind(this);a.addEventListener("mousedown",this._mousedown_callback,!0);a.addEventListener("mousemove",this._mousemove_callback);a.addEventListener("mousewheel", +this._mousewheel_callback,!1);a.addEventListener("contextmenu",this._doNothing);a.addEventListener("DOMMouseScroll",this._mousewheel_callback,!1);a.addEventListener("touchstart",this.touchHandler,!0);a.addEventListener("touchmove",this.touchHandler,!0);a.addEventListener("touchend",this.touchHandler,!0);a.addEventListener("touchcancel",this.touchHandler,!0);this._key_callback=this.processKey.bind(this);a.addEventListener("keydown",this._key_callback,!0);c.addEventListener("keyup",this._key_callback, +!0);this._ondrop_callback=this.processDrop.bind(this);a.addEventListener("dragover",this._doNothing,!1);a.addEventListener("dragend",this._doNothing,!1);a.addEventListener("drop",this._ondrop_callback,!1);a.addEventListener("dragenter",this._doReturnTrue,!1);this._events_binded=!0}};l.prototype.unbindEvents=function(){if(this._events_binded){var a=this.getCanvasWindow().document;this.canvas.removeEventListener("mousedown",this._mousedown_callback);this.canvas.removeEventListener("mousewheel",this._mousewheel_callback); +this.canvas.removeEventListener("DOMMouseScroll",this._mousewheel_callback);this.canvas.removeEventListener("keydown",this._key_callback);a.removeEventListener("keyup",this._key_callback);this.canvas.removeEventListener("contextmenu",this._doNothing);this.canvas.removeEventListener("drop",this._ondrop_callback);this.canvas.removeEventListener("dragenter",this._doReturnTrue);this.canvas.removeEventListener("touchstart",this.touchHandler);this.canvas.removeEventListener("touchmove",this.touchHandler); +this.canvas.removeEventListener("touchend",this.touchHandler);this.canvas.removeEventListener("touchcancel",this.touchHandler);this._ondrop_callback=this._key_callback=this._mousewheel_callback=this._mousedown_callback=null;this._events_binded=!1}else console.warn("LGraphCanvas: no events binded")};l.getFileExtension=function(a){var c=a.indexOf("?");-1!=c&&(a=a.substr(0,c));c=a.lastIndexOf(".");return-1==c?"":a.substr(c+1).toLowerCase()};l.prototype.enableWebGL=function(){if(void 0===typeof GL)throw"litegl.js must be included to use a WebGL canvas"; +if(void 0===typeof enableWebGLCanvas)throw"webglCanvas.js must be included to use this feature";this.gl=this.ctx=enableWebGLCanvas(this.canvas);this.ctx.webgl=!0;this.bgcanvas=this.canvas;this.bgctx=this.gl;this.canvas.webgl_enabled=!0};l.prototype.setDirty=function(a,c){a&&(this.dirty_canvas=!0);c&&(this.dirty_bgcanvas=!0)};l.prototype.getCanvasWindow=function(){if(!this.canvas)return window;var a=this.canvas.ownerDocument;return a.defaultView||a.parentWindow};l.prototype.startRendering=function(){function a(){this.pause_rendering|| +this.draw();var c=this.getCanvasWindow();this.is_rendering&&c.requestAnimationFrame(a.bind(this))}this.is_rendering||(this.is_rendering=!0,a.call(this))};l.prototype.stopRendering=function(){this.is_rendering=!1};l.prototype.processMouseDown=function(a){if(this.graph){this.adjustMouseEvent(a);var c=this.getCanvasWindow();l.active_canvas=this;this.canvas.removeEventListener("mousemove",this._mousemove_callback);c.document.addEventListener("mousemove",this._mousemove_callback,!0);c.document.addEventListener("mouseup", +this._mouseup_callback,!0);var d=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes,5),r=!1,m=300>b.getTime()-this.last_mouseclick;this.canvas_mouse[0]=a.canvasX;this.canvas_mouse[1]=a.canvasY;this.canvas.focus();b.closeAllContextMenus(c);if(!this.onMouse||!0!=this.onMouse(a)){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,r=!0);var g= +!1;if(d&&this.allow_interaction&&!r&&!this.read_only){this.live_mode||d.flags.pinned||this.bringToFront(d);if(!this.connecting_node&&!d.flags.collapsed&&!this.live_mode)if(!r&&!1!==d.resizable&&z(a.canvasX,a.canvasY,d.pos[0]+d.size[0]-5,d.pos[1]+d.size[1]-5,10,10))this.resizing_node=d,this.canvas.style.cursor="se-resize",r=!0;else{if(d.outputs)for(var h=0,k=d.outputs.length;hg[0]+4||a.canvasYg[1]+4)){this.showLinkMenu(d, +a);break}this.selected_group=this.graph.getGroupOnPos(a.canvasX,a.canvasY);this.selected_group_resizing=!1;this.selected_group&&!this.read_only&&(a.ctrlKey&&(this.dragging_rectangle=null),10>A([a.canvasX,a.canvasY],[this.selected_group.pos[0]+this.selected_group.size[0],this.selected_group.pos[1]+this.selected_group.size[1]])*this.ds.scale?this.selected_group_resizing=!0:this.selected_group.recomputeInsideNodes());m&&!this.read_only&&this.showSearchBox(a);g=!0}!r&&g&&this.allow_dragcanvas&&(this.dragging_canvas= +!0)}else 2!=a.which&&3==a.which&&(this.read_only||this.processContextMenu(d,a));this.last_mouse[0]=a.localX;this.last_mouse[1]=a.localY;this.last_mouseclick=b.getTime();this.last_mouse_dragging=!0;this.graph.change();(!c.document.activeElement||"input"!=c.document.activeElement.nodeName.toLowerCase()&&"textarea"!=c.document.activeElement.nodeName.toLowerCase())&&a.preventDefault();a.stopPropagation();if(this.onMouseDown)this.onMouseDown(a);return!1}}};l.prototype.processMouseMove=function(a){this.autoresize&& +this.resize();if(this.graph){l.active_canvas=this;this.adjustMouseEvent(a);var c=[a.localX,a.localY],d=[c[0]-this.last_mouse[0],c[1]-this.last_mouse[1]];this.last_mouse=c;this.canvas_mouse[0]=a.canvasX;this.canvas_mouse[1]=a.canvasY;a.dragging=this.last_mouse_dragging;this.node_widget&&(this.processNodeWidgets(this.node_widget[0],this.canvas_mouse,a,this.node_widget[1]),this.dirty_canvas=!0);if(this.dragging_rectangle)this.dragging_rectangle[2]=a.canvasX-this.dragging_rectangle[0],this.dragging_rectangle[3]= +a.canvasY-this.dragging_rectangle[1],this.dirty_canvas=!0;else if(this.selected_group&&!this.read_only)this.selected_group_resizing?this.selected_group.size=[a.canvasX-this.selected_group.pos[0],a.canvasY-this.selected_group.pos[1]]:(this.selected_group.move(d[0]/this.ds.scale,d[1]/this.ds.scale,a.ctrlKey),this.selected_group._nodes.length&&(this.dirty_canvas=!0)),this.dirty_bgcanvas=!0;else if(this.dragging_canvas)this.ds.offset[0]+=d[0]/this.ds.scale,this.ds.offset[1]+=d[1]/this.ds.scale,this.dirty_bgcanvas= +this.dirty_canvas=!0;else if(this.allow_interaction&&!this.read_only){this.connecting_node&&(this.dirty_canvas=!0);for(var r=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes),c=0,m=this.graph._nodes.length;ch[0]+4||a.canvasYh[1]+4)){m=g;break}}m!=this.over_link_center&&(this.over_link_center=m,this.dirty_canvas=!0);this.canvas&&(this.canvas.style.cursor="")}if(this.node_capturing_input&&this.node_capturing_input!=r&&this.node_capturing_input.onMouseMove)this.node_capturing_input.onMouseMove(a);if(this.node_dragged&& +!this.live_mode){for(c in this.selected_nodes)r=this.selected_nodes[c],r.pos[0]+=d[0]/this.ds.scale,r.pos[1]+=d[1]/this.ds.scale;this.dirty_bgcanvas=this.dirty_canvas=!0}this.resizing_node&&!this.live_mode&&(this.resizing_node.size[0]=a.canvasX-this.resizing_node.pos[0],this.resizing_node.size[1]=a.canvasY-this.resizing_node.pos[1],d=Math.max(this.resizing_node.inputs?this.resizing_node.inputs.length:0,this.resizing_node.outputs?this.resizing_node.outputs.length:0)*b.NODE_SLOT_HEIGHT+(this.resizing_node.widgets? +this.resizing_node.widgets.length:0)*(b.NODE_WIDGET_HEIGHT+4)+4,this.resizing_node.size[1]this.dragging_rectangle[3]?this.dragging_rectangle[1]-m:this.dragging_rectangle[1];this.dragging_rectangle[0]=0>this.dragging_rectangle[2]? +this.dragging_rectangle[0]-g:this.dragging_rectangle[0];this.dragging_rectangle[1]=h;this.dragging_rectangle[2]=g;this.dragging_rectangle[3]=m;m=[];for(h=0;ha.click_time&&z(a.canvasX,a.canvasY,g.pos[0],g.pos[1]-b.NODE_TITLE_HEIGHT,b.NODE_TITLE_HEIGHT,b.NODE_TITLE_HEIGHT)&&g.collapse(),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{g=this.graph.getNodeOnPos(a.canvasX,a.canvasY,this.visible_nodes);!g&&300>a.click_time&&this.deselectAllNodes();this.dirty_canvas=!0;this.dragging_canvas=!1;if(this.node_over&&this.node_over.onMouseUp)this.node_over.onMouseUp(a,[a.canvasX-this.node_over.pos[0],a.canvasY-this.node_over.pos[1]],this);if(this.node_capturing_input&&this.node_capturing_input.onMouseUp)this.node_capturing_input.onMouseUp(a,[a.canvasX-this.node_capturing_input.pos[0],a.canvasY-this.node_capturing_input.pos[1]])}}else 2== +a.which?(this.dirty_canvas=!0,this.dragging_canvas=!1):3==a.which&&(this.dirty_canvas=!0,this.dragging_canvas=!1);this.graph.change();a.stopPropagation();a.preventDefault();return!1}};l.prototype.processMouseWheel=function(a){if(this.graph&&this.allow_dragcanvas){var c=null!=a.wheelDeltaY?a.wheelDeltaY:-60*a.detail;this.adjustMouseEvent(a);var d=this.ds.scale;0c&&(d*=1/1.1);this.ds.changeScale(d,[a.localX,a.localY]);this.graph.change();a.preventDefault();return!1}};l.prototype.isOverNodeBox= +function(a,c,d){var g=b.NODE_TITLE_HEIGHT;return z(c,d,a.pos[0]+2,a.pos[1]+2-g,g-4,g-4)?!0:!1};l.prototype.isOverNodeInput=function(a,c,d,b){if(a.inputs)for(var m=0,g=a.inputs.length;md-this.graph._last_trigger_time)&&this.drawBackCanvas();(this.dirty_canvas||a)&&this.drawFrontCanvas();this.fps=this.render_time?1/this.render_time: +0;this.frame+=1}};l.prototype.drawFrontCanvas=function(){this.dirty_canvas=!1;this.ctx||(this.ctx=this.bgcanvas.getContext("2d"));var a=this.ctx;if(a){a.start2D&&a.start2D();var c=this.canvas;a.restore();a.setTransform(1,0,0,1,0,0);this.dirty_area&&(a.save(),a.beginPath(),a.rect(this.dirty_area[0],this.dirty_area[1],this.dirty_area[2],this.dirty_area[3]),a.clip());this.clear_background&&a.clearRect(0,0,c.width,c.height);this.bgcanvas==this.canvas?this.drawBackCanvas():a.drawImage(this.bgcanvas,0, +0);if(this.onRender)this.onRender(c,a);this.show_info&&this.renderInfo(a);if(this.graph){a.save();this.ds.toCanvasContext(a);for(var c=this.computeVisibleNodes(null,this.visible_nodes),d=0;d> ";c.fillText(b+d.getTitle(),0.5*a.width,40);c.restore()}d=!1;this.onRenderBackground&&(d=this.onRenderBackground(a,c));c.restore();c.setTransform(1,0,0,1,0,0);this.visible_links.length=0;if(this.graph){c.save();this.ds.toCanvasContext(c);if(this.background_image&&0.5this.ds.scale,f=a._shape|| +a.constructor.shape||b.ROUND_SHAPE,p=a.constructor.title_mode,q=!0;p==b.TRANSPARENT_TITLE?q=!1:p==b.AUTOHIDE_TITLE&&e&&(q=!0);h[0]=0;h[1]=q?-m:0;h[2]=d[0]+1;h[3]=q?d[1]+m:d[1];e=c.globalAlpha;c.beginPath();f==b.BOX_SHAPE||n?c.fillRect(h[0],h[1],h[2],h[3]):f==b.ROUND_SHAPE||f==b.CARD_SHAPE?c.roundRect(h[0],h[1],h[2],h[3],this.round_radius,f==b.CARD_SHAPE?0:this.round_radius):f==b.CIRCLE_SHAPE&&c.arc(0.5*d[0],0.5*d[1],0.5*d[0],0,2*Math.PI);c.fill();a.flags.collapsed||(c.shadowColor="transparent",c.fillStyle= +"rgba(0,0,0,0.2)",c.fillRect(0,-1,h[2],2));c.shadowColor="transparent";if(a.onDrawBackground)a.onDrawBackground(c,this,this.canvas);if(q||p==b.TRANSPARENT_TITLE){if(a.onDrawTitleBar)a.onDrawTitleBar(c,m,d,this.ds.scale,g);else if(p!=b.TRANSPARENT_TITLE&&(a.constructor.title_color||this.render_title_colored)){q=a.constructor.title_color||g;a.flags.collapsed&&(c.shadowColor=b.DEFAULT_SHADOW_COLOR);if(this.use_gradients){var u=l.gradients[q];u||(u=l.gradients[q]=c.createLinearGradient(0,0,400,0),u.addColorStop(0, +q),u.addColorStop(1,"#000"));c.fillStyle=u}else c.fillStyle=q;c.beginPath();f==b.BOX_SHAPE||n?c.rect(0,-m,d[0]+1,m):f!=b.ROUND_SHAPE&&f!=b.CARD_SHAPE||c.roundRect(0,-m,d[0]+1,m,this.round_radius,a.flags.collapsed?this.round_radius:0);c.fill();c.shadowColor="transparent"}if(a.onDrawTitleBox)a.onDrawTitleBox(c,m,d,this.ds.scale);else f==b.ROUND_SHAPE||f==b.CIRCLE_SHAPE||f==b.CARD_SHAPE?(n&&(c.fillStyle="black",c.beginPath(),c.arc(0.5*m,-0.5*m,6,0,2*Math.PI),c.fill()),c.fillStyle=a.boxcolor||b.NODE_DEFAULT_BOXCOLOR, +c.beginPath(),c.arc(0.5*m,-0.5*m,5,0,2*Math.PI),c.fill()):(n&&(c.fillStyle="black",c.fillRect(0.5*(m-10)-1,-0.5*(m+10)-1,12,12)),c.fillStyle=a.boxcolor||b.NODE_DEFAULT_BOXCOLOR,c.fillRect(0.5*(m-10),-0.5*(m+10),10,10));c.globalAlpha=e;if(a.onDrawTitleText)a.onDrawTitleText(c,m,d,this.ds.scale,this.title_text_font,k);!n&&(c.font=this.title_text_font,n=a.getTitle())&&(c.fillStyle=k?"white":a.constructor.title_text_color||this.node_title_color,a.flags.collapsed?(c.textAlign="center",e=c.measureText(n), +c.fillText(n,m+0.5*e.width,b.NODE_TITLE_TEXT_Y-m),c.textAlign="left"):(c.textAlign="left",c.fillText(n,m,b.NODE_TITLE_TEXT_Y-m)));if(a.onDrawTitle)a.onDrawTitle(c)}if(k){if(a.onBounding)a.onBounding(h);p==b.TRANSPARENT_TITLE&&(h[1]-=m,h[3]+=m);c.lineWidth=1;c.globalAlpha=0.8;c.beginPath();f==b.BOX_SHAPE?c.rect(-6+h[0],-6+h[1],12+h[2],12+h[3]):f==b.ROUND_SHAPE||f==b.CARD_SHAPE&&a.flags.collapsed?c.roundRect(-6+h[0],-6+h[1],12+h[2],12+h[3],2*this.round_radius):f==b.CARD_SHAPE?c.roundRect(-6+h[0],-6+ +h[1],12+h[2],12+h[3],2*this.round_radius,2):f==b.CIRCLE_SHAPE&&c.arc(0.5*d[0],0.5*d[1],0.5*d[0]+6,0,2*Math.PI);c.strokeStyle="#FFF";c.stroke();c.strokeStyle=g;c.globalAlpha=1}};var B=new Float32Array(4),k=new Float32Array(4),n=new Float32Array(2),g=new Float32Array(2);l.prototype.drawConnections=function(a){var c=b.getTime(),d=this.visible_area;B[0]=d[0]-20;B[1]=d[1]-20;B[2]=d[2]+40;B[3]=d[3]+40;a.lineWidth=this.connections_width;a.fillStyle="#AAA";a.strokeStyle="#AAA";a.globalAlpha=this.editor_alpha; +for(var d=this.graph._nodes,h=0,m=d.length;hk[2]&&(k[0]+=k[2],k[2]=Math.abs(k[2]));0>k[3]&&(k[1]+=k[3],k[3]=Math.abs(k[3]));if(w(k, +B)){var D=p.outputs[q],q=e.inputs[l];if(D&&q&&(p=D.dir||(p.horizontal?b.DOWN:b.RIGHT),q=q.dir||(e.horizontal?b.UP:b.LEFT),this.renderLink(a,v,u,f,!1,0,null,p,q),f&&f._last_time&&1E3>c-f._last_time)){var D=2-0.002*(c-f._last_time),F=a.globalAlpha;a.globalAlpha=F*D;this.renderLink(a,v,u,f,!0,D,"white",p,q);a.globalAlpha=F}}}}}}a.globalAlpha=1};l.prototype.renderLink=function(a,c,d,g,m,h,k,e,n,f){g&&this.visible_links.push(g);!k&&g&&(k=g.color||l.link_type_colors[g.type]);k||(k=this.default_link_color); +null!=g&&this.highlighted_links[g.id]&&(k="#FFF");e=e||b.RIGHT;n=n||b.LEFT;var p=A(c,d);this.render_connections_border&&0.6c[1]?0:Math.PI,a.save(),a.translate(u[0],u[1]),a.rotate(D),a.beginPath(),a.moveTo(-5,-3),a.lineTo(0,7),a.lineTo(5,-3),a.fill(),a.restore(),a.save(),a.translate(f[0], +f[1]),a.rotate(F),a.beginPath(),a.moveTo(-5,-3),a.lineTo(0,7),a.lineTo(5,-3),a.fill(),a.restore()),a.beginPath(),a.arc(m[0],m[1],5,0,2*Math.PI),a.fill());if(h)for(a.fillStyle=k,u=0;5>u;++u)h=(0.001*b.getTime()+0.2*u)%1,m=this.computeConnectionPoint(c,d,h,e,n),a.beginPath(),a.arc(m[0],m[1],5,0,2*Math.PI),a.fill()};l.prototype.computeConnectionPoint=function(a,c,d,g,m){g=g||b.RIGHT;m=m||b.LEFT;var h=A(a,c),k=[a[0],a[1]],e=[c[0],c[1]];switch(g){case b.LEFT:k[0]+=-0.25*h;break;case b.RIGHT:k[0]+=0.25* +h;break;case b.UP:k[1]+=-0.25*h;break;case b.DOWN:k[1]+=0.25*h}switch(m){case b.LEFT:e[0]+=-0.25*h;break;case b.RIGHT:e[0]+=0.25*h;break;case b.UP:e[1]+=-0.25*h;break;case b.DOWN:e[1]+=0.25*h}g=(1-d)*(1-d)*(1-d);m=3*(1-d)*(1-d)*d;h=3*(1-d)*d*d;d*=d*d;return[g*a[0]+m*k[0]+h*e[0]+d*c[0],g*a[1]+m*k[1]+h*e[1]+d*c[1]]};l.prototype.drawExecutionOrder=function(a){a.shadowColor="transparent";a.globalAlpha=0.25;a.textAlign="center";a.strokeStyle="white";a.globalAlpha=0.75;for(var c=this.visible_nodes,d=0;d< +c.length;++d){var g=c[d];a.fillStyle="black";a.fillRect(g.pos[0]-b.NODE_TITLE_HEIGHT,g.pos[1]-b.NODE_TITLE_HEIGHT,b.NODE_TITLE_HEIGHT,b.NODE_TITLE_HEIGHT);0==g.order&&a.strokeRect(g.pos[0]-b.NODE_TITLE_HEIGHT+0.5,g.pos[1]-b.NODE_TITLE_HEIGHT+0.5,b.NODE_TITLE_HEIGHT,b.NODE_TITLE_HEIGHT);a.fillStyle="#FFF";a.fillText(g.order,g.pos[0]+-0.5*b.NODE_TITLE_HEIGHT,g.pos[1]-6)}a.globalAlpha=1};l.prototype.drawNodeWidgets=function(a,c,d,g){if(!a.widgets||!a.widgets.length)return 0;var h=a.size[0],k=a.widgets; +c+=2;var e=b.NODE_WIDGET_HEIGHT,n=0.5u.last_y&&ku.options.max&&(u.value=u.options.max);else if("mousedown"==d.type)if((g=u.options.values)&&g.constructor===Function&&(g=u.options.values(u,a)),e=40>e?-1:e>n-40?1:0,"number"==u.type)u.value+=0.1*e*(u.options.step||1),null!=u.options.min&&u.valueu.options.max&&(u.value=u.options.max);else if(e)f= +g.indexOf(u.value)+e,f>=g.length&&(f=0),0>f&&(f=g.length-1),u.value=g[f];else{new b.ContextMenu(g,{scale:Math.max(1,this.ds.scale),event:d,className:"dark",callback:D.bind(u)},f);var D=function(a,c,d){this.value=a;h(this,a);l.dirty_canvas=!0;return!1}}setTimeout(function(){h(this,this.value)}.bind(u),20);this.dirty_canvas=!0;break;case "toggle":"mousedown"==d.type&&(u.value=!u.value,u.callback&&setTimeout(function(){h(u,u.value)},20));break;case "string":case "text":"mousedown"==d.type&&this.prompt("Value", +u.value,function(a){this.value=a;h(this,a)}.bind(u),d);break;default:u.mouse&&u.mouse(ctx,d,[e,k],a)}return u}}return null};l.prototype.drawGroups=function(a,c){if(this.graph){var d=this.graph._groups;c.save();c.globalAlpha=0.5*this.editor_alpha;for(var g=0;gd&&0.01>c.editor_alpha&&(clearInterval(b),1>d&&(c.live_mode=!0));1"+f+""+a+"",value:f});if(n.length)return new b.ContextMenu(n,{event:d,callback:e,parentMenu:g,allow_html:!0,node:h},c),!1}};l.decodeHTML=function(a){var c=document.createElement("div");c.innerText=a;return c.innerHTML};l.onResizeNode=function(a,c,d,b,g){g&&(g.size=g.computeSize(), +g.setDirtyCanvas(!0,!0))};l.prototype.showLinkMenu=function(a,c){var d=this;console.log(a.data);new b.ContextMenu(["Delete"],{event:c,title:null!=a.data?a.data.constructor.name:null,callback:function(c){switch(c){case "Delete":d.graph.removeLink(a.id)}}});return!1};l.onShowPropertyEditor=function(a,c,d,b,g){function h(){var c=n.value;"Number"==a.type?c=Number(c):"Boolean"==a.type&&(c=Boolean(c));g[e]=c;k.parentNode&&k.parentNode.removeChild(k);g.setDirtyCanvas(!0,!0)}var e=a.property||"title";c=g[e]; +var k=document.createElement("div");k.className="graphdialog";k.innerHTML="";k.querySelector(".name").innerText=e;var n=k.querySelector("input");n&&(n.value=c,n.addEventListener("blur",function(a){this.focus()}),n.addEventListener("keydown",function(a){13==a.keyCode&&(h(),a.preventDefault(),a.stopPropagation())}));c=l.active_canvas.canvas;d=c.getBoundingClientRect();var f=b=-20;d&&(b-=d.left,f-=d.top);event?(k.style.left= +event.clientX+b+"px",k.style.top=event.clientY+f+"px"):(k.style.left=0.5*c.width+b+"px",k.style.top=0.5*c.height+f+"px");k.querySelector("button").addEventListener("click",h);c.parentNode.appendChild(k)};l.prototype.prompt=function(a,c,d,b){var g=this;a=a||"";var h=!1,e=document.createElement("div");e.className="graphdialog rounded";e.innerHTML=" ";e.close=function(){g.prompt_box=null;e.parentNode&& +e.parentNode.removeChild(e)};1l.search_limit))break}if(Array.prototype.filter)for(F=Object.keys(b.registered_node_types).filter(function(a){return-1!==a.toLowerCase().indexOf(d)}),k=0;kl.search_limit);k++);else for(k in b.registered_node_types)if(-1!= +k.indexOf(d)&&(a(k),-1!==l.search_limit&&e++>l.search_limit))break}}var h=this,e=document.createElement("div");e.className="litegraph litesearchbox graphdialog rounded";e.innerHTML="Search
";e.close=function(){h.search_box=null;document.body.focus();setTimeout(function(){h.canvas.focus()},20);e.parentNode&&e.parentNode.removeChild(e)};var k=null;1";else if("enum"==h&&e.values){n=""}else if("boolean"==h)n="";else{console.warn("unknown type: "+h);return}var l=this.createDialog(""+c+""+n+"",d);if("enum"==h&&e.values){var u=l.querySelector("select");u.addEventListener("change",function(a){g(a.target.value)})}else if("boolean"==h)(u=l.querySelector("input"))&&u.addEventListener("click",function(a){g(!!u.checked)});else if(u=l.querySelector("input"))u.addEventListener("blur",function(a){this.focus()}),u.value=void 0!==a.properties[c]?a.properties[c]:"",u.addEventListener("keydown", +function(a){13==a.keyCode&&(b(),a.preventDefault(),a.stopPropagation())});l.querySelector("button").addEventListener("click",b)}};l.prototype.createDialog=function(a,c){c=c||{};var d=document.createElement("div");d.className="graphdialog";d.innerHTML=a;var b=this.canvas.getBoundingClientRect(),g=-20,h=-20;b&&(g-=b.left,h-=b.top);c.position?(g+=c.position[0],h+=c.position[1]):c.event?(g+=c.event.clientX,h+=c.event.clientY):(g+=0.5*this.canvas.width,h+=0.5*this.canvas.height);d.style.left=g+"px";d.style.top= +h+"px";this.canvas.parentNode.appendChild(d);d.close=function(){this.parentNode&&this.parentNode.removeChild(this)};return d};l.onMenuNodeCollapse=function(a,c,d,b,g){g.collapse()};l.onMenuNodePin=function(a,c,d,b,g){g.pin()};l.onMenuNodeMode=function(a,c,d,g,h){new b.ContextMenu(["Always","On Event","On Trigger","Never"],{event:d,callback:function(a){if(h)switch(a){case "On Event":h.mode=b.ON_EVENT;break;case "On Trigger":h.mode=b.ON_TRIGGER;break;case "Never":h.mode=b.NEVER;break;default:h.mode= +b.ALWAYS}},parentMenu:g,node:h});return!1};l.onMenuNodeColors=function(a,c,d,g,h){if(!h)throw"no node for color";c=[];c.push({value:null,content:"No color"});for(var e in l.node_colors)a=l.node_colors[e],a={value:e,content:""+e+""},c.push(a);new b.ContextMenu(c,{event:d,callback:function(a){h&&((a=a.value?l.node_colors[a.value]: +null)?h.constructor===b.LGraphGroup?h.color=a.groupcolor:(h.color=a.color,h.bgcolor=a.bgcolor):(delete h.color,delete h.bgcolor),h.setDirtyCanvas(!0,!0))},parentMenu:g,node:h});return!1};l.onMenuNodeShapes=function(a,c,d,g,h){if(!h)throw"no node passed";new b.ContextMenu(b.VALID_SHAPES,{event:d,callback:function(a){h&&(h.shape=a,h.setDirtyCanvas(!0))},parentMenu:g,node:h});return!1};l.onMenuNodeRemove=function(a,c,d,b,g){if(!g)throw"no node passed";!1!==g.removable&&(g.graph.remove(g),g.setDirtyCanvas(!0, +!0))};l.onMenuNodeClone=function(a,c,d,b,g){!1!=g.clonable&&(a=g.clone())&&(a.pos=[g.pos[0]+5,g.pos[1]+5],g.graph.add(a),g.setDirtyCanvas(!0,!0))};l.node_colors={red:{color:"#322",bgcolor:"#533",groupcolor:"#A88"},brown:{color:"#332922",bgcolor:"#593930",groupcolor:"#b06634"},green:{color:"#232",bgcolor:"#353",groupcolor:"#8A8"},blue:{color:"#223",bgcolor:"#335",groupcolor:"#88A"},pale_blue:{color:"#2a363b",bgcolor:"#3f5159",groupcolor:"#3f789e"},cyan:{color:"#233",bgcolor:"#355",groupcolor:"#8AA"}, +purple:{color:"#323",bgcolor:"#535",groupcolor:"#a1309b"},yellow:{color:"#432",bgcolor:"#653",groupcolor:"#b58b2a"},black:{color:"#222",bgcolor:"#000",groupcolor:"#444"}};l.prototype.getCanvasMenuOptions=function(){var a=null;this.getMenuOptions?a=this.getMenuOptions():(a=[{content:"Add Node",has_submenu:!0,callback:l.onMenuAdd},{content:"Add Group",callback:l.onGroupAdd}],this._graph_stack&&0Name",b),k=e.querySelector("input");k&&h&&(k.value=h.label||"");e.querySelector("button").addEventListener("click",function(a){k.value&&(h&&(h.label=k.value),d.setDirty(!0));e.close()})}},extra:a},k=null;a&&(k=a.getSlotInPosition(c.canvasX,c.canvasY),l.active_node=a);if(k){h=[];k&&k.output&&k.output.links&&k.output.links.length&&h.push({content:"Disconnect Links",slot:k});var n=k.input||k.output;h.push(n.locked? +"Cannot remove":{content:"Remove Slot",slot:k});h.push(n.nameLocked?"Cannot rename":{content:"Rename Slot",slot:k});e.title=(k.input?k.input.type:k.output.type)||"*";k.input&&k.input.type==b.ACTION&&(e.title="Action");k.output&&k.output.type==b.EVENT&&(e.title="Event")}else a?h=this.getNodeMenuOptions(a):(h=this.getCanvasMenuOptions(),(k=this.graph.getGroupOnPos(c.canvasX,c.canvasY))&&h.push(null,{content:"Edit Group",has_submenu:!0,submenu:{title:"Group",extra:k,options:this.getGroupMenuOptions(k)}})); +h&&new b.ContextMenu(h,e,g)};this.CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.roundRect=function(a,c,d,b,g,h){void 0===g&&(g=5);void 0===h&&(h=g);this.moveTo(a+g,c);this.lineTo(a+d-g,c);this.quadraticCurveTo(a+d,c,a+d,c+g);this.lineTo(a+d,c+b-h);this.quadraticCurveTo(a+d,c+b,a+d-h,c+b);this.lineTo(a+h,c+b);this.quadraticCurveTo(a,c+b,a,c+b-h);this.lineTo(a,c+g);this.quadraticCurveTo(a,c,a+g,c)});b.compareObjects=function(a,c){for(var d in a)if(a[d]!=c[d])return!1;return!0};b.distance= +A;b.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")+")"};b.isInsideRectangle=z;b.growBounding=function(a,c,d){ca[2]&&(a[2]=c);da[3]&&(a[3]=d)};b.isInsideBounding=function(a,c){return a[0]c[1][0]||a[1]>c[1][1]?!1:!0};b.overlapBounding=w;b.hex2num=function(a){"#"==a.charAt(0)&&(a=a.slice(1));a=a.toUpperCase(); +for(var c=Array(3),d=0,b,g,h=0;6>h;h+=2)b="0123456789ABCDEF".indexOf(a.charAt(h)),g="0123456789ABCDEF".indexOf(a.charAt(h+1)),c[d]=16*b+g,d++;return c};b.num2hex=function(a){for(var c="#",d,b,g=0;3>g;g++)d=a[g]/16,b=a[g]%16,c+="0123456789ABCDEF".charAt(d)+"0123456789ABCDEF".charAt(b);return c};y.prototype.addItem=function(a,c,d){function b(a){var c=this.value;c&&c.has_submenu&&g.call(this,a)}function g(a){var c=this.value,b=!0;h.current_submenu&&h.current_submenu.close(a);if(d.callback){var e=d.callback.call(this, +c,d,a,h,d.node);!0===e&&(b=!1)}if(c&&(c.callback&&!d.ignore_item_callbacks&&!0!==c.disabled&&(e=c.callback.call(this,c,d,a,h,d.extra),!0===e&&(b=!1)),c.submenu)){if(!c.submenu.options)throw"ContextMenu submenu needs options";new h.constructor(c.submenu.options,{callback:c.submenu.callback,event:a,parentMenu:h,ignore_item_callbacks:c.submenu.ignore_item_callbacks,title:c.submenu.title,extra:c.submenu.extra,autoopen:d.autoopen});b=!1}b&&!h.lock&&h.close()}var h=this;d=d||{};var e=document.createElement("div"); +e.className="litemenu-entry submenu";var k=!1;if(null===c)e.classList.add("separator");else{e.innerHTML=c&&c.title?c.title:a;if(e.value=c)c.disabled&&(k=!0,e.classList.add("disabled")),(c.submenu||c.has_submenu)&&e.classList.add("has_submenu");"function"==typeof c?(e.dataset.value=a,e.onclick_callback=c):e.dataset.value=c;c.className&&(e.className+=" "+c.className)}this.root.appendChild(e);k||e.addEventListener("click",g);d.autoopen&&e.addEventListener("mouseenter",b);return e};y.prototype.close= +function(a,c){this.root.parentNode&&this.root.parentNode.removeChild(this.root);this.parentMenu&&!c&&(this.parentMenu.lock=!1,this.parentMenu.current_submenu=null,void 0===a?this.parentMenu.close():a&&!y.isCursorOverElement(a,this.parentMenu.root)&&y.trigger(this.parentMenu.root,"mouseleave",a));this.current_submenu&&this.current_submenu.close(a,!0);this.root.closing_timer&&clearTimeout(this.root.closing_timer)};y.trigger=function(a,c,d,b){var g=document.createEvent("CustomEvent");g.initCustomEvent(c, +!0,!0,d);g.srcElement=b;a.dispatchEvent?a.dispatchEvent(g):a.__events&&a.__events.dispatchEvent(g);return g};y.prototype.getTopMenu=function(){return this.options.parentMenu?this.options.parentMenu.getTopMenu():this};y.prototype.getFirstEvent=function(){return this.options.parentMenu?this.options.parentMenu.getFirstEvent():this.options.event};y.isCursorOverElement=function(a,c){var d=a.clientX,b=a.clientY,g=c.getBoundingClientRect();return g?b>g.top&&bg.left&&da?c:dthis.size[0]-m.NODE_TITLE_HEIGHT&&0>g[1]){var k=this;setTimeout(function(){d.openSubgraph(k.subgraph)},10)}};h.prototype.onAction=function(c,g){this.subgraph.onAction(c,g)};h.prototype.onExecute=function(){if(this.enabled=this.getInputOrProperty("enabled")){if(this.inputs)for(var c=0;c=h?this.trigger(null,f):this._pending.push([h,f])};t.prototype.onExecute=function(){var d=1E3*this.graph.elapsed_time;this.isInputConnected(1)&&(this.properties.time_in_ms=this.getInputData(1));for(var f=0;fd[1]))return this.old_y=c.canvasY,this.captureInput(!0),this.mouse_captured=!0};q.prototype.onMouseMove=function(c){if(this.mouse_captured){var d=this.old_y-c.canvasY;c.shiftKey&&(d*=10);if(c.metaKey||c.altKey)d*=0.1;this.old_y=c.canvasY; -c=this._remainder+d/q.pixels_threshold;this._remainder=c%1;c=Math.clamp(this.properties.value+(c|0)*this.properties.step,this.properties.min,this.properties.max);this.properties.value=c;this.graph._version++;this.setDirtyCanvas(!0)}};q.prototype.onMouseUp=function(c,d){200>c.click_time&&(this.properties.value=Math.clamp(this.properties.value+(d[1]>0.5*this.size[1]?-1:1)*this.properties.step,this.properties.min,this.properties.max),this.graph._version++,this.setDirtyCanvas(!0));this.mouse_captured&& -(this.mouse_captured=!1,this.captureInput(!1))};z.registerNodeType("widget/number",q);n.title="Knob";n.desc="Circular controller";n.size=[80,100];n.prototype.onDrawForeground=function(c){if(!this.flags.collapsed){-1==this.value&&(this.value=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min));var d=0.5*this.size[0],k=0.5*this.size[1],f=0.5*Math.min(this.size[0],this.size[1])-5;c.globalAlpha=1;c.save();c.translate(d,k);c.rotate(0.75*Math.PI);c.fillStyle="rgba(0,0,0,0.5)"; -c.beginPath();c.moveTo(0,0);c.arc(0,0,f,0,1.5*Math.PI);c.fill();c.strokeStyle="black";c.fillStyle=this.properties.color;c.lineWidth=2;c.beginPath();c.moveTo(0,0);c.arc(0,0,f-4,0,1.5*Math.PI*Math.max(0.01,this.value));c.closePath();c.fill();c.lineWidth=1;c.globalAlpha=1;c.restore();c.fillStyle="black";c.beginPath();c.arc(d,k,0.75*f,0,2*Math.PI,!0);c.fill();c.fillStyle=this.mouseOver?"white":this.properties.color;c.beginPath();var h=this.value*Math.PI*1.5+0.75*Math.PI;c.arc(d+Math.cos(h)*f*0.65,k+Math.sin(h)* -f*0.65,0.05*f,0,2*Math.PI,!0);c.fill();c.fillStyle=this.mouseOver?"white":"#AAA";c.font=Math.floor(0.5*f)+"px Arial";c.textAlign="center";c.fillText(this.properties.value.toFixed(this.properties.precision),d,k+0.15*f)}};n.prototype.onExecute=function(){this.setOutputData(0,this.properties.value);this.boxcolor=z.colorToString([this.value,this.value,this.value])};n.prototype.onMouseDown=function(c){this.center=[0.5*this.size[0],0.5*this.size[1]+20];this.radius=0.5*this.size[0];if(20>c.canvasY-this.pos[1]|| -z.distance([c.canvasX,c.canvasY],[this.pos[0]+this.center[0],this.pos[1]+this.center[1]])>this.radius)return!1;this.oldmouse=[c.canvasX-this.pos[0],c.canvasY-this.pos[1]];this.captureInput(!0);return!0};n.prototype.onMouseMove=function(c){if(this.oldmouse){c=[c.canvasX-this.pos[0],c.canvasY-this.pos[1]];var d=this.value,d=d-0.01*(c[1]-this.oldmouse[1]);1d&&(d=0);this.value=d;this.properties.value=this.properties.min+(this.properties.max-this.properties.min)*this.value;this.oldmouse=c;this.setDirtyCanvas(!0)}}; -n.prototype.onMouseUp=function(c){this.oldmouse&&(this.oldmouse=null,this.captureInput(!1))};n.prototype.onPropertyChanged=function(c,d){if("min"==c||"max"==c||"value"==c)return this.properties[c]=parseFloat(d),!0};z.registerNodeType("widget/knob",n);t.title="Inner Slider";t.prototype.onPropertyChanged=function(c,d){"value"==c&&(this.slider.value=d)};t.prototype.onExecute=function(){this.setOutputData(0,this.properties.value)};z.registerNodeType("widget/internal_slider",t);f.title="H.Slider";f.desc= -"Linear slider controller";f.prototype.onDrawForeground=function(c){-1==this.value&&(this.value=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min));c.globalAlpha=1;c.lineWidth=1;c.fillStyle="#000";c.fillRect(2,2,this.size[0]-4,this.size[1]-4);c.fillStyle=this.properties.color;c.beginPath();c.rect(4,4,(this.size[0]-8)*this.value,this.size[1]-8);c.fill()};f.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=z.colorToString([this.value,this.value,this.value])};f.prototype.onMouseDown=function(c){if(0>c.canvasY-this.pos[1])return!1;this.oldmouse=[c.canvasX-this.pos[0],c.canvasY-this.pos[1]];this.captureInput(!0);return!0};f.prototype.onMouseMove=function(c){if(this.oldmouse){c=[c.canvasX-this.pos[0],c.canvasY-this.pos[1]];var d=this.value,d=d+(c[0]-this.oldmouse[0])/this.size[0];1d&&(d=0);this.value=d;this.oldmouse=c;this.setDirtyCanvas(!0)}}; -f.prototype.onMouseUp=function(c){this.oldmouse=null;this.captureInput(!1)};f.prototype.onMouseLeave=function(c){};z.registerNodeType("widget/hslider",f);y.title="Progress";y.desc="Shows data in linear progress";y.prototype.onExecute=function(){var c=this.getInputData(0);void 0!=c&&(this.properties.value=c)};y.prototype.onDrawForeground=function(c){c.lineWidth=1;c.fillStyle=this.properties.color;var d=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min),d=Math.min(1, -d),d=Math.max(0,d);c.fillRect(2,2,(this.size[0]-4)*d,this.size[1]-4)};z.registerNodeType("widget/progress",y);B.title="Text";B.desc="Shows the input value";B.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}];B.prototype.onDrawForeground=function(c){c.fillStyle=this.properties.color;var d=this.properties.value;this.properties.glowSize?(c.shadowColor=this.properties.color,c.shadowOffsetX=0,c.shadowOffsetY= -0,c.shadowBlur=this.properties.glowSize):c.shadowColor="transparent";var k=this.properties.fontsize;c.textAlign=this.properties.align;c.font=k.toString()+"px "+this.properties.font;this.str="number"==typeof d?d.toFixed(this.properties.decimals):d;if("string"==typeof this.str){var d=this.str.split("\\n"),f;for(f in d)c.fillText(d[f],"left"==this.properties.align?15:this.size[0]-15,-0.15*k+k*(parseInt(f)+1))}c.shadowColor="transparent";this.last_ctx=c;c.textAlign="left"};B.prototype.onExecute=function(){var c= -this.getInputData(0);null!=c&&(this.properties.value=c)};B.prototype.resize=function(){if(this.last_ctx){var c=this.str.split("\\n");this.last_ctx.font=this.properties.fontsize+"px "+this.properties.font;var d=0,k;for(k in c){var f=this.last_ctx.measureText(c[k]).width;dn?h.xbox.axes.lx:0,this._left_axis[1]=Math.abs(h.xbox.axes.ly)>n?h.xbox.axes.ly:0,this._right_axis[0]=Math.abs(h.xbox.axes.rx)>n?h.xbox.axes.rx:0,this._right_axis[1]=Math.abs(h.xbox.axes.ry)>n?h.xbox.axes.ry:0,this._triggers[0]=Math.abs(h.xbox.axes.ltrigger)>n?h.xbox.axes.ltrigger: -0,this._triggers[1]=Math.abs(h.xbox.axes.rtrigger)>n?h.xbox.axes.rtrigger:0);if(this.outputs)for(n=0;nh;h++)if(n[h]){h=n[h];n=this.xbox_mapping;n||(n=this.xbox_mapping={axes:[],buttons:{},hat:"",hatmap:d.CENTER});n.axes.lx=h.axes[0];n.axes.ly=h.axes[1];n.axes.rx=h.axes[2];n.axes.ry=h.axes[3];n.axes.ltrigger=h.buttons[6].value; -n.axes.rtrigger=h.buttons[7].value;n.hat="";n.hatmap=d.CENTER;for(var t=0;t","string",{values:a.values});this.size=[80,60]}function b(){this.addInput("inc","number");this.addOutput("total","number");this.addProperty("increment",1);this.addProperty("value",0)}function e(){this.addInput("v","number");this.addOutput("sin","number");this.addProperty("amplitude",1);this.addProperty("offset",0);this.bgImageUrl="nodes/imgs/icon-sin.png"}function s(){this.addInput("x","number");this.addInput("y","number");this.addOutput("","number"); -this.properties={x:1,y:1,formula:"x+y"};this.code_widget=this.addWidget("text","F(x,y)",this.properties.formula,function(a,b,e){e.properties.formula=a});this.addWidget("toggle","allow",C.allow_scripts,function(a){C.allow_scripts=a});this._func=null}function l(){this.addInput("vec2","vec2");this.addOutput("x","number");this.addOutput("y","number")}function H(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2","vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function F(){this.addInput("vec3", +(function(t){function e(){this.addOutput("in ms","number");this.addOutput("in sec","number")}function f(){this.size=[140,80];this.properties={enabled:!0};this.enabled=!0;this.subgraph=new LGraph;this.subgraph._subgraph_node=this;this.subgraph._is_subgraph=!0;this.subgraph.onTrigger=this.onSubgraphTrigger.bind(this);this.subgraph.onInputAdded=this.onSubgraphNewInput.bind(this);this.subgraph.onInputRenamed=this.onSubgraphRenamedInput.bind(this);this.subgraph.onInputTypeChanged=this.onSubgraphTypeChangeInput.bind(this); +this.subgraph.onInputRemoved=this.onSubgraphRemovedInput.bind(this);this.subgraph.onOutputAdded=this.onSubgraphNewOutput.bind(this);this.subgraph.onOutputRenamed=this.onSubgraphRenamedOutput.bind(this);this.subgraph.onOutputTypeChanged=this.onSubgraphTypeChangeOutput.bind(this);this.subgraph.onOutputRemoved=this.onSubgraphRemovedOutput.bind(this)}function q(){this.addOutput("","");this.name_in_graph="";this.properties={};var b=this;Object.defineProperty(this.properties,"name",{get:function(){return b.name_in_graph}, +set:function(a){""!=a&&a!=b.name_in_graph&&"enabled"!=a&&(b.graph&&(b.name_in_graph?b.graph.renameInput(b.name_in_graph,a):b.graph.addInput(a,b.properties.type)),b.name_widget.value=a,b.name_in_graph=a)},enumerable:!0});Object.defineProperty(this.properties,"type",{get:function(){return b.outputs[0].type},set:function(a){"event"==a&&(a=n.EVENT);b.outputs[0].type=a;b.name_in_graph&&b.graph.changeInputType(b.name_in_graph,b.outputs[0].type);b.type_widget.value=a},enumerable:!0});this.name_widget=this.addWidget("text", +"Name",this.properties.name,function(a){a&&(b.properties.name=a)});this.type_widget=this.addWidget("text","Type",this.properties.type,function(a){b.properties.type=a||""});this.widgets_up=!0;this.size=[180,60]}function p(){this.addInput("","");this.name_in_graph="";this.properties={};var b=this;Object.defineProperty(this.properties,"name",{get:function(){return b.name_in_graph},set:function(a){""!=a&&a!=b.name_in_graph&&(b.name_in_graph?b.graph.renameOutput(b.name_in_graph,a):b.graph.addOutput(a, +b.properties.type),b.name_widget.value=a,b.name_in_graph=a)},enumerable:!0});Object.defineProperty(this.properties,"type",{get:function(){return b.inputs[0].type},set:function(a){if("action"==a||"event"==a)a=n.ACTION;b.inputs[0].type=a;b.name_in_graph&&b.graph.changeOutputType(b.name_in_graph,b.inputs[0].type);b.type_widget.value=a||""},enumerable:!0});this.name_widget=this.addWidget("text","Name",this.properties.name,function(a){a&&(b.properties.name=a)});this.type_widget=this.addWidget("text","Type", +this.properties.type,function(a){b.properties.type=a||""});this.widgets_up=!0;this.size=[180,60]}function s(){this.addOutput("value","number");this.addProperty("value",1)}function l(){this.addOutput("","string");this.addProperty("value","");this.widget=this.addWidget("text","value","",this.setValue.bind(this));this.widgets_up=!0;this.size=[100,30]}function A(){this.addOutput("","");this.addProperty("value","");this.widget=this.addWidget("text","json","",this.setValue.bind(this));this.widgets_up=!0; +this.size=[140,30];this._value=null}function z(){this.addInput("obj","");this.addOutput("","");this.addProperty("value","");this.widget=this.addWidget("text","prop.","",this.setValue.bind(this));this.widgets_up=!0;this.size=[140,30];this._value=null}function w(){this.addInput("obj","");this.addOutput("keys","array");this.size=[140,30]}function y(){this.addInput("A","object");this.addInput("B","object");this.addOutput("","object");this._result={};var b=this;this.addWidget("button","clear","",function(){b._result= +{}});this.size=this.computeSize()}function b(){this.size=[60,30];this.addInput("in");this.addOutput("out");this.properties={varname:"myname",global:!1};this.value=null}function x(){this.size=[60,30];this.addInput("value",0,{label:""});this.value=0}function v(){this.addInput("in",0);this.addOutput("out",0);this.size=[40,30]}function h(){this.mode=n.ON_EVENT;this.size=[80,30];this.addProperty("msg","");this.addInput("log",n.EVENT);this.addInput("msg",0)}function B(){this.mode=n.ON_EVENT;this.addProperty("msg", +"");this.addInput("",n.EVENT);var b=this;this.widget=this.addWidget("text","Text","",function(a){b.properties.msg=a});this.widgets_up=!0;this.size=[200,30]}function k(){this.size=[60,30];this.addProperty("onExecute","return A;");this.addInput("A","");this.addInput("B","");this.addOutput("out","");this._func=null;this.data={}}var n=t.LiteGraph;e.title="Time";e.desc="Time";e.prototype.onExecute=function(){this.setOutputData(0,1E3*this.graph.globaltime);this.setOutputData(1,this.graph.globaltime)};n.registerNodeType("basic/time", +e);f.title="Subgraph";f.desc="Graph inside a node";f.title_color="#334";f.prototype.onGetInputs=function(){return[["enabled","boolean"]]};f.prototype.onDrawTitle=function(b){if(!this.flags.collapsed){b.fillStyle="#555";var a=n.NODE_TITLE_HEIGHT,c=this.size[0]-a;b.fillRect(c,-a,a,a);b.fillStyle="#333";b.beginPath();b.moveTo(c+0.2*a,0.6*-a);b.lineTo(c+0.8*a,0.6*-a);b.lineTo(c+0.5*a,0.3*-a);b.fill()}};f.prototype.onDblClick=function(b,a,c){var d=this;setTimeout(function(){c.openSubgraph(d.subgraph)}, +10)};f.prototype.onMouseDown=function(b,a,c){if(!this.flags.collapsed&&a[0]>this.size[0]-n.NODE_TITLE_HEIGHT&&0>a[1]){var d=this;setTimeout(function(){c.openSubgraph(d.subgraph)},10)}};f.prototype.onAction=function(b,a){this.subgraph.onAction(b,a)};f.prototype.onExecute=function(){if(this.enabled=this.getInputOrProperty("enabled")){if(this.inputs)for(var b=0;b=f?this.trigger(null,b):this._pending.push([f,b])};l.prototype.onExecute=function(){var e=1E3*this.graph.elapsed_time;this.isInputConnected(1)&&(this.properties.time_in_ms=this.getInputData(1));for(var b=0;be[1]))return this.old_y=b.canvasY,this.captureInput(!0),this.mouse_captured=!0};q.prototype.onMouseMove=function(b){if(this.mouse_captured){var e=this.old_y-b.canvasY;b.shiftKey&&(e*=10);if(b.metaKey||b.altKey)e*=0.1;this.old_y=b.canvasY; +b=this._remainder+e/q.pixels_threshold;this._remainder=b%1;b=Math.clamp(this.properties.value+(b|0)*this.properties.step,this.properties.min,this.properties.max);this.properties.value=b;this.graph._version++;this.setDirtyCanvas(!0)}};q.prototype.onMouseUp=function(b,e){200>b.click_time&&(this.properties.value=Math.clamp(this.properties.value+(e[1]>0.5*this.size[1]?-1:1)*this.properties.step,this.properties.min,this.properties.max),this.graph._version++,this.setDirtyCanvas(!0));this.mouse_captured&& +(this.mouse_captured=!1,this.captureInput(!1))};y.registerNodeType("widget/number",q);p.title="Knob";p.desc="Circular controller";p.size=[80,100];p.prototype.onDrawForeground=function(b){if(!this.flags.collapsed){-1==this.value&&(this.value=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min));var e=0.5*this.size[0],f=0.5*this.size[1],h=0.5*Math.min(this.size[0],this.size[1])-5;b.globalAlpha=1;b.save();b.translate(e,f);b.rotate(0.75*Math.PI);b.fillStyle="rgba(0,0,0,0.5)"; +b.beginPath();b.moveTo(0,0);b.arc(0,0,h,0,1.5*Math.PI);b.fill();b.strokeStyle="black";b.fillStyle=this.properties.color;b.lineWidth=2;b.beginPath();b.moveTo(0,0);b.arc(0,0,h-4,0,1.5*Math.PI*Math.max(0.01,this.value));b.closePath();b.fill();b.lineWidth=1;b.globalAlpha=1;b.restore();b.fillStyle="black";b.beginPath();b.arc(e,f,0.75*h,0,2*Math.PI,!0);b.fill();b.fillStyle=this.mouseOver?"white":this.properties.color;b.beginPath();var l=this.value*Math.PI*1.5+0.75*Math.PI;b.arc(e+Math.cos(l)*h*0.65,f+Math.sin(l)* +h*0.65,0.05*h,0,2*Math.PI,!0);b.fill();b.fillStyle=this.mouseOver?"white":"#AAA";b.font=Math.floor(0.5*h)+"px Arial";b.textAlign="center";b.fillText(this.properties.value.toFixed(this.properties.precision),e,f+0.15*h)}};p.prototype.onExecute=function(){this.setOutputData(0,this.properties.value);this.boxcolor=y.colorToString([this.value,this.value,this.value])};p.prototype.onMouseDown=function(b){this.center=[0.5*this.size[0],0.5*this.size[1]+20];this.radius=0.5*this.size[0];if(20>b.canvasY-this.pos[1]|| +y.distance([b.canvasX,b.canvasY],[this.pos[0]+this.center[0],this.pos[1]+this.center[1]])>this.radius)return!1;this.oldmouse=[b.canvasX-this.pos[0],b.canvasY-this.pos[1]];this.captureInput(!0);return!0};p.prototype.onMouseMove=function(b){if(this.oldmouse){b=[b.canvasX-this.pos[0],b.canvasY-this.pos[1]];var e=this.value,e=e-0.01*(b[1]-this.oldmouse[1]);1e&&(e=0);this.value=e;this.properties.value=this.properties.min+(this.properties.max-this.properties.min)*this.value;this.oldmouse=b;this.setDirtyCanvas(!0)}}; +p.prototype.onMouseUp=function(b){this.oldmouse&&(this.oldmouse=null,this.captureInput(!1))};p.prototype.onPropertyChanged=function(b,e){if("min"==b||"max"==b||"value"==b)return this.properties[b]=parseFloat(e),!0};y.registerNodeType("widget/knob",p);s.title="Inner Slider";s.prototype.onPropertyChanged=function(b,e){"value"==b&&(this.slider.value=e)};s.prototype.onExecute=function(){this.setOutputData(0,this.properties.value)};y.registerNodeType("widget/internal_slider",s);l.title="H.Slider";l.desc= +"Linear slider controller";l.prototype.onDrawForeground=function(b){-1==this.value&&(this.value=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min));b.globalAlpha=1;b.lineWidth=1;b.fillStyle="#000";b.fillRect(2,2,this.size[0]-4,this.size[1]-4);b.fillStyle=this.properties.color;b.beginPath();b.rect(4,4,(this.size[0]-8)*this.value,this.size[1]-8);b.fill()};l.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=y.colorToString([this.value,this.value,this.value])};l.prototype.onMouseDown=function(b){if(0>b.canvasY-this.pos[1])return!1;this.oldmouse=[b.canvasX-this.pos[0],b.canvasY-this.pos[1]];this.captureInput(!0);return!0};l.prototype.onMouseMove=function(b){if(this.oldmouse){b=[b.canvasX-this.pos[0],b.canvasY-this.pos[1]];var e=this.value,e=e+(b[0]-this.oldmouse[0])/this.size[0];1e&&(e=0);this.value=e;this.oldmouse=b;this.setDirtyCanvas(!0)}}; +l.prototype.onMouseUp=function(b){this.oldmouse=null;this.captureInput(!1)};l.prototype.onMouseLeave=function(b){};y.registerNodeType("widget/hslider",l);A.title="Progress";A.desc="Shows data in linear progress";A.prototype.onExecute=function(){var b=this.getInputData(0);void 0!=b&&(this.properties.value=b)};A.prototype.onDrawForeground=function(b){b.lineWidth=1;b.fillStyle=this.properties.color;var e=(this.properties.value-this.properties.min)/(this.properties.max-this.properties.min),e=Math.min(1, +e),e=Math.max(0,e);b.fillRect(2,2,(this.size[0]-4)*e,this.size[1]-4)};y.registerNodeType("widget/progress",A);z.title="Text";z.desc="Shows the input value";z.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"led_text",text:"LED",type:"minibutton"},{name:"normal_text",text:"Normal",type:"minibutton"}];z.prototype.onDrawForeground=function(b){b.fillStyle=this.properties.color;var e=this.properties.value;this.properties.glowSize?(b.shadowColor=this.properties.color,b.shadowOffsetX=0,b.shadowOffsetY= +0,b.shadowBlur=this.properties.glowSize):b.shadowColor="transparent";var f=this.properties.fontsize;b.textAlign=this.properties.align;b.font=f.toString()+"px "+this.properties.font;this.str="number"==typeof e?e.toFixed(this.properties.decimals):e;if("string"==typeof this.str){var e=this.str.split("\\n"),h;for(h in e)b.fillText(e[h],"left"==this.properties.align?15:this.size[0]-15,-0.15*f+f*(parseInt(h)+1))}b.shadowColor="transparent";this.last_ctx=b;b.textAlign="left"};z.prototype.onExecute=function(){var b= +this.getInputData(0);null!=b&&(this.properties.value=b)};z.prototype.resize=function(){if(this.last_ctx){var b=this.str.split("\\n");this.last_ctx.font=this.properties.fontsize+"px "+this.properties.font;var e=0,f;for(f in b){var h=this.last_ctx.measureText(b[f]).width;ep?f.xbox.axes.lx:0,this._left_axis[1]=Math.abs(f.xbox.axes.ly)>p?f.xbox.axes.ly:0,this._right_axis[0]=Math.abs(f.xbox.axes.rx)>p?f.xbox.axes.rx:0,this._right_axis[1]=Math.abs(f.xbox.axes.ry)>p?f.xbox.axes.ry:0,this._triggers[0]=Math.abs(f.xbox.axes.ltrigger)>p?f.xbox.axes.ltrigger: +0,this._triggers[1]=Math.abs(f.xbox.axes.rtrigger)>p?f.xbox.axes.rtrigger:0);if(this.outputs)for(p=0;pf;f++)if(p[f]){f=p[f];p=this.xbox_mapping;p||(p=this.xbox_mapping={axes:[], +buttons:{},hat:"",hatmap:e.CENTER});p.axes.lx=f.axes[0];p.axes.ly=f.axes[1];p.axes.rx=f.axes[2];p.axes.ry=f.axes[3];p.axes.ltrigger=f.buttons[6].value;p.axes.rtrigger=f.buttons[7].value;p.hat="";p.hatmap=e.CENTER;for(var s=0;ss)p.buttons[e.mapping_array[s]]=f.buttons[s].pressed,f.buttons[s].was_pressed&&this.trigger(e.mapping_array[s]+"_button_event");else switch(s){case 12:f.buttons[s].pressed&&(p.hat+="up",p.hatmap|=e.UP); +break;case 13:f.buttons[s].pressed&&(p.hat+="down",p.hatmap|=e.DOWN);break;case 14:f.buttons[s].pressed&&(p.hat+="left",p.hatmap|=e.LEFT);break;case 15:f.buttons[s].pressed&&(p.hat+="right",p.hatmap|=e.RIGHT);break;case 16:p.buttons.home=f.buttons[s].pressed}f.xbox=p;return f}};e.prototype.onDrawBackground=function(e){if(!this.flags.collapsed){var f=this._left_axis,s=this._right_axis;e.strokeStyle="#88A";e.strokeRect(0.5*(f[0]+1)*this.size[0]-4,0.5*(f[1]+1)*this.size[1]-4,8,8);e.strokeStyle="#8A8"; +e.strokeRect(0.5*(s[0]+1)*this.size[0]-4,0.5*(s[1]+1)*this.size[1]-4,8,8);f=this.size[1]/this._current_buttons.length;e.fillStyle="#AEB";for(s=0;s","enum",{values:a.values});this.size=[80,60]}function c(){this.addInput("inc","number");this.addOutput("total","number");this.addProperty("increment",1);this.addProperty("value",0)}function d(){this.addInput("v","number");this.addOutput("sin","number");this.addProperty("amplitude",1);this.addProperty("offset",0);this.bgImageUrl="nodes/imgs/icon-sin.png"}function r(){this.addInput("x","number");this.addInput("y","number");this.addOutput("","number"); +this.properties={x:1,y:1,formula:"x+y"};this.code_widget=this.addWidget("text","F(x,y)",this.properties.formula,function(a,c,d){d.properties.formula=a});this.addWidget("toggle","allow",C.allow_scripts,function(a){C.allow_scripts=a});this._func=null}function m(){this.addInput("vec2","vec2");this.addOutput("x","number");this.addOutput("y","number")}function H(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2","vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function E(){this.addInput("vec3", "vec3");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number")}function I(){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 J(){this.addInput("vec4","vec4");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number");this.addOutput("w","number")}function G(){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 C=v.LiteGraph;d.title="Converter";d.desc="type A to type B";d.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a&&this.outputs)for(var b=0;ba&&(a+=1024);var c=Math.floor(a);a-=c;e=f.data[c];c=f.data[1023==c?0:c+1];b&&(a=a*a*a*(a*(6*a-15)+10));return e*(1-a)+c*a};f.prototype.onExecute=function(){var a=this.getInputData(0)||0,a=f.getValue(a,this.properties.smooth),b=this.properties.min;this._last_v=a*(this.properties.max-b)+b;this.setOutputData(0, -this._last_v)};f.prototype.onDrawBackground=function(a){this.outputs[0].label=(this._last_v||0).toFixed(3)};C.registerNodeType("math/noise",f);y.title="Spikes";y.desc="spike every random time";y.prototype.onExecute=function(){var a=this.graph.elapsed_time;this._remaining_time-=a;this._blink_time-=a;a=0;0this._remaining_time?(this._remaining_time=Math.random()*(this.properties.max_time-this.properties.min_time)+ -this.properties.min_time,this._blink_time=this.properties.duration,this.boxcolor="#FFF"):this.boxcolor="#000";this.setOutputData(0,a)};C.registerNodeType("math/spikes",y);B.title="Clamp";B.desc="Clamp number between min and max";B.filter="shader";B.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))};B.prototype.getCode=function(a){a="";this.isInputConnected(0)&&(a+="clamp({{0}},"+this.properties.min+ -","+this.properties.max+")");return a};C.registerNodeType("math/clamp",B);A.title="Lerp";A.desc="Linear Interpolation";A.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var b=this.getInputData(1);null==b&&(b=0);var e=this.properties.f,c=this.getInputData(2);void 0!==c&&(e=c);this.setOutputData(0,a*(1-e)+b*e)};A.prototype.onGetInputs=function(){return[["f","number"]]};C.registerNodeType("math/lerp",A);z.title="Abs";z.desc="Absolute";z.prototype.onExecute=function(){var a=this.getInputData(0); -null!=a&&this.setOutputData(0,Math.abs(a))};C.registerNodeType("math/abs",z);c.title="Floor";c.desc="Floor number to remove fractional part";c.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,Math.floor(a))};C.registerNodeType("math/floor",c);x.title="Frac";x.desc="Returns fractional part";x.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,a%1)};C.registerNodeType("math/frac",x);k.title="Smoothstep";k.desc="Smoothstep"; -k.prototype.onExecute=function(){var a=this.getInputData(0);if(void 0!==a){var b=this.properties.A,a=Math.clamp((a-b)/(this.properties.B-b),0,1);this.setOutputData(0,a*a*(3-2*a))}};C.registerNodeType("math/smoothstep",k);m.title="Scale";m.desc="v * factor";m.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,a*this.properties.factor)};C.registerNodeType("math/scale",m);r.title="Average";r.desc="Average Filter";r.prototype.onExecute=function(){var a=this.getInputData(0); -null==a&&(a=0);var b=this._values.length;this._values[this._current%b]=a;this._current+=1;this._current>b&&(this._current=0);for(var e=a=0;eb&&(b=1);this.properties.samples=Math.round(b);var e=this._values;this._values=new Float32Array(this.properties.samples);e.length<=this._values.length?this._values.set(e):this._values.set(e.subarray(0,this._values.length))};C.registerNodeType("math/average",r);g.title= -"TendTo";g.desc="moves the output value always closer to the input";g.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)};C.registerNodeType("math/tendTo",g);p.values="+ - * / % ^ max min".split(" ");p.title="Operation";p.desc="Easy math operators";p["@OP"]={type:"enum",title:"operation",values:p.values};p.size=[100,60];p.prototype.getTitle=function(){return"max"== -this.properties.OP||"min"==this.properties.OP?this.properties.OP+"(A,B)":"A "+this.properties.OP+" B"};p.prototype.setValue=function(a){"string"==typeof a&&(a=parseFloat(a));this.properties.value=a};p.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 e=0;switch(this.properties.OP){case "+":e=a+b;break;case "-":e=a-b;break;case "x":case "X":case "*":e=a*b;break;case "/":e= -a/b;break;case "%":e=a%b;break;case "^":e=Math.pow(a,b);break;case "max":e=Math.max(a,b);break;case "min":e=Math.min(a,b);break;default:console.warn("Unknown operation: "+this.properties.OP)}this.setOutputData(0,e)};p.prototype.onDrawBackground=function(a){this.flags.collapsed||(a.font="40px Arial",a.fillStyle="#666",a.textAlign="center",a.fillText(this.properties.OP,0.5*this.size[0],0.5*(this.size[1]+C.NODE_TITLE_HEIGHT)),a.textAlign="left")};C.registerNodeType("math/operation",p);C.registerSearchboxExtra("math/operation", -"MAX",{properties:{OP:"max"},title:"MAX()"});C.registerSearchboxExtra("math/operation","MIN",{properties:{OP:"min"},title:"MIN()"});w.title="Compare";w.desc="compares between two values";w.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 e=0,c=this.outputs.length;eB":g=a>b;break;case "A=B":g=a>=b}this.setOutputData(e,g)}}};w.prototype.onGetOutputs=function(){return[["A==B","boolean"],["A!=B","boolean"],["A>B","boolean"],["A=B","boolean"],["A<=B","boolean"]]};C.registerNodeType("math/compare",w);C.registerSearchboxExtra("math/compare","==",{outputs:[["A==B","boolean"]],title:"A==B"});C.registerSearchboxExtra("math/compare","!=",{outputs:[["A!=B","boolean"]], -title:"A!=B"});C.registerSearchboxExtra("math/compare",">",{outputs:[["A>B","boolean"]],title:"A>B"});C.registerSearchboxExtra("math/compare","<",{outputs:[["A=",{outputs:[["A>=B","boolean"]],title:"A>=B"});C.registerSearchboxExtra("math/compare","<=",{outputs:[["A<=B","boolean"]],title:"A<=B"});a.values="> < == != <= >=".split(" ");a["@OP"]={type:"enum",title:"operation",values:a.values};a.title="Condition";a.desc="evaluates condition between A and B"; -a.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 e=!0;switch(this.properties.OP){case ">":e=a>b;break;case "<":e=a=":e=a>=b}this.setOutputData(0,e)};C.registerNodeType("math/condition",a);b.title="Accumulate";b.desc="Increments a value every time";b.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)};C.registerNodeType("math/accumulate",b);e.title="Trigonometry";e.desc="Sin Cos Tan";e.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var b=this.properties.amplitude,e=this.findInputSlot("amplitude");-1!=e&&(b=this.getInputData(e));var c=this.properties.offset, -e=this.findInputSlot("offset");-1!=e&&(c=this.getInputData(e));for(var e=0,g=this.outputs.length;eXY";l.desc="vector 2 to components";l.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&(this.setOutputData(0,a[0]),this.setOutputData(1,a[1]))};C.registerNodeType("math3d/vec2-to-xyz",l);H.title="XY->Vec2"; -H.desc="components to vector2";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 e=this._data;e[0]=a;e[1]=b;this.setOutputData(0,e)};C.registerNodeType("math3d/xy-to-vec2",H);F.title="Vec3->XYZ";F.desc="vector 3 to components";F.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]))};C.registerNodeType("math3d/vec3-to-xyz", -F);I.title="XYZ->Vec3";I.desc="components to vector3";I.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 e=this.getInputData(2);null==e&&(e=this.properties.z);var c=this._data;c[0]=a;c[1]=b;c[2]=e;this.setOutputData(0,c)};C.registerNodeType("math3d/xyz-to-vec3",I);J.title="Vec4->XYZW";J.desc="vector 4 to components";J.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]))};C.registerNodeType("math3d/vec4-to-xyzw",J);G.title="XYZW->Vec4";G.desc="components to vector4";G.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 e=this.getInputData(2);null==e&&(e=this.properties.z);var c=this.getInputData(3);null==c&&(c=this.properties.w);var d=this._data;d[0]=a;d[1]=b;d[2]=e;d[3]=c;this.setOutputData(0, -d)};C.registerNodeType("math3d/xyzw-to-vec4",G);v.glMatrix&&(v=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1};this._value=quat.create()},v.title="Quaternion",v.desc="quaternion",v.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)},C.registerNodeType("math3d/quaternion",v),v=function(){this.addInputs([["degrees","number"],["axis", -"vec3"]]);this.addOutput("quat","quat");this.properties={angle:90,axis:vec3.fromValues(0,1,0)};this._value=quat.create()},v.title="Rotation",v.desc="quaternion rotation",v.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.angle);var b=this.getInputData(1);null==b&&(b=this.properties.axis);a=quat.setAxisAngle(this._value,b,0.0174532925*a);this.setOutputData(0,a)},C.registerNodeType("math3d/rotation",v),v=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]); -this.addOutput("result","vec3");this.properties={vec:[0,0,1]}},v.title="Rot. Vec3",v.desc="rotate a point",v.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))},C.registerNodeType("math3d/rotate_vec3",v),v=function(){this.addInputs([["A","quat"],["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},v.title="Mult. Quat",v.desc= -"rotate quaternion",v.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))}},C.registerNodeType("math3d/mult-quat",v),v=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor",0.5);this._value=quat.create()},v.title="Quat Slerp",v.desc="quaternion spherical interpolation",v.prototype.onExecute=function(){var a=this.getInputData(0); -if(null!=a){var b=this.getInputData(1);if(null!=b){var e=this.properties.factor;null!=this.getInputData(2)&&(e=this.getInputData(2));a=quat.slerp(this._value,a,b,e);this.setOutputData(0,a)}}},C.registerNodeType("math3d/quat-slerp",v))})(this); -(function(v){function d(){this.addInput("vec2","vec2");this.addOutput("x","number");this.addOutput("y","number")}function h(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2","vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function q(){this.addInput("vec3","vec3");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number")}function n(){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 t(){this.addInput("vec4","vec4");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number");this.addOutput("w","number")}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)}function y(){this.addInput("in","vec3");this.addInput("f","number");this.addOutput("out","vec3");this.properties= -{f:1};this._data=new Float32Array(3)}function B(){this.addInput("in","vec3");this.addOutput("out","number")}function A(){this.addInput("in","vec3");this.addOutput("out","vec3");this._data=new Float32Array(3)}function z(){this.addInput("A","vec3");this.addInput("B","vec3");this.addInput("f","vec3");this.addOutput("out","vec3");this.properties={f:0.5};this._data=new Float32Array(3)}function c(){this.addInput("A","vec3");this.addInput("B","vec3");this.addOutput("out","number")}var x=v.LiteGraph;d.title= -"Vec2->XY";d.desc="vector 2 to components";d.prototype.onExecute=function(){var c=this.getInputData(0);null!=c&&(this.setOutputData(0,c[0]),this.setOutputData(1,c[1]))};x.registerNodeType("math3d/vec2-to-xyz",d);h.title="XY->Vec2";h.desc="components to vector2";h.prototype.onExecute=function(){var c=this.getInputData(0);null==c&&(c=this.properties.x);var d=this.getInputData(1);null==d&&(d=this.properties.y);var f=this._data;f[0]=c;f[1]=d;this.setOutputData(0,f)};x.registerNodeType("math3d/xy-to-vec2", -h);q.title="Vec3->XYZ";q.desc="vector 3 to components";q.prototype.onExecute=function(){var c=this.getInputData(0);null!=c&&(this.setOutputData(0,c[0]),this.setOutputData(1,c[1]),this.setOutputData(2,c[2]))};x.registerNodeType("math3d/vec3-to-xyz",q);n.title="XYZ->Vec3";n.desc="components to vector3";n.prototype.onExecute=function(){var c=this.getInputData(0);null==c&&(c=this.properties.x);var d=this.getInputData(1);null==d&&(d=this.properties.y);var f=this.getInputData(2);null==f&&(f=this.properties.z); -var g=this._data;g[0]=c;g[1]=d;g[2]=f;this.setOutputData(0,g)};x.registerNodeType("math3d/xyz-to-vec3",n);t.title="Vec4->XYZW";t.desc="vector 4 to components";t.prototype.onExecute=function(){var c=this.getInputData(0);null!=c&&(this.setOutputData(0,c[0]),this.setOutputData(1,c[1]),this.setOutputData(2,c[2]),this.setOutputData(3,c[3]))};x.registerNodeType("math3d/vec4-to-xyzw",t);f.title="XYZW->Vec4";f.desc="components to vector4";f.prototype.onExecute=function(){var c=this.getInputData(0);null== -c&&(c=this.properties.x);var d=this.getInputData(1);null==d&&(d=this.properties.y);var f=this.getInputData(2);null==f&&(f=this.properties.z);var g=this.getInputData(3);null==g&&(g=this.properties.w);var h=this._data;h[0]=c;h[1]=d;h[2]=f;h[3]=g;this.setOutputData(0,h)};x.registerNodeType("math3d/xyzw-to-vec4",f);y.title="vec3_scale";y.desc="scales the components of a vec3";y.prototype.onExecute=function(){var c=this.getInputData(0);if(null!=c){var d=this.getInputData(1);null==d&&(d=this.properties.f); -var f=this._data;f[0]=c[0]*d;f[1]=c[1]*d;f[2]=c[2]*d;this.setOutputData(0,f)}};x.registerNodeType("math3d/vec3-scale",y);B.title="vec3_length";B.desc="returns the module of a vector";B.prototype.onExecute=function(){var c=this.getInputData(0);null!=c&&(c=Math.sqrt(c[0]*c[0]+c[1]*c[1]+c[2]*c[2]),this.setOutputData(0,c))};x.registerNodeType("math3d/vec3-length",B);A.title="vec3_normalize";A.desc="returns the vector normalized";A.prototype.onExecute=function(){var c=this.getInputData(0);if(null!=c){var d= -Math.sqrt(c[0]*c[0]+c[1]*c[1]+c[2]*c[2]),f=this._data;f[0]=c[0]/d;f[1]=c[1]/d;f[2]=c[2]/d;this.setOutputData(0,f)}};x.registerNodeType("math3d/vec3-normalize",A);z.title="vec3_lerp";z.desc="returns the interpolated vector";z.prototype.onExecute=function(){var c=this.getInputData(0);if(null!=c){var d=this.getInputData(1);if(null!=d){var f=this.getInputOrProperty("f"),g=this._data;g[0]=c[0]*(1-f)+d[0]*f;g[1]=c[1]*(1-f)+d[1]*f;g[2]=c[2]*(1-f)+d[2]*f;this.setOutputData(0,g)}}};x.registerNodeType("math3d/vec3-lerp", -z);c.title="vec3_dot";c.desc="returns the dot product";c.prototype.onExecute=function(){var c=this.getInputData(0);if(null!=c){var d=this.getInputData(1);null!=d&&this.setOutputData(0,c[0]*d[0]+c[1]*d[1]+c[2]*d[2])}};x.registerNodeType("math3d/vec3-dot",c);v.glMatrix&&(v=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1,normalize:!1};this._value=quat.create()},v.title="Quaternion",v.desc="quaternion",v.prototype.onExecute=function(){this._value[0]=this.getInputOrProperty("x"); -this._value[1]=this.getInputOrProperty("y");this._value[2]=this.getInputOrProperty("z");this._value[3]=this.getInputOrProperty("w");this.properties.normalize&&quat.normalize(this._value,this._value);this.setOutputData(0,this._value)},v.prototype.onGetInputs=function(){return[["x","number"],["y","number"],["z","number"],["w","number"]]},x.registerNodeType("math3d/quaternion",v),v=function(){this.addInputs([["degrees","number"],["axis","vec3"]]);this.addOutput("quat","quat");this.properties={angle:90, -axis:vec3.fromValues(0,1,0)};this._value=quat.create()},v.title="Rotation",v.desc="quaternion rotation",v.prototype.onExecute=function(){var c=this.getInputData(0);null==c&&(c=this.properties.angle);var d=this.getInputData(1);null==d&&(d=this.properties.axis);c=quat.setAxisAngle(this._value,d,0.0174532925*c);this.setOutputData(0,c)},x.registerNodeType("math3d/rotation",v),v=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]);this.addOutput("result","vec3");this.properties={vec:[0,0,1]}}, -v.title="Rot. Vec3",v.desc="rotate a point",v.prototype.onExecute=function(){var c=this.getInputData(0);null==c&&(c=this.properties.vec);var d=this.getInputData(1);null==d?this.setOutputData(c):this.setOutputData(0,vec3.transformQuat(vec3.create(),c,d))},x.registerNodeType("math3d/rotate_vec3",v),v=function(){this.addInputs([["A","quat"],["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},v.title="Mult. Quat",v.desc="rotate quaternion",v.prototype.onExecute=function(){var c=this.getInputData(0); -if(null!=c){var d=this.getInputData(1);null!=d&&(c=quat.multiply(this._value,c,d),this.setOutputData(0,c))}},x.registerNodeType("math3d/mult-quat",v),v=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor",0.5);this._value=quat.create()},v.title="Quat Slerp",v.desc="quaternion spherical interpolation",v.prototype.onExecute=function(){var c=this.getInputData(0);if(null!=c){var d=this.getInputData(1);if(null!=d){var f=this.properties.factor; -null!=this.getInputData(2)&&(f=this.getInputData(2));c=quat.slerp(this._value,c,d,f);this.setOutputData(0,c)}}},x.registerNodeType("math3d/quat-slerp",v))})(this); -(function(v){function d(d,h){return d==h}function h(d){return null!=d&&d.constructor===String?d.toUpperCase():d}v=v.LiteGraph;v.wrapFunctionAsNode("string/toString",d,["*"],"String");v.wrapFunctionAsNode("string/compare",d,["String","String"],"Boolean");v.wrapFunctionAsNode("string/concatenate",function(d,h){return void 0===d?h:void 0===h?d:d+h},["String","String"],"String");v.wrapFunctionAsNode("string/contains",function(d,h){return void 0===d||void 0===h?!1:-1!=d.indexOf(h)},["String","String"], -"Boolean");v.wrapFunctionAsNode("string/toUpperCase",h,["String"],"String");v.wrapFunctionAsNode("string/split",h,["String","String"],"Array");v.wrapFunctionAsNode("string/toFixed",function(d){return null!=d&&d.constructor===Number?d.toFixed(this.properties.precision):d},["Number"],"String",{precision:0})})(this); -(function(v){function d(){this.addInput("sel","number");this.addInput("A");this.addInput("B");this.addInput("C");this.addInput("D");this.addOutput("out");this.selected=0}function h(){this.properties={sequence:"A,B,C"};this.addInput("index","number");this.addInput("seq");this.addOutput("out");this.index=0;this.values=this.properties.sequence.split(",")}var q=v.LiteGraph;d.title="Selector";d.desc="selects an output";d.prototype.onDrawBackground=function(d){if(!this.flags.collapsed){d.fillStyle="#AFB"; -var h=(this.selected+1)*q.NODE_SLOT_HEIGHT+6;d.beginPath();d.moveTo(50,h);d.lineTo(50,h+q.NODE_SLOT_HEIGHT);d.lineTo(34,h+0.5*q.NODE_SLOT_HEIGHT);d.fill()}};d.prototype.onExecute=function(){var d=this.getInputData(0);null==d&&(d=0);this.selected=d=Math.round(d)%(this.inputs.length-1);d=this.getInputData(d+1);void 0!==d&&this.setOutputData(0,d)};d.prototype.onGetInputs=function(){return[["E",0],["F",0],["G",0],["H",0]]};q.registerNodeType("logic/selector",d);h.title="Sequence";h.desc="select one element from a sequence from a string"; -h.prototype.onPropertyChanged=function(d,h){"sequence"==d&&(this.values=h.split(","))};h.prototype.onExecute=function(){var d=this.getInputData(1);d&&d!=this.current_sequence&&(this.values=d.split(","),this.current_sequence=d);d=this.getInputData(0);null==d&&(d=0);this.index=d=Math.round(d)%this.values.length;this.setOutputData(0,this.values[d])};q.registerNodeType("logic/sequence",h)})(this); -(function(v){function d(){this.addInput("A","Number");this.addInput("B","Number");this.addInput("C","Number");this.addInput("D","Number");this.values=[[],[],[],[]];this.properties={scale:2}}function h(){this.addOutput("frame","image");this.properties={url:""}}function q(){this.addInput("f","number");this.addOutput("Color","color");this.properties={colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}}function n(){this.addInput("","image,canvas");this.size=[200,200]}function t(){this.addInputs([["img1", -"image"],["img2","image"],["fade","number"]]);this.addOutput("","image");this.properties={fade:0.5,width:512,height:512}}function f(){this.addInput("","image");this.addOutput("","image");this.properties={width:256,height:256,x:0,y:0,scale:1};this.size=[50,20]}function y(){this.addInput("clear",x.ACTION);this.addOutput("","canvas");this.properties={width:512,height:512,autoclear:!0};this.canvas=document.createElement("canvas");this.ctx=this.canvas.getContext("2d")}function B(){this.addInput("canvas", -"canvas");this.addInput("img","image,canvas");this.addInput("x","number");this.addInput("y","number");this.properties={x:0,y:0,opacity:1}}function A(){this.addInput("canvas","canvas");this.addInput("x","number");this.addInput("y","number");this.addInput("w","number");this.addInput("h","number");this.properties={x:0,y:0,w:10,h:10,color:"white",opacity:1}}function z(){this.addInput("t","number");this.addOutputs([["frame","image"],["t","number"],["d","number"]]);this.properties={url:"",use_proxy:!0}} -function c(){this.addOutput("Webcam","image");this.properties={facingMode:"user"};this.boxcolor="black";this.frame=0}var x=v.LiteGraph;d.title="Plot";d.desc="Plots data over time";d.colors=["#FFF","#F99","#9F9","#99F"];d.prototype.onExecute=function(c){if(!this.flags.collapsed){c=this.size;for(var d=0;4>d;++d){var f=this.getInputData(d);if(null!=f){var g=this.values[d];g.push(f);g.length>c[0]&&g.shift()}}}};d.prototype.onDrawBackground=function(c){if(!this.flags.collapsed){var f=this.size,h=0.5*f[1]/ -this.properties.scale,g=d.colors,p=0.5*f[1];c.fillStyle="#000";c.fillRect(0,0,f[0],f[1]);c.strokeStyle="#555";c.beginPath();c.moveTo(0,p);c.lineTo(f[0],p);c.stroke();if(this.inputs)for(var n=0;4>n;++n){var a=this.values[n];if(this.inputs[n]&&this.inputs[n].link){c.strokeStyle=g[n];c.beginPath();var b=a[0]*h*-1+p;c.moveTo(0,Math.clamp(b,0,f[1]));for(var e=1;ed&&(d=0);if(0!=c.length){var f=[0,0,0];if(0==d)f=c[0];else if(1==d)f=c[c.length-1];else{var g=(c.length-1)*d,d=c[Math.floor(g)],c=c[Math.floor(g)+1],g=g-Math.floor(g);f[0]=d[0]* -(1-g)+c[0]*g;f[1]=d[1]*(1-g)+c[1]*g;f[2]=d[2]*(1-g)+c[2]*g}for(var h in f)f[h]/=255;this.boxcolor=colorToString(f);this.setOutputData(0,f)}};x.registerNodeType("color/palette",q);n.title="Frame";n.desc="Frame viewerew";n.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}];n.prototype.onDrawBackground=function(c){this.frame&&!this.flags.collapsed&&c.drawImage(this.frame,0,0,this.size[0],this.size[1])};n.prototype.onExecute=function(){this.frame=this.getInputData(0); -this.setDirtyCanvas(!0)};n.prototype.onWidget=function(c,d){if("resize"==d.name&&this.frame){var f=this.frame.width,g=this.frame.height;f||null==this.frame.videoWidth||(f=this.frame.videoWidth,g=this.frame.videoHeight);f&&g&&(this.size=[f,g]);this.setDirtyCanvas(!0,!0)}else"view"==d.name&&this.show()};n.prototype.show=function(){showElement&&this.frame&&showElement(this.frame)};x.registerNodeType("graphics/frame",n);t.title="Image fade";t.desc="Fades between images";t.widgets=[{name:"resizeA",text:"Resize to A", -type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}];t.prototype.onAdded=function(){this.createCanvas();var c=this.canvas.getContext("2d");c.fillStyle="#000";c.fillRect(0,0,this.properties.width,this.properties.height)};t.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.canvas.getContext("2d");this.canvas.width=this.canvas.width; -var d=this.getInputData(0);null!=d&&c.drawImage(d,0,0,this.canvas.width,this.canvas.height);d=this.getInputData(2);null==d?d=this.properties.fade:this.properties.fade=d;c.globalAlpha=d;d=this.getInputData(1);null!=d&&c.drawImage(d,0,0,this.canvas.width,this.canvas.height);c.globalAlpha=1;this.setOutputData(0,this.canvas);this.setDirtyCanvas(!0)};x.registerNodeType("graphics/imagefade",t);f.title="Crop";f.desc="Crop Image";f.prototype.onAdded=function(){this.createCanvas()};f.prototype.createCanvas= -function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};f.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))};f.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])};f.prototype.onPropertyChanged=function(c,d){this.properties[c]=d;"scale"==c?(this.properties[c]=parseFloat(d),0==this.properties[c]&&(this.trace("Error in scale"),this.properties[c]=1)):this.properties[c]=parseInt(d);this.createCanvas();return!0};x.registerNodeType("graphics/cropImage",f);y.title="Canvas";y.desc="Canvas to render stuff";y.prototype.onExecute=function(){var c=this.canvas,d=this.properties.width|0,f=this.properties.height| -0;c.width!=d&&(c.width=d);c.height!=f&&(c.height=f);this.properties.autoclear&&this.ctx.clearRect(0,0,c.width,c.height);this.setOutputData(0,c)};y.prototype.onAction=function(c,d){"clear"==c&&this.ctx.clearRect(0,0,this.canvas.width,this.canvas.height)};x.registerNodeType("graphics/canvas",y);B.title="DrawImage";B.desc="Draws image into a canvas";B.prototype.onExecute=function(){var c=this.getInputData(0);if(c){var d=this.getInputOrProperty("img");if(d){var f=this.getInputOrProperty("x"),g=this.getInputOrProperty("y"); -c.getContext("2d").drawImage(d,f,g)}}};x.registerNodeType("graphics/drawImage",B);A.title="DrawRectangle";A.desc="Draws rectangle in canvas";A.prototype.onExecute=function(){var c=this.getInputData(0);if(c){var d=this.getInputOrProperty("x"),f=this.getInputOrProperty("y"),g=this.getInputOrProperty("w"),h=this.getInputOrProperty("h");c.getContext("2d").fillRect(d,f,g,h)}};x.registerNodeType("graphics/drawRectangle",A);z.title="Video";z.desc="Video playback";z.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"}];z.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>=c&&(this._video.currentTime=c*this._video.duration,this._video.pause());this._video.dirty=!0;this.setOutputData(0,this._video);this.setOutputData(1,this._video.currentTime); -this.setOutputData(2,this._video.duration);this.setDirtyCanvas(!0)}};z.prototype.onStart=function(){this.play()};z.prototype.onStop=function(){this.stop()};z.prototype.loadVideo=function(c){this._video_url=c;this.properties.use_proxy&&"http"==c.substr(0,4)&&x.proxy&&(c=x.proxy+c.substr(c.indexOf(":")+3));this._video=document.createElement("video");this._video.src=c;this._video.type="type=video/mp4";this._video.muted=!0;this._video.autoplay=!0;var d=this;this._video.addEventListener("loadedmetadata", -function(c){d.trace("Duration: "+this.duration+" seconds");d.trace("Size: "+this.videoWidth+","+this.videoHeight);d.setDirtyCanvas(!0);this.width=this.videoWidth;this.height=this.videoHeight});this._video.addEventListener("progress",function(c){});this._video.addEventListener("error",function(c){console.log("Error loading video: "+this.src);d.trace("Error loading video: "+this.src);if(this.error)switch(this.error.code){case this.error.MEDIA_ERR_ABORTED:d.trace("You stopped the video.");break;case this.error.MEDIA_ERR_NETWORK:d.trace("Network error - please try again later."); -break;case this.error.MEDIA_ERR_DECODE:d.trace("Video is broken..");break;case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED:d.trace("Sorry, your browser can't play this video.")}});this._video.addEventListener("ended",function(c){d.trace("Ended.");this.play()})};z.prototype.onPropertyChanged=function(c,d){this.properties[c]=d;"url"==c&&""!=d&&this.loadVideo(d);return!0};z.prototype.play=function(){this._video&&this._video.play()};z.prototype.playPause=function(){this._video&&(this._video.paused?this.play(): -this.pause())};z.prototype.stop=function(){this._video&&(this._video.pause(),this._video.currentTime=0)};z.prototype.pause=function(){this._video&&(this.trace("Video paused"),this._video.pause())};z.prototype.onWidget=function(c,d){};x.registerNodeType("graphics/video",z);c.title="Webcam";c.desc="Webcam image";c.is_webcam_open=!1;c.prototype.openStream=function(){function d(h){console.log("Webcam rejected",h);f._webcam_stream=!1;c.is_webcam_open=!1;f.boxcolor="red";f.trigger("stream_error")}if(navigator.getUserMedia){this._waiting_confirmation= -!0;navigator.mediaDevices.getUserMedia({audio:!1,video:{facingMode:this.properties.facingMode}}).then(this.streamReady.bind(this))["catch"](d);var f=this}};c.prototype.closeStream=function(){if(this._webcam_stream){var d=this._webcam_stream.getTracks();if(d.length)for(var f=0;f=this.size[1]||!this.properties.show||!this._video||(c.save(),c.drawImage(this._video,0,0,this.size[0],this.size[1]),c.restore())};c.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["stream_ready",x.EVENT],["stream_closed",x.EVENT],["stream_error",x.EVENT]]};x.registerNodeType("graphics/webcam",c)})(this); -(function(v){var d=v.LiteGraph;v.LGraphTexture=null;if("undefined"!=typeof GL){LGraphCanvas.link_type_colors.Texture="#987";var h=function(){this.addOutput("Texture","Texture");this.properties={name:"",filter:!0};this.size=[h.image_preview_size,h.image_preview_size]};v.LGraphTexture=h;h.title="Texture";h.desc="Texture";h.widgets_info={name:{widget:"texture"},filter:{widget:"checkbox"}};h.loadTextureCallback=null;h.image_preview_size=256;h.PASS_THROUGH=1;h.COPY=2;h.LOW=3;h.HIGH=4;h.REUSE=5;h.DEFAULT= -2;h.MODE_VALUES={"pass through":h.PASS_THROUGH,copy:h.COPY,low:h.LOW,high:h.HIGH,reuse:h.REUSE,"default":h.DEFAULT};h.getTexturesContainer=function(){return gl.textures};h.loadTexture=function(a,b){b=b||{};var c=a;"http://"==c.substr(0,7)&&d.proxy&&(c=d.proxy+c.substr(7));return h.getTexturesContainer()[a]=GL.Texture.fromURL(c,b)};h.getTexture=function(a){var b=this.getTexturesContainer();if(!b)throw"Cannot load texture, container of textures not found";b=b[a];return!b&&a&&":"!=a[0]?this.loadTexture(a): -b};h.getTargetTexture=function(a,b,c){if(!a)throw"LGraphTexture.getTargetTexture expects a reference texture";var e=null;switch(c){case h.LOW:e=gl.UNSIGNED_BYTE;break;case h.HIGH:e=gl.HIGH_PRECISION_FORMAT;break;case h.REUSE:return a;default:e=a?a.type:gl.UNSIGNED_BYTE}b&&b.width==a.width&&b.height==a.height&&b.type==e||(b=new GL.Texture(a.width,a.height,{type:e,format:gl.RGBA,filter:gl.LINEAR}));return b};h.getTextureType=function(a,b){var c=b?b.type:gl.UNSIGNED_BYTE;switch(a){case h.HIGH:c=gl.HIGH_PRECISION_FORMAT; -break;case h.LOW:c=gl.UNSIGNED_BYTE}return c};h.getWhiteTexture=function(){return this._white_texture?this._white_texture:this._white_texture=GL.Texture.fromMemory(1,1,[255,255,255,255],{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})};h.getNoiseTexture=function(){if(this._noise_texture)return this._noise_texture;for(var a=new Uint8Array(1048576),b=0;1048576>b;++b)a[b]=255*Math.random();return this._noise_texture=a=GL.Texture.fromMemory(512,512,a,{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})}; -h.prototype.onDropFile=function(a,b,c){if(a){var e=null;"string"==typeof a?e=GL.Texture.fromURL(a):-1!=b.toLowerCase().indexOf(".dds")?e=GL.Texture.fromDDSInMemory(a):(a=new Blob([c]),a=URL.createObjectURL(a),e=GL.Texture.fromURL(a));this._drop_texture=e;this.properties.name=b}else this._drop_texture=null,this.properties.name=""};h.prototype.getExtraMenuOptions=function(a){var b=this;if(this._drop_texture)return[{content:"Clear",callback:function(){b._drop_texture=null;b.properties.name=""}}]};h.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=h.getTexture(this.properties.name));if(a){this._last_tex=a;!1===this.properties.filter?a.setParameter(gl.TEXTURE_MAG_FILTER,gl.NEAREST):a.setParameter(gl.TEXTURE_MAG_FILTER,gl.LINEAR);this.setOutputData(0,a);for(var b=1;b=this.size[1]))if(this._drop_texture&&a.webgl)a.drawImage(this._drop_texture,0,0,this.size[0],this.size[1]);else{if(this._last_preview_tex!=this._last_tex)if(a.webgl)this._canvas=this._last_tex;else{var b=h.generateLowResTexturePreview(this._last_tex);if(!b)return;this._last_preview_tex= -this._last_tex;this._canvas=cloneCanvas(b)}this._canvas&&(a.save(),a.webgl||(a.translate(0,this.size[1]),a.scale(1,-1)),a.drawImage(this._canvas,0,0,this.size[0],this.size[1]),a.restore())}};h.generateLowResTexturePreview=function(a){if(!a)return null;var b=h.image_preview_size,c=a;if(a.format==gl.DEPTH_COMPONENT)return null;if(a.width>b||a.height>b)c=this._preview_temp_tex,this._preview_temp_tex||(this._preview_temp_tex=c=new GL.Texture(b,b,{minFilter:gl.NEAREST})),a.copyTo(c);a=this._preview_canvas; -a||(this._preview_canvas=a=createCanvas(b,b));c&&c.toCanvas(a);return a};h.prototype.getResources=function(a){a[this.properties.name]=GL.Texture;return a};h.prototype.onGetInputs=function(){return[["in","Texture"]]};h.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["aspect","number"]]};h.replaceCode=function(a,b){return a.replace(/\{\{[a-zA-Z0-9_]*\}\}/g,function(a){a=a.replace(/[\{\}]/g,"");return b[a]||""})};d.registerNodeType("texture/texture",h);var q=function(){this.addInput("Texture", -"Texture");this.properties={flipY:!1};this.size=[h.image_preview_size,h.image_preview_size]};q.title="Preview";q.desc="Show a texture in the graph canvas";q.allow_preview=!1;q.prototype.onDrawBackground=function(a){if(!this.flags.collapsed&&(a.webgl||q.allow_preview)){var b=this.getInputData(0);if(b){var c=null,c=!b.handle&&a.webgl?b:h.generateLowResTexturePreview(b);a.save();this.properties.flipY&&(a.translate(0,this.size[1]),a.scale(1,-1));a.drawImage(c,0,0,this.size[0],this.size[1]);a.restore()}}}; -d.registerNodeType("texture/preview",q);var n=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={name:""}};n.title="Save";n.desc="Save a texture in the repository";n.prototype.getPreviewTexture=function(){return this._texture};n.prototype.onExecute=function(){var a=this.getInputData(0);a&&(this.properties.name&&(h.storeTexture?h.storeTexture(this.properties.name,a):h.getTexturesContainer()[this.properties.name]=a),this._texture=a,this.setOutputData(0,a))}; -d.registerNodeType("texture/save",n);var t=function(){this.addInput("Texture","Texture");this.addInput("TextureB","Texture");this.addInput("value","number");this.addOutput("Texture","Texture");this.help="

pixelcode must be vec3, uvcode must be vec2, is optional

\t\t\t

uv: tex. coords

color: texture colorB: textureB

time: scene time value: input value

For multiline you must type: result = ...

"; -this.properties={value:1,pixelcode:"color + colorB * value",uvcode:"",precision:h.DEFAULT};this.has_error=!1};t.widgets_info={uvcode:{widget:"code"},pixelcode:{widget:"code"},precision:{widget:"combo",values:h.MODE_VALUES}};t.title="Operation";t.desc="Texture shader operation";t.prototype.getExtraMenuOptions=function(a){var b=this;return[{content:b.properties.show?"Hide Texture":"Show Texture",callback:function(){b.properties.show=!b.properties.show}}]};t.prototype.onPropertyChanged=function(){this.has_error= -!1};t.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())};t.prototype.onExecute=function(){var a=this.getInputData(0);if(this.isOutputConnected(0))if(this.properties.precision===h.PASS_THROUGH)this.setOutputData(0,a);else{var b=this.getInputData(1);if(this.properties.uvcode||this.properties.pixelcode){var c=512,e=512;a?(c=a.width,e=a.height):b&& -(c=b.width,e=b.height);var d=h.getTextureType(this.properties.precision,a);this._tex=a||this._tex?h.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 g="";this.properties.pixelcode&&(g="result = "+this.properties.pixelcode,-1!=this.properties.pixelcode.indexOf(";")&&(g=this.properties.pixelcode)); -var f=this._shader;if(!(this.has_error||f&&this._shader_code==d+"|"+g)){var p=h.replaceCode(t.pixel_shader,{UV_CODE:d,PIXEL_CODE:g});try{f=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,p),this.boxcolor="#00FF00"}catch(l){GL.Shader.dumpErrorToConsole(l,Shader.SCREEN_VERTEX_SHADER,p);this.boxcolor="#FF0000";this.has_error=!0;return}this._shader=f;this._shader_code=d+"|"+g}if(this._shader){var k=this.getInputData(2);null!=k?this.properties.value=k:k=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 d=Mesh.getScreenQuad();f.uniforms({u_texture:0,u_textureB:1,value:k,texSize:[c,e],time:m}).draw(d)});this.setOutputData(0,this._tex)}}}};t.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\t{{UV_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\t{{PIXEL_CODE}};\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\t\t\t}\n\t\t\t"; -d.registerNodeType("texture/operation",t);var f=function(){this.addOutput("out","Texture");this.properties={code:"",u_value:1,u_color:[1,1,1,1],width:512,height:512,precision:h.DEFAULT};this.properties.code="//time: time in seconds\n//texSize: vec2 with res\nuniform float u_value;\nuniform vec4 u_color;\n\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n\t//your code here\n\tcolor.xy=uv;\n\ngl_FragColor = vec4(color, 1.0);\n}\n";this._uniforms={u_value:1,u_color:vec4.create(),in_texture:0, -texSize:vec2.create(),time:0}};f.title="Shader";f.desc="Texture shader";f.widgets_info={code:{type:"code"},precision:{widget:"combo",values:h.MODE_VALUES}};f.prototype.onPropertyChanged=function(a,b){if("code"==a){var c=this.getShader();if(c){var e=c.uniformInfo;if(this.inputs)for(var d={},g=0;g lumaMax))\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\t\t\t\telse\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\t\t\t\tif(u_igamma != 1.0)\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\t\t\t\treturn color;\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\t\t\t}\n\t\t\t"; -A.gamma_pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_igamma;\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\t\t\t gl_FragColor = color;\n\t\t\t}\n\t\t\t";d.registerNodeType("texture/toviewport",A);n=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={size:0,generate_mipmaps:!1, -precision:h.DEFAULT}};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:h.MODE_VALUES}};n.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)){if(a){var b=a.width,c=a.height;0!=this.properties.size&&(c=b=this.properties.size);var e=this._temp_texture,d=a.type;this.properties.precision===h.LOW?d=gl.UNSIGNED_BYTE:this.properties.precision===h.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)}};d.registerNodeType("texture/copy", -n);var z=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={iterations:1,generate_mipmaps:!1,precision:h.DEFAULT}};z.title="Downsample";z.desc="Downsample Texture";z.widgets_info={iterations:{type:"number",step:1,precision:0,min:0},precision:{widget:"combo",values:h.MODE_VALUES}};z.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)&&a&&a.texture_type===GL.TEXTURE_2D)if(1>this.properties.iterations)this.setOutputData(0, -a);else{var b=z._shader;b||(z._shader=b=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,z.pixel_shader));var c=a.width|0,e=a.height|0,d=a.type;this.properties.precision===h.LOW?d=gl.UNSIGNED_BYTE:this.properties.precision===h.HIGH&&(d=gl.HIGH_PRECISION_FORMAT);var g=this.properties.iterations||1,f=a,p=null,l=[],a={type:d,format:a.format},d=vec2.create(),k={u_offset:d};this._texture&&GL.Texture.releaseTemporary(this._texture);for(var m=0;m>1||0;e=e>>1||0;p=GL.Texture.getTemporary(c, -e,a);l.push(p);f.setParameter(GL.TEXTURE_MAG_FILTER,GL.NEAREST);f.copyTo(p,b,k);if(1==c&&1==e)break;f=p}this._texture=l.pop();for(m=0;me;e++)this.isOutputConnected(e)?(this._channels[e]&&this._channels[e].width==a.width&&this._channels[e].height==a.height&&this._channels[e].type==a.type&&this._channels[e].format==b||(this._channels[e]=new GL.Texture(a.width,a.height,{type:a.type,format:b,filter:gl.LINEAR})),c++):this._channels[e]=null;if(c){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);for(var d=Mesh.getScreenQuad(),g=r._shader,f=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0, -1]],e=0;4>e;e++)this._channels[e]&&(this._channels[e].drawTo(function(){a.bind(0);g.uniforms({u_texture:0,u_mask:f[e]}).draw(d)}),this.setOutputData(e,this._channels[e]))}}};r.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec4 u_mask;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\t\t\t}\n\t\t\t";d.registerNodeType("texture/textureChannels", -r);var g=function(){this.addInput("R","Texture");this.addInput("G","Texture");this.addInput("B","Texture");this.addInput("A","Texture");this.addOutput("Texture","Texture");this.properties={precision:h.DEFAULT,R:1,G:1,B:1,A:1};this._color=vec4.create();this._uniforms={u_textureR:0,u_textureG:1,u_textureB:2,u_textureA:3,u_color:this._color}};g.title="Channels to Texture";g.desc="Split texture channels";g.widgets_info={precision:{widget:"combo",values:h.MODE_VALUES}};g.prototype.onExecute=function(){var a= -h.getWhiteTexture(),b=this.getInputData(0)||a,c=this.getInputData(1)||a,e=this.getInputData(2)||a,d=this.getInputData(3)||a;gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var f=Mesh.getScreenQuad();g._shader||(g._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,g.pixel_shader));var p=g._shader,a=Math.max(b.width,c.width,e.width,d.width),l=Math.max(b.height,c.height,e.height,d.height),k=this.properties.precision==h.HIGH?h.HIGH_PRECISION_FORMAT:gl.UNSIGNED_BYTE;this._texture&&this._texture.width==a&& -this._texture.height==l&&this._texture.type==k||(this._texture=new GL.Texture(a,l,{type:k,format:gl.RGBA,filter:gl.LINEAR}));a=this._color;a[0]=this.properties.R;a[1]=this.properties.G;a[2]=this.properties.B;a[3]=this.properties.A;var m=this._uniforms;this._texture.drawTo(function(){b.bind(0);c.bind(1);e.bind(2);d.bind(3);p.uniforms(m).draw(f)});this.setOutputData(0,this._texture)};g.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_textureR;\n\t\t\tuniform sampler2D u_textureG;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform sampler2D u_textureA;\n\t\t\tuniform vec4 u_color;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = u_color * vec4( \t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\t\t\t}\n\t\t\t"; -d.registerNodeType("texture/channelsTexture",g);n=function(){this.addOutput("Texture","Texture");this._tex_color=vec4.create();this.properties={color:vec4.create(),precision:h.DEFAULT}};n.title="Color";n.desc="Generates a 1x1 texture with a constant color";n.widgets_info={precision:{widget:"combo",values:h.MODE_VALUES}};n.prototype.onDrawBackground=function(a){var b=this.properties.color;a.fillStyle="rgb("+Math.floor(255*Math.clamp(b[0],0,1))+","+Math.floor(255*Math.clamp(b[1],0,1))+","+Math.floor(255* -Math.clamp(b[2],0,1))+")";this.flags.collapsed?this.boxcolor=a.fillStyle:a.fillRect(0,0,this.size[0],this.size[1])};n.prototype.onExecute=function(){var a=this.properties.precision==h.HIGH?h.HIGH_PRECISION_FORMAT:gl.UNSIGNED_BYTE;this._tex&&this._tex.type==a||(this._tex=new GL.Texture(1,1,{format:gl.RGBA,type:a,minFilter:gl.NEAREST}));a=this.properties.color;if(this.inputs)for(var b=0;b 0.5 ? 1.0 : 0.0, diff.y > 0.5 ? 1.0 : 0.0, diff.z > 0.5 ? 1.0 : 0.0, center.a );\n\t\t\t}\n\t\t\t"; -d.registerNodeType("texture/edges",a);var 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}};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 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 g=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 f=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,1E3];e.u_camera_planes=c;this._temp_texture.drawTo(function(){a.bind(0);f.uniforms(e).draw(g)});this._temp_texture.near_far_planes=c;this.setOutputData(0,this._temp_texture)}}};b.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_distance;\n\t\t\tuniform float u_range;\n\t\t\t\n\t\t\tfloat LinearDepth()\n\t\t\t{\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tfloat depth = LinearDepth();\n\t\t\t\t#ifdef ONLY_DEPTH\n\t\t\t\t gl_FragColor = vec4(depth);\n\t\t\t\t#else\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\t\t\t\t\tfloat dof = 1.0;\n\t\t\t\t\tif(diff <= u_range)\n\t\t\t\t\t\tdof = diff / u_range;\n\t\t\t\t gl_FragColor = vec4(dof);\n\t\t\t\t#endif\n\t\t\t}\n\t\t\t"; -d.registerNodeType("texture/depth_range",b);var e=function(){this.addInput("Texture","Texture");this.addInput("Iterations","number");this.addInput("Intensity","number");this.addOutput("Blurred","Texture");this.properties={intensity:1,iterations:1,preserve_aspect:!1,scale:[1,1],precision:h.DEFAULT}};e.title="Blur";e.desc="Blur a texture";e.widgets_info={precision:{widget:"combo",values:h.MODE_VALUES}};e.max_iterations=20;e.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var b= -this._final_texture;b&&b.width==a.width&&b.height==a.height&&b.type==a.type||(b=this._final_texture=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));var c=this.properties.iterations;this.isInputConnected(1)&&(c=this.getInputData(1),this.properties.iterations=c);c=Math.min(Math.floor(c),e.max_iterations);if(0==c)this.setOutputData(0,a);else{var g=this.properties.intensity;this.isInputConnected(2)&&(g=this.getInputData(2),this.properties.intensity=g);var f=d.camera_aspect; -f||void 0===window.gl||(f=gl.canvas.height/gl.canvas.width);f||(f=1);var f=this.properties.preserve_aspect?f:1,h=this.properties.scale||[1,1];a.applyBlur(f*h[0],h[1],g,b);for(a=1;a>=1;1<(c|0)&&(c>>=1);if(2>b)break;l=f[w]=GL.Texture.getTemporary(b,c,e);n[0]=1/k.width;n[1]=1/k.height;k.blit(l,p.uniforms(g));k=l}this.isOutputConnected(2)&&(b=this._average_texture,b&&b.type==a.type&&b.format==a.format||(b=this._average_texture=new GL.Texture(1,1,{type:a.type,format:a.format,filter:gl.LINEAR})),n[0]=1/k.width,n[1]=1/k.height,g.u_intensity= -r,g.u_delta=1,k.blit(b,p.uniforms(g)),this.setOutputData(2,b));gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);g.u_intensity=this.getInputOrProperty("persistence");g.u_delta=0.5;for(w-=2;0<=w;w--)l=f[w],f[w]=null,n[0]=1/k.width,n[1]=1/k.height,k.blit(l,p.uniforms(g)),GL.Texture.releaseTemporary(k),k=l;gl.disable(gl.BLEND);this.isOutputConnected(1)&&(f=this._glow_texture,f&&f.width==a.width&&f.height==a.height&&f.type==d&&f.format==a.format||(f=this._glow_texture=new GL.Texture(a.width,a.height,{type:d, -format:a.format,filter:gl.LINEAR})),k.blit(f),this.setOutputData(1,f));if(this.isOutputConnected(0)){f=this._final_texture;f&&f.width==a.width&&f.height==a.height&&f.type==d&&f.format==a.format||(f=this._final_texture=new GL.Texture(a.width,a.height,{type:d,format:a.format,filter:gl.LINEAR}));var q=this.getInputData(1),t=this.getInputOrProperty("dirt_factor");g.u_intensity=r;p=q?s._dirt_final_shader:s._final_shader;p||(p=q?s._dirt_final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,s.final_pixel_shader, -{USE_DIRT:""}):s._final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,s.final_pixel_shader));f.drawTo(function(){a.bind(0);k.bind(1);q&&(p.setUniform("u_dirt_factor",t),p.setUniform("u_dirt_texture",q.bind(2)));p.toViewport(g)});this.setOutputData(0,f)}GL.Texture.releaseTemporary(k)}};s.cut_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform float u_threshold;\n\t\tvoid main() {\n\t\t\tgl_FragColor = max( texture2D( u_texture, v_coord ) - vec4( u_threshold ), vec4(0.0) );\n\t\t}"; -s.scale_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_texture, uv + o.xy ) + texture2D( u_texture, uv + o.zy) + texture2D( u_texture, uv + o.xw) + texture2D( u_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tgl_FragColor = u_intensity * sampleBox( v_coord );\n\t\t}"; -s.final_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform sampler2D u_glow_texture;\n\t\t#ifdef USE_DIRT\n\t\t\tuniform sampler2D u_dirt_texture;\n\t\t#endif\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\tuniform float u_dirt_factor;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_glow_texture, uv + o.xy ) + texture2D( u_glow_texture, uv + o.zy) + texture2D( u_glow_texture, uv + o.xw) + texture2D( u_glow_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tvec4 glow = sampleBox( v_coord );\n\t\t\t#ifdef USE_DIRT\n\t\t\t\tglow = mix( glow, glow * texture2D( u_dirt_texture, v_coord ), u_dirt_factor );\n\t\t\t#endif\n\t\t\tgl_FragColor = texture2D( u_texture, v_coord ) + u_intensity * glow;\n\t\t}"; -d.registerNodeType("texture/glow",s);var l=function(){this.addInput("Texture","Texture");this.addOutput("Filtered","Texture");this.properties={intensity:1,radius:5}};l.title="Kuwahara Filter";l.desc="Filters a texture giving an artistic oil canvas painting";l.max_radius=10;l._shaders=[];l.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),l.max_radius);if(0==b)this.setOutputData(0,a);else{var c=this.properties.intensity,e=d.camera_aspect;e||void 0===window.gl||(e=gl.canvas.height/gl.canvas.width);e||(e=1);e=this.properties.preserve_aspect?e:1;l._shaders[b]||(l._shaders[b]=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,l.pixel_shader,{RADIUS:b.toFixed(0)}));var g=l._shaders[b],f=GL.Mesh.getScreenQuad();a.bind(0);this._temp_texture.drawTo(function(){g.uniforms({u_texture:0, -u_intensity:c,u_resolution:[a.width,a.height],u_iResolution:[1/a.width,1/a.height]}).draw(f)});this.setOutputData(0,this._temp_texture)}}};l.pixel_shader="\n\tprecision highp float;\n\tvarying vec2 v_coord;\n\tuniform sampler2D u_texture;\n\tuniform float u_intensity;\n\tuniform vec2 u_resolution;\n\tuniform vec2 u_iResolution;\n\t#ifndef RADIUS\n\t\t#define RADIUS 7\n\t#endif\n\tvoid main() {\n\t\n\t\tconst int radius = RADIUS;\n\t\tvec2 fragCoord = v_coord;\n\t\tvec2 src_size = u_iResolution;\n\t\tvec2 uv = v_coord;\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\t\tint i;\n\t\tint j;\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\t\tvec3 c;\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm0 += c;\n\t\t\t\ts0 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm1 += c;\n\t\t\t\ts1 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm2 += c;\n\t\t\t\ts2 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm3 += c;\n\t\t\t\ts3 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfloat min_sigma2 = 1e+2;\n\t\tm0 /= n;\n\t\ts0 = abs(s0 / n - m0 * m0);\n\t\t\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\t\t}\n\t\t\n\t\tm1 /= n;\n\t\ts1 = abs(s1 / n - m1 * m1);\n\t\t\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\t\t}\n\t\t\n\t\tm2 /= n;\n\t\ts2 = abs(s2 / n - m2 * m2);\n\t\t\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\t\t}\n\t\t\n\t\tm3 /= n;\n\t\ts3 = abs(s3 / n - m3 * m3);\n\t\t\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\t\t}\n\t}\n\t"; -d.registerNodeType("texture/kuwahara",l);var H=function(){this.addInput("Texture","Texture");this.addOutput("Filtered","Texture");this.properties={sigma:1.4,k:1.6,p:21.7,epsilon:79,phi:0.017}};H.title="XDoG Filter";H.desc="Filters a texture giving an artistic ink style";H.max_radius=10;H._shaders=[];H.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}));H._xdog_shader||(H._xdog_shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,H.xdog_pixel_shader));var c=H._xdog_shader,e=GL.Mesh.getScreenQuad(),d=this.properties.sigma,g=this.properties.k,f=this.properties.p,h=this.properties.epsilon,p=this.properties.phi;a.bind(0);this._temp_texture.drawTo(function(){c.uniforms({src:0,sigma:d,k:g,p:f,epsilon:h,phi:p,cvsWidth:a.width,cvsHeight:a.height}).draw(e)});this.setOutputData(0,this._temp_texture)}};H.xdog_pixel_shader= +this.addOutput("vec4","vec4");this.properties={x:0,y:0,z:0,w:0};this._data=new Float32Array(4)}var C=t.LiteGraph;e.title="Converter";e.desc="type A to type B";e.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a&&this.outputs)for(var c=0;ca&&(a+=1024);var b=Math.floor(a);a-=b;d=l.data[b];b=l.data[1023==b?0:b+1];c&&(a=a*a*a*(a*(6*a-15)+10));return d*(1-a)+b*a};l.prototype.onExecute=function(){var a=this.getInputData(0)||0,a=l.getValue(a,this.properties.smooth),c=this.properties.min;this._last_v=a*(this.properties.max-c)+c;this.setOutputData(0, +this._last_v)};l.prototype.onDrawBackground=function(a){this.outputs[0].label=(this._last_v||0).toFixed(3)};C.registerNodeType("math/noise",l);A.title="Spikes";A.desc="spike every random time";A.prototype.onExecute=function(){var a=this.graph.elapsed_time;this._remaining_time-=a;this._blink_time-=a;a=0;0this._remaining_time?(this._remaining_time=Math.random()*(this.properties.max_time-this.properties.min_time)+ +this.properties.min_time,this._blink_time=this.properties.duration,this.boxcolor="#FFF"):this.boxcolor="#000";this.setOutputData(0,a)};C.registerNodeType("math/spikes",A);z.title="Clamp";z.desc="Clamp number between min and max";z.filter="shader";z.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))};z.prototype.getCode=function(a){a="";this.isInputConnected(0)&&(a+="clamp({{0}},"+this.properties.min+ +","+this.properties.max+")");return a};C.registerNodeType("math/clamp",z);w.title="Lerp";w.desc="Linear Interpolation";w.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var c=this.getInputData(1);null==c&&(c=0);var d=this.properties.f,b=this.getInputData(2);void 0!==b&&(d=b);this.setOutputData(0,a*(1-d)+c*d)};w.prototype.onGetInputs=function(){return[["f","number"]]};C.registerNodeType("math/lerp",w);y.title="Abs";y.desc="Absolute";y.prototype.onExecute=function(){var a=this.getInputData(0); +null!=a&&this.setOutputData(0,Math.abs(a))};C.registerNodeType("math/abs",y);b.title="Floor";b.desc="Floor number to remove fractional part";b.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,Math.floor(a))};C.registerNodeType("math/floor",b);x.title="Frac";x.desc="Returns fractional part";x.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,a%1)};C.registerNodeType("math/frac",x);v.title="Smoothstep";v.desc="Smoothstep"; +v.prototype.onExecute=function(){var a=this.getInputData(0);if(void 0!==a){var c=this.properties.A,a=Math.clamp((a-c)/(this.properties.B-c),0,1);this.setOutputData(0,a*a*(3-2*a))}};C.registerNodeType("math/smoothstep",v);h.title="Scale";h.desc="v * factor";h.prototype.onExecute=function(){var a=this.getInputData(0);null!=a&&this.setOutputData(0,a*this.properties.factor)};C.registerNodeType("math/scale",h);B.title="Average";B.desc="Average Filter";B.prototype.onExecute=function(){var a=this.getInputData(0); +null==a&&(a=0);var c=this._values.length;this._values[this._current%c]=a;this._current+=1;this._current>c&&(this._current=0);for(var d=a=0;dc&&(c=1);this.properties.samples=Math.round(c);var d=this._values;this._values=new Float32Array(this.properties.samples);d.length<=this._values.length?this._values.set(d):this._values.set(d.subarray(0,this._values.length))};C.registerNodeType("math/average",B);k.title= +"TendTo";k.desc="moves the output value always closer to the input";k.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var c=this.properties.factor;this._value=null==this._value?a:this._value*(1-c)+a*c;this.setOutputData(0,this._value)};C.registerNodeType("math/tendTo",k);n.values="+ - * / % ^ max min".split(" ");n.title="Operation";n.desc="Easy math operators";n["@OP"]={type:"enum",title:"operation",values:n.values};n.size=[100,60];n.prototype.getTitle=function(){return"max"== +this.properties.OP||"min"==this.properties.OP?this.properties.OP+"(A,B)":"A "+this.properties.OP+" B"};n.prototype.setValue=function(a){"string"==typeof a&&(a=parseFloat(a));this.properties.value=a};n.prototype.onExecute=function(){var a=this.getInputData(0),c=this.getInputData(1);null!=a?this.properties.A=a:a=this.properties.A;null!=c?this.properties.B=c:c=this.properties.B;var d=0;switch(this.properties.OP){case "+":d=a+c;break;case "-":d=a-c;break;case "x":case "X":case "*":d=a*c;break;case "/":d= +a/c;break;case "%":d=a%c;break;case "^":d=Math.pow(a,c);break;case "max":d=Math.max(a,c);break;case "min":d=Math.min(a,c);break;default:console.warn("Unknown operation: "+this.properties.OP)}this.setOutputData(0,d)};n.prototype.onDrawBackground=function(a){this.flags.collapsed||(a.font="40px Arial",a.fillStyle="#666",a.textAlign="center",a.fillText(this.properties.OP,0.5*this.size[0],0.5*(this.size[1]+C.NODE_TITLE_HEIGHT)),a.textAlign="left")};C.registerNodeType("math/operation",n);C.registerSearchboxExtra("math/operation", +"MAX",{properties:{OP:"max"},title:"MAX()"});C.registerSearchboxExtra("math/operation","MIN",{properties:{OP:"min"},title:"MIN()"});g.title="Compare";g.desc="compares between two values";g.prototype.onExecute=function(){var a=this.getInputData(0),c=this.getInputData(1);void 0!==a?this.properties.A=a:a=this.properties.A;void 0!==c?this.properties.B=c:c=this.properties.B;for(var d=0,b=this.outputs.length;dB":h=a>c;break;case "A=B":h=a>=c}this.setOutputData(d,h)}}};g.prototype.onGetOutputs=function(){return[["A==B","boolean"],["A!=B","boolean"],["A>B","boolean"],["A=B","boolean"],["A<=B","boolean"]]};C.registerNodeType("math/compare",g);C.registerSearchboxExtra("math/compare","==",{outputs:[["A==B","boolean"]],title:"A==B"});C.registerSearchboxExtra("math/compare","!=",{outputs:[["A!=B","boolean"]], +title:"A!=B"});C.registerSearchboxExtra("math/compare",">",{outputs:[["A>B","boolean"]],title:"A>B"});C.registerSearchboxExtra("math/compare","<",{outputs:[["A=",{outputs:[["A>=B","boolean"]],title:"A>=B"});C.registerSearchboxExtra("math/compare","<=",{outputs:[["A<=B","boolean"]],title:"A<=B"});a.values="> < == != <= >= || &&".split(" ");a["@OP"]={type:"enum",title:"operation",values:a.values};a.title="Condition";a.desc="evaluates condition between A and B"; +a.prototype.getTitle=function(){return"A "+this.properties.OP+" B"};a.prototype.onExecute=function(){var a=this.getInputData(0);void 0===a?a=this.properties.A:this.properties.A=a;var c=this.getInputData(1);void 0===c?c=this.properties.B:this.properties.B=c;var d=!0;switch(this.properties.OP){case ">":d=a>c;break;case "<":d=a=":d=a>=c;break;case "||":d=a||c;break;case "&&":d=a&&c}this.setOutputData(0,d)};C.registerNodeType("math/condition", +a);c.title="Accumulate";c.desc="Increments a value every time";c.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)};C.registerNodeType("math/accumulate",c);d.title="Trigonometry";d.desc="Sin Cos Tan";d.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=0);var c=this.properties.amplitude, +d=this.findInputSlot("amplitude");-1!=d&&(c=this.getInputData(d));var b=this.properties.offset,d=this.findInputSlot("offset");-1!=d&&(b=this.getInputData(d));for(var d=0,e=this.outputs.length;dXY";m.desc="vector 2 to components";m.prototype.onExecute=function(){var a=this.getInputData(0); +null!=a&&(this.setOutputData(0,a[0]),this.setOutputData(1,a[1]))};C.registerNodeType("math3d/vec2-to-xyz",m);H.title="XY->Vec2";H.desc="components to vector2";H.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var c=this.getInputData(1);null==c&&(c=this.properties.y);var d=this._data;d[0]=a;d[1]=c;this.setOutputData(0,d)};C.registerNodeType("math3d/xy-to-vec2",H);E.title="Vec3->XYZ";E.desc="vector 3 to components";E.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]))};C.registerNodeType("math3d/vec3-to-xyz",E);I.title="XYZ->Vec3";I.desc="components to vector3";I.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var c=this.getInputData(1);null==c&&(c=this.properties.y);var d=this.getInputData(2);null==d&&(d=this.properties.z);var b=this._data;b[0]=a;b[1]=c;b[2]=d;this.setOutputData(0,b)};C.registerNodeType("math3d/xyz-to-vec3",I);J.title= +"Vec4->XYZW";J.desc="vector 4 to components";J.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]))};C.registerNodeType("math3d/vec4-to-xyzw",J);G.title="XYZW->Vec4";G.desc="components to vector4";G.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.x);var c=this.getInputData(1);null==c&&(c=this.properties.y);var d=this.getInputData(2);null== +d&&(d=this.properties.z);var b=this.getInputData(3);null==b&&(b=this.properties.w);var e=this._data;e[0]=a;e[1]=c;e[2]=d;e[3]=b;this.setOutputData(0,e)};C.registerNodeType("math3d/xyzw-to-vec4",G);t.glMatrix&&(t=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1};this._value=quat.create()},t.title="Quaternion",t.desc="quaternion",t.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)},C.registerNodeType("math3d/quaternion",t),t=function(){this.addInputs([["degrees","number"],["axis","vec3"]]);this.addOutput("quat","quat");this.properties={angle:90,axis:vec3.fromValues(0,1,0)};this._value=quat.create()},t.title="Rotation",t.desc="quaternion rotation",t.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.angle);var c=this.getInputData(1);null==c&&(c=this.properties.axis);a=quat.setAxisAngle(this._value, +c,0.0174532925*a);this.setOutputData(0,a)},C.registerNodeType("math3d/rotation",t),t=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]);this.addOutput("result","vec3");this.properties={vec:[0,0,1]}},t.title="Rot. Vec3",t.desc="rotate a point",t.prototype.onExecute=function(){var a=this.getInputData(0);null==a&&(a=this.properties.vec);var c=this.getInputData(1);null==c?this.setOutputData(a):this.setOutputData(0,vec3.transformQuat(vec3.create(),a,c))},C.registerNodeType("math3d/rotate_vec3", +t),t=function(){this.addInputs([["A","quat"],["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},t.title="Mult. Quat",t.desc="rotate quaternion",t.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a){var c=this.getInputData(1);null!=c&&(a=quat.multiply(this._value,a,c),this.setOutputData(0,a))}},C.registerNodeType("math3d/mult-quat",t),t=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor", +0.5);this._value=quat.create()},t.title="Quat Slerp",t.desc="quaternion spherical interpolation",t.prototype.onExecute=function(){var a=this.getInputData(0);if(null!=a){var c=this.getInputData(1);if(null!=c){var d=this.properties.factor;null!=this.getInputData(2)&&(d=this.getInputData(2));a=quat.slerp(this._value,a,c,d);this.setOutputData(0,a)}}},C.registerNodeType("math3d/quat-slerp",t))})(this); +(function(t){function e(){this.addInput("A","number,vec3");this.addInput("B","number,vec3");this.addOutput("=","vec3");this.addProperty("OP","+","enum",{values:e.values});this._result=vec3.create()}function f(){this.addInput("vec2","vec2");this.addOutput("x","number");this.addOutput("y","number")}function q(){this.addInputs([["x","number"],["y","number"]]);this.addOutput("vec2","vec2");this.properties={x:0,y:0};this._data=new Float32Array(2)}function p(){this.addInput("vec3","vec3");this.addOutput("x", +"number");this.addOutput("y","number");this.addOutput("z","number")}function s(){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 l(){this.addInput("vec4","vec4");this.addOutput("x","number");this.addOutput("y","number");this.addOutput("z","number");this.addOutput("w","number")}function A(){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)}function z(){this.addInput("in","vec3");this.addInput("f","number");this.addOutput("out","vec3");this.properties={f:1};this._data=new Float32Array(3)}function w(){this.addInput("in","vec3");this.addOutput("out","number")}function y(){this.addInput("in","vec3");this.addOutput("out","vec3");this._data=new Float32Array(3)}function b(){this.addInput("A","vec3");this.addInput("B","vec3");this.addInput("f","vec3");this.addOutput("out", +"vec3");this.properties={f:0.5};this._data=new Float32Array(3)}function x(){this.addInput("A","vec3");this.addInput("B","vec3");this.addOutput("out","number")}var v=t.LiteGraph;e.values="+ - * / % ^ max min".split(" ");e.title="Operation";e.desc="Easy math 3D operators";e["@OP"]={type:"enum",title:"operation",values:e.values};e.size=[100,60];e.prototype.getTitle=function(){return"max"==this.properties.OP||"min"==this.properties.OP?this.properties.OP+"(A,B)":"A "+this.properties.OP+" B"};e.prototype.onExecute= +function(){var b=this.getInputData(0),e=this.getInputData(1);if(null!=b&&null!=e){b.constructor===Number&&(b=[b,b,b]);e.constructor===Number&&(e=[e,e,e]);var k=this._result;switch(this.properties.OP){case "+":k=vec3.add(k,b,e);break;case "-":k=vec3.sub(k,b,e);break;case "x":case "X":case "*":k=vec3.mul(k,b,e);break;case "/":k=vec3.div(k,b,e);break;case "%":k[0]=b[0]%e[0];k[1]=b[1]%e[1];k[2]=b[2]%e[2];break;case "^":k[0]=Math.pow(b[0],e[0]);k[1]=Math.pow(b[1],e[1]);k[2]=Math.pow(b[2],e[2]);break;case "max":k[0]= +Math.max(b[0],e[0]);k[1]=Math.max(b[1],e[1]);k[2]=Math.max(b[2],e[2]);break;case "min":k[0]=Math.min(b[0],e[0]);k[1]=Math.min(b[1],e[1]);k[2]=Math.min(b[2],e[2]);break;default:console.warn("Unknown operation: "+this.properties.OP)}this.setOutputData(0,k)}};e.prototype.onDrawBackground=function(b){this.flags.collapsed||(b.font="40px Arial",b.fillStyle="#666",b.textAlign="center",b.fillText(this.properties.OP,0.5*this.size[0],0.5*(this.size[1]+v.NODE_TITLE_HEIGHT)),b.textAlign="left")};v.registerNodeType("math3d/operation", +e);f.title="Vec2->XY";f.desc="vector 2 to components";f.prototype.onExecute=function(){var b=this.getInputData(0);null!=b&&(this.setOutputData(0,b[0]),this.setOutputData(1,b[1]))};v.registerNodeType("math3d/vec2-to-xyz",f);q.title="XY->Vec2";q.desc="components to vector2";q.prototype.onExecute=function(){var b=this.getInputData(0);null==b&&(b=this.properties.x);var e=this.getInputData(1);null==e&&(e=this.properties.y);var k=this._data;k[0]=b;k[1]=e;this.setOutputData(0,k)};v.registerNodeType("math3d/xy-to-vec2", +q);p.title="Vec3->XYZ";p.desc="vector 3 to components";p.prototype.onExecute=function(){var b=this.getInputData(0);null!=b&&(this.setOutputData(0,b[0]),this.setOutputData(1,b[1]),this.setOutputData(2,b[2]))};v.registerNodeType("math3d/vec3-to-xyz",p);s.title="XYZ->Vec3";s.desc="components to vector3";s.prototype.onExecute=function(){var b=this.getInputData(0);null==b&&(b=this.properties.x);var e=this.getInputData(1);null==e&&(e=this.properties.y);var k=this.getInputData(2);null==k&&(k=this.properties.z); +var f=this._data;f[0]=b;f[1]=e;f[2]=k;this.setOutputData(0,f)};v.registerNodeType("math3d/xyz-to-vec3",s);l.title="Vec4->XYZW";l.desc="vector 4 to components";l.prototype.onExecute=function(){var b=this.getInputData(0);null!=b&&(this.setOutputData(0,b[0]),this.setOutputData(1,b[1]),this.setOutputData(2,b[2]),this.setOutputData(3,b[3]))};v.registerNodeType("math3d/vec4-to-xyzw",l);A.title="XYZW->Vec4";A.desc="components to vector4";A.prototype.onExecute=function(){var b=this.getInputData(0);null== +b&&(b=this.properties.x);var e=this.getInputData(1);null==e&&(e=this.properties.y);var k=this.getInputData(2);null==k&&(k=this.properties.z);var f=this.getInputData(3);null==f&&(f=this.properties.w);var g=this._data;g[0]=b;g[1]=e;g[2]=k;g[3]=f;this.setOutputData(0,g)};v.registerNodeType("math3d/xyzw-to-vec4",A);z.title="vec3_scale";z.desc="scales the components of a vec3";z.prototype.onExecute=function(){var b=this.getInputData(0);if(null!=b){var e=this.getInputData(1);null==e&&(e=this.properties.f); +var k=this._data;k[0]=b[0]*e;k[1]=b[1]*e;k[2]=b[2]*e;this.setOutputData(0,k)}};v.registerNodeType("math3d/vec3-scale",z);w.title="vec3_length";w.desc="returns the module of a vector";w.prototype.onExecute=function(){var b=this.getInputData(0);null!=b&&(b=Math.sqrt(b[0]*b[0]+b[1]*b[1]+b[2]*b[2]),this.setOutputData(0,b))};v.registerNodeType("math3d/vec3-length",w);y.title="vec3_normalize";y.desc="returns the vector normalized";y.prototype.onExecute=function(){var b=this.getInputData(0);if(null!=b){var e= +Math.sqrt(b[0]*b[0]+b[1]*b[1]+b[2]*b[2]),k=this._data;k[0]=b[0]/e;k[1]=b[1]/e;k[2]=b[2]/e;this.setOutputData(0,k)}};v.registerNodeType("math3d/vec3-normalize",y);b.title="vec3_lerp";b.desc="returns the interpolated vector";b.prototype.onExecute=function(){var b=this.getInputData(0);if(null!=b){var e=this.getInputData(1);if(null!=e){var k=this.getInputOrProperty("f"),f=this._data;f[0]=b[0]*(1-k)+e[0]*k;f[1]=b[1]*(1-k)+e[1]*k;f[2]=b[2]*(1-k)+e[2]*k;this.setOutputData(0,f)}}};v.registerNodeType("math3d/vec3-lerp", +b);x.title="vec3_dot";x.desc="returns the dot product";x.prototype.onExecute=function(){var b=this.getInputData(0);if(null!=b){var e=this.getInputData(1);null!=e&&this.setOutputData(0,b[0]*e[0]+b[1]*e[1]+b[2]*e[2])}};v.registerNodeType("math3d/vec3-dot",x);t.glMatrix?(t=function(){this.addOutput("quat","quat");this.properties={x:0,y:0,z:0,w:1,normalize:!1};this._value=quat.create()},t.title="Quaternion",t.desc="quaternion",t.prototype.onExecute=function(){this._value[0]=this.getInputOrProperty("x"); +this._value[1]=this.getInputOrProperty("y");this._value[2]=this.getInputOrProperty("z");this._value[3]=this.getInputOrProperty("w");this.properties.normalize&&quat.normalize(this._value,this._value);this.setOutputData(0,this._value)},t.prototype.onGetInputs=function(){return[["x","number"],["y","number"],["z","number"],["w","number"]]},v.registerNodeType("math3d/quaternion",t),t=function(){this.addInputs([["degrees","number"],["axis","vec3"]]);this.addOutput("quat","quat");this.properties={angle:90, +axis:vec3.fromValues(0,1,0)};this._value=quat.create()},t.title="Rotation",t.desc="quaternion rotation",t.prototype.onExecute=function(){var b=this.getInputData(0);null==b&&(b=this.properties.angle);var e=this.getInputData(1);null==e&&(e=this.properties.axis);b=quat.setAxisAngle(this._value,e,0.0174532925*b);this.setOutputData(0,b)},v.registerNodeType("math3d/rotation",t),t=function(){this.addInputs([["vec3","vec3"],["quat","quat"]]);this.addOutput("result","vec3");this.properties={vec:[0,0,1]}}, +t.title="Rot. Vec3",t.desc="rotate a point",t.prototype.onExecute=function(){var b=this.getInputData(0);null==b&&(b=this.properties.vec);var e=this.getInputData(1);null==e?this.setOutputData(b):this.setOutputData(0,vec3.transformQuat(vec3.create(),b,e))},v.registerNodeType("math3d/rotate_vec3",t),t=function(){this.addInputs([["A","quat"],["B","quat"]]);this.addOutput("A*B","quat");this._value=quat.create()},t.title="Mult. Quat",t.desc="rotate quaternion",t.prototype.onExecute=function(){var b=this.getInputData(0); +if(null!=b){var e=this.getInputData(1);null!=e&&(b=quat.multiply(this._value,b,e),this.setOutputData(0,b))}},v.registerNodeType("math3d/mult-quat",t),t=function(){this.addInputs([["A","quat"],["B","quat"],["factor","number"]]);this.addOutput("slerp","quat");this.addProperty("factor",0.5);this._value=quat.create()},t.title="Quat Slerp",t.desc="quaternion spherical interpolation",t.prototype.onExecute=function(){var b=this.getInputData(0);if(null!=b){var e=this.getInputData(1);if(null!=e){var k=this.properties.factor; +null!=this.getInputData(2)&&(k=this.getInputData(2));b=quat.slerp(this._value,b,e,k);this.setOutputData(0,b)}}},v.registerNodeType("math3d/quat-slerp",t),t=function(){this.addInput("vec3","vec3");this.addOutput("remap","vec3");this.addOutput("clamped","vec3");this.properties={clamp:!0,range_min:[-1,-1,0],range_max:[1,1,0],target_min:[-1,-1,0],target_max:[1,1,0]};this._value=vec3.create();this._clamped=vec3.create()},t.title="Remap Range",t.desc="remap a 3D range",t.prototype.onExecute=function(){var b= +this.getInputData(0);b&&this._value.set(b);for(var b=this.properties.range_min,e=this.properties.range_max,k=this.properties.target_min,f=this.properties.target_max,g=0;3>g;++g){var a=e[g]-b[g];this._clamped[g]=Math.clamp(this._value[g],b[g],e[g]);0==a?this._value[g]=0.5*(k[g]+f[g]):(a=(this._value[g]-b[g])/a,this.properties.clamp&&(a=Math.clamp(a,0,1)),this._value[g]=k[g]+a*(f[g]-k[g]))}this.setOutputData(0,this._value);this.setOutputData(1,this._clamped)},v.registerNodeType("math3d/remap_range", +t)):console.warn("No glmatrix found, some Math3D nodes may not work")})(this); +(function(t){function e(e,f){return e==f}function f(e){return null!=e&&e.constructor===String?e.toUpperCase():e}t=t.LiteGraph;t.wrapFunctionAsNode("string/toString",e,["*"],"String");t.wrapFunctionAsNode("string/compare",e,["String","String"],"Boolean");t.wrapFunctionAsNode("string/concatenate",function(e,f){return void 0===e?f:void 0===f?e:e+f},["String","String"],"String");t.wrapFunctionAsNode("string/contains",function(e,f){return void 0===e||void 0===f?!1:-1!=e.indexOf(f)},["String","String"], +"Boolean");t.wrapFunctionAsNode("string/toUpperCase",f,["String"],"String");t.wrapFunctionAsNode("string/split",f,["String","String"],"Array");t.wrapFunctionAsNode("string/toFixed",function(e){return null!=e&&e.constructor===Number?e.toFixed(this.properties.precision):e},["Number"],"String",{precision:0})})(this); +(function(t){function e(){this.addInput("sel","number");this.addInput("A");this.addInput("B");this.addInput("C");this.addInput("D");this.addOutput("out");this.selected=0}function f(){this.properties={sequence:"A,B,C"};this.addInput("index","number");this.addInput("seq");this.addOutput("out");this.index=0;this.values=this.properties.sequence.split(",")}var q=t.LiteGraph;e.title="Selector";e.desc="selects an output";e.prototype.onDrawBackground=function(e){if(!this.flags.collapsed){e.fillStyle="#AFB"; +var f=(this.selected+1)*q.NODE_SLOT_HEIGHT+6;e.beginPath();e.moveTo(50,f);e.lineTo(50,f+q.NODE_SLOT_HEIGHT);e.lineTo(34,f+0.5*q.NODE_SLOT_HEIGHT);e.fill()}};e.prototype.onExecute=function(){var e=this.getInputData(0);if(null==e||e.constructor!==Number)e=0;this.selected=e=Math.round(e)%(this.inputs.length-1);e=this.getInputData(e+1);void 0!==e&&this.setOutputData(0,e)};e.prototype.onGetInputs=function(){return[["E",0],["F",0],["G",0],["H",0]]};q.registerNodeType("logic/selector",e);f.title="Sequence"; +f.desc="select one element from a sequence from a string";f.prototype.onPropertyChanged=function(e,f){"sequence"==e&&(this.values=f.split(","))};f.prototype.onExecute=function(){var e=this.getInputData(1);e&&e!=this.current_sequence&&(this.values=e.split(","),this.current_sequence=e);e=this.getInputData(0);null==e&&(e=0);this.index=e=Math.round(e)%this.values.length;this.setOutputData(0,this.values[e])};q.registerNodeType("logic/sequence",f)})(this); +(function(t){function e(){this.addInput("A","Number");this.addInput("B","Number");this.addInput("C","Number");this.addInput("D","Number");this.values=[[],[],[],[]];this.properties={scale:2}}function f(){this.addOutput("frame","image");this.properties={url:""}}function q(){this.addInput("f","number");this.addOutput("Color","color");this.properties={colorA:"#444444",colorB:"#44AAFF",colorC:"#44FFAA",colorD:"#FFFFFF"}}function p(){this.addInput("","image,canvas");this.size=[200,200]}function s(){this.addInputs([["img1", +"image"],["img2","image"],["fade","number"]]);this.addOutput("","image");this.properties={fade:0.5,width:512,height:512}}function l(){this.addInput("","image");this.addOutput("","image");this.properties={width:256,height:256,x:0,y:0,scale:1};this.size=[50,20]}function A(){this.addInput("clear",x.ACTION);this.addOutput("","canvas");this.properties={width:512,height:512,autoclear:!0};this.canvas=document.createElement("canvas");this.ctx=this.canvas.getContext("2d")}function z(){this.addInput("canvas", +"canvas");this.addInput("img","image,canvas");this.addInput("x","number");this.addInput("y","number");this.properties={x:0,y:0,opacity:1}}function w(){this.addInput("canvas","canvas");this.addInput("x","number");this.addInput("y","number");this.addInput("w","number");this.addInput("h","number");this.properties={x:0,y:0,w:10,h:10,color:"white",opacity:1}}function y(){this.addInput("t","number");this.addOutputs([["frame","image"],["t","number"],["d","number"]]);this.properties={url:"",use_proxy:!0}} +function b(){this.addOutput("Webcam","image");this.properties={facingMode:"user"};this.boxcolor="black";this.frame=0}var x=t.LiteGraph;e.title="Plot";e.desc="Plots data over time";e.colors=["#FFF","#F99","#9F9","#99F"];e.prototype.onExecute=function(b){if(!this.flags.collapsed){b=this.size;for(var e=0;4>e;++e){var f=this.getInputData(e);if(null!=f){var k=this.values[e];k.push(f);k.length>b[0]&&k.shift()}}}};e.prototype.onDrawBackground=function(b){if(!this.flags.collapsed){var h=this.size,f=0.5*h[1]/ +this.properties.scale,k=e.colors,n=0.5*h[1];b.fillStyle="#000";b.fillRect(0,0,h[0],h[1]);b.strokeStyle="#555";b.beginPath();b.moveTo(0,n);b.lineTo(h[0],n);b.stroke();if(this.inputs)for(var g=0;4>g;++g){var a=this.values[g];if(this.inputs[g]&&this.inputs[g].link){b.strokeStyle=k[g];b.beginPath();var c=a[0]*f*-1+n;b.moveTo(0,Math.clamp(c,0,h[1]));for(var d=1;de&&(e=0);if(0!=b.length){var f=[0,0,0];if(0==e)f=b[0];else if(1==e)f=b[b.length-1];else{var k=(b.length-1)*e,e=b[Math.floor(k)],b=b[Math.floor(k)+1],k=k-Math.floor(k);f[0]=e[0]* +(1-k)+b[0]*k;f[1]=e[1]*(1-k)+b[1]*k;f[2]=e[2]*(1-k)+b[2]*k}for(var n in f)f[n]/=255;this.boxcolor=colorToString(f);this.setOutputData(0,f)}};x.registerNodeType("color/palette",q);p.title="Frame";p.desc="Frame viewerew";p.widgets=[{name:"resize",text:"Resize box",type:"button"},{name:"view",text:"View Image",type:"button"}];p.prototype.onDrawBackground=function(b){this.frame&&!this.flags.collapsed&&b.drawImage(this.frame,0,0,this.size[0],this.size[1])};p.prototype.onExecute=function(){this.frame=this.getInputData(0); +this.setDirtyCanvas(!0)};p.prototype.onWidget=function(b,e){if("resize"==e.name&&this.frame){var f=this.frame.width,k=this.frame.height;f||null==this.frame.videoWidth||(f=this.frame.videoWidth,k=this.frame.videoHeight);f&&k&&(this.size=[f,k]);this.setDirtyCanvas(!0,!0)}else"view"==e.name&&this.show()};p.prototype.show=function(){showElement&&this.frame&&showElement(this.frame)};x.registerNodeType("graphics/frame",p);s.title="Image fade";s.desc="Fades between images";s.widgets=[{name:"resizeA",text:"Resize to A", +type:"button"},{name:"resizeB",text:"Resize to B",type:"button"}];s.prototype.onAdded=function(){this.createCanvas();var b=this.canvas.getContext("2d");b.fillStyle="#000";b.fillRect(0,0,this.properties.width,this.properties.height)};s.prototype.createCanvas=function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};s.prototype.onExecute=function(){var b=this.canvas.getContext("2d");this.canvas.width=this.canvas.width; +var e=this.getInputData(0);null!=e&&b.drawImage(e,0,0,this.canvas.width,this.canvas.height);e=this.getInputData(2);null==e?e=this.properties.fade:this.properties.fade=e;b.globalAlpha=e;e=this.getInputData(1);null!=e&&b.drawImage(e,0,0,this.canvas.width,this.canvas.height);b.globalAlpha=1;this.setOutputData(0,this.canvas);this.setDirtyCanvas(!0)};x.registerNodeType("graphics/imagefade",s);l.title="Crop";l.desc="Crop Image";l.prototype.onAdded=function(){this.createCanvas()};l.prototype.createCanvas= +function(){this.canvas=document.createElement("canvas");this.canvas.width=this.properties.width;this.canvas.height=this.properties.height};l.prototype.onExecute=function(){var b=this.getInputData(0);b&&(b.width?(this.canvas.getContext("2d").drawImage(b,-this.properties.x,-this.properties.y,b.width*this.properties.scale,b.height*this.properties.scale),this.setOutputData(0,this.canvas)):this.setOutputData(0,null))};l.prototype.onDrawBackground=function(b){this.flags.collapsed||this.canvas&&b.drawImage(this.canvas, +0,0,this.canvas.width,this.canvas.height,0,0,this.size[0],this.size[1])};l.prototype.onPropertyChanged=function(b,e){this.properties[b]=e;"scale"==b?(this.properties[b]=parseFloat(e),0==this.properties[b]&&(this.trace("Error in scale"),this.properties[b]=1)):this.properties[b]=parseInt(e);this.createCanvas();return!0};x.registerNodeType("graphics/cropImage",l);A.title="Canvas";A.desc="Canvas to render stuff";A.prototype.onExecute=function(){var b=this.canvas,e=this.properties.width|0,f=this.properties.height| +0;b.width!=e&&(b.width=e);b.height!=f&&(b.height=f);this.properties.autoclear&&this.ctx.clearRect(0,0,b.width,b.height);this.setOutputData(0,b)};A.prototype.onAction=function(b,e){"clear"==b&&this.ctx.clearRect(0,0,this.canvas.width,this.canvas.height)};x.registerNodeType("graphics/canvas",A);z.title="DrawImage";z.desc="Draws image into a canvas";z.prototype.onExecute=function(){var b=this.getInputData(0);if(b){var e=this.getInputOrProperty("img");if(e){var f=this.getInputOrProperty("x"),k=this.getInputOrProperty("y"); +b.getContext("2d").drawImage(e,f,k)}}};x.registerNodeType("graphics/drawImage",z);w.title="DrawRectangle";w.desc="Draws rectangle in canvas";w.prototype.onExecute=function(){var b=this.getInputData(0);if(b){var e=this.getInputOrProperty("x"),f=this.getInputOrProperty("y"),k=this.getInputOrProperty("w"),n=this.getInputOrProperty("h");b.getContext("2d").fillRect(e,f,k,n)}};x.registerNodeType("graphics/drawRectangle",w);y.title="Video";y.desc="Video playback";y.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"}];y.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 b=this.getInputData(0);b&&0<=b&&1>=b&&(this._video.currentTime=b*this._video.duration,this._video.pause());this._video.dirty=!0;this.setOutputData(0,this._video);this.setOutputData(1,this._video.currentTime); +this.setOutputData(2,this._video.duration);this.setDirtyCanvas(!0)}};y.prototype.onStart=function(){this.play()};y.prototype.onStop=function(){this.stop()};y.prototype.loadVideo=function(b){this._video_url=b;this.properties.use_proxy&&"http"==b.substr(0,4)&&x.proxy&&(b=x.proxy+b.substr(b.indexOf(":")+3));this._video=document.createElement("video");this._video.src=b;this._video.type="type=video/mp4";this._video.muted=!0;this._video.autoplay=!0;var e=this;this._video.addEventListener("loadedmetadata", +function(b){e.trace("Duration: "+this.duration+" seconds");e.trace("Size: "+this.videoWidth+","+this.videoHeight);e.setDirtyCanvas(!0);this.width=this.videoWidth;this.height=this.videoHeight});this._video.addEventListener("progress",function(b){});this._video.addEventListener("error",function(b){console.log("Error loading video: "+this.src);e.trace("Error loading video: "+this.src);if(this.error)switch(this.error.code){case this.error.MEDIA_ERR_ABORTED:e.trace("You stopped the video.");break;case this.error.MEDIA_ERR_NETWORK:e.trace("Network error - please try again later."); +break;case this.error.MEDIA_ERR_DECODE:e.trace("Video is broken..");break;case this.error.MEDIA_ERR_SRC_NOT_SUPPORTED:e.trace("Sorry, your browser can't play this video.")}});this._video.addEventListener("ended",function(b){e.trace("Ended.");this.play()})};y.prototype.onPropertyChanged=function(b,e){this.properties[b]=e;"url"==b&&""!=e&&this.loadVideo(e);return!0};y.prototype.play=function(){this._video&&this._video.play()};y.prototype.playPause=function(){this._video&&(this._video.paused?this.play(): +this.pause())};y.prototype.stop=function(){this._video&&(this._video.pause(),this._video.currentTime=0)};y.prototype.pause=function(){this._video&&(this.trace("Video paused"),this._video.pause())};y.prototype.onWidget=function(b,e){};x.registerNodeType("graphics/video",y);b.title="Webcam";b.desc="Webcam image";b.is_webcam_open=!1;b.prototype.openStream=function(){function e(l){console.log("Webcam rejected",l);f._webcam_stream=!1;b.is_webcam_open=!1;f.boxcolor="red";f.trigger("stream_error")}if(navigator.getUserMedia){this._waiting_confirmation= +!0;navigator.mediaDevices.getUserMedia({audio:!1,video:{facingMode:this.properties.facingMode}}).then(this.streamReady.bind(this))["catch"](e);var f=this}};b.prototype.closeStream=function(){if(this._webcam_stream){var e=this._webcam_stream.getTracks();if(e.length)for(var f=0;f=this.size[1]||!this.properties.show||!this._video||(b.save(),b.drawImage(this._video,0,0,this.size[0],this.size[1]),b.restore())};b.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["stream_ready",x.EVENT],["stream_closed",x.EVENT],["stream_error",x.EVENT]]};x.registerNodeType("graphics/webcam",b)})(this); +(function(t){var e=t.LiteGraph;t.LGraphTexture=null;if("undefined"!=typeof GL){LGraphCanvas.link_type_colors.Texture="#987";var f=function(){this.addOutput("Texture","Texture");this.properties={name:"",filter:!0};this.size=[f.image_preview_size,f.image_preview_size]};t.LGraphTexture=f;f.title="Texture";f.desc="Texture";f.widgets_info={name:{widget:"texture"},filter:{widget:"checkbox"}};f.loadTextureCallback=null;f.image_preview_size=256;f.PASS_THROUGH=1;f.COPY=2;f.LOW=3;f.HIGH=4;f.REUSE=5;f.DEFAULT= +2;f.MODE_VALUES={"pass through":f.PASS_THROUGH,copy:f.COPY,low:f.LOW,high:f.HIGH,reuse:f.REUSE,"default":f.DEFAULT};f.getTexturesContainer=function(){return gl.textures};f.loadTexture=function(a,c){c=c||{};var b=a;"http://"==b.substr(0,7)&&e.proxy&&(b=e.proxy+b.substr(7));return f.getTexturesContainer()[a]=GL.Texture.fromURL(b,c)};f.getTexture=function(a){var c=this.getTexturesContainer();if(!c)throw"Cannot load texture, container of textures not found";c=c[a];return!c&&a&&":"!=a[0]?this.loadTexture(a): +c};f.getTargetTexture=function(a,c,b){if(!a)throw"LGraphTexture.getTargetTexture expects a reference texture";var d=null;switch(b){case f.LOW:d=gl.UNSIGNED_BYTE;break;case f.HIGH:d=gl.HIGH_PRECISION_FORMAT;break;case f.REUSE:return a;default:d=a?a.type:gl.UNSIGNED_BYTE}c&&c.width==a.width&&c.height==a.height&&c.type==d||(c=new GL.Texture(a.width,a.height,{type:d,format:gl.RGBA,filter:gl.LINEAR}));return c};f.getTextureType=function(a,c){var b=c?c.type:gl.UNSIGNED_BYTE;switch(a){case f.HIGH:b=gl.HIGH_PRECISION_FORMAT; +break;case f.LOW:b=gl.UNSIGNED_BYTE}return b};f.getWhiteTexture=function(){return this._white_texture?this._white_texture:this._white_texture=GL.Texture.fromMemory(1,1,[255,255,255,255],{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})};f.getNoiseTexture=function(){if(this._noise_texture)return this._noise_texture;for(var a=new Uint8Array(1048576),c=0;1048576>c;++c)a[c]=255*Math.random();return this._noise_texture=a=GL.Texture.fromMemory(512,512,a,{format:gl.RGBA,wrap:gl.REPEAT,filter:gl.NEAREST})}; +f.prototype.onDropFile=function(a,c,b){if(a){var d=null;"string"==typeof a?d=GL.Texture.fromURL(a):-1!=c.toLowerCase().indexOf(".dds")?d=GL.Texture.fromDDSInMemory(a):(a=new Blob([b]),a=URL.createObjectURL(a),d=GL.Texture.fromURL(a));this._drop_texture=d;this.properties.name=c}else this._drop_texture=null,this.properties.name=""};f.prototype.getExtraMenuOptions=function(a){var c=this;if(this._drop_texture)return[{content:"Clear",callback:function(){c._drop_texture=null;c.properties.name=""}}]};f.prototype.onExecute= +function(){var a=null;this.isOutputConnected(1)&&(a=this.getInputData(0));!a&&this._drop_texture&&(a=this._drop_texture);!a&&this.properties.name&&(a=f.getTexture(this.properties.name));if(a){this._last_tex=a;!1===this.properties.filter?a.setParameter(gl.TEXTURE_MAG_FILTER,gl.NEAREST):a.setParameter(gl.TEXTURE_MAG_FILTER,gl.LINEAR);this.setOutputData(0,a);for(var c=1;c=this.size[1]))if(this._drop_texture&&a.webgl)a.drawImage(this._drop_texture,0,0,this.size[0],this.size[1]);else{if(this._last_preview_tex!=this._last_tex)if(a.webgl)this._canvas=this._last_tex;else{var c=f.generateLowResTexturePreview(this._last_tex);if(!c)return;this._last_preview_tex= +this._last_tex;this._canvas=cloneCanvas(c)}this._canvas&&(a.save(),a.webgl||(a.translate(0,this.size[1]),a.scale(1,-1)),a.drawImage(this._canvas,0,0,this.size[0],this.size[1]),a.restore())}};f.generateLowResTexturePreview=function(a){if(!a)return null;var c=f.image_preview_size,b=a;if(a.format==gl.DEPTH_COMPONENT)return null;if(a.width>c||a.height>c)b=this._preview_temp_tex,this._preview_temp_tex||(this._preview_temp_tex=b=new GL.Texture(c,c,{minFilter:gl.NEAREST})),a.copyTo(b);a=this._preview_canvas; +a||(this._preview_canvas=a=createCanvas(c,c));b&&b.toCanvas(a);return a};f.prototype.getResources=function(a){a[this.properties.name]=GL.Texture;return a};f.prototype.onGetInputs=function(){return[["in","Texture"]]};f.prototype.onGetOutputs=function(){return[["width","number"],["height","number"],["aspect","number"]]};f.replaceCode=function(a,c){return a.replace(/\{\{[a-zA-Z0-9_]*\}\}/g,function(a){a=a.replace(/[\{\}]/g,"");return c[a]||""})};e.registerNodeType("texture/texture",f);var q=function(){this.addInput("Texture", +"Texture");this.properties={flipY:!1};this.size=[f.image_preview_size,f.image_preview_size]};q.title="Preview";q.desc="Show a texture in the graph canvas";q.allow_preview=!1;q.prototype.onDrawBackground=function(a){if(!this.flags.collapsed&&(a.webgl||q.allow_preview)){var c=this.getInputData(0);if(c){var b=null,b=!c.handle&&a.webgl?c:f.generateLowResTexturePreview(c);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()}}}; +e.registerNodeType("texture/preview",q);var p=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={name:""}};p.title="Save";p.desc="Save a texture in the repository";p.prototype.getPreviewTexture=function(){return this._texture};p.prototype.onExecute=function(){var a=this.getInputData(0);a&&(this.properties.name&&(f.storeTexture?f.storeTexture(this.properties.name,a):f.getTexturesContainer()[this.properties.name]=a),this._texture=a,this.setOutputData(0,a))}; +e.registerNodeType("texture/save",p);var s=function(){this.addInput("Texture","Texture");this.addInput("TextureB","Texture");this.addInput("value","number");this.addOutput("Texture","Texture");this.help="

pixelcode must be vec3, uvcode must be vec2, is optional

\t\t\t

uv: tex. coords

color: texture colorB: textureB

time: scene time value: input value

For multiline you must type: result = ...

"; +this.properties={value:1,pixelcode:"color + colorB * value",uvcode:"",precision:f.DEFAULT};this.has_error=!1};s.widgets_info={uvcode:{widget:"code"},pixelcode:{widget:"code"},precision:{widget:"combo",values:f.MODE_VALUES}};s.title="Operation";s.desc="Texture shader operation";s.prototype.getExtraMenuOptions=function(a){var c=this;return[{content:c.properties.show?"Hide Texture":"Show Texture",callback:function(){c.properties.show=!c.properties.show}}]};s.prototype.onPropertyChanged=function(){this.has_error= +!1};s.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())};s.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 c=this.getInputData(1);if(this.properties.uvcode||this.properties.pixelcode){var b=512,d=512;a?(b=a.width,d=a.height):c&& +(b=c.width,d=c.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(b,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 g="";this.properties.pixelcode&&(g="result = "+this.properties.pixelcode,-1!=this.properties.pixelcode.indexOf(";")&&(g=this.properties.pixelcode)); +var k=this._shader;if(!(this.has_error||k&&this._shader_code==e+"|"+g)){var h=f.replaceCode(s.pixel_shader,{UV_CODE:e,PIXEL_CODE:g});try{k=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,h),this.boxcolor="#00FF00"}catch(n){GL.Shader.dumpErrorToConsole(n,Shader.SCREEN_VERTEX_SHADER,h);this.boxcolor="#FF0000";this.has_error=!0;return}this._shader=k;this._shader_code=e+"|"+g}if(this._shader){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);c&&c.bind(1);var e=Mesh.getScreenQuad();k.uniforms({u_texture:0,u_textureB:1,value:l,texSize:[b,d],time:m}).draw(e)});this.setOutputData(0,this._tex)}}}};s.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\t{{UV_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\t{{PIXEL_CODE}};\n\t\t\t\tgl_FragColor = vec4(result, alpha);\n\t\t\t}\n\t\t\t"; +e.registerNodeType("texture/operation",s);var l=function(){this.addOutput("out","Texture");this.properties={code:"",u_value:1,u_color:[1,1,1,1],width:512,height:512,precision:f.DEFAULT};this.properties.code="//time: time in seconds\n//texSize: vec2 with res\nuniform float u_value;\nuniform vec4 u_color;\n\nvoid main() {\n vec2 uv = v_coord;\n vec3 color = vec3(0.0);\n\t//your code here\n\tcolor.xy=uv;\n\ngl_FragColor = vec4(color, 1.0);\n}\n";this._uniforms={u_value:1,u_color:vec4.create(),in_texture:0, +texSize:vec2.create(),time:0}};l.title="Shader";l.desc="Texture shader";l.widgets_info={code:{type:"code"},precision:{widget:"combo",values:f.MODE_VALUES}};l.prototype.onPropertyChanged=function(a,c){if("code"==a){var b=this.getShader();if(b){var d=b.uniformInfo;if(this.inputs)for(var e={},f=0;f lumaMax))\n\t\t\t\t\tcolor = vec4(rgbA, 1.0);\n\t\t\t\telse\n\t\t\t\t\tcolor = vec4(rgbB, 1.0);\n\t\t\t\tif(u_igamma != 1.0)\n\t\t\t\t\tcolor.xyz = pow( color.xyz, vec3(u_igamma) );\n\t\t\t\treturn color;\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = applyFXAA( u_texture, v_coord * uViewportSize) ;\n\t\t\t}\n\t\t\t"; +w.gamma_pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform float u_igamma;\n\t\t\tvoid main() {\n\t\t\t\tvec4 color = texture2D( u_texture, v_coord);\n\t\t\t\tcolor.xyz = pow(color.xyz, vec3(u_igamma) );\n\t\t\t gl_FragColor = color;\n\t\t\t}\n\t\t\t";e.registerNodeType("texture/toviewport",w);p=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={size:0,generate_mipmaps:!1, +precision:f.DEFAULT}};p.title="Copy";p.desc="Copy Texture";p.widgets_info={size:{widget:"combo",values:[0,32,64,128,256,512,1024,2048]},precision:{widget:"combo",values:f.MODE_VALUES}};p.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)){if(a){var c=a.width,b=a.height;0!=this.properties.size&&(b=c=this.properties.size);var d=this._temp_texture,e=a.type;this.properties.precision===f.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===f.HIGH&& +(e=gl.HIGH_PRECISION_FORMAT);d&&d.width==c&&d.height==b&&d.type==e||(d=gl.LINEAR,this.properties.generate_mipmaps&&isPowerOfTwo(c)&&isPowerOfTwo(b)&&(d=gl.LINEAR_MIPMAP_LINEAR),this._temp_texture=new GL.Texture(c,b,{type:e,format:gl.RGBA,minFilter:d,magFilter:gl.LINEAR}));a.copyTo(this._temp_texture);this.properties.generate_mipmaps&&(this._temp_texture.bind(0),gl.generateMipmap(this._temp_texture.texture_type),this._temp_texture.unbind(0))}this.setOutputData(0,this._temp_texture)}};e.registerNodeType("texture/copy", +p);var y=function(){this.addInput("Texture","Texture");this.addOutput("","Texture");this.properties={iterations:1,generate_mipmaps:!1,precision:f.DEFAULT}};y.title="Downsample";y.desc="Downsample Texture";y.widgets_info={iterations:{type:"number",step:1,precision:0,min:0},precision:{widget:"combo",values:f.MODE_VALUES}};y.prototype.onExecute=function(){var a=this.getInputData(0);if((a||this._temp_texture)&&this.isOutputConnected(0)&&a&&a.texture_type===GL.TEXTURE_2D)if(1>this.properties.iterations)this.setOutputData(0, +a);else{var c=y._shader;c||(y._shader=c=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,y.pixel_shader));var b=a.width|0,d=a.height|0,e=a.type;this.properties.precision===f.LOW?e=gl.UNSIGNED_BYTE:this.properties.precision===f.HIGH&&(e=gl.HIGH_PRECISION_FORMAT);var g=this.properties.iterations||1,k=a,h=null,n=[],a={type:e,format:a.format},e=vec2.create(),l={u_offset:e};this._texture&&GL.Texture.releaseTemporary(this._texture);for(var m=0;m>1||0;d=d>>1||0;h=GL.Texture.getTemporary(b, +d,a);n.push(h);k.setParameter(GL.TEXTURE_MAG_FILTER,GL.NEAREST);k.copyTo(h,c,l);if(1==b&&1==d)break;k=h}this._texture=n.pop();for(m=0;md;d++)this.isOutputConnected(d)? +(this._channels[d]&&this._channels[d].width==a.width&&this._channels[d].height==a.height&&this._channels[d].type==a.type&&this._channels[d].format==c||(this._channels[d]=new GL.Texture(a.width,a.height,{type:a.type,format:c,filter:gl.LINEAR})),b++):this._channels[d]=null;if(b){gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);for(var e=Mesh.getScreenQuad(),g=B._shader,f=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]],d=0;4>d;d++)this._channels[d]&&(this._channels[d].drawTo(function(){a.bind(0);g.uniforms({u_texture:0, +u_mask:f[d]}).draw(e)}),this.setOutputData(d,this._channels[d]))}}};B.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec4 u_mask;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = vec4( vec3( length( texture2D(u_texture, v_coord) * u_mask )), 1.0 );\n\t\t\t}\n\t\t\t";e.registerNodeType("texture/textureChannels",B);var k=function(){this.addInput("R","Texture");this.addInput("G","Texture");this.addInput("B", +"Texture");this.addInput("A","Texture");this.addOutput("Texture","Texture");this.properties={precision:f.DEFAULT,R:1,G:1,B:1,A:1};this._color=vec4.create();this._uniforms={u_textureR:0,u_textureG:1,u_textureB:2,u_textureA:3,u_color:this._color}};k.title="Channels to Texture";k.desc="Split texture channels";k.widgets_info={precision:{widget:"combo",values:f.MODE_VALUES}};k.prototype.onExecute=function(){var a=f.getWhiteTexture(),c=this.getInputData(0)||a,b=this.getInputData(1)||a,d=this.getInputData(2)|| +a,e=this.getInputData(3)||a;gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var g=Mesh.getScreenQuad();k._shader||(k._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,k.pixel_shader));var h=k._shader,a=Math.max(c.width,b.width,d.width,e.width),n=Math.max(c.height,b.height,d.height,e.height),l=this.properties.precision==f.HIGH?f.HIGH_PRECISION_FORMAT:gl.UNSIGNED_BYTE;this._texture&&this._texture.width==a&&this._texture.height==n&&this._texture.type==l||(this._texture=new GL.Texture(a,n,{type:l,format:gl.RGBA, +filter:gl.LINEAR}));a=this._color;a[0]=this.properties.R;a[1]=this.properties.G;a[2]=this.properties.B;a[3]=this.properties.A;var m=this._uniforms;this._texture.drawTo(function(){c.bind(0);b.bind(1);d.bind(2);e.bind(3);h.uniforms(m).draw(g)});this.setOutputData(0,this._texture)};k.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_textureR;\n\t\t\tuniform sampler2D u_textureG;\n\t\t\tuniform sampler2D u_textureB;\n\t\t\tuniform sampler2D u_textureA;\n\t\t\tuniform vec4 u_color;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t gl_FragColor = u_color * vec4( \t\t\t\t\t\ttexture2D(u_textureR, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureG, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureB, v_coord).r,\t\t\t\t\t\ttexture2D(u_textureA, v_coord).r);\n\t\t\t}\n\t\t\t"; +e.registerNodeType("texture/channelsTexture",k);p=function(){this.addOutput("Texture","Texture");this._tex_color=vec4.create();this.properties={color:vec4.create(),precision:f.DEFAULT}};p.title="Color";p.desc="Generates a 1x1 texture with a constant color";p.widgets_info={precision:{widget:"combo",values:f.MODE_VALUES}};p.prototype.onDrawBackground=function(a){var c=this.properties.color;a.fillStyle="rgb("+Math.floor(255*Math.clamp(c[0],0,1))+","+Math.floor(255*Math.clamp(c[1],0,1))+","+Math.floor(255* +Math.clamp(c[2],0,1))+")";this.flags.collapsed?this.boxcolor=a.fillStyle:a.fillRect(0,0,this.size[0],this.size[1])};p.prototype.onExecute=function(){var a=this.properties.precision==f.HIGH?f.HIGH_PRECISION_FORMAT:gl.UNSIGNED_BYTE;this._tex&&this._tex.type==a||(this._tex=new GL.Texture(1,1,{format:gl.RGBA,type:a,minFilter:gl.NEAREST}));a=this.properties.color;if(this.inputs)for(var c=0;c 0.5 ? 1.0 : 0.0, diff.y > 0.5 ? 1.0 : 0.0, diff.z > 0.5 ? 1.0 : 0.0, center.a );\n\t\t\t}\n\t\t\t"; +e.registerNodeType("texture/edges",a);var c=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}};c.title="Depth Range";c.desc="Generates a texture with a depth range";c.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 e=this.properties.range;this.isInputConnected(2)&& +(e=this.getInputData(2),this.properties.range=e);d.u_distance=b;d.u_range=e;gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var g=Mesh.getScreenQuad();c._shader||(c._shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,c.pixel_shader),c._shader_onlydepth=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,c.pixel_shader,{ONLY_DEPTH:""}));var f=this.properties.only_depth?c._shader_onlydepth:c._shader,b=null,b=a.near_far_planes?a.near_far_planes:window.LS&&LS.Renderer._main_camera?LS.Renderer._main_camera._uniforms.u_camera_planes: +[0.1,1E3];d.u_camera_planes=b;this._temp_texture.drawTo(function(){a.bind(0);f.uniforms(d).draw(g)});this._temp_texture.near_far_planes=b;this.setOutputData(0,this._temp_texture)}}};c.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_distance;\n\t\t\tuniform float u_range;\n\t\t\t\n\t\t\tfloat LinearDepth()\n\t\t\t{\n\t\t\t\tfloat zNear = u_camera_planes.x;\n\t\t\t\tfloat zFar = u_camera_planes.y;\n\t\t\t\tfloat depth = texture2D(u_texture, v_coord).x;\n\t\t\t\tdepth = depth * 2.0 - 1.0;\n\t\t\t\treturn zNear * (depth + 1.0) / (zFar + zNear - depth * (zFar - zNear));\n\t\t\t}\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tfloat depth = LinearDepth();\n\t\t\t\t#ifdef ONLY_DEPTH\n\t\t\t\t gl_FragColor = vec4(depth);\n\t\t\t\t#else\n\t\t\t\t\tfloat diff = abs(depth * u_camera_planes.y - u_distance);\n\t\t\t\t\tfloat dof = 1.0;\n\t\t\t\t\tif(diff <= u_range)\n\t\t\t\t\t\tdof = diff / u_range;\n\t\t\t\t gl_FragColor = vec4(dof);\n\t\t\t\t#endif\n\t\t\t}\n\t\t\t"; +e.registerNodeType("texture/depth_range",c);var d=function(){this.addInput("Texture","Texture");this.addInput("Iterations","number");this.addInput("Intensity","number");this.addOutput("Blurred","Texture");this.properties={intensity:1,iterations:1,preserve_aspect:!1,scale:[1,1],precision:f.DEFAULT}};d.title="Blur";d.desc="Blur a texture";d.widgets_info={precision:{widget:"combo",values:f.MODE_VALUES}};d.max_iterations=20;d.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var c= +this._final_texture;c&&c.width==a.width&&c.height==a.height&&c.type==a.type||(c=this._final_texture=new GL.Texture(a.width,a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));var b=this.properties.iterations;this.isInputConnected(1)&&(b=this.getInputData(1),this.properties.iterations=b);b=Math.min(Math.floor(b),d.max_iterations);if(0==b)this.setOutputData(0,a);else{var g=this.properties.intensity;this.isInputConnected(2)&&(g=this.getInputData(2),this.properties.intensity=g);var f=e.camera_aspect; +f||void 0===window.gl||(f=gl.canvas.height/gl.canvas.width);f||(f=1);var f=this.properties.preserve_aspect?f:1,k=this.properties.scale||[1,1];a.applyBlur(f*k[0],k[1],g,c);for(a=1;a>=1;1<(b|0)&&(b>>=1);if(2>c)break;n=k[s]=GL.Texture.getTemporary(c,b,d);p[0]=1/l.width;p[1]=1/l.height;l.blit(n,h.uniforms(g));l=n}this.isOutputConnected(2)&&(c=this._average_texture,c&&c.type==a.type&&c.format==a.format||(c=this._average_texture=new GL.Texture(1,1,{type:a.type,format:a.format,filter:gl.LINEAR})),p[0]=1/l.width,p[1]=1/l.height,g.u_intensity= +q,g.u_delta=1,l.blit(c,h.uniforms(g)),this.setOutputData(2,c));gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);g.u_intensity=this.getInputOrProperty("persistence");g.u_delta=0.5;for(s-=2;0<=s;s--)n=k[s],k[s]=null,p[0]=1/l.width,p[1]=1/l.height,l.blit(n,h.uniforms(g)),GL.Texture.releaseTemporary(l),l=n;gl.disable(gl.BLEND);this.isOutputConnected(1)&&(k=this._glow_texture,k&&k.width==a.width&&k.height==a.height&&k.type==e&&k.format==a.format||(k=this._glow_texture=new GL.Texture(a.width,a.height,{type:e, +format:a.format,filter:gl.LINEAR})),l.blit(k),this.setOutputData(1,k));if(this.isOutputConnected(0)){k=this._final_texture;k&&k.width==a.width&&k.height==a.height&&k.type==e&&k.format==a.format||(k=this._final_texture=new GL.Texture(a.width,a.height,{type:e,format:a.format,filter:gl.LINEAR}));var u=this.getInputData(1),w=this.getInputOrProperty("dirt_factor");g.u_intensity=q;h=u?r._dirt_final_shader:r._final_shader;h||(h=u?r._dirt_final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,r.final_pixel_shader, +{USE_DIRT:""}):r._final_shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,r.final_pixel_shader));k.drawTo(function(){a.bind(0);l.bind(1);u&&(h.setUniform("u_dirt_factor",w),h.setUniform("u_dirt_texture",u.bind(2)));h.toViewport(g)});this.setOutputData(0,k)}GL.Texture.releaseTemporary(l)}};r.cut_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform float u_threshold;\n\t\tvoid main() {\n\t\t\tgl_FragColor = max( texture2D( u_texture, v_coord ) - vec4( u_threshold ), vec4(0.0) );\n\t\t}"; +r.scale_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_texture, uv + o.xy ) + texture2D( u_texture, uv + o.zy) + texture2D( u_texture, uv + o.xw) + texture2D( u_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tgl_FragColor = u_intensity * sampleBox( v_coord );\n\t\t}"; +r.final_pixel_shader="precision highp float;\n\t\tvarying vec2 v_coord;\n\t\tuniform sampler2D u_texture;\n\t\tuniform sampler2D u_glow_texture;\n\t\t#ifdef USE_DIRT\n\t\t\tuniform sampler2D u_dirt_texture;\n\t\t#endif\n\t\tuniform vec2 u_texel_size;\n\t\tuniform float u_delta;\n\t\tuniform float u_intensity;\n\t\tuniform float u_dirt_factor;\n\t\t\n\t\tvec4 sampleBox(vec2 uv) {\n\t\t\tvec4 o = u_texel_size.xyxy * vec2(-u_delta, u_delta).xxyy;\n\t\t\tvec4 s = texture2D( u_glow_texture, uv + o.xy ) + texture2D( u_glow_texture, uv + o.zy) + texture2D( u_glow_texture, uv + o.xw) + texture2D( u_glow_texture, uv + o.zw);\n\t\t\treturn s * 0.25;\n\t\t}\n\t\tvoid main() {\n\t\t\tvec4 glow = sampleBox( v_coord );\n\t\t\t#ifdef USE_DIRT\n\t\t\t\tglow = mix( glow, glow * texture2D( u_dirt_texture, v_coord ), u_dirt_factor );\n\t\t\t#endif\n\t\t\tgl_FragColor = texture2D( u_texture, v_coord ) + u_intensity * glow;\n\t\t}"; +e.registerNodeType("texture/glow",r);var m=function(){this.addInput("Texture","Texture");this.addOutput("Filtered","Texture");this.properties={intensity:1,radius:5}};m.title="Kuwahara Filter";m.desc="Filters a texture giving an artistic oil canvas painting";m.max_radius=10;m._shaders=[];m.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var c=this._temp_texture;c&&c.width==a.width&&c.height==a.height&&c.type==a.type||(this._temp_texture=new GL.Texture(a.width, +a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));c=this.properties.radius;c=Math.min(Math.floor(c),m.max_radius);if(0==c)this.setOutputData(0,a);else{var b=this.properties.intensity,d=e.camera_aspect;d||void 0===window.gl||(d=gl.canvas.height/gl.canvas.width);d||(d=1);d=this.properties.preserve_aspect?d:1;m._shaders[c]||(m._shaders[c]=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,m.pixel_shader,{RADIUS:c.toFixed(0)}));var g=m._shaders[c],f=GL.Mesh.getScreenQuad();a.bind(0);this._temp_texture.drawTo(function(){g.uniforms({u_texture:0, +u_intensity:b,u_resolution:[a.width,a.height],u_iResolution:[1/a.width,1/a.height]}).draw(f)});this.setOutputData(0,this._temp_texture)}}};m.pixel_shader="\n\tprecision highp float;\n\tvarying vec2 v_coord;\n\tuniform sampler2D u_texture;\n\tuniform float u_intensity;\n\tuniform vec2 u_resolution;\n\tuniform vec2 u_iResolution;\n\t#ifndef RADIUS\n\t\t#define RADIUS 7\n\t#endif\n\tvoid main() {\n\t\n\t\tconst int radius = RADIUS;\n\t\tvec2 fragCoord = v_coord;\n\t\tvec2 src_size = u_iResolution;\n\t\tvec2 uv = v_coord;\n\t\tfloat n = float((radius + 1) * (radius + 1));\n\t\tint i;\n\t\tint j;\n\t\tvec3 m0 = vec3(0.0); vec3 m1 = vec3(0.0); vec3 m2 = vec3(0.0); vec3 m3 = vec3(0.0);\n\t\tvec3 s0 = vec3(0.0); vec3 s1 = vec3(0.0); vec3 s2 = vec3(0.0); vec3 s3 = vec3(0.0);\n\t\tvec3 c;\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm0 += c;\n\t\t\t\ts0 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = -radius; j <= 0; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm1 += c;\n\t\t\t\ts1 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = 0; i <= radius; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm2 += c;\n\t\t\t\ts2 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfor (int j = 0; j <= radius; ++j) {\n\t\t\tfor (int i = -radius; i <= 0; ++i) {\n\t\t\t\tc = texture2D(u_texture, uv + vec2(i,j) * src_size).rgb;\n\t\t\t\tm3 += c;\n\t\t\t\ts3 += c * c;\n\t\t\t}\n\t\t}\n\t\t\n\t\tfloat min_sigma2 = 1e+2;\n\t\tm0 /= n;\n\t\ts0 = abs(s0 / n - m0 * m0);\n\t\t\n\t\tfloat sigma2 = s0.r + s0.g + s0.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m0, 1.0);\n\t\t}\n\t\t\n\t\tm1 /= n;\n\t\ts1 = abs(s1 / n - m1 * m1);\n\t\t\n\t\tsigma2 = s1.r + s1.g + s1.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m1, 1.0);\n\t\t}\n\t\t\n\t\tm2 /= n;\n\t\ts2 = abs(s2 / n - m2 * m2);\n\t\t\n\t\tsigma2 = s2.r + s2.g + s2.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m2, 1.0);\n\t\t}\n\t\t\n\t\tm3 /= n;\n\t\ts3 = abs(s3 / n - m3 * m3);\n\t\t\n\t\tsigma2 = s3.r + s3.g + s3.b;\n\t\tif (sigma2 < min_sigma2) {\n\t\t\tmin_sigma2 = sigma2;\n\t\t\tgl_FragColor = vec4(m3, 1.0);\n\t\t}\n\t}\n\t"; +e.registerNodeType("texture/kuwahara",m);var H=function(){this.addInput("Texture","Texture");this.addOutput("Filtered","Texture");this.properties={sigma:1.4,k:1.6,p:21.7,epsilon:79,phi:0.017}};H.title="XDoG Filter";H.desc="Filters a texture giving an artistic ink style";H.max_radius=10;H._shaders=[];H.prototype.onExecute=function(){var a=this.getInputData(0);if(a&&this.isOutputConnected(0)){var c=this._temp_texture;c&&c.width==a.width&&c.height==a.height&&c.type==a.type||(this._temp_texture=new GL.Texture(a.width, +a.height,{type:a.type,format:gl.RGBA,filter:gl.LINEAR}));H._xdog_shader||(H._xdog_shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,H.xdog_pixel_shader));var b=H._xdog_shader,d=GL.Mesh.getScreenQuad(),e=this.properties.sigma,g=this.properties.k,f=this.properties.p,k=this.properties.epsilon,h=this.properties.phi;a.bind(0);this._temp_texture.drawTo(function(){b.uniforms({src:0,sigma:e,k:g,p:f,epsilon:k,phi:h,cvsWidth:a.width,cvsHeight:a.height}).draw(d)});this.setOutputData(0,this._temp_texture)}};H.xdog_pixel_shader= "\n\tprecision highp float;\n\tuniform sampler2D src;\n\n\tuniform float cvsHeight;\n\tuniform float cvsWidth;\n\n\tuniform float sigma;\n\tuniform float k;\n\tuniform float p;\n\tuniform float epsilon;\n\tuniform float phi;\n\tvarying vec2 v_coord;\n\n\tfloat cosh(float val)\n\t{\n\t\tfloat tmp = exp(val);\n\t\tfloat cosH = (tmp + 1.0 / tmp) / 2.0;\n\t\treturn cosH;\n\t}\n\n\tfloat tanh(float val)\n\t{\n\t\tfloat tmp = exp(val);\n\t\tfloat tanH = (tmp - 1.0 / tmp) / (tmp + 1.0 / tmp);\n\t\treturn tanH;\n\t}\n\n\tfloat sinh(float val)\n\t{\n\t\tfloat tmp = exp(val);\n\t\tfloat sinH = (tmp - 1.0 / tmp) / 2.0;\n\t\treturn sinH;\n\t}\n\n\tvoid main(void){\n\t\tvec3 destColor = vec3(0.0);\n\t\tfloat tFrag = 1.0 / cvsHeight;\n\t\tfloat sFrag = 1.0 / cvsWidth;\n\t\tvec2 Frag = vec2(sFrag,tFrag);\n\t\tvec2 uv = gl_FragCoord.st;\n\t\tfloat twoSigmaESquared = 2.0 * sigma * sigma;\n\t\tfloat twoSigmaRSquared = twoSigmaESquared * k * k;\n\t\tint halfWidth = int(ceil( 1.0 * sigma * k ));\n\n\t\tconst int MAX_NUM_ITERATION = 99999;\n\t\tvec2 sum = vec2(0.0);\n\t\tvec2 norm = vec2(0.0);\n\n\t\tfor(int cnt=0;cnt (2*halfWidth+1)*(2*halfWidth+1)){break;}\n\t\t\tint i = int(cnt / (2*halfWidth+1)) - halfWidth;\n\t\t\tint j = cnt - halfWidth - int(cnt / (2*halfWidth+1)) * (2*halfWidth+1);\n\n\t\t\tfloat d = length(vec2(i,j));\n\t\t\tvec2 kernel = vec2( exp( -d * d / twoSigmaESquared ), \n\t\t\t\t\t\t\t\texp( -d * d / twoSigmaRSquared ));\n\n\t\t\tvec2 L = texture2D(src, (uv + vec2(i,j)) * Frag).xx;\n\n\t\t\tnorm += kernel;\n\t\t\tsum += kernel * L;\n\t\t}\n\n\t\tsum /= norm;\n\n\t\tfloat H = 100.0 * ((1.0 + p) * sum.x - p * sum.y);\n\t\tfloat edge = ( H > epsilon )? 1.0 : 1.0 + tanh( phi * (H - epsilon));\n\t\tdestColor = vec3(edge);\n\t\tgl_FragColor = vec4(destColor, 1.0);\n\t}"; -d.registerNodeType("texture/xDoG",H);var F=function(){this.addOutput("Webcam","Texture");this.properties={texture_name:"",facingMode:"user"};this.boxcolor="black";this.version=0};F.title="Webcam";F.desc="Webcam texture";F.is_webcam_open=!1;F.prototype.openStream=function(){function a(c){F.is_webcam_open=!1;console.log("Webcam rejected",c);b._webcam_stream=!1;b.boxcolor="red";b.trigger("stream_error")}if(navigator.getUserMedia){this._waiting_confirmation=!0;navigator.mediaDevices.getUserMedia({audio:!1, -video:{facingMode:this.properties.facingMode}}).then(this.streamReady.bind(this))["catch"](a);var b=this}};F.prototype.closeStream=function(){if(this._webcam_stream){var a=this._webcam_stream.getTracks();if(a.length)for(var b=0;b=this.size[1]||!this._video||(a.save(),a.webgl?this._video_texture&&a.drawImage(this._video_texture,0,0,this.size[0],this.size[1]):a.drawImage(this._video,0,0,this.size[0],this.size[1]),a.restore())};F.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();if(this._video&&this._video.videoWidth){var a=this._video.videoWidth,b=this._video.videoHeight,c=this._video_texture;c&&c.width==a&&c.height==b||(this._video_texture=new GL.Texture(a,b,{format:gl.RGB, -filter:gl.LINEAR}));this._video_texture.uploadImage(this._video);this._video_texture.version=++this.version;this.properties.texture_name&&(h.getTexturesContainer()[this.properties.texture_name]=this._video_texture);this.setOutputData(0,this._video_texture);for(a=1;a=this.size[1]||a.webgl&&(gl.meshes.cube||(gl.meshes.cube=GL.Mesh.cube({size:1})))};d.registerNodeType("texture/cubemap",n)}})(this); -(function(v){var d=v.LiteGraph;if("undefined"!=typeof GL){var h=function(){this.addInput("Texture","Texture");this.addInput("Aberration","number");this.addInput("Distortion","number");this.addInput("Blur","number");this.addOutput("Texture","Texture");this.properties={aberration:1,distortion:1,blur:1,precision:LGraphTexture.DEFAULT};h._shader||(h._shader=new GL.Shader(GL.Shader.SCREEN_VERTEX_SHADER,h.pixel_shader),h._texture=new GL.Texture(3,1,{format:gl.RGB,wrap:gl.CLAMP_TO_EDGE,magFilter:gl.LINEAR, -minFilter:gl.LINEAR,pixel_data:[255,0,0,0,255,0,0,0,255]}))};h.title="Lens";h.desc="Camera Lens distortion";h.widgets_info={precision:{widget:"combo",values:LGraphTexture.MODE_VALUES}};h.prototype.onExecute=function(){var d=this.getInputData(0);if(this.properties.precision===LGraphTexture.PASS_THROUGH)this.setOutputData(0,d);else if(d){this._tex=LGraphTexture.getTargetTexture(d,this._tex,this.properties.precision);var n=this.properties.aberration;this.isInputConnected(1)&&(n=this.getInputData(1), -this.properties.aberration=n);var q=this.properties.distortion;this.isInputConnected(2)&&(q=this.getInputData(2),this.properties.distortion=q);var t=this.properties.blur;this.isInputConnected(3)&&(t=this.getInputData(3),this.properties.blur=t);gl.disable(gl.BLEND);gl.disable(gl.DEPTH_TEST);var v=Mesh.getScreenQuad(),c=h._shader;this._tex.drawTo(function(){d.bind(0);c.uniforms({u_texture:0,u_aberration:n,u_distortion:q,u_blur:t}).draw(v)});this.setOutputData(0,this._tex)}};h.pixel_shader="precision highp float;\n\t\t\tprecision highp float;\n\t\t\tvarying vec2 v_coord;\n\t\t\tuniform sampler2D u_texture;\n\t\t\tuniform vec2 u_camera_planes;\n\t\t\tuniform float u_aberration;\n\t\t\tuniform float u_distortion;\n\t\t\tuniform float u_blur;\n\t\t\t\n\t\t\tvoid main() {\n\t\t\t\tvec2 coord = v_coord;\n\t\t\t\tfloat dist = distance(vec2(0.5), coord);\n\t\t\t\tvec2 dist_coord = coord - vec2(0.5);\n\t\t\t\tfloat percent = 1.0 + ((0.5 - dist) / 0.5) * u_distortion;\n\t\t\t\tdist_coord *= percent;\n\t\t\t\tcoord = dist_coord + vec2(0.5);\n\t\t\t\tvec4 color = texture2D(u_texture,coord, u_blur * dist);\n\t\t\t\tcolor.r = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0+0.01*u_aberration), u_blur * dist ).r;\n\t\t\t\tcolor.b = texture2D(u_texture,vec2(0.5) + dist_coord * (1.0-0.01*u_aberration), u_blur * dist ).b;\n\t\t\t\tgl_FragColor = color;\n\t\t\t}\n\t\t\t"; -d.registerNodeType("fx/lens",h);v.LGraphFXLens=h;var q=function(){this.addInput("Texture","Texture");this.addInput("Blurred","Texture");this.addInput("Mask","Texture");this.addInput("Threshold","number");this.addOutput("Texture","Texture");this.properties={shape:"",size:10,alpha:1,threshold:1,high_precision:!1}};q.title="Bokeh";q.desc="applies an Bokeh effect";q.widgets_info={shape:{widget:"texture"}};q.prototype.onExecute=function(){var d=this.getInputData(0),h=this.getInputData(1),n=this.getInputData(2); -if(d&&n&&this.properties.shape){h||(h=d);var t=LGraphTexture.getTexture(this.properties.shape);if(t){var v=this.properties.threshold;this.isInputConnected(3)&&(v=this.getInputData(3),this.properties.threshold=v);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==d.width&&this._temp_texture.height==d.height||(this._temp_texture=new GL.Texture(d.width,d.height,{type:c,format:gl.RGBA, -filter:gl.LINEAR}));var x=q._first_shader;x||(x=q._first_shader=new GL.Shader(Shader.SCREEN_VERTEX_SHADER,q._first_pixel_shader));var k=q._second_shader;k||(k=q._second_shader=new GL.Shader(q._second_vertex_shader,q._second_pixel_shader));var m=this._points_mesh;m&&m._width==d.width&&m._height==d.height&&2==m._spacing||(m=this.createPointsMesh(d.width,d.height,2));var r=Mesh.getScreenQuad(),g=this.properties.size,p=this.properties.alpha;gl.disable(gl.DEPTH_TEST);gl.disable(gl.BLEND);this._temp_texture.drawTo(function(){d.bind(0); -h.bind(1);n.bind(2);x.uniforms({u_texture:0,u_texture_blur:1,u_mask:2,u_texsize:[d.width,d.height]}).draw(r)});this._temp_texture.drawTo(function(){gl.enable(gl.BLEND);gl.blendFunc(gl.ONE,gl.ONE);d.bind(0);t.bind(3);k.uniforms({u_texture:0,u_mask:2,u_shape:3,u_alpha:p,u_threshold:v,u_pointSize:g,u_itexsize:[1/d.width,1/d.height]}).draw(m,gl.POINTS)});this.setOutputData(0,this._temp_texture)}}else this.setOutputData(0,d)};q.prototype.createPointsMesh=function(d,h,n){for(var q=Math.round(d/n),t=Math.round(h/ -n),c=new Float32Array(q*t*2),v=-1,k=2/d*n,m=2/h*n,r=0;r=this.size[1]||!this._video||(a.save(),a.webgl?this._video_texture&&a.drawImage(this._video_texture,0,0,this.size[0],this.size[1]):a.drawImage(this._video,0,0,this.size[0],this.size[1]),a.restore())};E.prototype.onExecute=function(){null!=this._webcam_stream||this._waiting_confirmation||this.openStream();if(this._video&&this._video.videoWidth){var a=this._video.videoWidth,c=this._video.videoHeight,b=this._video_texture;b&&b.width==a&&b.height==c||(this._video_texture=new GL.Texture(a,c,{format:gl.RGB, +filter:gl.LINEAR}));this._video_texture.uploadImage(this._video);this._video_texture.version=++this.version;this.properties.texture_name&&(f.getTexturesContainer()[this.properties.texture_name]=this._video_texture);this.setOutputData(0,this._video_texture);for(a=1;a=d.NOTEON||f<=d.NOTEOFF)this.channel= -c&15};Object.defineProperty(d.prototype,"velocity",{get:function(){return this.cmd==d.NOTEON?this.data[2]:-1},set:function(c){this.data[2]=c},enumerable:!0});d.notes="A A# B C C# D D# E F F# G G#".split(" ");d.note_to_index={A:0,"A#":1,B:2,C:3,"C#":4,D:5,"D#":6,E:7,F:8,"F#":9,G:10,"G#":11};Object.defineProperty(d.prototype,"note",{get:function(){return this.cmd!=d.NOTEON?-1:d.toNoteString(this.data[1],!0)},set:function(c){throw"notes cannot be assigned this way, must modify the data[1]";},enumerable:!0}); -Object.defineProperty(d.prototype,"octave",{get:function(){return this.cmd!=d.NOTEON?-1:Math.floor((this.data[1]-24)/12+1)},set:function(c){throw"octave cannot be assigned this way, must modify the data[1]";},enumerable:!0});d.prototype.getPitch=function(){return 440*Math.pow(2,(this.data[1]-69)/12)};d.computePitch=function(c){return 440*Math.pow(2,(c-69)/12)};d.prototype.getCC=function(){return this.data[1]};d.prototype.getCCValue=function(){return this.data[2]};d.prototype.getPitchBend=function(){return this.data[1]+ -(this.data[2]<<7)-8192};d.computePitchBend=function(c,d){return c+(d<<7)-8192};d.prototype.setCommandFromString=function(c){this.cmd=d.computeCommandFromString(c)};d.computeCommandFromString=function(c){if(!c)return 0;if(c&&c.constructor===Number)return c;c=c.toUpperCase();switch(c){case "NOTE ON":case "NOTEON":return d.NOTEON;case "NOTE OFF":case "NOTEOFF":return d.NOTEON;case "KEY PRESSURE":case "KEYPRESSURE":return d.KEYPRESSURE;case "CONTROLLER CHANGE":case "CONTROLLERCHANGE":case "CC":return d.CONTROLLERCHANGE; -case "PROGRAM CHANGE":case "PROGRAMCHANGE":case "PC":return d.PROGRAMCHANGE;case "CHANNEL PRESSURE":case "CHANNELPRESSURE":return d.CHANNELPRESSURE;case "PITCH BEND":case "PITCHBEND":return d.PITCHBEND;case "TIME TICK":case "TIMETICK":return d.TIMETICK;default:return Number(c)}};d.toNoteString=function(c,f){c=Math.round(c);var h,a=Math.floor((c-24)/12+1);h=(c-21)%12;0>h&&(h=12+h);return d.notes[h]+(f?"":a)};d.NoteStringToPitch=function(c){c=c.toUpperCase();var f=c[0],h=4;"#"==c[1]?(f+="#",2this.properties.max_value)return;this.trigger("on_midi",f)}};m.registerNodeType("midi/filter",f);y.title="MIDIEvent";y.desc="Create a MIDI Event";y.color="#243";y.prototype.onAction=function(c,f){"assign"== -c?(this.properties.channel=f.channel,this.properties.cmd=f.cmd,this.properties.value1=f.data[1],this.properties.value2=f.data[2],f.cmd==d.NOTEON?this.gate=!0:f.cmd==d.NOTEOFF&&(this.gate=!1)):(f=this.midi_event,f.channel=this.properties.channel,this.properties.cmd&&this.properties.cmd.constructor===String?f.setCommandFromString(this.properties.cmd):f.cmd=this.properties.cmd,f.data[0]=f.cmd|f.channel,f.data[1]=Number(this.properties.value1),f.data[2]=Number(this.properties.value2),this.trigger("on_midi", -f))};y.prototype.onExecute=function(){var c=this.properties;if(this.inputs)for(var f=0;fc;++c)this.valid_notes[c]=-1!=this.notes_pitches.indexOf(c);for(c=0;12>c;++c)if(this.valid_notes[c])this.offset_notes[c]=0;else for(var d= -1;12>d;++d){if(this.valid_notes[(c-d)%12]){this.offset_notes[c]=-d;break}if(this.valid_notes[(c+d)%12]){this.offset_notes[c]=d;break}}};c.prototype.onAction=function(c,f){f&&f.constructor===d&&(f.data[0]==d.NOTEON||f.data[0]==d.NOTEOFF?(this.midi_event=new d,this.midi_event.setup(f.data),this.midi_event.data[1]+=this.offset_notes[d.note_to_index[f.note]],this.trigger("out",this.midi_event)):this.trigger("out",f))};c.prototype.onExecute=function(){var c=this.getInputData(1);null!=c&&c!=this._current_scale&& -this.processScale(c)};m.registerNodeType("midi/quantize",c);x.title="MIDI Play";x.desc="Plays a MIDI note";x.color="#243";x.prototype.onAction=function(c,f){if(f&&f.constructor===d){if(this.instrument&&f.data[0]==d.NOTEON){var h=f.note;if(!h||"undefined"==h||h.constructor!==String)return;this.instrument.play(h,f.octave,this.properties.duration,this.properties.volume)}this.trigger("note",f)}};x.prototype.onExecute=function(){var c=this.getInputData(1);null!=c&&(this.properties.volume=c);c=this.getInputData(2); -null!=c&&(this.properties.duration=c)};m.registerNodeType("midi/play",x);k.title="MIDI Keys";k.desc="Keyboard to play notes";k.color="#243";k.keys=[{x:0,w:1,h:1,t:0},{x:0.75,w:0.5,h:0.6,t:1},{x:1,w:1,h:1,t:0},{x:1.75,w:0.5,h:0.6,t:1},{x:2,w:1,h:1,t:0},{x:2.75,w:0.5,h:0.6,t:1},{x:3,w:1,h:1,t:0},{x:4,w:1,h:1,t:0},{x:4.75,w:0.5,h:0.6,t:1},{x:5,w:1,h:1,t:0},{x:5.75,w:0.5,h:0.6,t:1},{x:6,w:1,h:1,t:0}];k.prototype.onDrawForeground=function(c){if(!this.flags.collapsed){var d=12*this.properties.num_octaves; -this.keys.length=d;var f=this.size[0]/(7*this.properties.num_octaves),a=this.size[1];c.globalAlpha=1;for(var b=0;2>b;b++)for(var e=0;eh+l||c[1]>e))return b}}return-1};k.prototype.onAction=function(c,f){if("reset"==c)for(var h=0;hf[1])){var h=this.getKeyIndex(f);this.keys[h]=!0;this._last_key= -h;var h=12*(this.properties.start_octave-1)+29+h,a=new d;a.setup([d.NOTEON,h,100]);this.trigger("note",a);return!0}};k.prototype.onMouseMove=function(c,f){if(!(0>f[1]||-1==this._last_key)){this.setDirtyCanvas(!0);var h=this.getKeyIndex(f);if(this._last_key==h)return!0;this.keys[this._last_key]=!1;var a=12*(this.properties.start_octave-1)+29+this._last_key,b=new d;b.setup([d.NOTEOFF,a,100]);this.trigger("note",b);this.keys[h]=!0;a=12*(this.properties.start_octave-1)+29+h;b=new d;b.setup([d.NOTEON, -a,100]);this.trigger("note",b);this._last_key=h;return!0}};k.prototype.onMouseUp=function(c,f){if(!(0>f[1])){var h=this.getKeyIndex(f);this.keys[h]=!1;this._last_key=-1;var h=12*(this.properties.start_octave-1)+29+h,a=new d;a.setup([d.NOTEOFF,h,100]);this.trigger("note",a);return!0}};m.registerNodeType("midi/keys",k)})(this); -(function(v){function d(){this.properties={src:"",gain:0.5,loop:!0,autoplay:!0,playbackRate:1};this._loading_audio=!1;this._audiobuffer=null;this._audionodes=[];this._last_sourcenode=null;this.addOutput("out","audio");this.addInput("gain","number");this.audionode=w.getAudioContext().createGain();this.audionode.graphnode=this;this.audionode.gain.value=this.properties.gain;this.properties.src&&this.loadSound(this.properties.src)}function h(){this.properties={gain:0.5};this._audionodes=[];this._media_stream= -null;this.addOutput("out","audio");this.addInput("gain","number");this.audionode=w.getAudioContext().createGain();this.audionode.graphnode=this;this.audionode.gain.value=this.properties.gain}function q(){this.properties={fftSize:2048,minDecibels:-100,maxDecibels:-10,smoothingTimeConstant:0.5};this.audionode=w.getAudioContext().createAnalyser();this.audionode.graphnode=this;this.audionode.fftSize=this.properties.fftSize;this.audionode.minDecibels=this.properties.minDecibels;this.audionode.maxDecibels= -this.properties.maxDecibels;this.audionode.smoothingTimeConstant=this.properties.smoothingTimeConstant;this.addInput("in","audio");this.addOutput("freqs","array");this.addOutput("samples","array");this._time_bin=this._freq_bin=null}function n(){this.properties={gain:1};this.audionode=w.getAudioContext().createGain();this.addInput("in","audio");this.addInput("gain","number");this.addOutput("out","audio")}function t(){this.properties={impulse_src:"",normalize:!0};this.audionode=w.getAudioContext().createConvolver(); -this.addInput("in","audio");this.addOutput("out","audio")}function f(){this.properties={threshold:-50,knee:40,ratio:12,reduction:-20,attack:0,release:0.25};this.audionode=w.getAudioContext().createDynamicsCompressor();this.addInput("in","audio");this.addOutput("out","audio")}function y(){this.properties={};this.audionode=w.getAudioContext().createWaveShaper();this.addInput("in","audio");this.addInput("shape","waveshape");this.addOutput("out","audio")}function B(){this.properties={gain1:0.5,gain2:0.5}; -this.audionode=w.getAudioContext().createGain();this.audionode1=w.getAudioContext().createGain();this.audionode1.gain.value=this.properties.gain1;this.audionode2=w.getAudioContext().createGain();this.audionode2.gain.value=this.properties.gain2;this.audionode1.connect(this.audionode);this.audionode2.connect(this.audionode);this.addInput("in1","audio");this.addInput("in1 gain","number");this.addInput("in2","audio");this.addInput("in2 gain","number");this.addOutput("out","audio")}function A(){this.properties= -{A:0.1,D:0.1,S:0.1,R:0.1};this.audionode=w.getAudioContext().createGain();this.audionode.gain.value=0;this.addInput("in","audio");this.addInput("gate","bool");this.addOutput("out","audio");this.gate=!1}function z(){this.properties={delayTime:0.5};this.audionode=w.getAudioContext().createDelay(10);this.audionode.delayTime.value=this.properties.delayTime;this.addInput("in","audio");this.addInput("time","number");this.addOutput("out","audio")}function c(){this.properties={frequency:350,detune:0,Q:1}; -this.addProperty("type","lowpass","enum",{values:"lowpass highpass bandpass lowshelf highshelf peaking notch allpass".split(" ")});this.audionode=w.getAudioContext().createBiquadFilter();this.addInput("in","audio");this.addOutput("out","audio")}function x(){this.properties={frequency:440,detune:0,type:"sine"};this.addProperty("type","sine","enum",{values:["sine","square","sawtooth","triangle","custom"]});this.audionode=w.getAudioContext().createOscillator();this.addOutput("out","audio")}function k(){this.properties= -{continuous:!0,mark:-1};this.addInput("data","array");this.addInput("mark","number");this.size=[300,200];this._last_buffer=null}function m(){this.properties={band:440,amplitude:1};this.addInput("freqs","array");this.addOutput("signal","number")}function r(){if(!r.default_code){var a=r.default_function.toString(),b=a.indexOf("{")+1,c=a.lastIndexOf("}");r.default_code=a.substr(b,c-b)}this.properties={code:r.default_code};a=w.getAudioContext();a.createScriptProcessor?this.audionode=a.createScriptProcessor(4096, -1,1):(console.warn("ScriptProcessorNode deprecated"),this.audionode=a.createGain());this.processCode();r._bypass_function||(r._bypass_function=this.audionode.onaudioprocess);this.addInput("in","audio");this.addOutput("out","audio")}function g(){this.audionode=w.getAudioContext().destination;this.addInput("in","audio")}var p=v.LiteGraph,w={};v.LGAudio=w;w.getAudioContext=function(){if(!this._audio_context){window.AudioContext=window.AudioContext||window.webkitAudioContext;if(!window.AudioContext)return console.error("AudioContext not supported by browser"), -null;this._audio_context=new AudioContext;this._audio_context.onmessage=function(a){console.log("msg",a)};this._audio_context.onended=function(a){console.log("ended",a)};this._audio_context.oncomplete=function(a){console.log("complete",a)}}return this._audio_context};w.connect=function(a,b){try{a.connect(b)}catch(c){console.warn("LGraphAudio:",c)}};w.disconnect=function(a,b){try{a.disconnect(b)}catch(c){console.warn("LGraphAudio:",c)}};w.changeAllAudiosConnections=function(a,b){if(a.inputs)for(var c= -0;c=this.size[0]&&(f=this.size[0]-1),a.strokeStyle="red",a.beginPath(),a.moveTo(f,d),a.lineTo(f,0),a.stroke())}};k.title="Visualization";k.desc="Audio Visualization";p.registerNodeType("audio/visualization",k);m.prototype.onExecute=function(){if(this._freqs=this.getInputData(0)){var a=this.properties.band,b=this.getInputData(1);void 0!==b&&(a=b);b=w.getAudioContext().sampleRate/this._freqs.length;b=a/b*2;b>=this._freqs.length?b=this._freqs[this._freqs.length-1]:(a=b|0, -b-=a,b=this._freqs[a]*(1-b)+this._freqs[a+1]*b);this.setOutputData(0,b/255*this.properties.amplitude)}};m.prototype.onGetInputs=function(){return[["band","number"]]};m.title="Signal";m.desc="extract the signal of some frequency";p.registerNodeType("audio/signal",m);r.prototype.onAdded=function(a){a.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback)};r["@code"]={widget:"code"};r.prototype.onStart=function(){this.audionode.onaudioprocess=this._callback};r.prototype.onStop= -function(){this.audionode.onaudioprocess=r._bypass_function};r.prototype.onPause=function(){this.audionode.onaudioprocess=r._bypass_function};r.prototype.onUnpause=function(){this.audionode.onaudioprocess=this._callback};r.prototype.onExecute=function(){};r.prototype.onRemoved=function(){this.audionode.onaudioprocess=r._bypass_function};r.prototype.processCode=function(){try{this._script=new new Function("properties",this.properties.code)(this.properties),this._old_code=this.properties.code,this._callback= -this._script.onaudioprocess}catch(a){console.error("Error in onaudioprocess code",a),this._callback=r._bypass_function,this.audionode.onaudioprocess=this._callback}};r.prototype.onPropertyChanged=function(a,b){"code"==a&&(this.properties.code=b,this.processCode(),this.graph&&this.graph.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback))};r.default_function=function(){this.onaudioprocess=function(a){var b=a.inputBuffer;a=a.outputBuffer;for(var c=0;c=e.NOTEON||f<=e.NOTEOFF)this.channel= +b&15};Object.defineProperty(e.prototype,"velocity",{get:function(){return this.cmd==e.NOTEON?this.data[2]:-1},set:function(b){this.data[2]=b},enumerable:!0});e.notes="A A# B C C# D D# E F F# G G#".split(" ");e.note_to_index={A:0,"A#":1,B:2,C:3,"C#":4,D:5,"D#":6,E:7,F:8,"F#":9,G:10,"G#":11};Object.defineProperty(e.prototype,"note",{get:function(){return this.cmd!=e.NOTEON?-1:e.toNoteString(this.data[1],!0)},set:function(b){throw"notes cannot be assigned this way, must modify the data[1]";},enumerable:!0}); +Object.defineProperty(e.prototype,"octave",{get:function(){return this.cmd!=e.NOTEON?-1:Math.floor((this.data[1]-24)/12+1)},set:function(b){throw"octave cannot be assigned this way, must modify the data[1]";},enumerable:!0});e.prototype.getPitch=function(){return 440*Math.pow(2,(this.data[1]-69)/12)};e.computePitch=function(b){return 440*Math.pow(2,(b-69)/12)};e.prototype.getCC=function(){return this.data[1]};e.prototype.getCCValue=function(){return this.data[2]};e.prototype.getPitchBend=function(){return this.data[1]+ +(this.data[2]<<7)-8192};e.computePitchBend=function(b,e){return b+(e<<7)-8192};e.prototype.setCommandFromString=function(b){this.cmd=e.computeCommandFromString(b)};e.computeCommandFromString=function(b){if(!b)return 0;if(b&&b.constructor===Number)return b;b=b.toUpperCase();switch(b){case "NOTE ON":case "NOTEON":return e.NOTEON;case "NOTE OFF":case "NOTEOFF":return e.NOTEON;case "KEY PRESSURE":case "KEYPRESSURE":return e.KEYPRESSURE;case "CONTROLLER CHANGE":case "CONTROLLERCHANGE":case "CC":return e.CONTROLLERCHANGE; +case "PROGRAM CHANGE":case "PROGRAMCHANGE":case "PC":return e.PROGRAMCHANGE;case "CHANNEL PRESSURE":case "CHANNELPRESSURE":return e.CHANNELPRESSURE;case "PITCH BEND":case "PITCHBEND":return e.PITCHBEND;case "TIME TICK":case "TIMETICK":return e.TIMETICK;default:return Number(b)}};e.toNoteString=function(b,f){b=Math.round(b);var g,a=Math.floor((b-24)/12+1);g=(b-21)%12;0>g&&(g=12+g);return e.notes[g]+(f?"":a)};e.NoteStringToPitch=function(b){b=b.toUpperCase();var f=b[0],g=4;"#"==b[1]?(f+="#",2this.properties.max_value)return;this.trigger("on_midi",f)}};h.registerNodeType("midi/filter",l);A.title="MIDIEvent";A.desc="Create a MIDI Event";A.color="#243";A.prototype.onAction=function(b,f){"assign"== +b?(this.properties.channel=f.channel,this.properties.cmd=f.cmd,this.properties.value1=f.data[1],this.properties.value2=f.data[2],f.cmd==e.NOTEON?this.gate=!0:f.cmd==e.NOTEOFF&&(this.gate=!1)):(f=this.midi_event,f.channel=this.properties.channel,this.properties.cmd&&this.properties.cmd.constructor===String?f.setCommandFromString(this.properties.cmd):f.cmd=this.properties.cmd,f.data[0]=f.cmd|f.channel,f.data[1]=Number(this.properties.value1),f.data[2]=Number(this.properties.value2),this.trigger("on_midi", +f))};A.prototype.onExecute=function(){var b=this.properties;if(this.inputs)for(var f=0;fb;++b)this.valid_notes[b]=-1!=this.notes_pitches.indexOf(b);for(b=0;12>b;++b)if(this.valid_notes[b])this.offset_notes[b]=0;else for(var e= +1;12>e;++e){if(this.valid_notes[(b-e)%12]){this.offset_notes[b]=-e;break}if(this.valid_notes[(b+e)%12]){this.offset_notes[b]=e;break}}};b.prototype.onAction=function(b,f){f&&f.constructor===e&&(f.data[0]==e.NOTEON||f.data[0]==e.NOTEOFF?(this.midi_event=new e,this.midi_event.setup(f.data),this.midi_event.data[1]+=this.offset_notes[e.note_to_index[f.note]],this.trigger("out",this.midi_event)):this.trigger("out",f))};b.prototype.onExecute=function(){var b=this.getInputData(1);null!=b&&b!=this._current_scale&& +this.processScale(b)};h.registerNodeType("midi/quantize",b);x.title="MIDI Play";x.desc="Plays a MIDI note";x.color="#243";x.prototype.onAction=function(b,f){if(f&&f.constructor===e){if(this.instrument&&f.data[0]==e.NOTEON){var g=f.note;if(!g||"undefined"==g||g.constructor!==String)return;this.instrument.play(g,f.octave,this.properties.duration,this.properties.volume)}this.trigger("note",f)}};x.prototype.onExecute=function(){var b=this.getInputData(1);null!=b&&(this.properties.volume=b);b=this.getInputData(2); +null!=b&&(this.properties.duration=b)};h.registerNodeType("midi/play",x);v.title="MIDI Keys";v.desc="Keyboard to play notes";v.color="#243";v.keys=[{x:0,w:1,h:1,t:0},{x:0.75,w:0.5,h:0.6,t:1},{x:1,w:1,h:1,t:0},{x:1.75,w:0.5,h:0.6,t:1},{x:2,w:1,h:1,t:0},{x:2.75,w:0.5,h:0.6,t:1},{x:3,w:1,h:1,t:0},{x:4,w:1,h:1,t:0},{x:4.75,w:0.5,h:0.6,t:1},{x:5,w:1,h:1,t:0},{x:5.75,w:0.5,h:0.6,t:1},{x:6,w:1,h:1,t:0}];v.prototype.onDrawForeground=function(b){if(!this.flags.collapsed){var e=12*this.properties.num_octaves; +this.keys.length=e;var f=this.size[0]/(7*this.properties.num_octaves),a=this.size[1];b.globalAlpha=1;for(var c=0;2>c;c++)for(var d=0;dh+l||b[1]>d))return c}}return-1};v.prototype.onAction=function(b,f){if("reset"==b)for(var g=0;gf[1])){var g=this.getKeyIndex(f);this.keys[g]=!0;this._last_key= +g;var g=12*(this.properties.start_octave-1)+29+g,a=new e;a.setup([e.NOTEON,g,100]);this.trigger("note",a);return!0}};v.prototype.onMouseMove=function(b,f){if(!(0>f[1]||-1==this._last_key)){this.setDirtyCanvas(!0);var g=this.getKeyIndex(f);if(this._last_key==g)return!0;this.keys[this._last_key]=!1;var a=12*(this.properties.start_octave-1)+29+this._last_key,c=new e;c.setup([e.NOTEOFF,a,100]);this.trigger("note",c);this.keys[g]=!0;a=12*(this.properties.start_octave-1)+29+g;c=new e;c.setup([e.NOTEON, +a,100]);this.trigger("note",c);this._last_key=g;return!0}};v.prototype.onMouseUp=function(b,f){if(!(0>f[1])){var g=this.getKeyIndex(f);this.keys[g]=!1;this._last_key=-1;var g=12*(this.properties.start_octave-1)+29+g,a=new e;a.setup([e.NOTEOFF,g,100]);this.trigger("note",a);return!0}};h.registerNodeType("midi/keys",v)})(this); +(function(t){function e(){this.properties={src:"",gain:0.5,loop:!0,autoplay:!0,playbackRate:1};this._loading_audio=!1;this._audiobuffer=null;this._audionodes=[];this._last_sourcenode=null;this.addOutput("out","audio");this.addInput("gain","number");this.audionode=g.getAudioContext().createGain();this.audionode.graphnode=this;this.audionode.gain.value=this.properties.gain;this.properties.src&&this.loadSound(this.properties.src)}function f(){this.properties={gain:0.5};this._audionodes=[];this._media_stream= +null;this.addOutput("out","audio");this.addInput("gain","number");this.audionode=g.getAudioContext().createGain();this.audionode.graphnode=this;this.audionode.gain.value=this.properties.gain}function q(){this.properties={fftSize:2048,minDecibels:-100,maxDecibels:-10,smoothingTimeConstant:0.5};this.audionode=g.getAudioContext().createAnalyser();this.audionode.graphnode=this;this.audionode.fftSize=this.properties.fftSize;this.audionode.minDecibels=this.properties.minDecibels;this.audionode.maxDecibels= +this.properties.maxDecibels;this.audionode.smoothingTimeConstant=this.properties.smoothingTimeConstant;this.addInput("in","audio");this.addOutput("freqs","array");this.addOutput("samples","array");this._time_bin=this._freq_bin=null}function p(){this.properties={gain:1};this.audionode=g.getAudioContext().createGain();this.addInput("in","audio");this.addInput("gain","number");this.addOutput("out","audio")}function s(){this.properties={impulse_src:"",normalize:!0};this.audionode=g.getAudioContext().createConvolver(); +this.addInput("in","audio");this.addOutput("out","audio")}function l(){this.properties={threshold:-50,knee:40,ratio:12,reduction:-20,attack:0,release:0.25};this.audionode=g.getAudioContext().createDynamicsCompressor();this.addInput("in","audio");this.addOutput("out","audio")}function A(){this.properties={};this.audionode=g.getAudioContext().createWaveShaper();this.addInput("in","audio");this.addInput("shape","waveshape");this.addOutput("out","audio")}function z(){this.properties={gain1:0.5,gain2:0.5}; +this.audionode=g.getAudioContext().createGain();this.audionode1=g.getAudioContext().createGain();this.audionode1.gain.value=this.properties.gain1;this.audionode2=g.getAudioContext().createGain();this.audionode2.gain.value=this.properties.gain2;this.audionode1.connect(this.audionode);this.audionode2.connect(this.audionode);this.addInput("in1","audio");this.addInput("in1 gain","number");this.addInput("in2","audio");this.addInput("in2 gain","number");this.addOutput("out","audio")}function w(){this.properties= +{A:0.1,D:0.1,S:0.1,R:0.1};this.audionode=g.getAudioContext().createGain();this.audionode.gain.value=0;this.addInput("in","audio");this.addInput("gate","bool");this.addOutput("out","audio");this.gate=!1}function y(){this.properties={delayTime:0.5};this.audionode=g.getAudioContext().createDelay(10);this.audionode.delayTime.value=this.properties.delayTime;this.addInput("in","audio");this.addInput("time","number");this.addOutput("out","audio")}function b(){this.properties={frequency:350,detune:0,Q:1}; +this.addProperty("type","lowpass","enum",{values:"lowpass highpass bandpass lowshelf highshelf peaking notch allpass".split(" ")});this.audionode=g.getAudioContext().createBiquadFilter();this.addInput("in","audio");this.addOutput("out","audio")}function x(){this.properties={frequency:440,detune:0,type:"sine"};this.addProperty("type","sine","enum",{values:["sine","square","sawtooth","triangle","custom"]});this.audionode=g.getAudioContext().createOscillator();this.addOutput("out","audio")}function v(){this.properties= +{continuous:!0,mark:-1};this.addInput("data","array");this.addInput("mark","number");this.size=[300,200];this._last_buffer=null}function h(){this.properties={band:440,amplitude:1};this.addInput("freqs","array");this.addOutput("signal","number")}function B(){if(!B.default_code){var a=B.default_function.toString(),c=a.indexOf("{")+1,b=a.lastIndexOf("}");B.default_code=a.substr(c,b-c)}this.properties={code:B.default_code};a=g.getAudioContext();a.createScriptProcessor?this.audionode=a.createScriptProcessor(4096, +1,1):(console.warn("ScriptProcessorNode deprecated"),this.audionode=a.createGain());this.processCode();B._bypass_function||(B._bypass_function=this.audionode.onaudioprocess);this.addInput("in","audio");this.addOutput("out","audio")}function k(){this.audionode=g.getAudioContext().destination;this.addInput("in","audio")}var n=t.LiteGraph,g={};t.LGAudio=g;g.getAudioContext=function(){if(!this._audio_context){window.AudioContext=window.AudioContext||window.webkitAudioContext;if(!window.AudioContext)return console.error("AudioContext not supported by browser"), +null;this._audio_context=new AudioContext;this._audio_context.onmessage=function(a){console.log("msg",a)};this._audio_context.onended=function(a){console.log("ended",a)};this._audio_context.oncomplete=function(a){console.log("complete",a)}}return this._audio_context};g.connect=function(a,c){try{a.connect(c)}catch(b){console.warn("LGraphAudio:",b)}};g.disconnect=function(a,c){try{a.disconnect(c)}catch(b){console.warn("LGraphAudio:",b)}};g.changeAllAudiosConnections=function(a,c){if(a.inputs)for(var b= +0;b=this.size[0]&&(f=this.size[0]-1),a.strokeStyle="red",a.beginPath(),a.moveTo(f,e),a.lineTo(f,0),a.stroke())}};v.title="Visualization";v.desc="Audio Visualization";n.registerNodeType("audio/visualization",v);h.prototype.onExecute=function(){if(this._freqs=this.getInputData(0)){var a=this.properties.band,b=this.getInputData(1);void 0!==b&&(a=b);b=g.getAudioContext().sampleRate/this._freqs.length;b=a/b*2;b>=this._freqs.length?b=this._freqs[this._freqs.length-1]:(a=b|0, +b-=a,b=this._freqs[a]*(1-b)+this._freqs[a+1]*b);this.setOutputData(0,b/255*this.properties.amplitude)}};h.prototype.onGetInputs=function(){return[["band","number"]]};h.title="Signal";h.desc="extract the signal of some frequency";n.registerNodeType("audio/signal",h);B.prototype.onAdded=function(a){a.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback)};B["@code"]={widget:"code"};B.prototype.onStart=function(){this.audionode.onaudioprocess=this._callback};B.prototype.onStop= +function(){this.audionode.onaudioprocess=B._bypass_function};B.prototype.onPause=function(){this.audionode.onaudioprocess=B._bypass_function};B.prototype.onUnpause=function(){this.audionode.onaudioprocess=this._callback};B.prototype.onExecute=function(){};B.prototype.onRemoved=function(){this.audionode.onaudioprocess=B._bypass_function};B.prototype.processCode=function(){try{this._script=new new Function("properties",this.properties.code)(this.properties),this._old_code=this.properties.code,this._callback= +this._script.onaudioprocess}catch(a){console.error("Error in onaudioprocess code",a),this._callback=B._bypass_function,this.audionode.onaudioprocess=this._callback}};B.prototype.onPropertyChanged=function(a,b){"code"==a&&(this.properties.code=b,this.processCode(),this.graph&&this.graph.status==LGraph.STATUS_RUNNING&&(this.audionode.onaudioprocess=this._callback))};B.default_function=function(){this.onaudioprocess=function(a){var b=a.inputBuffer;a=a.outputBuffer;for(var d=0;d