File size: 5,813 Bytes
82ea528 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
import nodes
COMPARE_FUNCTIONS = {
"a == b": lambda a, b: a == b,
"a != b": lambda a, b: a != b,
"a < b": lambda a, b: a < b,
"a > b": lambda a, b: a > b,
"a <= b": lambda a, b: a <= b,
"a >= b": lambda a, b: a >= b,
}
class AlwaysEqualProxy(str):
def __eq__(self, _):
return True
def __ne__(self, _):
return False
class String:
@classmethod
def INPUT_TYPES(s):
return {
"required": {"value": ("STRING", {"default": "", "multiline": True})},
}
RETURN_TYPES = ("STRING",)
RETURN_NAMES = ("STRING",)
FUNCTION = "execute"
CATEGORY = "Logic"
def execute(self, value):
return (value,)
class Int:
@classmethod
def INPUT_TYPES(s):
return {
"required": {"value": ("INT", {"default": 0})},
}
RETURN_TYPES = ("INT",)
RETURN_NAMES = ("INT",)
FUNCTION = "execute"
CATEGORY = "Logic"
def execute(self, value):
return (value,)
class Float:
@classmethod
def INPUT_TYPES(s):
return {
"required": {"value": ("FLOAT", {"default": 0, "step": 0.01})},
}
RETURN_TYPES = ("FLOAT",)
RETURN_NAMES = ("FLOAT",)
FUNCTION = "execute"
CATEGORY = "Logic"
def execute(self, value):
return (value,)
class Bool:
@classmethod
def INPUT_TYPES(s):
return {
"required": {"value": ("BOOLEAN", {"default": False})},
}
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("BOOLEAN",)
FUNCTION = "execute"
CATEGORY = "Logic"
def execute(self, value):
return (value,)
class Compare:
"""
This nodes compares the two inputs and outputs the result of the comparison.
"""
@classmethod
def INPUT_TYPES(s):
"""
Comparison node takes two inputs, a and b, and compares them.
"""
s.compare_functions = list(COMPARE_FUNCTIONS.keys())
return {
"required": {
"a": (AlwaysEqualProxy("*"), {"default": 0}),
"b": (AlwaysEqualProxy("*"), {"default": 0}),
"comparison": (s.compare_functions, {"default": "a == b"}),
},
}
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("BOOLEAN",)
FUNCTION = "compare"
CATEGORY = "Logic"
def compare(self, a, b, comparison):
"""
Compare two inputs and return the result of the comparison.
Args:
a (UNKNOWN): The first input.
b (UNKNOWN): The second input.
comparison (STRING): The comparison to perform. Can be one of "==", "!=", "<", ">", "<=", ">=".
Returns:
: The result of the comparison.
"""
return (COMPARE_FUNCTIONS[comparison](a, b),)
class IfExecute:
"""
This node executes IF_TRUE if ANY is True, otherwise it executes IF_FALSE.
ANY can be any input, IF_TRUE and IF_FALSE can be any output.
"""
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"ANY": (AlwaysEqualProxy("*"),),
"IF_TRUE": (AlwaysEqualProxy("*"),),
"IF_FALSE": (AlwaysEqualProxy("*"),),
},
}
RETURN_TYPES = (AlwaysEqualProxy("*"),)
OUTPUT_TOOLTIPS = (
"Based on the value of ANY, either IF_TRUE or IF_FALSE will be returned.",
)
RETURN_NAMES = ("?",)
FUNCTION = "return_based_on_bool"
CATEGORY = "Logic"
def return_based_on_bool(self, ANY, IF_TRUE, IF_FALSE):
return (IF_TRUE if ANY else IF_FALSE,)
class IfExecuteNode:
"""
This node lets you choose from all nodes and execute the selected one when ANY is True.
"""
@classmethod
def INPUT_TYPES(cls):
cls.node_names = list(nodes.NODE_CLASS_MAPPINGS.keys())
return {
"required": {
"ANY": (AlwaysEqualProxy("*"),),
"NODE_TRUE": (cls.node_names, {"default": cls.node_names[0]}),
"NODE_FALSE": (cls.node_names, {"default": cls.node_names[0]}),
},
}
RETURN_TYPES = ()
OUTPUT_NODE = True
CATEGORY = "Logic"
FUNCTION = "execute"
def execute(self, ANY, NODE_TRUE, NODE_FALSE):
if ANY:
return self.execute_node(NODE_TRUE)
else:
return self.execute_node(NODE_FALSE)
def execute_node(self, node_name):
node = nodes.NODE_CLASS_MAPPINGS[node_name]()
return node.execute()
class DebugPrint:
"""
This node prints the input to the console.
"""
@classmethod
def INPUT_TYPES(s):
"""
Takes in any input.
"""
return {"required": {"ANY": (AlwaysEqualProxy({}),)}}
RETURN_TYPES = ()
OUTPUT_NODE = True
FUNCTION = "log_input"
CATEGORY = "Logic"
def log_input(self, ANY):
print(ANY)
return {}
# A dictionary that contains all nodes you want to export with their names
# NOTE: names should be globally unique
NODE_CLASS_MAPPINGS = {
"Compare-π¬": Compare,
"Int-π¬": Int,
"Float-π¬": Float,
"Bool-π¬": Bool,
"String-π¬": String,
"If ANY return A else B-π¬": IfExecute,
"DebugPrint-π¬": DebugPrint,
# "If ANY execute A else B-π¬": IfExecuteNode,
}
# A dictionary that contains the friendly/humanly readable titles for the nodes
NODE_DISPLAY_NAME_MAPPINGS = {
"Compare-π¬": "Compare",
"Int-π¬": "Int",
"Float-π¬": "Float",
"Bool-π¬": "Bool",
"String-π¬": "String",
"If ANY return A else B-π¬": "If ANY return A else B",
"DebugPrint-π¬": "DebugPrint",
# "If ANY execute A else B-π¬": "If ANY execute A else B",
}
print("\033[94mtheUpsiders Logic Nodes: \033[92mLoaded\033[0m")
|