A lot of files were missing copyright field in the header and
the Blender Foundation contributed to them in a sense of bug
fixing and general maintenance.
This change makes it explicit that those files are at least
partially copyrighted by the Blender Foundation.
Note that this does not make it so the Blender Foundation is
the only holder of the copyright in those files, and developers
who do not have a signed contract with the foundation still
hold the copyright as well.
Another aspect of this change is using SPDX format for the
header. We already used it for the license specification,
and now we state it for the copyright as well, following the
FAQ:
https://reuse.software/faq/
111 lines
2.7 KiB
C++
111 lines
2.7 KiB
C++
/* SPDX-FileCopyrightText: 2013 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup depsgraph
|
|
*
|
|
* Methods for constructing depsgraph
|
|
*/
|
|
|
|
#include "intern/builder/deg_builder_key.h"
|
|
|
|
#include "RNA_path.h"
|
|
|
|
namespace blender::deg {
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Time source
|
|
* \{ */
|
|
|
|
string TimeSourceKey::identifier() const
|
|
{
|
|
return string("TimeSourceKey");
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Component
|
|
* \{ */
|
|
|
|
string ComponentKey::identifier() const
|
|
{
|
|
const char *idname = (id) ? id->name : "<None>";
|
|
string result = string("ComponentKey(");
|
|
result += idname;
|
|
result += ", " + string(nodeTypeAsString(type));
|
|
if (name[0] != '\0') {
|
|
result += ", '" + string(name) + "'";
|
|
}
|
|
result += ')';
|
|
return result;
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Operation
|
|
* \{ */
|
|
|
|
string OperationKey::identifier() const
|
|
{
|
|
string result = string("OperationKey(");
|
|
result += "type: " + string(nodeTypeAsString(component_type));
|
|
result += ", component name: '" + string(component_name) + "'";
|
|
result += ", operation code: " + string(operationCodeAsString(opcode));
|
|
if (name[0] != '\0') {
|
|
result += ", '" + string(name) + "'";
|
|
}
|
|
result += ")";
|
|
return result;
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name RNA path
|
|
* \{ */
|
|
|
|
RNAPathKey::RNAPathKey(ID *id, const char *path, RNAPointerSource source) : id(id), source(source)
|
|
{
|
|
/* Create ID pointer for root of path lookup. */
|
|
PointerRNA id_ptr;
|
|
RNA_id_pointer_create(id, &id_ptr);
|
|
/* Try to resolve path. */
|
|
int index;
|
|
if (!RNA_path_resolve_full(&id_ptr, path, &ptr, &prop, &index)) {
|
|
ptr = PointerRNA_NULL;
|
|
prop = nullptr;
|
|
}
|
|
}
|
|
|
|
RNAPathKey::RNAPathKey(ID *id, const PointerRNA &ptr, PropertyRNA *prop, RNAPointerSource source)
|
|
: id(id), ptr(ptr), prop(prop), source(source)
|
|
{
|
|
}
|
|
|
|
RNAPathKey::RNAPathKey(const PointerRNA &target_prop,
|
|
const char *rna_path_from_target_prop,
|
|
const RNAPointerSource source)
|
|
: id(target_prop.owner_id), source(source)
|
|
{
|
|
/* Try to resolve path. */
|
|
int index;
|
|
if (!RNA_path_resolve_full(&target_prop, rna_path_from_target_prop, &ptr, &prop, &index)) {
|
|
ptr = PointerRNA_NULL;
|
|
prop = nullptr;
|
|
}
|
|
}
|
|
|
|
string RNAPathKey::identifier() const
|
|
{
|
|
const char *id_name = (id) ? id->name : "<No ID>";
|
|
const char *prop_name = (prop) ? RNA_property_identifier(prop) : "<No Prop>";
|
|
return string("RnaPathKey(") + "id: " + id_name + ", prop: '" + prop_name + "')";
|
|
}
|
|
|
|
/** \} */
|
|
|
|
} // namespace blender::deg
|