[search] Use feature::MinDrawableScaleForText().

This commit is contained in:
Yury Melnichek 2011-05-31 10:04:48 +02:00 committed by Alex Zolotarev
parent b1e8df9426
commit 552e10f888
3 changed files with 18 additions and 9 deletions

View file

@ -1,6 +1,5 @@
#include "intermediate_result.hpp"
#include "../indexer/feature_rect.hpp"
#include "../indexer/feature_visibility.hpp"
#include "../base/string_utils.hpp"
namespace search
@ -10,9 +9,10 @@ namespace impl
IntermediateResult::IntermediateResult(FeatureType const & feature,
string const & displayName,
int matchPenalty)
int matchPenalty,
int minVisibleScale)
: m_str(displayName), m_rect(feature::GetFeatureViewport(feature)), m_matchPenalty(matchPenalty),
m_minDrawZoomLevel(feature::MinDrawableScaleForFeature(feature))
m_minVisibleScale(minVisibleScale)
{
}
@ -20,8 +20,8 @@ bool IntermediateResult::operator < (IntermediateResult const & o) const
{
if (m_matchPenalty != o.m_matchPenalty)
return m_matchPenalty < o.m_matchPenalty;
if (m_minDrawZoomLevel != o.m_minDrawZoomLevel)
return m_minDrawZoomLevel < o.m_minDrawZoomLevel;
if (m_minVisibleScale != o.m_minVisibleScale)
return m_minVisibleScale < o.m_minVisibleScale;
return false;
}
@ -30,7 +30,7 @@ Result IntermediateResult::GenerateFinalResult() const
#ifdef DEBUG
return Result(m_str
+ ' ' + strings::to_string(m_matchPenalty)
+ ' ' + strings::to_string(m_minDrawZoomLevel),
+ ' ' + strings::to_string(m_minVisibleScale),
m_rect);
#else
return Result(m_str, m_rect);

View file

@ -10,7 +10,10 @@ namespace impl
class IntermediateResult
{
public:
IntermediateResult(FeatureType const & feature, string const & displayName, int matchPenalty);
IntermediateResult(FeatureType const & feature,
string const & displayName,
int matchPenalty,
int minVisibleScale);
bool operator < (IntermediateResult const & o) const;
@ -20,7 +23,7 @@ private:
string m_str;
m2::RectD m_rect;
int m_matchPenalty;
int m_minDrawZoomLevel;
int m_minVisibleScale;
};
} // namespace search::impl

View file

@ -2,6 +2,7 @@
#include "delimiters.hpp"
#include "keyword_matcher.hpp"
#include "string_match.hpp"
#include "../indexer/feature_visibility.hpp"
#include "../base/stl_add.hpp"
namespace search
@ -73,7 +74,12 @@ struct FeatureProcessor
uint32_t const matchScore = matcher.GetMatchScore();
if (matchScore <= maxKeywordMatchScore)
{
m_query.AddResult(IntermediateResult(feature, matcher.GetBestPrefixMatch(), matchScore));
int const minVisibleScale = feature::MinDrawableScaleForText(feature);
// if (minVisibleScale < 0)
// return;
m_query.AddResult(IntermediateResult(feature, matcher.GetBestPrefixMatch(),
matchScore, minVisibleScale));
}
}
}