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
25 #include "apluginset.h"
28 #include "aautomation.h"
31 #include "edlsession.h"
37 #include "floatautos.h"
39 #include "localsession.h"
40 #include "mainsession.h"
43 #include "trackcanvas.h"
50 ATrack::ATrack(EDL *edl, Tracks *tracks)
53 data_type = TRACK_AUDIO;
54 data_h = edl->local_session->zoom_atrack;
61 // Used by PlaybackEngine
62 void ATrack::synchronize_params(Track *track)
64 Track::synchronize_params(track);
65 //ATrack *atrack = (ATrack*)track;
68 int ATrack::copy_settings(Track *track)
70 Track::copy_settings(track);
71 //ATrack *atrack = (ATrack*)track;
76 int ATrack::save_header(FileXML *file)
78 file->tag.set_property("TYPE", "AUDIO");
82 int ATrack::save_derived(FileXML *file)
84 file->append_newline();
88 int ATrack::load_header(FileXML *file, uint32_t load_flags)
94 int ATrack::load_derived(FileXML *file, uint32_t load_flags)
99 void ATrack::create_objects()
101 Track::create_objects();
102 automation = new AAutomation(edl, this);
103 automation->create_objects();
104 edits = new AEdits(edl, this);
107 int ATrack::vertical_span(Theme *theme)
109 int track_h = Track::vertical_span(theme);
110 int patch_h = theme->title_h;
112 patch_h += theme->play_h + theme->fade_h + theme->meter_h + theme->pan_h;
113 return MAX(track_h, patch_h);
116 PluginSet* ATrack::new_plugins()
118 return new APluginSet(edl, this);
121 int ATrack::load_defaults(BC_Hash *defaults)
123 Track::load_defaults(defaults);
127 void ATrack::set_default_title()
129 Track *current = ListItem<Track>::list->first;
131 for(i = 0; current; current = NEXT)
133 if(current->data_type == TRACK_AUDIO) i++;
135 sprintf(title, _("Audio %d"), i);
136 BC_Resources::encode_to_utf8(title, BCTEXTLEN);
139 int64_t ATrack::to_units(double position, int round)
141 return round ? Units::round(position * edl->session->sample_rate) :
142 Units::to_int64(position * edl->session->sample_rate + 1e-6);
145 double ATrack::to_doubleunits(double position)
147 return position * edl->session->sample_rate;
150 double ATrack::from_units(int64_t position)
152 return (double)position / edl->session->sample_rate;
155 int ATrack::identical(int64_t sample1, int64_t sample2)
158 if(labs(sample1 - sample2) <= 1) return 1; else return 0;
161 int64_t ATrack::length()
163 return edits->length();
166 int ATrack::paste_derived(int64_t start, int64_t end, int64_t total_length, FileXML *xml, int ¤t_channel)
168 if(!strcmp(xml->tag.get_title(), "PANAUTOS"))
170 current_channel = xml->tag.get_property("CHANNEL", current_channel);
171 // pan_autos->paste(start, end, total_length, xml, "/PANAUTOS", mwindow->session->autos_follow_edits);