namespace libdcp -> dcp.
[libdcp.git] / src / types.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/types.h
21  *  @brief Miscellaneous types.
22  */
23
24 #ifndef LIBDCP_TYPES_H
25 #define LIBDCP_TYPES_H
26
27 #include <string>
28 #include <boost/shared_ptr.hpp>
29
30 namespace dcp
31 {
32
33 namespace parse {
34         class AssetMap;
35 }
36
37 /** Identifier for a sound channel */
38 enum Channel {
39         LEFT = 0,      ///< left
40         RIGHT = 1,     ///< right
41         CENTRE = 2,    ///< centre
42         LFE = 3,       ///< low-frequency effects (sub)
43         LS = 4,        ///< left surround
44         RS = 5,        ///< right surround
45         CHANNEL_7 = 6, ///< channel 7; not sure what this should be called
46         CHANNEL_8 = 7  ///< channel 8; not sure what this should be called
47 };
48
49 enum ContentKind
50 {
51         FEATURE,
52         SHORT,
53         TRAILER,
54         TEST,
55         TRANSITIONAL,
56         RATING,
57         TEASER,
58         POLICY,
59         PUBLIC_SERVICE_ANNOUNCEMENT,
60         ADVERTISEMENT
61 };
62
63 enum Effect
64 {
65         NONE,
66         BORDER,
67         SHADOW
68 };
69
70 extern std::string effect_to_string (Effect e);
71 extern Effect string_to_effect (std::string s);
72
73 enum VAlign
74 {
75         TOP,
76         CENTER,
77         BOTTOM
78 };
79
80 extern std::string valign_to_string (VAlign a);
81 extern VAlign string_to_valign (std::string s);
82
83 enum Eye
84 {
85         EYE_LEFT,
86         EYE_RIGHT
87 };
88         
89 class Fraction
90 {
91 public:
92         Fraction () : numerator (0), denominator (0) {}
93         Fraction (std::string s);
94         Fraction (int n, int d) : numerator (n), denominator (d) {}
95
96         int numerator;
97         int denominator;
98 };
99
100 extern bool operator== (Fraction const & a, Fraction const & b);
101 extern bool operator!= (Fraction const & a, Fraction const & b);
102         
103 struct EqualityOptions {
104         EqualityOptions () 
105                 : max_mean_pixel_error (0)
106                 , max_std_dev_pixel_error (0)
107                 , max_audio_sample_error (0)
108                 , cpl_names_can_differ (false)
109                 , mxf_names_can_differ (false)
110         {}
111
112         double max_mean_pixel_error;
113         double max_std_dev_pixel_error;
114         int max_audio_sample_error;
115         bool cpl_names_can_differ;
116         bool mxf_names_can_differ;
117 };
118
119 /* Win32 defines this */        
120 #undef ERROR
121
122 enum NoteType {
123         PROGRESS,
124         ERROR,
125         NOTE
126 };
127
128 /** @class Color
129  *  @brief An RGB color (aka colour).
130  */
131 class Color
132 {
133 public:
134         Color ();
135         Color (int r_, int g_, int b_);
136         Color (std::string argb_hex);
137
138         int r; ///< red component, from 0 to 255
139         int g; ///< green component, from 0 to 255
140         int b; ///< blue component, from 0 to 255
141
142         std::string to_argb_string () const;
143 };
144
145 extern bool operator== (Color const & a, Color const & b);
146 extern bool operator!= (Color const & a, Color const & b);
147 extern std::ostream & operator<< (std::ostream & s, Color const & c);
148
149 typedef std::pair<std::string, boost::shared_ptr<const parse::AssetMap> > PathAssetMap;
150
151 }
152
153 #endif