e02c36ebfec5d9682a7573a4a50d0fd0a9550f6a
[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 libdcp
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         VERTICAL_TOP,
76         VERTICAL_CENTER,
77         VERTICAL_BOTTOM
78 };
79
80 extern std::string valign_to_string (VAlign a);
81 extern VAlign string_to_valign (std::string s);
82
83 enum HAlign
84 {
85         HORIZONTAL_LEFT,
86         HORIZONTAL_CENTER,
87         HORIZONTAL_RIGHT
88 };
89
90 extern std::string halign_to_string (HAlign a);
91 extern HAlign string_to_halign (std::string s);
92
93 enum Eye
94 {
95         EYE_LEFT,
96         EYE_RIGHT
97 };
98         
99 class Fraction
100 {
101 public:
102         Fraction () : numerator (0), denominator (0) {}
103         Fraction (std::string s);
104         Fraction (int n, int d) : numerator (n), denominator (d) {}
105
106         int numerator;
107         int denominator;
108 };
109
110 extern bool operator== (Fraction const & a, Fraction const & b);
111 extern bool operator!= (Fraction const & a, Fraction const & b);
112         
113 struct EqualityOptions {
114         EqualityOptions () 
115                 : max_mean_pixel_error (0)
116                 , max_std_dev_pixel_error (0)
117                 , max_audio_sample_error (0)
118                 , cpl_names_can_differ (false)
119                 , mxf_names_can_differ (false)
120         {}
121
122         double max_mean_pixel_error;
123         double max_std_dev_pixel_error;
124         int max_audio_sample_error;
125         bool cpl_names_can_differ;
126         bool mxf_names_can_differ;
127 };
128
129 /* Win32 defines this */        
130 #undef ERROR
131
132 enum NoteType {
133         PROGRESS,
134         ERROR,
135         NOTE
136 };
137
138 /** @class Color
139  *  @brief An RGB color (aka colour).
140  */
141 class Color
142 {
143 public:
144         Color ();
145         Color (int r_, int g_, int b_);
146         Color (std::string argb_hex);
147
148         int r; ///< red component, from 0 to 255
149         int g; ///< green component, from 0 to 255
150         int b; ///< blue component, from 0 to 255
151
152         std::string to_argb_string () const;
153 };
154
155 extern bool operator== (Color const & a, Color const & b);
156 extern bool operator!= (Color const & a, Color const & b);
157 extern std::ostream & operator<< (std::ostream & s, Color const & c);
158
159 typedef std::pair<std::string, boost::shared_ptr<const parse::AssetMap> > PathAssetMap;
160
161 }
162
163 #endif