Proto drawing rules store width in pixels now.

Left compatibility with binary drawing rules.
This commit is contained in:
vng 2011-11-15 17:43:27 +03:00 committed by Alex Zolotarev
parent 7eac53c6c3
commit ea292c3106
5 changed files with 9585 additions and 9022 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,6 @@
#include "classificator_loader.hpp"
#include "classificator.hpp"
#include "drawing_rules.hpp"
#include "drules_struct.pb.h"
#include "../../platform/platform.hpp"
@ -63,6 +62,6 @@ namespace classificator
drule::ReadRules(rulesS);
#endif
LOG(LINFO, ("Reading of classificator done"));
LOG(LINFO, ("Reading of classificator finished"));
}
}

View file

@ -1086,6 +1086,13 @@ namespace
RulesHolder & m_rules;
ContainerProto & m_cont;
double m_factor;
double ToPixels(double d) const
{
return d * m_factor;
}
static int32_t GetStoringAlpha(BaseRule const * pSrc)
{
// 255 is default value for BaseRule - completely visible
@ -1104,38 +1111,43 @@ namespace
return (pSrc->GetFillColor() | GetStoringAlpha(pSrc));
}
static void ConvertImpl(BaseRule const * pSrc, LineRuleProto * pDest)
void ConvertImpl(BaseRule const * pSrc, LineRuleProto * pDest) const
{
pDest->set_width(pSrc->GetWidth());
pDest->set_width(ToPixels(pSrc->GetWidth()));
pDest->set_color(GetColor(pSrc));
vector<double> dd;
double dummy;
pSrc->GetPattern(dd, dummy);
double offset;
pSrc->GetPattern(dd, offset);
if (!dd.empty())
{
DashDotProto * p = pDest->mutable_dashdot();
for_each(dd.begin(), dd.end(), bind(&DashDotProto::add_dd, p, _1));
for (size_t i = 0; i < dd.size(); ++i)
p->add_dd(ToPixels(dd[i]));
if (offset != 0.0)
p->set_offset(ToPixels(offset));
}
}
static void ConvertImpl(BaseRule const * pSrc, AreaRuleProto * pDest)
void ConvertImpl(BaseRule const * pSrc, AreaRuleProto * pDest) const
{
pDest->set_color(GetFillColor(pSrc));
if (pSrc->GetColor() != -1)
ConvertImpl(pSrc, pDest->mutable_border());
}
static void ConvertImpl(BaseRule const * pSrc, SymbolRuleProto * pDest)
void ConvertImpl(BaseRule const * pSrc, SymbolRuleProto * pDest) const
{
string s;
pSrc->GetSymbol(s);
pDest->set_name(s);
}
static void ConvertImpl(BaseRule const * pSrc, CaptionRuleProto * pDest)
void ConvertImpl(BaseRule const * pSrc, CaptionRuleProto * pDest) const
{
pDest->set_height(pSrc->GetTextHeight());
pDest->set_height(ToPixels(pSrc->GetTextHeight()));
if (pSrc->GetFillColor() != -1)
pDest->set_color(GetFillColor(pSrc));
@ -1143,14 +1155,14 @@ namespace
pDest->set_stroke_color(GetColor(pSrc));
}
static void ConvertImpl(BaseRule const * pSrc, CircleRuleProto * pDest)
void ConvertImpl(BaseRule const * pSrc, CircleRuleProto * pDest) const
{
pDest->set_radius(pSrc->GetRadius());
pDest->set_radius(ToPixels(pSrc->GetRadius()));
pDest->set_color(GetFillColor(pSrc));
}
template <class T>
static void Convert(BaseRule const * pSrc, int priority, T * pDest)
void Convert(BaseRule const * pSrc, int priority, T * pDest) const
{
pDest->set_priority(priority);
ConvertImpl(pSrc, pDest);
@ -1197,6 +1209,7 @@ namespace
{
pDE = pCE->add_element();
pDE->set_scale(keys[i].m_scale);
m_factor = scales::GetM2PFactor(keys[i].m_scale);
}
BaseRule const * pRule = m_rules.Find(keys[i]);
@ -1260,6 +1273,9 @@ namespace
v.reserve(count);
for (int i = 0; i < count; ++i)
v.push_back(dd.dd(i));
if (dd.has_offset())
offset = dd.offset();
}
}
@ -1332,7 +1348,11 @@ namespace
{
SymbolRuleProto m_symbol;
public:
Symbol(SymbolRuleProto const & r) : m_symbol(r) {}
Symbol(SymbolRuleProto const & r) : m_symbol(r)
{
if (r.has_apply_for_type())
SetType(r.apply_for_type());
}
virtual void GetSymbol(string & name) const
{

View file

@ -27,7 +27,7 @@ namespace drule
public:
static uint32_t const empty_id = 0xFFFFFFFF;
BaseRule()
BaseRule() : m_type(node | way)
{
}
@ -80,15 +80,7 @@ namespace drule
void SetClassName(string const & cl) { m_class = cl; }
void SetType(char type) { m_type = type; }
inline char GetType() const
{
#ifdef USE_PROTO_STYLES
// Assume that they all are acceptable.
return (node | way);
#else
return m_type;
#endif
}
inline char GetType() const { return m_type; }
bool IsEqualBase(BaseRule const * p) const { return (m_type == p->m_type); }
void ReadBase(ReaderPtrStream & ar);

View file

@ -309,7 +309,12 @@ double DrawerYG::VisualScale() const
void DrawerYG::SetScale(int level)
{
m_level = level;
#ifdef USE_PROTO_STYLES
m_scale = 1.0;
#else
m_scale = scales::GetM2PFactor(level);
#endif
}
void DrawerYG::Draw(di::DrawInfo const * pInfo, di::DrawRule const * rules, size_t count)