X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fformat.h;h=48a000480fcbacec36189b062431780817f6c419;hb=d4024b9f794823a2808724ae9fae74195f1a0824;hp=4b727b2e3c7a0ca7b57b3f82dbd8aada9dcff0ef;hpb=bb767c7e338414beee132af3e96829c1448e214b;p=dcpomatic.git diff --git a/src/lib/format.h b/src/lib/format.h index 4b727b2e3..48a000480 100644 --- a/src/lib/format.h +++ b/src/lib/format.h @@ -18,7 +18,7 @@ */ /** @file src/format.h - * @brief Class to describe a format (aspect ratio) that a Film should + * @brief Classes to describe a format (aspect ratio) that a Film should * be shown in. */ @@ -26,32 +26,33 @@ #include #include "util.h" -/** @class Format - * @brief Class to describe a format (aspect ratio) that a Film should - * be shown in. - */ +class Film; + class Format { public: - Format (int, Size, std::string, std::string); + Format (libdcp::Size dcp, std::string id, std::string n, std::string d) + : _dcp_size (dcp) + , _id (id) + , _nickname (n) + , _dci_name (d) + {} /** @return the aspect ratio multiplied by 100 * (e.g. 239 for Cinemascope 2.39:1) */ - int ratio_as_integer () const { - return _ratio; - } + virtual int ratio_as_integer (boost::shared_ptr f) const = 0; /** @return the ratio as a floating point number */ - float ratio_as_float () const { - return _ratio / 100.0; - } + virtual float ratio_as_float (boost::shared_ptr f) const = 0; + + int dcp_padding (boost::shared_ptr f) const; /** @return size in pixels of the images that we should * put in a DCP for this ratio. This size will not correspond * to the ratio when we are doing things like 16:9 in a Flat frame. */ - Size dcp_size () const { + libdcp::Size dcp_size () const { return _dcp_size; } @@ -60,42 +61,74 @@ public: } /** @return Full name to present to the user */ - std::string name () const; + virtual std::string name () const = 0; /** @return Nickname (e.g. Flat, Scope) */ std::string nickname () const { return _nickname; } - std::string as_metadata () const; + std::string dci_name () const { + return _dci_name; + } - int dcp_padding () const; + std::string as_metadata () const; - static Format const * from_ratio (int); static Format const * from_nickname (std::string n); static Format const * from_metadata (std::string m); - static Format const * from_index (int i); static Format const * from_id (std::string i); - static int as_index (Format const * f); static std::vector all (); static void setup_formats (); - -private: - /** Ratio expressed as the actual ratio multiplied by 100 */ - int _ratio; +protected: /** Size in pixels of the images that we should * put in a DCP for this ratio. This size will not correspond * to the ratio when we are doing things like 16:9 in a Flat frame. */ - Size _dcp_size; + libdcp::Size _dcp_size; /** id for use in metadata */ std::string _id; /** nickname (e.g. Flat, Scope) */ std::string _nickname; + std::string _dci_name; +private: /** all available formats */ static std::vector _formats; }; +/** @class FixedFormat + * @brief Class to describe a format whose ratio is fixed regardless + * of source size. + */ +class FixedFormat : public Format +{ +public: + FixedFormat (int, libdcp::Size, std::string, std::string, std::string); + + int ratio_as_integer (boost::shared_ptr) const { + return _ratio; + } + + float ratio_as_float (boost::shared_ptr) const { + return _ratio / 100.0; + } + + std::string name () const; +private: + + /** Ratio expressed as the actual ratio multiplied by 100 */ + int _ratio; +}; + +class VariableFormat : public Format +{ +public: + VariableFormat (libdcp::Size, std::string, std::string, std::string); + + int ratio_as_integer (boost::shared_ptr f) const; + float ratio_as_float (boost::shared_ptr f) const; + + std::string name () const; +};