summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/midi_playlist.h
blob: 11627b5a07f61e357802f2b7b3bd8072174791bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
    Copyright (C) 2006 Paul Davis 
	Written by Dave Robillard, 2006
 
    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 __ardour_midi_playlist_h__
#define __ardour_midi_playlist_h__

#include <vector>
#include <list>

#include <ardour/ardour.h>
#include <ardour/playlist.h>

namespace ARDOUR
{

class Session;
class Region;
class MidiRegion;
class Source;
class MidiRingBuffer;

class MidiPlaylist : public ARDOUR::Playlist
{
private:

	struct State : public ARDOUR::StateManager::State
	{
		RegionList regions;
		std::list<UndoAction> region_states;

		State (std::string why) : ARDOUR::StateManager::State (why)
		{}
		~State ();
	};

public:
	MidiPlaylist (Session&, const XMLNode&, bool hidden = false);
	MidiPlaylist (Session&, string name, bool hidden = false);
	MidiPlaylist (const MidiPlaylist&, string name, bool hidden = false);
	MidiPlaylist (const MidiPlaylist&, jack_nframes_t start, jack_nframes_t cnt,
	              string name, bool hidden = false);

	jack_nframes_t read (MidiRingBuffer& buf,
	                     jack_nframes_t start, jack_nframes_t cnt, uint32_t chan_n=0);

	int set_state (const XMLNode&);
	UndoAction get_memento() const;

	template<class T>
	void apply_to_history (T& obj, void (T::*method)(const ARDOUR::StateManager::StateMap&, state_id_t))
	{
		RegionLock rlock (this);
		(obj.*method) (states, _current_state_id);
	}

	bool destroy_region (Region*);

	void get_equivalent_regions (const MidiRegion&, std::vector<MidiRegion*>&);
	void get_region_list_equivalent_regions (const MidiRegion&, std::vector<MidiRegion*>&);

	void drop_all_states ();

protected:

	/* state management */

	StateManager::State* state_factory (std::string) const;
	Change restore_state (StateManager::State&);
	void send_state_change (Change);

	/* playlist "callbacks" */
	void flush_notifications ();

	void finalize_split_region (Region *orig, Region *left, Region *right);

	void refresh_dependents (Region& region);
	void check_dependents (Region& region, bool norefresh);
	void remove_dependents (Region& region);

protected:
	~MidiPlaylist (); /* public should use unref() */

private:
	XMLNode& state (bool full_state);
	void dump () const;

	bool region_changed (Change, Region*);
};

} /* namespace ARDOUR */

#endif	/* __ardour_midi_playlist_h__ */