Format the #defines more clearly.
[synfig.git] / synfig-core / trunk / src / synfig / layer.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layer.h
3 **      \brief Layer Class Header
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_H
27 #define __SYNFIG_LAYER_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include "string_decl.h"
32 #include <map>
33 #include <ETL/handle>
34 #include "real.h"
35 #include "string.h"
36 #include <sigc++/signal.h>
37 #include <sigc++/connection.h>
38 #include "node.h"
39 #include "time.h"
40 #include "guid.h"
41
42 /* === M A C R O S ========================================================= */
43
44 //! \writeme
45 #define SYNFIG_LAYER_MODULE_EXT                                                                                                                 \
46         public:                                                                                                                                                         \
47         static const char name__[], version__[], cvs_id__[], local_name__[], category__[];      \
48         static Layer *create();
49
50 //! Sets the name of the layer
51 #define SYNFIG_LAYER_SET_NAME(class,x)                                                                                                  \
52         const char class::name__[]=x
53
54 //! Sets the local name of the layer
55 #define SYNFIG_LAYER_SET_LOCAL_NAME(class,x)                                                                                    \
56         const char class::local_name__[]=x;
57
58 //! Sets the category of the layer
59 #define SYNFIG_LAYER_SET_CATEGORY(class,x)                                                                                              \
60         const char class::category__[]=x
61
62 //! Sets the version string for the layer
63 #define SYNFIG_LAYER_SET_VERSION(class,x)                                                                                               \
64         const char class::version__[]=x
65
66 //! Sets the CVS ID string for the layer
67 #define SYNFIG_LAYER_SET_CVS_ID(class,x)                                                                                                \
68         const char class::cvs_id__[]=x
69
70 //! \writeme
71 #define SYNFIG_LAYER_INIT(class)                                                                                                                \
72         synfig::Layer* class::create()                                                                                                          \
73         {                                                                                                                                                                       \
74                 return new class();                                                                                                                             \
75         }
76
77 //! \writeme
78 #define IMPORT_PLUS(x,y)                                                                                                                                \
79         if (param==#x && value.same_type_as(x))                                                                                         \
80         {                                                                                                                                                                       \
81                 value.put(&x);                                                                                                                                  \
82                 {                                                                                                                                                               \
83                         y;                                                                                                                                                      \
84                 }                                                                                                                                                               \
85                 return true;                                                                                                                                    \
86         }
87
88 //! \writeme
89 #define IMPORT_AS(x,y)                                                                                                                                  \
90         if (param==y && value.same_type_as(x))                                                                                          \
91         {                                                                                                                                                                       \
92                 value.put(&x);                                                                                                                                  \
93                 return true;                                                                                                                                    \
94         }
95
96 //! \writeme
97 #define IMPORT(x)                                                                                                                                               \
98         IMPORT_AS(x,#x)
99
100 //! \writeme
101 #define EXPORT_AS(x,y)                                                                                                                                  \
102         if (param==y)                                                                                                                                           \
103                 return ValueBase(x);
104
105 //! \writeme
106 #define EXPORT(x)                                                                                                                                               \
107         EXPORT_AS(x,#x)
108
109 //! \writeme
110 #define EXPORT_NAME()                                                                                                                                   \
111         if (param=="Name" || param=="name" || param=="name__")                                                          \
112                 return name__;                                                                                                                                  \
113         else if (param=="local_name__")                                                                                                         \
114                 return dgettext("synfig",local_name__);
115
116 //! \writeme
117 #define EXPORT_VERSION()                                                                                                                                \
118         if (param=="Version" || param=="version" || param=="version__")                                         \
119                 return version__;
120
121 //! This is used as the category for layer book entries which represent aliases of layers.
122 //! It prevents these layers showing up in the menu.
123 #define CATEGORY_DO_NOT_USE "Do Not Use"
124
125 /* === T Y P E D E F S ===================================================== */
126
127 /* === C L A S S E S & S T R U C T S ======================================= */
128
129 namespace synfig {
130
131 class Canvas;
132 class Vector;
133 typedef Vector Point;
134 class Canvas;
135 class ParamDesc;
136 class ParamVocab;
137 class ValueNode;
138 class ValueBase;
139 class Time;
140 class Surface;
141 class RendDesc;
142 class ProgressCallback;
143 class Context;
144 class Color;
145 class Transform;
146 class Rect;
147 class GUID;
148
149
150 /*!     \class Layer
151 **      \todo writeme
152 **      \see Canvas
153 */
154 class Layer : public Node
155 {
156         friend class ValueNode;
157         friend class Context;
158
159         /*
160  --     ** -- T Y P E S -----------------------------------------------------------
161         */
162
163 public:
164
165         //! Type that represents a pointer to a layer's constructor
166         typedef Layer* (*Factory)();
167
168         struct BookEntry
169         {
170                 Factory factory;
171                 String name;
172                 String local_name;
173                 String category;
174                 String cvs_id;
175                 String version;
176                 BookEntry() { }
177                 BookEntry(Factory factory, const String& name,const String& local_name,const String& category,const String& cvs_id,const String& version):
178                         factory(factory),name(name),local_name(local_name),category(category),cvs_id(cvs_id),version(version) { }
179         };
180
181         typedef std::map<String,BookEntry> Book;
182
183         static void register_in_book(const BookEntry &);
184
185         static Book& book();
186
187         static bool subsys_init();
188
189         static bool subsys_stop();
190
191         typedef std::map<String,ValueBase> ParamList;
192
193         typedef etl::handle<Layer> Handle;
194
195         typedef etl::loose_handle<Layer> LooseHandle;
196
197         typedef etl::handle<const Layer> ConstHandle;
198
199         typedef std::map<String,etl::rhandle<ValueNode> > DynamicParamList;
200
201         //! A list type which describes all the parameters that a layer has.
202         /*! \see get_param_vocab() */
203         typedef ParamVocab Vocab;
204
205         /*
206  --     ** -- D A T A -------------------------------------------------------------
207         */
208
209 private:
210
211         /*! \c true if the layer is visible, \c false if it is to be skipped
212         **      \see set_active(), enable(), disable, active()
213         */
214         bool active_;
215
216         //! Handle to the canvas to which this layer belongs
217         etl::loose_handle<Canvas> canvas_;
218
219         DynamicParamList dynamic_param_list_;
220
221         //! A description of what this layer does
222         String description_;
223
224         //! \writeme
225         float z_depth_;
226
227         //! \writeme
228         mutable Time dirty_time_;
229
230         //! Contains the name of the group that this layer belongs to
231         String group_;
232
233         //! \writeme
234         sigc::connection parent_death_connect_;
235
236         /*
237  -- ** -- S I G N A L S -------------------------------------------------------
238         */
239
240 private:
241
242         //!     Status Changed
243         sigc::signal<void> signal_status_changed_;
244
245         //!     Parameter changed
246         sigc::signal<void,String> signal_param_changed_;
247
248         //!     Description Changed
249         sigc::signal<void> signal_description_changed_;
250
251         //!     Moved
252         sigc::signal<void, int, etl::handle<Canvas> > signal_moved_;
253
254         sigc::signal<void, String> signal_added_to_group_;
255
256         sigc::signal<void, String> signal_removed_from_group_;
257
258         /*
259  -- ** -- S I G N A L   I N T E R F A C E -------------------------------------
260         */
261
262 public:
263
264         //!     Status Changed
265         sigc::signal<void>& signal_status_changed() { return signal_status_changed_; }
266
267         //!     Parameter changed
268         sigc::signal<void,String>& signal_param_changed() { return signal_param_changed_; }
269
270         //!     Description Changed
271         sigc::signal<void>& signal_description_changed() { return signal_description_changed_;}
272
273         //!     Moved
274         sigc::signal<void, int, etl::handle<Canvas> >& signal_moved() { return signal_moved_; }
275
276         sigc::signal<void, String>& signal_added_to_group() { return signal_added_to_group_; }
277
278         sigc::signal<void, String>& signal_removed_from_group() { return signal_removed_from_group_; }
279
280         /*
281  --     ** -- C O N S T R U C T O R S ---------------------------------------------
282         */
283
284 protected:
285
286         Layer();
287
288 public:
289         virtual ~Layer();
290
291         /*
292  --     ** -- M E M B E R   F U N C T I O N S -------------------------------------
293         */
294
295 public:
296
297         virtual void on_canvas_set();
298
299         //! Adds this layer to the given layer group
300         void add_to_group(const String&);
301
302         //! Removes this layer from the given layer group
303         void remove_from_group(const String&);
304
305         //! Removes this layer from all layer groups
306         void remove_from_all_groups();
307
308         //! Gets the name of the group that this layer belongs to
309         String get_group()const;
310
311         //! writeme
312         //DynamicParamList &dynamic_param_list() { return dynamic_param_list_; }
313
314         //! \todo writeme
315         const DynamicParamList &dynamic_param_list()const { return dynamic_param_list_; }
316
317         bool connect_dynamic_param(const String& param, etl::loose_handle<ValueNode>);
318         bool disconnect_dynamic_param(const String& param);
319
320         //! Enables the layer for rendering (Making it \em active)
321         void enable() { set_active(true); }
322
323         //! Disables the layer for rendering. (Making it \em inactive)
324         /*! When a layer is disabled, it will be skipped when the
325         **      canvas is rendered. */
326         void disable() { set_active(false); }
327
328         //! Sets the 'active' flag for the Layer to the state described by \a x
329         /*! When a layer is disabled, it will be skipped when the
330         **      canvas is rendered. */
331         void set_active(bool x);
332
333         //! Returns that status of the 'active' flag
334         bool active()const { return active_; }
335
336         //! Returns the position of the layer in the canvas.
337         /*! Returns negative on error */
338         int get_depth()const;
339
340         //! \writeme
341         float get_z_depth()const { return z_depth_; }
342
343         //! \writeme
344         float get_z_depth(const synfig::Time& t)const;
345
346         //! \writeme
347         void set_z_depth(float x) { z_depth_=x; }
348
349         //! Sets the Canvas that this Layer is a part of
350         void set_canvas(etl::loose_handle<Canvas> canvas);
351
352         //! Returns a handle to the Canvas to which this Layer belongs
353         etl::loose_handle<Canvas> get_canvas()const;
354
355         //! \writeme
356         const String& get_description()const { return description_; }
357
358         //! \writeme
359         void set_description(const String& x);
360
361         //! Returns the layer's description if it's not empty, else its local name
362         const String get_non_empty_description()const { return get_description().empty() ? get_local_name() : get_description(); }
363
364         //! Returns the localised version of the given layer parameter
365         const String get_param_local_name(const String &param_name)const;
366
367         /*
368  --     ** -- V I R T U A L   F U N C T I O N S -----------------------------------
369         */
370
371 public:
372         virtual Rect get_bounding_rect()const;
373
374         virtual Rect get_full_bounding_rect(Context context)const;
375
376         //! Returns a string containing the name of the Layer
377         virtual String get_name()const;
378
379         //! Returns a string containing the localized name of the Layer
380         virtual String get_local_name()const;
381
382         //! Gets the parameter vocabulary
383         virtual Vocab get_param_vocab()const;
384
385         //! Gets the version string for this layer
386         virtual String get_version()const;
387
388         //! \writeme
389         virtual etl::handle<Transform> get_transform()const;
390
391         //! Sets the virtual version to use for backwards-compatibility
392         /*!
393         **      \see reset_version() */
394         virtual bool set_version(const String &ver);
395
396         //! Resets the virtual version
397         /*!
398         **      \see set_version() */
399         virtual void reset_version();
400
401         //!     Sets the parameter described by \a param to \a value.
402         /*!     \param param The name of the parameter to set
403         **      \param value What the parameter is to be set to.
404         **      \return \c true on success, \c false upon rejection or failure.
405         **              If it returns \c false, then the Layer is assumed to remain unchanged.
406         **      \sa get_param()
407         **      \todo \a param should be of the type <tt>const String \&param</tt>
408         */
409         virtual bool set_param(const String &param, const ValueBase &value);
410
411         //!     Sets a list of parameters
412         virtual bool set_param_list(const ParamList &);
413
414         //! Get the value of the specified parameter.
415         /*!     \return The requested parameter value, or (upon failure) a NIL ValueBase.
416         **      \sa set_param()
417         **      \todo \a param should be of the type <tt>const String \&</tt>
418         */
419         virtual ValueBase get_param(const String &param)const;
420
421         //! Get a list of all of the parameters and their values
422         virtual ParamList get_param_list()const;
423
424         //! Sets the \a time for the selected Layer and those under it
425         /*!     \param context          Context iterator referring to next Layer.
426         **      \param time                     writeme
427         **      \see Handle::set_time()
428         */
429         virtual void set_time(Context context, Time time)const;
430
431         //! Sets the \a time for the selected Layer and those under it for a specific \a point
432         /*!     \param context          Context iterator referring to next Layer.
433         **      \param time                     writeme
434         **      \param point            writeme
435         **      \see Handle::set_time()
436         **      \todo \a point should be of the type <tt>const Point \&</tt> */
437         virtual void set_time(Context context, Time time, const Point &point)const;
438
439         //! Gets the color of the Canvas at \a pos
440         /*!     \param context          Context iterator referring to next Layer.
441         **      \param pos              Point which indicates where the Color should come from
442         **      \see Handle::get_color()
443         */
444         virtual Color get_color(Context context, const Point &pos)const;
445
446         //! Renders the Canvas to the given Surface in an accelerated manner
447         /*!     \param context          Context iterator referring to next Layer.
448         **      \param surface          Pointer to Surface to render to.
449         **      \param quality          The requested quality-level to render at.
450         **      \param renddesc         The associated RendDesc.
451         **      \param cb                       Pointer to callback object. May be NULL if there is no callback.
452         **      \return \c true on success, \c false on failure
453         **      \see Handle::accelerated_render()
454         */
455         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
456
457         //! Checks to see if a part of the layer is directly under \a point
458         /*!     \param context          Context iterator referring to next Layer.
459         **      \param point            The point to check
460         **      \return         The handle of the layer under \a point. If there is not
461         **                              a layer under \a point, then returns an empty handle. */
462         virtual Handle hit_check(Context context, const Point &point)const;
463
464         //! Duplicates the Layer
465         virtual Handle clone(const GUID& deriv_guid=GUID())const;
466
467         //! Returns true if the layer needs to be able to examine its context.
468         /*! context to render itself, other than for simple blending.  For
469         **  example, the blur layer will return true - it can't do its job
470         **  if it can't see its context, and the circle layer will return
471         **  false - rendering a circle doesn't depend on the underlying
472         **  context until the final blend operation. */
473         virtual bool reads_context()const;
474
475 #ifdef THIS_CODE_IS_NOT_USED
476         //! Duplicates the Layer without duplicating the value nodes
477         virtual Layer *simple_clone()const;
478 #endif /* THIS_CODE_IS_NOT_USED */
479
480 protected:
481
482         //! This is called whenever a parameter is changed
483         virtual void on_changed();
484
485         //! Called to figure out the animation time information
486         virtual void get_times_vfunc(Node::time_set &set) const;
487
488         /*
489  --     ** -- S T A T I C  F U N C T I O N S --------------------------------------
490         */
491
492 public:
493
494         //! Creates a Layer of type \a type
495         /*!     If the Layer type is unknown, then a Mime layer is created in its place.
496         **      \param type     A string describing the name of the layer to construct.
497         **      \return Always returns a handle to a new Layer.
498         **      \see Mime
499         */
500         static Layer::LooseHandle create(const String &type);
501
502 }; // END of class Layer
503
504 }; // END of namespace synfig
505
506
507 /* === E N D =============================================================== */
508
509 #endif