From 13655d24408d11509c93268d4f3caede3ea317a7 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sat, 16 Nov 2024 00:39:10 -0300 Subject: [PATCH] [drape] Removed dummy fields in StaticTexture. Signed-off-by: Viktor Govako --- drape/static_texture.cpp | 40 +++++++++----------------- drape/static_texture.hpp | 12 ++------ drape/texture_manager.cpp | 14 ++++----- drape/texture_manager.hpp | 5 ++-- drape_frontend/arrow3d.cpp | 20 ++++++------- drape_frontend/backend_renderer.cpp | 14 ++++----- drape_frontend/drape_engine_params.hpp | 9 +++--- 7 files changed, 41 insertions(+), 73 deletions(-) diff --git a/drape/static_texture.cpp b/drape/static_texture.cpp index 974c305d5c..414bc366dd 100644 --- a/drape/static_texture.cpp +++ b/drape/static_texture.cpp @@ -4,11 +4,8 @@ #include "platform/platform.hpp" -#include "coding/parse_xml.hpp" #include "coding/reader.hpp" -#include "base/string_utils.hpp" - #include "3party/stb_image/stb_image.h" #ifdef DEBUG @@ -28,7 +25,7 @@ namespace using TLoadingCompletion = std::function; using TLoadingFailure = std::function; -bool LoadData(std::string const & textureName, std::optional const & skinPathName, +bool LoadData(std::string const & textureName, std::string const & skinPathName, uint8_t bytesPerPixel, TLoadingCompletion const & completionHandler, TLoadingFailure const & failureHandler) { @@ -39,10 +36,10 @@ bool LoadData(std::string const & textureName, std::optional const try { ReaderPtr reader = - skinPathName.has_value() - ? skinPathName.value() == StaticTexture::kDefaultResource + !skinPathName.empty() + ? skinPathName == StaticTexture::kDefaultResource ? GetStyleReader().GetDefaultResourceReader(textureName) - : GetStyleReader().GetResourceReader(textureName, skinPathName.value()) + : GetStyleReader().GetResourceReader(textureName, skinPathName) : GetPlatform().GetReader(textureName); CHECK_LESS(reader.Size(), static_cast(std::numeric_limits::max()), ()); @@ -97,27 +94,17 @@ public: }; } // namespace -StaticTexture::StaticTexture(ref_ptr context, std::string const & textureName, - std::optional const & skinPathName, +StaticTexture::StaticTexture(ref_ptr context, + std::string const & textureName, std::string const & skinPathName, dp::TextureFormat format, ref_ptr allocator, bool allowOptional /* = false */) - : m_textureName(textureName) - , m_skinPathName(skinPathName) - , m_format(format) - , m_allowOptional(allowOptional) - , m_info(make_unique_dp()) +: m_info(make_unique_dp()) { - m_isLoadingCorrect = Load(context, allocator); -} - -bool StaticTexture::Load(ref_ptr context, ref_ptr allocator) -{ - auto completionHandler = [this, &allocator, context](unsigned char * data, uint32_t width, - uint32_t height) + auto completionHandler = [&](unsigned char * data, uint32_t width, uint32_t height) { Texture::Params p; p.m_allocator = allocator; - p.m_format = m_format; + p.m_format = format; p.m_width = width; p.m_height = height; p.m_wrapSMode = TextureWrapping::Repeat; @@ -126,18 +113,17 @@ bool StaticTexture::Load(ref_ptr context, ref_ptr StaticTexture::FindResource(Texture::Key const & key, diff --git a/drape/static_texture.hpp b/drape/static_texture.hpp index 69c8080e8a..699a5d1e42 100644 --- a/drape/static_texture.hpp +++ b/drape/static_texture.hpp @@ -2,7 +2,6 @@ #include "drape/texture.hpp" -#include #include namespace dp @@ -19,8 +18,9 @@ public: static std::string const kDefaultResource; + /// @todo All xxxName can be std::string_view after Platform::GetReader (StyleReader) refactoring. StaticTexture(ref_ptr context, std::string const & textureName, - std::optional const & skinPathName, dp::TextureFormat format, + std::string const & skinPathName, dp::TextureFormat format, ref_ptr allocator, bool allowOptional = false); ref_ptr FindResource(Key const & key, bool & newResource) override; @@ -32,15 +32,9 @@ public: private: void Fail(ref_ptr context); - bool Load(ref_ptr context, ref_ptr allocator); - - std::string const m_textureName; - std::optional const m_skinPathName; - dp::TextureFormat const m_format; - bool const m_allowOptional; drape_ptr m_info; - bool m_isLoadingCorrect; + bool m_isLoadingCorrect = false; }; } // namespace dp diff --git a/drape/texture_manager.cpp b/drape/texture_manager.cpp index 06130e6e11..2dd84f1ba6 100644 --- a/drape/texture_manager.cpp +++ b/drape/texture_manager.cpp @@ -9,15 +9,12 @@ #include "drape/support_manager.hpp" #include "drape/texture_of_colors.hpp" #include "drape/tm_read_resources.hpp" -#include "drape/utils/glyph_usage_tracker.hpp" -#include "base/file_name_utils.hpp" #include "base/math.hpp" #include #include #include -#include #include #include #include @@ -81,15 +78,14 @@ m2::PointU ColorTextureSize(size_t colorsCount, uint32_t maxTextureSize) drape_ptr CreateArrowTexture(ref_ptr context, ref_ptr textureAllocator, - std::optional const & texturePath, + std::string const & texturePath, bool useDefaultResourceFolder) { - if (texturePath.has_value()) + if (!texturePath.empty()) { return make_unique_dp( - context, texturePath.value(), - useDefaultResourceFolder ? std::make_optional(StaticTexture::kDefaultResource) - : std::nullopt /* skinPathName */, + context, texturePath, + useDefaultResourceFolder ? StaticTexture::kDefaultResource : std::string(), dp::TextureFormat::RGBA8, textureAllocator, true /* allowOptional */); } return make_unique_dp(context, "arrow-texture.png", @@ -426,7 +422,7 @@ void TextureManager::OnSwitchMapStyle(ref_ptr context) void TextureManager::InvalidateArrowTexture( ref_ptr context, - std::optional const & texturePath /* = std::nullopt */, + std::string const & texturePath /* = {} */, bool useDefaultResourceFolder /* = false */) { CHECK(m_isInitialized, ()); diff --git a/drape/texture_manager.hpp b/drape/texture_manager.hpp index e135936d2d..01459c3c8a 100644 --- a/drape/texture_manager.hpp +++ b/drape/texture_manager.hpp @@ -1,7 +1,6 @@ #pragma once #include "drape/color.hpp" -#include "drape/font_texture.hpp" #include "drape/glyph_manager.hpp" #include "drape/pointers.hpp" #include "drape/stipple_pen_resource.hpp" // for PenPatternT @@ -73,7 +72,7 @@ public: std::string m_colors; std::string m_patterns; GlyphManager::Params m_glyphMngParams; - std::optional m_arrowTexturePath; + std::string m_arrowTexturePath; // maybe empty if no custom texture bool m_arrowTextureUseDefaultResourceFolder = false; }; @@ -119,7 +118,7 @@ public: ref_ptr GetSMAASearchTexture() const; void InvalidateArrowTexture(ref_ptr context, - std::optional const & texturePath = std::nullopt, + std::string const & texturePath = {}, bool useDefaultResourceFolder = false); // Apply must be called on FrontendRenderer. void ApplyInvalidatedStaticTextures(); diff --git a/drape_frontend/arrow3d.cpp b/drape_frontend/arrow3d.cpp index a3270ee9c2..80b6a81c25 100644 --- a/drape_frontend/arrow3d.cpp +++ b/drape_frontend/arrow3d.cpp @@ -11,7 +11,6 @@ #include "drape/texture_manager.hpp" #include "indexer/map_style_reader.hpp" -#include "indexer/scales.hpp" #include "platform/platform.hpp" @@ -48,8 +47,8 @@ df::ColorConstant const kArrow3DObsoleteColor = "Arrow3DObsolete"; df::ColorConstant const kArrow3DColor = "Arrow3D"; df::ColorConstant const kArrow3DOutlineColor = "Arrow3DOutline"; -std::string_view const kDefaultArrowMesh = "arrow.obj"; -std::string_view const kDefaultArrowShadowMesh = "arrow_shadow.obj"; +std::string const kDefaultArrowMesh = "arrow.obj"; +std::string const kDefaultArrowShadowMesh = "arrow_shadow.obj"; std::string_view const kMainFileId = "main_obj_file_id"; @@ -130,7 +129,7 @@ bool LoadMesh(std::string const & pathToMesh, bool isDefaultResource, ReaderPtr reader = isDefaultResource ? GetStyleReader().GetDefaultResourceReader(pathToMesh) : GetPlatform().GetReader(pathToMesh); - ReaderSource> source(reader); + ReaderSource source(reader); // Read OBJ file. fastObjCallbacks callbacks; @@ -197,12 +196,10 @@ Arrow3d::PreloadedData Arrow3d::PreloadMesh(std::optional con { Arrow3d::PreloadedData data; - bool const useDefaultResource = - !customDecl.has_value() || customDecl->m_loadFromDefaultResourceFolder; + bool const useDefaultResource = !customDecl || customDecl->m_loadFromDefaultResourceFolder; // Load arrow mesh. - auto const meshPath = - customDecl.has_value() ? customDecl->m_arrowMeshPath : std::string(kDefaultArrowMesh); + auto const & meshPath = customDecl ? customDecl->m_arrowMeshPath : kDefaultArrowMesh; data.m_meshData = PreloadedMeshData{}; if (!LoadMesh( meshPath, useDefaultResource, @@ -247,13 +244,12 @@ Arrow3d::PreloadedData Arrow3d::PreloadMesh(std::optional con } // Load shadow arrow mesh. - auto const shadowMeshPath = - customDecl.has_value() ? customDecl->m_shadowMeshPath : std::string(kDefaultArrowShadowMesh); - if (shadowMeshPath.has_value()) + auto const & shadowMeshPath = customDecl ? customDecl->m_shadowMeshPath : kDefaultArrowShadowMesh; + if (!shadowMeshPath.empty()) { data.m_shadowMeshData = PreloadedMeshData{}; LoadMesh( - shadowMeshPath.value(), useDefaultResource, + shadowMeshPath, useDefaultResource, [&](std::vector positions, std::vector /* normals */, std::vector texCoords) { diff --git a/drape_frontend/backend_renderer.cpp b/drape_frontend/backend_renderer.cpp index 5ca3dcdabe..84ece2b6ac 100644 --- a/drape_frontend/backend_renderer.cpp +++ b/drape_frontend/backend_renderer.cpp @@ -621,10 +621,8 @@ void BackendRenderer::AcceptMessage(ref_ptr message) CHECK(m_context != nullptr, ()); m_texMng->InvalidateArrowTexture( m_context, - m_arrow3dCustomDecl.has_value() ? m_arrow3dCustomDecl->m_arrowMeshTexturePath - : std::nullopt, - m_arrow3dCustomDecl.has_value() ? m_arrow3dCustomDecl->m_loadFromDefaultResourceFolder - : false); + m_arrow3dCustomDecl ? m_arrow3dCustomDecl->m_arrowMeshTexturePath : std::string(), + m_arrow3dCustomDecl ? m_arrow3dCustomDecl->m_loadFromDefaultResourceFolder : false); // Preload mesh data. m_arrow3dPreloadedData = Arrow3d::PreloadMesh(m_arrow3dCustomDecl, m_texMng); @@ -732,7 +730,7 @@ void BackendRenderer::Routine::Do() m_renderer.IterateRenderLoop(); m_renderer.ReleaseResources(); } - + void BackendRenderer::RenderFrame() { CHECK(m_context != nullptr, ()); @@ -767,11 +765,11 @@ void BackendRenderer::InitContextDependentResources() params.m_glyphMngParams.m_whitelist = "fonts_whitelist.txt"; params.m_glyphMngParams.m_blacklist = "fonts_blacklist.txt"; GetPlatform().GetFontNames(params.m_glyphMngParams.m_fonts); - if (m_arrow3dCustomDecl.has_value()) + + if (m_arrow3dCustomDecl) { params.m_arrowTexturePath = m_arrow3dCustomDecl->m_arrowMeshTexturePath; - params.m_arrowTextureUseDefaultResourceFolder = - m_arrow3dCustomDecl->m_loadFromDefaultResourceFolder; + params.m_arrowTextureUseDefaultResourceFolder = m_arrow3dCustomDecl->m_loadFromDefaultResourceFolder; } CHECK(m_context != nullptr, ()); diff --git a/drape_frontend/drape_engine_params.hpp b/drape_frontend/drape_engine_params.hpp index 633df32d88..7a8538b559 100644 --- a/drape_frontend/drape_engine_params.hpp +++ b/drape_frontend/drape_engine_params.hpp @@ -2,7 +2,6 @@ #include "geometry/point3d.hpp" -#include #include namespace df @@ -13,11 +12,11 @@ struct Arrow3dCustomDecl // Path to arrow mesh .OBJ file. std::string m_arrowMeshPath; // Path to arrow mesh texture .PNG file. - // If it's not set, default arrow color is used. - std::optional m_arrowMeshTexturePath; + // If it's empty, default arrow color is used. + std::string m_arrowMeshTexturePath; // Path to shadow mesh .OBJ file. - // If it's not set, no shadow or outline will be rendered. - std::optional m_shadowMeshPath; + // If it's empty, no shadow or outline will be rendered. + std::string m_shadowMeshPath; // Allows to load files from bundled resources. // You must use string identifiers of resources instead of file names.