-
Notifications
You must be signed in to change notification settings - Fork 5
/
AEOpenVDBFromPolygonsTemplate.mel
214 lines (165 loc) · 6.58 KB
/
AEOpenVDBFromPolygonsTemplate.mel
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
global proc
AEOpenVDBFromPolygonsTemplate( string $nodeAttr )
{
editorTemplate -beginScrollLayout;
{
editorTemplate -beginLayout "Settings" -collapse 0;
editorTemplate -beginNoOptimize;
{
editorTemplate -callCustom "AEAT_FromPolygonsOutputsNew"
"AEAT_FromPolygonsOutputsReplace" "DistanceGridName";
editorTemplate -addSeparator;
editorTemplate -addControl "EstimatedGridResolution";
editorTemplate
-annotation "Uniform voxel size in world units."
-addControl "VoxelSize";
editorTemplate
-annotation ("Specify the width of the exterior (d >= 0) " +
"portion of the narrow band. (3 voxel units is optimal " +
"for level set operations.)")
-addControl "ExteriorBandWidth";
editorTemplate
-annotation ("Specify the width of the interior (d < 0) " +
"portion of the narrow band. (3 voxel units is optimal " +
"for level set operations.)")
-addControl "InteriorBandWidth";
editorTemplate
-annotation ("Extract signed distances for all interior " +
"voxels, this operation is going to densify the " +
"interior of the model. Requires a closed watertight mesh.")
-addControl "FillInterior" "AEAT_FromPolygonsUpdateEnabled";
editorTemplate
-annotation ("Generate an unsigned distance field. This " +
"operation will work on any mesh, i.e. does not require " +
"a closed watertight mesh.")
-addControl "UnsignedDistanceField" "AEAT_FromPolygonsUpdateEnabled";
}
editorTemplate -endNoOptimize;
editorTemplate -endLayout;
editorTemplate -beginLayout "Information" -collapse 0;
editorTemplate -beginNoOptimize;
{
editorTemplate -callCustom "AEAT_FromPolygonsInfoNew"
"AEAT_FromPolygonsInfoReplace" "NodeInfo";
}
editorTemplate -endNoOptimize;
editorTemplate -endLayout;
editorTemplate -addExtraControls;
}
editorTemplate -endScrollLayout;
}
global proc
AEAT_FromPolygonsUpdateEnabled( string $node )
{
int $fill = `getAttr ($node+".FillInterior")`;
int $unsigned = `getAttr ($node+".UnsignedDistanceField")`;
if ($fill == 1 || $unsigned == 1) {
editorTemplate -dimControl $node "InteriorBandWidth" 1;
} else {
editorTemplate -dimControl $node "InteriorBandWidth" 0;
}
if ($unsigned == 1) {
editorTemplate -dimControl $node "FillInterior" 1;
} else {
editorTemplate -dimControl $node "FillInterior" 0;
}
}
global proc
AEAT_FromPolygonsOutputsUpdateGridEnables( string $parentUI, string $attr )
{
int $exportDistance = `getAttr $attr`;
textField -e -enable $exportDistance $parentUI;
}
global proc
AEAT_FromPolygonsOutputsNew( string $attr )
{
string $parent = `setParent -q` + "|fromPolygonsOutputsLayout|";
string $node = plugNode($attr);
global int $gAttributeEditorTemplateLabelWidth;
rowColumnLayout
-numberOfColumns 2
-columnWidth 1 $gAttributeEditorTemplateLabelWidth
-columnWidth 2 175
fromPolygonsOutputsLayout;
{
checkBox
-label "Distance VDB"
-annotation "Enable / disable the distance VDB output."
fromPolygonsDistanceVDBCheckBox;
textField
-fileName ""
-insertionPosition 0
-editable true
-annotation "Distance VDB name"
fromPolygonsDistanceVDBName;
checkBox
-label "Density VDB"
-annotation "Enable / disable the density VDB output."
fromPolygonsDensityVDBCheckBox;
textField
-fileName ""
-insertionPosition 0
-editable true
-annotation "Density VDB name"
fromPolygonsDensityVDBName;
setParent ..;
}
AEAT_FromPolygonsOutputsReplace( $attr );
}
global proc
AEAT_FromPolygonsOutputsReplace( string $attr )
{
string $parent = `setParent -q`;
string $parentLayout = $parent + "|fromPolygonsOutputsLayout|";
string $nodeName = plugNode($attr);
if( `text -exists ($parent+"|fromPolygonsScriptJobParent")` == 1 ) {
deleteUI fromPolygonsScriptJobParent;
}
string $scriptParent = `text -manage 0 fromPolygonsScriptJobParent`;
scriptJob -parent $scriptParent
-attributeChange ($nodeName+".ExportDistanceVDB")
("AEAT_FromPolygonsOutputsUpdateGridEnables(\""+$parentLayout+
"fromPolygonsDistanceVDBName\",\""+($nodeName+".ExportDistanceVDB")+"\")");
scriptJob -parent $scriptParent
-attributeChange ($nodeName+".ExportDensityVDB")
("AEAT_FromPolygonsOutputsUpdateGridEnables(\""+$parentLayout+
"fromPolygonsDensityVDBName\",\""+($nodeName+".ExportDensityVDB")+"\")");
setParent fromPolygonsOutputsLayout;
connectControl fromPolygonsDistanceVDBCheckBox ($nodeName + ".ExportDistanceVDB");
connectControl fromPolygonsDistanceVDBName ($nodeName + ".DistanceGridName");
connectControl fromPolygonsDensityVDBCheckBox ($nodeName + ".ExportDensityVDB");
connectControl fromPolygonsDensityVDBName ($nodeName + ".DensityGridName");
AEAT_FromPolygonsOutputsUpdateGridEnables($parentLayout+
"fromPolygonsDistanceVDBName", $nodeName+".ExportDistanceVDB");
AEAT_FromPolygonsOutputsUpdateGridEnables($parentLayout+
"fromPolygonsDensityVDBName", $nodeName+".ExportDensityVDB");
setParent $parent;
}
global proc
AEAT_FromPolygonsInfoUpdate( string $nodeName )
{
string $info = `getAttr ($nodeName + ".NodeInfo")`;
scrollField -e -text $info fromPolygonsInfoField;
}
global proc
AEAT_FromPolygonsInfoNew( string $attr )
{
scrollField
-editable 0
fromPolygonsInfoField;
AEAT_FromPolygonsInfoReplace($attr);
}
global proc
AEAT_FromPolygonsInfoReplace( string $attr )
{
string $parent = `setParent -q`;
string $nodeName = plugNode($attr);
if( `text -exists ($parent+"|fromPolygonsInfoScriptJobParent")` == 1 ) {
deleteUI fromPolygonsInfoScriptJobParent;
}
string $scriptParent = `text -manage 0 fromPolygonsInfoScriptJobParent`;
scriptJob -parent $scriptParent
-attributeChange ($nodeName+".NodeInfo")
("AEAT_FromPolygonsInfoUpdate(\""+$nodeName+"\")");
AEAT_FromPolygonsInfoUpdate($nodeName);
}