43d946bfef007a547e8c356b37911dfbfff5a69a
[synfig.git] / synfig-core / src / synfig / layer_motionblur.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layer_motionblur.h
3 **      \brief Header file for implementation of the "Motion Blur" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2008 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __SYNFIG_LAYER_MOTIONBLUR_H__
27 #define __SYNFIG_LAYER_MOTIONBLUR_H__
28
29 /* === H E A D E R S ======================================================= */
30
31 #include "layer_composite.h"
32 #include "time.h"
33
34 /* === S T R U C T S & C L A S S E S ======================================= */
35
36 namespace synfig {
37
38 class Layer_MotionBlur : public synfig::Layer_Composite
39 {
40         SYNFIG_LAYER_MODULE_EXT
41
42         enum SubsamplingType
43         {
44             SUBSAMPLING_CONSTANT=0,             //!< weight each subsample equally
45             SUBSAMPLING_LINEAR=1,               //!< fade in subsamples linearly
46             SUBSAMPLING_HYPERBOLIC=2,   //!< fade in subsamples by a hyperbolic curve (default style of 0.62 and previous)
47
48             SUBSAMPLING_END=2                           //!< \internal
49         };
50
51 private:
52         Time aperture;
53         Real subsamples_factor;
54         SubsamplingType subsampling_type;
55         Real subsample_start;
56         Real subsample_end;
57         mutable Time time_cur;
58
59         bool aperture_static;
60         bool subsamples_factor_static;
61         bool subsampling_type_static;
62         bool subsample_start_static;
63         bool subsample_end_static;
64
65 public:
66         Layer_MotionBlur();
67         virtual bool set_param(const String & param, const synfig::ValueBase &value);
68         virtual ValueBase get_param(const String & param)const;
69         virtual bool set_param_static(const String &param, const bool x);
70         virtual bool get_param_static(const String &param) const;
71         virtual Color get_color(Context context, const Point &pos)const;
72         virtual void set_time(Context context, Time time)const;
73         virtual void set_time(Context context, Time time, const Point &point)const;
74         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
75         virtual Vocab get_param_vocab()const;
76         virtual bool reads_context()const { return true; }
77 }; // END of class Layer_MotionBlur
78
79 }; // END of namespace synfig
80
81 /* === E N D =============================================================== */
82
83 #endif