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

odamfcapp - plotstyle bug? ctb color
odamfcapp - plotstyle bug? ctb color
odpsplotstyledata::color() returns incorrect value when ctb file is loaded by odgicontextfordbdatabase::loadplotstyletable() for these particular drawings attached.
the attached bitmap png shows the difference between acad2006 and odmfcapp.
make sure loadplotstyletable() located in dwgviewer.cpp is called when trying to reproduce the problem in odamfcapp.
i'm able to reproduce this problem in dwgdirect versions 1.12.04, 1.13.02, and the latest version 1.14.01
can anyone confirm that this is a bug and perhaps suggest immediate workaround?
thanks
codey
attached files

yes, this is a bug. thank you for bugreport. fix will be available in 1.14.02.
about imediate workaround... bug was in function odgsbasevectorizeview::effectiveplotstyle(). the bugfree edition of this function is:
code:
const odpsplotstyledata& odgsbasevectorizeview::effectiveplotstyle()
{
const odgisubentitytraitsdata& entitytraits = effectivetraits();
// plotstyles are applied only in 2d optimized mode
if(mode() == k2doptimized)
{
odgicontext:styletype pstype = usergicontext()->plotstyletype();
if(pstype == odgicontext::kpsbyname)
{
if(m_psnid!=entitytraits.plotstylenameid())
{
m_psnid = entitytraits.plotstylenameid();
usergicontext()->plotstyle(m_psnid, m_plotstyle);
}
}
else if(pstype == odgicontext::kpsbycolor)
{
if(entitytraits.truecolor().isbyaci())
{
if(m_npenindex != entitytraits.color())
{
m_npenindex = entitytraits.color();
usergicontext()->plotstyle(m_npenindex, m_plotstyle);
}
}
else
{
m_plotstyle = odpsplotstyledata();
m_npenindex = -1;
}
}
else
{
m_plotstyle = odpsplotstyledata();
m_npenindex = -1;
}
}
else
{
m_plotstyle = odpsplotstyledata();
m_npenindex = -1;
}
m_effectiveplotstyle = m_plotstyle;
odcolorref bgcol = device()->getcolor(0);
oduint8 bgred = odgetred(bgcol);
oduint8 bggreen = odgetgreen(bgcol);
oduint8 bgblue = odgetblue(bgcol);
odcmentitycolor effectivecolor;
if(m_plotstyle.color()==odcmentitycolor(0xff,0xff,0xff)) // use entity
{
if(entitytraits.truecolor().isbyaci())
effectivecolor = odtocmcolor(device()->getcolor(entitytraits.color()));
else
effectivecolor = entitytraits.truecolor();
}
else
{
effectivecolor = m_effectiveplotstyle.color();

// in some cases we should reverse colors (cr3162)
// (condition hust like in autocad)
if(effectivecolor == odcmentitycolor(bgred, bggreen, bgblue))
{
if(bgred == 0 && bggreen == 0 && bgblue == 0)
effectivecolor = odcmentitycolor(255, 255, 255);
else if(bgred == 255 && bggreen == 255 && bgblue == 255)
effectivecolor = odcmentitycolor(0, 0, 0);
}
}
// screening
int screening = m_effectiveplotstyle.screening();
if(screening < 100 && screening > 0)
{
::converttorgb(effectivecolor, device());
effectivecolor.setrgb(
(oduint8)odround((double)bgred +
((double)effectivecolor.red() - (double)bgred) * (double)screening / 100.0),
(oduint8)odround((double)bggreen +
((double)effectivecolor.green() - (double)bggreen) * (double)screening / 100.0),
(oduint8)odround((double)bgblue +
((double)effectivecolor.blue() - (double)bgblue) * (double)screening / 100.0)
);
}
else if(screening == 0)
{
effectivecolor = odtocmcolor(bgcol);
}
// grayscale
if(m_effectiveplotstyle.isgrayscaleon())
{
::converttorgb(effectivecolor, device());
oduint8 gray = (oduint8)((30 * effectivecolor.red() + 59 * effectivecolor.green() + 11 * effectivecolor.blue()) / 100);
effectivecolor.setrgb(gray, gray, gray);
}
m_effectiveplotstyle.setcolor(effectivecolor);
int nlineweight = int(m_effectiveplotstyle.lineweight());
if(nlineweight < 0) // use object
m_effectiveplotstyle.setlineweight(double(entitytraits.lineweight()) / 100.);
if(entitytraits.filltype()==kodgifillalways)
{
if(m_effectiveplotstyle.fillstyle()==odps::kfsuseobject)
m_effectiveplotstyle.setfillstyle(odps::kfssolid);
}
else
{
m_effectiveplotstyle.setfillstyle(odps::kfsuseobject);
}
return m_effectiveplotstyle;
}
you probably can implement it in your odgsbasevcetorizeview inheritant (or in your inheritant of our inheritant of odgsbasevectorizeview), and call it in your ontraitsmodified() notification.
sincerely yours,
george udov
do you have code snippets for ::converttorgb(...) used in the workaround code?
thanks,
codey

code:
inline void converttorgb(odcmentitycolor& color, odgsbasevectorizedevice* pdevice)
{
if(color.isbyaci())
color = odtocmcolor(pdevice->getcolor(color.colorindex()));
}
sincerely yours,
george udov
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
回复


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】index color from oddbentity yang686526 DirectDWG 0 2009-05-06 03:52 PM
【转帖】foreground color with plotstyle files yang686526 DirectDWG 0 2009-05-05 11:06 AM
【转帖】color problem with hatch while vectorization yang686526 DirectDWG 0 2009-05-04 05:55 PM
【转帖】哪位高手指点一下下边lisp的怎么用 yang686526 数据库ObjectDBX 0 2009-04-28 12:13 PM
哪位高手指点一下下边lisp的怎么用 yang686526 ObjectARX(AutoLISP) 0 2009-04-26 06:19 PM


所有的时间均为北京时间。 现在的时间是 06:51 PM.


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