Package nukescripts :: Module toolbars
[hide private]
[frames] | no frames]

Source Code for Module nukescripts.toolbars

  1  # Copyright (c) 2009 The Foundry Visionmongers Ltd.  All Rights Reserved. 
  2   
  3  import nuke 
  4  import nukescripts 
  5  import os, os.path 
  6  import nuke.rotopaint 
  7   
  8  # Define the tool menus. This file is loaded by menu.py. 
9 -def setup_toolbars():
10 # This is not currently used but when we support a text-only mode we'll need it. 11 #size = nuke.numvalue("preferences.toolbarTextSize") 12 13 # Use the following options to set the shortcut context in the call to menu addCommand. 14 # Setting the shortcut context to a widget will mean the shortcut will only be triggered 15 # if that widget (or it's children) has focus. If no shortcut context is specified the 16 # default context is window context i.e. it can be triggered from anywhere in the window. 17 # The enum is defined in nk_menu_python_add_item in PythonObject.cpp 18 windowContext = 0 19 applicationContext = 1 20 dagContext = 2 21 22 # Get the top-level toolbar 23 toolbar = nuke.menu("Nodes") 24 assist = nuke.env['assist'] 25 26 # The "Image" menu 27 m = toolbar.addMenu("Image", "ToolbarImage.png") 28 m.addCommand("Read", "nukescripts.create_read()", "r", icon="Read.png", shortcutContext=dagContext) 29 m.addCommand("Write", "nuke.createNode(\"Write\")", "w", icon="Write.png", shortcutContext=dagContext) 30 m.addCommand("Profile", "nuke.createNode(\"Profile\")", icon="Write.png", shortcutContext=dagContext) 31 if not assist: 32 m.addCommand("UDIM import", "nukescripts.udim_import()", "u", icon="Read.png", shortcutContext=dagContext) 33 m.addCommand("Constant", "nuke.createNode(\"Constant\")", icon="Constant.png") 34 m.addCommand("CheckerBoard", "nuke.createNode(\"CheckerBoard2\")", icon="CheckerBoard.png") 35 m.addCommand("ColorBars", "nuke.createNode(\"ColorBars\")", icon="ColorBars.png") 36 m.addCommand("ColorWheel", "nuke.createNode(\"ColorWheel\")", icon="ColorWheel.png") 37 if not assist: 38 m.addCommand("CurveTool", "nukescripts.createCurveTool()", icon="CurveTool.png") 39 m.addCommand("Viewer", "nuke.createNode(\"Viewer\")", icon="Viewer.png") 40 # m.addCommand("Proxy", "nuke.knob(\"root.proxy\", \"!root.proxy\")", icon="proxyfullres.png") 41 42 # The "Draw" menu 43 m = toolbar.addMenu("Draw", "ToolbarDraw.png") 44 m.addCommand("Roto", '''nuke.createNode("Roto")''', "o", icon="Roto.png", shortcutContext=dagContext) 45 m.addCommand("RotoPaint", "nuke.createNode(\"RotoPaint\")", "p", icon="RotoPaint.png", shortcutContext=dagContext) 46 47 m.addCommand("@;RotoBranch", "nuke.createNode(\"Roto\")", "+o", shortcutContext=dagContext) 48 m.addCommand("@;RotoPaintBranch", "nuke.createNode(\"RotoPaint\")", "+p", shortcutContext=dagContext) 49 50 m.addCommand("Dither", "nuke.createNode(\"Dither\")", icon="Dither.png") 51 m.addCommand("DustBust", "nuke.createNode(\"DustBust\")", icon="DustBust.png") 52 m.addCommand("Grain", "nuke.createNode(\"Grain2\")", icon="Grain.png") 53 m.addCommand("ScannedGrain", "nuke.createNode(\"ScannedGrain\")", icon="ScannedGrain.png") 54 m.addCommand("Glint", "nuke.createNode(\"Glint\")", icon="Glint.png") 55 m.addCommand("Grid", "nuke.createNode(\"Grid\")", icon="Grid.png") 56 m.addCommand("Flare", "nuke.createNode(\"Flare\")", icon="Flare.png") 57 m.addCommand("LightWrap", "nuke.createNode(\"LightWrap\")", icon="LightWrap.png") 58 m.addCommand("MarkerRemoval", "nuke.createNode(\"MarkerRemoval\")", icon="MarkerRemoval.png") 59 m.addCommand("Noise", "nuke.createNode(\"Noise\")", icon="Noise.png") 60 m.addCommand("Radial", "nuke.createNode(\"Radial\")", icon="Radial.png") 61 m.addCommand("Ramp", "nuke.createNode(\"Ramp\")", icon="Ramp.png") 62 m.addCommand("Rectangle", "nuke.createNode(\"Rectangle\")", icon="Rectangle.png") 63 m.addCommand("Sparkles", "nuke.createNode(\"Sparkles\")", icon="Sparkles.png") 64 m.addCommand("Text", "nuke.createNode(\"Text2\")", icon="Text.png") 65 66 m = toolbar.addMenu("Time", "ToolbarTime.png") 67 m.addCommand("Add 3:2 pulldown", "nuke.createNode(\"add32p\")", icon="Add32.png") 68 m.addCommand("Remove 3:2 pulldown", "nuke.createNode(\"remove32p\")", icon="Remove32.png") 69 m.addCommand("AppendClip", "nuke.createNode(\"AppendClip\")", icon="AppendClip.png") 70 m.addCommand("FrameBlend", "nuke.createNode(\"FrameBlend\")", icon="FrameBlend.png") 71 m.addCommand("FrameHold", "nuke.createNode(\"FrameHold\")", icon="FrameHold.png") 72 m.addCommand("FrameRange", "nuke.createNode(\"FrameRange\")", icon="FrameRange.png") 73 if not assist: 74 m.addCommand("Kronos", "nukescripts.createKronos()", icon="Oflow.png") 75 m.addCommand("OFlow", "nukescripts.createOFlow()", icon="Oflow.png") 76 m.addCommand("Retime", "nuke.createNode(\"Retime\")", icon="Retime.png") 77 m.addCommand("TemporalMedian", "nuke.createNode(\"TemporalMedian\")", icon="TemporalMedian.png") 78 m.addCommand("TimeBlur", "nuke.createNode(\"TimeBlur\")", icon="TimeBlur.png") 79 m.addCommand("NoTimeBlur", "nuke.createNode(\"NoTimeBlur\")", icon="NoTimeBlur.png") 80 m.addCommand("TimeEcho", "nuke.createNode(\"TimeEcho\")", icon="TimeEcho.png") 81 m.addCommand("TimeOffset", "nuke.createNode(\"TimeOffset\")", icon="TimeOffset.png") 82 83 if not assist: 84 m.addCommand("TimeWarp", "nukescripts.create_time_warp()", icon="TimeWarp.png") 85 m.addCommand("TimeClip") 86 87 m.addCommand("SmartVector", "nuke.createNode(\"SmartVector\")", icon="SmartVector.png") 88 m.addCommand("VectorToMotion", "nuke.createNode(\"VectorToMotion\")", icon="VectorToMotion.png") 89 m.addCommand("VectorGenerator", "nuke.createNode(\"VectorGenerator\")") 90 91 92 # The "Channel" menu 93 m = toolbar.addMenu("Channel", "ToolbarChannel.png") 94 m.addCommand("Shuffle", "nuke.createNode(\"Shuffle\")", icon="Shuffle.png") 95 m.addCommand("ShuffleCopy", "nuke.createNode(\"ShuffleCopy\")", icon="ShuffleCopy.png") 96 m.addCommand("Copy", "nuke.createNode(\"Copy\")", "k", icon="CopyNode.png", shortcutContext=dagContext) 97 m.addCommand("@;CopyBranch", "nuke.createNode(\"Copy\")", "+k", shortcutContext=dagContext) 98 m.addCommand("ChannelMerge", "nuke.createNode(\"ChannelMerge\")", icon="ChannelMerge.png") 99 m.addCommand("Add", "nuke.createNode(\"AddChannels\")", icon="Add.png") 100 m.addCommand("Remove","nuke.createNode(\"Remove\")", icon="Remove.png") 101 102 103 # The "Color" menu 104 m = toolbar.addMenu("Color", "ToolbarColor.png") 105 106 n = m.addMenu("Math", "ColorMath.png") 107 n.addCommand("Add", "nuke.createNode(\"Add\")", icon="ColorAdd.png") 108 n.addCommand("Multiply", "nuke.createNode(\"Multiply\")", icon="ColorMult.png") 109 n.addCommand("Gamma", "nuke.createNode(\"Gamma\")", icon="ColorGamma.png") 110 n.addCommand("ClipTest", "nuke.createNode(\"ClipTest\")", icon="ClipTest.png") 111 n.addCommand("ColorMatrix", "nuke.createNode(\"ColorMatrix\")", icon="ColorMatrix.png") 112 n.addCommand("Expression", "nuke.createNode(\"Expression\")", icon="Expression.png") 113 114 n = m.addMenu("OCIO", "OCIO.png") 115 n.addCommand("OCIO CDLTransform", "nuke.createNode(\"OCIOCDLTransform\")", icon="OCIO.png") 116 n.addCommand("OCIO ColorSpace", "nuke.createNode(\"OCIOColorSpace\")", icon="OCIO.png") 117 n.addCommand("OCIO Display", "nuke.createNode(\"OCIODisplay\")", icon="OCIO.png") 118 n.addCommand("OCIO FileTransform", "nuke.createNode(\"OCIOFileTransform\")", icon="OCIO.png") 119 n.addCommand("OCIO LogConvert", "nuke.createNode(\"OCIOLogConvert\")", icon="OCIO.png") 120 121 n = m.addMenu("3D LUT", "Toolbar3DLUT.png") 122 n.addCommand("CMSTestPattern", "nuke.createNode(\"CMSTestPattern\")", icon="CMSTestPattern.png") 123 n.addCommand("GenerateLUT", "nuke.createNode(\"GenerateLUT\")", icon="GenerateLUT.png") 124 n.addCommand("Vectorfield (Apply 3D LUT)", "nuke.createNode(\"Vectorfield\")", icon="Vectorfield.png") 125 126 m.addCommand("Clamp", "nuke.createNode(\"Clamp\")", icon="Clamp.png") 127 m.addCommand("ColorLookup", "nuke.createNode(\"ColorLookup\")", icon="ColorLookup.png") 128 m.addCommand("Colorspace", "nuke.createNode(\"Colorspace\")", icon="ColorSpace.png") 129 m.addCommand("ColorTransfer", "nuke.createNode(\"ColorTransfer\")", icon="ColorTransfer.png") 130 m.addCommand("ColorCorrect", "nuke.createNode(\"ColorCorrect\")", "c", icon="ColorCorrect.png", shortcutContext=dagContext) 131 m.addCommand("@;ColorCorrectBranch", "nuke.createNode(\"ColorCorrect\")", "+c") 132 m.addCommand("Crosstalk", "nuke.createNode(\"CCrosstalk\")", icon="Crosstalk.png") 133 m.addCommand("Exposure", "nuke.createNode(\"EXPTool\")", icon="Exposure.png") 134 m.addCommand("Grade", "nuke.createNode(\"Grade\")", "g", icon="Grade.png", shortcutContext=dagContext) 135 m.addCommand("@;GradeBranch", "nuke.createNode(\"Grade\")", "+g", shortcutContext=dagContext) 136 m.addCommand("Histogram", "nuke.createNode(\"Histogram\")", icon="Histogram.png") 137 m.addCommand("HistEQ", "nuke.createNode(\"HistEQ\")", icon="HistEQ.png") 138 m.addCommand("HueCorrect", "nuke.createNode(\"HueCorrect\")", icon="HueCorrect.png") 139 m.addCommand("HueShift", "nuke.createNode(\"HueShift\")", icon="HueShift.png") 140 m.addCommand("HSVTool", "nuke.createNode(\"HSVTool\")", icon="HSVTool.png") 141 m.addCommand("Invert", "nuke.createNode(\"Invert\")", icon="Invert.png") 142 m.addCommand("Log2Lin", "nuke.createNode(\"Log2Lin\")", icon="Log2Lin.png") 143 m.addCommand("PLogLin", "nuke.createNode(\"PLogLin\")", icon="Log2Lin.png") 144 m.addCommand("MatchGrade", "nuke.createNode(\"MatchGrade\")", icon="MatchGrade.png") 145 m.addCommand("MinColor", "nuke.createNode(\"MinColor\")", icon="MinColor.png") 146 m.addCommand("Posterize", "nuke.createNode(\"Posterize\")", icon="Posterize.png") 147 m.addCommand("RolloffContrast", "nuke.createNode(\"RolloffContrast\")", icon="RolloffContrast.png") 148 m.addCommand("Saturation", "nuke.createNode(\"Saturation\")", icon="Saturation.png") 149 m.addCommand("Sampler", "nuke.createNode(\"Sampler\")", icon="Sampler.png") 150 m.addCommand("SoftClip", "nuke.createNode(\"SoftClip\")", icon="SoftClip.png") 151 m.addCommand("Toe", "nuke.createNode(\"Toe2\")", icon="Toe.png" ) 152 153 154 # The "Filter" menu 155 m = toolbar.addMenu("Filter", "ToolbarFilter.png") 156 m.addCommand("Blur", "nuke.createNode(\"Blur\")", "b", icon="Blur.png", shortcutContext=dagContext) 157 m.addCommand("@;BlurBranch", "nuke.createNode(\"Blur\")", "+b", shortcutContext=dagContext) 158 m.addCommand("Bilateral", "nuke.createNode(\"Bilateral\")", icon="Bilateral.png") 159 m.addCommand("BumpBoss", "nuke.createNode(\"BumpBoss\")", icon="BumpBoss.png") 160 m.addCommand("Convolve", "nuke.createNode(\"Convolve2\")", icon="Convolve.png") 161 m.addCommand("Defocus", "nuke.createNode(\"Defocus\")", icon="Defocus.png") 162 m.addCommand("DegrainBlue", "nuke.createNode(\"DegrainBlue\")", icon="DegrainBlue.png") 163 m.addCommand("DegrainSimple", "nuke.createNode(\"DegrainSimple\")", icon="DegrainSimple.png") 164 m.addCommand("Denoise", "nuke.createNode(\"Denoise2\")", icon="denoise.png") 165 m.addCommand("DirBlur", "nuke.createNode(\"DirBlurWrapper\")", icon="DirBlur.png") 166 m.addCommand("DropShadow", "nuke.createNode(\"DropShadow\")", icon="DropShadow.png") 167 m.addCommand("EdgeBlur", "nuke.createNode(\"EdgeBlur\")", icon="EdgeBlur.png") 168 m.addCommand("EdgeDetect", "nuke.createNode(\"EdgeDetectWrapper\")", icon="EdgeDetect.png") 169 m.addCommand("Emboss", "nuke.createNode(\"Emboss\")", icon="Emboss.png") 170 m.addCommand("Erode (fast)", "nuke.createNode(\"Dilate\")", icon="ErodeFast.png") 171 m.addCommand("Erode (filter)", "nuke.createNode(\"FilterErode\")", icon="FilterErode.png") 172 m.addCommand("Erode (blur)", "nuke.createNode(\"Erode\")", icon="ErodeBlur.png") 173 m.addCommand("Glow", "nuke.createNode(\"Glow2\")", icon="Glow.png") 174 m.addCommand("GodRays", "nuke.createNode(\"GodRays\")", icon="GodRays.png") 175 m.addCommand("Laplacian", "nuke.createNode(\"Laplacian\")", icon="Laplacian.png") 176 m.addCommand("LevelSet", "nuke.createNode(\"LevelSet\")", icon="LevelSet.png") 177 178 if not assist: 179 m.addCommand("Matrix...", "nukescripts.create_matrix()", icon="Matrix.png") 180 m.addCommand("Median", "nuke.createNode(\"Median\")", icon="Median.png") 181 m.addCommand("MotionBlur", "nuke.createNode(\"MotionBlur\")", icon="MotionBlur2D.png") 182 m.addCommand("MotionBlur2D", "nuke.createNode(\"MotionBlur2D\")", icon="MotionBlur2D.png") 183 m.addCommand("MotionBlur3D", "nuke.createNode(\"MotionBlur3D\")", icon="MotionBlur3D.png") 184 m.addCommand("Sharpen", "nuke.createNode(\"Sharpen\")", icon="Sharpen.png") 185 m.addCommand("Soften", "nuke.createNode(\"Soften\")", icon="Soften.png") 186 m.addCommand("VectorBlur", "nuke.createNode(\"VectorBlur2\")", icon="VectorBlur.png") 187 m.addCommand("VolumeRays", "nuke.createNode(\"VolumeRays\")", icon="VolumeRays.png") 188 m.addCommand("ZDefocus", "nuke.createNode(\"ZDefocus2\")", icon="ZBlur.png") 189 m.addCommand("ZSlice", "nuke.createNode(\"ZSlice\")", icon="ZSlice.png") 190 191 192 # The "Keyer" menu 193 m = toolbar.addMenu("Keyer", "ToolbarKeyer.png") 194 m.addCommand("Difference", "nuke.createNode(\"Difference\")", icon="DifferenceKeyer.png") 195 m.addCommand("HueKeyer", "nuke.createNode(\"HueKeyer\")", icon="HueKeyer.png") 196 if not assist: 197 m.addCommand("IBKGizmo", "nuke.tcl(\"IBKGizmoV3\")", icon="IBKGizmo.png") 198 m.addCommand("IBKColour", "nuke.tcl(\"IBKColourV3\")", icon="IBKColour.png") 199 m.addCommand("Keyer", "nuke.createNode(\"Keyer\")", icon="Keyer.png") 200 m.addCommand("Primatte", "nuke.createNode(\"Primatte3\")", icon="Primatte.png") 201 m.addCommand("Keylight", 'nuke.createNode("OFXuk.co.thefoundry.keylight.keylight_v201")', icon="Keylight.png") 202 m.addCommand("Ultimatte", "nuke.createNode(\"Ultimatte\")", icon="Ultimatte.png") 203 m.addCommand("ChromaKeyer", "nuke.createNode(\"ChromaKeyer\")", icon="ChromaKeyer.png") 204 205 206 # The "Merge" menu 207 m = toolbar.addMenu("Merge", "ToolbarMerge.png") 208 m.addCommand("AddMix", "nuke.createNode(\"AddMix\")", "+a", icon="AddMix.png", shortcutContext=dagContext) 209 m.addCommand("KeyMix", "nuke.createNode(\"Keymix\")", icon="Keymix.png") 210 m.addCommand("ContactSheet", "nuke.createNode(\"ContactSheet\")", icon="ContactSheet.png") 211 m.addCommand("CopyBBox", "nuke.createNode(\"CopyBBox\")", icon="CopyBBox.png") 212 m.addCommand("CopyRectangle", "nuke.createNode(\"CopyRectangle\")", icon="CopyRectangle.png") 213 m.addCommand("Dissolve", "nuke.createNode(\"Dissolve\")", icon="Dissolve.png") 214 m.addCommand("LayerContactSheet", "nuke.createNode(\"LayerContactSheet\")", icon="LayerContactSheet.png") 215 m.addCommand("Merge", "nuke.createNode(\"Merge2\")", "m", icon="Merge.png", shortcutContext=dagContext) 216 m.addCommand("@;MergeBranch", "nuke.createNode(\"Merge2\")", "+m", shortcutContext=dagContext) 217 218 n = m.addMenu("Merges", "Merge.png") 219 if not assist: 220 n.addCommand("Plus", "nuke.createNode(\"Merge2\", \"operation plus name Plus\", False)", icon="MergePlus.png") 221 n.addCommand("Matte", "nuke.createNode(\"Merge2\", \"operation matte name Matte\", False)", icon="MergeMatte.png") 222 n.addCommand("Multiply", "nuke.createNode(\"Merge2\", \"operation multiply name Multiply\", False)", icon="MergeMultiply.png") 223 n.addCommand("In", "nuke.createNode(\"Merge2\", \"operation in name In\", False)", icon="MergeIn.png") 224 n.addCommand("Out", "nuke.createNode(\"Merge2\", \"operation out name Out\", False)", icon="MergeOut.png") 225 n.addCommand("Screen", "nuke.createNode(\"Merge2\", \"operation screen name Scrn\", False)", icon="MergeScreen.png") 226 n.addCommand("Max", "nuke.createNode(\"Merge2\", \"operation max name Max\", False)", icon="MergeMax.png") 227 n.addCommand("Min", "nuke.createNode(\"Merge2\", \"operation min name Min\", False)", icon="MergeMin.png") 228 n.addCommand("Absminus", "nuke.createNode(\"Merge2\", \"operation difference name Difference\", False)", icon="MergeDifference.png") 229 m.addCommand("MergeExpression", "nuke.createNode(\"MergeExpression\")", icon="MergeExpression.png") 230 m.addCommand("Switch", "nuke.createNode(\"Switch\")", icon="Switch.png") 231 if not assist: 232 m.addCommand("TimeDissolve", "nuke.createNode(\"TimeDissolve\")", icon="TimeDissolve.png") 233 m.addCommand("Premult", "nuke.createNode(\"Premult\")", icon="Premult.png") 234 m.addCommand("Unpremult", "nuke.createNode(\"Unpremult\")", icon="Unpremult.png") 235 if not assist: 236 m.addCommand("Blend", "nuke.createNode(\"Blend\")", icon="Blend.png") 237 m.addCommand("ZMerge", "nuke.createNode(\"ZMerge\")", icon="ZMerge.png") 238 239 240 # The "Transform" menu 241 m = toolbar.addMenu("Transform", "ToolbarTransform.png") 242 m.addCommand("Transform", "nuke.createNode(\"Transform\")", "t", icon="2D.png", shortcutContext=dagContext) 243 m.addCommand("@;Transform Branch", "nuke.createNode(\"Transform\")", "+t", shortcutContext=dagContext) 244 m.addCommand("TransformMasked", "nuke.createNode(\"TransformMasked\")", icon="2DMasked.png") 245 m.addCommand("Card3D", "nuke.createNode(\"Card3D\")", icon="3D.png") 246 m.addCommand("AdjustBBox", "nuke.createNode(\"AdjBBox\")", icon="AdjBBox.png") 247 m.addCommand("BlackOutside", "nuke.createNode(\"BlackOutside\")", icon="BlackOutside.png") 248 m.addCommand("CameraShake", "nuke.createNode(\"CameraShake3\")", icon="CameraShake.png") 249 m.addCommand("Crop", "nuke.createNode(\"Crop\")", icon="Crop.png") 250 m.addCommand("CornerPin", "nuke.createNode(\"CornerPin2D\")", icon="CornerPin.png") 251 m.addCommand("SphericalTransform", "nuke.createNode(\"SphericalTransform\")", icon="EnvironMaps.png") 252 m.addCommand("IDistort", "nuke.createNode(\"IDistort\")", icon="IDistort.png") 253 m.addCommand("VectorDistort", "nuke.createNode(\"VectorDistort\")", icon="VectorDistort.png") 254 m.addCommand("LensDistortion", "nuke.createNode(\"LensDistortion2\")", icon="LensDistort.png") 255 m.addCommand("Mirror", "nuke.createNode(\"Mirror2\")", icon="Mirror.png") 256 m.addCommand("Position", "nuke.createNode(\"Position\")", icon="Position.png") 257 m.addCommand("Reformat", "nuke.createNode(\"Reformat\")", icon="Reformat.png") 258 m.addCommand("Reconcile3D", "nuke.createNode(\"Reconcile3D\")", icon="Reconcile3D.png") 259 m.addCommand("PointsTo3D", "nuke.createNode(\"PointsTo3D\")", icon="PointsTo3D.png") 260 m.addCommand("PlanarTracker", "nukescripts.createPlanartracker()", icon="planar_tracker.png") 261 m.addCommand("Tracker", "nuke.createNode(\"Tracker4\")", icon="Tracker.png") 262 m.addCommand("TVIScale", "nuke.createNode(\"TVIscale\")", icon="TVIScale.png") 263 m.addCommand("GridWarp", "nuke.createNode(\"GridWarp3\")", icon="GridWarp.png") 264 m.addCommand("SplineWarp", "nuke.createNode(\"SplineWarp3\")", icon="SplineWarp.png") 265 m.addCommand("Stabilize", "nuke.createNode(\"Stabilize2D\")", icon="Stabilize.png") 266 m.addCommand("STMap", "nuke.createNode(\"STMap\")", icon="STMap.png") 267 m.addCommand("Tile", "nuke.createNode(\"Tile\")", icon="Tile.png") 268 269 #m.addCommand("AutoCrop", "nukescripts.autocrop()", icon="AutoCrop.png") 270 271 272 # The "3D" menu 273 m = toolbar.addMenu("3D", "Cube.png") 274 275 m.addCommand("Axis", "nuke.createNode(\"Axis2\")", icon="Axis.png") 276 277 n = m.addMenu("Geometry", "Geometry.png") 278 n.addCommand("Card", "nuke.createNode(\"Card2\")", icon="Card.png") 279 n.addCommand("Cube", "nuke.createNode(\"Cube\")", icon="Cube.png") 280 n.addCommand("Cylinder", "nuke.createNode(\"Cylinder\")", icon="Cylinder.png") 281 n.addCommand("DepthToPoints", "nuke.createNode(\"DepthToPoints\")", icon="DepthToPoints.png") 282 #n.addCommand("Modeler", "nuke.createNode(\"Modeler\")", icon="Modeler.png") 283 n.addCommand("ModelBuilder", "nuke.createNode(\"ModelBuilder\")", icon="Modeler.png") 284 n.addCommand("PointCloudGenerator", "nuke.createNode(\"PointCloudGenerator\")", icon="PointCloudGenerator.png") 285 n.addCommand("PositionToPoints", "nuke.createNode(\"PositionToPoints2\")", icon="PositionToPoints.png") 286 n.addCommand("PoissonMesh", "nuke.createNode(\"PoissonMesh\")", icon="PoissonMesh.png") 287 n.addCommand("Sphere", "nuke.createNode(\"Sphere\")", icon="Sphere.png") 288 n.addCommand("ReadGeo", "nuke.createNode(\"ReadGeo2\")", icon="ReadGeo.png") 289 n.addCommand("WriteGeo", "nuke.createNode(\"WriteGeo\")", icon="WriteGeo.png") 290 291 n = m.addMenu("Lights", "Toolbar3DLights.png") 292 n.addCommand("Light", "nuke.createNode(\"Light2\")", icon="PointLight.png") 293 n.addCommand("Point", "nuke.createNode(\"Light\")", icon="PointLight.png") 294 n.addCommand("Direct", "nuke.createNode(\"DirectLight\")", icon="DirectLight.png") 295 n.addCommand("Spot", "nuke.createNode(\"Spotlight\")", icon="SpotLight.png") 296 n.addCommand("Environment", "nuke.createNode(\"Environment\")", icon="Environment.png") 297 n.addCommand("Relight", "nuke.createNode(\"ReLight\")", icon="ReLight.png") 298 299 n = m.addMenu("Modify", "Modify.png") 300 n.addCommand("TransformGeo", "nuke.createNode(\"TransformGeo\")", icon="Modify.png") 301 n.addCommand("MergeGeo", "nuke.createNode(\"MergeGeo\")", icon="Modify.png") 302 n.addCommand("CrosstalkGeo", "nuke.createNode(\"CrosstalkGeo\")", icon="Modify.png") 303 #n.addCommand("Connect Points", "nuke.createNode(\"ConnectPointsGeo\")", icon="Modify.png") 304 n.addCommand("DisplaceGeo", "nuke.createNode(\"DisplaceGeo\")", icon="Modify.png") 305 n.addCommand("EditGeo", "nuke.createNode(\"EditGeo\")", icon="Modify.png") 306 n.addCommand("GeoSelect", """nuke.createNode("GeoSelect")""", icon="Modify.png") 307 n.addCommand("LookupGeo", "nuke.createNode(\"LookupGeo\")", icon="Modify.png") 308 n.addCommand("LogGeo", "nuke.createNode(\"LogGeo\")", icon="Modify.png") 309 n.addCommand("Normals", "nuke.createNode(\"Normals\")", icon="Modify.png") 310 n.addCommand("ProceduralNoise", "nuke.createNode(\"ProcGeo\")", icon="Modify.png") 311 n.addCommand("RadialDistort", "nuke.createNode(\"RadialDistort\")", icon="Modify.png") 312 n.addCommand("Trilinear", "nuke.createNode(\"Trilinear\")", icon="Modify.png") 313 n.addCommand("UVProject", "nuke.createNode(\"UVProject\")", icon="Modify.png") 314 #n.addCommand("VectorfieldGeo", "nuke.createNode(\"VectorfieldGeo\")", icon="Modify.png") 315 #n.addCommand("Vectorfield Create", "nuke.createNode(\"VectorfieldCreateGeo\")", icon="Modify.png") 316 n = n.addMenu("RenderMan", "Modify.png") 317 n.addCommand("ModifyRIB", "nuke.createNode(\"ModifyRIB\")", icon="Modify.png") 318 319 n = m.addMenu("Shader", "Shaders.png") 320 n.addCommand("AmbientOcclusion", "nuke.createNode(\"AmbientOcclusion\")", icon="Shader.png") 321 n.addCommand("ApplyMaterial", "nuke.createNode(\"ApplyMaterial\")", icon="Shader.png") 322 n.addCommand("BasicMaterial", "nuke.createNode(\"BasicMaterial\")", icon="Shader.png") 323 n.addCommand("FillMat", "nuke.createNode(\"FillMat\")", icon="Shader.png") 324 n.addCommand("MergeMat", "nuke.createNode(\"MergeMat\")", icon="Shader.png") 325 n.addCommand("BlendMat", "nuke.createNode(\"BlendMat\")", icon="Shader.png") 326 n.addCommand("Project3D", "nuke.createNode(\"Project3D2\")", icon="Shader.png") 327 n.addCommand("Diffuse", "nuke.createNode(\"Diffuse\")", icon="Shader.png") 328 n.addCommand("Emission", "nuke.createNode(\"Emission\")", icon="Shader.png") 329 n.addCommand("Phong", "nuke.createNode(\"Phong\")", icon="Shader.png") 330 n.addCommand("Specular", "nuke.createNode(\"Specular\")", icon="Shader.png") 331 n.addCommand("Displacement", "nuke.createNode(\"Displacement\")", icon="Shader.png") 332 if not assist: 333 n.addCommand("UVTile", "nukescripts.createUVTile()", icon="Shader.png") 334 n.addCommand("Wireframe", "nuke.createNode(\"Wireframe\")", icon="Shader.png") 335 n.addCommand("Transmission", "nuke.createNode(\"Transmission\")", icon="Shader.png") 336 n = n.addMenu("RenderMan", "Shaders.png") 337 n.addCommand("Reflection", "nuke.createNode(\"Reflection\")", icon="Shader.png") 338 n.addCommand("Refraction", "nuke.createNode(\"Refraction\")", icon="Shader.png") 339 340 m.addCommand("Camera", "nuke.createNode(\"Camera2\")", icon="Camera.png") 341 m.addCommand("CameraTracker", "nuke.createNode(\"CameraTracker\")", icon="CameraTracker.png") 342 m.addCommand("DepthGenerator", "nuke.createNode(\"DepthGenerator\")", icon="DepthGenerator.png") 343 m.addCommand("DepthToPosition", "nuke.createNode(\"DepthToPosition\")", icon="DepthToPosition.png") 344 m.addCommand("Scene", "nuke.createNode(\"Scene\")", icon="Scene.png") 345 m.addCommand("ScanlineRender", "nuke.createNode(\"ScanlineRender\")", icon="Render.png") 346 m.addCommand("RayRender", "nuke.createNode(\"RayRender\")", icon="Render.png") 347 348 if not assist: 349 m = m.addMenu("RenderMan", "Toolbar3D.png") 350 m.addCommand("PrmanRender","nukescripts.createPrmanRender()", icon="Render.png") 351 352 # particles menu 353 m = toolbar.addMenu("Particles", "ToolbarParticles.png") 354 m.addCommand("ParticleEmitter") 355 356 m.addCommand("ParticleBounce") 357 m.addCommand("ParticleCache", icon="ParticleCache.png") 358 m.addCommand("ParticleCurve") 359 m.addCommand("ParticleDirectionalForce") 360 m.addCommand("ParticleDrag") 361 m.addCommand("ParticleExpression") 362 m.addCommand("ParticleMerge") 363 m.addCommand("ParticleMotionAlign") 364 m.addCommand("ParticleGravity") 365 366 #Disable ParticleLineForce for now as it is not ready for being included in the bundle - Bug 30000 367 # m.addCommand("ParticleLineForce") 368 369 m.addCommand("ParticleLookAt") 370 m.addCommand("ParticlePointForce") 371 m.addCommand("ParticleSpeedLimit") 372 m.addCommand("ParticleSpawn") 373 m.addCommand("ParticleTurbulence") 374 m.addCommand("ParticleVortex") 375 m.addCommand("ParticleWind") 376 377 m.addCommand("ParticleSettings", icon="particle_settings.png") 378 379 m.addCommand("ParticleToGeo") 380 381 # deep menu 382 m = toolbar.addMenu("Deep", "ToolbarDeep.png") 383 m.addCommand("DeepColorCorrect", "nuke.createNode('DeepColorCorrect2')" ) 384 m.addCommand("DeepCrop") 385 m.addCommand("DeepExpression") 386 m.addCommand("DeepFromFrames") 387 m.addCommand("DeepFromImage") 388 m.addCommand("DeepHoldout", "nuke.createNode('DeepHoldout2')" ) 389 m.addCommand("DeepMerge") 390 if not assist: 391 m.addCommand("DeepRead", '''nukescripts.create_read("DeepRead")''') 392 m.addCommand("DeepRecolor") 393 m.addCommand("DeepReformat") 394 m.addCommand("DeepSample") 395 m.addCommand("DeepToImage") 396 m.addCommand("DeepToPoints") 397 m.addCommand("DeepTransform") 398 m.addCommand("DeepWrite") 399 400 # Views menu 401 m = toolbar.addMenu("Views", "ToolbarViews.png") 402 n = m.addMenu("Stereo", "ToolbarStereo.png") 403 n.addCommand("Anaglyph", "nuke.createNode(\"Anaglyph\")", icon="Anaglyph.png") 404 n.addCommand("MixViews", "nuke.createNode(\"MixViews\")", icon="MixViews.png") 405 n.addCommand("SideBySide", "nuke.createNode(\"SideBySide\")", icon="SideBySide.png") 406 n.addCommand("ReConverge", "nuke.createNode(\"ReConverge\")", icon="ReConverge.png") 407 408 m.addCommand("JoinViews", "nuke.createNode(\"JoinViews\")", icon="JoinViews.png") 409 m.addCommand("OneView", "nuke.createNode(\"OneView\")", icon="OneView.png") 410 m.addCommand("ShuffleViews", "nuke.createNode(\"ShuffleViews\")", icon="ShuffleViews.png") 411 m.addCommand("Split and Join", "nukescripts.create_viewsplitjoin()", icon="SplitAndJoin.png") 412 413 m = toolbar.addMenu("MetaData", "MetaData.png") 414 m.addCommand("ViewMetaData", "nuke.createNode(\"ViewMetaData\")", icon="ViewMetaData.png") 415 m.addCommand("CompareMetaData", "nuke.createNode(\"CompareMetaData\")", icon="CompareMetaData.png") 416 m.addCommand("ModifyMetaData", "nuke.createNode(\"ModifyMetaData\")", icon="ModifyMetaData.png") 417 m.addCommand("CopyMetaData", "nuke.createNode(\"CopyMetaData\")", icon="CopyMetaData.png") 418 m.addCommand("AddTimeCode", "nuke.createNode(\"AddTimeCode\")", icon="AddTimeCode.png") 419 420 import nukescripts.toolsets 421 nukescripts.toolsets.createToolsetsMenu(toolbar) 422 nukescripts.createNodePresetsMenu() 423 424 425 # The "Other" menu 426 m = toolbar.addMenu("Other", "ToolbarOther.png") 427 m.addCommand("AudioRead", "nuke.createNode(\"AudioRead\")", icon="Read.png") 428 m.addCommand("Assert", "nuke.createNode(\"Assert\")", icon="Assert.png") 429 m.addCommand("Backdrop", "nukescripts.autoBackdrop()", icon="Backdrop.png") 430 m.addCommand("BlinkScript", "nuke.createNode(\"BlinkScript\")", icon="BlinkScript.png") 431 m.addCommand("DiskCache", "nuke.createNode(\"DiskCache\")", ".", icon="DiskCache.png", shortcutContext=dagContext) 432 m.addCommand("Dot", "nuke.createNode(\"Dot\", inpanel=False)", ".", icon="Dot.png", shortcutContext=dagContext) 433 m.addCommand("Input", "nuke.createNode(\"Input\")", icon="Input.png") 434 m.addCommand("Output", "nuke.createNode(\"Output\")", icon="Output.png") 435 m.addCommand("NoOp", "nuke.createNode(\"NoOp\")", icon="NoOp.png") 436 m.addCommand("PostageStamp", "nuke.createNode(\"PostageStamp\")", icon="PostageStamp.png") 437 m.addCommand("Group", "nuke.collapseToGroup()", icon="Group.png") 438 if not assist: 439 m.addCommand("Precomp", "nukescripts.precomp_selected()","^+p", icon="Precomp.png", shortcutContext=dagContext) 440 m.addCommand("LiveGroup", "nuke.collapseToLiveGroup()", icon="Group.png") 441 m.addCommand("LiveInput", "nuke.createLiveInput()", icon="Input.png") 442 443 m.addCommand("StickyNote", "nukescripts.toolbar_sticky_note()", "#n", icon="StickyNote.png", shortcutContext=dagContext) 444 n = m.addMenu("All plugins", "AllPlugins.png") 445 n.addCommand("Update", "nukescripts.update_plugin_menu(\"All plugins\")") 446 447 # The OFX plugins menus 448 nuke.ofxMenu("") 449 450 # Have to remove some of the furnace core nodes that get added automatically in nuke.ofxMenu() 451 m = toolbar.menu("FurnaceCore") 452 if (m != None): 453 m.removeItem("F_DeGrain") 454 m.removeItem("F_DeNoise") 455 m.removeItem("F_Kronos") 456 m.removeItem("F_MotionBlur") 457 m.removeItem("F_VectorGenerator") 458 m.removeItem("F_MatchGrade") 459 460 # Denoise2 needs to be added after the OFX plugins menus 461 m = toolbar.menu( 'Filter' ) 462 if m == None or not hasattr(m, 'addCommand'): 463 # If the Filter menu is empty, eg no whitelisted filter plugins in Nuke Assist, 464 # we must create the menu afresh, as it will not exist 465 m = toolbar.addMenu("Filter", "ToolbarFilter.png") 466 if m != None and hasattr(m, 'addCommand'): 467 m.addCommand("Denoise", "nuke.createNode(\"Denoise2\")", icon="denoise.png") 468 469 # OFlow needs to be added after the OFX plugins menus 470 m = toolbar.menu( 'Time' ) 471 if m == None or not hasattr(m, 'addCommand'): 472 # If the Filter menu is empty, eg no whitelisted filter plugins in Nuke Assist, 473 # we must create the menu afresh, as it will not exist 474 m = toolbar.addMenu("Time", "ToolbarTime.png") 475 if m != None and hasattr(m, 'addCommand'): 476 m.addCommand("OFlow", "nukescripts.createOFlow()", icon="Oflow.png") 477 478 m = None 479 n = None
480
481 -def createCurveTool():
482 n = nuke.createNode( 'CurveTool' ) 483 if n.input(0): 484 n['resetROI'].execute()
485
486 -def createKronos():
487 n = nuke.createNode( 'Kronos' ) 488 if n.input(0): 489 n['resetInputRange'].execute()
490
491 -def createOFlow():
492 n = nuke.createNode('OFlow2'); 493 if n.input(0): 494 n['resetInputRange'].execute()
495 496 # Some helper functions that we can call from the toolbar items. 497
498 -def create_time_warp():
499 t = nuke.createNode("TimeWarp") 500 a = nuke.value(t.name()+".first_frame") 501 e = nuke.value(t.name()+".last_frame") 502 if float(e)<=float(a): 503 a = nuke.value("root.first_frame") 504 e = nuke.value("root.last_frame") 505 cmd = "{curve C x"+a+" "+a+" x"+e+" "+e+"}" 506 t.knob("lookup").fromScript(cmd)
507 508
509 -def create_matrix():
510 p = nuke.Panel("Enter desired matrix size:") 511 p.addSingleLineInput("width", 3) 512 p.addSingleLineInput("height", 3) 513 ret = p.show() 514 if ret == 1: 515 wdt = p.value("width") 516 hgt = p.value("height") 517 a = " { "+" 0 "*int(wdt)+" } " 518 a = "{ " + a*int(hgt) + " }" 519 nuke.createNode("Matrix", "matrix "+a)
520 521
522 -def toolbar_sticky_note():
523 sticky = nuke.createNode("StickyNote") 524 sticky.knob("label").setValue("type note here") 525 sticky.knob("selected").setValue(False)
526
527 -def createPrmanRender():
528 try: 529 nuke.createNode( "PrmanRender" ) 530 except: 531 msg = "Could not create PrmanRender node.\n\nThis is usually because the library search path environment variable is not set correctly so Nuke can't link with the prman libraries.\n" 532 if not os.environ.has_key('RMANTREE'): 533 msg = msg + "\nAlso, the RMANTREE environment variable is not set.\n" 534 535 if nuke.env['MACOS']: 536 msg = msg + "\nIf you are launching Nuke from an icon on Mac OSX you may need to add environment variable settings to your environment plist file (~/.MacOSX/environment.plist).\n" 537 msg = msg + "\nCheck your Pixar Photorealistic Renderman documentation section \"RenderMan Pro Server > Administration > Installation\" for platform-specific installation instructions." 538 539 nuke.message( msg )
540
541 -def createUVTile():
542 uvtile_node = nuke.createNode("UVTile2") 543 n = uvtile_node.input(0) 544 545 if n != None and n.Class() == 'Read': 546 filename = n['file'].getValue() 547 udim = nukescripts.parseUdimFile(filename) 548 if udim != None: 549 uvtile_node['udim_enable'].setValue(True) 550 uvtile_node['udim'].setValue(udim)
551
552 -def createPlanartracker():
553 554 rotoNode = nuke.createNode("Roto", "output {rgba.alpha none none mask_planartrack.a}", False) 555 rotoLayerId = 1 556 rotoLayerName = "PlanarTrackLayer"+str(rotoLayerId) 557 558 rotoTrackLayer = rotoNode.name() + "." + str(rotoLayerId) + "." + rotoLayerName 559 560 rotoCurves = rotoNode["curves"] 561 rotoCurveRoot = rotoCurves.rootLayer 562 planarLayer = nuke.rotopaint.Layer(rotoCurves) 563 rotoCurveRoot.append(planarLayer) 564 atr = planarLayer.getAttributes() 565 planarLayer.name = rotoLayerName 566 planarLayer.getAttributes().set(nuke.rotopaint.AnimAttributes.kPlanarTrackLayerAttribute,rotoLayerId) 567 568 rotoNode.showControlPanel() 569 planarLayer.setFlag(nuke.rotopaint.FlagType.eSelectedFlag, 1) 570 rotoCurves.changed() 571 rotoNode["toolbox"].setValue(4)
572