2010-09-03 05:41:20 +08:00
|
|
|
/*
|
|
|
|
This file is part of Mitsuba, a physically based rendering system.
|
|
|
|
|
|
|
|
Copyright (c) 2007-2010 by Wenzel Jakob and others.
|
|
|
|
|
|
|
|
Mitsuba is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License Version 3
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
Mitsuba 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-08-10 01:38:37 +08:00
|
|
|
#include <mitsuba/render/scene.h>
|
|
|
|
|
|
|
|
MTS_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
BSDF::BSDF(const Properties &props)
|
2010-08-20 06:45:52 +08:00
|
|
|
: ConfigurableObject(props), m_type(NULL), m_name(props.getID()) {
|
2010-08-10 01:38:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
BSDF::BSDF(Stream *stream, InstanceManager *manager)
|
2010-08-15 18:29:18 +08:00
|
|
|
: ConfigurableObject(stream, manager), m_type(NULL) {
|
2010-08-20 06:45:52 +08:00
|
|
|
m_name = stream->readString();
|
2010-08-10 01:38:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
BSDF::~BSDF() {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Inefficient version in case this is not supported by the BSDF implementation */
|
|
|
|
Spectrum BSDF::sample(BSDFQueryRecord &bRec, Float &_pdf) const {
|
|
|
|
if (sample(bRec).isBlack()) {
|
|
|
|
_pdf = 0.0f;
|
|
|
|
return Spectrum(0.0f);
|
|
|
|
}
|
|
|
|
/* Re-evaluation required because we want both the
|
|
|
|
value and a matching probability density.
|
|
|
|
(the previously sampled value may ony be wrt.
|
|
|
|
one of the BSDF lobes) */
|
|
|
|
_pdf = pdf(bRec);
|
|
|
|
return f(bRec);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BSDF::serialize(Stream *stream, InstanceManager *manager) const {
|
|
|
|
ConfigurableObject::serialize(stream, manager);
|
2010-08-20 06:45:52 +08:00
|
|
|
stream->writeString(m_name);
|
2010-08-10 01:38:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void BSDF::addChild(const std::string &name, ConfigurableObject *obj) {
|
|
|
|
ConfigurableObject::addChild(name, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
Float BSDF::pdfDelta(const BSDFQueryRecord &bRec) const {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
Spectrum BSDF::fDelta(const BSDFQueryRecord &bRec) const {
|
|
|
|
return Spectrum(0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
MTS_IMPLEMENT_CLASS(BSDF, true, ConfigurableObject)
|
|
|
|
MTS_NAMESPACE_END
|