1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/apps/openmw/mwdialogue/keywordsearch.hpp
AnyOldName3 7c85755950 Warning that doesn't fire with MSVC 2022
Hopefully this fixes it.
I've only tried MSVC 2022 locally, so can't verify this fix.
2024-03-23 02:34:57 +00:00

242 lines
8.3 KiB
C++

#ifndef GAME_MWDIALOGUE_KEYWORDSEARCH_H
#define GAME_MWDIALOGUE_KEYWORDSEARCH_H
#include <algorithm> // std::reverse
#include <cctype>
#include <map>
#include <stdexcept>
#include <vector>
#include <components/misc/strings/algorithm.hpp>
#include <components/misc/strings/lower.hpp>
namespace MWDialogue
{
template <typename value_t>
class KeywordSearch
{
public:
using Point = std::string::const_iterator;
struct Match
{
Point mBeg;
Point mEnd;
value_t mValue;
};
void seed(std::string_view keyword, value_t value)
{
if (keyword.empty())
return;
seed_impl(keyword, std::move(value), 0, mRoot);
}
void clear()
{
mRoot.mChildren.clear();
mRoot.mKeyword.clear();
}
bool containsKeyword(std::string_view keyword, value_t& value)
{
auto it = keyword.begin();
auto current = mRoot.mChildren.find(Misc::StringUtils::toLower(*it));
if (current == mRoot.mChildren.end())
return false;
else if (Misc::StringUtils::ciEqual(current->second.mKeyword, keyword))
{
value = current->second.mValue;
return true;
}
for (++it; it != keyword.end(); ++it)
{
auto next = current->second.mChildren.find(Misc::StringUtils::toLower(*it));
if (next == current->second.mChildren.end())
return false;
if (Misc::StringUtils::ciEqual(next->second.mKeyword, keyword))
{
value = next->second.mValue;
return true;
}
current = next;
}
return false;
}
static bool sortMatches(const Match& left, const Match& right) { return left.mBeg < right.mBeg; }
void highlightKeywords(Point beg, Point end, std::vector<Match>& out) const
{
std::vector<Match> matches;
for (Point i = beg; i != end; ++i)
{
// check first character
typename Entry::childen_t::const_iterator candidate
= mRoot.mChildren.find(Misc::StringUtils::toLower(*i));
// no match, on to next character
if (candidate == mRoot.mChildren.end())
continue;
// see how far the match goes
Point j = i;
// some keywords might be longer variations of other keywords, so we definitely need a list of
// candidates the first element in the pair is length of the match, i.e. depth from the first character
// on
std::vector<typename std::pair<std::ptrdiff_t, typename Entry::childen_t::const_iterator>> candidates;
while ((j + 1) != end)
{
typename Entry::childen_t::const_iterator next
= candidate->second.mChildren.find(Misc::StringUtils::toLower(*++j));
if (next == candidate->second.mChildren.end())
{
if (candidate->second.mKeyword.size() > 0)
candidates.push_back(std::make_pair((j - i), candidate));
break;
}
candidate = next;
if (candidate->second.mKeyword.size() > 0)
candidates.push_back(std::make_pair((j - i), candidate));
}
if (candidates.empty())
continue; // didn't match enough to disambiguate, on to next character
// shorter candidates will be added to the vector first. however, we want to check against longer
// candidates first
std::reverse(candidates.begin(), candidates.end());
for (const auto& [pos, c] : candidates)
{
candidate = c;
// try to match the rest of the keyword
Point k = i + pos;
Point t = candidate->second.mKeyword.begin() + (k - i);
while (k != end && t != candidate->second.mKeyword.end())
{
if (Misc::StringUtils::toLower(*k) != Misc::StringUtils::toLower(*t))
break;
++k, ++t;
}
// didn't match full keyword, try the next candidate
if (t != candidate->second.mKeyword.end())
continue;
// found a keyword, but there might still be longer keywords that start somewhere _within_ this
// keyword we will resolve these overlapping keywords later, choosing the longest one in case of
// conflict
Match match;
match.mValue = candidate->second.mValue;
match.mBeg = i;
match.mEnd = k;
matches.push_back(match);
break;
}
}
// resolve overlapping keywords
while (!matches.empty())
{
std::size_t longestKeywordSize = 0;
typename std::vector<Match>::iterator longestKeyword = matches.begin();
for (typename std::vector<Match>::iterator it = matches.begin(); it != matches.end(); ++it)
{
std::size_t size = it->mEnd - it->mBeg;
if (size > longestKeywordSize)
{
longestKeywordSize = size;
longestKeyword = it;
}
typename std::vector<Match>::iterator next = it;
++next;
if (next == matches.end())
break;
if (it->mEnd <= next->mBeg)
{
break; // no overlap
}
}
Match keyword = *longestKeyword;
matches.erase(longestKeyword);
out.push_back(keyword);
// erase anything that overlaps with the keyword we just added to the output
for (typename std::vector<Match>::iterator it = matches.begin(); it != matches.end();)
{
if (it->mBeg < keyword.mEnd && it->mEnd > keyword.mBeg)
it = matches.erase(it);
else
++it;
}
}
std::sort(out.begin(), out.end(), sortMatches);
}
private:
struct Entry
{
typedef std::map<wchar_t, Entry> childen_t;
std::string mKeyword;
value_t mValue;
childen_t mChildren;
};
void seed_impl(std::string_view keyword, value_t value, size_t depth, Entry& entry)
{
auto ch = Misc::StringUtils::toLower(keyword.at(depth));
typename Entry::childen_t::iterator j = entry.mChildren.find(ch);
if (j == entry.mChildren.end())
{
entry.mChildren[ch].mValue = std::move(value);
entry.mChildren[ch].mKeyword = keyword;
}
else
{
if (j->second.mKeyword.size() > 0)
{
if (keyword == j->second.mKeyword)
throw std::runtime_error("duplicate keyword inserted");
const auto& pushKeyword = j->second.mKeyword;
if (depth >= pushKeyword.size())
throw std::runtime_error("unexpected");
if (depth + 1 < pushKeyword.size())
{
seed_impl(pushKeyword, j->second.mValue, depth + 1, j->second);
j->second.mKeyword.clear();
}
}
if (depth + 1 == keyword.size())
j->second.mKeyword = value;
else // depth+1 < keyword.size()
seed_impl(keyword, std::move(value), depth + 1, j->second);
}
}
Entry mRoot;
};
}
#endif