forked from organicmaps/organicmaps
Refactored SaveState/LoadState because they depend on Drape engine now.
This commit is contained in:
parent
f564452ee4
commit
229c6ac65f
11 changed files with 19 additions and 68 deletions
|
@ -130,8 +130,7 @@ bool Framework::CreateDrapeEngine(JNIEnv * env, jobject jSurface, int densityDpi
|
|||
m_work.CreateDrapeEngine(make_ref(m_contextFactory), move(p));
|
||||
m_work.EnterForeground();
|
||||
|
||||
// Load initial state of the map and execute drape tasks which set up custom state.
|
||||
LoadState();
|
||||
// Execute drape tasks which set up custom state.
|
||||
{
|
||||
lock_guard<mutex> lock(m_drapeQueueMutex);
|
||||
if (!m_drapeTasksQueue.empty())
|
||||
|
@ -143,7 +142,6 @@ bool Framework::CreateDrapeEngine(JNIEnv * env, jobject jSurface, int densityDpi
|
|||
|
||||
void Framework::DeleteDrapeEngine()
|
||||
{
|
||||
SaveState();
|
||||
m_work.EnterBackground();
|
||||
|
||||
m_work.DestroyDrapeEngine();
|
||||
|
@ -309,16 +307,6 @@ bool Framework::Search(search::SearchParams const & params)
|
|||
return m_work.Search(params);
|
||||
}
|
||||
|
||||
void Framework::LoadState()
|
||||
{
|
||||
m_work.LoadState();
|
||||
}
|
||||
|
||||
void Framework::SaveState()
|
||||
{
|
||||
m_work.SaveState();
|
||||
}
|
||||
|
||||
void Framework::AddLocalMaps()
|
||||
{
|
||||
m_work.RegisterAllMaps();
|
||||
|
|
|
@ -112,9 +112,6 @@ namespace android
|
|||
string GetLastSearchQuery() { return m_searchQuery; }
|
||||
void ClearLastSearchQuery() { m_searchQuery.clear(); }
|
||||
|
||||
void LoadState();
|
||||
void SaveState();
|
||||
|
||||
void AddLocalMaps();
|
||||
void RemoveLocalMaps();
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@ Java_com_mapswithme_maps_bookmarks_data_BookmarkManager_nativeShowBookmarkOnMap(
|
|||
g_framework->PostDrapeTask([bnc]()
|
||||
{
|
||||
frm()->ShowBookmark(bnc);
|
||||
frm()->SaveState();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -137,7 +137,6 @@ double getExactDPI(double contentScaleFactor)
|
|||
if (GetFramework().GetDrapeEngine() == nullptr)
|
||||
{
|
||||
[self createDrapeEngineWithWidth:w height:h];
|
||||
GetFramework().LoadState();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -374,17 +374,13 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue";
|
|||
|
||||
- (void)onTerminate
|
||||
{
|
||||
GetFramework().SaveState();
|
||||
[(EAGLView *)self.view deallocateNative];
|
||||
}
|
||||
|
||||
- (void)onEnterBackground
|
||||
{
|
||||
// Save state and notify about entering background.
|
||||
|
||||
Framework & f = GetFramework();
|
||||
f.SaveState();
|
||||
f.EnterBackground();
|
||||
GetFramework().EnterBackground();
|
||||
}
|
||||
|
||||
- (void)setMapStyle:(MapStyle)mapStyle
|
||||
|
|
|
@ -726,7 +726,7 @@ void Framework::PrepareToShutdown()
|
|||
DestroyDrapeEngine();
|
||||
}
|
||||
|
||||
void Framework::SaveState()
|
||||
void Framework::SaveViewport()
|
||||
{
|
||||
m2::AnyRectD rect;
|
||||
if (m_currentModelView.isPerspective())
|
||||
|
@ -742,7 +742,7 @@ void Framework::SaveState()
|
|||
Settings::Set("ScreenClipRect", rect);
|
||||
}
|
||||
|
||||
void Framework::LoadState()
|
||||
void Framework::LoadViewport()
|
||||
{
|
||||
m2::AnyRectD rect;
|
||||
if (Settings::Get("ScreenClipRect", rect) && df::GetWorldRect().IsRectInside(rect.GetGlobalRect()))
|
||||
|
@ -1048,6 +1048,7 @@ void Framework::MemoryWarning()
|
|||
void Framework::EnterBackground()
|
||||
{
|
||||
SetRenderingEnabled(false);
|
||||
SaveViewport();
|
||||
|
||||
ms::LatLon const ll = MercatorBounds::ToLatLon(GetViewportCenter());
|
||||
alohalytics::Stats::Instance().LogEvent("Framework::EnterBackground", {{"zoom", strings::to_string(GetDrawScale())},
|
||||
|
@ -1472,6 +1473,8 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::OGLContextFactory> contextFactory,
|
|||
if (m_connectToGpsTrack)
|
||||
GpsTracker::Instance().Connect(bind(&Framework::OnUpdateGpsTrackPointsCallback, this, _1, _2));
|
||||
|
||||
LoadViewport();
|
||||
|
||||
// In case of the engine reinitialization simulate the last tap to show selection mark.
|
||||
SimulateLastTapEventIfNeeded();
|
||||
}
|
||||
|
|
|
@ -329,7 +329,13 @@ public:
|
|||
void DestroyDrapeEngine();
|
||||
/// Called when graphics engine should be temporarily paused and then resumed.
|
||||
void SetRenderingEnabled(bool enable);
|
||||
private:
|
||||
/// Depends on initialized Drape engine.
|
||||
void SaveViewport();
|
||||
/// Depends on initialized Drape engine.
|
||||
void LoadViewport();
|
||||
|
||||
public:
|
||||
void ConnectToGpsTracker();
|
||||
void DisconnectFromGpsTracker();
|
||||
|
||||
|
@ -423,9 +429,6 @@ public:
|
|||
inline m2::PointD GtoP(m2::PointD const & p) const { return m_currentModelView.GtoP(p); }
|
||||
inline m2::PointD GtoP3d(m2::PointD const & p) const { return m_currentModelView.PtoP3d(m_currentModelView.GtoP(p)); }
|
||||
|
||||
void SaveState();
|
||||
void LoadState();
|
||||
|
||||
/// Show all model by it's world rect.
|
||||
void ShowAll();
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ DrawWidget::DrawWidget(QWidget * parent)
|
|||
|
||||
DrawWidget::~DrawWidget()
|
||||
{
|
||||
m_framework->EnterBackground();
|
||||
m_framework.reset();
|
||||
}
|
||||
|
||||
|
@ -126,17 +127,6 @@ void DrawWidget::UpdateAfterSettingsChanged()
|
|||
m_framework->EnterForeground();
|
||||
}
|
||||
|
||||
void DrawWidget::LoadState()
|
||||
{
|
||||
m_framework->LoadState();
|
||||
m_framework->LoadBookmarks();
|
||||
}
|
||||
|
||||
void DrawWidget::SaveState()
|
||||
{
|
||||
m_framework->SaveState();
|
||||
}
|
||||
|
||||
void DrawWidget::ScalePlus()
|
||||
{
|
||||
m_framework->Scale(Framework::SCALE_MAG, true);
|
||||
|
@ -210,7 +200,9 @@ void DrawWidget::initializeGL()
|
|||
|
||||
emit BeforeEngineCreation();
|
||||
CreateEngine();
|
||||
LoadState();
|
||||
|
||||
m_framework->LoadBookmarks();
|
||||
m_framework->EnterForeground();
|
||||
}
|
||||
|
||||
void DrawWidget::paintGL()
|
||||
|
|
|
@ -54,9 +54,6 @@ namespace qt
|
|||
|
||||
void OnLocationUpdate(location::GpsInfo const & info);
|
||||
|
||||
void SaveState();
|
||||
void LoadState();
|
||||
|
||||
void UpdateAfterSettingsChanged();
|
||||
|
||||
void PrepareShutdown();
|
||||
|
|
|
@ -119,7 +119,8 @@ MainWindow::MainWindow() : m_locationService(CreateDesktopLocationService(*this)
|
|||
}
|
||||
#endif
|
||||
|
||||
LoadState();
|
||||
// Always show on full screen.
|
||||
showMaximized();
|
||||
|
||||
#ifndef NO_DOWNLOADER
|
||||
// Show intro dialog if necessary
|
||||
|
@ -177,27 +178,6 @@ bool MainWindow::winEvent(MSG * msg, long * result)
|
|||
}
|
||||
#endif
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
{
|
||||
SaveState();
|
||||
}
|
||||
|
||||
void MainWindow::SaveState()
|
||||
{
|
||||
pair<int, int> xAndY(x(), y());
|
||||
pair<int, int> widthAndHeight(width(), height());
|
||||
Settings::Set("MainWindowXY", xAndY);
|
||||
Settings::Set("MainWindowSize", widthAndHeight);
|
||||
|
||||
m_pDrawWidget->SaveState();
|
||||
}
|
||||
|
||||
void MainWindow::LoadState()
|
||||
{
|
||||
// do always show on full screen
|
||||
showMaximized();
|
||||
}
|
||||
|
||||
void MainWindow::LocationStateModeChanged(location::EMyPositionMode mode)
|
||||
{
|
||||
if (mode == location::MODE_PENDING_POSITION)
|
||||
|
|
|
@ -34,15 +34,12 @@ namespace qt
|
|||
|
||||
public:
|
||||
MainWindow();
|
||||
virtual ~MainWindow();
|
||||
|
||||
virtual void OnLocationError(location::TLocationError errorCode);
|
||||
virtual void OnLocationUpdated(location::GpsInfo const & info);
|
||||
|
||||
protected:
|
||||
string GetIniFile();
|
||||
void SaveState();
|
||||
void LoadState();
|
||||
|
||||
void LocationStateModeChanged(location::EMyPositionMode mode);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue