Supporters update.
[dcpomatic.git] / src / lib / dcp_content_type.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/content_type.cc
22  *  @brief A description of the type of content for a DCP (e.g. feature, trailer etc.)
23  */
24
25 #include "dcp_content_type.h"
26 #include "dcpomatic_assert.h"
27
28 #include "i18n.h"
29
30
31 using boost::optional;
32 using namespace std;
33
34
35 vector<DCPContentType> DCPContentType::_dcp_content_types;
36
37
38 DCPContentType::DCPContentType (string p, dcp::ContentKind k, string d)
39         : _pretty_name (p)
40         , _libdcp_kind (k)
41         , _isdcf_name (d)
42 {
43
44 }
45
46
47 void
48 DCPContentType::setup_dcp_content_types ()
49 {
50         _dcp_content_types = {
51                 DCPContentType(_("Feature"), dcp::ContentKind::FEATURE, N_("FTR")),
52                 DCPContentType(_("Short"), dcp::ContentKind::SHORT, N_("SHR")),
53                 DCPContentType(_("Trailer"), dcp::ContentKind::TRAILER, N_("TLR")),
54                 DCPContentType(_("Test"), dcp::ContentKind::TEST, N_("TST")),
55                 DCPContentType(_("Transitional"), dcp::ContentKind::TRANSITIONAL, N_("XSN")),
56                 DCPContentType(_("Rating"), dcp::ContentKind::RATING, N_("RTG")),
57                 DCPContentType(_("Teaser"), dcp::ContentKind::TEASER, N_("TSR")),
58                 DCPContentType(_("Policy"), dcp::ContentKind::POLICY, N_("POL")),
59                 DCPContentType(_("Public Service Announcement"), dcp::ContentKind::PUBLIC_SERVICE_ANNOUNCEMENT, N_("PSA")),
60                 DCPContentType(_("Advertisement"), dcp::ContentKind::ADVERTISEMENT, N_("ADV")),
61                 DCPContentType(_("Clip"), dcp::ContentKind::CLIP, N_("CLP")),
62                 DCPContentType(_("Promo"), dcp::ContentKind::PROMO, N_("PRO")),
63                 DCPContentType(_("Stereo card"), dcp::ContentKind::STEREOCARD, N_("STR")),
64                 DCPContentType(_("Episode"), dcp::ContentKind::EPISODE, N_("EPS")),
65                 DCPContentType(_("Highlights"), dcp::ContentKind::HIGHLIGHTS, N_("HLT")),
66                 DCPContentType(_("Event"), dcp::ContentKind::EVENT, N_("EVT")),
67         };
68 }
69
70
71 DCPContentType const *
72 DCPContentType::from_isdcf_name (string n)
73 {
74         for (auto& i: _dcp_content_types) {
75                 if (i.isdcf_name() == n) {
76                         return &i;
77                 }
78         }
79
80         return nullptr;
81 }
82
83
84 DCPContentType const *
85 DCPContentType::from_libdcp_kind (dcp::ContentKind kind)
86 {
87         for (auto& i: _dcp_content_types) {
88                 if (i.libdcp_kind() == kind) {
89                         return &i;
90                 }
91         }
92
93         DCPOMATIC_ASSERT (false);
94         return nullptr;
95 }
96
97
98 DCPContentType const *
99 DCPContentType::from_index (int n)
100 {
101         DCPOMATIC_ASSERT (n >= 0 && n < int(_dcp_content_types.size()));
102         return &_dcp_content_types[n];
103 }
104
105
106 optional<int>
107 DCPContentType::as_index (DCPContentType const * c)
108 {
109         vector<DCPContentType>::size_type i = 0;
110         while (i < _dcp_content_types.size() && &_dcp_content_types[i] != c) {
111                 ++i;
112         }
113
114         if (i == _dcp_content_types.size()) {
115                 return {};
116         }
117
118         return i;
119 }
120
121
122 vector<DCPContentType const *>
123 DCPContentType::all ()
124 {
125         vector<DCPContentType const *> raw;
126         for (auto& type: _dcp_content_types) {
127                 raw.push_back (&type);
128         }
129         return raw;
130 }