1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
2022-10-31 21:04:01 +01:00

25 lines
535 B
C++

#include "scope.hpp"
#include <string_view>
#include <components/misc/strings/lower.hpp>
CSMWorld::Scope CSMWorld::getScopeFromId(const std::string& id)
{
// get root namespace
std::string namespace_;
std::string::size_type i = id.find("::");
if (i != std::string::npos)
namespace_ = Misc::StringUtils::lowerCase(std::string_view(id).substr(0, i));
if (namespace_ == "project")
return Scope_Project;
if (namespace_ == "session")
return Scope_Session;
return Scope_Content;
}