X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Fcollection.cpp;fp=source%2Fcollection.cpp;h=3e9e4f18d7c676e1ee3008c858e14d4735568e2a;hp=cffb7e22e7041ba48268c9643c6d7791e118407f;hb=41230218ca007b56932fd34b79b6f3e3e70764f6;hpb=b39ce68f12c30eedb272b65fe78baec5864d89ca diff --git a/source/collection.cpp b/source/collection.cpp index cffb7e2..3e9e4f1 100644 --- a/source/collection.cpp +++ b/source/collection.cpp @@ -36,15 +36,9 @@ const Variant &Collection::get_var(const string &name, const CollectionItemTypeB loaded = items.count(name); } if(!loaded && fallback) - { - for(TypeList::const_iterator j=fallback->types.begin(); j!=fallback->types.end(); ++j) - if((*j)->is_same_type(*type)) - { - if(fallback->get_status(name, **j)) - return fallback->get_var(name, *j); - break; - } - } + if(CollectionItemTypeBase *fb_type = fallback->get_type(*type)) + if(fallback->get_status(name, *fb_type)) + return fallback->get_var(name, fb_type); } return get_item(items, name); @@ -73,12 +67,23 @@ unsigned Collection::get_status(const string &name, const CollectionItemTypeBase for(SourceList::const_iterator j=sources.begin(); j!=sources.end(); ++j) if((*j)->is_loadable(type, name)) return 2; + if(fallback) + if(CollectionItemTypeBase *fb_type = fallback->get_type(type)) + return fallback->get_status(name, *fb_type); return 0; } return type.check_item_type(i->second); } +CollectionItemTypeBase *Collection::get_type(const CollectionItemTypeBase &type) const +{ + for(TypeList::const_iterator j=types.begin(); j!=types.end(); ++j) + if((*j)->is_same_type(type)) + return *j; + return 0; +} + CollectionItemTypeBase *Collection::get_type_for_item(const Variant &var) const { for(TypeList::const_iterator i=types.begin(); i!=types.end(); ++i)