~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to intern/cycles/kernel/osl/bsdf_diffuse.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Adapted from Open Shading Language with this license:
 
3
 *
 
4
 * Copyright (c) 2009-2010 Sony Pictures Imageworks Inc., et al.
 
5
 * All Rights Reserved.
 
6
 *
 
7
 * Modifications Copyright 2011, Blender Foundation.
 
8
 * 
 
9
 * Redistribution and use in source and binary forms, with or without
 
10
 * modification, are permitted provided that the following conditions are
 
11
 * met:
 
12
 * * Redistributions of source code must retain the above copyright
 
13
 *   notice, this list of conditions and the following disclaimer.
 
14
 * * Redistributions in binary form must reproduce the above copyright
 
15
 *   notice, this list of conditions and the following disclaimer in the
 
16
 *   documentation and/or other materials provided with the distribution.
 
17
 * * Neither the name of Sony Pictures Imageworks nor the names of its
 
18
 *   contributors may be used to endorse or promote products derived from
 
19
 *   this software without specific prior written permission.
 
20
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
21
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
22
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
23
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
24
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
25
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
26
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
27
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
28
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
29
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
30
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
31
 */
 
32
 
 
33
#include <OpenImageIO/fmath.h>
 
34
 
 
35
#include <OSL/genclosure.h>
 
36
 
 
37
#include "osl_closures.h"
 
38
 
 
39
CCL_NAMESPACE_BEGIN
 
40
 
 
41
using namespace OSL;
 
42
 
 
43
class DiffuseClosure : public BSDFClosure {
 
44
public:
 
45
    Vec3 m_N;
 
46
 
 
47
    DiffuseClosure() : BSDFClosure(Labels::DIFFUSE) { }
 
48
 
 
49
    void setup() {};
 
50
 
 
51
    bool mergeable (const ClosurePrimitive *other) const {
 
52
        const DiffuseClosure *comp = (const DiffuseClosure *)other;
 
53
        return m_N == comp->m_N && BSDFClosure::mergeable(other);
 
54
    }
 
55
 
 
56
    size_t memsize () const { return sizeof(*this); }
 
57
 
 
58
    const char *name () const { return "diffuse"; }
 
59
 
 
60
    void print_on (std::ostream &out) const
 
61
    {
 
62
        out << name() << " ((" << m_N[0] << ", " << m_N[1] << ", " << m_N[2] << "))";
 
63
    }
 
64
 
 
65
    float albedo (const Vec3 &omega_out) const
 
66
    {
 
67
        return 1.0f;
 
68
    }
 
69
 
 
70
    Color3 eval_reflect (const Vec3 &omega_out, const Vec3 &omega_in, float& pdf) const
 
71
    {
 
72
        float cos_pi = std::max(m_N.dot(omega_in),0.0f) * (float) M_1_PI;
 
73
        pdf = cos_pi;
 
74
        return Color3 (cos_pi, cos_pi, cos_pi);
 
75
    }
 
76
 
 
77
    Color3 eval_transmit (const Vec3 &omega_out, const Vec3 &omega_in, float& pdf) const
 
78
    {
 
79
        return Color3 (0, 0, 0);
 
80
    }
 
81
 
 
82
    ustring sample (const Vec3 &Ng,
 
83
                 const Vec3 &omega_out, const Vec3 &domega_out_dx, const Vec3 &domega_out_dy,
 
84
                 float randu, float randv,
 
85
                 Vec3 &omega_in, Vec3 &domega_in_dx, Vec3 &domega_in_dy,
 
86
                 float &pdf, Color3 &eval) const
 
87
    {
 
88
        // we are viewing the surface from the right side - send a ray out with cosine
 
89
        // distribution over the hemisphere
 
90
        sample_cos_hemisphere (m_N, omega_out, randu, randv, omega_in, pdf);
 
91
        if (Ng.dot(omega_in) > 0) {
 
92
            eval.setValue(pdf, pdf, pdf);
 
93
            // TODO: find a better approximation for the diffuse bounce
 
94
            domega_in_dx = (2 * m_N.dot(domega_out_dx)) * m_N - domega_out_dx;
 
95
            domega_in_dy = (2 * m_N.dot(domega_out_dy)) * m_N - domega_out_dy;
 
96
            domega_in_dx *= 125;
 
97
            domega_in_dy *= 125;
 
98
        } else
 
99
            pdf = 0;
 
100
        return Labels::REFLECT;
 
101
    }
 
102
};
 
