[drape] remove useless. Add debug rendering.

This commit is contained in:
ExMix 2014-11-18 10:47:39 +03:00 committed by Alex Zolotarev
parent 455b076ef4
commit 69f4cf69c8
2 changed files with 42 additions and 2 deletions

View file

@ -1,7 +1,15 @@
#include "engine_context.hpp"
//#define DRAW_TILE_NET
#include "message_subclasses.hpp"
#include "map_shape.hpp"
#ifdef DRAW_TILE_NET
#include "line_shape.hpp"
#include "text_shape.hpp"
#include "../base/string_utils.hpp"
#endif
namespace df
{
@ -23,6 +31,40 @@ void EngineContext::InsertShape(TileKey const & key, dp::TransferPointer<MapShap
void EngineContext::EndReadTile(TileKey const & key)
{
#ifdef DRAW_TILE_NET
m2::RectD r = key.GetGlobalRect();
vector<m2::PointD> path;
path.push_back(r.LeftBottom());
path.push_back(r.LeftTop());
path.push_back(r.RightTop());
path.push_back(r.RightBottom());
path.push_back(r.LeftBottom());
m2::SharedSpline spline(path);
df::LineViewParams p;
p.m_baseGtoPScale = 1.0;
p.m_cap = dp::ButtCap;
p.m_color = dp::Color(255, 0, 0, 255);
p.m_depth = 20000;
p.m_width = 5;
p.m_join = dp::RoundJoin;
InsertShape(key, dp::MovePointer<df::MapShape>(new LineShape(spline, p)));
df::TextViewParams tp;
tp.m_anchor = dp::Center;
tp.m_depth = 20000;
tp.m_primaryText = strings::to_string(key.m_x) + " " +
strings::to_string(key.m_y) + " " +
strings::to_string(key.m_zoomLevel);
tp.m_primaryTextFont = df::FontDecl{ dp::Color(255, 0, 0, 255),
dp::Color(0, 0, 0, 0),
30, true};
InsertShape(key, dp::MovePointer<df::MapShape>(new TextShape(r.Center(), tp)));
#endif
PostMessage(new TileReadEndMessage(key));
}

View file

@ -4,8 +4,6 @@
#include "../drape/pointers.hpp"
#include "../map/scales_processor.hpp"
namespace df
{