import { nodes_in_my_group, nodes_not_in_my_group, nodes_my_color, nodes_not_my_color, nodes_in_groups_matching } from "./use_everywhere_ui.js"; import { Logger, node_is_live, get_real_node } from "./use_everywhere_utilities.js"; function display_name(node) { if (node?.title) return node.title; if (node?.type) return node.type; if (node?.properties['Node name for S&R']) return node.properties['Node name for S&R']; return "un-nameable node"; } /* The UseEverywhere object represents a single 'broadcast'. It generally contains controller - the UE node that controls the broadcase control_node_input_index - the input on that node type - the data type output - the output that is being rebroadcast as a list (node_id, output_index) title_regex, input_regex - the UE? matching rules priority - priorty :) */ class UseEverywhere { constructor() { this.sending_to = []; Object.assign(this, arguments[0]); if (this.priority === undefined) this.priority = 0; this.description = `source ${this?.output[0]}.${this?.output[1]} -> control ${this?.controller.id}.${this?.control_node_input_index} "${this.type}" <- (priority ${this.priority})`; if (this.title_regex) this.description += ` - node title regex '${this.title_regex.source}'`; if (this.input_regex) this.description += ` - input name regex '${this.input_regex.source}'`; } sending_differs_from(another_ue) { if (this.sending_to.length != another_ue.sending_to.length) return true; for (var i=0; i n.name==input.name); this.sending_to.push({node:node, input:input, input_index:input_index}) } describe_sending(){ var description = " Linked to:"; this.sending_to.forEach((st) => description += `\n -> ${display_name(st.node)}, ${st.input.name}`); if (this.sending_to.length===0) description += ' nothing'; return description; } describe() { return this.description + "\n" + this.describe_sending(); } } function validity_errors(params) { if (!node_is_live(params.controller)) return `UE node ${params.output[0]} is not alive`; if (!node_is_live(get_real_node(params.output[0]))) return `upstream node ${params.output[0]} is not alive`; return ""; } class UseEverywhereList { constructor() { this.ues = []; this.unmatched_inputs = []; } differs_from(another_uel) { if (!another_uel) return true; if (this.ues.length != another_uel.ues.length) return true; for (var i=0; i ( candidate.matches(node, input) )); if (matches.length==0) { Logger.log(Logger.INFORMATION, `'${display_name(node)}' optional input '${input.name}' unmatched`) return undefined; } if (matches.length>1) { matches.sort((a,b) => b.priority-a.priority); if(matches[0].priority == matches[1].priority) { const msg = `'${display_name(node)}' (${node.id}) input '${input.name}' matches multiple Use Everwhere sources:`; _ambiguity_messages.push(msg); for (var i=0; i { console.log(ue.describe()); }); } all_unmatched_inputs(type) { return this.unmatched_inputs.filter((ui)=>ui.input.type==type); } all_nodes_with_unmatched_input(type) { const result = new Set(); this.all_unmatched_inputs(type).forEach((ui) => { result.add(display_name(ui.node)); }) return result; } all_unmatched_input_names(type) { const result = new Set(); this.all_unmatched_inputs(type).forEach((ui) => { result.add(ui.input.label ? ui.input.label : ui.input.name); }) return result; } all_group_names() { const result = new Set(); app.graph._groups.forEach((group) => { result.add(group.title); }) return result; } all_connected_inputs(for_node) { const ue_connections = []; this.ues.forEach((ue) => { ue.sending_to.forEach((st) => { if (st.node.id == for_node.id) { ue_connections.push({ type : ue.type, input_index : st.input_index, control_node : get_real_node(ue.controller.id), control_node_input_index : ue.control_node_input_index, sending_to : st.node, }); } }); }); return ue_connections; } all_ue_connections() { const ue_connections = []; this.ues.forEach((ue) => { ue.sending_to.forEach((st) => { ue_connections.push({ type : ue.type, input_index : st.input_index, control_node : get_real_node(ue.controller.id), control_node_input_index : ue.control_node_input_index, sending_to : st.node, }); }); }); return ue_connections; } all_ue_connections_for(node_id) { const ue_connections = []; this.ues.forEach((ue) => { ue.sending_to.forEach((st) => { if (get_real_node(st.node.id).id==node_id || get_real_node(ue.controller.id).id==node_id) { ue_connections.push({ type : ue.type, input_index : st.input_index, control_node : get_real_node(ue.controller.id), control_node_input_index : ue.control_node_input_index, sending_to : st.node, }); } }); }); return ue_connections; } } export {UseEverywhereList}