4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "automation.h"
24 #include "edlsession.h"
27 #include "playabletracks.h"
29 #include "preferences.h"
33 #include "transportque.h"
36 PlayableTracks::PlayableTracks(EDL *edl,
37 int64_t current_position,
43 this->data_type = data_type;
45 for(Track *current_track = edl->tracks->first;
47 current_track = current_track->next)
49 if(is_playable(current_track, current_position, direction, use_nudge))
51 // printf("PlayableTracks::PlayableTracks %d this=%p current_track=%p total=%d current_position=%jd\n",
57 append(current_track);
60 // printf("PlayableTracks::PlayableTracks %d data_type=%d total=%d current_position=%jd\n",
67 PlayableTracks::~PlayableTracks()
72 int PlayableTracks::is_playable(Track *current_track,
78 if(use_nudge) position += current_track->nudge;
79 if(current_track->data_type != data_type) result = 0;
81 // Track is off screen and not bounced to other modules
84 if(!current_track->plugin_used(position, direction) &&
85 !current_track->is_playable(position, direction))
90 if(!current_track->play)
97 // Test for playable edit
98 if(!current_track->playable_edit(position, direction))
100 // Test for playable effect
101 if(!current_track->is_synthesis(position,
113 int PlayableTracks::is_listed(Track *track)
115 for(int i = 0; i < total; i++)
117 if(values[i] == track) return 1;