forked from sideeffects/HoudiniEngineForMaya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutputGeometry.C
140 lines (120 loc) · 3.85 KB
/
OutputGeometry.C
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
#include <maya/MArrayDataBuilder.h>
#include "OutputGeometry.h"
#include "OutputGeometryPart.h"
#include "OutputObject.h"
#include "util.h"
#include "AssetNode.h"
OutputGeometry::OutputGeometry(HAPI_NodeId nodeId) :
myNodeId(nodeId),
myLastCookCount(0)
{
update();
}
OutputGeometry::~OutputGeometry()
{
for(int i = myParts.size(); i-- > 0;)
{
delete myParts.back();
myParts.pop_back();
}
}
void
OutputGeometry::update()
{
HAPI_Result hapiResult;
hapiResult = HAPI_GetNodeInfo(
Util::theHAPISession.get(),
myNodeId, &myNodeInfo
);
CHECK_HAPI(hapiResult);
hapiResult = HAPI_GetGeoInfo(
Util::theHAPISession.get(),
myNodeId,
&myGeoInfo);
if(HAPI_FAIL(hapiResult))
{
// Make sre myGeoInfo is properly initialized.
HAPI_GeoInfo_Init(&myGeoInfo);
// Even when HAPI_GetGeoInfo() failed, there's always at least one
// part. So we want the below code to initialize myParts.
}
if(myGeoInfo.type == HAPI_GEOTYPE_DEFAULT
|| myGeoInfo.type == HAPI_GEOTYPE_INTERMEDIATE
|| myGeoInfo.type == HAPI_GEOTYPE_CURVE)
{
// Create any new OutputGeometryPart
myParts.reserve(myGeoInfo.partCount);
for(int i = myParts.size(); i < myGeoInfo.partCount; i++)
{
OutputGeometryPart* outputGeometryPart = new OutputGeometryPart(
myNodeId,
i
);
myParts.push_back(outputGeometryPart);
}
// Destroy the extra OutputGeometryPart
for(int i = myParts.size(); i-- > myGeoInfo.partCount;)
{
delete myParts.back();
myParts.pop_back();
}
}
}
MStatus
OutputGeometry::compute(
const MTime &time,
MDataHandle &geoHandle,
bool &needToSyncOutputs
)
{
MStatus stat;
update();
MDataHandle geoNameHandle = geoHandle.child(AssetNode::outputGeoName);
MString geoName;
if(myGeoInfo.nameSH != 0)
{
geoName = Util::HAPIString(myGeoInfo.nameSH);
}
geoNameHandle.setString(geoName);
geoNameHandle.setClean();
MDataHandle isTemplatedHandle = geoHandle.child(AssetNode::outputGeoIsTemplated);
isTemplatedHandle.setBool(myGeoInfo.isTemplated);
isTemplatedHandle.setClean();
MDataHandle isDisplayGeoHandle = geoHandle.child(AssetNode::outputGeoIsDisplayGeo);
isDisplayGeoHandle.setBool(myGeoInfo.isDisplayGeo);
isDisplayGeoHandle.setClean();
MDataHandle partsHandle = geoHandle.child(AssetNode::outputParts);
MArrayDataHandle partsArrayHandle(partsHandle);
MArrayDataBuilder partsBuilder = partsArrayHandle.builder();
if(partsBuilder.elementCount() != (unsigned int)(myGeoInfo.partCount))
{
needToSyncOutputs = true;
}
if(myNodeInfo.totalCookCount > myLastCookCount
&& (myGeoInfo.type == HAPI_GEOTYPE_DEFAULT ||
myGeoInfo.type == HAPI_GEOTYPE_INTERMEDIATE ||
myGeoInfo.type == HAPI_GEOTYPE_CURVE))
{
// Compute the OutputGeometryPart
for(int i=0; i< myGeoInfo.partCount; i++)
{
MDataHandle h = partsBuilder.addElement(i);
stat = myParts[i]->compute(
time,
h,
myGeoInfo.hasMaterialChanged,
needToSyncOutputs
);
CHECK_MSTATUS_AND_RETURN(stat, MS::kFailure);
}
// Remove the element of the array attribute
for(int i = partsBuilder.elementCount(); i-- > myGeoInfo.partCount;)
{
stat = partsBuilder.removeElement(i);
CHECK_MSTATUS_AND_RETURN(stat, MS::kFailure);
}
}
partsArrayHandle.set(partsBuilder);
myLastCookCount = myNodeInfo.totalCookCount;
return MS::kSuccess;
}