[Bf-blender-cvs] [c2ebf3edb48] master: Functions: provide dummy multi function

Jacques Lucke noreply at git.blender.org
Tue Jun 30 18:20:22 CEST 2020


Commit: c2ebf3edb48c741bac9ceead65db88a6bf16a9a5
Author: Jacques Lucke
Date:   Tue Jun 30 18:05:44 2020 +0200
Branches: master
https://developer.blender.org/rBc2ebf3edb48c741bac9ceead65db88a6bf16a9a5

Functions: provide dummy multi function

Sometimes it is convenient to be able to return a reference to some
dummy function.

===================================================================

M	source/blender/functions/CMakeLists.txt
M	source/blender/functions/FN_multi_function.hh
A	source/blender/functions/intern/multi_function.cc

===================================================================

diff --git a/source/blender/functions/CMakeLists.txt b/source/blender/functions/CMakeLists.txt
index 5b18dd4258e..703d3c393e8 100644
--- a/source/blender/functions/CMakeLists.txt
+++ b/source/blender/functions/CMakeLists.txt
@@ -29,6 +29,7 @@ set(INC_SYS
 set(SRC
   intern/attributes_ref.cc
   intern/cpp_types.cc
+  intern/multi_function.cc
   intern/multi_function_network.cc
   intern/multi_function_network_evaluation.cc
 
diff --git a/source/blender/functions/FN_multi_function.hh b/source/blender/functions/FN_multi_function.hh
index 3c9d833459a..a7e964b6651 100644
--- a/source/blender/functions/FN_multi_function.hh
+++ b/source/blender/functions/FN_multi_function.hh
@@ -88,9 +88,9 @@ class MultiFunction {
   }
 
  protected:
-  MFSignatureBuilder get_builder(StringRef function_name)
+  MFSignatureBuilder get_builder(std::string function_name)
   {
-    m_signature.function_name = function_name;
+    m_signature.function_name = std::move(function_name);
     return MFSignatureBuilder(m_signature);
   }
 };
@@ -100,6 +100,8 @@ inline MFParamsBuilder::MFParamsBuilder(const class MultiFunction &fn, uint min_
 {
 }
 
+extern const MultiFunction &dummy_multi_function;
+
 }  // namespace fn
 }  // namespace blender
 
diff --git a/source/blender/functions/intern/multi_function.cc b/source/blender/functions/intern/multi_function.cc
new file mode 100644
index 00000000000..8eb5355511d
--- /dev/null
+++ b/source/blender/functions/intern/multi_function.cc
@@ -0,0 +1,40 @@
+/*
+ * 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.
+ */
+
+#include "FN_multi_function.hh"
+
+namespace blender {
+namespace fn {
+
+class DummyMultiFunction : public MultiFunction {
+ public:
+  DummyMultiFunction()
+  {
+    this->get_builder("Dummy");
+  }
+
+  void call(IndexMask UNUSED(mask),
+            MFParams UNUSED(params),
+            MFContext UNUSED(context)) const override
+  {
+  }
+};
+
+static DummyMultiFunction dummy_multi_function_;
+const MultiFunction &dummy_multi_function = dummy_multi_function_;
+
+}  // namespace fn
+}  // namespace blender



More information about the Bf-blender-cvs mailing list