objectarx二次开发自定义实体,实体数据是一个结构体tagGmyMapTable,结构体tagGmyMapTable中包含另外一个结构体tagGeometryWithID、一个类指针ElmGraphic*、一个bool变量,而结构体tagGeometryWithID保存的是一个unsigned long long int数据和一个vector<wstring>.类指针ElmGraphic*中有一个vector<shared_ptr<CBaseGeometry>> ptrgeos, CBaseGeometry是个基类,使用时会根据CBaseGeometry中的int型type的参数判断强制转换成不同子类进行绘制,子类中的数据也不相同,CBaseGeometry中包含了vector<AcGePoint3D>以及字符串、int等数据,请问如何保存读取这些数据到dwg
时间: 2024-02-12 15:03:56 浏览: 108
首先,需要定义一个继承自 AcDbEntity 的实体类 GmyMapTableEntity,然后在 GmyMapTableEntity 类中定义一个成员变量,类型为 tagGmyMapTable 结构体,用于保存实体数据。
在实现 GmyMapTableEntity 类的 dwg 文件读写方法时,可以将 tagGmyMapTable 结构体的成员变量依次读写到 dwg 文件中。
具体实现方法如下:
1. 在 GmyMapTableEntity.h 文件中定义 GmyMapTableEntity 类,并在类定义中添加 tagGmyMapTable 结构体成员变量。
```C++
class GmyMapTableEntity : public AcDbEntity
{
public:
GmyMapTableEntity();
virtual ~GmyMapTableEntity();
// dwg 文件读写方法
virtual Acad::ErrorStatus dwgInFields(AcDbDwgFiler* filer) override;
virtual Acad::ErrorStatus dwgOutFields(AcDbDwgFiler* filer) const override;
private:
tagGmyMapTable m_gmyMapTableData; // 实体数据
};
```
2. 在 GmyMapTableEntity.cpp 文件中实现 dwg 文件读写方法。具体实现过程如下:
- dwgInFields 方法
```C++
Acad::ErrorStatus GmyMapTableEntity::dwgInFields(AcDbDwgFiler* filer)
{
assertReadEnabled();
Acad::ErrorStatus es = AcDbEntity::dwgInFields(filer);
if (es != Acad::eOk) return es;
// 读取 tagGmyMapTable 结构体中的数据
es = filer->readItem(&m_gmyMapTableData.geometryData);
if (es != Acad::eOk) return es;
// 读取 ElmGraphic* 中的数据
if (filer->filerStatus() == Acad::eOk && m_gmyMapTableData.pElmGraphic != nullptr)
{
// 读取 vector<shared_ptr<CBaseGeometry>> 中的数据
Adesk::UInt32 count = 0;
filer->readUInt32(&count);
for (Adesk::UInt32 i = 0; i < count; i++)
{
// 读取 CBaseGeometry::type
int type = 0;
filer->readInt32(&type);
// 根据 CBaseGeometry::type 创建对应的子类对象
std::shared_ptr<CBaseGeometry> pGeometry;
if (type == CLine::Type)
{
pGeometry = std::make_shared<CLine>();
}
else if (type == CCircle::Type)
{
pGeometry = std::make_shared<CCircle>();
}
else if (type == CArc::Type)
{
pGeometry = std::make_shared<CArc>();
}
else
{
pGeometry = std::make_shared<CBaseGeometry>();
}
// 读取子类对象的数据
if (filer->filerStatus() == Acad::eOk)
{
pGeometry->dwgInFields(filer);
}
// 将子类对象添加到 vector<shared_ptr<CBaseGeometry>> 中
m_gmyMapTableData.pElmGraphic->ptrgeos.push_back(pGeometry);
}
// 读取 bool 变量
filer->readBool(&m_gmyMapTableData.bFlag);
}
return filer->filerStatus();
}
```
- dwgOutFields 方法
```C++
Acad::ErrorStatus GmyMapTableEntity::dwgOutFields(AcDbDwgFiler* filer) const
{
assertReadEnabled();
Acad::ErrorStatus es = AcDbEntity::dwgOutFields(filer);
if (es != Acad::eOk) return es;
// 写入 tagGmyMapTable 结构体中的数据
es = filer->writeItem(m_gmyMapTableData.geometryData);
if (es != Acad::eOk) return es;
// 写入 ElmGraphic* 中的数据
if (filer->filerStatus() == Acad::eOk && m_gmyMapTableData.pElmGraphic != nullptr)
{
// 写入 vector<shared_ptr<CBaseGeometry>> 中的数据
Adesk::UInt32 count = static_cast<Adesk::UInt32>(m_gmyMapTableData.pElmGraphic->ptrgeos.size());
filer->writeUInt32(count);
for (const auto& pGeometry : m_gmyMapTableData.pElmGraphic->ptrgeos)
{
// 写入 CBaseGeometry::type
int type = pGeometry->type();
filer->writeInt32(type);
// 写入子类对象的数据
if (filer->filerStatus() == Acad::eOk)
{
pGeometry->dwgOutFields(filer);
}
}
// 写入 bool 变量
filer->writeBool(m_gmyMapTableData.bFlag);
}
return filer->filerStatus();
}
```
3. 在主程序中,使用 AcDbBlockTableRecord::newEntity 方法创建 GmyMapTableEntity 实体对象,并将实体数据保存到 tagGmyMapTable 结构体成员变量中。
```C++
void createGmyMapTableEntity()
{
// 创建 GmyMapTableEntity 实体对象
GmyMapTableEntity* pGmyMapTableEntity = new GmyMapTableEntity;
// 设置实体数据
pGmyMapTableEntity->m_gmyMapTableData.geometryData.id = 1234567890;
pGmyMapTableEntity->m_gmyMapTableData.geometryData.name = L"MyMapTable";
pGmyMapTableEntity->m_gmyMapTableData.pElmGraphic = new ElmGraphic;
pGmyMapTableEntity->m_gmyMapTableData.bFlag = true;
// 设置 CLine 对象的数据
std::shared_ptr<CLine> pLine = std::make_shared<CLine>();
pLine->setStartPoint(AcGePoint3d(0, 0, 0));
pLine->setEndPoint(AcGePoint3d(10, 0, 0));
pGmyMapTableEntity->m_gmyMapTableData.pElmGraphic->ptrgeos.push_back(pLine);
// 设置 CCircle 对象的数据
std::shared_ptr<CCircle> pCircle = std::make_shared<CCircle>();
pCircle->setCenter(AcGePoint3d(5, 5, 0));
pCircle->setRadius(5);
pGmyMapTableEntity->m_gmyMapTableData.pElmGraphic->ptrgeos.push_back(pCircle);
// 添加实体对象到块表记录中
AcDbBlockTableRecord* pBlockTableRecord = getCurrentSpaceBlockTableRecord();
pBlockTableRecord->appendAcDbEntity(pGmyMapTableEntity);
pGmyMapTableEntity->close();
}
```
上述代码中的 getCurrentSpaceBlockTableRecord 方法用于获取当前空间的块表记录对象。
这样,就可以实现自定义实体的保存和读取了。
阅读全文