-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogic.py
More file actions
113 lines (94 loc) · 2.93 KB
/
logic.py
File metadata and controls
113 lines (94 loc) · 2.93 KB
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
class NotNode:
@classmethod
def INPUT_TYPES(s):
return {"required": {"input": ("BOOLEAN",)}}
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("output",)
FUNCTION = "not_value"
CATEGORY = "Power Flow/Logic"
def not_value(self, input):
return (not input,)
class LogicOperationNode:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"a": ("BOOLEAN", {"forceInput": True}),
"b": ("BOOLEAN", {"forceInput": True}),
"operation": (["and", "or", "xor"],),
},
}
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("output",)
FUNCTION = "logic_operation"
CATEGORY = "Power Flow/Logic"
def logic_operation(self, a, b, operation):
if operation == "and":
return (a and b,)
elif operation == "or":
return (a or b,)
elif operation == "xor":
return (a != b,)
else:
raise ValueError(f"Invalid operation: {operation}")
class CompareNumberNode:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"a": ("INT,FLOAT",),
"b": ("INT,FLOAT",),
"operation": (["a == b", "a != b", "a > b", "a >= b", "a < b", "a <= b"],),
},
}
@classmethod
def VALIDATE_INPUTS(cls, input_types):
return True
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("output",)
FUNCTION = "compare_number"
CATEGORY = "Power Flow/Logic"
def compare_number(self, a, b, operation):
if operation == "a == b":
return (a == b,)
elif operation == "a != b":
return (a != b,)
elif operation == "a > b":
return (a > b,)
elif operation == "a >= b":
return (a >= b,)
elif operation == "a < b":
return (a < b,)
elif operation == "a <= b":
return (a <= b,)
else:
raise ValueError(f"Invalid operation: {operation}")
class CompareStringNode:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"a": ("STRING",),
"b": ("STRING",),
"operation": (["a == b", "a != b", "a > b", "a >= b", "a < b", "a <= b"],),
},
}
RETURN_TYPES = ("BOOLEAN",)
RETURN_NAMES = ("output",)
FUNCTION = "compare_string"
CATEGORY = "Power Flow/Logic"
def compare_string(self, a, b, operation):
if operation == "a == b":
return (a == b,)
elif operation == "a != b":
return (a != b,)
elif operation == "a > b":
return (a > b,)
elif operation == "a >= b":
return (a >= b,)
elif operation == "a < b":
return (a < b,)
elif operation == "a <= b":
return (a <= b,)
else:
raise ValueError(f"Invalid operation: {operation}")