1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 05:53:54 +00:00
openmw/apps/opencs/model/world/scope.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
535 B
C++
Raw Normal View History

#include "scope.hpp"
2022-10-19 17:02:00 +00:00
#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;
2015-03-11 14:54:45 +00:00
}