Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_timeloop.cpp
index 3ad2b8f..60ba1a0 100644 (file)
@@ -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
@@ -60,8 +60,8 @@ ValueNode_TimeLoop::ValueNode_TimeLoop(const ValueNode::Handle &x):
 {
        set_link("link", x);
        set_link("link_time",  ValueNode_Const::create(Time(0)));
-       set_link("local_time", ValueNode_Const::create(Time(1)));
-       set_link("duration",   ValueNode_Const::create(Time(0)));
+       set_link("local_time", ValueNode_Const::create(Time(0)));
+       set_link("duration",   ValueNode_Const::create(Time(1)));
 }
 
 ValueNode_TimeLoop*
@@ -82,27 +82,25 @@ ValueNode_TimeLoop::~ValueNode_TimeLoop()
 }
 
 bool
-ValueNode_TimeLoop::set_link_vfunc(int i,ValueNode::Handle x)
+ValueNode_TimeLoop::set_link_vfunc(int i,ValueNode::Handle value)
 {
-       assert(i >= 0 && i < link_count());
+       assert(i>=0 && i<link_count());
+
        switch(i)
        {
-       case 0:  link_       = x; break;
-       case 1:  link_time_  = x; break;
-       case 2:  local_time_ = x; break;
-       case 3:  duration_   = x; break;
-       default: return false;
+       case 0: CHECK_TYPE_AND_SET_VALUE(link_,       get_type());
+       case 1: CHECK_TYPE_AND_SET_VALUE(link_time_,  ValueBase::TYPE_TIME);
+       case 2: CHECK_TYPE_AND_SET_VALUE(local_time_, ValueBase::TYPE_TIME);
+       case 3: CHECK_TYPE_AND_SET_VALUE(duration_,   ValueBase::TYPE_TIME);
        }
-
-       signal_child_changed()(i);
-       signal_value_changed()();
-       return true;
+       return false;
 }
 
 ValueNode::LooseHandle
 ValueNode_TimeLoop::get_link_vfunc(int i)const
 {
-       assert(i >= 0 && i < link_count());
+       assert(i>=0 && i<link_count());
+
        if(i==0) return link_;
        if(i==1) return link_time_;
        if(i==2) return local_time_;
@@ -120,7 +118,8 @@ ValueNode_TimeLoop::link_count()const
 String
 ValueNode_TimeLoop::link_local_name(int i)const
 {
-       assert(i >= 0 && i < link_count());
+       assert(i>=0 && i<link_count());
+
        if(i==0) return _("Link");
        if(i==1) return _("Link Time");
        if(i==2) return _("Local Time");
@@ -131,7 +130,8 @@ ValueNode_TimeLoop::link_local_name(int i)const
 String
 ValueNode_TimeLoop::link_name(int i)const
 {
-       assert(i >= 0 && i < link_count());
+       assert(i>=0 && i<link_count());
+
        if(i==0) return "link";
        if(i==1) return "link_time";
        if(i==2) return "local_time";
@@ -153,6 +153,9 @@ ValueNode_TimeLoop::get_link_index_from_name(const String &name)const
 ValueBase
 ValueNode_TimeLoop::operator()(Time t)const
 {
+       if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
+               printf("%s:%d operator()\n", __FILE__, __LINE__);
+
        Time link_time  = (*link_time_) (t).get(Time());
        Time local_time = (*local_time_)(t).get(Time());
        Time duration   = (*duration_)  (t).get(Time());