3v324v23's picture
lfs
1e3b872
raw
history blame
14.4 kB
import shutil
import folder_paths
import os
from .nodes.jake_upgrade import *
def setup_js():
import nodes
js_dest_path = os.path.join(os.path.dirname(folder_paths.__file__), "web", "extensions", "jake_upgrade")
if not os.path.exists(js_dest_path):
os.makedirs(js_dest_path)
js_src_path = os.path.join(os.path.join(os.path.dirname(__file__)), "js", "jake_upgrade.js")
shutil.copy(js_src_path, js_dest_path)
setup_js()
NODE_CLASS_MAPPINGS = {
### Misc Nodes
"CR SD1.5 Aspect Ratio JK": CR_AspectRatioSD15_JK,
"CR SDXL Aspect Ratio JK": CR_SDXLAspectRatio_JK,
### Reroute Nodes
"Reroute List JK": RerouteList_JK,
"Reroute Ckpt JK": RerouteCkpt_JK,
"Reroute Vae JK": RerouteVae_JK,
"Reroute Sampler JK": RerouteSampler_JK,
"Reroute Upscale JK": RerouteUpscale_JK,
"Reroute Resize JK": RerouteResize_JK,
### ControlNet Nodes
"CR Apply ControlNet JK": CR_ApplyControlNet_JK,
"CR Multi-ControlNet Stack JK": CR_ControlNetStack_JK,
"CR Apply Multi-ControlNet JK": CR_ApplyControlNetStack_JK,
### LoRA Nodes
"CR Load LoRA JK": CR_LoraLoader_JK,
"CR LoRA Stack JK": CR_LoRAStack_JK,
### Embedding Nodes
"Embedding Picker JK": EmbeddingPicker_JK,
"Embedding Picker Multi JK": EmbeddingPicker_Multi_JK,
### Loader Nodes
"Ckpt Loader JK": CkptLoader_JK,
"Vae Loader JK": VaeLoader_JK,
"Sampler Loader JK": SamplerLoader_JK,
"Upscale Model Loader JK": UpscaleModelLoader_JK,
### Pipe Nodes
"NodesState JK": NodesState_JK,
"Ksampler Parameters JK": KsamplerParameters_JK,
"Project Setting JK": ProjectSetting_JK,
"Base Model Parameters JK": BaseModelParameters_JK,
"Base Model Parameters Extract JK": BaseModelParametersExtract_JK,
"Base Image Parameters Extract JK": BaseImageParametersExtract_JK,
"Base Model Pipe JK": BaseModelPipe_JK,
"Base Model Pipe Extract JK": BaseModelPipeExtract_JK,
"Refine Pipe JK": RefinePipe_JK,
"Refine Pipe Extract JK": RefinePipeExtract_JK,
"Noise Injection Parameters JK": NoiseInjectionParameters_JK,
"Refine Model Parameters JK": RefineModelParameters_JK,
"Refine 1 Parameters Extract JK": Refine1ParametersExtract_JK,
"Refine 2 Parameters Extract JK": Refine2ParametersExtract_JK,
"Upscale Model Parameters JK": UpscaleModelParameters_JK,
"Image Upscale Parameters Extract JK": ImageUpscaleParametersExtract_JK,
"Latent Upscale Parameters Extract JK": LatentUpscaleParametersExtract_JK,
"Upscale Model Parameters Extract JK": UpscaleModelParametersExtract_JK,
"Detailer Parameters JK": DetailerParameters_JK,
"Pipe End JK": PipeEnd_JK,
"Metadata Pipe JK": MetadataPipe_JK,
"Metadata Pipe Extract JK": MetadataPipeExtract_JK,
### Image Nodes
"Save Image with Metadata JK": ImageSaveWithMetadata_JK,
"Save Image with Metadata Flow JK": ImageSaveWithMetadata_Flow_JK,
"Load Image With Metadata JK": LoadImageWithMetadata_JK,
"HintImageEnchance JK": HintImageEnchance_JK,
### Animation Nodes
"Animation Prompt JK": AnimPrompt_JK,
"Animation Value JK": AnimValue_JK,
### Logic Switches Nodes
"CR Boolean JK": CR_Boolean_JK,
"CR Int Input Switch JK": CR_IntInputSwitch_JK,
"CR Float Input Switch JK": CR_FloatInputSwitch_JK,
"CR Image Input Switch JK": CR_ImageInputSwitch_JK,
"CR Mask Input Switch JK": CR_MaskInputSwitch_JK,
"CR Latent Input Switch JK": CR_LatentInputSwitch_JK,
"CR Conditioning Input Switch JK": CR_ConditioningInputSwitch_JK,
"CR Clip Input Switch JK": CR_ClipInputSwitch_JK,
"CR Model Input Switch JK": CR_ModelInputSwitch_JK,
"CR ControlNet Input Switch JK": CR_ControlNetInputSwitch_JK,
"CR Text Input Switch JK": CR_TextInputSwitch_JK,
"CR VAE Input Switch JK": CR_VAEInputSwitch_JK,
"CR Switch Model and CLIP JK": CR_ModelAndCLIPInputSwitch_JK,
"CR Pipe Input Switch JK": CR_PipeInputSwitch_JK,
"CR Impact Pipe Input Switch JK": CR_ImpactPipeInputSwitch_JK,
### ComfyMath Fix Nodes
"CM_BoolToInt JK": BoolToInt_JK,
"CM_IntToBool JK": IntToBool_JK,
"CM_BoolUnaryOperation JK": BoolUnaryOperation_JK,
"CM_BoolBinaryOperation JK": BoolBinaryOperation_JK,
"CM_FloatUnaryCondition JK": FloatUnaryCondition_JK,
"CM_FloatBinaryCondition JK": FloatBinaryCondition_JK,
"CM_IntUnaryCondition JK": IntUnaryCondition_JK,
"CM_IntBinaryCondition JK": IntBinaryCondition_JK,
"CM_NumberUnaryCondition JK": NumberUnaryCondition_JK,
"CM_NumberBinaryCondition JK": NumberBinaryCondition_JK,
"CM_Vec2UnaryCondition JK": Vec2UnaryCondition_JK,
"CM_Vec2BinaryCondition JK": Vec2BinaryCondition_JK,
"CM_Vec2ToFloatUnaryOperation JK": Vec2ToFloatUnaryOperation_JK,
"CM_Vec2ToFloatBinaryOperation JK": Vec2ToFloatBinaryOperation_JK,
"CM_Vec2FloatOperation_JK": Vec2FloatOperation_JK,
"CM_Vec3UnaryCondition JK": Vec3UnaryCondition_JK,
"CM_Vec3BinaryCondition JK": Vec3BinaryCondition_JK,
"CM_Vec3ToFloatUnaryOperation JK": Vec3ToFloatUnaryOperation_JK,
"CM_Vec3ToFloatBinaryOperation JK": Vec3ToFloatBinaryOperation_JK,
"CM_Vec3FloatOperation_JK": Vec3FloatOperation_JK,
"CM_Vec4UnaryCondition JK": Vec4UnaryCondition_JK,
"CM_Vec4BinaryCondition JK": Vec4BinaryCondition_JK,
"CM_Vec4ToFloatUnaryOperation JK": Vec4ToFloatUnaryOperation_JK,
"CM_Vec4ToFloatBinaryOperation JK": Vec4ToFloatBinaryOperation_JK,
"CM_Vec4FloatOperation_JK": Vec4FloatOperation_JK,
### ComfyMath Nodes
"CM_FloatToInt JK": FloatToInt_JK,
"CM_IntToFloat JK": IntToFloat_JK,
"CM_IntToNumber JK": IntToNumber_JK,
"CM_NumberToInt JK": NumberToInt_JK,
"CM_FloatToNumber JK": FloatToNumber_JK,
"CM_NumberToFloat JK": NumberToFloat_JK,
"CM_ComposeVec2 JK": ComposeVec2_JK,
"CM_ComposeVec3 JK": ComposeVec3_JK,
"CM_ComposeVec4 JK": ComposeVec4_JK,
"CM_BreakoutVec2 JK": BreakoutVec2_JK,
"CM_BreakoutVec3 JK": BreakoutVec3_JK,
"CM_BreakoutVec4 JK": BreakoutVec4_JK,
"CM_FloatUnaryOperation JK": FloatUnaryOperation_JK,
"CM_FloatBinaryOperation JK": FloatBinaryOperation_JK,
"CM_IntUnaryOperation JK": IntUnaryOperation_JK,
"CM_IntBinaryOperation JK": IntBinaryOperation_JK,
"CM_NumberUnaryOperation JK": NumberUnaryOperation_JK,
"CM_NumberBinaryOperation JK": NumberBinaryOperation_JK,
"CM_Vec2UnaryOperation JK": Vec2UnaryOperation_JK,
"CM_Vec2BinaryOperation JK": Vec2BinaryOperation_JK,
"CM_Vec3UnaryOperation JK": Vec3UnaryOperation_JK,
"CM_Vec3BinaryOperation JK": Vec3BinaryOperation_JK,
"CM_Vec4UnaryOperation JK": Vec4UnaryOperation_JK,
"CM_Vec4BinaryOperation JK": Vec4BinaryOperation_JK,
### Simple Evaluate Nodes
"Evaluate Ints JK": EvaluateInts_JK,
"Evaluate Floats JK": EvaluateFloats_JK,
"Evaluate Strings JK": EvaluateStrs_JK,
"Evaluate Examples JK": EvalExamples_JK,
### 3D Nodes
# "Orbit Poses JK": OrbitPoses_JK,
}
NODE_DISPLAY_NAME_MAPPINGS = {
### Misc Nodes
"CR SD1.5 Aspect Ratio JK": "SD1.5 Aspect Ratio JK๐Ÿ‰",
"CR SDXL Aspect Ratio JK": "SDXL Aspect Ratio JK๐Ÿ‰",
### Reroute Nodes
"Reroute List JK": "Reroute List JK๐Ÿ‰",
"Reroute Ckpt JK": "Reroute Ckpt JK๐Ÿ‰",
"Reroute Vae JK": "Reroute Vae JK๐Ÿ‰",
"Reroute Sampler JK": "Reroute Sampler JK๐Ÿ‰",
"Reroute Upscale JK": "Reroute Upscale JK๐Ÿ‰",
"Reroute Resize JK": "Reroute Resize JK๐Ÿ‰",
### ControlNet Nodes
"CR Apply ControlNet JK": "Apply ControlNet JK๐Ÿ‰",
"CR Multi-ControlNet Stack JK": "Multi-ControlNet Stack JK๐Ÿ‰",
"CR Apply Multi-ControlNet JK": "Apply Multi-ControlNet JK๐Ÿ‰",
### LoRA Nodes
"CR Load LoRA JK": "Load LoRA JK๐Ÿ‰",
"CR LoRA Stack JK": "LoRA Stack JK๐Ÿ‰",
### Embedding Nodes
"Embedding Picker JK": "Embedding Picker JK๐Ÿ‰",
"Embedding Picker Multi JK": "Embedding Picker Multi JK๐Ÿ‰",
### Loader Nodes
"Ckpt Loader JK": "Ckpt Loader JK๐Ÿ‰",
"Vae Loader JK": "Vae Loader JK๐Ÿ‰",
"Sampler Loader JK": "Sampler Loader JK๐Ÿ‰",
"Upscale Model Loader JK": "Upscale Model Loader JK๐Ÿ‰",
### Pipe Nodes
"NodesState JK": "Nodes State JK๐Ÿ‰",
"Ksampler Parameters JK": "Ksampler Parameters JK๐Ÿ‰",
"Project Setting JK": "Project Setting JK๐Ÿ‰",
"Base Model Parameters JK": "Base Model Parameters JK๐Ÿ‰",
"Base Model Parameters Extract JK": "Base Model Parameters Extract JK๐Ÿ‰",
"Base Image Parameters Extract JK": "Base Image Parameters Extract JK๐Ÿ‰",
"Base Model Pipe JK": "Base Model Pipe JK๐Ÿ‰",
"Base Model Pipe Extract JK": "Base Model Pipe Extract JK๐Ÿ‰",
"Refine Pipe JK": "Refine Pipe JK๐Ÿ‰",
"Refine Pipe Extract JK": "Refine Pipe Extract JK๐Ÿ‰",
"Noise Injection Parameters JK": "Noise Injection Parameters JK๐Ÿ‰",
"Refine Model Parameters JK": "Refine Model Parameters JK๐Ÿ‰",
"Refine 1 Parameters Extract JK": "Refine 1 Parameters Extract JK๐Ÿ‰",
"Refine 2 Parameters Extract JK": "Refine 2 Parameters Extract JK๐Ÿ‰",
"Upscale Model Parameters JK":"Upscale Model Parameters JK๐Ÿ‰",
"Image Upscale Parameters Extract JK": "Image Upscale Parameters Extract JK๐Ÿ‰",
"Latent Upscale Parameters Extract JK": "Latent Upscale Parameters Extract JK๐Ÿ‰",
"Upscale Model Parameters Extract JK": "Upscale Model Parameters Extract JK๐Ÿ‰",
"Detailer Parameters JK": "Detailer Parameters JK๐Ÿ‰",
"Pipe End JK": "Pipe End JK๐Ÿ‰",
"Metadata Pipe JK": "Metadata Pipe JK๐Ÿ‰",
"Metadata Pipe Extract JK": "Metadata Pipe Extract JK๐Ÿ‰",
### Image Nodes
"Save Image with Metadata JK": "Save Image With Metadata JK๐Ÿ‰",
"Save Image with Metadata Flow JK": "Save Image With Metadata Flow JK๐Ÿ‰",
"Load Image With Metadata JK": "Load Image With Metadata JK๐Ÿ‰",
"HintImageEnchance JK": "Enchance And Resize Hint Images JK๐Ÿ‰",
### Animation Nodes
"Animation Prompt JK": "Animation Prompt JK๐Ÿ‰",
"Animation Value JK": "Animation Value JK๐Ÿ‰",
### Logic switches Nodes
"CR Boolean JK": "Boolean JK๐Ÿ‰",
"CR Image Input Switch JK": "Image Input Switch JK๐Ÿ‰",
"CR Mask Input Switch JK": "Mask Input Switch JK๐Ÿ‰",
"CR Int Input Switch JK": "Int Input Switch JK๐Ÿ‰",
"CR Float Input Switch JK": "Float Input Switch JK๐Ÿ‰",
"CR Latent Input Switch JK": "Latent Input Switch JK๐Ÿ‰",
"CR Conditioning Input Switch JK": "Conditioning Input Switch JK๐Ÿ‰",
"CR Clip Input Switch JK": "Clip Input Switch JK๐Ÿ‰",
"CR Model Input Switch JK": "Model Input Switch JK๐Ÿ‰",
"CR ControlNet Input Switch JK": "ControlNet Input Switch JK๐Ÿ‰",
"CR Text Input Switch JK": "Text Input Switch JK๐Ÿ‰",
"CR VAE Input Switch JK": "VAE Input Switch JK๐Ÿ‰",
"CR Switch Model and CLIP JK": "Switch Model and CLIP JK๐Ÿ‰",
"CR Pipe Input Switch JK": "Pipe Input Switch JK๐Ÿ‰",
"CR Impact Pipe Input Switch JK": "Impact Pipe Input Switch JK๐Ÿ‰",
### ComfyMath Fix Nodes
"CM_BoolToInt JK": "BoolToInt JK๐Ÿ‰",
"CM_IntToBool JK": "IntToBool JK๐Ÿ‰",
"CM_BoolUnaryOperation JK": "BoolUnaryOp JK๐Ÿ‰",
"CM_BoolBinaryOperation JK": "BoolBinaryOp JK๐Ÿ‰",
"CM_FloatUnaryCondition JK": "FloatUnaryCon JK๐Ÿ‰",
"CM_FloatBinaryCondition JK": "FloatBinaryCon JK๐Ÿ‰",
"CM_IntUnaryCondition JK": "IntUnaryCon JK๐Ÿ‰",
"CM_IntBinaryCondition JK": "IntBinaryCon JK๐Ÿ‰",
"CM_NumberUnaryCondition JK": "NumberUnaryCon JK๐Ÿ‰",
"CM_NumberBinaryCondition JK": "NumberBinaryCon JK๐Ÿ‰",
"CM_Vec2UnaryCondition JK": "Vec2UnaryCon JK๐Ÿ‰",
"CM_Vec2BinaryCondition JK": "Vec2BinaryCon JK๐Ÿ‰",
"CM_Vec2ToFloatUnaryOperation JK": "Vec2ToFloatUnaryOp JK๐Ÿ‰",
"CM_Vec2ToFloatBinaryOperation JK": "Vec2ToFloatBinaryOp JK๐Ÿ‰",
"CM_Vec2FloatOperation_JK": "Vec2FloatOp JK๐Ÿ‰",
"CM_Vec3UnaryCondition JK": "Vec3UnaryCon JK๐Ÿ‰",
"CM_Vec3BinaryCondition JK": "Vec3BinaryCon JK๐Ÿ‰",
"CM_Vec3ToFloatUnaryOperation JK": "Vec3ToFloatUnaryOp JK๐Ÿ‰",
"CM_Vec3ToFloatBinaryOperation JK": "Vec3ToFloatBinaryOp JK๐Ÿ‰",
"CM_Vec3FloatOperation_JK": "Vec3FloatOp JK๐Ÿ‰",
"CM_Vec4UnaryCondition JK": "Vec4UnaryCon JK๐Ÿ‰",
"CM_Vec4BinaryCondition JK": "Vec4BinaryCon JK๐Ÿ‰",
"CM_Vec4ToFloatUnaryOperation JK": "Vec4ToFloatUnaryOp JK๐Ÿ‰",
"CM_Vec4ToFloatBinaryOperation JK": "Vec4ToFloatBinaryOp JK๐Ÿ‰",
"CM_Vec4FloatOperation_JK": "Vec4FloatOp JK๐Ÿ‰",
### ComfyMath Nodes
"CM_FloatToInt JK": "FloatToInt JK๐Ÿ‰",
"CM_IntToFloat JK": "IntToFloat JK๐Ÿ‰",
"CM_IntToNumber JK": "IntToNumber JK๐Ÿ‰",
"CM_NumberToInt JK": "NumberToInt JK๐Ÿ‰",
"CM_FloatToNumber JK": "FloatToNumber JK๐Ÿ‰",
"CM_NumberToFloat JK": "NumberToFloat JK๐Ÿ‰",
"CM_ComposeVec2 JK": "ComposeVec2 JK๐Ÿ‰",
"CM_ComposeVec3 JK": "ComposeVec3 JK๐Ÿ‰",
"CM_ComposeVec4 JK": "ComposeVec4 JK๐Ÿ‰",
"CM_BreakoutVec2 JK": "BreakoutVec2 JK๐Ÿ‰",
"CM_BreakoutVec3 JK": "BreakoutVec3 JK๐Ÿ‰",
"CM_BreakoutVec4 JK": "BreakoutVec4 JK๐Ÿ‰",
"CM_FloatUnaryOperation JK": "FloatUnaryOp JK๐Ÿ‰",
"CM_FloatBinaryOperation JK": "FloatBinaryOp JK๐Ÿ‰",
"CM_IntUnaryOperation JK": "IntUnaryOp JK๐Ÿ‰",
"CM_IntBinaryOperation JK": "IntBinaryOp JK๐Ÿ‰",
"CM_NumberUnaryOperation JK": "NumberUnaryOp JK๐Ÿ‰",
"CM_NumberBinaryOperation JK": "NumberBinaryOp JK๐Ÿ‰",
"CM_Vec2UnaryOperation JK": "Vec2UnaryOp JK๐Ÿ‰",
"CM_Vec2BinaryOperation JK": "Vec2BinaryOp JK๐Ÿ‰",
"CM_Vec3UnaryOperation JK": "Vec3UnaryOp JK๐Ÿ‰",
"CM_Vec3BinaryOperation JK": "Vec3BinaryOp JK๐Ÿ‰",
"CM_Vec4UnaryOperation JK": "Vec4UnaryOp JK๐Ÿ‰",
"CM_Vec4BinaryOperation JK": "Vec4BinaryOp JK๐Ÿ‰",
### Simple Evaluate Nodes
"Evaluate Ints JK": "Evaluate Ints JK๐Ÿ‰",
"Evaluate Floats JK": "Evaluate Floats JK๐Ÿ‰",
"Evaluate Strings JK": "Evaluate String JK๐Ÿ‰",
"Evaluate Examples JK": "Evaluate Examples JK๐Ÿ‰",
### 3D Nodes
# "Orbit Poses JK": "Orbit Poses JK๐Ÿ‰",
}
__all__ = ['NODE_CLASS_MAPPINGS']
print("\033[34mJake Upgrade Nodes: \033[92m123 Nodes Loaded\033[0m")