103
 
 
104
 
 
105
 
 
106
class TranslucentClosure : public BSDFClosure {
 
107
public:
 
108
    Vec3 m_N;
 
109
 
 
110
    TranslucentClosure() : BSDFClosure(Labels::DIFFUSE, Back) { }
 
111
 
 
112
    void setup() {};
 
113
 
 
114
    bool mergeable (const ClosurePrimitive *other) const {
 
115
        const TranslucentClosure *comp = (const TranslucentClosure *)other;
 
116
        return m_N == comp->m_N && BSDFClosure::mergeable(other);
 
117
    }
 
118
 
 
119
    size_t memsize () const { return sizeof(*this); }
 
120
 
 
121
    const char *name () const { return "translucent"; }
 
122
 
 
123
    void print_on (std::ostream &out) const
 
124
    {
 
125
        out << name() << " ((" << m_N[0] << ", " << m_N[1] << ", " << m_N[2] << "))";
 
126
    }
 
127
 
 
128
    Color3 eval_reflect (const Vec3 &omega_out, const Vec3 &omega_in, float& pdf) const
 
129
    {
 
130
        return Color3 (0, 0, 0);
 
131
    }
 
132
 
 
133
    float albedo (const Vec3 &omega_out) const
 
134
    {
 
135
        return 1.0f;
 
136
    }
 
137
 
 
138
    Color3 eval_transmit (const Vec3 &omega_out, const Vec3 &omega_in, float& pdf) const
 
139
    {
 
140
        float cos_pi = std::max(-m_N.dot(omega_in), 0.0f) * (float) M_1_PI;
 
141
        pdf = cos_pi;
 
142
        return Color3 (cos_pi, cos_pi, cos_pi);
 
143
    }
 
144
 
 
145
    ustring sample (const Vec3 &Ng,
 
146
                 const Vec3 &omega_out, const Vec3 &domega_out_dx, const Vec3 &domega_out_dy,
 
147
                 float randu, float randv,
 
148
                 Vec3 &omega_in, Vec3 &domega_in_dx, Vec3 &domega_in_dy,
 
149
                 float &pdf, Color3 &eval) const
 
150
    {
 
151
        // we are viewing the surface from the right side - send a ray out with cosine
 
152
        // distribution over the hemisphere
 
153
        sample_cos_hemisphere (-m_N, omega_out, randu, randv, omega_in, pdf);
 
154
        if (Ng.dot(omega_in) < 0) {
 
155
            eval.setValue(pdf, pdf, pdf);
 
156
            // TODO: find a better approximation for the diffuse bounce
 
157
            domega_in_dx = (2 * m_N.dot(domega_out_dx)) * m_N - domega_out_dx;
 
158
            domega_in_dy = (2 * m_N.dot(domega_out_dy)) * m_N - domega_out_dy;
 
159
            domega_in_dx *= -125;
 
160
            domega_in_dy *= -125;
 
161
        } else
 
162
            pdf = 0;
 
163
        return Labels::TRANSMIT;
 
164
    }
 
165
};
 
166
 
 
167
ClosureParam bsdf_diffuse_params[] = {
 
168
    CLOSURE_VECTOR_PARAM   (DiffuseClosure, m_N),
 
169
    CLOSURE_STRING_KEYPARAM("label"),
 
170
    CLOSURE_FINISH_PARAM   (DiffuseClosure) };
 
171
 
 
172
ClosureParam bsdf_translucent_params[] = {
 
173
    CLOSURE_VECTOR_PARAM   (TranslucentClosure, m_N),
 
174
    CLOSURE_STRING_KEYPARAM("label"),
 
175
    CLOSURE_FINISH_PARAM   (TranslucentClosure) };
 
176
 
 
177
CLOSURE_PREPARE(bsdf_diffuse_prepare, DiffuseClosure)
 
178
CLOSURE_PREPARE(bsdf_translucent_prepare, TranslucentClosure)
 
179
 
 
180
CCL_NAMESPACE_END
 
181