taking "font outline" into account while calculating text priority.

This commit is contained in:
rachytski 2011-02-11 22:44:22 +02:00 committed by Alex Zolotarev
parent 41fc8eb3e8
commit 7881093146
2 changed files with 10 additions and 10 deletions

View file

@ -36,7 +36,7 @@ namespace yg
/// lies inside the testing rect and therefore should be skipped.
if (m_needRedraw)
{
pTextRenderer->drawTextImpl(m_pt, 0.0, m_size, m_color, m_utf8Text, m_isMasked, m_maskColor, yg::maxDepth, m_isFixedFont, m_log2vis);
pTextRenderer->drawTextImpl(m_pt, 0.0, m_size, m_color, m_utf8Text, true, m_maskColor, yg::maxDepth, m_isFixedFont, m_log2vis);
/// boosting its depth to "out of range" value,
/// to mark it as a rendered text and prevent it from
/// popping out of tree, when more important text arrives
@ -59,6 +59,12 @@ namespace yg
m_pt += offs;
}
bool TextRenderer::TextObj::better_text(TextObj const & r1, TextObj const & r2)
{
if ((r1.m_isMasked) && (!r2.m_isMasked))
return true;
return r1.m_depth > r2.m_depth;
}
void TextRenderer::drawText(m2::PointD const & pt,
float angle,
@ -72,12 +78,12 @@ namespace yg
bool log2vis)
{
if (isFixedFont)
drawTextImpl(pt, angle, fontSize, color, utf8Text, isMasked, maskColor, depth, isFixedFont, log2vis);
drawTextImpl(pt, angle, fontSize, color, utf8Text, true, maskColor, depth, isFixedFont, log2vis);
else
{
TextObj obj(pt, utf8Text, fontSize, color, isMasked, maskColor, depth, isFixedFont, log2vis);
m2::RectD r = obj.GetLimitRect(this);
m_tree.ReplaceIf(obj, r, TextObj::better_depth());
m_tree.ReplaceIf(obj, r, &TextObj::better_text);
}
}

View file

@ -46,13 +46,7 @@ namespace yg
void SetNeedRedraw(bool needRedraw) const;
void Offset(m2::PointD const & pt);
struct better_depth
{
bool operator() (TextObj const & r1, TextObj const & r2) const
{
return r1.m_depth > r2.m_depth;
}
};
static bool better_text(TextObj const & r1, TextObj const & r2);
};
m4::Tree<TextObj> m_tree;