LUMIERA.clone/src/lib/time/timecode.hpp

192 lines
4.4 KiB
C++
Raw Normal View History

/*
TIMECODE.hpp - grid aligned and fixed format time specifications
Copyright (C) Lumiera.org
2010, Hermann Vosseler <Ichthyostega@web.de>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef LIB_TIME_TIMECODE_H
#define LIB_TIME_TIMECODE_H
#include "lib/time/timevalue.hpp"
#include "lib/time/formats.hpp"
#include "lib/time/digxel.hpp"
#include "lib/symbol.hpp"
//#include <iostream>
#include <boost/operators.hpp>
#include <boost/lexical_cast.hpp> ///////////////TODO
#include <string>
namespace lib {
namespace time {
using std::string;
using lib::Literal;
using boost::lexical_cast; /////////TODO
/**
* Interface: fixed format timecode specification.
* @see time::Format
* @todo WIP-WIP-WIP
*/
class TCode
{
public:
virtual ~TCode();
operator string() const { return show(); }
string describe() const { return string(tcID()); }
Time getTime() const { return Time(value()); }
protected:
TCode (PQuant const& quant)
: quantiser_(quant)
{ }
virtual string show() const =0;
virtual Literal tcID() const =0;
virtual TimeValue value() const =0;
protected:
PQuant quantiser_;
};
class QuTime;
/**
* A frame counting timecode value.
* This is an hard-coded representation of
* TCode<format::Frames>, with additional convenience
* constructors and conversions, which basically make
* FrameNr values interchangeable with integral numbers.
*/
class FrameNr
: public TCode
, public CountVal
{
string show() const { return string(CountVal::show())+"fr"; }
Literal tcID() const { return "Frame-count"; }
TimeValue value() const { return Format::evaluate (*this, *quantiser_); }
public:
typedef format::Frames Format;
FrameNr (QuTime const& quantisedTime);
// CountVal implicitly convertible to long
};
/**
*
*/
class SmpteTC
: public TCode
, boost::unit_steppable<SmpteTC>
{
uint effectiveFramerate_;
virtual string show() const ;
virtual Literal tcID() const { return "SMPTE"; }
virtual TimeValue value() const { return Format::evaluate (*this, *quantiser_); }
public:
typedef format::Smpte Format;
SmpteTC (QuTime const& quantisedTime);
SmpteTC (SmpteTC const&);
SmpteTC& operator= (SmpteTC const&);
uint getFps() const;
void clear();
void rebuild();
HourDigit hours;
SexaDigit mins;
SexaDigit secs;
SexaDigit frames;
Signum sgn;
SmpteTC& operator++();
SmpteTC& operator--();
};
/**
*
*/
class HmsTC
: public TCode
{
TimeVar tpoint_;
virtual string show() const { return string(tpoint_); }
virtual Literal tcID() const { return "Timecode"; }
virtual TimeValue value() const { return tpoint_; }
public:
typedef format::Hms Format;
HmsTC (QuTime const& quantisedTime);
double getMillis () const;
int getSecs () const;
int getMins () const;
int getHours () const;
};
/**
*
*/
class Secs
: public TCode
{
FSecs sec_;
virtual string show() const { return string(Time(sec_)); }
virtual Literal tcID() const { return "Seconds"; }
virtual TimeValue value() const { return Time(sec_); }
public:
typedef format::Seconds Format;
Secs (QuTime const& quantisedTime);
operator FSecs() const;
};
/** writes time value, formatted as HH:MM:SS:mmm */
}} // lib::time
#endif