Changed target book map to have a struct (BookEntry).
[synfig.git] / synfig-core / src / synfig / target.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file target.cpp
3 **      \brief Target Class Implementation
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 /* === H E A D E R S ======================================================= */
24
25 #define SYNFIG_NO_ANGLE
26
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30
31 #include "target.h"
32 #include "string.h"
33 #include "canvas.h"
34 #include "target_null.h"
35 #include "target_null_tile.h"
36
37 using namespace synfig;
38 using namespace etl;
39 using namespace std;
40
41 synfig::Target::Book* synfig::Target::book_;
42 synfig::Target::ExtBook* synfig::Target::ext_book_;
43
44 static synfig::Gamma* default_gamma_;
45
46 /* === P R O C E D U R E S ================================================= */
47
48 bool
49 Target::subsys_init()
50 {
51         book_=new synfig::Target::Book();
52         ext_book_=new synfig::Target::ExtBook();
53
54         default_gamma_=new synfig::Gamma(1.0/2.2);
55         //default_gamma_->set_black_level(0.05); // Default to 5% black level.
56
57         // At least one target must be available.
58         book()["null"].factory =
59                 reinterpret_cast<synfig::Target::Factory>(&Target_Null::create);
60   book()["null"].filename = "null";
61         ext_book()["null"]="null";
62
63         book()["null-tile"].factory =
64     reinterpret_cast<synfig::Target::Factory>(&Target_Null_Tile::create);
65   book()["null-tile"].filename = "null-tile";
66         ext_book()["null-tile"]="null-tile";
67
68         return true;
69 }
70
71 bool
72 Target::subsys_stop()
73 {
74         delete book_;
75         delete ext_book_;
76         delete default_gamma_;
77         return true;
78 }
79
80 Target::Book&
81 Target::book()
82 {
83         return *book_;
84 }
85
86 Target::ExtBook&
87 Target::ext_book()
88 {
89         return *ext_book_;
90 }
91
92
93 /* === M E T H O D S ======================================================= */
94
95 Target::Target():
96         quality_(4),
97         gamma_(*default_gamma_),
98         remove_alpha(false),
99         avoid_time_sync_(false)
100 {
101 }
102
103 void
104 synfig::Target::set_canvas(etl::handle<Canvas> c)
105 {
106         canvas=c;
107         RendDesc desc=canvas->rend_desc();
108         set_rend_desc(&desc);
109 }
110
111
112 Target::Handle
113 Target::create(const String &name, const String &filename)
114 {
115         if(!book().count(name))
116                 return handle<Target>();
117
118         return Target::Handle(book()[name].factory(filename.c_str()));
119 }