X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fvaluenode.h;h=4d2c7788a631662158ca4923fd624b93f3496fb6;hb=6c27d1b6cf4694a873542cb264c650893f2c6e0e;hp=cb5324cc7e74b0eff1ce59ea94f73fe9f003205c;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/valuenode.h b/synfig-core/trunk/src/synfig/valuenode.h index cb5324c..4d2c778 100644 --- a/synfig-core/trunk/src/synfig/valuenode.h +++ b/synfig-core/trunk/src/synfig/valuenode.h @@ -1,8 +1,8 @@ /* === S Y N F I G ========================================================= */ /*! \file valuenode.h -** \brief Template Header +** \brief Header file for implementation of the "Placeholder" valuenode conversion. ** -** $Id: valuenode.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -59,6 +59,28 @@ # define DCAST_HACK_ENABLE() #endif +#define CHECK_TYPE_AND_SET_VALUE(variable, type) \ + /* I don't think this ever happens - maybe remove this code? */ \ + if (get_type() == ValueBase::TYPE_NIL) { \ + warning("%s:%d get_type() IS nil sometimes!", \ + __FILE__, __LINE__); \ + return false; \ + } \ + if (get_type() != ValueBase::TYPE_NIL && \ + !(ValueBase::same_type_as(value->get_type(), type)) && \ + !PlaceholderValueNode::Handle::cast_dynamic(value)) { \ + error(_("%s:%d wrong type for %s: need %s but got %s"), \ + __FILE__, __LINE__, \ + link_local_name(i).c_str(), \ + ValueBase::type_local_name(type).c_str(), \ + ValueBase::type_local_name(value->get_type()).c_str()); \ + return false; \ + } \ + variable = value; \ + signal_child_changed()(i); \ + signal_value_changed()(); \ + return true + /* === T Y P E D E F S ===================================================== */ /* === C L A S S E S & S T R U C T S ======================================= */ @@ -68,7 +90,7 @@ namespace synfig { class Canvas; class LinkableValueNode; class Layer; - + /*! \class ValueNode ** \todo writeme */ @@ -76,7 +98,7 @@ class ValueNode : public synfig::Node { friend class Layer; friend class LinkableValueNode; - + /* -- ** -- T Y P E S ----------------------------------------------------------- */ @@ -105,7 +127,7 @@ private: String name; etl::loose_handle canvas_; etl::loose_handle root_canvas_; - + /* -- ** -- S I G N A L S ------------------------------------------------------- */ @@ -113,22 +135,22 @@ private: private: //! ValueBase Changed - sigc::signal signal_value_changed_; + sigc::signal signal_value_changed_; //! Children Reordered - sigc::signal signal_children_reordered_; + sigc::signal signal_children_reordered_; //! Child Changed - sigc::signal signal_child_changed_; + sigc::signal signal_child_changed_; //! Child Removed - sigc::signal signal_child_removed_; + sigc::signal signal_child_removed_; //! Child Inserted - sigc::signal signal_child_inserted_; + sigc::signal signal_child_inserted_; //! ID Changed - sigc::signal signal_id_changed_; + sigc::signal signal_id_changed_; /* -- ** -- S I G N A L I N T E R F A C E ------------------------------------- @@ -159,7 +181,7 @@ public: */ protected: - + ValueNode(ValueBase::Type type=ValueBase::TYPE_NIL); public: @@ -173,7 +195,7 @@ public: public: //! Returns the value of the ValueNode at time \a t - virtual ValueBase operator()(Time t)const + virtual ValueBase operator()(Time /*t*/)const { return ValueBase(); } //! \internal Sets the id of the ValueNode @@ -196,7 +218,7 @@ public: //! \writeme bool is_exported()const { return !get_id().empty(); } - + //! Returns the type of the ValueNode ValueBase::Type get_type()const { return type; } @@ -205,24 +227,24 @@ public: //! Returns a handle to the parent canvas, if it has one. etl::loose_handle get_root_canvas()const { return root_canvas_; } - + //! \writeme void set_parent_canvas(etl::loose_handle x); //! \writeme void set_root_canvas(etl::loose_handle x); - + //! \writeme String get_relative_id(etl::loose_handle x)const; - + int replace(etl::handle x); - + protected: //! Sets the type of the ValueNode void set_type(ValueBase::Type t) { type=t; } virtual void on_changed(); - + public: DCAST_HACK_BASECLASS(); DCAST_HACK_ID(0); @@ -244,7 +266,7 @@ private: PlaceholderValueNode(ValueBase::Type type=ValueBase::TYPE_NIL); public: - + virtual ValueBase operator()(Time t)const; virtual String get_name()const; @@ -256,7 +278,7 @@ public: static Handle create(ValueBase::Type type=ValueBase::TYPE_NIL); protected: - virtual void get_times_vfunc(Node::time_set &set) const {} + virtual void get_times_vfunc(Node::time_set &/*set*/) const {} }; // END of class PlaceholderValueNode @@ -286,9 +308,9 @@ public: { String local_name; Factory factory; - CheckType check_type; + CheckType check_type; }; - + typedef std::map Book; static Book& book(); @@ -307,7 +329,7 @@ protected: void unlink_all(); public: - + virtual int link_count()const=0; virtual String link_local_name(int i)const=0; @@ -315,12 +337,12 @@ public: virtual String link_name(int i)const=0; virtual int get_link_index_from_name(const String &name)const=0; - + virtual ValueNode* clone(const GUID& deriv_guid=GUID())const; bool set_link(int i,ValueNode::Handle x); - bool set_link(const String &name,ValueNode::Handle x) { return set_link(get_link_index_from_name(name),x); } - + bool set_link(const String &name,ValueNode::Handle x) { return set_link(get_link_index_from_name(name),x); } + ValueNode::LooseHandle get_link(int i)const; ValueNode::LooseHandle get_link(const String &name)const { return get_link(get_link_index_from_name(name)); } @@ -332,7 +354,7 @@ protected: // Wrapper for new operator, used by clone() virtual LinkableValueNode* create_new()const=0; - + virtual void get_times_vfunc(Node::time_set &set) const; }; // END of class LinkableValueNode @@ -373,7 +395,7 @@ public: //! Removes any value_nodes with reference counts of 1. void audit(); - + //! Placeholder Count int placeholder_count()const { return placeholder_count_; } };