1 Star 0 Fork 15

雪狐/ComfyUI_Lam_1

forked from yanlang0123/ComfyUI_Lam 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MultiGLIGENTextBoxApply.js 11.16 KB
一键复制 编辑 原始数据 按行查看 历史
马噥 提交于 2024-04-06 22:19 +08:00 . 添加姿态编辑配套节点,修改BUG
import { app } from "/scripts/app.js";
import {CUSTOM_INT, recursiveLinkUpstream, transformFunc, swapInputs, renameNodeInputs, removeNodeInputs, getDrawColor, computeCanvasSize} from "./utils.js"
function addMultiGLIGENTextBoxApplyCanvas(node, app) {
const widget = {
type: "customLamCanvas",
name: "MultiGLIGENTextBoxApply-Canvas",
get value() {
return this.canvas.value;
},
set value(x) {
this.canvas.value = x;
},
draw: function (ctx, node, widgetWidth, widgetY) {
// If we are initially offscreen when created we wont have received a resize event
// Calculate it here instead
if (!node.canvasHeight) {
computeCanvasSize(node, node.size)
}
const visible = true //app.canvasblank.ds.scale > 0.5 && this.type === "customLamCanvas";
const t = ctx.getTransform();
const margin = 10
const border = 2
const widgetHeight = node.canvasHeight
const values = node.properties["values"]
const width = Math.round(node.properties["width"])
const height = Math.round(node.properties["height"])
const scale = Math.min((widgetWidth-margin*2)/width, (widgetHeight-margin*2)/height)
const index = Math.round(node.widgets[node.index].value)
Object.assign(this.canvas.style, {
left: `${t.e}px`,
top: `${t.f + (widgetY*t.d)}px`,
width: `${widgetWidth * t.a}px`,
height: `${widgetHeight * t.d}px`,
position: "absolute",
zIndex: 1,
fontSize: `${t.d * 10.0}px`,
pointerEvents: "none",
});
this.canvas.hidden = !visible;
let backgroudWidth = width * scale
let backgroundHeight = height * scale
let xOffset = margin
if (backgroudWidth < widgetWidth) {
xOffset += (widgetWidth-backgroudWidth)/2 - margin
}
let yOffset = margin
if (backgroundHeight < widgetHeight) {
yOffset += (widgetHeight-backgroundHeight)/2 - margin
}
let widgetX = xOffset
widgetY = widgetY + yOffset
ctx.fillStyle = "#000000"
ctx.fillRect(widgetX-border, widgetY-border, backgroudWidth+border*2, backgroundHeight+border*2)
ctx.fillStyle = globalThis.LiteGraph.NODE_DEFAULT_BGCOLOR
ctx.fillRect(widgetX, widgetY, backgroudWidth, backgroundHeight);
function getDrawArea(v) {
let x = v[0]*backgroudWidth/width
let y = v[1]*backgroundHeight/height
let w = v[2]*backgroudWidth/width
let h = v[3]*backgroundHeight/height
if (x > backgroudWidth) { x = backgroudWidth}
if (y > backgroundHeight) { y = backgroundHeight}
if (x+w > backgroudWidth) {
w = Math.max(0, backgroudWidth-x)
}
if (y+h > backgroundHeight) {
h = Math.max(0, backgroundHeight-y)
}
return [x, y, w, h]
}
// Draw all the conditioning zones
for (const [k, v] of values.entries()) {
if (k == index) {continue}
const [x, y, w, h] = getDrawArea(v)
ctx.fillStyle = getDrawColor(k/values.length, "80") //colors[k] + "B0"
ctx.fillRect(widgetX+x, widgetY+y, w, h)
}
ctx.beginPath();
ctx.lineWidth = 1;
for (let x = 0; x <= width/64; x += 1) {
ctx.moveTo(widgetX+x*64*scale, widgetY);
ctx.lineTo(widgetX+x*64*scale, widgetY+backgroundHeight);
}
for (let y = 0; y <= height/64; y += 1) {
ctx.moveTo(widgetX, widgetY+y*64*scale);
ctx.lineTo(widgetX+backgroudWidth, widgetY+y*64*scale);
}
ctx.strokeStyle = "#00000050";
ctx.stroke();
ctx.closePath();
// Draw currently selected zone
let [x, y, w, h] = getDrawArea(values[index])
w = Math.max(32*scale, w)
h = Math.max(32*scale, h)
//ctx.fillStyle = "#"+(Number(`0x1${colors[index].substring(1)}`) ^ 0xFFFFFF).toString(16).substring(1).toUpperCase()
ctx.fillStyle = "#ffffff"
ctx.fillRect(widgetX+x, widgetY+y, w, h)
const selectedColor = getDrawColor(index/values.length, "FF")
ctx.fillStyle = selectedColor
ctx.fillRect(widgetX+x+border, widgetY+y+border, w-border*2, h-border*2)
// Display
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)
}
}
}
}
ctx.lineWidth = 1;
ctx.closePath();
},
};
widget.canvas = document.createElement("canvas");
widget.canvas.className = "dave-custom-canvas";
widget.parent = node;
document.body.appendChild(widget.canvas);
node.addCustomWidget(widget);
app.canvas.onDrawBackground = function () {
// Draw node isnt fired once the node is off the screen
// if it goes off screen quickly, the input may not be removed
// this shifts it off screen so it can be moved back if the node is visible.
for (let n in app.graph._nodes) {
n = graph._nodes[n];
for (let w in n.widgets) {
let wid = n.widgets[w];
if (Object.hasOwn(wid, "canvas")) {
wid.canvas.style.left = -8000 + "px";
wid.canvas.style.position = "absolute";
}
}
}
};
node.onResize = function (size) {
computeCanvasSize(node, size);
}
return { minWidth: 200, minHeight: 200, widget }
}
app.registerExtension({
name: "Comfy.lam.MultiGLIGENTextBoxApply",
async beforeRegisterNodeDef(nodeType, nodeData, app) {
if (nodeData.name === "MultiGLIGENTextBoxApply") {
const onNodeCreated = nodeType.prototype.onNodeCreated;
nodeType.prototype.onNodeCreated = function () {
const r = onNodeCreated ? onNodeCreated.apply(this, arguments) : undefined;
this.setProperty("width", 512)
this.setProperty("height", 512)
this.setProperty("values", [[0, 0, 0, 0], [0, 0, 0, 0]])
this.selected = false
this.index = 5
this.originalsize=3
this.serialize_widgets = true;
CUSTOM_INT(this, "resolutionX", 512, function (v, _, node) {const s = this.options.step / 10; this.value = Math.round(v / s) * s; node.properties["width"] = this.value})
CUSTOM_INT(this, "resolutionY", 512, function (v, _, node) {const s = this.options.step / 10; this.value = Math.round(v / s) * s; node.properties["height"] = this.value})
addMultiGLIGENTextBoxApplyCanvas(this, app)
CUSTOM_INT(
this,
"index",
0,
function (v, _, node) {
let values = node.properties["values"]
node.widgets[node.index+1].value = values[v][0]
node.widgets[node.index+2].value = values[v][1]
node.widgets[node.index+3].value = values[v][2]
node.widgets[node.index+4].value = values[v][3]
},
{ step: 10, max: 1 }
)
CUSTOM_INT(this, "x", 0, function (v, _, node) {transformFunc(this, v, node, 0)})
CUSTOM_INT(this, "y", 0, function (v, _, node) {transformFunc(this, v, node, 1)})
CUSTOM_INT(this, "width", 0, function (v, _, node) {transformFunc(this, v, node, 2)})
CUSTOM_INT(this, "height", 0, function (v, _, node) {transformFunc(this, v, node, 3)})
this.getExtraMenuOptions = function(_, options) {
options.unshift(
{
content: `${this.widgets[this.index].value}框前插入 /\\`,
callback: () => {
this.addInput("text", "STRING")
const inputLenth = this.inputs.length-1-this.originalsize
const index = this.widgets[this.index].value+this.originalsize
for (let i = inputLenth; i > index; i--) {
swapInputs(this, i, i-1)
}
renameNodeInputs(this, "text",this.originalsize)
this.properties["values"].splice(index, 0, [0, 0, 0, 0, 1])
this.widgets[this.index].options.max = inputLenth
this.setDirtyCanvas(true);
},
},
{
content: `${this.widgets[this.index].value}框后插入 \\/`,
callback: () => {
this.addInput("text", "STRING")
const inputLenth = this.inputs.length-1-this.originalsize
const index = this.widgets[this.index].value+this.originalsize
for (let i = inputLenth; i > index+1; i--) {
swapInputs(this, i, i-1)
}
renameNodeInputs(this, "text",this.originalsize)
this.properties["values"].splice(index+1, 0, [0, 0, 0, 0, 1])
this.widgets[this.index].options.max = inputLenth
this.setDirtyCanvas(true);
},
},
{
content: `${this.widgets[this.index].value}框向上移动 /\\`,
callback: () => {
const index = this.widgets[this.index].value+this.originalsize
if (index > this.originalsize) {
swapInputs(this, index, index-1)
renameNodeInputs(this, "text",this.originalsize)
this.properties["values"].splice(index-1-this.originalsize,0,this.properties["values"].splice(index-this.originalsize,1)[0]);
this.widgets[this.index].value = index-1-this.originalsize
this.setDirtyCanvas(true);
}
},
},
{
content: `${this.widgets[this.index].value}框向下移动 \\/`,
callback: () => {
const index = this.widgets[this.index].value+this.originalsize
if (index !== this.inputs.length-1) {
swapInputs(this, index, index+1)
renameNodeInputs(this, "text",this.originalsize)
this.properties["values"].splice(index+1-this.originalsize,0,this.properties["values"].splice(index-this.originalsize,1)[0]);
this.widgets[this.index].value = index+1-this.originalsize
this.setDirtyCanvas(true);
}
},
},
{
content: `删除${this.widgets[this.index].value}`,
callback: () => {
const index = this.widgets[this.index].value+this.originalsize
removeNodeInputs(this, [index],this.originalsize)
renameNodeInputs(this, "text",this.originalsize)
},
},
{
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, "text",this.originalsize)
},
},
);
}
this.onRemoved = function () {
// When removing this node we need to remove the input from the DOM
for (let y in this.widgets) {
if (this.widgets[y].canvas) {
this.widgets[y].canvas.remove();
}
}
};
this.onSelected = function () {
this.selected = true
}
this.onDeselected = function () {
this.selected = false
}
return r;
};
}
},
loadedGraphNode(node, _) {
if (node.type === "MultiGLIGENTextBoxApply") {
node.widgets[node.index].options["max"] = node.properties["values"].length-1
}
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/assassindesign/ComfyUI_Lam_1.git
git@gitee.com:assassindesign/ComfyUI_Lam_1.git
assassindesign
ComfyUI_Lam_1
ComfyUI_Lam_1
cu121

搜索帮助