From ff9fdf07b9432305a1b1f6e0e3b1322e5b425765 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Mon, 15 Oct 2018 18:58:31 +0300 Subject: [PATCH] Visualization of city roads. --- map/framework.cpp | 75 ++++++++++++++++++++++++++++++------------ map/framework.hpp | 1 + qt/draw_widget.cpp | 30 ++++++++++++----- qt/draw_widget.hpp | 2 ++ qt/mainwindow.cpp | 32 +++++++++++++++--- qt/mainwindow.hpp | 2 ++ qt/res/city_roads.png | Bin 0 -> 1362 bytes qt/res/resources.qrc | 1 + 8 files changed, 109 insertions(+), 34 deletions(-) create mode 100644 qt/res/city_roads.png diff --git a/map/framework.cpp b/map/framework.cpp index e5d3253adf..0ba5ae56bf 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -13,6 +13,7 @@ #include "defines.hpp" #include "private.h" +#include "routing/city_roads.hpp" #include "routing/index_router.hpp" #include "routing/online_absent_fetcher.hpp" #include "routing/route.hpp" @@ -3261,35 +3262,42 @@ void DrawLine(Box const & box, dp::Color const & color, df::DrapeApi & drapeApi, drapeApi.AddLine(id, df::DrapeApiLineData(points, color).Width(3.0f).ShowPoints(true).ShowId()); } + +void VisualizeFeatureInRect(m2::RectD const & rect, FeatureType & ft, df::DrapeApi & drapeApi, + size_t & counter) +{ + bool allPointsOutside = true; + vector points; + ft.ForEachPoint([&points, &rect, &allPointsOutside](m2::PointD const & pt) + { + if (rect.IsPointInside(pt)) + allPointsOutside = false; + points.push_back(pt); + }, scales::GetUpperScale()); + + if (!allPointsOutside) + { + size_t const colorIndex = counter % colorList.size(); + // Note. The first param at DrapeApi::AddLine() should be unique. Other way last added line + // replaces the previous added line with the same name. + // As a consequence VisualizeFeatureInRect() should be applied to single mwm. Other way + // feature ids will be dubbed. + drapeApi.AddLine( + strings::to_string(ft.GetID().m_index), + df::DrapeApiLineData(points, colorList[colorIndex]).Width(3.0f).ShowPoints(true).ShowId()); + counter++; + } +} } // namespace void Framework::VisualizeRoadsInRect(m2::RectD const & rect) { - int constexpr kScale = scales::GetUpperScale(); size_t counter = 0; m_model.ForEachFeature(rect, [this, &counter, &rect](FeatureType & ft) { if (routing::IsRoad(feature::TypesHolder(ft))) - { - bool allPointsOutside = true; - vector points; - ft.ForEachPoint([&points, &rect, &allPointsOutside](m2::PointD const & pt) - { - if (rect.IsPointInside(pt)) - allPointsOutside = false; - points.push_back(pt); - }, kScale); - - if (!allPointsOutside) - { - size_t const colorIndex = counter % colorList.size(); - m_drapeApi.AddLine(strings::to_string(ft.GetID().m_index), - df::DrapeApiLineData(points, colorList[colorIndex]) - .Width(3.0f).ShowPoints(true).ShowId()); - counter++; - } - } - }, kScale); + VisualizeFeatureInRect(rect, ft, m_drapeApi, counter); + }, scales::GetUpperScale()); } void Framework::VisualizeCityBoundariesInRect(m2::RectD const & rect) @@ -3330,6 +3338,31 @@ void Framework::VisualizeCityBoundariesInRect(m2::RectD const & rect) } } +void Framework::VisualizeCityRoadsInRect(m2::RectD const & rect) +{ + map> cityRoads; + size_t counter = 0; + GetDataSource().ForEachInRect( + [this, &rect, &cityRoads, &counter](FeatureType & ft) { + auto const & mwmId = ft.GetID().m_mwmId; + auto const it = cityRoads.find(mwmId); + if (it == cityRoads.cend()) + { + MwmSet::MwmHandle handle = m_model.GetDataSource().GetMwmHandleById(mwmId); + if (!handle.IsAlive()) + return; + + cityRoads[mwmId] = LoadCityRoads(GetDataSource(), handle); + } + + if (!cityRoads[mwmId]->IsCityRoad(ft.GetID().m_index)) + return; // ft is not a city road. + + VisualizeFeatureInRect(rect, ft, m_drapeApi, counter); + }, + rect, scales::GetUpperScale()); +} + ads::Engine const & Framework::GetAdsEngine() const { ASSERT(m_adsEngine, ()); diff --git a/map/framework.hpp b/map/framework.hpp index a944e78110..2315f0bf87 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -351,6 +351,7 @@ public: // Utilities void VisualizeRoadsInRect(m2::RectD const & rect); void VisualizeCityBoundariesInRect(m2::RectD const & rect); + void VisualizeCityRoadsInRect(m2::RectD const & rect); ads::Engine const & GetAdsEngine() const; void DisableAdProvider(ads::Banner::Type const type, ads::Banner::Place const place); diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp index 3be0c5e4e8..242763b07c 100644 --- a/qt/draw_widget.cpp +++ b/qt/draw_widget.cpp @@ -189,7 +189,8 @@ void DrawWidget::mousePressEvent(QMouseEvent * e) { SubmitBookmark(pt); } - else if (!(m_selectionMode || m_cityBoundariesSelectionMode) || IsCommandModifier(e)) + else if (!(m_selectionMode || m_cityBoundariesSelectionMode || m_cityRoadsSelectionMode) || + IsCommandModifier(e)) { ShowInfoPopup(e, pt); } @@ -210,8 +211,8 @@ void DrawWidget::mouseMoveEvent(QMouseEvent * e) if (IsLeftButton(e) && !IsAltModifier(e)) m_framework.TouchEvent(GetTouchEvent(e, df::TouchEvent::TOUCH_MOVE)); - if ((m_selectionMode || m_cityBoundariesSelectionMode) && m_rubberBand != nullptr && - m_rubberBand->isVisible()) + if ((m_selectionMode || m_cityBoundariesSelectionMode || m_cityRoadsSelectionMode) && + m_rubberBand != nullptr && m_rubberBand->isVisible()) { m_rubberBand->setGeometry(QRect(m_rubberBandOrigin, e->pos()).normalized()); } @@ -224,8 +225,8 @@ void DrawWidget::mouseReleaseEvent(QMouseEvent * e) { m_framework.TouchEvent(GetTouchEvent(e, df::TouchEvent::TOUCH_UP)); } - else if ((m_selectionMode || m_cityBoundariesSelectionMode) && IsRightButton(e) && - m_rubberBand != nullptr && m_rubberBand->isVisible()) + else if ((m_selectionMode || m_cityBoundariesSelectionMode || m_cityRoadsSelectionMode) && + IsRightButton(e) && m_rubberBand != nullptr && m_rubberBand->isVisible()) { QPoint const lt = m_rubberBand->geometry().topLeft(); QPoint const rb = m_rubberBand->geometry().bottomRight(); @@ -235,13 +236,21 @@ void DrawWidget::mouseReleaseEvent(QMouseEvent * e) if (m_selectionMode) { CHECK(!m_cityBoundariesSelectionMode, ()); - m_framework.VisualizeRoadsInRect(rect); + CHECK(!m_cityRoadsSelectionMode, ()); + m_framework.VisualizeCityRoadsInRect(rect); } - else + else if (m_cityBoundariesSelectionMode) { - CHECK(m_cityBoundariesSelectionMode, ()); + CHECK(!m_selectionMode, ()); + CHECK(!m_cityRoadsSelectionMode, ()); m_framework.VisualizeCityBoundariesInRect(rect); } + else // m_cityRoadsSelectionMode + { + CHECK(!m_selectionMode, ()); + CHECK(!m_cityBoundariesSelectionMode, ()); + m_framework.VisualizeCityRoadsInRect(rect); + } m_rubberBand->hide(); } @@ -525,6 +534,11 @@ void DrawWidget::SetCityBoundariesSelectionMode(bool mode) m_cityBoundariesSelectionMode = mode; } +void DrawWidget::SetCityRoadsSelectionMode(bool mode) +{ + m_cityRoadsSelectionMode = mode; +} + // static void DrawWidget::SetDefaultSurfaceFormat(bool apiOpenGLES3) { diff --git a/qt/draw_widget.hpp b/qt/draw_widget.hpp index ccb7d9d43a..4bd2ac59a2 100644 --- a/qt/draw_widget.hpp +++ b/qt/draw_widget.hpp @@ -74,6 +74,7 @@ public: void SetSelectionMode(bool mode); void SetCityBoundariesSelectionMode(bool mode); + void SetCityRoadsSelectionMode(bool mode); RouteMarkType GetRoutePointAddMode() const { return m_routePointAddMode; } void SetRoutePointAddMode(RouteMarkType mode) { m_routePointAddMode = mode; } @@ -116,6 +117,7 @@ private: bool m_selectionMode = false; bool m_cityBoundariesSelectionMode = false; + bool m_cityRoadsSelectionMode = false; RouteMarkType m_routePointAddMode = RouteMarkType::Finish; }; } // namespace qt diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index 911d73f005..f70cae886d 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -331,7 +331,11 @@ void MainWindow::CreateNavigationBar() pToolBar->addAction(QIcon(":/navig64/city_boundaries.png"), tr("City boundaries selection mode"), this, SLOT(OnSwitchCityBoundariesSelectionMode())); m_selectionCityBoundariesMode->setCheckable(true); - m_selectionCityBoundariesMode->setChecked(m_pDrawWidget->GetFramework().LoadTrafficEnabled()); + + m_selectionCityRoadsMode = + pToolBar->addAction(QIcon(":/navig64/city_roads.png"), tr("City roads selection mode"), + this, SLOT(OnSwitchCityRoadsSelectionMode())); + m_selectionCityRoadsMode->setCheckable(true); m_clearSelection = pToolBar->addAction(QIcon(":/navig64/clear.png"), tr("Clear selection"), this, SLOT(OnClearSelection())); @@ -559,11 +563,13 @@ void MainWindow::OnCreateFeatureClicked() void MainWindow::OnSwitchSelectionMode() { - if (m_selectionCityBoundariesMode->isChecked()) + if (m_selectionCityBoundariesMode->isChecked() || m_selectionCityRoadsMode->isChecked()) { - // Unchecking selection city boundaries mode. m_selectionCityBoundariesMode->setChecked(false); m_pDrawWidget->SetCityBoundariesSelectionMode(false); + + m_selectionCityRoadsMode->setChecked(false); + m_pDrawWidget->SetCityRoadsSelectionMode(false); } m_pDrawWidget->SetSelectionMode(m_selectionMode->isChecked()); @@ -571,16 +577,32 @@ void MainWindow::OnSwitchSelectionMode() void MainWindow::OnSwitchCityBoundariesSelectionMode() { - if (m_selectionMode->isChecked()) + if (m_selectionMode->isChecked() || m_selectionCityRoadsMode->isChecked()) { - // Unchecking selection mode. m_selectionMode->setChecked(false); m_pDrawWidget->SetSelectionMode(false); + + m_selectionCityRoadsMode->setChecked(false); + m_pDrawWidget->SetCityRoadsSelectionMode(false); } m_pDrawWidget->SetCityBoundariesSelectionMode(m_selectionCityBoundariesMode->isChecked()); } +void MainWindow::OnSwitchCityRoadsSelectionMode() +{ + if (m_selectionMode->isChecked() || m_selectionCityBoundariesMode->isChecked()) + { + m_selectionMode->setChecked(false); + m_pDrawWidget->SetSelectionMode(false); + + m_selectionCityBoundariesMode->setChecked(false); + m_pDrawWidget->SetCityBoundariesSelectionMode(false); + } + + m_pDrawWidget->SetCityRoadsSelectionMode(m_selectionCityRoadsMode->isChecked()); +} + void MainWindow::OnClearSelection() { m_pDrawWidget->GetFramework().GetDrapeApi().Clear(); diff --git a/qt/mainwindow.hpp b/qt/mainwindow.hpp index de6e11b9eb..010fc62561 100644 --- a/qt/mainwindow.hpp +++ b/qt/mainwindow.hpp @@ -47,6 +47,7 @@ class MainWindow : public QMainWindow, location::LocationObserver QAction * m_trafficEnableAction = nullptr; QAction * m_bookmarksAction = nullptr; QAction * m_selectionCityBoundariesMode = nullptr; + QAction * m_selectionCityRoadsMode = nullptr; QToolButton * m_routePointsToolButton = nullptr; QAction * m_selectStartRoutePoint = nullptr; QAction * m_selectFinishRoutePoint = nullptr; @@ -108,6 +109,7 @@ protected Q_SLOTS: void OnSwitchSelectionMode(); void OnSwitchCityBoundariesSelectionMode(); + void OnSwitchCityRoadsSelectionMode(); void OnClearSelection(); void OnTrafficEnabled(); diff --git a/qt/res/city_roads.png b/qt/res/city_roads.png new file mode 100644 index 0000000000000000000000000000000000000000..ed7d6e298cab8a4e87ff7e173b37913385cdce77 GIT binary patch literal 1362 zcmV-Y1+DstP)&* zs){jbhc(?IugSEPdZZa71Lt3xCa4LJWHbaKmxPgIo-u*_Y^QW{5(suSr>(z-==Xl_ z_ul(`{C>~RLX;i8k?|}bUX0a;(#hT_buTB*@;g8=K2DL z|8@?HD+?B_blO@JZU^7DPnRMRheGHsj3GK&6z<9LnA>81xr2b<7 zSPYgqqhWt9{;*`{r2l$Oh0N&*)?S)rkH@7SZPwX^Gl=QVqMdx|9{>_Bbx8gWT^EQX zHy4HSJCNFhQbdVuaIFzRDW|&79e8KPrN8|EQu+9{YnhW_W=?g>dz6r5U z%!Qd%YImHENp14aJK}Uf!1?c%NHQ?URZGIR%njj_WH|?XqV(GY-Eni)jeWgYSI2&f$?xE`rJXgYGw_AT^4}<2X zhi-@c0~m6{&Ys*<6o!wQ;|ZTzrCv^ONLmEH>J|T9$_;REZ~*B#9FB)JV)zU09zgK- zrz{DIihGy&=D0a#GcJPBJ7H$4#miRtQSaF+rgyo4*Jd3i!>@00&H=c{xLf73@7aw~ zO;|@!b1&+NNVp%51Mqk}N1oNyRq!N}$^C!puRl{;&k{-cg=cd;Ja4s;B)qkl1f8a7 z8V35GJc;j8f?8*2I=(CQRz4j-;o<;TWdQtsiHS-DfE&tp8tv@tloo(!DF7$v^#I5| zqk{Nj0!jq{z7f_rfsqp+UqGn57QbJPBQb`9{b148K^-2T0kxLL=QBjfY zudc3!uIA=ufxn@l0sQs#^#VWK7~n52FVDG3;i{~xgn8Q9+WzUx0AydQFN+Rei+^}3 zaVY?DO97Bu3V_^F0OZ!+rXD&BIIo~e0000ibVXQnQ*UN;cVTj609j#fWMz0RL}_zt zASh^bbZ|N^FJx(RYc6?VZe(S6E^>7#TPe*gdg07*qoM6N<$f)2KCr~m)} literal 0 HcmV?d00001 diff --git a/qt/res/resources.qrc b/qt/res/resources.qrc index 1d0f1f70b9..bc6715b05c 100644 --- a/qt/res/resources.qrc +++ b/qt/res/resources.qrc @@ -14,6 +14,7 @@ clear.png traffic.png city_boundaries.png + city_roads.png point-finish.png point-intermediate.png point-start.png