2008-02-14 06:47:12 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
2008-02-16 05:23:58 +01:00
|
|
|
#include <FL/Fl_Double_Window.H>
|
2008-02-14 06:47:12 +01:00
|
|
|
#include <FL/Fl_Scroll.H>
|
2008-02-14 08:40:47 +01:00
|
|
|
#include <FL/Fl_Pack.H>
|
|
|
|
#include <FL/Fl_Group.H>
|
2008-02-17 00:12:23 +01:00
|
|
|
#include <FL/Fl_Slider.H>
|
2008-02-14 06:47:12 +01:00
|
|
|
|
|
|
|
#include "Waveform.H"
|
2008-02-14 08:40:47 +01:00
|
|
|
#include "Region.H"
|
2008-02-14 06:47:12 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
Fl_Color velocity_colors[128];
|
|
|
|
|
2008-02-16 04:50:16 +01:00
|
|
|
#include "Track.H"
|
2008-02-16 08:21:15 +01:00
|
|
|
#include "Timeline.H"
|
2008-02-16 04:50:16 +01:00
|
|
|
|
2008-02-14 06:47:12 +01:00
|
|
|
void
|
|
|
|
init_colors ( void )
|
|
|
|
{
|
|
|
|
for ( int i = 128; i--; )
|
|
|
|
velocity_colors[i] = fl_rgb_color( 23, 255 - i * 2, 32 );
|
|
|
|
}
|
|
|
|
|
2008-02-16 08:21:15 +01:00
|
|
|
Timeline timeline;
|
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
void
|
|
|
|
cb_zoom ( Fl_Widget *w, void *v )
|
|
|
|
{
|
|
|
|
timeline.fpp = ((Fl_Slider*)w)->value();
|
|
|
|
timeline.scroll->redraw();
|
|
|
|
}
|
|
|
|
|
2008-02-14 06:47:12 +01:00
|
|
|
int
|
|
|
|
main ( int argc, char **argv )
|
|
|
|
{
|
|
|
|
|
|
|
|
init_colors();
|
|
|
|
|
2008-02-16 05:23:58 +01:00
|
|
|
Fl_Double_Window *main_window = new Fl_Double_Window( 0, 0, 800, 600 );
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
timeline.scroll = new Fl_Scroll( 0, 24, 800, 600 - 24 );
|
2008-02-17 03:36:17 +01:00
|
|
|
timeline.fpp = 256;
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-16 04:50:16 +01:00
|
|
|
Fl_Pack *tracks = new Fl_Pack( 0, 0, 5000, 5000 );
|
|
|
|
tracks->type( Fl_Pack::VERTICAL );
|
|
|
|
|
2008-02-16 05:23:58 +01:00
|
|
|
Fl::get_system_colors();
|
|
|
|
Fl::scheme( "plastic" );
|
2008-02-16 04:50:16 +01:00
|
|
|
|
|
|
|
// Fl_Group *pack = new Fl_Group( 0, 0, 5000, 600 );
|
|
|
|
|
|
|
|
Track *track1 = new Track( 40, 0, 5000, 100 );
|
2008-02-14 08:40:47 +01:00
|
|
|
|
|
|
|
// pack->type( Fl_Pack::VERTICAL );
|
2008-02-16 04:50:16 +01:00
|
|
|
// pack->box( FL_DOWN_BOX );
|
2008-02-14 08:40:47 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
// Region *wave = new Region( 0, 0, 5000, 100, "foo" );
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-17 03:36:17 +01:00
|
|
|
Region *wave = new Region( new Clip( "streambass8.wav" ) );
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
wave->resize( 0, 0, 500, 100 );
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
// wave->peaks( peaks );
|
2008-02-14 06:47:12 +01:00
|
|
|
wave->start( 0 );
|
2008-02-17 00:12:23 +01:00
|
|
|
// wave->end( (len / sizeof( float )) / 2 );
|
|
|
|
wave->end( 50 );
|
2008-02-14 06:47:12 +01:00
|
|
|
|
|
|
|
wave->color( FL_CYAN );
|
|
|
|
wave->selection_color( fl_darker( FL_GRAY ) );
|
|
|
|
wave->selection_color( FL_GREEN );
|
|
|
|
|
2008-02-16 04:50:16 +01:00
|
|
|
track1->add( wave );
|
|
|
|
|
|
|
|
track1->end();
|
|
|
|
|
|
|
|
Track *track2 = new Track( 40, 0, 5000, 100 );
|
|
|
|
|
2008-02-16 08:46:43 +01:00
|
|
|
// Region *wave2 = new Region( 0, 0, 350, 100, "bar" );
|
|
|
|
|
|
|
|
Region *wave2 = new Region( *wave );
|
2008-02-16 04:50:16 +01:00
|
|
|
|
2008-02-16 08:59:50 +01:00
|
|
|
/* wave2->peaks( peaks ); */
|
|
|
|
/* wave2->start( 300 ); */
|
|
|
|
/* wave2->end( len ); */
|
2008-02-16 04:50:16 +01:00
|
|
|
|
|
|
|
track2->add( wave2 );
|
|
|
|
|
|
|
|
track2->end();
|
|
|
|
|
|
|
|
track1->next( track2 );
|
|
|
|
track2->prev( track1 );
|
2008-02-14 08:40:47 +01:00
|
|
|
|
2008-02-16 04:50:16 +01:00
|
|
|
tracks->end();
|
2008-02-16 08:21:15 +01:00
|
|
|
timeline.scroll->end();
|
2008-02-14 06:47:12 +01:00
|
|
|
|
2008-02-17 00:12:23 +01:00
|
|
|
Fl_Slider *zoom_slider = new Fl_Slider( 0, 0, 800, 24 );
|
|
|
|
zoom_slider->type( 1 );
|
|
|
|
zoom_slider->callback( cb_zoom, 0 );
|
2008-02-17 01:35:53 +01:00
|
|
|
zoom_slider->range( 1, 256 * 256 );
|
|
|
|
zoom_slider->value( 256 );
|
2008-02-17 00:12:23 +01:00
|
|
|
|
2008-02-14 06:47:12 +01:00
|
|
|
main_window->end();
|
|
|
|
main_window->show();
|
|
|
|
|
|
|
|
wave->redraw();
|
|
|
|
|
|
|
|
Fl::run();
|
|
|
|
}
|