synfig-core  1.0.3
halftone3.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
23 /* ========================================================================= */
24 
25 /* === S T A R T =========================================================== */
26 
27 #ifndef __SYNFIG_HALFTONE3_H
28 #define __SYNFIG_HALFTONE3_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #include <synfig/vector.h>
33 #include <synfig/valuenode.h>
35 #include <synfig/time.h>
36 #include <synfig/angle.h>
37 #include "halftone.h"
38 
39 /* === M A C R O S ========================================================= */
40 #define HALFTONE3_IMPORT_VALUE(x) \
41  if (#x=="tone[i].param_"+param && x.get_type()==value.get_type()) \
42  { \
43  x=value; \
44  return true; \
45  } \
46 
47 /* === T Y P E D E F S ===================================================== */
48 
49 /* === C L A S S E S & S T R U C T S ======================================= */
50 using namespace synfig;
51 using namespace std;
52 using namespace etl;
53 
54 class Halftone3 : public Layer_Composite
55 {
57 
58 private:
60  ValueBase param_size;
62  ValueBase param_type;
64  Halftone tone[3];
66  ValueBase param_color[3];
68  ValueBase param_subtractive;
69 
70  float inverse_matrix[3][3];
71 
72  Color color_func(const Point &x, float supersample,const Color &under_color)const;
73 
74  float calc_supersample(const Point &x, float pw,float ph)const;
75 
76  //float halftone_func(Point x)const;
77 
78  void sync();
79 
80 public:
81  Halftone3();
82 
83  virtual bool set_param(const String &param, const ValueBase &value);
84  virtual ValueBase get_param(const String &param)const;
85  virtual Color get_color(Context context, const Point &pos)const;
86  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
87  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
88  Layer::Handle hit_check(Context context, const Point &point)const;
89  virtual Vocab get_param_vocab()const;
90  virtual bool reads_context()const { return true; }
91 }; // END of class Halftone3
92 
93 /* === E N D =============================================================== */
94 
95 #endif