diff --git a/android/res/values/dimens.xml b/android/res/values/dimens.xml index 193692e67b..08d37b7098 100644 --- a/android/res/values/dimens.xml +++ b/android/res/values/dimens.xml @@ -77,8 +77,6 @@ 26dp 10dp 58dp - 10dp - 58dp 40dp 20dp 2dp diff --git a/android/src/com/mapswithme/maps/MapFragment.java b/android/src/com/mapswithme/maps/MapFragment.java index d939630ef6..6cca03f7df 100644 --- a/android/src/com/mapswithme/maps/MapFragment.java +++ b/android/src/com/mapswithme/maps/MapFragment.java @@ -44,7 +44,6 @@ public class MapFragment extends BaseMwmFragment private static final int WIDGET_COMPASS = 0x02; private static final int WIDGET_COPYRIGHT = 0x04; private static final int WIDGET_SCALE_FPS_LABEL = 0x08; - private static final int WIDGET_WATERMARK = 0x10; // Should correspond to dp::Anchor from drape_global.hpp private static final int ANCHOR_CENTER = 0x00; @@ -107,14 +106,11 @@ public class MapFragment extends BaseMwmFragment private void setupWidgetOffsets() { int rulerOffset = 0; - int watermarkOffset = 0; if (mWidgetOffsetsProvider != null) { rulerOffset = mWidgetOffsetsProvider.getRulerOffsetY(); - watermarkOffset = mWidgetOffsetsProvider.getWaterMarkOffsetY(); } setupRuler(rulerOffset, false); - setupWatermark(watermarkOffset, false); } void setupCompass(int offsetY, boolean forceRedraw) @@ -142,17 +138,6 @@ public class MapFragment extends BaseMwmFragment nativeApplyWidgets(); } - void setupWatermark(int offsetY, boolean forceRedraw) - { - Context context = requireContext(); - nativeSetupWidget(WIDGET_WATERMARK, - mWidth - UiUtils.dimen(context, R.dimen.margin_watermark_right), - mHeight - UiUtils.dimen(context, R.dimen.margin_watermark_bottom) + offsetY, - ANCHOR_RIGHT_BOTTOM); - if (forceRedraw && mSurfaceCreated) - nativeApplyWidgets(); - } - private void reportUnsupported() { new AlertDialog.Builder(requireActivity()) diff --git a/data/resources-default/default.ui b/data/resources-default/default.ui index d2dd14fbf7..e808493d6a 100644 --- a/data/resources-default/default.ui +++ b/data/resources-default/default.ui @@ -35,16 +35,4 @@ - - - - - - - - - - - - diff --git a/data/styles/clear/style-clear/6plus/watermark.png b/data/styles/clear/style-clear/6plus/watermark.png deleted file mode 100644 index f6ca308509..0000000000 Binary files a/data/styles/clear/style-clear/6plus/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-clear/hdpi/watermark.png b/data/styles/clear/style-clear/hdpi/watermark.png deleted file mode 100644 index 51664e3290..0000000000 Binary files a/data/styles/clear/style-clear/hdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-clear/mdpi/watermark.png b/data/styles/clear/style-clear/mdpi/watermark.png deleted file mode 100644 index 3524fb626a..0000000000 Binary files a/data/styles/clear/style-clear/mdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-clear/xhdpi/watermark.png b/data/styles/clear/style-clear/xhdpi/watermark.png deleted file mode 100644 index 42ff49bc97..0000000000 Binary files a/data/styles/clear/style-clear/xhdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-clear/xxhdpi/watermark.png b/data/styles/clear/style-clear/xxhdpi/watermark.png deleted file mode 100644 index 25c8821b51..0000000000 Binary files a/data/styles/clear/style-clear/xxhdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-clear/xxxhdpi/watermark.png b/data/styles/clear/style-clear/xxxhdpi/watermark.png deleted file mode 100644 index 1f366dc5ce..0000000000 Binary files a/data/styles/clear/style-clear/xxxhdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/6plus/watermark.png b/data/styles/clear/style-night/6plus/watermark.png deleted file mode 100644 index e24eb2a040..0000000000 Binary files a/data/styles/clear/style-night/6plus/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/hdpi/watermark.png b/data/styles/clear/style-night/hdpi/watermark.png deleted file mode 100644 index 9e7a219d1b..0000000000 Binary files a/data/styles/clear/style-night/hdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/mdpi/watermark.png b/data/styles/clear/style-night/mdpi/watermark.png deleted file mode 100644 index 38d6b362b1..0000000000 Binary files a/data/styles/clear/style-night/mdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/xhdpi/watermark.png b/data/styles/clear/style-night/xhdpi/watermark.png deleted file mode 100644 index da39bf8a71..0000000000 Binary files a/data/styles/clear/style-night/xhdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/xxhdpi/watermark.png b/data/styles/clear/style-night/xxhdpi/watermark.png deleted file mode 100644 index f290d6ce22..0000000000 Binary files a/data/styles/clear/style-night/xxhdpi/watermark.png and /dev/null differ diff --git a/data/styles/clear/style-night/xxxhdpi/watermark.png b/data/styles/clear/style-night/xxxhdpi/watermark.png deleted file mode 100644 index 519bb3a28b..0000000000 Binary files a/data/styles/clear/style-night/xxxhdpi/watermark.png and /dev/null differ diff --git a/drape_frontend/CMakeLists.txt b/drape_frontend/CMakeLists.txt index 58349348d8..1e762ed6a5 100644 --- a/drape_frontend/CMakeLists.txt +++ b/drape_frontend/CMakeLists.txt @@ -109,8 +109,6 @@ set( gui/shape.hpp gui/skin.cpp gui/skin.hpp - gui/watermark.cpp - gui/watermark.hpp kinetic_scroller.cpp kinetic_scroller.hpp line_shape.cpp diff --git a/drape_frontend/gui/layer_render.cpp b/drape_frontend/gui/layer_render.cpp index 53faa9d7f3..65dc61e18f 100644 --- a/drape_frontend/gui/layer_render.cpp +++ b/drape_frontend/gui/layer_render.cpp @@ -7,7 +7,6 @@ #include "drape_frontend/gui/layer_render.hpp" #include "drape_frontend/gui/ruler.hpp" #include "drape_frontend/gui/ruler_helper.hpp" -#include "drape_frontend/gui/watermark.hpp" #include "drape_frontend/visual_params.hpp" @@ -211,7 +210,6 @@ drape_ptr LayerCacher::RecacheWidgets(ref_ptr renderer = make_unique_dp(); @@ -403,13 +401,4 @@ m2::PointF LayerCacher::CacheScaleFpsLabel(ref_ptr context, renderer->AddShapeRenderer(WIDGET_SCALE_FPS_LABEL, std::move(scaleRenderer)); return size; } - -m2::PointF LayerCacher::CacheWatermark(ref_ptr context, - Position const & position, ref_ptr renderer, - ref_ptr textures) -{ - m2::PointF size; - renderer->AddShapeRenderer(WIDGET_WATERMARK, Watermark(position).Draw(context, size, textures)); - return size; -} } // namespace gui diff --git a/drape_frontend/gui/skin.cpp b/drape_frontend/gui/skin.cpp index 48c2898df0..0ed58f516c 100644 --- a/drape_frontend/gui/skin.cpp +++ b/drape_frontend/gui/skin.cpp @@ -139,8 +139,6 @@ public: m_currentElement = WIDGET_COMPASS; else if (element == "copyright") m_currentElement = WIDGET_COPYRIGHT; - else if (element == "watermark") - m_currentElement = WIDGET_WATERMARK; else ASSERT(false, ()); } @@ -183,7 +181,7 @@ public: m_inConfiguration = false; } else if (element == "ruler" || element == "compass" || element == "copyright" || - element == "country_status" || element == "watermark") + element == "country_status") { m_inElement = false; } diff --git a/drape_frontend/gui/skin.hpp b/drape_frontend/gui/skin.hpp index eb4894bde3..400f25dad5 100644 --- a/drape_frontend/gui/skin.hpp +++ b/drape_frontend/gui/skin.hpp @@ -19,7 +19,6 @@ enum EWidget WIDGET_COMPASS = 0x2, WIDGET_COPYRIGHT = 0x4, WIDGET_SCALE_FPS_LABEL = 0x8, - WIDGET_WATERMARK = 0x10, // The following widgets are controlled by the engine. Don't use them in platform code. WIDGET_CHOOSE_POSITION_MARK = 0x8000, #ifdef RENDER_DEBUG_INFO_LABELS diff --git a/drape_frontend/gui/watermark.cpp b/drape_frontend/gui/watermark.cpp deleted file mode 100644 index 1105d68173..0000000000 --- a/drape_frontend/gui/watermark.cpp +++ /dev/null @@ -1,123 +0,0 @@ -#include "drape_frontend/gui/watermark.hpp" -#include "drape_frontend/gui/drape_gui.hpp" -#include "drape_frontend/batcher_bucket.hpp" - -#include "shaders/programs.hpp" - -#include "drape/glsl_func.hpp" -#include "drape/utils/vertex_decl.hpp" - -#include -#include - -using namespace std::placeholders; - -namespace gui -{ -namespace -{ -struct WatermarkVertex -{ - WatermarkVertex(glsl::vec2 const & position, glsl::vec2 const & texCoord) - : m_position(position), m_texCoord(texCoord) - {} - - glsl::vec2 m_position; - glsl::vec2 m_texCoord; -}; - -class WatermarkVertexHandle : public Handle -{ - using TBase = Handle; - -public: - WatermarkVertexHandle(uint32_t id, m2::PointF const & pivot, dp::Anchor anchor, - m2::PointF const & size) - : Handle(id, anchor, pivot, size) - { - SetIsVisible(true); - - m2::PointF const halfSize(0.5f * size.x , 0.5f * size.y); - m_offset = glsl::vec2(0.0f, 0.0f); - - if (anchor & dp::Left) - m_offset.x = halfSize.x; - else if (m_anchor & dp::Right) - m_offset.x = -halfSize.x; - - if (anchor & dp::Top) - m_offset.y = halfSize.y; - else if (m_anchor & dp::Bottom) - m_offset.y = -halfSize.y; - } - - bool Update(ScreenBase const & screen) override - { - using namespace glsl; - - if (IsVisible()) - { - m_params.m_modelView = transpose(translate(mat4(), vec3(m_pivot + m_offset, 0.0))); - m_params.m_opacity = 1.0f; - } - return true; - } - -private: - glsl::vec2 m_offset; -}; -} // namespace - -drape_ptr Watermark::Draw(ref_ptr context, m2::PointF & size, - ref_ptr tex) const -{ - dp::TextureManager::SymbolRegion region; - tex->GetSymbolRegion("watermark", region); - glsl::vec2 const halfSize = glsl::ToVec2(region.GetPixelSize() * 0.5f); - m2::RectF const texRect = region.GetTexRect(); - - WatermarkVertex vertexes[] = - { - WatermarkVertex(glsl::vec2(-halfSize.x, halfSize.y), glsl::ToVec2(texRect.LeftTop())), - WatermarkVertex(glsl::vec2(-halfSize.x, -halfSize.y), glsl::ToVec2(texRect.LeftBottom())), - WatermarkVertex(glsl::vec2(halfSize.x, halfSize.y), glsl::ToVec2(texRect.RightTop())), - WatermarkVertex(glsl::vec2(halfSize.x, -halfSize.y), glsl::ToVec2(texRect.RightBottom())) - }; - - auto state = df::CreateRenderState(gpu::Program::TexturingGui, df::DepthLayer::GuiLayer); - state.SetColorTexture(region.GetTexture()); - state.SetDepthTestEnabled(false); - state.SetTextureIndex(region.GetTextureIndex()); - - dp::AttributeProvider provider(1 /* streamCount */, 4 /* vertexCount */); - dp::BindingInfo info(2 /* count */); - - dp::BindingDecl & posDecl = info.GetBindingDecl(0); - posDecl.m_attributeName = "a_position"; - posDecl.m_componentCount = 2; - posDecl.m_componentType = gl_const::GLFloatType; - posDecl.m_offset = 0; - posDecl.m_stride = sizeof(WatermarkVertex); - - dp::BindingDecl & texDecl = info.GetBindingDecl(1); - texDecl.m_attributeName = "a_colorTexCoords"; - texDecl.m_componentCount = 2; - texDecl.m_componentType = gl_const::GLFloatType; - texDecl.m_offset = sizeof(glsl::vec2); - texDecl.m_stride = posDecl.m_stride; - - provider.InitStream(0, info, make_ref(&vertexes)); - - size = region.GetPixelSize(); - drape_ptr handle = make_unique_dp( - EGuiHandle::GuiHandleWatermark, m_position.m_pixelPivot, m_position.m_anchor, size); - - drape_ptr renderer = make_unique_dp(); - dp::Batcher batcher(dp::Batcher::IndexPerQuad, dp::Batcher::VertexPerQuad); - batcher.SetBatcherHash(static_cast(df::BatcherBucket::Default)); - dp::SessionGuard guard(context, batcher, std::bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2)); - batcher.InsertTriangleStrip(context, state, make_ref(&provider), std::move(handle)); - - return renderer; -} -} // namespace gui diff --git a/drape_frontend/gui/watermark.hpp b/drape_frontend/gui/watermark.hpp deleted file mode 100644 index 8ed6e796b5..0000000000 --- a/drape_frontend/gui/watermark.hpp +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -#include "drape_frontend/gui/shape.hpp" - -namespace gui -{ -class Watermark : public Shape -{ -public: - explicit Watermark(gui::Position const & position) : Shape(position) {} - - drape_ptr Draw(ref_ptr context, m2::PointF & size, - ref_ptr tex) const; -}; -} // namespace gui diff --git a/iphone/Maps/Classes/Widgets/MWMMapWidgets.mm b/iphone/Maps/Classes/Widgets/MWMMapWidgets.mm index 05008d96f3..388b320d95 100644 --- a/iphone/Maps/Classes/Widgets/MWMMapWidgets.mm +++ b/iphone/Maps/Classes/Widgets/MWMMapWidgets.mm @@ -77,7 +77,6 @@ switch (w) { case gui::WIDGET_RULER: - case gui::WIDGET_WATERMARK: case gui::WIDGET_COPYRIGHT: pivot += rulerOffset; break; case gui::WIDGET_COMPASS: pivot += compassOffset; break; case gui::WIDGET_SCALE_FPS_LABEL: diff --git a/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj b/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj index 7685fcde55..7793fe86a8 100644 --- a/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj +++ b/xcode/drape_frontend/drape_frontend.xcodeproj/project.pbxproj @@ -52,8 +52,6 @@ 45580ABB1E28DB2600CD535D /* scenario_manager.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45580AB91E28DB2600CD535D /* scenario_manager.hpp */; }; 456B3F991ED464FE009B3D1F /* postprocess_renderer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 456B3F971ED464FE009B3D1F /* postprocess_renderer.cpp */; }; 456B3F9A1ED464FE009B3D1F /* postprocess_renderer.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 456B3F981ED464FE009B3D1F /* postprocess_renderer.hpp */; }; - 45A3781D20B324E6005FBDBB /* watermark.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45A3781920B324E5005FBDBB /* watermark.hpp */; }; - 45A3781E20B324E6005FBDBB /* watermark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A3781A20B324E6005FBDBB /* watermark.cpp */; }; 45A3781F20B324E6005FBDBB /* debug_label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45A3781B20B324E6005FBDBB /* debug_label.cpp */; }; 45A3782020B324E6005FBDBB /* debug_label.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45A3781C20B324E6005FBDBB /* debug_label.hpp */; }; 45B241AE20EF9D0500A759D6 /* scale_fps_helper.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 45B241AD20EF9D0400A759D6 /* scale_fps_helper.hpp */; }; @@ -262,8 +260,6 @@ 45580AB91E28DB2600CD535D /* scenario_manager.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = scenario_manager.hpp; sourceTree = ""; }; 456B3F971ED464FE009B3D1F /* postprocess_renderer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = postprocess_renderer.cpp; sourceTree = ""; }; 456B3F981ED464FE009B3D1F /* postprocess_renderer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = postprocess_renderer.hpp; sourceTree = ""; }; - 45A3781920B324E5005FBDBB /* watermark.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = watermark.hpp; sourceTree = ""; }; - 45A3781A20B324E6005FBDBB /* watermark.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = watermark.cpp; sourceTree = ""; }; 45A3781B20B324E6005FBDBB /* debug_label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debug_label.cpp; sourceTree = ""; }; 45A3781C20B324E6005FBDBB /* debug_label.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = debug_label.hpp; sourceTree = ""; }; 45B241AD20EF9D0400A759D6 /* scale_fps_helper.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = scale_fps_helper.hpp; sourceTree = ""; }; @@ -679,8 +675,6 @@ 670948361BDF9C48005014C0 /* shape.hpp */, 670948371BDF9C48005014C0 /* skin.cpp */, 670948381BDF9C48005014C0 /* skin.hpp */, - 45A3781A20B324E6005FBDBB /* watermark.cpp */, - 45A3781920B324E5005FBDBB /* watermark.hpp */, ); path = gui; sourceTree = ""; @@ -778,7 +772,6 @@ 670947B01BDF9BE1005014C0 /* read_manager.hpp in Headers */, 670947CF1BDF9BE1005014C0 /* tile_key.hpp in Headers */, 670947BA1BDF9BE1005014C0 /* route_renderer.hpp in Headers */, - 45A3781D20B324E6005FBDBB /* watermark.hpp in Headers */, 453EEA6E1E3A28F400505E09 /* colored_symbol_shape.hpp in Headers */, 670948201BDF9C39005014C0 /* value_mapping.hpp in Headers */, 670948441BDF9C48005014C0 /* drape_gui.hpp in Headers */, @@ -910,7 +903,6 @@ 670947961BDF9BE1005014C0 /* line_shape.cpp in Sources */, 670947A91BDF9BE1005014C0 /* path_symbol_shape.cpp in Sources */, 670947FA1BDF9BF5005014C0 /* backend_renderer.cpp in Sources */, - 45A3781E20B324E6005FBDBB /* watermark.cpp in Sources */, 670948451BDF9C48005014C0 /* gui_text.cpp in Sources */, EB2B78031EEDD439002697B6 /* read_metaline_task.cpp in Sources */, 670948141BDF9C39005014C0 /* base_interpolator.cpp in Sources */,