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