This repository was archived by the owner on Feb 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSOP_Shapefile.h
97 lines (62 loc) · 3.31 KB
/
SOP_Shapefile.h
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
#pragma once
#include <SOP/SOP_API.h>
#include <SOP/SOP_Node.h>
class GU_Detail;
class GA_Primitive;
typedef struct tagSHPObject SHPObject;
class SOP_Shapefile : public SOP_Node
{
public:
static OP_Node* myConstructor(OP_Network* network, const char* name, OP_Operator* op);
static PRM_Template myTemplateList[];
static const char* fileExtensionFilterString();
protected:
SOP_Shapefile(OP_Network* network, const char* name, OP_Operator* op);
virtual ~SOP_Shapefile();
protected:
//! Return and process an error.
OP_ERROR processError(OP_Context& context, const char* reason);
//! Process a warning.
void processWarning(const char* reason);
protected:
//! Process a points shape.
bool addShapePoint(SHPObject* shp_object, fpreal t);
//! Process polygon shapes.
bool addShapePolygon(SHPObject* shp_object, fpreal t);
//! Process polyline shape.
bool addShapePolyline(SHPObject* shp_object, fpreal t);
protected:
//! Helper function used to retrieve first and last vertex for a given shape part.
bool getShapeVertexIndices(SHPObject* shp_object, int part_idx, int& vertex_first, int& vertex_last) const;
//! Given a shape and shape index, retrieve points.
bool getShapePointPositions(SHPObject* shp_object, int shape_idx, bool use_z, fpreal t,
UT_Array<UT_Vector3>& point_positions) const;
protected:
//! Find or create if not found a point group with a specified name.
GA_PointGroup* findGroupPoint(const UT_String& group_name) const;
//! Find or create if not found a primitive group with a specified name.
GA_PrimitiveGroup* findGroupPrimitive(const UT_String& group_name) const;
protected:
//! Set shape number (and create an attribute if necessary) on a point.
void setPointAttributeShapeNumber(GA_Offset point_offset, int shape_number);
//! Set shape part number (and create an attribute if necessary) on a point.
void setPointAttributeShapePartNumber(GA_Offset point_offset, int shape_part_number);
//! Set shape number (and create an attribute if necessary) on a primitive.
void setPrimitiveAttributeShapeNumber(GA_Offset prim_offset, int shape_number);
//! Set shape part number (and create an attribute if necessary) on a primitive.
void setPrimitiveAttributeShapePartNumber(GA_Offset prim_offset, int shape_part_number);
protected:
//! Helper function to set an integer attribute on a specified owner.
void setAttribute(GA_Offset offset, GA_AttributeOwner attrib_owner, const UT_String& attribute_name, int attribute_value);
protected:
//! Retrieve shapefile file.
bool getParamShapefile(UT_String& shape_file, fpreal t) const;
//! Retrieve whether to create shape groups.
bool getParamCreateShapeGroups(fpreal t) const;
//! Retrieve whether to create shape attributes.
bool getParamCreateShapeAttributes(fpreal t) const;
//! Retrieve whether to flip YZ axis.
bool getParamSwapYZAxis(fpreal t) const;
protected:
virtual OP_ERROR cookMySop(OP_Context& context);
};