2019-02-15 12:45:56 +01: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.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2019 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup depsgraph
|
2019-02-15 12:45:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2019-02-15 15:06:44 +01:00
|
|
|
#include "intern/node/deg_node.h"
|
|
|
|
|
#include "intern/node/deg_node_operation.h"
|
|
|
|
|
|
|
|
|
|
struct ID;
|
2019-02-15 12:45:56 +01:00
|
|
|
struct PointerRNA;
|
|
|
|
|
struct PropertyRNA;
|
|
|
|
|
|
2020-06-29 15:19:56 +02:00
|
|
|
namespace blender {
|
|
|
|
|
namespace deg {
|
2019-02-15 12:45:56 +01:00
|
|
|
|
|
|
|
|
struct Depsgraph;
|
|
|
|
|
struct Node;
|
2019-03-16 19:48:28 +01:00
|
|
|
class RNANodeQueryIDData;
|
2019-04-29 12:55:29 +02:00
|
|
|
class DepsgraphBuilder;
|
2019-02-15 12:45:56 +01:00
|
|
|
|
|
|
|
|
/* For queries which gives operation node or key defines whether we are
|
|
|
|
|
* interested in a result of the given property or whether we are linking some
|
|
|
|
|
* dependency to that property. */
|
|
|
|
|
enum class RNAPointerSource {
|
|
|
|
|
/* Query will return pointer to an entry operation of component which is
|
|
|
|
|
* responsible for evaluation of the given property. */
|
|
|
|
|
ENTRY,
|
|
|
|
|
/* Query will return pointer to an exit operation of component which is
|
|
|
|
|
* responsible for evaluation of the given property.
|
|
|
|
|
* More precisely, it will return operation at which the property is known
|
|
|
|
|
* to be evaluated. */
|
|
|
|
|
EXIT,
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-15 15:06:44 +01:00
|
|
|
/* A helper structure which wraps all fields needed to find a node inside of
|
|
|
|
|
* the dependency graph. */
|
|
|
|
|
class RNANodeIdentifier {
|
|
|
|
|
public:
|
|
|
|
|
RNANodeIdentifier();
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2019-02-15 15:06:44 +01:00
|
|
|
/* Check whether this identifier is valid and usable. */
|
|
|
|
|
bool is_valid() const;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2019-02-15 15:06:44 +01:00
|
|
|
ID *id;
|
|
|
|
|
NodeType type;
|
|
|
|
|
const char *component_name;
|
|
|
|
|
OperationCode operation_code;
|
|
|
|
|
const char *operation_name;
|
|
|
|
|
int operation_name_tag;
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-15 12:45:56 +01:00
|
|
|
/* Helper class which performs optimized lookups of a node within a given
|
|
|
|
|
* dependency graph which satisfies given RNA pointer or RAN path. */
|
|
|
|
|
class RNANodeQuery {
|
|
|
|
|
public:
|
2019-04-29 12:55:29 +02:00
|
|
|
RNANodeQuery(Depsgraph *depsgraph, DepsgraphBuilder *builder);
|
2019-02-15 15:06:44 +01:00
|
|
|
~RNANodeQuery();
|
2019-02-15 12:45:56 +01:00
|
|
|
|
|
|
|
|
Node *find_node(const PointerRNA *ptr, const PropertyRNA *prop, RNAPointerSource source);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Depsgraph *depsgraph_;
|
2019-04-29 12:55:29 +02:00
|
|
|
DepsgraphBuilder *builder_;
|
2019-02-15 15:06:44 +01:00
|
|
|
|
|
|
|
|
/* Indexed by an ID, returns RNANodeQueryIDData associated with that ID. */
|
2020-04-28 11:37:44 +02:00
|
|
|
Map<const ID *, unique_ptr<RNANodeQueryIDData>> id_data_map_;
|
2019-02-15 15:06:44 +01:00
|
|
|
|
2019-07-02 17:38:36 +10:00
|
|
|
/* Construct identifier of the node which corresponds given configuration
|
2019-02-15 15:06:44 +01:00
|
|
|
* of RNA property. */
|
|
|
|
|
RNANodeIdentifier construct_node_identifier(const PointerRNA *ptr,
|
|
|
|
|
const PropertyRNA *prop,
|
|
|
|
|
RNAPointerSource source);
|
|
|
|
|
|
|
|
|
|
/* Make sure ID data exists for the given ID, and returns it. */
|
|
|
|
|
RNANodeQueryIDData *ensure_id_data(const ID *id);
|
2020-07-27 08:53:32 +02:00
|
|
|
|
|
|
|
|
/* Check whether prop_identifier contains rna_path_component.
|
|
|
|
|
*
|
2020-07-28 21:49:37 +10:00
|
|
|
* This checks more than a sub-string:
|
2020-07-27 08:53:32 +02:00
|
|
|
*
|
|
|
|
|
* prop_identifier contains(prop_identifier, "location")
|
|
|
|
|
* ------------------------ -------------------------------------
|
|
|
|
|
* location true
|
|
|
|
|
* ["test_location"] false
|
|
|
|
|
* pose["bone"].location true
|
|
|
|
|
* pose["bone"].location.x true
|
|
|
|
|
*/
|
|
|
|
|
static bool contains(const char *prop_identifier, const char *rna_path_component);
|
2019-02-15 12:45:56 +01:00
|
|
|
};
|
|
|
|
|
|
2020-06-29 15:19:56 +02:00
|
|
|
} // namespace deg
|
|
|
|
|
} // namespace blender
|