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
|
// Copyright (c) 1995-2009, 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)
*/
#include <k3d-i18n-config.h>
#include <k3d-platform-config.h>
#include <k3dsdk/document_plugin_factory.h>
#include <k3dsdk/hints.h>
#include <k3dsdk/iuser_interface.h>
#include <k3dsdk/measurement.h>
#include <k3dsdk/node.h>
#include <k3dsdk/user_interface.h>
#include <k3dsdk/value_demand_storage.h>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <limits>
namespace module
{
namespace time
{
/////////////////////////////////////////////////////////////////////////////
// real_time_source
class real_time_source :
public k3d::node
{
typedef k3d::node base;
public:
real_time_source(k3d::iplugin_factory& Factory, k3d::idocument& Document) :
base(Factory, Document),
m_frame_rate(init_owner(*this) + init_name("frame_rate") + init_label(_("Frame rate")) + init_description(_("Frame rate")) + init_value(1.0) + init_step_increment(1) + init_units(typeid(k3d::measurement::scalar)) + init_constraint(constraint::minimum(std::numeric_limits<k3d::double_t>::epsilon()))),
m_time(init_owner(*this) + init_name("time") + init_label(_("Time")) + init_description(_("Time")) + init_value(0.0))
{
m_frame_rate.changed_signal().connect(sigc::mem_fun(*this, &real_time_source::on_reset_source));
m_time.set_update_slot(sigc::mem_fun(*this, &real_time_source::execute));
on_reset_source(0);
}
~real_time_source()
{
m_timeout_connection.disconnect();
}
void on_reset_source(k3d::ihint* Hint = 0)
{
m_timeout_connection.disconnect();
m_timeout_connection = k3d::user_interface().get_timer(m_frame_rate.pipeline_value(), sigc::bind(m_time.make_slot(), static_cast<k3d::ihint*>(0)));
}
static k3d::iplugin_factory& get_factory()
{
static k3d::document_plugin_factory<real_time_source > factory(
k3d::uuid(0xf7c119e7, 0xd87b465a, 0x9b7e0289, 0x82d91702),
"RealTimeSource",
_("Provides a realtime time source for a K-3D document"),
"Animation",
k3d::iplugin_factory::STABLE);
return factory;
}
private:
k3d_data(k3d::double_t, immutable_name, change_signal, with_undo, local_storage, with_constraint, measurement_property, with_serialization) m_frame_rate;
k3d_data(k3d::double_t, immutable_name, change_signal, no_undo, value_demand_storage, no_constraint, read_only_property, no_serialization) m_time;
sigc::connection m_timeout_connection;
/// Called whenever the output time has been modified and needs to be updated.
void execute(const std::vector<k3d::ihint*>& Hints, k3d::double_t& Time)
{
const boost::posix_time::ptime epoch(boost::gregorian::date(1970, 1, 1));
const boost::posix_time::ptime current_time = boost::posix_time::microsec_clock::universal_time();
const boost::posix_time::time_duration elapsed = current_time - epoch;
Time = elapsed.total_seconds();
Time += static_cast<k3d::double_t>(elapsed.fractional_seconds()) / static_cast<k3d::double_t>(elapsed.ticks_per_second());
}
};
/////////////////////////////////////////////////////////////////////////////
// real_time_source_factory
k3d::iplugin_factory& real_time_source_factory()
{
return real_time_source::get_factory();
}
} // namespace time
} // namespace module
|