几何尺寸与公差论坛------致力于产品几何量公差标准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, 11:09 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】problem with code

problem with code
problem with code
i have a problem here.
i am iterating the entities, and ascertaining a dummy layer (for now). the idea is to create that layer (or get its id if it already exists) and update the entity to use that layer. and to set the colour as bylayer (currently remmed out).
if i rem out the code that modifes the entity layer and colour, the resulting file loads into autocad and i get all the layers created correctly, with all the entities on their native layers.
but if i put back in the code to actually update the entity, the program runs, but the file will not load into autocad.
it has just occurred to me that polylines would need their vertices updating, but i think the manual says setlayer will cascade layer id down into sub entities).
what am i doing wrong?
code:
if( ucount > 0 )
{
// get modelspace id
idmodelspace = pdb->getmodelspaceid();
// get modelspace entities (for modification)
pblock = idmodelspace.safeopenobject( oddb::kforwrite );
// iterate modelspace entities
for( pentiter = pblock->newiterator(), uentity = 0; !pentiter->done(); pentiter->step(), uentity++ )
{
// update progress complete
ipercent = calculatepercent( uentity + 1, ucount );
setprogresspos( _t("filtering entities..."), ipercent );
// update entity layer and colour
// for now, we just output details to screen
pent = pentiter->entity( oddb::kforwrite );
// this is temporary. we will eventually have a
// lookup map to locate correct layer name based
// on layer / colour pairs
strlayer.format(_t("layer_%s_colour_%d"), pent->layer(), pent->colorindex() );
// select (and create if required) the correct layer
idlayer = createlayer( pdb, strlayer, pent->colorindex() );
pent->setlayer( idlayer );
// pent->setcolorindex( odcmentitycolor::kbylayer );
}
savefile( pdb, m_strfolder );
}
thanks. i have tried to sort it to no avail.
andrew
here is some more information.
if i modify the drawing as shown in code, but save file as dxf, the dxf opens up in autocad with no errors.
it is the dwg saved files that cause the problem.
andrew
hi andrew,
i'm not sure whether this can cause a problem:
but you're trying to save the database with the model space being opened for write. actually there is no need to open it for write in this case (though for your "real" code you need it).
can you try just "closing" the iteration to ensure all the objects are closed:
i.e.
code:
if( ucount > 0 )
{
// get modelspace id
idmodelspace = pdb->getmodelspaceid();
{
// get modelspace entities (for modification)
pblock = idmodelspace.safeopenobject();
// iterate modelspace entities
for( pentiter = pblock->newiterator(), uentity = 0; !pentiter->done(); pentiter->step(), uentity++ )
{
// update progress complete
ipercent = calculatepercent( uentity + 1, ucount );
setprogresspos( _t("filtering entities..."), ipercent );
// update entity layer and colour
// for now, we just output details to screen
pent = pentiter->entity( oddb::kforwrite );
// this is temporary. we will eventually have a
// lookup map to locate correct layer name based
// on layer / colour pairs
strlayer.format(_t("layer_%s_colour_%d"), pent->layer(), pent->colorindex() );
// select (and create if required) the correct layer
idlayer = createlayer( pdb, strlayer, pent->colorindex() );
pent->setlayer( idlayer );
}
}
savefile( pdb, m_strfolder );
}
regards
chudomir
hi
i have tried removing the kforwrite bit, but that makes no difference. didn't quite follow youon "closing iteration".
andrew
quote:
originally posted by chudo
can you try just "closing" the iteration to ensure all the objects are closed:
this was the answer. by putting a pent.release() inside the for loop at the bottom. if i had declared the oddbentityptr inside the for loop, it would have handled it itself.
the file now processes and saves and loads ok in dwg mode.
thanks for your help.
andrew
i meant to place "{" before opening the model space and "}" before savefile. and yes, to declare the pblock as a local variable in the thus formed code block:
code:
....
{
oddbblocktablerecordptr pblock = idmodelspace.safeopenobject();
for( pentiter = pblock->newiterator(), uentity = 0;...
...
}
savefile(...)
...
this will force the smart pointer pblock to close the opened model space at the closing "}"
regards
chudo
sorry, i noticed the braces but didn't understand their purpose. however, the entity pointer would have still needed closing.
yes, i've forgot the entity pointer - so the idea is just to declare the smart pointer as "local" as possible in order to have the objects closed quickly.
hope this should repair your problem.
regards
chudomir
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】no lineweights on bmp-expor yang686526 DirectDWG 0 2009-05-06 06:34 PM
【转帖】nls error yang686526 DirectDWG 0 2009-05-06 06:34 PM
【转帖】newbie question9s0 code compiles, but cannot link yang686526 DirectDWG 0 2009-05-06 06:32 PM
【转帖】hatching entities yang686526 DirectDWG 0 2009-05-05 12:01 PM
【转帖】api code speed and sw menu activation yang686526 SolidWorks二次开发 0 2009-04-13 08:56 AM


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


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