/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /** \file * \ingroup blenloader */ /* allow readfile to use deprecated functionality */ #define DNA_DEPRECATED_ALLOW #include #include "DNA_screen_types.h" #include "BLI_listbase.h" #include "BLI_string.h" #include "BKE_lib_id.h" #include "BKE_main.h" #include "MEM_guardedalloc.h" #include "versioning_common.h" ARegion *do_versions_add_region_if_not_found(ListBase *regionbase, int region_type, const char *name, int link_after_region_type) { ARegion *link_after_region = nullptr; LISTBASE_FOREACH (ARegion *, region, regionbase) { if (region->regiontype == region_type) { return nullptr; } if (region->regiontype == link_after_region_type) { link_after_region = region; } } ARegion *new_region = static_cast(MEM_callocN(sizeof(ARegion), name)); new_region->regiontype = region_type; BLI_insertlinkafter(regionbase, link_after_region, new_region); return new_region; } /** * Rename if the ID doesn't exist. * * \return the ID (if found). */ ID *do_versions_rename_id(Main *bmain, const short id_type, const char *name_src, const char *name_dst) { /* We can ignore libraries */ ListBase *lb = which_libbase(bmain, id_type); ID *id = nullptr; LISTBASE_FOREACH (ID *, idtest, lb) { if (idtest->lib == nullptr) { if (STREQ(idtest->name + 2, name_src)) { id = idtest; } if (STREQ(idtest->name + 2, name_dst)) { return nullptr; } } } if (id != nullptr) { BLI_strncpy(id->name + 2, name_dst, sizeof(id->name) - 2); /* We know it's unique, this just sorts. */ BLI_libblock_ensure_unique_name(bmain, id->name); } return id; }