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-09-10 09:14:48 +08:00
|
|
|
#include <mitsuba/render/bsdf.h>
|
|
|
|
#include <mitsuba/core/frame.h>
|
2010-08-10 01:38:37 +08:00
|
|
|
|
|
|
|
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 */
|
2011-02-03 16:15:25 +08:00
|
|
|
Spectrum BSDF::sample(BSDFQueryRecord &bRec, Float &_pdf, const Point2 &_sample) const {
|
|
|
|
if (sample(bRec, _sample).isZero()) {
|
2010-08-10 01:38:37 +08:00
|
|
|
_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
|
|
|
}
|
|
|
|
|
2011-02-03 16:15:25 +08:00
|
|
|
void BSDF::setParent(ConfigurableObject *parent) {
|
|
|
|
/* BSDF's don't need to reference their parent -> do nothing */
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-09-10 09:14:48 +08:00
|
|
|
std::string BSDFQueryRecord::toString() const {
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "BSDFQueryRecord[" << std::endl
|
|
|
|
<< " wi = " << wi.toString() << "," << std::endl
|
|
|
|
<< " wo = " << wo.toString() << "," << std::endl
|
|
|
|
<< " quantity = " << quantity << "," << std::endl
|
|
|
|
<< " typeMask = " << typeMask << "," << std::endl
|
|
|
|
<< " sampledType = " << sampledType << "," << std::endl
|
|
|
|
<< " component = " << component << "," << std::endl
|
|
|
|
<< " sampledComponent = " << sampledComponent << "," << std::endl
|
|
|
|
<< "]";
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
2010-08-10 01:38:37 +08:00
|
|
|
MTS_IMPLEMENT_CLASS(BSDF, true, ConfigurableObject)
|
|
|
|
MTS_NAMESPACE_END
|