forked from organicmaps/organicmaps
[routing] Activate routing on special search queries
This commit is contained in:
parent
64bc17a05f
commit
a523a37900
2 changed files with 56 additions and 0 deletions
|
@ -1134,8 +1134,59 @@ void Framework::PrepareSearch(bool hasPt, double lat, double lon)
|
|||
GetSearchEngine()->PrepareSearch(GetCurrentViewport(), hasPt, lat, lon);
|
||||
}
|
||||
|
||||
/// Activates hidden features via search queries
|
||||
static bool SesameOpen(search::SearchParams const & params, routing::RoutingEngine & r)
|
||||
{
|
||||
// Quick check
|
||||
string const & q = params.m_query;
|
||||
if (!q.empty() && q[0] != '?')
|
||||
return false;
|
||||
|
||||
char const * searchResult = 0;
|
||||
if (params.m_query == "?routing on")
|
||||
{
|
||||
r.AddRouter("all");
|
||||
// Enable all other engines here
|
||||
Settings::Set("helicopter", true);
|
||||
searchResult = "All routing engines activated";
|
||||
}
|
||||
else if (params.m_query == "?routing off")
|
||||
{
|
||||
r.RemoveRouter("all");
|
||||
// Disable all other engines here
|
||||
Settings::Set("helicopter", false);
|
||||
searchResult = "All routing engines disabled";
|
||||
}
|
||||
else if (params.m_query == "?heli on")
|
||||
{
|
||||
r.AddRouter("helicopter");
|
||||
Settings::Set("helicopter", true);
|
||||
searchResult = "Helicopter routing activated";
|
||||
}
|
||||
else if (params.m_query == "?heli off")
|
||||
{
|
||||
r.RemoveRouter("helicopter");
|
||||
Settings::Set("helicopter", false);
|
||||
searchResult = "Helicopter routing disabled";
|
||||
}
|
||||
|
||||
if (searchResult)
|
||||
{
|
||||
search::Results results;
|
||||
results.AddResult(search::Result(searchResult, ""));
|
||||
params.m_callback(results);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Framework::Search(search::SearchParams const & params)
|
||||
{
|
||||
// Activate hidden features
|
||||
if (SesameOpen(params, m_routingEngine))
|
||||
return true;
|
||||
|
||||
#ifdef FIXED_LOCATION
|
||||
search::SearchParams rParams(params);
|
||||
if (params.IsValidPosition())
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include "../search/search_engine.hpp"
|
||||
|
||||
#include "../routing/routing_engine.hpp"
|
||||
|
||||
#include "../storage/storage.hpp"
|
||||
|
||||
#include "../platform/location.hpp"
|
||||
|
@ -90,6 +92,9 @@ protected:
|
|||
StringsBundle m_stringsBundle;
|
||||
|
||||
mutable scoped_ptr<search::Engine> m_pSearchEngine;
|
||||
|
||||
routing::RoutingEngine m_routingEngine;
|
||||
|
||||
model::FeaturesFetcher m_model;
|
||||
ScalesProcessor m_scales;
|
||||
Navigator m_navigator;
|
||||
|
|
Loading…
Add table
Reference in a new issue