From e5e934290b87459ebc2bf3886cad11dd19f6c1e6 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 16 Mar 2017 18:30:47 +0300 Subject: [PATCH] Added support of multiple symbols textures --- drape/symbols_texture.cpp | 34 ++++++++++------ drape/symbols_texture.hpp | 15 ++++--- drape/texture_manager.cpp | 47 ++++++++++++++++++---- drape/texture_manager.hpp | 11 ++--- drape_frontend/watch/software_renderer.cpp | 3 +- 5 files changed, 78 insertions(+), 32 deletions(-) diff --git a/drape/symbols_texture.cpp b/drape/symbols_texture.cpp index 4bdad9334f..d66b2fd1f3 100644 --- a/drape/symbols_texture.cpp +++ b/drape/symbols_texture.cpp @@ -20,8 +20,6 @@ namespace dp namespace { -string const SymbolsTextureName = "symbols"; - using TDefinitionInserter = function; using TSymbolsLoadingCompletion = function; using TSymbolsLoadingFailure = function; @@ -114,8 +112,8 @@ private: m2::RectF m_rect; }; -void LoadSymbols(string const & skinPathName, bool convertToUV, - TDefinitionInserter const & definitionInserter, +void LoadSymbols(std::string const & skinPathName, std::string const & textureName, + bool convertToUV, TDefinitionInserter const & definitionInserter, TSymbolsLoadingCompletion const & completionHandler, TSymbolsLoadingFailure const & failureHandler) { @@ -131,7 +129,7 @@ void LoadSymbols(string const & skinPathName, bool convertToUV, DefinitionLoader loader(definitionInserter, convertToUV); { - ReaderPtr reader = GetStyleReader().GetResourceReader(SymbolsTextureName + ".sdf", skinPathName); + ReaderPtr reader = GetStyleReader().GetResourceReader(textureName + ".sdf", skinPathName); ReaderSource > source(reader); if (!ParseXML(source, loader)) { @@ -144,7 +142,7 @@ void LoadSymbols(string const & skinPathName, bool convertToUV, } { - ReaderPtr reader = GetStyleReader().GetResourceReader(SymbolsTextureName + ".png", skinPathName); + ReaderPtr reader = GetStyleReader().GetResourceReader(textureName + ".png", skinPathName); size_t const size = static_cast(reader.Size()); rawData.resize(size); reader.Read(0, &rawData[0], size); @@ -201,16 +199,18 @@ Texture::ResourceType SymbolsTexture::SymbolInfo::GetType() const return Symbol; } -SymbolsTexture::SymbolsTexture(string const & skinPathName, ref_ptr allocator) +SymbolsTexture::SymbolsTexture(std::string const & skinPathName, std::string const & textureName, + ref_ptr allocator) + : m_name(textureName) { Load(skinPathName, allocator); } -void SymbolsTexture::Load(string const & skinPathName, ref_ptr allocator) +void SymbolsTexture::Load(std::string const & skinPathName, ref_ptr allocator) { auto definitionInserter = [this](string const & name, m2::RectF const & rect) { - m_definition.insert(make_pair(name, SymbolsTexture::SymbolInfo(rect))); + m_definition.insert(std::make_pair(name, SymbolsTexture::SymbolInfo(rect))); }; auto completionHandler = [this, &allocator](unsigned char * data, uint32_t width, uint32_t height) @@ -230,7 +230,8 @@ void SymbolsTexture::Load(string const & skinPathName, ref_ptr allocator) @@ -267,8 +268,14 @@ void SymbolsTexture::Fail() Create(p, make_ref(&alfaTexture)); } -bool SymbolsTexture::DecodeToMemory(string const & skinPathName, vector & symbolsSkin, - map & symbolsIndex, +bool SymbolsTexture::IsSymbolContained(std::string const & symbolName) const +{ + return m_definition.find(symbolName) != m_definition.end(); +} + +bool SymbolsTexture::DecodeToMemory(std::string const & skinPathName, std::string const & textureName, + vector & symbolsSkin, + std::map & symbolsIndex, uint32_t & skinWidth, uint32_t & skinHeight) { auto definitionInserter = [&symbolsIndex](string const & name, m2::RectF const & rect) @@ -294,7 +301,8 @@ bool SymbolsTexture::DecodeToMemory(string const & skinPathName, vector result = false; }; - LoadSymbols(skinPathName, false /* convertToUV */, definitionInserter, completionHandler, failureHandler); + LoadSymbols(skinPathName, textureName, false /* convertToUV */, + definitionInserter, completionHandler, failureHandler); return result; } diff --git a/drape/symbols_texture.hpp b/drape/symbols_texture.hpp index 219f7f4e53..9d022d4d37 100644 --- a/drape/symbols_texture.hpp +++ b/drape/symbols_texture.hpp @@ -30,20 +30,25 @@ public: virtual ResourceType GetType() const; }; - explicit SymbolsTexture(string const & skinPathName, ref_ptr allocator); + SymbolsTexture(std::string const & skinPathName, std::string const & textureName, + ref_ptr allocator); ref_ptr FindResource(Key const & key, bool & newResource) override; void Invalidate(string const & skinPathName, ref_ptr allocator); - static bool DecodeToMemory(string const & skinPathName, vector & symbolsSkin, - map & symbolsIndex, + bool IsSymbolContained(std::string const & symbolName) const; + + static bool DecodeToMemory(std::string const & skinPathName, std::string const & textureName, + vector & symbolsSkin, + std::map & symbolsIndex, uint32_t & skinWidth, uint32_t & skinHeight); private: void Fail(); - void Load(string const & skinPathName, ref_ptr allocator); + void Load(std::string const & skinPathName, ref_ptr allocator); - typedef map TSymDefinition; + using TSymDefinition = map; + std::string m_name; mutable TSymDefinition m_definition; }; diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index 531e1215fc..bbe0e5ccc5 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -37,6 +37,8 @@ size_t const kReservedColors = 20; float const kGlyphAreaMultiplier = 1.2f; float const kGlyphAreaCoverage = 0.9f; +std::string kSymbolTextures[] = { "symbols" }; + namespace { @@ -145,7 +147,9 @@ void TextureManager::BaseRegion::SetTexture(ref_ptr texture) m2::PointF TextureManager::BaseRegion::GetPixelSize() const { - ASSERT(IsValid(), ()); + if (!IsValid()) + return m2::PointF(0.0f, 0.0f); + m2::RectF const & texRect = m_info->GetTexRect(); return m2::PointF(texRect.SizeX() * m_texture->GetWidth(), texRect.SizeY() * m_texture->GetHeight()); @@ -153,11 +157,20 @@ m2::PointF TextureManager::BaseRegion::GetPixelSize() const float TextureManager::BaseRegion::GetPixelHeight() const { + if (!IsValid()) + return 0.0f; + return m_info->GetTexRect().SizeY() * m_texture->GetHeight(); } m2::RectF const & TextureManager::BaseRegion::GetTexRect() const { + if (!IsValid()) + { + static m2::RectF nilRect(0.0f, 0.0f, 0.0f, 0.0f); + return nilRect; + } + return m_info->GetTexRect(); } @@ -207,7 +220,7 @@ void TextureManager::Release() m_glyphGroups.clear(); m_hybridGlyphGroups.clear(); - m_symbolTexture.reset(); + m_symbolTextures.clear(); m_stipplePenTexture.reset(); m_colorTexture.reset(); @@ -380,7 +393,11 @@ void TextureManager::Init(Params const & params) GLFunctions::glPixelStore(gl_const::GLUnpackAlignment, 1); - m_symbolTexture = make_unique_dp(params.m_resPostfix, make_ref(m_textureAllocator)); + for (size_t i = 0; i < ARRAY_SIZE(kSymbolTextures); ++i) + { + m_symbolTextures.push_back(make_unique_dp(params.m_resPostfix, kSymbolTextures[i], + make_ref(m_textureAllocator))); + } m_trafficArrowTexture = make_unique_dp("traffic-arrow", params.m_resPostfix, make_ref(m_textureAllocator)); @@ -454,9 +471,12 @@ void TextureManager::Init(Params const & params) void TextureManager::Invalidate(string const & resPostfix) { - ASSERT(m_symbolTexture != nullptr, ()); - ref_ptr symbolsTexture = make_ref(m_symbolTexture); - symbolsTexture->Invalidate(resPostfix, make_ref(m_textureAllocator)); + for (size_t i = 0; i < m_symbolTextures.size(); ++i) + { + ASSERT(m_symbolTextures[i] != nullptr, ()); + ref_ptr symbolsTexture = make_ref(m_symbolTextures[i]); + symbolsTexture->Invalidate(resPostfix, make_ref(m_textureAllocator)); + } ASSERT(m_trafficArrowTexture != nullptr, ()); ref_ptr staticTexture = make_ref(m_trafficArrowTexture); @@ -465,7 +485,17 @@ void TextureManager::Invalidate(string const & resPostfix) void TextureManager::GetSymbolRegion(string const & symbolName, SymbolRegion & region) { - GetRegionBase(make_ref(m_symbolTexture), region, SymbolsTexture::SymbolKey(symbolName)); + for (size_t i = 0; i < m_symbolTextures.size(); ++i) + { + ASSERT(m_symbolTextures[i] != nullptr, ()); + ref_ptr symbolsTexture = make_ref(m_symbolTextures[i]); + if (symbolsTexture->IsSymbolContained(symbolName)) + { + GetRegionBase(symbolsTexture, region, SymbolsTexture::SymbolKey(symbolName)); + return; + } + } + LOG(LWARNING, ("Detected using of unknown symbol ", symbolName)); } void TextureManager::GetStippleRegion(TStipplePattern const & pen, StippleRegion & region) @@ -515,7 +545,8 @@ bool TextureManager::AreGlyphsReady(strings::UniString const & str, int fixedHei ref_ptr TextureManager::GetSymbolsTexture() const { - return make_ref(m_symbolTexture); + ASSERT(!m_symbolTextures.empty(), ()); + return make_ref(m_symbolTextures[0]); } ref_ptr TextureManager::GetTrafficArrowTexture() const diff --git a/drape/texture_manager.hpp b/drape/texture_manager.hpp index 60d18f18a7..5459f87b7d 100644 --- a/drape/texture_manager.hpp +++ b/drape/texture_manager.hpp @@ -8,8 +8,9 @@ #include "base/string_utils.hpp" -#include "std/atomic.hpp" -#include "std/unordered_set.hpp" +#include +#include +#include namespace dp { @@ -235,10 +236,10 @@ private: static constexpr size_t GetInvalidGlyphGroup(); private: - drape_ptr m_symbolTexture; + std::vector> m_symbolTextures; drape_ptr m_stipplePenTexture; drape_ptr m_colorTexture; - list> m_glyphTextures; + std::list> m_glyphTextures; drape_ptr m_trafficArrowTexture; @@ -248,7 +249,7 @@ private: buffer_vector m_glyphGroups; buffer_vector m_hybridGlyphGroups; - atomic_flag m_nothingToUpload; + std::atomic_flag m_nothingToUpload; }; } // namespace dp diff --git a/drape_frontend/watch/software_renderer.cpp b/drape_frontend/watch/software_renderer.cpp index b7575c0bc2..7bc1f1d4c0 100644 --- a/drape_frontend/watch/software_renderer.cpp +++ b/drape_frontend/watch/software_renderer.cpp @@ -165,7 +165,8 @@ SoftwareRenderer::SoftwareRenderer(GlyphCache::Params const & glyphCacheParams, pl.GetFontNames(fonts); m_glyphCache->addFonts(fonts); - VERIFY(dp::SymbolsTexture::DecodeToMemory(resourcesPostfix, m_symbolsSkin, m_symbolsIndex, m_skinWidth, m_skinHeight), ()); + VERIFY(dp::SymbolsTexture::DecodeToMemory(resourcesPostfix, "symbols", + m_symbolsSkin, m_symbolsIndex, m_skinWidth, m_skinHeight), ()); ASSERT_NOT_EQUAL(m_skinWidth, 0, ()); ASSERT_NOT_EQUAL(m_skinHeight, 0, ()); }