Switching between 2d, 3d and 3d-buildings modes.

This commit is contained in:
Daria Volvenkova 2015-12-15 19:38:59 +03:00
parent b8c30027c2
commit 29a96cdd6f
20 changed files with 103 additions and 50 deletions

View file

@ -188,9 +188,9 @@ MapStyle Framework::GetMapStyle() const
return m_work.GetMapStyle();
}
void Framework::Allow3dMode(bool allow)
void Framework::Allow3dMode(bool allow3d, bool allow3dBuildings)
{
m_work.Allow3dMode(allow);
m_work.Allow3dMode(allow3d, allow3dBuildings);
}
Storage & Framework::Storage()
@ -1319,13 +1319,14 @@ extern "C"
}
JNIEXPORT void JNICALL
Java_com_mapswithme_maps_Framework_nativeAllow3dMode(JNIEnv * env, jclass thiz, jboolean allow)
Java_com_mapswithme_maps_Framework_nativeAllow3dMode(JNIEnv * env, jclass thiz, jboolean allow, jboolean allowBuildings)
{
bool const allow3d = static_cast<bool>(allow);
bool const allow3dBuildings = static_cast<bool>(allowBuildings);
g_framework->PostDrapeTask([allow3d]()
g_framework->PostDrapeTask([allow3d, allow3dBuildings]()
{
g_framework->Allow3dMode(allow3d);
g_framework->Allow3dMode(allow3d, allow3dBuildings);
});
}
} // extern "C"

View file

@ -156,7 +156,7 @@ namespace android
location::EMyPositionMode GetMyPositionMode() const;
void SetMyPositionMode(location::EMyPositionMode mode);
void Allow3dMode(bool allow);
void Allow3dMode(bool allow3d, bool allow3dBuildings);
void SetupWidget(gui::EWidget widget, float x, float y, dp::Anchor anchor);
void ApplyWidgets();

View file

@ -178,5 +178,5 @@ public class Framework
public native static void nativeDeregisterMaps();
public native static void nativeAllow3dMode(boolean enable);
public native static void nativeAllow3dMode(boolean allow3d, boolean allow3dBuildings);
}

View file

@ -339,13 +339,14 @@ public class SearchFragment extends BaseMwmFragment
private boolean try3dMode(String str)
{
final boolean is3d = str.equals("?3d");
final boolean is3dBuildings = str.equals("?b3d");
final boolean is2d = str.equals("?2d");
if (!is3d && !is2d)
if (!is3d && !is3dBuildings && !is2d)
return false;
hideSearch();
Framework.nativeAllow3dMode(is3d);
Framework.nativeAllow3dMode(is3d || is3dBuildings, is3dBuildings);
return true;
}

View file

@ -237,6 +237,12 @@ void BackendRenderer::AcceptMessage(ref_ptr<Message> message)
ProcessStopRenderingMessage();
break;
}
case Message::Allow3dBuildings:
{
ref_ptr<Allow3dBuildingsMessage> msg = message;
m_readManager->Allow3dBuildings(msg->Allow3dBuildings());
break;
}
default:
ASSERT(false, ());
break;

View file

@ -429,10 +429,14 @@ gui::TWidgetsSizeInfo const & DrapeEngine::GetWidgetSizes()
return m_widgetSizes;
}
void DrapeEngine::Allow3dMode(bool enable)
void DrapeEngine::Allow3dMode(bool allow3d, bool allow3dBuildings)
{
m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread,
make_unique_dp<Allow3dBuildingsMessage>(allow3dBuildings),
MessagePriority::Normal);
m_threadCommutator->PostMessage(ThreadsCommutator::RenderThread,
make_unique_dp<Allow3dModeMessage>(enable),
make_unique_dp<Allow3dModeMessage>(allow3d),
MessagePriority::Normal);
}

View file

@ -114,7 +114,7 @@ public:
void SetWidgetLayout(gui::TWidgetsLayoutInfo && info);
gui::TWidgetsSizeInfo const & GetWidgetSizes();
void Allow3dMode(bool enable);
void Allow3dMode(bool allow3d, bool allow3dBuildings);
void EnablePerspective(double rotationAngle, double angleFOV);
private:

View file

