Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-08-31 12:03:38 +0300
committerJacques Lucke <jacques@blender.org>2021-08-31 12:03:38 +0300
commita55c230b8aeb341deb7d76619d21eb614e7d775f (patch)
tree48ee837379e7b27d9cb866338097ad00fbf9fd92 /source/blender/functions
parent1f1dc4ade307446a9bde561eb478587bdd01fcb2 (diff)
initial support in evaluator
Diffstat (limited to 'source/blender/functions')
-rw-r--r--source/blender/functions/FN_field.hh25
-rw-r--r--source/blender/functions/intern/field.cc11
2 files changed, 33 insertions, 3 deletions
diff --git a/source/blender/functions/FN_field.hh b/source/blender/functions/FN_field.hh
index 7327ec7a499..7889126fe76 100644
--- a/source/blender/functions/FN_field.hh
+++ b/source/blender/functions/FN_field.hh
@@ -34,6 +34,7 @@
#include "BLI_vector.hh"
#include "FN_generic_virtual_array.hh"
+#include "FN_multi_function_builder.hh"
#include "FN_multi_function_procedure.hh"
#include "FN_multi_function_procedure_builder.hh"
#include "FN_multi_function_procedure_executor.hh"
@@ -58,11 +59,13 @@ class GField {
/**
* Which output of the function this field corresponds to.
*/
- int output_index_;
+ int output_index_ = 0;
std::shared_ptr<FieldInput> input_;
public:
+ GField() = default;
+
GField(std::shared_ptr<FieldFunction> function, const int output_index)
: function_(std::move(function)), output_index_(output_index)
{
@@ -109,6 +112,8 @@ template<typename T> class Field {
GField field_;
public:
+ Field() = default;
+
Field(GField field) : field_(std::move(field))
{
BLI_assert(field_.cpp_type().is<T>());
@@ -142,7 +147,7 @@ class FieldFunction {
blender::Vector<GField> inputs_;
public:
- FieldFunction(std::unique_ptr<const MultiFunction> function, Vector<GField> &&inputs)
+ FieldFunction(std::unique_ptr<const MultiFunction> function, Vector<GField> inputs = {})
: owned_function_(std::move(function)), inputs_(std::move(inputs))
{
function_ = owned_function_.get();
@@ -199,6 +204,22 @@ class FieldInput {
void evaluate_fields(blender::Span<GField> fields,
blender::IndexMask mask,
blender::Span<GMutableSpan> outputs);
+void evaluate_constant_field(const GField &field, void *r_value);
+
+template<typename T> T evaluate_constant_field(const Field<T> &field)
+{
+ T value;
+ value.~T();
+ evaluate_constant_field(*field, &value);
+ return value;
+}
+
+template<typename T> Field<T> make_constant_field(T value)
+{
+ auto constant_fn = std::make_unique<fn::CustomMF_Constant<T>>(std::forward<T>(value));
+ auto field_fn = std::make_shared<FieldFunction>(std::move(constant_fn));
+ return Field<T>{GField{std::move(field_fn), 0}};
+}
/* --------------------------------------------------------------------
* GField inline methods.
diff --git a/source/blender/functions/intern/field.cc b/source/blender/functions/intern/field.cc
index 151751e9ded..55aa96bc50f 100644
--- a/source/blender/functions/intern/field.cc
+++ b/source/blender/functions/intern/field.cc
@@ -243,7 +243,7 @@ static void build_procedure(const Span<GField> fields,
builder.add_output_parameter(input);
}
- std::cout << procedure.to_dot();
+ // std::cout << procedure.to_dot();
BLI_assert(procedure.validate());
}
@@ -343,4 +343,13 @@ void evaluate_fields(const Span<GField> fields,
}
}
+/**
+ * #r_value is expected to be uninitialized.
+ */
+void evaluate_constant_field(const GField &field, void *r_value)
+{
+ GMutableSpan value_span{field.cpp_type(), r_value, 1};
+ evaluate_fields({field}, IndexRange(1), {value_span});
+}
+
} // namespace blender::fn