synfig-core  1.0.3
valuenode_boneinfluence.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_VALUENODE_BONEINFLUENCE_H
26 #define __SYNFIG_VALUENODE_BONEINFLUENCE_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <synfig/valuenode.h>
31 
32 /* === M A C R O S ========================================================= */
33 
34 /* === C L A S S E S & S T R U C T S ======================================= */
35 
36 namespace synfig {
37 
39 {
40  ValueNode::RHandle bone_weight_list_;
41  ValueNode::RHandle link_;
42 
43  mutable Matrix transform_, inverse_transform_;
44  mutable bool checked_inverse_, has_inverse_;
45 
46 public:
47  typedef etl::handle<ValueNode_BoneInfluence> Handle;
48  typedef etl::handle<const ValueNode_BoneInfluence> ConstHandle;
49 
51 
52  ValueNode_BoneInfluence(const ValueNode::Handle &x, etl::loose_handle<Canvas> canvas);
53 
54 // static Handle create(Type &x);
55 // static Handle create(const ValueNode::Handle &x);
56 
57 
58  virtual ValueNode::LooseHandle get_link_vfunc(int i)const;
59 
60  virtual ValueBase operator()(Time t)const;
61 
62  virtual ~ValueNode_BoneInfluence();
63 
64  virtual String get_name()const;
65 
66  virtual String get_local_name()const;
67 
68 protected:
69  virtual bool set_link_vfunc(int i,ValueNode::Handle x);
70 
72 
73 public:
75  static bool check_type(Type &type);
76  virtual Vocab get_children_vocab_vfunc()const;
77  static ValueNode_BoneInfluence* create(const ValueBase &x, etl::loose_handle<Canvas>);
78 
80  Matrix& get_transform(bool rebuild=false, Time t=0)const;
81  void set_transform(Matrix transform)const { transform_ = transform; checked_inverse_ = false; }
82  bool has_inverse_transform()const;
84 
85 }; // END of class ValueNode_BoneInfluence
86 
87 }; // END of namespace synfig
88 
89 /* === E N D =============================================================== */
90 
91 #endif