/* Copyright (C) 2000-2006 Paul Davis 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. $Id: midiregion.h 733 2006-08-01 17:19:38Z drobilla $ */ #ifndef __ardour_midi_region_h__ #define __ardour_midi_region_h__ #include #include "pbd/fastlog.h" #include "pbd/undo.h" #include "ardour/ardour.h" #include "ardour/gain.h" #include "ardour/logcurve.h" #include "ardour/midi_model.h" #include "ardour/midi_source.h" #include "ardour/region.h" class XMLNode; namespace ARDOUR { class Route; class Playlist; class Session; class MidiFilter; class MidiSource; class MidiStateTracker; template class MidiRingBuffer; class MidiRegion : public Region { public: ~MidiRegion(); boost::shared_ptr midi_source (uint32_t n=0) const; /* Stub Readable interface */ virtual framecnt_t read (Sample*, framepos_t /*pos*/, framecnt_t /*cnt*/, int /*channel*/) const { return 0; } virtual framecnt_t readable_length() const { return length(); } framecnt_t read_at (Evoral::EventSink& dst, framepos_t position, framecnt_t dur, uint32_t chan_n = 0, NoteMode mode = Sustained, MidiStateTracker* tracker = 0) const; framepos_t master_read_at (MidiRingBuffer& dst, framepos_t position, framecnt_t dur, uint32_t chan_n = 0, NoteMode mode = Sustained) const; XMLNode& state (bool); int set_state (const XMLNode&, int version); int separate_by_channel (ARDOUR::Session&, std::vector< boost::shared_ptr >&) const; /* automation */ boost::shared_ptr control(const Evoral::Parameter& id, bool create=false) { return model()->control(id, create); } virtual boost::shared_ptr control(const Evoral::Parameter& id) const { return model()->control(id); } /* export */ int exportme (ARDOUR::Session&, ARDOUR::ExportSpecification&); boost::shared_ptr model() { return midi_source()->model(); } boost::shared_ptr model() const { return midi_source()->model(); } private: friend class RegionFactory; MidiRegion (const SourceList&); MidiRegion (boost::shared_ptr, frameoffset_t offset = 0, bool offset_relative = true); private: framecnt_t _read_at (const SourceList&, Evoral::EventSink& dst, framepos_t position, framecnt_t dur, uint32_t chan_n = 0, NoteMode mode = Sustained, MidiStateTracker* tracker = 0) const; void recompute_at_start (); void recompute_at_end (); void set_position_internal (framepos_t pos, bool allow_bbt_recompute); void switch_source(boost::shared_ptr source); }; } /* namespace ARDOUR */ #endif /* __ardour_midi_region_h__ */