Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

706 lines
16KB

  1. /*******************************************************************************/
  2. /* Copyright (C) 2008 Jonathan Moore Liles */
  3. /* */
  4. /* This program is free software; you can redistribute it and/or modify it */
  5. /* under the terms of the GNU General Public License as published by the */
  6. /* Free Software Foundation; either version 2 of the License, or (at your */
  7. /* option) any later version. */
  8. /* */
  9. /* This program is distributed in the hope that it will be useful, but WITHOUT */
  10. /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
  11. /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for */
  12. /* more details. */
  13. /* */
  14. /* You should have received a copy of the GNU General Public License along */
  15. /* with This program; see the file COPYING. If not,write to the Free Software */
  16. /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
  17. /*******************************************************************************/
  18. #include "Track.H"
  19. #include "Transport.H"
  20. #include "Playback_DS.H"
  21. #include "Record_DS.H"
  22. #include "Engine.H"
  23. #include "Port.H"
  24. #include "../FL/Fl_Sometimes_Input.H"
  25. #include <FL/fl_ask.H>
  26. #include <FL/Fl_Color_Chooser.H>
  27. // #include <FL/fl_draw.H>
  28. #include <FL/Fl.H>
  29. int Track::_soloing = 0;
  30. const char *Track::capture_format = "Wav 24";
  31. void
  32. Track::cb_input_field ( Fl_Widget *w, void *v )
  33. {
  34. ((Track*)v)->cb_input_field();
  35. }
  36. void
  37. Track::cb_button ( Fl_Widget *w, void *v )
  38. {
  39. ((Track*)v)->cb_button( w );
  40. }
  41. void
  42. Track::cb_input_field ( void )
  43. {
  44. log_start();
  45. name( name_field->value() );
  46. log_end();
  47. }
  48. void
  49. Track::cb_button ( Fl_Widget *w )
  50. {
  51. if ( w == record_button )
  52. {
  53. }
  54. if ( w == mute_button )
  55. {
  56. }
  57. if ( w == solo_button )
  58. {
  59. if ( solo_button->value() )
  60. ++_soloing;
  61. else
  62. --_soloing;
  63. }
  64. else
  65. if ( w == take_menu )
  66. {
  67. int v = take_menu->value();
  68. switch ( v )
  69. {
  70. case 0: /* show all takes */
  71. show_all_takes( take_menu->menu()[ v ].value() );
  72. return;
  73. case 1: /* new */
  74. track( track()->clone_empty() );
  75. return;
  76. }
  77. const char *s = take_menu->menu()[ v ].text;
  78. for ( int i = takes->children(); i--; )
  79. {
  80. Sequence *t = (Sequence*)takes->child( i );
  81. if ( ! strcmp( s, t->name() ) )
  82. {
  83. track( t );
  84. redraw();
  85. break;
  86. }
  87. }
  88. }
  89. }
  90. void
  91. Track::init ( void )
  92. {
  93. _capture = NULL;
  94. _track = NULL;
  95. _name = NULL;
  96. _selected = false;
  97. _show_all_takes = false;
  98. _size = 1;
  99. labeltype( FL_NO_LABEL );
  100. Fl_Group::size( timeline->w(), height() );
  101. Track *o = this;
  102. o->box( FL_THIN_UP_BOX );
  103. {
  104. Fl_Group *o = new Fl_Group( 2, 2, 149, 70 );
  105. o->color( ( Fl_Color ) 53 );
  106. {
  107. Fl_Input *o = name_field = new Fl_Sometimes_Input( 2, 2, 144, 24 );
  108. o->color( FL_BACKGROUND_COLOR );
  109. o->labeltype( FL_NO_LABEL );
  110. o->labelcolor( FL_GRAY0 );
  111. o->textcolor( FL_FOREGROUND_COLOR );
  112. o->callback( cb_input_field, (void*)this );
  113. }
  114. {
  115. Fl_Group *o = controls = new Fl_Group( 2, 28, 149, 24 );
  116. {
  117. Fl_Button *o = record_button =
  118. new Fl_Button( 6, 28, 26, 24, "@circle" );
  119. o->type( 1 );
  120. o->box( FL_THIN_UP_BOX );
  121. o->color( FL_LIGHT1 );
  122. o->selection_color( FL_RED );
  123. o->labelsize( 8 );
  124. o->callback( cb_button, this );
  125. }
  126. {
  127. Fl_Button *o = mute_button =
  128. new Fl_Button( 35, 28, 26, 24, "m" );
  129. o->type( 1 );
  130. o->box( FL_THIN_UP_BOX );
  131. o->color( FL_LIGHT1 );
  132. o->labelsize( 11 );
  133. o->callback( cb_button, this );
  134. }
  135. {
  136. Fl_Button *o = solo_button =
  137. new Fl_Button( 66, 28, 26, 24, "s" );
  138. o->type( 1 );
  139. o->box( FL_THIN_UP_BOX );
  140. o->color( FL_LIGHT1 );
  141. o->labelsize( 11 );
  142. o->callback( cb_button, this );
  143. }
  144. {
  145. Fl_Menu_Button *o = take_menu =
  146. new Fl_Menu_Button( 97, 28, 47, 24, "T" );
  147. o->box( FL_THIN_UP_BOX );
  148. o->color( FL_LIGHT1 );
  149. o->align( FL_ALIGN_LEFT | FL_ALIGN_INSIDE );
  150. o->callback( cb_button, this );
  151. o->add( "Show all takes", 0, 0, 0, FL_MENU_TOGGLE );
  152. o->add( "New", 0, 0, 0, FL_MENU_DIVIDER );
  153. }
  154. o->end();
  155. }
  156. {
  157. Fl_Box *o = new Fl_Box( 0, 76, 149, 38 );
  158. o->box( FL_FLAT_BOX );
  159. Fl_Group::current()->resizable( o );
  160. }
  161. o->size( Track::width(), h() );
  162. o->end();
  163. }
  164. {
  165. Fl_Pack *o = pack = new Fl_Pack( width(), 0, 1006, 115 );
  166. o->labeltype( FL_NO_LABEL );
  167. o->resize( x() + width(), y(), w() - width(), h() );
  168. resizable( o );
  169. {
  170. Fl_Pack *o = control = new Fl_Pack( width(), 0, pack->w(), 115 );
  171. o->end();
  172. }
  173. {
  174. Fl_Pack *o = takes = new Fl_Pack( width(), 0, pack->w(), 115 );
  175. o->end();
  176. o->hide();
  177. }
  178. o->end();
  179. }
  180. end();
  181. /* /\* FIXME: should be configurable, but where? *\/ */
  182. /* create_outputs( 2 ); */
  183. /* create_inputs( 2 ); */
  184. playback_ds = new Playback_DS( this, engine->frame_rate(), engine->nframes(), output.size() );
  185. record_ds = new Record_DS( this, engine->frame_rate(), engine->nframes(), input.size() );
  186. }
  187. Track::Track ( const char *L, int channels ) :
  188. Fl_Group ( 0, 0, 0, 0, 0 )
  189. {
  190. init();
  191. if ( L )
  192. name( L );
  193. color( (Fl_Color)rand() );
  194. configure_inputs( channels );
  195. configure_outputs( channels );
  196. log_create();
  197. }
  198. Track::~Track ( )
  199. {
  200. log_destroy();
  201. }
  202. static int pack_visible( Fl_Pack *p )
  203. {
  204. int v = 0;
  205. for ( int i = p->children(); i--; )
  206. if ( p->child( i )->visible() )
  207. v++;
  208. return v;
  209. }
  210. /* adjust size of widget and children */
  211. void
  212. Track::resize ( void )
  213. {
  214. for ( int i = takes->children(); i--; )
  215. takes->child( i )->size( w(), height() );
  216. for ( int i = control->children(); i--; )
  217. control->child( i )->size( w(), height() );
  218. if ( _show_all_takes )
  219. {
  220. takes->show();
  221. Fl_Group::size( w(), height() * ( 1 + takes->children() + pack_visible( control ) ) );
  222. }
  223. else
  224. {
  225. takes->hide();
  226. Fl_Group::size( w(), height() * ( 1 + pack_visible( control ) ) );
  227. }
  228. if ( track() )
  229. track()->size( w(), height() );
  230. if ( controls->y() + controls->h() > y() + h() )
  231. controls->hide();
  232. else
  233. controls->show();
  234. if ( parent() )
  235. parent()->redraw();
  236. }
  237. void
  238. Track::size ( int v )
  239. {
  240. if ( v < 0 || v > 3 )
  241. return;
  242. _size = v;
  243. resize();
  244. }
  245. void
  246. Track::add ( Sequence * t )
  247. {
  248. takes->insert( *t, 0 );
  249. if ( ! t->name() )
  250. {
  251. char pat[20];
  252. snprintf( pat, sizeof( pat ), "%d", takes->children() );
  253. t->name( strdup( pat ) );
  254. }
  255. take_menu->add( t->name() );
  256. t->labeltype( FL_ENGRAVED_LABEL );
  257. }
  258. void
  259. Track::remove ( Sequence *t )
  260. {
  261. takes->remove( t );
  262. resize();
  263. // take_menu->remove( t->name() );
  264. }
  265. void
  266. Track::remove ( Control_Sequence *t )
  267. {
  268. control->remove( t );
  269. resize();
  270. }
  271. void
  272. Track::track ( Sequence * t )
  273. {
  274. t->track( this );
  275. if ( track() )
  276. add( track() );
  277. _track = t;
  278. pack->insert( *t, 0 );
  279. t->labeltype( FL_NO_LABEL );
  280. resize();
  281. }
  282. void
  283. Track::add ( Control_Sequence *t )
  284. {
  285. printf( "adding control sequence\n" );
  286. t->track( this );
  287. control->add( t );
  288. resize();
  289. }
  290. void
  291. Track::draw ( void )
  292. {
  293. if ( _selected )
  294. {
  295. Fl_Color c = color();
  296. color( FL_RED );
  297. Fl_Group::draw();
  298. color( c );
  299. }
  300. else
  301. Fl_Group::draw();
  302. }
  303. int
  304. Track::handle ( int m )
  305. {
  306. Logger log( this );
  307. switch ( m )
  308. {
  309. case FL_MOUSEWHEEL:
  310. {
  311. if ( ! Fl::event_shift() )
  312. return 0;
  313. int d = Fl::event_dy();
  314. printf( "%d\n", d );
  315. if ( d < 0 )
  316. size( size() - 1 );
  317. else
  318. size( size() + 1 );
  319. return 1;
  320. }
  321. case FL_PUSH:
  322. {
  323. int X = Fl::event_x();
  324. int Y = Fl::event_y();
  325. if ( Fl::event_button3() && X < Track::width() )
  326. {
  327. int c = output.size();
  328. /* context menu */
  329. Fl_Menu_Item menu[] =
  330. {
  331. { "Type", 0, 0, 0, FL_SUBMENU },
  332. { "Mono", 0, 0, 0, FL_MENU_RADIO | ( c == 1 ? FL_MENU_VALUE : 0 ) },
  333. { "Stereo", 0, 0, 0, FL_MENU_RADIO | ( c == 2 ? FL_MENU_VALUE : 0 ) },
  334. { "Quad", 0, 0, 0, FL_MENU_RADIO | ( c == 4 ? FL_MENU_VALUE : 0 ) },
  335. { "...", 0, 0, 0, FL_MENU_RADIO | ( c == 3 || c > 4 ? FL_MENU_VALUE : 0 ) },
  336. { 0 },
  337. { "Color" },
  338. { "Remove", 0, 0, 0, transport->rolling ? FL_MENU_INACTIVE : 0 },
  339. { 0 },
  340. };
  341. const Fl_Menu_Item *r = menu->popup( X, Y, "Track" );
  342. if ( r && r > &menu[ 0 ] )
  343. {
  344. if ( r < &menu[ 4 ] )
  345. {
  346. int c = r - &menu[1];
  347. int ca[] = { 1, 2, 4 };
  348. configure_inputs( ca[ c ] );
  349. configure_outputs( ca[ c ] );
  350. }
  351. else
  352. {
  353. if ( r == &menu[ 4 ] )
  354. {
  355. const char *s = fl_input( "How many channels?", "3" );
  356. int c = atoi( s );
  357. if ( c <= 0 || c > 10 )
  358. fl_alert( "Invalid number of channels." );
  359. else
  360. {
  361. configure_inputs( c );
  362. configure_outputs( c );
  363. }
  364. }
  365. else if ( r == &menu[ 6 ] )
  366. {
  367. unsigned char r, g, b;
  368. Fl::get_color( color(), r, g, b );
  369. if ( fl_color_chooser( "Track Color", r, g, b ) )
  370. {
  371. color( fl_rgb_color( r, g, b ) );
  372. }
  373. // color( fl_show_colormap( color() ) );
  374. redraw();
  375. }
  376. else if ( r == &menu[ 7 ] )
  377. {
  378. int r = fl_choice( "Are you certain you want to remove track \"%s\"?", "Cancel", NULL, "Remove", name() );
  379. if ( r == 2 )
  380. {
  381. timeline->remove_track( this );
  382. /* FIXME: need to queue deletion. in a way that won't crash the playback. */
  383. // delete this;
  384. Fl::delete_widget( this );
  385. }
  386. }
  387. }
  388. }
  389. return 1;
  390. }
  391. }
  392. default:
  393. return Fl_Group::handle( m );
  394. }
  395. return 0;
  396. }
  397. /**********/
  398. /* Engine */
  399. /**********/
  400. const char *
  401. Track::name_for_port ( Port::type_e type, int n )
  402. {
  403. static char pname[256];
  404. snprintf( pname, sizeof( pname ), "%s/%s-%d",
  405. name(),
  406. type == Port::Output ? "out" : "in",
  407. n + 1 );
  408. return pname;
  409. }
  410. void
  411. Track::update_port_names ( void )
  412. {
  413. for ( int i = 0; i < output.size(); ++i )
  414. output[ i ].name( name_for_port( output[ i ].type(), i ) );
  415. for ( int i = 0; i < input.size(); ++i )
  416. input[ i ].name( name_for_port( input[ i ].type(), i ) );
  417. }
  418. bool
  419. Track::configure_outputs ( int n )
  420. {
  421. int on = output.size();
  422. if ( n == on )
  423. return true;
  424. // engine->lock();
  425. Playback_DS *ds = playback_ds;
  426. playback_ds = NULL;
  427. ds->shutdown();
  428. delete ds;
  429. if ( n > on )
  430. {
  431. for ( int i = on; i < n; ++i )
  432. {
  433. Port p( strdup( name_for_port( Port::Output, i ) ), Port::Output );
  434. if ( p.valid() )
  435. output.push_back( p );
  436. else
  437. printf( "error: could not create output port!\n" );
  438. }
  439. }
  440. else
  441. {
  442. for ( int i = on; i > n; --i )
  443. {
  444. output.back().shutdown();
  445. output.pop_back();
  446. }
  447. }
  448. playback_ds = new Playback_DS( this, engine->frame_rate(), engine->nframes(), output.size() );
  449. // engine->unlock();
  450. /* FIXME: bogus */
  451. return true;
  452. }
  453. bool
  454. Track::configure_inputs ( int n )
  455. {
  456. int on = input.size();
  457. if ( n == on )
  458. return true;
  459. // engine->lock();
  460. Record_DS *ds = record_ds;
  461. record_ds = NULL;
  462. ds->shutdown();
  463. delete ds;
  464. if ( n > on )
  465. {
  466. for ( int i = on; i < n; ++i )
  467. {
  468. Port p( strdup( name_for_port( Port::Input, i ) ), Port::Input );
  469. if ( p.valid() )
  470. input.push_back( p );
  471. else
  472. printf( "error: could not create input port!\n" );
  473. }
  474. }
  475. else
  476. {
  477. for ( int i = on; i > n; --i )
  478. {
  479. input.back().shutdown();
  480. input.pop_back();
  481. }
  482. }
  483. record_ds = new Record_DS( this, engine->frame_rate(), engine->nframes(), input.size() );
  484. // engine->unlock();
  485. /* FIXME: bogus */
  486. return true;
  487. }
  488. /* THREAD: RT */
  489. nframes_t
  490. Track::process ( nframes_t nframes )
  491. {
  492. if ( playback_ds )
  493. {
  494. record_ds->process( nframes );
  495. return playback_ds->process( nframes );
  496. }
  497. else
  498. return 0;
  499. }
  500. /* THREAD: RT */
  501. void
  502. Track::seek ( nframes_t frame )
  503. {
  504. if ( playback_ds )
  505. return playback_ds->seek( frame );
  506. }
  507. /* FIXME: what about theading issues with this region/audiofile being
  508. accessible from the UI thread? Need locking? */
  509. #include "Region.H"
  510. #include <time.h>
  511. /** very cheap UUID generator... */
  512. unsigned long long
  513. uuid ( void )
  514. {
  515. time_t t = time( NULL );
  516. return (unsigned long long) t;
  517. }
  518. /* THREAD: IO */
  519. /** create capture region and prepare to record */
  520. void
  521. Track::record ( nframes_t frame )
  522. {
  523. assert( _capture == NULL );
  524. char pat[256];
  525. snprintf( pat, sizeof( pat ), "%s-%llu", name(), uuid() );
  526. _capture_af = Audio_File_SF::create( pat, 48000, input.size(), Track::capture_format );
  527. if ( ! _capture_af )
  528. {
  529. /* ERROR */
  530. }
  531. /* open it again for reading in the GUI thread */
  532. Audio_File *af = Audio_File::from_file( _capture_af->name() );
  533. _capture = new Region( af, track(), frame );
  534. _capture->prepare();
  535. }
  536. /* THREAD: IO */
  537. /** write a block to the (already opened) capture file */
  538. void
  539. Track::write ( sample_t *buf, nframes_t nframes )
  540. {
  541. nframes_t l = _capture_af->write( buf, nframes );
  542. _capture->write( l );
  543. }
  544. #include <stdio.h>
  545. /* THREAD: IO */
  546. void
  547. Track::stop ( nframes_t nframes )
  548. {
  549. _capture->finalize();
  550. _capture = NULL;
  551. }