FaceRegistry: Support referencing a named face from a parent scope
This commit is contained in:
parent
a2978bff25
commit
9c82f6586c
|
@ -98,26 +98,26 @@ void FaceRegistry::add_face(StringView name, StringView facedesc, bool override)
|
||||||
if (name == facedesc)
|
if (name == facedesc)
|
||||||
throw runtime_error(format("cannot alias face '{}' to itself", name));
|
throw runtime_error(format("cannot alias face '{}' to itself", name));
|
||||||
|
|
||||||
FaceOrAlias& face = m_faces[name];
|
for (auto it = m_faces.find(facedesc);
|
||||||
auto it = m_faces.find(facedesc);
|
it != m_faces.end() and not it->value.alias.empty();
|
||||||
if (it != m_faces.end())
|
it = m_faces.find(it->value.alias))
|
||||||
{
|
{
|
||||||
while (it != m_faces.end())
|
if (it->value.alias == name)
|
||||||
{
|
throw runtime_error("face cycle detected");
|
||||||
if (it->value.alias.empty())
|
}
|
||||||
break;
|
|
||||||
if (it->value.alias == name)
|
|
||||||
throw runtime_error("face cycle detected");
|
|
||||||
it = m_faces.find(it->value.alias);
|
|
||||||
}
|
|
||||||
|
|
||||||
face.alias = facedesc.str();
|
FaceOrAlias& face = m_faces[name];
|
||||||
}
|
|
||||||
else
|
for (auto* registry = this; registry != nullptr; registry = registry->m_parent.get())
|
||||||
{
|
{
|
||||||
face.alias = "";
|
if (not registry->m_faces.contains(facedesc))
|
||||||
face.face = parse_face(facedesc);
|
continue;
|
||||||
|
face.alias = facedesc.str(); // This is referencing another face
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
face.alias = "";
|
||||||
|
face.face = parse_face(facedesc);
|
||||||
}
|
}
|
||||||
|
|
||||||
void FaceRegistry::remove_face(StringView name)
|
void FaceRegistry::remove_face(StringView name)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user