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 166 167 168 169 170 171
|
// K-3D
// Copyright (c) 1995-2008, 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 Timothy M. Shead (tshead@k-3d.com)
\author Romain Behar (romainbehar@yahoo.com)
*/
#include <k3d-i18n-config.h>
#include <k3d-platform-config.h>
#include <k3dsdk/axis.h>
#include <k3dsdk/bitmap_modifier.h>
#include <k3dsdk/classes.h>
#include <k3dsdk/document_plugin_factory.h>
#include <k3dsdk/ibitmap_exporter.h>
#include <k3dsdk/inetwork_render_frame.h>
#include <k3dsdk/istream_ri.h>
#include <k3dsdk/itexture_ri.h>
#include <k3dsdk/measurement.h>
#include <k3dsdk/node.h>
#include <k3dsdk/plugin.h>
#include <k3dsdk/types_ri.h>
#include <boost/scoped_ptr.hpp>
#include <iterator>
#ifdef K3D_API_WIN32
#define COPY_COMMAND "copy"
#else
#define COPY_COMMAND "cp"
#endif
namespace libk3drenderman
{
/////////////////////////////////////////////////////////////////////////////
// lat_long_environment_map
class lat_long_environment_map :
public k3d::node,
public k3d::bitmap_modifier<lat_long_environment_map>,
public k3d::ri::itexture
{
typedef k3d::node base;
public:
lat_long_environment_map(k3d::iplugin_factory& Factory, k3d::idocument& Document) :
base(Factory, Document),
m_filter(init_owner(*this) + init_name("filter") + init_label(_("filter")) + init_description(_("Filter")) + init_value(k3d::ri::RI_GAUSSIAN()) + init_values(filter_values())),
m_swidth(init_owner(*this) + init_name("swidth") + init_label(_("swidth")) + init_description(_("Filter S Width")) + init_value(2.0) + init_constraint(constraint::minimum(std::numeric_limits<double>::epsilon())) + init_step_increment(1.0) + init_units(typeid(k3d::measurement::scalar))),
m_twidth(init_owner(*this) + init_name("twidth") + init_label(_("twidth")) + init_description(_("Filter T Width")) + init_value(2.0) + init_constraint(constraint::minimum(std::numeric_limits<double>::epsilon())) + init_step_increment(1.0) + init_units(typeid(k3d::measurement::scalar)))
{
}
void setup_renderman_texture(k3d::inetwork_render_frame& Frame, k3d::ri::istream& Stream, k3d::ri::ishader_collection& Shaders)
{
m_ri_image_path = k3d::filesystem::path();
m_ri_texture_path = k3d::filesystem::path();
// If we don't have an input bitmap, we're done ...
const k3d::bitmap* const input = m_input_bitmap.pipeline_value();
if(!input)
return;
m_ri_image_path = Frame.add_file("texture");
m_ri_texture_path = Frame.add_file("texture");
/*
// If "render from source" is enabled, just copy the source file to the frame directory ...
if(m_render_from_source.pipeline_value())
{
// Copy the file ...
const std::string copycommand = COPY_COMMAND " " + m_image_path.pipeline_value().native_string() + " " + m_ri_image_path.native_string();
k3d::system::run_process(copycommand);
}
// Otherwise, save the in-memory image data as a TIFF file ...
else
*/
{
boost::scoped_ptr<k3d::ibitmap_exporter> exporter(k3d::plugin::create<k3d::ibitmap_exporter>(k3d::classes::TIFFBitmapExporter()));
return_if_fail(exporter);
return_if_fail(exporter->write_file(m_ri_image_path, *input));
}
Stream.RiMakeLatLongEnvironmentV(m_ri_image_path.native_filesystem_string(), m_ri_texture_path.native_filesystem_string(), m_filter.pipeline_value(), m_swidth.pipeline_value(), m_twidth.pipeline_value());
}
const k3d::filesystem::path renderman_texture_path(const k3d::ri::render_state& State)
{
return m_ri_texture_path;
}
void on_resize_bitmap(const k3d::bitmap& Input, k3d::bitmap& Output)
{
Output.recreate(Input.width(), Input.height());
}
void on_assign_pixels(const k3d::bitmap& Input, k3d::bitmap& Output)
{
Output = Input;
}
static k3d::iplugin_factory& get_factory()
{
static k3d::document_plugin_factory<lat_long_environment_map,
k3d::interface_list<k3d::ibitmap_source,
k3d::interface_list<k3d::ibitmap_sink,
k3d::interface_list<k3d::ri::itexture> > > > factory(
k3d::uuid(0x04354dba, 0x91a7411c, 0x88b73725, 0x5808a415),
"RenderManLatLongEnvironmentMap",
_("Converts a bitmap into a RenderMan LatLong Environment Map"),
"RenderMan",
k3d::iplugin_factory::STABLE);
return factory;
}
private:
k3d_data(std::string, immutable_name, change_signal, with_undo, local_storage, no_constraint, list_property, with_serialization) m_filter;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, with_constraint, measurement_property, with_serialization) m_swidth;
k3d_data(double, immutable_name, change_signal, with_undo, local_storage, with_constraint, measurement_property, with_serialization) m_twidth;
const k3d::ilist_property<std::string>::values_t& filter_values()
{
static k3d::ilist_property<std::string>::values_t values;
if(values.empty())
{
values.push_back(k3d::ri::RI_GAUSSIAN());
values.push_back(k3d::ri::RI_BOX());
values.push_back(k3d::ri::RI_TRIANGLE());
values.push_back(k3d::ri::RI_CATMULL_ROM());
values.push_back(k3d::ri::RI_SINC());
}
return values;
}
/// Stores the absolute path to the saved TIFF version of this lat_long_environment_map (for use during RenderMan rendering)
k3d::filesystem::path m_ri_image_path;
/// Stores the absolute path to the version of this lat_long_environment_map converted by the renderer (via RiMakeLatLongEnvironment())
k3d::filesystem::path m_ri_texture_path;
};
/////////////////////////////////////////////////////////////////////////////
// lat_long_environment_map_factory
k3d::iplugin_factory& lat_long_environment_map_factory()
{
return lat_long_environment_map::get_factory();
}
} // namespace libk3drenderman
|