@ -514,8 +514,11 @@ void FrontendRenderer::AcceptMessage(ref_ptr<Message> message)
{
ref_ptr<Allow3dModeMessage> const msg = message;
#ifdef OMIM_OS_DESKTOP
if (m_enable3dInNavigation == msg->Enable())
bool const isPerspective = m_userEventStream.GetCurrentScreen().isPerspective();
if (m_enable3dInNavigation == msg->Allow() &&
m_enable3dInNavigation != isPerspective)
{
if (m_enable3dInNavigation)
AddUserEvent(EnablePerspectiveEvent(M_PI / 4.0, M_PI / 3.0,
false /* animated */, true /* immediately start */));
@ -523,7 +526,7 @@ void FrontendRenderer::AcceptMessage(ref_ptr<Message> message)
AddUserEvent(DisablePerspectiveEvent());
}
#endif
m_enable3dInNavigation = msg->Enable();
m_enable3dInNavigation = msg->Allow();
break;
}

View file

@ -45,6 +45,7 @@ public:
InvalidateTextures,
Invalidate,
Allow3dMode,
Allow3dBuildings,
EnablePerspective
};

View file

@ -656,15 +656,29 @@ public:
class Allow3dModeMessage : public Message
{
public:
Allow3dModeMessage(bool enable)
: m_enable(enable)
Allow3dModeMessage(bool allow)
: m_allow(allow)
{}
Type GetType() const override { return Message::Allow3dMode; }
bool Enable() const { return m_enable; }
bool Allow() const { return m_allow; }
private:
bool const m_enable;
bool const m_allow;
};
class Allow3dBuildingsMessage : public Message
{
public:
Allow3dBuildingsMessage(bool allow3dBuildings)
: m_allow3dBuildings(allow3dBuildings)
{}
Type GetType() const override { return Message::Allow3dBuildings; }
bool Allow3dBuildings() const { return m_allow3dBuildings; }
private:
bool const m_allow3dBuildings;
};
class EnablePerspectiveMessage : public Message

View file

