home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / mesh_writer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-03-14  |  3.7 KB  |  108 lines

  1. #ifndef K3DSDK_MESH_WRITER_H
  2. #define K3DSDK_MESH_WRITER_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2009, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. /** \file
  24.     \author Timothy M. Shead (tshead@k3d.com)
  25. */
  26.  
  27. #include "data.h"
  28. #include "hints.h"
  29. #include "k3d-i18n-config.h"
  30. #include "imesh_sink.h"
  31. #include "ipipeline_profiler.h"
  32.  
  33. namespace k3d
  34. {
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // mesh_writer
  38.  
  39. template<typename base_t>
  40. class mesh_writer :
  41.     public base_t,
  42.     public imesh_sink
  43. {
  44. public:
  45.     iproperty& mesh_sink_input()
  46.     {
  47.         return m_input_mesh;
  48.     }
  49.     
  50. protected:
  51.     mesh_writer(iplugin_factory& Factory, idocument& Document) :
  52.         base_t(Factory, Document),
  53.         m_input_mesh(init_owner(*this) + init_name("input_mesh") + init_label(_("Input Mesh")) + init_description(_("Input mesh")) + init_value<mesh*>(0)),
  54.         m_file(init_owner(*this) + init_name("file") + init_label(_("File")) + init_description(_("Output file path.")) + init_value(filesystem::path()) + init_path_mode(ipath_property::WRITE) + init_path_type(""))
  55.     {
  56.         m_input_mesh.changed_signal().connect(hint::converter<
  57.             hint::convert<hint::any, hint::none> >(make_write_file_slot()));
  58.         m_file.changed_signal().connect(hint::converter<
  59.             hint::convert<hint::any, hint::none> >(make_write_file_slot()));
  60.     }
  61.     
  62.     /// Slot to call when the file needs to be written
  63.     sigc::slot<void, ihint*> make_write_file_slot()
  64.     {
  65.         return sigc::mem_fun(*this, &mesh_writer::write_file);
  66.     }
  67.  
  68.     /// Stores the input mesh.
  69.     k3d_data(mesh*, data::immutable_name, data::change_signal, data::no_undo, data::local_storage, data::no_constraint, data::read_only_property, data::no_serialization) m_input_mesh;
  70.     /// Stores the output file path.
  71.     k3d_data(filesystem::path, immutable_name, change_signal, with_undo, local_storage, no_constraint, path_property, path_serialization) m_file;
  72.  
  73. private:
  74.     /// Called whenever our inputs have changed and it's time to write to disk.
  75.     /// Note that execution is unaffected by the types of hints we've received.
  76.     void write_file(ihint*)
  77.     {
  78.         const k3d::filesystem::path path = m_file.pipeline_value();
  79.         const k3d::mesh* const mesh = m_input_mesh.pipeline_value();
  80.  
  81.         if(!mesh || path.empty())
  82.             return;
  83.     
  84.         log() << info << "Writing " << path.native_console_string() << " using " << base_t::factory().name() << std::endl;
  85.  
  86.         k3d::filesystem::ofstream stream(path);
  87.         if(!stream)
  88.         {
  89.             k3d::log() << error << k3d_file_reference << ": error opening [" << path.native_console_string() << "] for writing." << std::endl;
  90.             return;
  91.         }
  92.  
  93.         base_t::document().pipeline_profiler().start_execution(*this, "Write Mesh");
  94.         on_write_mesh(*mesh, path, stream);
  95.         base_t::document().pipeline_profiler().finish_execution(*this, "Write Mesh");
  96.     }
  97.  
  98.  
  99.     /// Implement this in derived classes to write the given mesh to an output stream.  Note that the output
  100.     /// path is provided for reference only, all data must be written to the provided stream.
  101.     virtual void on_write_mesh(const mesh& Input, const filesystem::path& OutputPath, std::ostream& Output) = 0;
  102. };
  103.  
  104. } // namespace k3d
  105.  
  106. #endif // !K3DSDK_MESH_WRITER_H
  107.  
  108.