forked from organicmaps/organicmaps
[drape, MAP-28] Don't use tiler in backend renderer.
This commit is contained in:
parent
ab3a09fd25
commit
48f02bce02
2 changed files with 47 additions and 21 deletions
|
@ -13,6 +13,8 @@
|
|||
|
||||
#include "../std/bind.hpp"
|
||||
|
||||
#include "../indexer/mercator.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
void PostFinishTask(RefPointer<df::ThreadsCommutator> commutator, threads::IRoutine * routine)
|
||||
|
@ -62,16 +64,15 @@ namespace df
|
|||
StopThread();
|
||||
}
|
||||
|
||||
void BackendRenderer::UpdateCoverage(const ScreenBase & screen)
|
||||
void BackendRenderer::UpdateCoverage(ScreenBase const & screen)
|
||||
{
|
||||
m_tiler.seed(screen, screen.GlobalRect().GlobalCenter(), m_scaleProcessor.GetTileSize());
|
||||
|
||||
vector<Tiler::RectInfo> tiles;
|
||||
m_tiler.tiles(tiles, 1);
|
||||
set<TileKey> tilesKeysSet;
|
||||
GetTileKeys(tilesKeysSet, screen);
|
||||
|
||||
if (!m_currentViewport.GlobalRect().IsIntersect(screen.GlobalRect()) ||
|
||||
m_scaleProcessor.GetTileScaleBase(m_currentViewport) != m_scaleProcessor.GetTileScaleBase(screen))
|
||||
{
|
||||
|
||||
typedef set<ReadMWMTask *>::iterator index_iter;
|
||||
for (index_iter it = m_taskIndex.begin(); it != m_taskIndex.end(); ++it)
|
||||
CancelTask(*it, false, false);
|
||||
|
@ -79,30 +80,21 @@ namespace df
|
|||
m_taskIndex.clear();
|
||||
PostToRenderThreads(MovePointer<Message>(new DropCoverageMessage()));
|
||||
|
||||
for (size_t i = 0; i < tiles.size(); ++i)
|
||||
{
|
||||
const Tiler::RectInfo & info = tiles[i];
|
||||
CreateTask(TileKey(info.m_x, info.m_y, info.m_tileScale));
|
||||
}
|
||||
typedef set<TileKey>::iterator tile_keys_iterator;
|
||||
for (tile_keys_iterator it = tilesKeysSet.begin(); it != tilesKeysSet.end(); ++it)
|
||||
CreateTask(*it);
|
||||
}
|
||||
else
|
||||
{
|
||||
set<TileKey> rectInfoSet;
|
||||
for (size_t i = 0 ; i < tiles.size(); ++i)
|
||||
{
|
||||
const Tiler::RectInfo & info = tiles[i];
|
||||
rectInfoSet.insert(TileKey(info.m_x, info.m_y, info.m_tileScale));
|
||||
}
|
||||
|
||||
// Find rects that go out from viewport
|
||||
buffer_vector<ReadMWMTask *, 8> outdatedTasks;
|
||||
set_difference(m_taskIndex.begin(), m_taskIndex.end(),
|
||||
rectInfoSet.begin(), rectInfoSet.end(),
|
||||
tilesKeysSet.begin(), tilesKeysSet.end(),
|
||||
back_inserter(outdatedTasks), CoverageCellComparer());
|
||||
|
||||
// Find rects that go in into viewport
|
||||
buffer_vector<TileKey, 8> inputRects;
|
||||
set_difference(rectInfoSet.begin(), rectInfoSet.end(),
|
||||
set_difference(tilesKeysSet.begin(), tilesKeysSet.end(),
|
||||
m_taskIndex.begin(), m_taskIndex.end(),
|
||||
back_inserter(inputRects), CoverageCellComparer());
|
||||
|
||||
|
@ -167,6 +159,37 @@ namespace df
|
|||
}
|
||||
}
|
||||
|
||||
void BackendRenderer::GetTileKeys(set<TileKey> & out, ScreenBase const & screen)
|
||||
{
|
||||
out.clear();
|
||||
|
||||
int const tileScale = m_scaleProcessor.GetTileScaleBase(screen);
|
||||
// equal for x and y
|
||||
double const range = MercatorBounds::maxX - MercatorBounds::minX;
|
||||
double const rectSize = range / (1 << tileScale);
|
||||
|
||||
m2::AnyRectD const & globalRect = screen.GlobalRect();
|
||||
m2::RectD const & clipRect = globalRect.GetGlobalRect();
|
||||
|
||||
int const minTileX = static_cast<int>(floor(clipRect.minX() / rectSize));
|
||||
int const maxTileX = static_cast<int>(ceil(clipRect.maxX() / rectSize));
|
||||
int const minTileY = static_cast<int>(floor(clipRect.minY() / rectSize));
|
||||
int const maxTileY = static_cast<int>(ceil(clipRect.maxY() / rectSize));
|
||||
|
||||
for (int tileY = minTileY; tileY < maxTileY; ++tileY)
|
||||
for (int tileX = minTileX; tileX < maxTileX; ++tileX)
|
||||
{
|
||||
double const left = tileX * rectSize;
|
||||
double const top = tileY * rectSize;
|
||||
|
||||
m2::RectD currentTileRect(left, top,
|
||||
left + rectSize, top + rectSize);
|
||||
|
||||
if (globalRect.IsIntersect(m2::AnyRectD(currentTileRect)))
|
||||
out.insert(TileKey(tileX, tileY, tileScale));
|
||||
}
|
||||
}
|
||||
|
||||
/////////////////////////////////////////
|
||||
// MessageAcceptor //
|
||||
/////////////////////////////////////////
|
||||
|
|
|
@ -9,8 +9,9 @@
|
|||
#include "../drape/pointers.hpp"
|
||||
#include "../drape/oglcontextfactory.hpp"
|
||||
|
||||
#include "../geometry/screenbase.hpp"
|
||||
|
||||
#include "../map/scales_processor.hpp"
|
||||
#include "../map/tiler.hpp"
|
||||
|
||||
#include "../base/thread.hpp"
|
||||
#include "../base/thread_pool.hpp"
|
||||
|
@ -53,8 +54,10 @@ namespace df
|
|||
|
||||
/////////////////////////////////////////
|
||||
/// Calculate rect for read from MWM
|
||||
Tiler m_tiler;
|
||||
ScalesProcessor m_scaleProcessor;
|
||||
|
||||
void GetTileKeys(set<TileKey> & out,
|
||||
ScreenBase const & screen);
|
||||
/////////////////////////////////////////
|
||||
|
||||
/////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Reference in a new issue