forked from organicmaps/organicmaps
[drape] mock read task for debug
This commit is contained in:
parent
9007fbe744
commit
f9e1d2bcfb
1 changed files with 35 additions and 0 deletions
|
@ -1,7 +1,38 @@
|
|||
#include "read_mwm_task.hpp"
|
||||
|
||||
#include "area_shape.hpp"
|
||||
|
||||
#include "../std/vector.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
df::AreaShape * CreateFakeShape1()
|
||||
{
|
||||
df::AreaShape * shape = new df::AreaShape(Extract(0xFFEEAABB));
|
||||
shape->AddTriangle(m2::PointF(0.0f, 0.0f),
|
||||
m2::PointF(1.0f, 0.0f),
|
||||
m2::PointF(0.0f, 1.0f));
|
||||
|
||||
shape->AddTriangle(m2::PointF(1.0f, 0.0f),
|
||||
m2::PointF(0.0f, 1.0f),
|
||||
m2::PointF(1.0f, 1.0f));
|
||||
return shape;
|
||||
}
|
||||
|
||||
df::AreaShape * CreateFakeShape2()
|
||||
{
|
||||
df::AreaShape * shape = new df::AreaShape(Extract(0xFF66AAFF));
|
||||
shape->AddTriangle(m2::PointF(0.0f, 0.5f),
|
||||
m2::PointF(0.5f, 1.5f),
|
||||
m2::PointF(0.5f, 0.0f));
|
||||
|
||||
shape->AddTriangle(m2::PointF(0.5f, 0.0f),
|
||||
m2::PointF(0.5f, 1.5f),
|
||||
m2::PointF(1.5f, 0.5f));
|
||||
return shape;
|
||||
}
|
||||
}
|
||||
|
||||
namespace df
|
||||
{
|
||||
ReadMWMTask::ReadMWMTask(TileKey const & tileKey,
|
||||
|
@ -59,12 +90,16 @@ namespace df
|
|||
|
||||
void ReadMWMTask::ReadTileIndex()
|
||||
{
|
||||
m_tileInfo.m_featureInfo.push_back(FeatureInfo(FeatureID(0, 1)));
|
||||
m_tileInfo.m_featureInfo.push_back(FeatureInfo(FeatureID(0, 2)));
|
||||
/// TODO read index specified by m_tileInfo(m_x & m_y & m_zoomLevel)
|
||||
/// TODO insert readed FeatureIDs into m_tileInfo.m_featureInfo;
|
||||
}
|
||||
|
||||
void ReadMWMTask::ReadGeometry(const FeatureID & id)
|
||||
{
|
||||
m_context.InsertShape(TileKey(0, 0, 0), MovePointer<MapShape>(CreateFakeShape1()));
|
||||
m_context.InsertShape(TileKey(0, 0, 0), MovePointer<MapShape>(CreateFakeShape2()));
|
||||
///TODO read geometry
|
||||
///TODO proccess geometry by styles
|
||||
///foreach shape in shapes
|
||||
|
|
Loading…
Add table
Reference in a new issue