More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / dcp_content_type.cc
1 /*
2     Copyright (C) 2012 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 #include <cassert>
28
29 #include "i18n.h"
30
31 using namespace std;
32
33 vector<DCPContentType const *> DCPContentType::_dcp_content_types;
34
35 DCPContentType::DCPContentType (string p, dcp::ContentKind k, string d)
36         : _pretty_name (p)
37         , _libdcp_kind (k)
38         , _isdcf_name (d)
39 {
40
41 }
42
43 void
44 DCPContentType::setup_dcp_content_types ()
45 {
46         _dcp_content_types.push_back (new DCPContentType (_("Feature"), dcp::FEATURE, N_("FTR")));
47         _dcp_content_types.push_back (new DCPContentType (_("Short"), dcp::SHORT, N_("SHR")));
48         _dcp_content_types.push_back (new DCPContentType (_("Trailer"), dcp::TRAILER, N_("TLR")));
49         _dcp_content_types.push_back (new DCPContentType (_("Test"), dcp::TEST, N_("TST")));
50         _dcp_content_types.push_back (new DCPContentType (_("Transitional"), dcp::TRANSITIONAL, N_("XSN")));
51         _dcp_content_types.push_back (new DCPContentType (_("Rating"), dcp::RATING, N_("RTG")));
52         _dcp_content_types.push_back (new DCPContentType (_("Teaser"), dcp::TEASER, N_("TSR")));
53         _dcp_content_types.push_back (new DCPContentType (_("Policy"), dcp::POLICY, N_("POL")));
54         _dcp_content_types.push_back (new DCPContentType (_("Public Service Announcement"), dcp::PUBLIC_SERVICE_ANNOUNCEMENT, N_("PSA")));
55         _dcp_content_types.push_back (new DCPContentType (_("Advertisement"), dcp::ADVERTISEMENT, N_("ADV")));
56 }
57
58 DCPContentType const *
59 DCPContentType::from_isdcf_name (string n)
60 {
61         for (vector<DCPContentType const *>::const_iterator i = _dcp_content_types.begin(); i != _dcp_content_types.end(); ++i) {
62                 if ((*i)->isdcf_name() == n) {
63                         return *i;
64                 }
65         }
66
67         return 0;
68 }
69
70 DCPContentType const *
71 DCPContentType::from_index (int n)
72 {
73         DCPOMATIC_ASSERT (n >= 0 && n < int (_dcp_content_types.size ()));
74         return _dcp_content_types[n];
75 }
76
77 int
78 DCPContentType::as_index (DCPContentType const * c)
79 {
80         vector<DCPContentType*>::size_type i = 0;
81         while (i < _dcp_content_types.size() && _dcp_content_types[i] != c) {
82                 ++i;
83         }
84
85         if (i == _dcp_content_types.size ()) {
86                 return -1;
87         }
88
89         return i;
90 }
91
92 vector<DCPContentType const *>
93 DCPContentType::all ()
94 {
95         return _dcp_content_types;
96 }