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:
authorTon Roosendaal <ton@blender.org>2011-04-27 15:58:34 +0400
committerTon Roosendaal <ton@blender.org>2011-04-27 15:58:34 +0400
commitda376e0237517543aa21740ee2363234ee1c20ae (patch)
tree014a513ed8d0eccc5e54fef42347781e85bae56a /intern/cycles/render/graph.h
parent693780074388111e7b9ef1c3825e462f398dc6c4 (diff)
Cycles render engine, initial commit. This is the engine itself, blender modifications and build instructions will follow later.
Cycles uses code from some great open source projects, many thanks them: * BVH building and traversal code from NVidia's "Understanding the Efficiency of Ray Traversal on GPUs": http://code.google.com/p/understanding-the-efficiency-of-ray-traversal-on-gpus/ * Open Shading Language for a large part of the shading system: http://code.google.com/p/openshadinglanguage/ * Blender for procedural textures and a few other nodes. * Approximate Catmull Clark subdivision from NVidia Mesh tools: http://code.google.com/p/nvidia-mesh-tools/ * Sobol direction vectors from: http://web.maths.unsw.edu.au/~fkuo/sobol/ * Film response functions from: http://www.cs.columbia.edu/CAVE/software/softlib/dorf.php
Diffstat (limited to 'intern/cycles/render/graph.h')
-rw-r--r--intern/cycles/render/graph.h227
1 files changed, 227 insertions, 0 deletions
diff --git a/intern/cycles/render/graph.h b/intern/cycles/render/graph.h
new file mode 100644
index 00000000000..c73dd77d5df
--- /dev/null
+++ b/intern/cycles/render/graph.h
@@ -0,0 +1,227 @@
+/*
+ * Copyright 2011, Blender Foundation.
+ *
+ * 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.
+ */
+
+#ifndef __GRAPH_H__
+#define __GRAPH_H__
+
+#include "kernel_types.h"
+
+#include "util_map.h"
+#include "util_param.h"
+#include "util_set.h"
+#include "util_types.h"
+#include "util_vector.h"
+
+CCL_NAMESPACE_BEGIN
+
+class AttributeRequestSet;
+class ShaderInput;
+class ShaderOutput;
+class ShaderNode;
+class ShaderGraph;
+class SVMCompiler;
+class OSLCompiler;
+
+/* Socket Type
+ *
+ * Data type for inputs and outputs */
+
+enum ShaderSocketType {
+ SHADER_SOCKET_FLOAT,
+ SHADER_SOCKET_COLOR,
+ SHADER_SOCKET_VECTOR,
+ SHADER_SOCKET_POINT,
+ SHADER_SOCKET_NORMAL,
+ SHADER_SOCKET_CLOSURE
+};
+
+/* Bump
+ *
+ * For bump mapping, a node may be evaluated multiple times, using different
+ * samples to reconstruct the normal, this indicates the sample position */
+
+enum ShaderBump {
+ SHADER_BUMP_NONE,
+ SHADER_BUMP_CENTER,
+ SHADER_BUMP_DX,
+ SHADER_BUMP_DY
+};
+
+/* Enum
+ *
+ * Utility class for enum values. */
+
+class ShaderEnum {
+public:
+ bool empty() const { return left.empty(); }
+ void insert(const char *x, int y) {
+ left[ustring(x)] = y;
+ right[y] = ustring(x);
+ }
+
+ bool exists(ustring x) { return left.find(x) != left.end(); }
+ bool exists(int y) { return right.find(y) != right.end(); }
+
+ int operator[](const char *x) { return left[ustring(x)]; }
+ int operator[](ustring x) { return left[x]; }
+ ustring operator[](int y) { return right[y]; }
+
+protected:
+ map<ustring, int> left;
+ map<int, ustring> right;
+};
+
+/* Input
+ *
+ * Input socket for a shader node. May be linked to an output or not. If not
+ * linked, it will either get a fixed default value, or e.g. a texture
+ * coordinate. */
+
+class ShaderInput {
+public:
+ enum DefaultValue {
+ TEXTURE_COORDINATE,
+ INCOMING,
+ NORMAL,
+ POSITION,
+ NONE
+ };
+
+ ShaderInput(ShaderNode *parent, const char *name, ShaderSocketType type);
+ void set(const float3& v) { value = v; }
+ void set(float f) { value = make_float3(f, 0, 0); }
+
+ const char *name;
+ ShaderSocketType type;
+
+ ShaderNode *parent;
+ ShaderOutput *link;
+
+ DefaultValue default_value;
+ float3 value;
+
+ int stack_offset; /* for SVM compiler */
+ bool osl_only;
+};
+
+/* Output
+ *
+ * Output socket for a shader node. */
+
+class ShaderOutput {
+public:
+ ShaderOutput(ShaderNode *parent, const char *name, ShaderSocketType type);
+
+ const char *name;
+ ShaderNode *parent;
+ ShaderSocketType type;
+
+ vector<ShaderInput*> links;
+
+ int stack_offset; /* for SVM compiler */
+};
+
+/* Node
+ *
+ * Shader node in graph, with input and output sockets. This is the virtual
+ * base class for all node types. */
+
+class ShaderNode {
+public:
+ ShaderNode(const char *name);
+ virtual ~ShaderNode();
+
+ ShaderInput *input(const char *name);
+ ShaderOutput *output(const char *name);
+
+ ShaderInput *add_input(const char *name, ShaderSocketType type, float value=0.0f);
+ ShaderInput *add_input(const char *name, ShaderSocketType type, float3 value);
+ ShaderInput *add_input(const char *name, ShaderSocketType type, ShaderInput::DefaultValue value, bool osl_only=false);
+ ShaderOutput *add_output(const char *name, ShaderSocketType type);
+
+ virtual ShaderNode *clone() const = 0;
+ virtual void attributes(AttributeRequestSet *attributes);
+ virtual void compile(SVMCompiler& compiler) = 0;
+ virtual void compile(OSLCompiler& compiler) = 0;
+
+ vector<ShaderInput*> inputs;
+ vector<ShaderOutput*> outputs;
+
+ ustring name; /* name, not required to be unique */
+ int id; /* index in graph node array */
+ ShaderBump bump; /* for bump mapping utility */
+};
+
+
+/* Node definition utility macros */
+
+#define SHADER_NODE_CLASS(type) \
+ type(); \
+ virtual ShaderNode *clone() const { return new type(*this); } \
+ virtual void compile(SVMCompiler& compiler); \
+ virtual void compile(OSLCompiler& compiler); \
+
+#define SHADER_NODE_NO_CLONE_CLASS(type) \
+ type(); \
+ virtual void compile(SVMCompiler& compiler); \
+ virtual void compile(OSLCompiler& compiler); \
+
+#define SHADER_NODE_BASE_CLASS(type) \
+ virtual ShaderNode *clone() const { return new type(*this); } \
+ virtual void compile(SVMCompiler& compiler); \
+ virtual void compile(OSLCompiler& compiler); \
+
+/* Graph
+ *
+ * Shader graph of nodes. Also does graph manipulations for default inputs,
+ * bump mapping from displacement, and possibly other things in the future. */
+
+class ShaderGraph {
+public:
+ vector<ShaderNode*> nodes;
+ bool finalized;
+
+ ShaderGraph();
+ ~ShaderGraph();
+
+ ShaderGraph *copy();
+
+ ShaderNode *add(ShaderNode *node);
+ ShaderNode *output();
+
+ void connect(ShaderOutput *from, ShaderInput *to);
+ void disconnect(ShaderInput *to);
+
+ void finalize(bool do_bump = false, bool do_osl = false);
+
+protected:
+ typedef pair<ShaderNode* const, ShaderNode*> NodePair;
+
+ void find_dependencies(set<ShaderNode*>& dependencies, ShaderInput *input);
+ void copy_nodes(set<ShaderNode*>& nodes, map<ShaderNode*, ShaderNode*>& nnodemap);
+
+ void break_cycles(ShaderNode *node, vector<bool>& visited, vector<bool>& on_stack);
+ void clean();
+ void bump_from_displacement();
+ void default_inputs(bool do_osl);
+};
+
+CCL_NAMESPACE_END
+
+#endif /* __GRAPH_H__ */
+