2007-10-13 05:13:28 +02:00
|
|
|
/*
|
2007-10-18 17:29:01 +02:00
|
|
|
LOCATINGPIN.hpp - Chaining and constraining the Placement of a Media Object
|
2007-10-13 05:13:28 +02:00
|
|
|
|
|
|
|
|
Copyright (C) CinelerraCV
|
|
|
|
|
2007, Christian Thaeter <ct@pipapo.org>
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2007-10-22 05:15:08 +02:00
|
|
|
/** @file locatingpin.hpp
|
|
|
|
|
** Implementing the Placement mechanics. The various specifications how
|
|
|
|
|
** some MObject is to be placed (logically) within the EDL are given by small
|
|
|
|
|
** LocatingPin objects forming a chain. For resolving the actual position, at the
|
|
|
|
|
** moment (10/07) we use a preliminary implementation to support the most common
|
|
|
|
|
** Placement types (fixed and relative). It is comprised of the nested LocatingSolution
|
|
|
|
|
** and the functions FixedLocation#resolve(LocatingSolution&) and
|
|
|
|
|
** RelativeLocation#resolve(LocatingSolution&) etc. If this is to be extended,
|
2007-11-10 02:27:16 +01:00
|
|
|
** we'll need a real spatial discrete constraint solver (and this probably will be
|
|
|
|
|
** some library implementation, because the problem is anything but trivial).
|
2007-10-22 05:15:08 +02:00
|
|
|
**
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-10-18 17:29:01 +02:00
|
|
|
#ifndef MOBJECT_SESSION_LOCATINGPIN_H
|
|
|
|
|
#define MOBJECT_SESSION_LOCATINGPIN_H
|
2007-10-13 05:13:28 +02:00
|
|
|
|
|
|
|
|
|
2007-10-19 06:39:52 +02:00
|
|
|
#include "cinelerra.h"
|
|
|
|
|
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
using boost::scoped_ptr;
|
|
|
|
|
|
2007-10-13 05:13:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace mobject
|
|
|
|
|
{
|
2007-11-10 23:09:15 +01:00
|
|
|
template<class MO> class Placement;
|
2007-10-13 05:13:28 +02:00
|
|
|
|
|
|
|
|
namespace session
|
|
|
|
|
{
|
2007-10-19 06:39:52 +02:00
|
|
|
class FixedLocation;
|
|
|
|
|
class RelativeLocation;
|
|
|
|
|
|
|
|
|
|
|
2007-10-22 05:15:08 +02:00
|
|
|
/**
|
|
|
|
|
* Positioning specification, possibliy chained
|
|
|
|
|
* to further specifications. The base class LocatingPin
|
|
|
|
|
* is a "no-op" specification which doesn't constrain the
|
|
|
|
|
* possible locations and thus can be embedded into pristine
|
|
|
|
|
* Placement by default. The Functor operators provide a
|
|
|
|
|
* way to add concrete positioning specifications, thereby
|
2007-11-10 02:27:16 +01:00
|
|
|
* defining the position of the MObject to be placed.
|
|
|
|
|
*
|
|
|
|
|
* @note to the implementer of subclasses: LocatingPins are
|
|
|
|
|
* copyable and need to handle cloning (incl the chain)
|
2007-10-22 05:15:08 +02:00
|
|
|
*/
|
|
|
|
|
class LocatingPin
|
2007-10-13 05:13:28 +02:00
|
|
|
{
|
|
|
|
|
protected:
|
2007-10-22 05:15:08 +02:00
|
|
|
typedef cinelerra::Time Time;
|
|
|
|
|
typedef session::Track* Track;
|
2007-10-19 06:39:52 +02:00
|
|
|
|
2007-10-18 17:29:01 +02:00
|
|
|
/** next additional Pin, if any */
|
2007-10-22 05:15:08 +02:00
|
|
|
scoped_ptr<LocatingPin> next_;
|
|
|
|
|
|
|
|
|
|
/** order to consider when resolving. 0=highest */
|
|
|
|
|
virtual int getPrioLevel () const { return 0; }
|
|
|
|
|
|
2007-11-10 02:27:16 +01:00
|
|
|
LocatingPin& addChain (LocatingPin*);
|
2007-10-22 05:15:08 +02:00
|
|
|
void resolve (LocatingSolution&) const;
|
|
|
|
|
virtual void intersect (LocatingSolution&) const;
|
|
|
|
|
|
2007-10-13 05:13:28 +02:00
|
|
|
public:
|
2007-10-22 05:15:08 +02:00
|
|
|
const FixedLocation resolve () const;
|
2007-11-10 23:09:15 +01:00
|
|
|
bool isOverdetermined () const;
|
2007-10-13 05:13:28 +02:00
|
|
|
|
2007-10-22 05:15:08 +02:00
|
|
|
/* Factory functions for adding LocatingPins */
|
2007-10-19 06:39:52 +02:00
|
|
|
|
2007-11-10 23:09:15 +01:00
|
|
|
FixedLocation& operator() (Time, Track=0);
|
2007-10-19 06:39:52 +02:00
|
|
|
RelativeLocation& operator() (PMO refObj, Time offset=0);
|
2007-10-22 05:15:08 +02:00
|
|
|
|
|
|
|
|
LocatingPin (const LocatingPin&);
|
|
|
|
|
LocatingPin& operator= (const LocatingPin&);
|
2007-11-10 02:27:16 +01:00
|
|
|
virtual LocatingPin* clone () const;
|
2007-10-22 05:15:08 +02:00
|
|
|
virtual ~LocatingPin() {};
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
LocatingPin () {};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @internal helper for the (preliminary)
|
|
|
|
|
* position resolve() implementation.
|
|
|
|
|
* @todo we can't sensibly reason about tracks,
|
|
|
|
|
* because at the moment (10/07) we lack a track implementation...
|
2007-11-10 21:50:55 +01:00
|
|
|
* @todo shouldn't we use a range-restriction LocatingPin (subclass)
|
|
|
|
|
* to represent the to-be-found solution? (ichthyo: siehe Trac #100)
|
2007-10-22 05:15:08 +02:00
|
|
|
*/
|
|
|
|
|
struct LocatingSolution
|
|
|
|
|
{
|
|
|
|
|
Time minTime;
|
|
|
|
|
Time maxTime;
|
|
|
|
|
Track minTrack;
|
|
|
|
|
Track maxTrack;
|
|
|
|
|
bool impo;
|
|
|
|
|
|
|
|
|
|
LocatingSolution ()
|
|
|
|
|
: minTime(-1e15), // TODO: better implementation of "unspecified..."
|
|
|
|
|
maxTime(+1e15),
|
|
|
|
|
minTrack(0), // TODO
|
|
|
|
|
maxTrack(0),
|
|
|
|
|
impo(false)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Time getTime();
|
|
|
|
|
Track getTrack();
|
|
|
|
|
|
|
|
|
|
bool is_definite();
|
|
|
|
|
bool is_impossible();
|
|
|
|
|
};
|
2007-10-13 05:13:28 +02:00
|
|
|
};
|
2007-10-22 05:15:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-10-13 05:13:28 +02:00
|
|
|
|
|
|
|
|
} // namespace mobject::session
|
|
|
|
|
|
|
|
|
|
} // namespace mobject
|
|
|
|
|
#endif
|