@ -37,6 +37,8 @@ ReadManager::ReadManager(ref_ptr<ThreadsCommutator> commutator, MapDataProvider
, m_pool(make_unique_dp<threads::ThreadPool>(ReadCount(), bind(&ReadManager::OnTaskFinished, this, _1)))
, m_forceUpdate(true)
, m_is3d(false)
, m_is3dBuildings(false)
, m_modeChanged(false)
, myPool(64, ReadMWMTaskFactory(m_memIndex, m_model))
, m_counter(0)
, m_generationCounter(0)
@ -78,9 +80,12 @@ void ReadManager::UpdateCoverage(ScreenBase const & screen, TTilesCollection con
m_forceUpdate = false;
m_is3d = screen.isPerspective();
bool const changeMode = (m_is3d != m_currentViewport.isPerspective());
if (changeMode || MustDropAllTiles(screen))
m_modeChanged |= m_is3dBuildings && (m_is3d != m_currentViewport.isPerspective());
if (m_modeChanged || MustDropAllTiles(screen))
{
m_modeChanged = false;
IncreaseCounter(static_cast<int>(tiles.size()));
m_generationCounter++;
@ -183,7 +188,7 @@ void ReadManager::PushTaskBackForTileKey(TileKey const & tileKey, ref_ptr<dp::Te
{
shared_ptr<TileInfo> tileInfo(new TileInfo(make_unique_dp<EngineContext>(TileKey(tileKey, m_generationCounter),
m_commutator, texMng)));
tileInfo->Set3dMode(m_is3d);
tileInfo->Set3dBuildings(m_is3d && m_is3dBuildings);
m_tileInfos.insert(tileInfo);
ReadMWMTask * task = myPool.Get();
task->Init(tileInfo);
@ -192,7 +197,7 @@ void ReadManager::PushTaskBackForTileKey(TileKey const & tileKey, ref_ptr<dp::Te
void ReadManager::PushTaskFront(shared_ptr<TileInfo> const & tileToReread)
{
tileToReread->Set3dMode(m_is3d);
tileToReread->Set3dBuildings(m_is3d && m_is3dBuildings);
ReadMWMTask * task = myPool.Get();
task->Init(tileToReread);
m_pool->PushFront(task);
@ -215,4 +220,14 @@ void ReadManager::IncreaseCounter(int value)
m_counter += value;
}
void ReadManager::Allow3dBuildings(bool allow3dBuildings)
{
if (m_is3dBuildings != allow3dBuildings)
{
m_modeChanged = true;
m_forceUpdate = true;
m_is3dBuildings = allow3dBuildings;
}
}
} // namespace df

View file

@ -36,6 +36,7 @@ public:
void Stop();
bool CheckTileKey(TileKey const & tileKey) const;
void Allow3dBuildings(bool allow3dBuildings);
static size_t ReadCount();
@ -57,6 +58,8 @@ private:
ScreenBase m_currentViewport;
bool m_forceUpdate;
bool m_is3d;
bool m_is3dBuildings;
bool m_modeChanged;
struct LessByTileInfo
{

View file

@ -38,12 +38,12 @@ size_t kMinFlushSizes[df::PrioritiesCount] =
RuleDrawer::RuleDrawer(TDrawerCallback const & fn,
TCheckCancelledCallback const & checkCancelled,
TIsCountryLoadedByNameFn const & isLoadedFn,
ref_ptr<EngineContext> context, bool is3d)
ref_ptr<EngineContext> context, bool is3dBuildings)
: m_callback(fn)
, m_checkCancelled(checkCancelled)
, m_isLoadedFn(isLoadedFn)
, m_context(context)
, m_is3d(is3d)
, m_is3dBuidings(is3dBuildings)
, m_wasCancelled(false)
{
ASSERT(m_callback != nullptr, ());
@ -134,7 +134,7 @@ void RuleDrawer::operator()(FeatureType const & f)
if (s.AreaStyleExists())
{
bool const is3dBuilding = m_is3d ? (ftypes::IsBuildingChecker::Instance()(f) && f.GetLayer() >= 0) : false;
bool const is3dBuilding = m_is3dBuidings ? (ftypes::IsBuildingChecker::Instance()(f) && f.GetLayer() >= 0) : false;
float areaHeight = 0.0f;
if (is3dBuilding)

View file

@ -29,7 +29,7 @@ public:
using TIsCountryLoadedByNameFn = function<bool (string const &)>;
RuleDrawer(TDrawerCallback const & drawerFn, TCheckCancelledCallback const & checkCancelled,
TIsCountryLoadedByNameFn const & isLoadedFn, ref_ptr<EngineContext> context, bool is3d);
TIsCountryLoadedByNameFn const & isLoadedFn, ref_ptr<EngineContext> context, bool is3dBuildings);
~RuleDrawer();
void operator() (FeatureType const & f);
@ -45,7 +45,7 @@ private:
m2::RectD m_globalRect;
double m_currentScaleGtoP;
bool const m_is3d;
bool const m_is3dBuidings;
array<TMapShapes, df::PrioritiesCount> m_mapShapes;
bool m_wasCancelled;

View file

@ -16,7 +16,7 @@ namespace df
TileInfo::TileInfo(drape_ptr<EngineContext> && context)
: m_context(move(context))
, m_is3d(false)
, m_is3dBuidings(false)
, m_isCanceled(false)
{
}
@ -74,7 +74,7 @@ void TileInfo::ReadFeatures(MapDataProvider const & model, MemoryFeatureIndex &
RuleDrawer drawer(bind(&TileInfo::InitStylist, this, _1 ,_2),
bind(&TileInfo::IsCancelled, this),
model.m_isCountryLoadedByNameFn,
make_ref(m_context), m_is3d);
make_ref(m_context), m_is3dBuidings);
model.ReadFeatures(bind<void>(ref(drawer), _1), featuresToRead);
}
}

View file

@ -31,8 +31,8 @@ public:
void Cancel(MemoryFeatureIndex & memIndex);
bool IsCancelled() const;
void Set3dMode(bool mode) { m_is3d = mode; }
bool Get3dMode() const { return m_is3d; }
void Set3dBuildings(bool buildings3d) { m_is3dBuidings = buildings3d; }
bool Get3dBuildings() const { return m_is3dBuidings; }
m2::RectD GetGlobalRect() const;
TileKey const & GetTileKey() const { return m_context->GetTileKey(); }
@ -50,7 +50,7 @@ private:
private:
drape_ptr<EngineContext> m_context;
TFeaturesInfo m_featureInfo;
bool m_is3d;
bool m_is3dBuidings;
atomic<bool> m_isCanceled;
};

View file

@ -36,13 +36,14 @@
{
// Hook for shell command on change 3d mode
BOOL const is3d = [cmd isEqualToString:@"?3d"];
BOOL const is3dBuildings = [cmd isEqualToString:@"?b3d"];
BOOL const is2d = [cmd isEqualToString:@"?2d"];
if (!is3d && !is2d)
if (!is3d && !is3dBuildings && !is2d)
return NO;
Framework & frm = GetFramework();
frm.Allow3dMode(is3d);
frm.Allow3dMode(is3d || is3dBuildings, is3dBuildings);
return YES;
}

View file

@ -94,6 +94,7 @@ namespace
char const kRouterTypeKey[] = "router";
char const kMapStyleKey[] = "MapStyleKeyV1";
char const kAllow3dKey[] = "Allow3d";
char const kAllow3dBuildingsKey[] = "Buildings3d";
double const kRotationAngle = math::pi4;
double const kAngleFOV = math::pi / 3.0;
@ -1282,8 +1283,10 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::OGLContextFactory> contextFactory,
ActivateUserMark(mark, true);
}
bool const allow3d = Load3dMode();
Allow3dMode(allow3d);
bool allow3d = true;
bool allow3dBuildings = true;
Load3dMode(allow3d, allow3dBuildings);
Allow3dMode(allow3d, allow3dBuildings);
// In case of the engine reinitialization recover route.
if (m_routingSession.IsActive())
@ -2073,20 +2076,20 @@ void Framework::SetRouteFinishPoint(m2::PointD const & pt, bool isValid)
m_drapeEngine->SetRoutePoint(pt, false /* isStart */, isValid);
}
void Framework::Allow3dMode(bool allow)
void Framework::Allow3dMode(bool allow3d, bool allow3dBuildings)
{
Save3dMode(allow);
CallDrapeFunction(bind(&df::DrapeEngine::Allow3dMode, _1, allow));
Save3dMode(allow3d, allow3dBuildings);
CallDrapeFunction(bind(&df::DrapeEngine::Allow3dMode, _1, allow3d, allow3dBuildings));
}
void Framework::Save3dMode(bool allow)
void Framework::Save3dMode(bool allow3d, bool allow3dBuildings)
{
Settings::Set(kAllow3dKey, allow);
Settings::Set(kAllow3dKey, allow3d);
Settings::Set(kAllow3dBuildingsKey, allow3dBuildings);
}
bool Framework::Load3dMode()
void Framework::Load3dMode(bool &allow3d, bool &allow3dBuildings)
{
bool allow = true;
Settings::Get(kAllow3dKey, allow);
return allow;
Settings::Get(kAllow3dKey, allow3d);
Settings::Get(kAllow3dBuildingsKey, allow3dBuildings);
}

View file

@ -544,9 +544,9 @@ public:
void SetRouteStartPoint(m2::PointD const & pt, bool isValid);
void SetRouteFinishPoint(m2::PointD const & pt, bool isValid);
void Allow3dMode(bool allow);
void Save3dMode(bool allow);
bool Load3dMode();
void Allow3dMode(bool allow3d, bool allow3dBuildings);
void Save3dMode(bool allow3d, bool allow3dBuildings);
void Load3dMode(bool & allow3d, bool & allow3dBuildings);
private:
void SetRouterImpl(routing::RouterType type);

View file

@ -195,12 +195,13 @@ bool SearchPanel::TryChangeRouterCmd(QString const & str)
bool SearchPanel::Try3dModeCmd(QString const & str)
{
bool const is3dModeOn = (str == "?3d");
bool const is3dBuildingsOn = (str == "?b3d");
bool const is3dModeOff = (str == "?2d");
if (!is3dModeOn && !is3dModeOff)
if (!is3dModeOn && !is3dBuildingsOn && !is3dModeOff)
return false;
m_pDrawWidget->GetFramework().Allow3dMode(is3dModeOn);
m_pDrawWidget->GetFramework().Allow3dMode(is3dModeOn || is3dBuildingsOn, is3dBuildingsOn);
return true;
}