2021-06-15 19:28:24 +02:00
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
|
2021-08-04 12:43:07 +10:00
|
|
|
#include <cstring>
|
|
|
|
|
|
2021-09-07 13:28:14 -05:00
|
|
|
#include "DNA_node_types.h"
|
2021-06-15 19:28:24 +02:00
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
|
|
|
|
|
|
#include "BLI_listbase.h"
|
2021-08-04 12:43:07 +10:00
|
|
|
#include "BLI_string.h"
|
|
|
|
|
|
|
|
|
|
#include "BKE_lib_id.h"
|
|
|
|
|
#include "BKE_main.h"
|
2021-06-15 19:28:24 +02:00
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
{
|
2021-06-18 14:27:43 +10:00
|
|
|
ARegion *link_after_region = nullptr;
|
2021-06-15 19:28:24 +02:00
|
|
|
LISTBASE_FOREACH (ARegion *, region, regionbase) {
|
|
|
|
|
if (region->regiontype == region_type) {
|
2021-06-18 14:27:43 +10:00
|
|
|
return nullptr;
|
2021-06-15 19:28:24 +02:00
|
|
|
}
|
|
|
|
|
if (region->regiontype == link_after_region_type) {
|
|
|
|
|
link_after_region = region;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ARegion *new_region = static_cast<ARegion *>(MEM_callocN(sizeof(ARegion), name));
|
|
|
|
|
new_region->regiontype = region_type;
|
|
|
|
|
BLI_insertlinkafter(regionbase, link_after_region, new_region);
|
|
|
|
|
return new_region;
|
|
|
|
|
}
|
2021-08-04 12:43:07 +10:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
2021-09-07 13:28:14 -05:00
|
|
|
|
|
|
|
|
void version_node_socket_name(bNodeTree *ntree,
|
|
|
|
|
const int node_type,
|
|
|
|
|
const char *old_name,
|
|
|
|
|
const char *new_name)
|
|
|
|
|
{
|
|
|
|
|
LISTBASE_FOREACH (bNode *, node, &ntree->nodes) {
|
|
|
|
|
if (node->type == node_type) {
|
|
|
|
|
LISTBASE_FOREACH (bNodeSocket *, socket, &node->inputs) {
|
|
|
|
|
if (STREQ(socket->name, old_name)) {
|
|
|
|
|
BLI_strncpy(socket->name, new_name, sizeof(socket->name));
|
|
|
|
|
}
|
|
|
|
|
if (STREQ(socket->identifier, old_name)) {
|
|
|
|
|
BLI_strncpy(socket->identifier, new_name, sizeof(socket->name));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
LISTBASE_FOREACH (bNodeSocket *, socket, &node->outputs) {
|
|
|
|
|
if (STREQ(socket->name, old_name)) {
|
|
|
|
|
BLI_strncpy(socket->name, new_name, sizeof(socket->name));
|
|
|
|
|
}
|
|
|
|
|
if (STREQ(socket->identifier, old_name)) {
|
|
|
|
|
BLI_strncpy(socket->identifier, new_name, sizeof(socket->name));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-14 12:06:42 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Replace the ID name of all nodes in the tree with the given type with the new name.
|
|
|
|
|
*/
|
|
|
|
|
void version_node_id(bNodeTree *ntree, const int node_type, const char *new_name)
|
|
|
|
|
{
|
|
|
|
|
LISTBASE_FOREACH (bNode *, node, &ntree->nodes) {
|
|
|
|
|
if (node->type == node_type) {
|
|
|
|
|
if (!STREQ(node->idname, new_name)) {
|
|
|
|
|
strcpy(node->idname, new_name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|