From 0663d053b7e89b091a284d6bfebd4d7471522267 Mon Sep 17 00:00:00 2001 From: rachytski Date: Fri, 10 Dec 2010 10:25:55 +0200 Subject: [PATCH] Drawing current position. --- iphone/Maps/Classes/MapViewController.hpp | 8 ++- iphone/Maps/Classes/MapViewController.mm | 19 ++++++- .../Maps/Classes/UserLocationController.hpp | 6 +++ iphone/Maps/Classes/UserLocationController.mm | 17 +++++- map/framework.hpp | 53 +++++++++++++++++-- 5 files changed, 93 insertions(+), 10 deletions(-) diff --git a/iphone/Maps/Classes/MapViewController.hpp b/iphone/Maps/Classes/MapViewController.hpp index 75d4d095d0..8a2cf922de 100644 --- a/iphone/Maps/Classes/MapViewController.hpp +++ b/iphone/Maps/Classes/MapViewController.hpp @@ -26,8 +26,12 @@ - (id) initWithCoder: (NSCoder *)coder; -- (void) OnLocation: (m2::PointD const &) mercatorPoint - withTimestamp: (NSDate *) timestamp; +- (void) OnLocation: (m2::PointD const &) mercatorPoint +withConfidenceRadius: (double) confidenceRadius + withTimestamp: (NSDate *) timestamp; +- (void) OnHeading: (double) heading + withTimestamp: (NSDate *) timestamp; + - (void) OnLocationError: (NSString *) errorDescription; - (void) onResize: (GLint)width withHeight: (GLint)height; diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index bc0ff53551..280d141dfa 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -68,13 +68,28 @@ typedef FrameWork frame return self; } -- (void) OnLocation: (m2::PointD const &) mercatorPoint withTimestamp: (NSDate *) timestamp +- (void) OnHeading: (double) heading + withTimestamp: (NSDate *)timestamp +{ + NSTimeInterval secondsFromLastUpdate = [timestamp timeIntervalSinceNow]; + if (fabs(secondsFromLastUpdate)< MAX_SECONDS_INTERVAL_FOR_RECENT_LOCATION) + [m_locationController Stop]; + m_framework->SetHeading(heading); +} + + +- (void) OnLocation: (m2::PointD const &) mercatorPoint +withConfidenceRadius: (double) confidenceRadius + withTimestamp: (NSDate *) timestamp { // stop location update to preserve battery, but only if received location is up to date NSTimeInterval secondsFromLastUpdate = [timestamp timeIntervalSinceNow]; if (fabs(secondsFromLastUpdate) < MAX_SECONDS_INTERVAL_FOR_RECENT_LOCATION) [m_locationController Stop]; - m_framework->SetMyPosition(mercatorPoint); + + m_framework->SetPosition(mercatorPoint, confidenceRadius); +// m_framework->SetConfidenceRadius() +// m_framework->SetHeading(headingVector); } - (void) OnLocationError: (NSString *) errorDescription diff --git a/iphone/Maps/Classes/UserLocationController.hpp b/iphone/Maps/Classes/UserLocationController.hpp index d30ced4462..67b30d502d 100644 --- a/iphone/Maps/Classes/UserLocationController.hpp +++ b/iphone/Maps/Classes/UserLocationController.hpp @@ -7,7 +7,10 @@ @required - (void) OnLocation: (m2::PointD const &) mercatorPoint +withConfidenceRadius: (double) confidenceRadius withTimestamp: (NSDate *) timestamp; +- (void) OnHeading: (double) heading + withTimestamp: (NSDate *) timestamp; - (void) OnLocationError: (NSString *) errorDescription; @end @@ -32,6 +35,9 @@ didUpdateToLocation: (CLLocation *) newLocation fromLocation: (CLLocation *) oldLocation; +- (void) locationManager: (CLLocationManager *) manager + didUpdateHeading: (CLHeading *) newHeading; + - (void) locationManager: (CLLocationManager *) manager didFailWithError: (NSError *) error; diff --git a/iphone/Maps/Classes/UserLocationController.mm b/iphone/Maps/Classes/UserLocationController.mm index 711315c52e..aeeb77139b 100644 --- a/iphone/Maps/Classes/UserLocationController.mm +++ b/iphone/Maps/Classes/UserLocationController.mm @@ -32,12 +32,23 @@ - (void) Start { + m_locationManager.headingFilter = 5; + [m_locationManager startUpdatingLocation]; + [m_locationManager startUpdatingHeading]; } - (void) Stop { [m_locationManager stopUpdatingLocation]; + [m_locationManager stopUpdatingHeading]; +} + +- (void) locationManager: (CLLocationManager *) manager + didUpdateHeading: (CLHeading *) newHeading +{ + double trueHeading = [newHeading trueHeading]; + [self.delegate OnHeading: trueHeading withTimeStamp: newHeading.timestamp]; } - (void) locationManager: (CLLocationManager *) manager @@ -46,7 +57,11 @@ { m2::PointD mercPoint(MercatorBounds::LonToX(newLocation.coordinate.longitude), MercatorBounds::LatToY(newLocation.coordinate.latitude)); - [self.delegate OnLocation: mercPoint withTimestamp: newLocation.timestamp]; + + double confidenceRadius = sqrt(newLocation.horizontalAccuracy * newLocation.horizontalAccuracy + + newLocation.verticalAccuracy * newLocation.verticalAccuracy);*/ + + [self.delegate OnLocation: mercPoint withConfidenceRadius: confidenceRadius withTimestamp: newLocation.timestamp]; } - (void) locationManager: (CLLocationManager *) manager diff --git a/map/framework.hpp b/map/framework.hpp index 5d8efe9b7d..da923b0b3e 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -16,6 +16,7 @@ #include "../yg/screen.hpp" #include "../yg/color.hpp" #include "../yg/render_state.hpp" +#include "../yg/skin.hpp" #include "../coding/file_reader.hpp" #include "../coding/file_writer.hpp" @@ -91,6 +92,13 @@ class FrameWork shared_ptr m_windowHandle; RenderQueue m_renderQueue; + bool m_isHeadingEnabled; + double m_heading; + + bool m_isPositionEnabled; + m2::PointD m_position; + double m_confidenceRadius; + void Invalidate() { m_windowHandle->invalidate(); @@ -152,7 +160,9 @@ class FrameWork public: FrameWork(shared_ptr windowHandle) : m_windowHandle(windowHandle), - m_renderQueue(GetPlatform().SkinName(), GetPlatform().IsMultiSampled()) + m_renderQueue(GetPlatform().SkinName(), GetPlatform().IsMultiSampled()), + m_isPositionEnabled(false), + m_isHeadingEnabled(false) { m_renderQueue.AddWindowHandle(m_windowHandle); } @@ -298,9 +308,29 @@ public: m2::PointD const center = m_navigator.Screen().ClipRect().Center(); -// m2::PointD pxCenter = m_navigator.Screen().GtoP(center); + if (m_isPositionEnabled) + { + + /// Drawing position and heading + m2::PointD pxPosition = m_navigator.Screen().GtoP(m_position); + pDrawer->screen()->drawPoint(pxPosition - ptShift, 84, 10000); + if (m_isHeadingEnabled) + { + LOG(LINFO, ("Drawing Heading", m_heading)); + m2::PointD v(0, 1); + v.Rotate(m_heading / 180 * math::pi); + m2::PointD pts[2] = {m_navigator.Screen().GtoP(m_position), + m_navigator.Screen().GtoP(m_position + v)}; + + pDrawer->screen()->drawPath( + pts, + 2, + pDrawer->screen()->skin()->mapPenInfo(yg::PenInfo(yg::Color(255, 0, 0, 255), 4, 0, 0, 0)), + 12000 + ); + } + } -// pDrawer->screen()->drawPoint(pxCenter, 84, 10000); OGLCHECK(glPopMatrix()); @@ -309,9 +339,22 @@ public: } } - void SetMyPosition(m2::PointD const & mercatorPoint) + void SetPosition(m2::PointD const & mercatorPos, double confidenceRadius) { - m_navigator.CenterViewport(mercatorPoint); + m_isPositionEnabled = true; + + m_position = mercatorPos; + m_confidenceRadius = confidenceRadius; + + m_navigator.CenterViewport(mercatorPos); + UpdateNow(); + } + + void SetHeading(double heading) + { + m_isHeadingEnabled = true; + m_heading = heading; + UpdateNow(); }