代码拉取完成,页面将自动刷新
同步操作将从 yanlang0123/ComfyUI_Lam 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { app } from "/scripts/app.js";
import { ComfyWidgets } from "/scripts/widgets.js";
import {CUSTOM_INT,CUSTOM_COMBO, recursiveLinkUpstream, transformFunc, swapInputs,swapOutputs, renameNodeInputs,renameNodeOutputs, removeNodeInputs,removeNodeOutputs, getDrawColor, computeCanvasSize} from "./utils.js"
function addMultiTextSetMaskSelectCanvas(node, app) {
const widget = {
type: "customLamCanvas",
name: "MultiTextSetMask-Canvas",
get value() {
return this.canvas.value;
},
set value(x) {
this.canvas.value = x;
},
draw: function (ctx, node, widgetWidth, widgetY) {
const values = node.properties["values"]
const index = Math.round(node.widgets[node.index].value)
const selectedColor = getDrawColor(index/values.length, "FF")
ctx.fillStyle = selectedColor
ctx.beginPath();
ctx.arc(LiteGraph.NODE_SLOT_HEIGHT*0.5, LiteGraph.NODE_SLOT_HEIGHT*(index+node.originalsize + 0.5)+4, 4, 0, Math.PI * 2);
ctx.fill();
ctx.lineWidth = 1;
ctx.strokeStyle = "white";
ctx.stroke();
if (node.selected) {
const connectedNodes = recursiveLinkUpstream(node, node.inputs[index+node.originalsize].type, 0, index+node.originalsize)
if (connectedNodes.length !== 0) {
for (let [node_ID, depth] of connectedNodes) {
let connectedNode = node.graph._nodes_by_id[node_ID]
if (connectedNode.type != node.type) {
const [x, y] = connectedNode.pos
const [w, h] = connectedNode.size
const offset = 5
const titleHeight = LiteGraph.NODE_TITLE_HEIGHT * (connectedNode.type === "Reroute" ? 0 : 1)
ctx.strokeStyle = selectedColor
ctx.lineWidth = 5;
ctx.strokeRect(x-offset-node.pos[0], y-offset-node.pos[1]-titleHeight, w+offset*2, h+offset*2+titleHeight)
}
}
}
}
},
};
widget.canvas = document.createElement("canvas");
widget.canvas.className = "dave-custom-canvas";
widget.parent = node;
document.body.appendChild(widget.canvas);
node.addCustomWidget(widget);
return { minWidth: 200, minHeight: 200, widget }
}
// Displays input text on a node
app.registerExtension({
name: "Comfy.lam.MultiTextSetMask",
async beforeRegisterNodeDef(nodeType, nodeData, app) {
var names=["MultiTextSetMask","MultiTextSetArea","MultiTextSetGligen"]
if (names.indexOf(nodeData.name)>=0) {
const onNodeCreated = nodeType.prototype.onNodeCreated;
nodeType.prototype.onNodeCreated = function () {
const r = onNodeCreated ? onNodeCreated.apply(this, arguments) : undefined;
this.selected=false;
this.defaultValue=null
this.index=2
this.originalsize=4
if('MultiTextSetGligen'==nodeData.name){
this.originalsize=5
this.defaultValue=1.0;
}else if('MultiTextSetArea'==nodeData.name){
this.defaultValue=1.0;
}else if('MultiTextSetMask'==nodeData.name){
this.defaultValue=[1.0,"default"];
}
if(this.defaultValue){
this.setProperty("values", [this.defaultValue,this.defaultValue])
}
this.inputType="STRING"
this.inputPrefix="text"
this.outputPrefix=""
CUSTOM_INT(
this,
"index",
0,
function (v, _, node) {
let values = node.properties["values"]
if(Array.isArray(values[v])){
for(let i=0;i<values[v].length;i++){
node.widgets[node.index+i+1].value =values[v][i]
}
}else{
node.widgets[node.index+1].value =values[v]
}
},
{ step: 10, max: 1 }
)
if('MultiTextSetMask'==nodeData.name || 'MultiTextSetArea'==nodeData.name){
CUSTOM_INT(this, "strength", 1.0,function (v, _, node) {node.properties["values"][node.widgets[node.index].value][0] = this.value},{"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01,precision: 2 })
}
if('MultiTextSetMask'==nodeData.name){
CUSTOM_COMBO(this, "set_cond_area", "default",function (v, _, node) {node.properties["values"][node.widgets[node.index].value][1] = this.value},{values:["default", "mask bounds"]}).widget;
}
addMultiTextSetMaskSelectCanvas(this, app)
this.getExtraMenuOptions = function(_, options) {
options.unshift(
{
content: `最前插入参 /\\`,
callback: () => {
this.addInput(this.inputPrefix, this.inputType)
const inputLenth = this.inputs.length-1-this.originalsize
const index = 0+this.originalsize
for (let i = inputLenth; i > index; i--) {
swapInputs(this, i, i-1)
}
renameNodeInputs(this, this.inputPrefix,this.originalsize)
this.properties["values"].splice(index, 0, this.defaultValue)
this.widgets[this.index].options.max = inputLenth
this.setDirtyCanvas(true);
},
},
{
content: `最后插入参 \\/`,
callback: () => {
this.addInput(this.inputPrefix, this.inputType)
const inputLenth = this.inputs.length-1-this.originalsize
const index = this.widgets[this.index].value+this.originalsize
renameNodeInputs(this, this.inputPrefix,this.originalsize)
this.properties["values"].splice(index, 0, this.defaultValue)
this.widgets[this.index].options.max = inputLenth
this.setDirtyCanvas(true);
},
},
{
content: "删除全部未连接的入参框",
callback: () => {
let indexesToRemove = []
for (let i = 0; i < this.inputs.length; i++) {
if (!this.inputs[i].link&&i>=this.originalsize) {
indexesToRemove.push(i)
}
}
removeNodeInputs(this, indexesToRemove,this.originalsize)
renameNodeInputs(this, this.inputPrefix,this.originalsize)
},
}
);
}
this.onSelected = function () {
this.selected = true
}
this.onDeselected = function () {
this.selected = false
}
return r;
}
}
},
loadedGraphNode(node, _) {
var names=["MultiTextSetMask","MultiTextSetArea","MultiTextSetGligen"]
if (names.indexOf(node.type)>=0) {
node.widgets[node.index].options["max"] = node.properties["values"].length-1
}
},
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。