几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量  


返回   几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 » 仿射空间:CAX软件开发(三)二次开发与程序设计 » CAD二次开发 » AutoCAD二次开发 » DirectDWG
用户名
密码
注册 帮助 会员 日历 银行 搜索 今日新帖 标记论坛为已读


 
 
主题工具 搜索本主题 显示模式
旧 2009-05-06, 04:09 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】inventor 2008 dwg

inventor 2008 dwg
inventor 2008 dwg
i am trying to visualize a dwg made with inventor 2008.
the visualization is not corrected cause the fact that proxy entity is made from autodesk.
what can be made in order to correctly visualize the dwg with your lib?
if it is not possible hour, could be possible in a future?
attached files
i don't see anyway to access the 'acidblockreference" proxy type. i think 'acadpart' (sat solids data) is the only proxy we can really handle with dwgdirect.
autodesk's dwgviewer shows no entities in model space, but there is a layout in paper space.
actually you may implement acidblockreference as a custom object derived from acdbblockreference, with no members overloaded, except rtti. that will allow you to see inside the blocks at least.
vladimir
vladimir,
i have never tried to make a custom entity using dd. so that i don't miss annything, is this procedure shown in one of the sample source files?
yes, see \examples\excustobjs\excustentity.cpp
vladimir
i have found the activator for acad 200x at the site
this works naturally only for autocad.
in order to make the same thing with dd lib as it can be made?
thoughts that can be made in future?
>thoughts that can be made in future?
if there would be sufficient demand.
send your request to support.
agitate for it on the forum.
vladimir
i just ran into this same problem from a customer of mine. all the entities in the file are proxies of class = "acidblockreference".
i'm not having much luck trying to make a custom entity to handle it.
has anyone out there tried it?
oops i forgot to attach the files.
attached files (475.4 kb, 9 views)
(1.50 mb, 4 views)

simplest implementation of the acidblockreference looks like this:
code:
#include "dbblockreference.h"
#include "dbfiler.h"
class odidblockreference : public oddbblockreference
{
oddbobjectid m_pvportid;
public:
oddb_declare_members(odidblockreference);
odidblockreference(){};
virtual odresult dwginfields(oddbdwgfiler* pfiler)
{
oddbblockreference::dwginfields(pfiler);
m_pvportid = pfiler->rdsoftpointerid();
return eok;
}
virtual void dwgoutfields(oddbdwgfiler* pfiler) const
{
oddbblockreference::dwgoutfields(pfiler);
pfiler->wrsoftpointerid(m_pvportid);
}
// worlddraw && vportdraw should be implemented
};
odrx_define_members(odidblockreference, // classname
oddbblockreference, // parentclass
dbobject_constr, // docreate
oddb::vac21, // dwgver
oddb::kmrelease1, // maintver
1, // nproxyflags
l"acidblockreference", // dwg class name
l"acidblockreference", // dxfname
l"acidviewobj|product: inventor drawing enabler|company: autodesk|website: www.autodesk.com") // appname(the trick was to guess that acidblockreference stores that additional data - viewport reference)
to display it correctly though, one should implement viewport draw, that draws only into given viewport.
vladimir
vladimir,
thank you - that should help. i will let you know.
worlddraw && viewportdraw may look like this:
code:
bool worlddraw(odgiworlddraw* pwd) const
{
if (m_pvportid.isvalid())
return false;
else
return oddbblockreference::worlddraw(pwd);
}
void viewportdraw(odgiviewportdraw* pviewportdraw) const
{
assertreadenabled();
if (oddbobjectid(pviewportdraw->viewportobjectid()) != m_pvportid)
return;
oddbblocktablerecordptr pbr = blocktablerecord().openobject();
if (!pbr.isnull())
{
odgigeometry& geom = pviewportdraw->geometry();
odgematrix3d matrix = blocktransform();
odgepoint3d basept(pbr->origin());
matrix *= odgematrix3d::translation(odgepoint3d::korigin - basept);
matrix.validatezero(odgetol(1e-20));
geom.pushmodeltransform(matrix);
geom.draw(pbr);
geom.popmodeltransform();
}
}(attributes and spatial filters are skipped)
vladimir
great!
but before i even get that far, i need to get past this...
else if(pent->isa() == oddbproxyentity::desc())
{
oddbproxyentityptr pproxy = pent;
odstring proxyclass = pproxy->originalclassname();
if(proxyclass.compare("acidblockreference") == 0)
{
// the following obviously will not work, but how can i get to the 'blockreference' members and functions?
odidblockreference *pidblkref = odidblockreference::cast(pent);
oddbblockreferenceptr pblkref = pidblkref;
:
:
}
you should not analyze the class yourself. the class should be registered, and handled as normal class, not proxy. to do that, put
code:
odidblockreference::rxinit();somewhere in the application start, after odinitialize, and
code:
odidblockreference::rxuninit();somewhere before oduninitialize.
vladimir

now i get it!!!!
excellent!!!!
it's working!!!
thanks - i appreciate your help (in case you cannot tell that from all the "!!!!")
pete
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


主题工具 搜索本主题
搜索本主题:

高级搜索
显示模式

发帖规则
不可以发表新主题
不可以回复主题
不可以上传附件
不可以编辑您的帖子

vB 代码开启
[IMG]代码开启
HTML代码关闭

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】invalid dwg after block is added yang686526 DirectDWG 0 2009-05-06 04:02 PM
【转帖】dwg file coordinates to world yang686526 DirectDWG 0 2009-05-05 08:02 AM
【转帖】dwg extension in world coordinates yang686526 DirectDWG 0 2009-05-05 08:01 AM
【转帖】使用.net从外部dwg文件中导入块 yang686526 ObjectARX(VB.NET/C#) 0 2009-04-20 06:18 PM
【转帖】[求助]请求编程,查询符合要求条件的dwg文件 yang686526 数据库ObjectDBX 0 2009-04-19 05:36 PM


所有的时间均为北京时间。 现在的时间是 02:38 AM.


于2004年创办,几何尺寸与公差论坛"致力于产品几何量公差标准GD&T | GPS研究/CAD设计/CAM加工/CMM测量"。免责声明:论坛严禁发布色情反动言论及有关违反国家法律法规内容!情节严重者提供其IP,并配合相关部门进行严厉查处,若內容有涉及侵权,请立即联系我们QQ:44671734。注:此论坛须管理员验证方可发帖。
沪ICP备06057009号-2
更多