non/Timeline/Audio_Sequence.H

113 lines
3.1 KiB
C++
Raw Normal View History

/*******************************************************************************/
/* Copyright (C) 2008 Jonathan Moore Liles */
/* */
/* 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; see the file COPYING. If not,write to the Free Software */
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/*******************************************************************************/
#pragma once
2008-04-19 06:16:21 +02:00
#include "Sequence.H"
2008-02-21 17:20:36 +01:00
#include "Region.H"
#include "Track.H"
2008-04-07 12:00:16 +02:00
2008-02-21 08:17:49 +01:00
#include <FL/Fl_Input.H>
2008-04-19 06:16:21 +02:00
class Audio_Sequence : public Sequence
{
2008-04-20 04:15:54 +02:00
protected:
2008-04-25 08:34:08 +02:00
virtual void get ( Log_Entry &e ) const
{
Sequence::get( e );
e.add( ":t", _track );
}
void
set ( Log_Entry &e )
{
Sequence::set( e );
for ( int i = 0; i < e.size(); ++i )
{
const char *s, *v;
e.get( i, &s, &v );
if ( ! strcmp( ":t", s ) )
{
int i;
sscanf( v, "%X", &i );
Track *t = (Track*)Loggable::find( i );
assert( t );
t->track( this );
}
}
}
2008-04-20 04:15:54 +02:00
Audio_Sequence ( ) : Sequence( 0, 0, 0, 0 )
{
}
public:
2008-04-20 04:15:54 +02:00
LOG_CREATE_FUNC( Audio_Sequence );
Audio_Sequence ( Track *track ) : Sequence( 0, 0, 0, 0, track )
{
2008-04-21 05:05:25 +02:00
_track = track;
if ( track )
track->add( this );
2008-03-09 22:27:06 +01:00
log_create();
2008-04-23 04:22:46 +02:00
/* FIXME: temporary */
labeltype( FL_NO_LABEL );
2008-03-09 22:27:06 +01:00
}
2008-04-19 06:16:21 +02:00
~Audio_Sequence ( )
2008-03-09 22:27:06 +01:00
{
log_destroy();
}
2008-02-21 13:57:33 +01:00
2008-03-09 18:56:17 +01:00
2008-04-19 06:16:21 +02:00
Sequence * clone_empty ( void )
2008-03-09 18:56:17 +01:00
{
Audio_Sequence *t = new Audio_Sequence( track() );
2008-03-09 18:56:17 +01:00
return t;
}
2008-04-25 08:34:08 +02:00
// const char *class_name ( void ) { return "Audio_Sequence"; }
int handle ( int m );
void dump ( void );
void remove_selected ( void );
2008-02-21 13:57:33 +01:00
2008-04-25 09:07:18 +02:00
const Region *capture ( void ) const { return track()->capture(); }
2008-04-07 12:00:16 +02:00
nframes_t play ( sample_t *buf, nframes_t frame, nframes_t nframes, int channels );
2008-04-07 10:12:01 +02:00
};