Spaces:
Paused
Paused
| # Made by Davemane42#0042 for ComfyUI | |
| import os | |
| import subprocess | |
| import importlib.util | |
| import sys | |
| import filecmp | |
| import shutil | |
| import __main__ | |
| python = sys.executable | |
| extentions_folder = os.path.join(os.path.dirname(os.path.realpath(__main__.__file__)), | |
| "web" + os.sep + "extensions" + os.sep + "FizzleDorf") | |
| javascript_folder = os.path.join(os.path.dirname(os.path.realpath(__file__)), "javascript") | |
| if not os.path.exists(extentions_folder): | |
| print('Making the "web\extensions\FizzleDorf" folder') | |
| os.makedirs(extentions_folder) | |
| result = filecmp.dircmp(javascript_folder, extentions_folder) | |
| if result.left_only or result.diff_files: | |
| print('Update to javascripts files detected') | |
| file_list = list(result.left_only) | |
| file_list.extend(x for x in result.diff_files if x not in file_list) | |
| for file in file_list: | |
| print(f'Copying {file} to extensions folder') | |
| src_file = os.path.join(javascript_folder, file) | |
| dst_file = os.path.join(extentions_folder, file) | |
| if os.path.exists(dst_file): | |
| os.remove(dst_file) | |
| #print("disabled") | |
| shutil.copy(src_file, dst_file) | |
| def is_installed(package, package_overwrite=None): | |
| try: | |
| spec = importlib.util.find_spec(package) | |
| except ModuleNotFoundError: | |
| pass | |
| package = package_overwrite or package | |
| if spec is None: | |
| print(f"Installing {package}...") | |
| command = f'"{python}" -m pip install {package}' | |
| result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, env=os.environ) | |
| if result.returncode != 0: | |
| print(f"Couldn't install\nCommand: {command}\nError code: {result.returncode}") | |
| from .WaveNodes import Lerp, SinWave, InvSinWave, CosWave, InvCosWave, SquareWave, SawtoothWave, TriangleWave, AbsCosWave, AbsSinWave | |
| from .ScheduledNodes import ( | |
| ValueSchedule, PromptSchedule, PromptScheduleNodeFlow, PromptScheduleNodeFlowEnd, PromptScheduleEncodeSDXL, | |
| StringSchedule, BatchPromptSchedule, BatchValueSchedule, BatchPromptScheduleEncodeSDXL, BatchStringSchedule, | |
| BatchValueScheduleLatentInput, BatchPromptScheduleEncodeSDXLLatentInput, BatchPromptScheduleLatentInput, | |
| ImageBatchFromValueSchedule | |
| #, BatchPromptScheduleNodeFlowEnd #, BatchGLIGENSchedule | |
| ) | |
| from .FrameNodes import FrameConcatenate, InitNodeFrame, NodeFrame, StringConcatenate | |
| from .HelperNodes import ConcatStringSingle, convertKeyframeKeysToBatchKeys, CalculateFrameOffset | |
| NODE_CLASS_MAPPINGS = { | |
| "Lerp": Lerp, | |
| "SinWave": SinWave, | |
| "InvSinWave": InvSinWave, | |
| "CosWave": CosWave, | |
| "InvCosWave": InvCosWave, | |
| "SquareWave":SquareWave, | |
| "SawtoothWave": SawtoothWave, | |
| "TriangleWave": TriangleWave, | |
| "AbsCosWave": AbsCosWave, | |
| "AbsSinWave": AbsSinWave, | |
| "PromptSchedule": PromptSchedule, | |
| "ValueSchedule": ValueSchedule, | |
| "PromptScheduleNodeFlow": PromptScheduleNodeFlow, | |
| "PromptScheduleNodeFlowEnd": PromptScheduleNodeFlowEnd, | |
| "PromptScheduleEncodeSDXL":PromptScheduleEncodeSDXL, | |
| "StringSchedule":StringSchedule, | |
| "BatchPromptSchedule": BatchPromptSchedule, | |
| "BatchValueSchedule": BatchValueSchedule, | |
| "BatchPromptScheduleEncodeSDXL": BatchPromptScheduleEncodeSDXL, | |
| "BatchStringSchedule": BatchStringSchedule, | |
| "BatchValueScheduleLatentInput": BatchValueScheduleLatentInput, | |
| "BatchPromptScheduleSDXLLatentInput":BatchPromptScheduleEncodeSDXLLatentInput, | |
| "BatchPromptScheduleLatentInput":BatchPromptScheduleLatentInput, | |
| "ImageBatchFromValueSchedule":ImageBatchFromValueSchedule, | |
| #"BatchPromptScheduleNodeFlowEnd":BatchPromptScheduleNodeFlowEnd, | |
| #"BatchGLIGENSchedule": BatchGLIGENSchedule, | |
| "StringConcatenate":StringConcatenate, | |
| "Init FizzFrame":InitNodeFrame, | |
| "FizzFrame":NodeFrame, | |
| "FizzFrameConcatenate":FrameConcatenate, | |
| "ConcatStringSingle": ConcatStringSingle, | |
| "convertKeyframeKeysToBatchKeys": convertKeyframeKeysToBatchKeys, | |
| "CalculateFrameOffset":CalculateFrameOffset, | |
| } | |
| NODE_DISPLAY_NAME_MAPPINGS = { | |
| "Lerp": "Lerp π π π ", | |
| "SinWave": "SinWave π π π ", | |
| "InvSinWave": "InvSinWave π π π ", | |
| "CosWave": "CosWave π π π ", | |
| "InvCosWave": "InvCosWave π π π ", | |
| "SquareWave":"SquareWave π π π ", | |
| "SawtoothWave": "SawtoothWave π π π ", | |
| "TriangleWave": "TriangleWave π π π ", | |
| "AbsCosWave": "AbsCosWave π π π ", | |
| "AbsSinWave": "AbsSinWave π π π ", | |
| "PromptSchedule": "Prompt Schedule π π π ", | |
| "ValueSchedule": "Value Schedule π π π ", | |
| "PromptScheduleNodeFlow": "Prompt Schedule NodeFlow π π π ", | |
| "PromptScheduleNodeFlowEnd": "Prompt Schedule NodeFlow End π π π ", | |
| "StringSchedule":"String Schedule π π π ", | |
| "StringConcatenate":"String Concatenate π π π ", | |
| "Init FizzFrame":"Init Node Frame π π π ", | |
| "FizzFrame":"Node Frame π π π ", | |
| "FizzFrameConcatenate":"Frame Concatenate π π π ", | |
| "BatchPromptSchedule": "Batch Prompt Schedule π π π ", | |
| "BatchValueSchedule": "Batch Value Schedule π π π ", | |
| "PromptScheduleEncodeSDXL": "Prompt Schedule SDXL π π π ", | |
| "BatchPromptScheduleEncodeSDXL": "Batch Prompt Schedule SDXL π π π ", | |
| "BatchStringSchedule": "Batch String Schedule π π π ", | |
| "BatchValueScheduleLatentInput": "Batch Value Schedule (Latent Input) π π π ", | |
| "BatchPromptScheduleSDXLLatentInput": "Batch Prompt Schedule SDXL (Latent Input) π π π ", | |
| "BatchPromptScheduleLatentInput": "Batch Prompt Schedule (Latent Input) π π π ", | |
| "ImageBatchFromValueSchedule":"Image Batch From Value Schedule π π π ", | |
| "ConcatStringSingle": "Concat String (Single) π π π ", | |
| "convertKeyframeKeysToBatchKeys":"Keyframe Keys To Batch Keys π π π ", | |
| "SelectFrameNumber":"Select Frame Number π π π ", | |
| "CalculateFrameOffset":"Calculate Frame Offset π π π ", | |
| } | |
| print('\033[34mFizzleDorf Custom Nodes: \033[92mLoaded\033[0m') | |