X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Ftimeloop.cpp;h=59080011dd55df8d421382d59583cb3c98dda03f;hb=756c0d29ac1742f231e6615f9a577e574e35a4af;hp=d7a6c571b6a6e43d6b47d5e8b1a8191371486069;hpb=5588012706a5df5090fbb8550f6f38968072c2f0;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/timeloop.cpp b/synfig-core/trunk/src/modules/lyr_std/timeloop.cpp index d7a6c57..5908001 100644 --- a/synfig-core/trunk/src/modules/lyr_std/timeloop.cpp +++ b/synfig-core/trunk/src/modules/lyr_std/timeloop.cpp @@ -6,7 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -66,6 +66,7 @@ SYNFIG_LAYER_SET_CVS_ID(Layer_TimeLoop,"$Id$"); Layer_TimeLoop::Layer_TimeLoop() { old_version=false; + only_for_positive_duration=false; link_time=0; local_time=0; duration=1; @@ -88,6 +89,7 @@ Layer_TimeLoop::set_param(const String & param, const ValueBase &value) IMPORT(local_time); IMPORT(link_time); IMPORT(duration); + IMPORT(only_for_positive_duration); } return Layer::set_param(param,value); @@ -99,6 +101,7 @@ Layer_TimeLoop::get_param(const String & param)const EXPORT(link_time); EXPORT(local_time); EXPORT(duration); + EXPORT(only_for_positive_duration); EXPORT_NAME(); EXPORT_VERSION(); @@ -122,6 +125,10 @@ Layer_TimeLoop::get_param_vocab()const .set_local_name(_("Duration")) ); + ret.push_back(ParamDesc("only_for_positive_duration") + .set_local_name(_("Only For Positive Duration")) + ); + return ret; } @@ -155,6 +162,8 @@ Layer_TimeLoop::reset_version() // convert the static parameters local_time = start_time; duration = end_time - start_time; + only_for_positive_duration = true; + //! \todo layer version 0.1 acted differently before start_time was reached - possibly due to a bug link_time = 0; @@ -190,13 +199,14 @@ Layer_TimeLoop::reset_version() connect_dynamic_param("local_time", start_time_value_node); connect_dynamic_param("duration", duration_value_node); - connect_dynamic_param("link_time", ValueNode_Const::create(Time(0))); } void Layer_TimeLoop::set_time(Context context, Time t)const { - if (duration == 0) + if (only_for_positive_duration && duration <= 0) + ; // don't change the time + else if (duration == 0) t = link_time; else if (duration > 0) {