From 4ebe3cfc7a54cf3a10e17af31a43add107c2aa97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Wed, 18 Dec 2024 00:00:00 +0000 Subject: [PATCH 1/3] [map] Move saving of 3d mode setting to framework MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Where the actual final values are determined. And thus avoid saving potentially incorrect values. Signed-off-by: Ferenc Géczi --- map/framework.cpp | 1 + qt/search_panel.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/map/framework.cpp b/map/framework.cpp index 9c519027fc..adbf59f9e1 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2495,6 +2495,7 @@ void Framework::Allow3dMode(bool allow3d, bool allow3dBuildings) allow3dBuildings = false; m_drapeEngine->Allow3dMode(allow3d, allow3dBuildings); + Save3dMode(allow3d, allow3dBuildings); } void Framework::Save3dMode(bool allow3d, bool allow3dBuildings) diff --git a/qt/search_panel.cpp b/qt/search_panel.cpp index e8bb0c4e41..d49ab0be47 100644 --- a/qt/search_panel.cpp +++ b/qt/search_panel.cpp @@ -188,7 +188,6 @@ bool SearchPanel::Try3dModeCmd(std::string const & str) if (!is3dModeOn && !is3dBuildingsOn && !is3dModeOff) return false; - GetFramework().Save3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn); GetFramework().Allow3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn); return true; -- 2.45.3 From 2283279ea52c90a10457c4d6294a257af8be2c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Wed, 18 Dec 2024 00:00:00 +0000 Subject: [PATCH 2/3] [qt] Add 3D buildings and perspective view buttons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferenc Géczi --- qt/preferences_dialog.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/qt/preferences_dialog.cpp b/qt/preferences_dialog.cpp index acc0fa8276..5056e7bb9b 100644 --- a/qt/preferences_dialog.cpp +++ b/qt/preferences_dialog.cpp @@ -78,6 +78,25 @@ namespace qt }); } + QCheckBox * a3dBuildingsCheckBox = new QCheckBox("3D buildings"); + QCheckBox * a3dCheckBox = new QCheckBox("Perspective view (during navigation)"); + { + bool allow3d, allow3dBuildings; + framework.Load3dMode(allow3d, allow3dBuildings); + a3dBuildingsCheckBox->setChecked(allow3dBuildings); + a3dCheckBox->setChecked(allow3d); + connect(a3dBuildingsCheckBox, &QCheckBox::stateChanged, [&framework, &allow3d, &allow3dBuildings](int i) + { + allow3dBuildings = static_cast(i); + framework.Allow3dMode(allow3d, allow3dBuildings); + }); + connect(a3dCheckBox, &QCheckBox::stateChanged, [&framework, &allow3d, &allow3dBuildings](int i) + { + allow3d = static_cast(i); + framework.Allow3dMode(allow3d, allow3dBuildings); + }); + } + QCheckBox * largeFontCheckBox = new QCheckBox("Use larger font on the map"); { largeFontCheckBox->setChecked(framework.LoadLargeFontsSize()); @@ -197,6 +216,8 @@ namespace qt QVBoxLayout * finalLayout = new QVBoxLayout(); finalLayout->addWidget(unitsRadioBox); + finalLayout->addWidget(a3dBuildingsCheckBox); + finalLayout->addWidget(a3dCheckBox); finalLayout->addWidget(largeFontCheckBox); finalLayout->addWidget(transliterationCheckBox); finalLayout->addWidget(developerModeCheckBox); -- 2.45.3 From 2c654e6f42cc3754405c9877d3cbef892281078c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferenc=20G=C3=A9czi?= Date: Mon, 23 Dec 2024 00:00:00 +0000 Subject: [PATCH 3/3] [drape_frontend] Make the always-on 3D view configurable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously on desktop, the always-on 3D mode was behind an odd "easter-egg", that was only reachable with a series of `Allow3dMode` messages: ```` #ifdef OMIM_OS_DESKTOP if (m_enablePerspectiveInNavigation == msg->AllowPerspective() && m_enablePerspectiveInNavigation != screen.isPerspective()) { AddUserEvent(make_unique_dp(m_enablePerspectiveInNavigation)); } #endif ```` This change adds a dedicated field for that in the message, and a dedicated checkbox on the UI. The checkbox is labelled `experimental`, because for now `drape_frontend` is rather unstable in this mode. This stability issue is independent from how we enable the always-on 3D mode (old "easter-egg" or proper UI checkbox). The idea is that making it easier to enable, also makes it easier to improve. Signed-off-by: Ferenc Géczi --- .../main/cpp/app/organicmaps/Framework.cpp | 9 ++-- drape_frontend/drape_engine.cpp | 5 ++- drape_frontend/drape_engine.hpp | 2 +- drape_frontend/frontend_renderer.cpp | 19 ++++----- drape_frontend/frontend_renderer.hpp | 1 + drape_frontend/message_subclasses.hpp | 11 +++-- .../UI/Settings/MWMSettingsViewController.mm | 24 +++++------ map/framework.cpp | 42 +++++++++++-------- map/framework.hpp | 6 +-- qt/preferences_dialog.cpp | 38 ++++++++++++----- qt/search_panel.cpp | 2 +- 11 files changed, 94 insertions(+), 65 deletions(-) diff --git a/android/app/src/main/cpp/app/organicmaps/Framework.cpp b/android/app/src/main/cpp/app/organicmaps/Framework.cpp index d749e7a390..0118565f8f 100644 --- a/android/app/src/main/cpp/app/organicmaps/Framework.cpp +++ b/android/app/src/main/cpp/app/organicmaps/Framework.cpp @@ -430,17 +430,20 @@ MapStyle Framework::GetMapStyle() const void Framework::Save3dMode(bool allow3d, bool allow3dBuildings) { - m_work.Save3dMode(allow3d, allow3dBuildings); + bool _allow3dAlways = false; + m_work.Save3dMode(_allow3dAlways, allow3d, allow3dBuildings); } void Framework::Set3dMode(bool allow3d, bool allow3dBuildings) { - m_work.Allow3dMode(allow3d, allow3dBuildings); + bool _allow3dAlways = false; + m_work.Allow3dMode(_allow3dAlways, allow3d, allow3dBuildings); } void Framework::Get3dMode(bool & allow3d, bool & allow3dBuildings) { - m_work.Load3dMode(allow3d, allow3dBuildings); + bool _allow3dAlways = false; + m_work.Load3dMode(_allow3dAlways, allow3d, allow3dBuildings); } void Framework::SetMapLanguageCode(std::string const & languageCode) diff --git a/drape_frontend/drape_engine.cpp b/drape_frontend/drape_engine.cpp index 547d79ed33..236135b458 100644 --- a/drape_frontend/drape_engine.cpp +++ b/drape_frontend/drape_engine.cpp @@ -637,14 +637,15 @@ void DrapeEngine::AllowAutoZoom(bool allowAutoZoom) MessagePriority::Normal); } -void DrapeEngine::Allow3dMode(bool allowPerspectiveInNavigation, bool allow3dBuildings) +void DrapeEngine::Allow3dMode(bool allowPerspectiveAlways, bool allowPerspectiveInNavigation, bool allow3dBuildings) { m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread, make_unique_dp(allow3dBuildings), MessagePriority::Normal); m_threadCommutator->PostMessage(ThreadsCommutator::RenderThread, - make_unique_dp(allowPerspectiveInNavigation, + make_unique_dp(allowPerspectiveAlways, + allowPerspectiveInNavigation, allow3dBuildings), MessagePriority::Normal); } diff --git a/drape_frontend/drape_engine.hpp b/drape_frontend/drape_engine.hpp index 56f007af11..35979948bd 100644 --- a/drape_frontend/drape_engine.hpp +++ b/drape_frontend/drape_engine.hpp @@ -184,7 +184,7 @@ public: void AllowAutoZoom(bool allowAutoZoom); - void Allow3dMode(bool allowPerspectiveInNavigation, bool allow3dBuildings); + void Allow3dMode(bool allowPerspectiveAlways, bool allowPerspectiveInNavigation, bool allow3dBuildings); void EnablePerspective(); void UpdateGpsTrackPoints(std::vector && toAdd, diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index 5b08eb7a58..fb7cc9a095 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -738,14 +738,6 @@ void FrontendRenderer::AcceptMessage(ref_ptr message) ref_ptr const msg = message; ScreenBase const & screen = m_userEventStream.GetCurrentScreen(); -#ifdef OMIM_OS_DESKTOP - if (m_enablePerspectiveInNavigation == msg->AllowPerspective() && - m_enablePerspectiveInNavigation != screen.isPerspective()) - { - AddUserEvent(make_unique_dp(m_enablePerspectiveInNavigation)); - } -#endif - if (m_enable3dBuildings != msg->Allow3dBuildings()) { m_enable3dBuildings = msg->Allow3dBuildings(); @@ -753,9 +745,16 @@ void FrontendRenderer::AcceptMessage(ref_ptr message) m_forceUpdateScene = true; } - if (m_enablePerspectiveInNavigation != msg->AllowPerspective()) + if (m_enablePerspectiveAlways != msg->AllowPerspectiveAlways()) // && + // m_enablePerspectiveInNavigation != screen.isPerspective()) { - m_enablePerspectiveInNavigation = msg->AllowPerspective(); + m_enablePerspectiveAlways = msg->AllowPerspectiveAlways(); + AddUserEvent(make_unique_dp(m_enablePerspectiveAlways)); + } + + if (m_enablePerspectiveInNavigation != msg->AllowPerspectiveInNavigation()) + { + m_enablePerspectiveInNavigation = msg->AllowPerspectiveInNavigation(); m_myPositionController->EnablePerspectiveInRouting(m_enablePerspectiveInNavigation); if (m_myPositionController->IsInRouting()) { diff --git a/drape_frontend/frontend_renderer.hpp b/drape_frontend/frontend_renderer.hpp index 8038ab7c4f..654e688cc6 100755 --- a/drape_frontend/frontend_renderer.hpp +++ b/drape_frontend/frontend_renderer.hpp @@ -323,6 +323,7 @@ private: FrameValues m_frameValues; + bool m_enablePerspectiveAlways; bool m_enablePerspectiveInNavigation; bool m_enable3dBuildings; bool m_isIsometry; diff --git a/drape_frontend/message_subclasses.hpp b/drape_frontend/message_subclasses.hpp index e93f49627e..6899337da9 100644 --- a/drape_frontend/message_subclasses.hpp +++ b/drape_frontend/message_subclasses.hpp @@ -850,18 +850,21 @@ public: class Allow3dModeMessage : public Message { public: - Allow3dModeMessage(bool allowPerspective, bool allow3dBuildings) - : m_allowPerspective(allowPerspective) + Allow3dModeMessage(bool allowPerspectiveAlways, bool allowPerspectiveInNavigation, bool allow3dBuildings) + : m_allowPerspectiveAlways(allowPerspectiveAlways) + , m_allowPerspectiveInNavigation(allowPerspectiveInNavigation) , m_allow3dBuildings(allow3dBuildings) {} Type GetType() const override { return Type::Allow3dMode; } - bool AllowPerspective() const { return m_allowPerspective; } + bool AllowPerspectiveAlways() const { return m_allowPerspectiveAlways; } + bool AllowPerspectiveInNavigation() const { return m_allowPerspectiveInNavigation; } bool Allow3dBuildings() const { return m_allow3dBuildings; } private: - bool const m_allowPerspective; + bool const m_allowPerspectiveAlways; + bool const m_allowPerspectiveInNavigation; bool const m_allow3dBuildings; }; diff --git a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm index d4cf08a266..39abfbd064 100644 --- a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm +++ b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm @@ -99,8 +99,8 @@ static NSString * const kUDDidShowICloudSynchronizationEnablingAlert = @"kUDDidS [self.zoomButtonsCell configWithDelegate:self title:L(@"pref_zoom_title") isOn:[MWMSettings zoomButtonsEnabled]]; - bool on = true, _ = true; - GetFramework().Load3dMode(_, on); + bool _a = false, _ = true, on = true; + GetFramework().Load3dMode(_a, _, on); if (GetFramework().GetPowerManager().GetScheme() == Scheme::EconomyMaximum) { self.is3dCell.isEnabled = false; @@ -218,9 +218,9 @@ static NSString * const kUDDidShowICloudSynchronizationEnablingAlert = @"kUDDidS } - (void)configNavigationSection { - bool _ = true, on = true; + bool _a = false, _ = true, on = true; auto &f = GetFramework(); - f.Load3dMode(on, _); + f.Load3dMode(_a, on, _); [self.perspectiveViewCell configWithDelegate:self title:L(@"pref_map_3d_title") isOn:on]; [self.autoZoomCell configWithDelegate:self title:L(@"pref_map_auto_zoom") isOn:GetFramework().LoadAutoZoom()]; @@ -300,11 +300,11 @@ static NSString * const kUDDidShowICloudSynchronizationEnablingAlert = @"kUDDidS [MWMSettings setZoomButtonsEnabled:value]; } else if (cell == self.is3dCell) { auto &f = GetFramework(); - bool _ = true, is3dBuildings = true; - f.Load3dMode(_, is3dBuildings); + bool _a = false, _ = true, is3dBuildings = true; + f.Load3dMode(_a, _, is3dBuildings); is3dBuildings = static_cast(value); - f.Save3dMode(_, is3dBuildings); - f.Allow3dMode(_, is3dBuildings); + f.Save3dMode(_a, _, is3dBuildings); + f.Allow3dMode(_a, _, is3dBuildings); } else if (cell == self.autoDownloadCell) { [MWMSettings setAutoDownloadEnabled:value]; } else if (cell == self.fontScaleCell) { @@ -315,11 +315,11 @@ static NSString * const kUDDidShowICloudSynchronizationEnablingAlert = @"kUDDidS [MWMSettings setCompassCalibrationEnabled:value]; } else if (cell == self.perspectiveViewCell) { auto &f = GetFramework(); - bool _ = true, is3d = true; - f.Load3dMode(is3d, _); + bool _a = false, _ = true, is3d = true; + f.Load3dMode(_a, is3d, _); is3d = static_cast(value); - f.Save3dMode(is3d, _); - f.Allow3dMode(is3d, _); + f.Save3dMode(_a, is3d, _); + f.Allow3dMode(_a, is3d, _); } else if (cell == self.autoZoomCell) { auto &f = GetFramework(); f.AllowAutoZoom(value); diff --git a/map/framework.cpp b/map/framework.cpp index adbf59f9e1..a0097a3bdd 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -89,7 +89,8 @@ Framework::FixedPosition::FixedPosition() namespace { std::string_view constexpr kMapStyleKey = "MapStyleKeyV1"; -std::string_view constexpr kAllow3dKey = "Allow3d"; +std::string_view constexpr kAllow3dAlwaysKey = "Allow3dAlways"; +std::string_view constexpr kAllow3dInNavigationKey = "allow3dInNavigation"; std::string_view constexpr kAllow3dBuildingsKey = "Buildings3d"; std::string_view constexpr kAllowAutoZoom = "AutoZoom"; std::string_view constexpr kTrafficEnabledKey = "TrafficEnabled"; @@ -1534,9 +1535,10 @@ void Framework::CreateDrapeEngine(ref_ptr contextFac auto isCountryLoadedByNameFn = bind(&Framework::IsCountryLoadedByName, this, _1); auto updateCurrentCountryFn = bind(&Framework::OnUpdateCurrentCountry, this, _1, _2); - bool allow3d; + bool allow3dAlways; + bool allow3dInNavigation; bool allow3dBuildings; - Load3dMode(allow3d, allow3dBuildings); + Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); auto const isAutozoomEnabled = LoadAutoZoom(); @@ -1580,7 +1582,7 @@ void Framework::CreateDrapeEngine(ref_ptr contextFac OnSize(params.m_surfaceWidth, params.m_surfaceHeight); - Allow3dMode(allow3d, allow3dBuildings); + Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); ApplyMapLanguageCode(GetMapLanguageCode()); @@ -1591,7 +1593,7 @@ void Framework::CreateDrapeEngine(ref_ptr contextFac GetBookmarkManager().SetDrapeEngine(make_ref(m_drapeEngine)); m_drapeApi.SetDrapeEngine(make_ref(m_drapeEngine)); - m_routingManager.SetDrapeEngine(make_ref(m_drapeEngine), allow3d); + m_routingManager.SetDrapeEngine(make_ref(m_drapeEngine), allow3dInNavigation); m_trafficManager.SetDrapeEngine(make_ref(m_drapeEngine)); m_transitManager.SetDrapeEngine(make_ref(m_drapeEngine)); m_isolinesManager.SetDrapeEngine(make_ref(m_drapeEngine)); @@ -2483,31 +2485,35 @@ void Framework::ApplyMapLanguageCode(std::string const & langCode) m_drapeEngine->SetMapLangIndex(langIndex); } -void Framework::Allow3dMode(bool allow3d, bool allow3dBuildings) +void Framework::Allow3dMode(bool allow3dAlways, bool allow3dInNavigation, bool allow3dBuildings) { if (m_drapeEngine == nullptr) return; if (!m_powerManager.IsFacilityEnabled(power_management::Facility::PerspectiveView)) - allow3d = false; + allow3dAlways = false, allow3dInNavigation = false; if (!m_powerManager.IsFacilityEnabled(power_management::Facility::Buildings3d)) allow3dBuildings = false; - m_drapeEngine->Allow3dMode(allow3d, allow3dBuildings); - Save3dMode(allow3d, allow3dBuildings); + m_drapeEngine->Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + Save3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); } -void Framework::Save3dMode(bool allow3d, bool allow3dBuildings) +void Framework::Save3dMode(bool allow3dAlways, bool allow3dInNavigation, bool allow3dBuildings) { - settings::Set(kAllow3dKey, allow3d); + settings::Set(kAllow3dAlwaysKey, allow3dAlways); + settings::Set(kAllow3dInNavigationKey, allow3dInNavigation); settings::Set(kAllow3dBuildingsKey, allow3dBuildings); } -void Framework::Load3dMode(bool & allow3d, bool & allow3dBuildings) +void Framework::Load3dMode(bool & allow3dAlways, bool & allow3dInNavigation, bool & allow3dBuildings) { - if (!settings::Get(kAllow3dKey, allow3d)) - allow3d = true; + if (!settings::Get(kAllow3dAlwaysKey, allow3dAlways)) + allow3dAlways = true; + + if (!settings::Get(kAllow3dInNavigationKey, allow3dInNavigation)) + allow3dInNavigation = true; if (!settings::Get(kAllow3dBuildingsKey, allow3dBuildings)) allow3dBuildings = true; @@ -3319,15 +3325,15 @@ void Framework::OnPowerFacilityChanged(power_management::Facility const facility if (facility == power_management::Facility::PerspectiveView || facility == power_management::Facility::Buildings3d) { - bool allow3d = true, allow3dBuildings = true; - Load3dMode(allow3d, allow3dBuildings); + bool allow3dAlways = true, allow3dInNavigation = true, allow3dBuildings = true; + Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); if (facility == power_management::Facility::PerspectiveView) - allow3d = allow3d && enabled; + allow3dAlways = allow3dAlways && enabled, allow3dInNavigation = allow3dInNavigation && enabled; else allow3dBuildings = allow3dBuildings && enabled; - Allow3dMode(allow3d, allow3dBuildings); + Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); } else if (facility == power_management::Facility::TrafficJams) { diff --git a/map/framework.hpp b/map/framework.hpp index 9fb29750aa..ff106ef4bb 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -687,9 +687,9 @@ public: bool LoadTransliteration(); void SaveTransliteration(bool allowTranslit); - void Allow3dMode(bool allow3d, bool allow3dBuildings); - void Save3dMode(bool allow3d, bool allow3dBuildings); - void Load3dMode(bool & allow3d, bool & allow3dBuildings); + void Allow3dMode(bool allow3dAlways, bool allow3dInNavigation, bool allow3dBuildings); + void Save3dMode(bool allow3dAlways, bool allow3dInNavigation, bool allow3dBuildings); + void Load3dMode(bool & allow3dAlways, bool & allow3dInNavigation, bool & allow3dBuildings); private: void ApplyMapLanguageCode(std::string const & langCode); diff --git a/qt/preferences_dialog.cpp b/qt/preferences_dialog.cpp index 5056e7bb9b..2bd1bc0016 100644 --- a/qt/preferences_dialog.cpp +++ b/qt/preferences_dialog.cpp @@ -78,22 +78,37 @@ namespace qt }); } + QCheckBox * a3dAlwaysCheckBox = new QCheckBox("3D view always (experimental)"); + QCheckBox * a3dInNavigationCheckBox = new QCheckBox("3D view during navigation"); QCheckBox * a3dBuildingsCheckBox = new QCheckBox("3D buildings"); - QCheckBox * a3dCheckBox = new QCheckBox("Perspective view (during navigation)"); { - bool allow3d, allow3dBuildings; - framework.Load3dMode(allow3d, allow3dBuildings); + { + bool allow3dAlways, allow3dInNavigation, allow3dBuildings; + framework.Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + a3dAlwaysCheckBox->setChecked(allow3dAlways); + a3dInNavigationCheckBox->setChecked(allow3dInNavigation); a3dBuildingsCheckBox->setChecked(allow3dBuildings); - a3dCheckBox->setChecked(allow3d); - connect(a3dBuildingsCheckBox, &QCheckBox::stateChanged, [&framework, &allow3d, &allow3dBuildings](int i) + } + connect(a3dAlwaysCheckBox, &QCheckBox::stateChanged, [&framework](int i) { - allow3dBuildings = static_cast(i); - framework.Allow3dMode(allow3d, allow3dBuildings); + bool allow3dAlways, allow3dInNavigation, allow3dBuildings; + framework.Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + allow3dAlways = static_cast(i); + framework.Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); }); - connect(a3dCheckBox, &QCheckBox::stateChanged, [&framework, &allow3d, &allow3dBuildings](int i) + connect(a3dInNavigationCheckBox, &QCheckBox::stateChanged, [&framework](int i) { - allow3d = static_cast(i); - framework.Allow3dMode(allow3d, allow3dBuildings); + bool allow3dAlways, allow3dInNavigation, allow3dBuildings; + framework.Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + allow3dInNavigation = static_cast(i); + framework.Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + }); + connect(a3dBuildingsCheckBox, &QCheckBox::stateChanged, [&framework](int i) + { + bool allow3dAlways, allow3dInNavigation, allow3dBuildings; + framework.Load3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); + allow3dBuildings = static_cast(i); + framework.Allow3dMode(allow3dAlways, allow3dInNavigation, allow3dBuildings); }); } @@ -216,8 +231,9 @@ namespace qt QVBoxLayout * finalLayout = new QVBoxLayout(); finalLayout->addWidget(unitsRadioBox); + finalLayout->addWidget(a3dAlwaysCheckBox); + finalLayout->addWidget(a3dInNavigationCheckBox); finalLayout->addWidget(a3dBuildingsCheckBox); - finalLayout->addWidget(a3dCheckBox); finalLayout->addWidget(largeFontCheckBox); finalLayout->addWidget(transliterationCheckBox); finalLayout->addWidget(developerModeCheckBox); diff --git a/qt/search_panel.cpp b/qt/search_panel.cpp index d49ab0be47..18457df99e 100644 --- a/qt/search_panel.cpp +++ b/qt/search_panel.cpp @@ -188,7 +188,7 @@ bool SearchPanel::Try3dModeCmd(std::string const & str) if (!is3dModeOn && !is3dBuildingsOn && !is3dModeOff) return false; - GetFramework().Allow3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn); + GetFramework().Allow3dMode(false, is3dModeOn, is3dBuildingsOn); return true; } -- 2.45.3