[editor] Correctly save “Unknown” state for internet.

This commit is contained in:
Alex Zolotarev 2016-03-29 20:49:24 +03:00
parent 94abd84159
commit 373b233a7b

View file

@ -145,10 +145,19 @@ editor::XMLFeature FeatureType::ToXML(bool serializeType) const
// TODO(mgsergio): Use correct sorting instead of SortBySpec based on the config.
th.SortBySpec();
Classificator & cl = classif();
static const uint32_t internetType = cl.GetTypeByPath({"internet_access"});
// TODO(mgsergio): Either improve "OSM"-compatible serialization for more complex types,
// or save all our types directly, to restore and reuse them in migration of modified features.
for (uint32_t const type : th)
{
{ // Avoid serialization of "internet" type, it is set separately in the Editor.
// Otherwise we can't reset "internet" to "Unknown" state.
uint32_t truncatedType = type;
ftype::TruncValue(truncatedType, 1);
if (truncatedType == internetType)
continue;
}
string const strType = cl.GetReadableObjectName(type);
strings::SimpleTokenizer iter(strType, "-");
string const k = *iter;