1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
// K-3D
// Copyright (c) 1995-2005, Timothy M. Shead
//
// Contact: tshead@k-3d.com
//
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/** \file
\author Tim Shead <tshead@k-3d.com>
\author Romain Behar <romainbehar@yahoo.com>
*/
#include <k3d-i18n-config.h>
#include <k3dsdk/color.h>
#include <k3dsdk/document_plugin_factory.h>
#include <k3dsdk/imaterial.h>
#include <k3dsdk/imaterial_yafray.h>
#include <k3dsdk/node.h>
#include <k3dsdk/property_group_collection.h>
#include <k3dsdk/vectors.h>
namespace module
{
namespace yafray
{
/////////////////////////////////////////////////////////////////////////////
// material
class material :
public k3d::node ,
public k3d::imaterial,
public k3d::yafray::imaterial,
public k3d::property_group_collection
{
typedef k3d::node base;
public:
material(k3d::iplugin_factory& Factory, k3d::idocument& Document) :
base(Factory, Document),
m_color(init_owner(*this) + init_name("color") + init_label(_("color")) + init_description(_("Color")) + init_value(k3d::color(1, 1, 1))),
m_specular_color(init_owner(*this) + init_name("specular_color") + init_label(_("specular_color")) + init_description(_("Specular Color")) + init_value(k3d::color(1, 1, 1))),
m_reflected_color(init_owner(*this) + init_name("reflected_color") + init_label(_("reflected_color")) + init_description(_("Reflected Color")) + init_value(k3d::color(0, 0, 0))),
m_transmitted_color(init_owner(*this) + init_name("transmitted_color") + init_label(_("transmitted_color")) + init_description(_("Transmitted Color")) + init_value(k3d::color(0, 0, 0))),
m_hardness(init_owner(*this) + init_name("hardness") + init_label(_("hardness")) + init_description(_("Hardness")) + init_value(10.0)),
m_index_of_refraction(init_owner(*this) + init_name("index_of_refraction") + init_label(_("index_of_refraction")) + init_description(_("Index of Refraction")) + init_value(1.0)),
m_minimum_reflection(init_owner(*this) + init_name("minimum_reflection") + init_label(_("minimum_reflection")) + init_description(_("Minimum Reflection")) + init_value(0.0)),
m_fast_fresnel(init_owner(*this) + init_name("fast_fresnel") + init_label(_("fast_fresnel")) + init_description(_("Fast fresnel")) + init_value(false)),
m_shadow(init_owner(*this) + init_name("shadow") + init_label(_("shadow")) + init_description(_("Shadow")) + init_value(true)),
m_emit_rad(init_owner(*this) + init_name("emit_rad") + init_label(_("emit_rad")) + init_description(_("emit_rad")) + init_value(true)),
m_recv_rad(init_owner(*this) + init_name("recv_rad") + init_label(_("recv_rad")) + init_description(_("recv_rad")) + init_value(true)),
m_caustics(init_owner(*this) + init_name("caustics") + init_label(_("caustics")) + init_description(_("Caustics")) + init_value(false)),
m_caus_IOR(init_owner(*this) + init_name("caus_IOR") + init_label(_("caus_IOR")) + init_description(_("caus_IOR")) + init_value(1.0)),
m_caus_rcolor(init_owner(*this) + init_name("caus_rcolor") + init_label(_("caus_rcolor")) + init_description(_("caus_rcolor")) + init_value(k3d::color(0, 0, 0))),
m_caus_tcolor(init_owner(*this) + init_name("caus_tcolor") + init_label(_("caus_tcolor")) + init_description(_("caus_tcolor")) + init_value(k3d::color(0, 0, 0))),
m_mesh_autosmooth(init_owner(*this) + init_name("mesh_autosmooth") + init_label(_("mesh_autosmooth")) + init_description(_("Mesh autosmooth")) + init_value(false)),
m_mesh_autosmooth_value(init_owner(*this) + init_name("mesh_autosmooth_value") + init_label(_("mesh_autosmooth_value")) + init_description(_("Mesh autosmooth value")) + init_value(60.0)),
m_has_orco(init_owner(*this) + init_name("has_orco") + init_label(_("has_orco")) + init_description(_("Has orco")) + init_value(false))
{
k3d::iproperty_group_collection::group object_attributes("Object Attributes");
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_shadow));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_emit_rad));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_recv_rad));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_caustics));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_caus_IOR));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_caus_rcolor));
object_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_caus_tcolor));
k3d::iproperty_group_collection::group mesh_attributes("Mesh Attributes");
mesh_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_mesh_autosmooth));
mesh_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_mesh_autosmooth_value));
mesh_attributes.properties.push_back(&static_cast<k3d::iproperty&>(m_has_orco));
register_property_group(object_attributes);
register_property_group(mesh_attributes);
}
void setup_material(const k3d::string_t& Name, std::ostream& Stream)
{
const k3d::color color = m_color.pipeline_value();
const k3d::color specular_color = m_specular_color.pipeline_value();
const k3d::color reflected_color = m_reflected_color.pipeline_value();
const k3d::color transmitted_color = m_transmitted_color.pipeline_value();
const double hardness = m_hardness.pipeline_value();
const double index_of_refraction = m_index_of_refraction.pipeline_value();
const double minimum_reflection = m_minimum_reflection.pipeline_value();
Stream << "<!-- K-3D plugin: " << factory().name() << " name: " << name() << " -->\n";
Stream << "<shader type=\"generic\" name=\"" << Name << "\">\n";
Stream << " <attributes>\n";
Stream << " <color r=\"" << color.red << "\" g=\"" << color.green << "\" b=\"" << color.blue << "\"/>\n";
Stream << " <specular r=\"" << specular_color.red << "\" g=\"" << specular_color.green << "\" b=\"" << specular_color.blue << "\"/>\n";
Stream << " <reflected r=\"" << reflected_color.red << "\" g=\"" << reflected_color.green << "\" b=\"" << reflected_color.blue << "\"/>\n";
Stream << " <transmitted r=\"" << transmitted_color.red << "\" g=\"" << transmitted_color.green << "\" b=\"" << transmitted_color.blue << "\"/>\n";
Stream << " <hard value=\"" << hardness << "\"/>\n";
Stream << " <IOR value=\"" << index_of_refraction << "\"/>\n";
Stream << " <min_refle value=\"" << minimum_reflection << "\"/>\n";
Stream << " <fast_fresnel value=\"" << (m_fast_fresnel.pipeline_value() ? "on" : "off") << "\"/>\n";
Stream << " </attributes>\n";
Stream << "</shader>\n";
}
static k3d::iplugin_factory& get_factory()
{
static k3d::document_plugin_factory<material,
k3d::interface_list<k3d::imaterial,
k3d::interface_list<k3d::yafray::imaterial> > > factory(
k3d::uuid(0x4b767ac5, 0x19ec4182, 0x9883cc81, 0x3f091dea),
"YafrayMaterial",
_("Yafray Material"),
"Yafray Material",
k3d::iplugin_factory::STABLE);
return factory;
}
private:
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_color;
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_specular_color;
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_reflected_color;
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_transmitted_color;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_hardness;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_index_of_refraction;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_minimum_reflection;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_fast_fresnel;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_shadow;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_emit_rad;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_recv_rad;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_caustics;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_caus_IOR;
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_caus_rcolor;
k3d_data(k3d::color, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_caus_tcolor;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_mesh_autosmooth;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_mesh_autosmooth_value;
k3d_data(bool, immutable_name, change_signal, with_undo, local_storage, no_constraint, writable_property, with_serialization) m_has_orco;
};
k3d::iplugin_factory& material_factory()
{
return material::get_factory();
}
} // namespace yafray
} // namespace module
|