Order, clean up and comment the code
[synfig.git] / synfig-core / src / synfig / importer.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file importer.h
3 **      \brief It is the base class for all the importers.
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_IMPORTER_H
26 #define __SYNFIG_IMPORTER_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <cstdio>
31 #include <map>
32 #include <ETL/handle>
33 #include "string.h"
34 #include "time.h"
35 #include "gamma.h"
36
37 /* === M A C R O S ========================================================= */
38
39 //! Defines various variables and the create method, common for all importers.
40 //! To be used in the private part of the importer class definition.
41 #define SYNFIG_IMPORTER_MODULE_EXT public: static const char name__[], version__[], ext__[],cvs_id__[]; static Importer *create(const char *filename);
42
43 //! Sets the name of the importer.
44 #define SYNFIG_IMPORTER_SET_NAME(class,x) const char class::name__[]=x
45
46 //! Sets the primary file extension of the importer.
47 #define SYNFIG_IMPORTER_SET_EXT(class,x) const char class::ext__[]=x
48
49 //! Sets the version of the importer.
50 #define SYNFIG_IMPORTER_SET_VERSION(class,x) const char class::version__[]=x
51
52 //! Sets the CVS ID of the importer.
53 #define SYNFIG_IMPORTER_SET_CVS_ID(class,x) const char class::cvs_id__[]=x
54
55 //! Defines de implementation of the create method for the importer.
56 #define SYNFIG_IMPORTER_INIT(class) synfig::Importer* class::create(const char *filename) { return new class(filename); }
57
58 /* === T Y P E D E F S ===================================================== */
59
60 /* === C L A S S E S & S T R U C T S ======================================= */
61
62 namespace synfig {
63
64 class Surface;
65 class ProgressCallback;
66
67 /*!     \class Importer
68 **      \brief Used for importing bitmaps of various formats, including animations.
69 *
70 *       It is the base class for all the importers. It defines the has a static Book
71 *       pointer class that is a map for the importers factory creators and the strings
72 *       of the importers class names. It allows to create the a pointer to a particular
73 *       importer just by using the string of the name of the importer.
74 *       Also it creates a virtual member get_frame that must be declared in the inherited
75 *       classes.
76 *
77 **      \
78 */
79 class Importer : public etl::shared_object
80 {
81 public:
82         typedef Importer* (*Factory)(const char *filename);
83         typedef std::map<String,Factory> Book;
84         static Book* book_;
85
86         static Book& book();
87
88         //! Initializes the Import module by creating a book of importers names
89         //! and its creators and the list of open importers
90         static bool subsys_init();
91         //! Stops the Import module by deleting the book and the list of open
92         //! importers
93         static bool subsys_stop();
94
95         typedef etl::handle<Importer> Handle;
96         typedef etl::loose_handle<Importer> LooseHandle;
97         typedef etl::handle<const Importer> ConstHandle;
98
99 private:
100         //! Gamm of the imoporter.
101         //! \todo Do not hardcode the gamma to 2.2
102         Gamma gamma_;
103
104 protected:
105         Importer();
106
107 public:
108
109         Gamma& gamma() { return gamma_; }
110         const Gamma& gamma()const { return gamma_; }
111
112         virtual ~Importer();
113
114         //! Gets a frame and puts it into \a surface
115         /*!     \param  surface Reference to surface to put frame into
116         **      \param  time    For animated importers, determines which frame to get.
117         **              For static importers, this parameter is unused.
118         **      \param  callback Pointer to callback class for progress, errors, etc.
119         **      \return \c true on success, \c false on error
120         **      \see ProgressCallback, Surface
121         */
122         virtual bool get_frame(Surface &surface,Time time, ProgressCallback *callback=NULL)=0;
123         virtual bool get_frame(Surface &surface,Time time,
124                                                    bool &trimmed __attribute__ ((unused)),
125                                                    unsigned int &width __attribute__ ((unused)),
126                                                    unsigned int &height __attribute__ ((unused)),
127                                                    unsigned int &top __attribute__ ((unused)),
128                                                    unsigned int &left __attribute__ ((unused)),
129                                                    ProgressCallback *callback=NULL)
130         {
131                 return get_frame(surface,time,callback);
132         }
133
134         //! Returns \c true if the importer pays attention to the \a time parameter of get_frame()
135         virtual bool is_animated() { return false; }
136
137         //! Attempts to open \a filename, and returns a handle to the associated Importer
138         static Handle open(const String &filename);
139 };
140
141 }; // END of namespace synfig
142
143 /* === E N D =============================================================== */
144
145 #endif