From c7e4429a42b5592603b4ea6c03f7373e23ad5fdf Mon Sep 17 00:00:00 2001 From: ExMix Date: Tue, 18 Nov 2014 10:51:30 +0300 Subject: [PATCH] [core] condition compilation. We can use old renderer or drape based on define USE_DRAPE --- common.pri | 7 ++ map/basic_tiling_render_policy.cpp | 2 + map/benchmark_engine.cpp | 4 + map/bookmark_manager.cpp | 4 + map/events.cpp | 2 + map/events.hpp | 2 + map/feature_processor.cpp | 4 + map/feature_processor.hpp | 2 + map/framework.cpp | 133 +++++++++++++++++++++++++++-- map/framework.hpp | 39 ++++++--- map/location_state.cpp | 13 ++- map/location_state.hpp | 4 + map/map_tests/map_tests.pro | 2 +- map/simple_render_policy.cpp | 2 + map/tile_renderer.cpp | 2 + map/user_mark_container.cpp | 4 + map/yopme_render_policy.cpp | 2 + map_server/main.cpp | 7 +- map_server/map_server.pro | 2 +- omim.pro | 21 ++++- 20 files changed, 235 insertions(+), 23 deletions(-) diff --git a/common.pri b/common.pri index 79a851a87a..b888327ed0 100644 --- a/common.pri +++ b/common.pri @@ -2,6 +2,13 @@ # # To use it, define ROOT_DIR variable and include($$ROOT_DIR/common.pri) + +#CONFIG *= drape + +drape { + DEFINES *= USE_DRAPE +} + # our own version variables VERSION_MAJOR = 2 VERSION_MINOR = 4 diff --git a/map/basic_tiling_render_policy.cpp b/map/basic_tiling_render_policy.cpp index 64ccf45a7b..bb7576f3d5 100644 --- a/map/basic_tiling_render_policy.cpp +++ b/map/basic_tiling_render_policy.cpp @@ -51,6 +51,7 @@ void BasicTilingRenderPolicy::CheckAnimationTransition() void BasicTilingRenderPolicy::DrawFrame(shared_ptr const & e, ScreenBase const & s) { +#ifndef USE_DRAPE if (m_QueuedRenderer) { m_QueuedRenderer->DrawFrame(); @@ -93,6 +94,7 @@ void BasicTilingRenderPolicy::DrawFrame(shared_ptr const & e, Screen m_IsEmptyModel = m_CoverageGenerator->IsEmptyDrawing(); pDrawer->endFrame(); +#endif // USE_DRAPE } void BasicTilingRenderPolicy::EndFrame(shared_ptr const & e, ScreenBase const & s) diff --git a/map/benchmark_engine.cpp b/map/benchmark_engine.cpp index 26c414d13a..3f7863b931 100644 --- a/map/benchmark_engine.cpp +++ b/map/benchmark_engine.cpp @@ -210,6 +210,7 @@ void BenchmarkEngine::MarkBenchmarkResultsStart() bool BenchmarkEngine::NextBenchmarkCommand() { +#ifndef USE_DRAPE if (m_benchmarks[m_curBenchmark].m_provider->hasRect() || ++m_curBenchmark < m_benchmarks.size()) { double const s = m_benchmarksTimer.ElapsedSeconds(); @@ -235,6 +236,9 @@ bool BenchmarkEngine::NextBenchmarkCommand() LOG(LINFO, ("Bechmarks took", m_benchmarksTimer.ElapsedSeconds(), "seconds to complete")); return false; } +#else + return false; +#endif // USE_DRAPE } void BenchmarkEngine::Start() diff --git a/map/bookmark_manager.cpp b/map/bookmark_manager.cpp index 599bc0b2ca..a28e6e2efe 100644 --- a/map/bookmark_manager.cpp +++ b/map/bookmark_manager.cpp @@ -128,6 +128,7 @@ public: void BookmarkManager::DrawCategory(BookmarkCategory const * cat, PaintOverlayEvent const & e) const { +#ifndef USE_DRAPE /// TODO cutomize draw in UserMarkContainer for user Draw method Navigator const & navigator = m_framework.GetNavigator(); ScreenBase const & screen = navigator.Screen(); @@ -146,6 +147,7 @@ void BookmarkManager::DrawCategory(BookmarkCategory const * cat, PaintOverlayEve } cat->Draw(e, m_cache); +#endif // USE_DRAPE } void BookmarkManager::ClearItems() @@ -249,6 +251,7 @@ size_t BookmarkManager::CreateBmCategory(string const & name) void BookmarkManager::DrawItems(shared_ptr const & e) const { +#ifndef USE_DRAPE ASSERT(m_cache != NULL, ()); ScreenBase const & screen = m_framework.GetNavigator().Screen(); m2::RectD const limitRect = screen.ClipRect(); @@ -297,6 +300,7 @@ void BookmarkManager::DrawItems(shared_ptr const & e) const m_selection.Draw(event, m_cache); pScreen->endFrame(); +#endif // USE_DRAPE } void BookmarkManager::DeleteBmCategory(CategoryIter i) diff --git a/map/events.cpp b/map/events.cpp index a9276962f8..1dbd12d570 100644 --- a/map/events.cpp +++ b/map/events.cpp @@ -1,5 +1,6 @@ #include "events.hpp" +#ifndef USE_DRAPE PaintEvent::PaintEvent(Drawer * drawer, core::CommandsQueue::Environment const * env) : m_drawer(drawer), @@ -36,3 +37,4 @@ void PaintEvent::setIsEmptyDrawing(bool flag) { m_isEmptyDrawing = flag; } +#endif // USE_DRAPE diff --git a/map/events.hpp b/map/events.hpp index 9c5a6dec66..24c1e41440 100644 --- a/map/events.hpp +++ b/map/events.hpp @@ -44,6 +44,7 @@ public: inline double ScaleFactor() const { return m_factor; } }; +#ifndef USE_DRAPE class Drawer; class PaintEvent @@ -77,3 +78,4 @@ private: Drawer * m_drawer; ScreenBase m_modelView; }; +#endif // USE_DRAPE diff --git a/map/feature_processor.cpp b/map/feature_processor.cpp index ecad412201..8cfe35996c 100644 --- a/map/feature_processor.cpp +++ b/map/feature_processor.cpp @@ -1,7 +1,9 @@ #include "feature_processor.hpp" #include "geometry_processors.hpp" #include "feature_info.hpp" +#ifndef USE_DRAPE #include "drawer.hpp" +#endif // USE_DRAPE #include "../indexer/feature_impl.hpp" #include "../indexer/feature_algo.hpp" @@ -9,6 +11,7 @@ namespace fwork { +#ifndef USE_DRAPE namespace { template void assign_point(di::FeatureInfo & p, TSrc & src) @@ -177,4 +180,5 @@ namespace fwork { return (m_zoom >= feature::g_arrCountryScales[0] && !m_hasNonCoast); } +#endif // USE_DRAPE } diff --git a/map/feature_processor.hpp b/map/feature_processor.hpp index 34ad7233e5..66bd94f112 100644 --- a/map/feature_processor.hpp +++ b/map/feature_processor.hpp @@ -17,6 +17,7 @@ class redraw_operation_cancelled {}; namespace fwork { +#ifndef USE_DRAPE class FeatureProcessor { m2::RectD m_rect; @@ -48,4 +49,5 @@ namespace fwork bool IsEmptyDrawing() const; }; +#endif //USE_DRAPE } diff --git a/map/framework.cpp b/map/framework.cpp index f090090cae..c1aae23306 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -1,6 +1,10 @@ #include "framework.hpp" -#include "feature_processor.hpp" -#include "drawer.hpp" +#ifndef USE_DRAPE + #include "feature_processor.hpp" + #include "drawer.hpp" +#else + #include "../drape_frontend/visual_params.hpp" +#endif // USE_DRAPE #include "benchmark_provider.hpp" #include "benchmark_engine.hpp" #include "geourl_process.hpp" @@ -565,7 +569,11 @@ bool Framework::AddBookmarksFile(string const & filePath) void Framework::PrepareToShutdown() { +#ifndef USE_DRAPE SetRenderPolicy(0); +#else + m_drapeEngine.Destroy(); +#endif // USE_DRAPE } void Framework::SetMaxWorldRect() @@ -576,14 +584,20 @@ void Framework::SetMaxWorldRect() bool Framework::NeedRedraw() const { // Checking this here allows to avoid many dummy "IsInitialized" flags in client code. +#ifndef USE_DRAPE return (m_renderPolicy && m_renderPolicy->NeedRedraw()); +#else + return false; +#endif // USE_DRAPE } void Framework::SetNeedRedraw(bool flag) { +#ifndef USE_DRAPE m_renderPolicy->GetWindowHandle()->setNeedRedraw(flag); //if (!flag) // m_doForceUpdate = false; +#endif // USE_DRAPE } void Framework::Invalidate(bool doForceUpdate) @@ -593,6 +607,7 @@ void Framework::Invalidate(bool doForceUpdate) void Framework::InvalidateRect(m2::RectD const & rect, bool doForceUpdate) { +#ifndef USE_DRAPE if (m_renderPolicy) { ASSERT ( rect.IsValid(), () ); @@ -600,6 +615,10 @@ void Framework::InvalidateRect(m2::RectD const & rect, bool doForceUpdate) m_renderPolicy->SetInvalidRect(m2::AnyRectD(rect)); m_renderPolicy->GetWindowHandle()->invalidate(); } +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE } void Framework::SaveState() @@ -609,7 +628,12 @@ void Framework::SaveState() bool Framework::LoadState() { - return m_navigator.LoadState(); + bool r = m_navigator.LoadState(); +#ifdef USE_DRAPE + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif + return r; } //@} @@ -620,25 +644,37 @@ void Framework::OnSize(int w, int h) if (h < 2) h = 2; m2::RectD oldPixelRect = m_navigator.Screen().PixelRect(); - m_navigator.OnSize(0, 0, w, h); +#ifndef USE_DRAPE + m_navigator.OnSize(0, 0, w, h); if (m_renderPolicy) { m_informationDisplay.setDisplayRect(m2::RectI(0, 0, w, h)); m_renderPolicy->OnSize(w, h); } +#else + if (!m_drapeEngine.IsNull()) + { + double vs = df::VisualParams::Instance().GetVisualScale(); + m_navigator.OnSize(0, 0, vs * w, vs * h); + //m_navigator.OnSize(0, 0, w, h); + m_drapeEngine->Resize(w, h); + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); + } +#endif // USE_DRAPE m_width = w; m_height = h; GetLocationState()->OnSize(oldPixelRect); - } bool Framework::SetUpdatesEnabled(bool doEnable) { +#ifndef USE_DRAPE if (m_renderPolicy) return m_renderPolicy->GetWindowHandle()->setUpdatesEnabled(doEnable); else +#endif // USE_DRAPE return false; } @@ -647,6 +683,7 @@ int Framework::GetDrawScale() const return m_navigator.GetDrawScale(); } +#ifndef USE_DRAPE RenderPolicy::TRenderFn Framework::DrawModelFn() { bool const isTiling = m_renderPolicy->IsTiling(); @@ -686,6 +723,7 @@ void Framework::DrawModel(shared_ptr const & e, if (m_navigator.Update(ElapsedSeconds())) Invalidate(); } +#endif // USE_DRAPE void Framework::ShowBuyProDialog() { @@ -708,6 +746,7 @@ bool Framework::IsCountryLoaded(m2::PointD const & pt) const return m_model.IsLoaded(fName); } +#ifndef USE_DRAPE void Framework::BeginPaint(shared_ptr const & e) { if (m_renderPolicy) @@ -766,6 +805,7 @@ void Framework::DoPaint(shared_ptr const & e) DrawAdditionalInfo(e); } } +#endif // USE_DRAPE m2::PointD const & Framework::GetViewportCenter() const { @@ -950,16 +990,26 @@ void Framework::StartDrag(DragEvent const & e) m_navigator.StartDrag(m_navigator.ShiftPoint(e.Pos()), ElapsedSeconds()); m_informationDisplay.locationState()->DragStarted(); +#ifndef USE_DRAPE if (m_renderPolicy) m_renderPolicy->StartDrag(); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE } void Framework::DoDrag(DragEvent const & e) { m_navigator.DoDrag(m_navigator.ShiftPoint(e.Pos()), ElapsedSeconds()); +#ifndef USE_DRAPE if (m_renderPolicy) m_renderPolicy->DoDrag(); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE } void Framework::StopDrag(DragEvent const & e) @@ -967,11 +1017,16 @@ void Framework::StopDrag(DragEvent const & e) m_navigator.StopDrag(m_navigator.ShiftPoint(e.Pos()), ElapsedSeconds(), true); m_informationDisplay.locationState()->DragEnded(); +#ifndef USE_DRAPE if (m_renderPolicy) { m_renderPolicy->StopDrag(); UpdateUserViewportChanged(); } +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE } void Framework::StartRotate(RotateEvent const & e) @@ -979,7 +1034,12 @@ void Framework::StartRotate(RotateEvent const & e) if (CanRotate()) { m_navigator.StartRotate(e.Angle(), ElapsedSeconds()); +#ifndef USE_DRAPE m_renderPolicy->StartRotate(e.Angle(), ElapsedSeconds()); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE GetLocationState()->ScaleStarted(); } } @@ -989,7 +1049,12 @@ void Framework::DoRotate(RotateEvent const & e) if (CanRotate()) { m_navigator.DoRotate(e.Angle(), ElapsedSeconds()); +#ifndef USE_DRAPE m_renderPolicy->DoRotate(e.Angle(), ElapsedSeconds()); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif } } @@ -1000,7 +1065,12 @@ void Framework::StopRotate(RotateEvent const & e) m_navigator.StopRotate(e.Angle(), ElapsedSeconds()); GetLocationState()->Rotated(); GetLocationState()->ScaleEnded(); +#ifndef USE_DRAPE m_renderPolicy->StopRotate(e.Angle(), ElapsedSeconds()); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif UpdateUserViewportChanged(); } @@ -1016,12 +1086,15 @@ void Framework::Move(double azDir, double factor) /// @name Scaling. //@{ -void Framework::ScaleToPoint(ScaleToPointEvent const & e) +void Framework::ScaleToPoint(ScaleToPointEvent const & e, bool anim) { m2::PointD pt = m_navigator.ShiftPoint(e.Pt()); GetLocationState()->CorrectScalePoint(pt); - m_animController->AddTask(m_navigator.ScaleToPointAnim(pt, e.ScaleFactor(), 0.25)); + if (anim) + m_animController->AddTask(m_navigator.ScaleToPointAnim(pt, e.ScaleFactor(), 0.25)); + else + m_navigator.ScaleToPoint(pt, e.ScaleFactor(), 0); Invalidate(); UpdateUserViewportChanged(); @@ -1052,8 +1125,12 @@ void Framework::CalcScalePoints(ScaleEvent const & e, m2::PointD & pt1, m2::Poin bool Framework::CanRotate() const { +#ifndef USE_DRAPE return m_renderPolicy && m_renderPolicy->DoSupportRotation(); +#else + return true; +#endif // USE_DRAPE } void Framework::StartScale(ScaleEvent const & e) @@ -1063,8 +1140,13 @@ void Framework::StartScale(ScaleEvent const & e) GetLocationState()->ScaleStarted(); m_navigator.StartScale(pt1, pt2, ElapsedSeconds()); +#ifndef USE_DRAPE if (m_renderPolicy) m_renderPolicy->StartScale(); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE } void Framework::DoScale(ScaleEvent const & e) @@ -1073,8 +1155,13 @@ void Framework::DoScale(ScaleEvent const & e) CalcScalePoints(e, pt1, pt2); m_navigator.DoScale(pt1, pt2, ElapsedSeconds()); +#ifndef USE_DRAPE if (m_renderPolicy) m_renderPolicy->DoScale(); +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE if (m_navigator.IsRotatingDuringScale()) GetLocationState()->Rotated(); @@ -1087,11 +1174,16 @@ void Framework::StopScale(ScaleEvent const & e) m_navigator.StopScale(pt1, pt2, ElapsedSeconds()); +#ifndef USE_DRAPE if (m_renderPolicy) { m_renderPolicy->StopScale(); UpdateUserViewportChanged(); } +#else + if (!m_drapeEngine.IsNull()) + m_drapeEngine->UpdateCoverage(m_navigator.Screen()); +#endif // USE_DRAPE GetLocationState()->ScaleEnded(); } @@ -1367,6 +1459,7 @@ bool Framework::GetDistanceAndAzimut(m2::PointD const & point, return (d < 25000.0); } +#ifndef USE_DRAPE void Framework::SetRenderPolicy(RenderPolicy * renderPolicy) { m_bmManager.ResetScreen(); @@ -1428,6 +1521,28 @@ RenderPolicy * Framework::GetRenderPolicy() const { return m_renderPolicy.get(); } +#else +void Framework::CreateDrapeEngine(dp::RefPointer contextFactory, float vs, int w, int h) +{ + typedef df::MapDataProvider::TReadIDsFn TReadIDsFn; + typedef df::MapDataProvider::TReadFeaturesFn TReadFeaturesFn; + typedef df::MapDataProvider::TReadIdCallback TReadIdCallback; + typedef df::MapDataProvider::TReadFeatureCallback TReadFeatureCallback; + + TReadIDsFn idReadFn = [this](TReadIdCallback const & fn, m2::RectD const & r, int scale) + { + m_model.ForEachFeatureID(r, fn, scale); + }; + + TReadFeaturesFn featureReadFn = [this](TReadFeatureCallback const & fn, vector const & ids) + { + m_model.ReadFeatures(fn, ids); + }; + + m_drapeEngine.Reset(new df::DrapeEngine(contextFactory, df::Viewport(vs, 0, 0, w, h), df::MapDataProvider(idReadFn, featureReadFn))); + OnSize(w, h); +} +#endif // USE_DRAPE void Framework::SetupMeasurementSystem() { @@ -1573,6 +1688,7 @@ bool Framework::IsBenchmarking() const return m_benchmarkEngine != 0; } +#ifndef USE_DRAPE namespace { @@ -1597,10 +1713,12 @@ OEPointerT GetClosestToPivot(list const & l, m2::PointD const & pxPo } } +#endif // USE_DRAPE bool Framework::GetVisiblePOI(m2::PointD const & pxPoint, m2::PointD & pxPivot, search::AddressInfo & info) const { +#ifndef USE_DRAPE graphics::OverlayElement::UserInfo ui; { @@ -1644,6 +1762,7 @@ bool Framework::GetVisiblePOI(m2::PointD const & pxPoint, m2::PointD & pxPivot, pxPivot = GtoP(center); return true; } +#endif // USE_DRAPE return false; } diff --git a/map/framework.hpp b/map/framework.hpp index 9d6f8f8093..185034be62 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -1,13 +1,18 @@ #pragma once #include "events.hpp" -#include "render_policy.hpp" +#ifndef USE_DRAPE + #include "render_policy.hpp" + #include "window_handle.hpp" +#else + #include "../drape/oglcontextfactory.hpp" + #include "../drape_frontend/drape_engine.hpp" +#endif // USE_DRAPE +#include "feature_vec_model.hpp" #include "information_display.hpp" -#include "window_handle.hpp" #include "location_state.hpp" #include "navigator.hpp" #include "animator.hpp" -#include "feature_vec_model.hpp" #include "scales_processor.hpp" #include "bookmark.hpp" @@ -26,9 +31,11 @@ #include "../platform/location.hpp" -#include "../graphics/defines.hpp" -#include "../graphics/screen.hpp" -#include "../graphics/color.hpp" +#ifndef USE_DRAPE + #include "../graphics/defines.hpp" + #include "../graphics/screen.hpp" + #include "../graphics/color.hpp" +#endif // USE_DRAPE #include "../geometry/rect2d.hpp" #include "../geometry/screenbase.hpp" @@ -40,8 +47,6 @@ #include "../std/unique_ptr.hpp" #include "../std/target_os.hpp" -//#define DRAW_TOUCH_POINTS - namespace search { class Result; @@ -96,7 +101,11 @@ protected: typedef vector::iterator CategoryIter; +#ifndef USE_DRAPE unique_ptr m_renderPolicy; +#else + dp::MasterPointer m_drapeEngine; +#endif double m_StartForegroundTime; @@ -126,8 +135,9 @@ protected: //return m_timer.ElapsedSeconds(); return 0.0; } - +#ifndef USE_DRAPE void DrawAdditionalInfo(shared_ptr const & e); +#endif // USE_DRAPE BenchmarkEngine * m_benchmarkEngine; @@ -214,9 +224,13 @@ public: void OnCompassUpdate(location::CompassInfo const & info); //@} +#ifndef USE_DRAPE void SetRenderPolicy(RenderPolicy * renderPolicy); void InitGuiSubsystem(); RenderPolicy * GetRenderPolicy() const; +#else + void CreateDrapeEngine(dp::RefPointer contextFactory, float vs, int w, int h); +#endif // USE_DRAPE InformationDisplay & GetInformationDisplay(); CountryStatusDisplay * GetCountryStatusDisplay() const; @@ -230,13 +244,14 @@ public: void SetupMeasurementSystem(); +#ifndef USE_DRAPE RenderPolicy::TRenderFn DrawModelFn(); void DrawModel(shared_ptr const & e, ScreenBase const & screen, m2::RectD const & renderRect, int baseScale, bool isTilingQuery); - +#endif // USE_DRAPE void ShowBuyProDialog(); @@ -352,11 +367,13 @@ private: public: bool GetVisiblePOI(m2::PointD const & pxPoint, m2::PointD & pxPivot, search::AddressInfo & info) const; +#ifndef USE_DRAPE virtual void BeginPaint(shared_ptr const & e); /// Function for calling from platform dependent-paint function. virtual void DoPaint(shared_ptr const & e); virtual void EndPaint(shared_ptr const & e); +#endif // USE_DRAPE private: /// Always check rect in public function for minimal draw scale. @@ -408,7 +425,7 @@ public: /// @name Scaling. //@{ - void ScaleToPoint(ScaleToPointEvent const & e); + void ScaleToPoint(ScaleToPointEvent const & e, bool anim = true); void ScaleDefault(bool enlarge); void Scale(double scale); diff --git a/map/location_state.cpp b/map/location_state.cpp index c0e184e65b..96733b60b3 100644 --- a/map/location_state.cpp +++ b/map/location_state.cpp @@ -3,9 +3,11 @@ #include "framework.hpp" #include "move_screen_task.hpp" +#ifndef USE_DRAPE #include "../graphics/display_list.hpp" #include "../graphics/icon.hpp" #include "../graphics/depth_constants.hpp" +#endif // USE_DRAPE #include "../anim/controller.hpp" #include "../anim/task.hpp" @@ -246,7 +248,7 @@ State::Params::Params() State::State(Params const & p) : TBase(p), - m_modeInfo(Follow), + m_modeInfo(UnknownPosition), m_errorRadius(0), m_position(0, 0), m_drawDirection(0.0), @@ -454,19 +456,23 @@ void State::InvalidatePosition() void State::cache() { +#ifndef USE_DRAPE CachePositionArrow(); CacheRoutingArrow(); CacheLocationMark(); m_controller->GetCacheScreen()->completeCommands(); +#endif // USE_DRAPE } void State::purge() { +#ifndef USE_DRAPE m_positionArrow.reset(); m_locationMarkDL.reset(); m_positionMarkDL.reset(); m_routingArrow.reset(); +#endif // USE_DRAPE } void State::update() @@ -484,6 +490,7 @@ void State::update() void State::draw(graphics::OverlayRenderer * r, math::Matrix const & m) const { +#ifndef USE_DRAPE if (!IsModeHasPosition() || !isVisible()) return; @@ -525,8 +532,10 @@ void State::draw(graphics::OverlayRenderer * r, } else r->drawDisplayList(m_positionMarkDL.get(), drawM); +#endif // USE_DRAPE } +#ifndef USE_DRAPE void State::CachePositionArrow() { m_positionArrow.reset(); @@ -610,6 +619,8 @@ void State::CacheArrow(graphics::DisplayList * dl, const string & iconName) cacheScreen->endFrame(); } +#endif // USE_DRAPE + bool State::IsRotationActive() const { return m_framework->GetNavigator().DoSupportRotation() && IsDirectionKnown(); diff --git a/map/location_state.hpp b/map/location_state.hpp index bccfe7b4c8..7469bd72ab 100644 --- a/map/location_state.hpp +++ b/map/location_state.hpp @@ -123,11 +123,13 @@ namespace location void CallPositionChangedListeners(m2::PointD const & pt); void CallStateModeListeners(); +#ifndef USE_DRAPE void CachePositionArrow(); void CacheRoutingArrow(); void CacheLocationMark(); void CacheArrow(graphics::DisplayList * dl, string const & iconName); +#endif // USE_DRAPE bool IsRotationActive() const; bool IsDirectionKnown() const; @@ -177,10 +179,12 @@ namespace location /// @name Compass Rendering Parameters //@{ +#ifndef USE_DRAPE unique_ptr m_positionArrow; unique_ptr m_locationMarkDL; unique_ptr m_positionMarkDL; unique_ptr m_routingArrow; +#endif // USE_DRAPE graphics::Color m_locationAreaColor; //@} diff --git a/map/map_tests/map_tests.pro b/map/map_tests/map_tests.pro index a006d56c3d..52903925c5 100644 --- a/map/map_tests/map_tests.pro +++ b/map/map_tests/map_tests.pro @@ -6,7 +6,7 @@ CONFIG -= app_bundle TEMPLATE = app ROOT_DIR = ../.. -DEPENDENCIES = map gui routing search storage graphics indexer platform anim geometry coding base \ +DEPENDENCIES = map drape_frontend gui routing search storage graphics drape indexer platform anim geometry coding base \ freetype fribidi expat protobuf tomcrypt jansson zlib osrm include($$ROOT_DIR/common.pri) diff --git a/map/simple_render_policy.cpp b/map/simple_render_policy.cpp index 5d44ec57ae..98cf6f32b4 100644 --- a/map/simple_render_policy.cpp +++ b/map/simple_render_policy.cpp @@ -62,6 +62,7 @@ SimpleRenderPolicy::SimpleRenderPolicy(Params const & p) void SimpleRenderPolicy::DrawFrame(shared_ptr const & e, ScreenBase const & s) { +#ifndef USE_DRAPE shared_ptr storage(new graphics::OverlayStorage()); Drawer * pDrawer = e->drawer(); @@ -85,6 +86,7 @@ void SimpleRenderPolicy::DrawFrame(shared_ptr const & e, }); pScreen->endFrame(); +#endif // USE_DRAPE } graphics::Overlay * SimpleRenderPolicy::FrameOverlay() const diff --git a/map/tile_renderer.cpp b/map/tile_renderer.cpp index dfc3941986..48223285a8 100644 --- a/map/tile_renderer.cpp +++ b/map/tile_renderer.cpp @@ -150,6 +150,7 @@ void TileRenderer::DrawTile(core::CommandsQueue::Environment const & env, Tiler::RectInfo const & rectInfo, int sequenceID) { +#ifndef USE_DRAPE if (m_isPaused) return; @@ -222,6 +223,7 @@ void TileRenderer::DrawTile(core::CommandsQueue::Environment const & env, paintEvent->isEmptyDrawing(), sequenceID)); } +#endif //USE_DRAPE } void TileRenderer::AddCommand(Tiler::RectInfo const & rectInfo, int sequenceID, core::CommandsQueue::Chain const & afterTileFns) diff --git a/map/user_mark_container.cpp b/map/user_mark_container.cpp index a08cbe8e8a..6ed109aba5 100644 --- a/map/user_mark_container.cpp +++ b/map/user_mark_container.cpp @@ -80,6 +80,7 @@ namespace graphics::DisplayList * dl, m2::PointD const & ptOrg) { +#ifndef USE_DRAPE ScreenBase const & modelView = event.GetModelView(); graphics::Screen * screen = event.GetDrawer()->screen(); m2::PointD pxPoint = modelView.GtoP(ptOrg); @@ -88,6 +89,7 @@ namespace scale, scale), pxPoint.x, pxPoint.y); dl->draw(screen, m); +#endif // USE_DRAPE } void DrawUserMarkImpl(double scale, @@ -152,12 +154,14 @@ UserMark const * UserMarkContainer::FindMarkInRect(m2::AnyRectD const & rect, do void UserMarkContainer::Draw(PaintOverlayEvent const & e, UserMarkDLCache * cache) const { +#ifndef USE_DRAPE if (IsVisible() && IsDrawable()) { UserMarkDLCache::Key defaultKey(GetTypeName(), graphics::EPosCenter, m_layerDepth); ForEachInRect(e.GetClipRect(), bind(&DrawUserMark, 1.0, m_framework.GetVisualScale(), e, cache, defaultKey, _1)); } +#endif // USE_DRAPE } void UserMarkContainer::Clear(size_t skipCount/* = 0*/) diff --git a/map/yopme_render_policy.cpp b/map/yopme_render_policy.cpp index 0f7af7e03f..c7cc58c4b6 100644 --- a/map/yopme_render_policy.cpp +++ b/map/yopme_render_policy.cpp @@ -187,6 +187,7 @@ void YopmeRP::InsertOverlayCross(m2::PointD pivot, shared_ptr co void YopmeRP::DrawFrame(shared_ptr const & e, ScreenBase const & s) { +#ifndef USE_DRAPE shared_ptr renderTarget; int width = m_offscreenDrawer->screen()->width(); @@ -254,6 +255,7 @@ void YopmeRP::DrawFrame(shared_ptr const & e, ScreenBase const & s) pScreen->endFrame(); } +#endif // USE_DRAPE } void YopmeRP::OnSize(int w, int h) diff --git a/map_server/main.cpp b/map_server/main.cpp index b3379a4314..047f55666f 100644 --- a/map_server/main.cpp +++ b/map_server/main.cpp @@ -39,6 +39,7 @@ MwmRpcService::MwmRpcService(QObject * parent) : m_pixelBuffer(new QGLPixelBuffe LOG(LINFO, ("MwmRpcService started")); m_pixelBuffer->makeCurrent(); +#ifndef USE_DRAPE shared_ptr primaryRC(new srv::RenderContext()); graphics::ResourceManager::Params rmParams; rmParams.m_texFormat = graphics::Data8Bpp; @@ -62,6 +63,7 @@ MwmRpcService::MwmRpcService(QObject * parent) : m_pixelBuffer(new QGLPixelBuffe { LOG(LCRITICAL, ("OpenGL platform is unsupported, reason: ", e.what())); } +#endif // USE_DRAPE } MwmRpcService::~MwmRpcService() @@ -82,7 +84,7 @@ QString MwmRpcService::RenderBox( // @todo: set language from parameter // Settings::SetCurrentLanguage(string(language.toAscii())); - +#ifndef USE_DRAPE graphics::EDensity requestDensity; graphics::convert(density.toUtf8(), requestDensity); if (m_framework.GetRenderPolicy()->Density() != requestDensity) @@ -114,6 +116,9 @@ QString MwmRpcService::RenderBox( LOG(LINFO, ("Render box finished")); return QString(ba.toBase64()); +#else + return QString(); +#endif // USE_DRAPE } bool MwmRpcService::Ping() diff --git a/map_server/map_server.pro b/map_server/map_server.pro index de675a269d..75fc7f3ba3 100644 --- a/map_server/map_server.pro +++ b/map_server/map_server.pro @@ -5,7 +5,7 @@ TEMPLATE = app DEFINES += QJSONRPC_BUILD -DEPENDENCIES = map gui routing search storage indexer graphics platform anim geometry coding base \ +DEPENDENCIES = map drape_frontend gui routing search storage drape indexer graphics platform anim geometry coding base \ osrm bzip2 freetype expat fribidi tomcrypt jansson protobuf qjsonrpc gflags zlib ROOT_DIR = .. diff --git a/omim.pro b/omim.pro index 5fa1c55175..dc6256fff2 100644 --- a/omim.pro +++ b/omim.pro @@ -10,6 +10,7 @@ greaterThan(QT_VER_MAJ, 4) { TEMPLATE = subdirs CONFIG += ordered +#CONFIG += drape_device HEADERS += defines.hpp @@ -32,8 +33,8 @@ SUBDIRS = 3party \ gui \ storage storage/storage_tests \ search search/search_tests \ - map map/map_tests map/benchmark_tool map/mwm_tests\ drape_frontend drape_frontend/drape_frontend_tests \ + map map/map_tests map/benchmark_tool map/mwm_tests\ generator generator/generator_tests \ generator/generator_tool \ qt_tstfrm \ @@ -43,6 +44,24 @@ SUBDIRS = 3party \ qt \ drape_head \ map_server +} else:drape_device { + # libraries which are used on mobile devices with drape engine + SUBDIRS = 3party \ + base \ + coding \ + geometry \ + drape \ + platform \ + anim \ + indexer \ + routing \ + storage \ + graphics \ + gui \ + search \ + drape_frontend \ + map \ + stats/client \ } else { # libraries which are used on mobile devices SUBDIRS = 3party \