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.

705 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_NO_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. playback_ds = new Playback_DS( this, engine->frame_rate(), engine->nframes(), output.size() );
  182. record_ds = new Record_DS( this, engine->frame_rate(), engine->nframes(), input.size() );
  183. }
  184. Track::Track ( const char *L, int channels ) :
  185. Fl_Group ( 0, 0, 0, 0, 0 )
  186. {
  187. init();
  188. if ( L )
  189. name( L );
  190. color( (Fl_Color)rand() );
  191. configure_inputs( channels );
  192. configure_outputs( channels );
  193. log_create();
  194. }
  195. Track::~Track ( )
  196. {
  197. log_destroy();
  198. }
  199. static int pack_visible( Fl_Pack *p )
  200. {
  201. int v = 0;
  202. for ( int i = p->children(); i--; )
  203. if ( p->child( i )->visible() )
  204. v++;
  205. return v;
  206. }
  207. /* adjust size of widget and children */
  208. void
  209. Track::resize ( void )
  210. {
  211. for ( int i = takes->children(); i--; )
  212. takes->child( i )->size( w(), height() );
  213. for ( int i = control->children(); i--; )
  214. control->child( i )->size( w(), height() );
  215. if ( _show_all_takes )
  216. {
  217. takes->show();
  218. Fl_Group::size( w(), height() * ( 1 + takes->children() + pack_visible( control ) ) );
  219. }
  220. else
  221. {
  222. takes->hide();
  223. Fl_Group::size( w(), height() * ( 1 + pack_visible( control ) ) );
  224. }
  225. if ( track() )
  226. track()->size( w(), height() );
  227. if ( controls->y() + controls->h() > y() + h() )
  228. controls->hide();
  229. else
  230. controls->show();
  231. /* FIXME: why is this necessary? */
  232. if ( parent() )
  233. parent()->parent()->redraw();
  234. }
  235. void
  236. Track::size ( int v )
  237. {
  238. if ( v < 0 || v > 3 )
  239. return;
  240. _size = v;
  241. resize();
  242. }
  243. void
  244. Track::add ( Sequence * t )
  245. {
  246. takes->insert( *t, 0 );
  247. if ( ! t->name() )
  248. {
  249. char pat[20];
  250. snprintf( pat, sizeof( pat ), "%d", takes->children() );
  251. t->name( strdup( pat ) );
  252. }
  253. take_menu->add( t->name() );
  254. t->labeltype( FL_ENGRAVED_LABEL );
  255. }
  256. void
  257. Track::remove ( Sequence *t )
  258. {
  259. takes->remove( t );
  260. resize();
  261. // take_menu->remove( t->name() );
  262. }
  263. void
  264. Track::remove ( Control_Sequence *t )
  265. {
  266. control->remove( t );
  267. resize();
  268. }
  269. void
  270. Track::track ( Sequence * t )
  271. {
  272. t->track( this );
  273. if ( track() )
  274. add( track() );
  275. _track = t;
  276. pack->insert( *t, 0 );
  277. t->labeltype( FL_NO_LABEL );
  278. resize();
  279. }
  280. void
  281. Track::add ( Control_Sequence *t )
  282. {
  283. printf( "adding control sequence\n" );
  284. t->track( this );
  285. control->add( t );
  286. control_out.push_back( Port( Port::Output, name(), control_out.size(), "cv" ) );
  287. t->output( &control_out.back() );
  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. void
  401. Track::update_port_names ( void )
  402. {
  403. for ( int i = 0; i < output.size(); ++i )
  404. output[ i ].name( name(), i );
  405. for ( int i = 0; i < input.size(); ++i )
  406. input[ i ].name( name(), i );
  407. for ( int i = 0; i < control_out.size(); ++i )
  408. control_out[ i ].name( name(), i, "cv" );
  409. /* /\* tell any attached control sequences to do the same *\/ */
  410. /* for ( int i = control->children(); i-- ) */
  411. /* ((Control_Sequence*)control->child( i ))->update_port_names(); */
  412. }
  413. bool
  414. Track::configure_outputs ( int n )
  415. {
  416. int on = output.size();
  417. if ( n == on )
  418. return true;
  419. // engine->lock();
  420. Playback_DS *ds = playback_ds;
  421. playback_ds = NULL;
  422. ds->shutdown();
  423. delete ds;
  424. if ( n > on )
  425. {
  426. for ( int i = on; i < n; ++i )
  427. {
  428. Port p( Port::Output, name(), i );
  429. if ( p.valid() )
  430. output.push_back( p );
  431. else
  432. printf( "error: could not create output port!\n" );
  433. }
  434. }
  435. else
  436. {
  437. for ( int i = on; i > n; --i )
  438. {
  439. output.back().shutdown();
  440. output.pop_back();
  441. }
  442. }
  443. playback_ds = new Playback_DS( this, engine->frame_rate(), engine->nframes(), output.size() );
  444. // engine->unlock();
  445. /* FIXME: bogus */
  446. return true;
  447. }
  448. bool
  449. Track::configure_inputs ( int n )
  450. {
  451. int on = input.size();
  452. if ( n == on )
  453. return true;
  454. // engine->lock();
  455. Record_DS *ds = record_ds;
  456. record_ds = NULL;
  457. ds->shutdown();
  458. delete ds;
  459. if ( n > on )
  460. {
  461. for ( int i = on; i < n; ++i )
  462. {
  463. Port p( Port::Input, name(), i );
  464. if ( p.valid() )
  465. input.push_back( p );
  466. else
  467. printf( "error: could not create input port!\n" );
  468. }
  469. }
  470. else
  471. {
  472. for ( int i = on; i > n; --i )
  473. {
  474. input.back().shutdown();
  475. input.pop_back();
  476. }
  477. }
  478. record_ds = new Record_DS( this, engine->frame_rate(), engine->nframes(), input.size() );
  479. // engine->unlock();
  480. /* FIXME: bogus */
  481. return true;
  482. }
  483. /* THREAD: RT */
  484. nframes_t
  485. Track::process ( nframes_t nframes )
  486. {
  487. for ( int i = control->children(); i--; )
  488. ((Control_Sequence*)control->child( i ))->process( nframes );
  489. if ( playback_ds )
  490. {
  491. record_ds->process( nframes );
  492. return playback_ds->process( nframes );
  493. }
  494. else
  495. return 0;
  496. }
  497. /* THREAD: RT */
  498. void
  499. Track::seek ( nframes_t frame )
  500. {
  501. if ( playback_ds )
  502. return playback_ds->seek( frame );
  503. }
  504. /* FIXME: what about theading issues with this region/audiofile being
  505. accessible from the UI thread? Need locking? */
  506. #include "Region.H"
  507. #include <time.h>
  508. /** very cheap UUID generator... */
  509. unsigned long long
  510. uuid ( void )
  511. {
  512. time_t t = time( NULL );
  513. return (unsigned long long) t;
  514. }
  515. /* THREAD: IO */
  516. /** create capture region and prepare to record */
  517. void
  518. Track::record ( nframes_t frame )
  519. {
  520. assert( _capture == NULL );
  521. char pat[256];
  522. snprintf( pat, sizeof( pat ), "%s-%llu", name(), uuid() );
  523. _capture_af = Audio_File_SF::create( pat, 48000, input.size(), Track::capture_format );
  524. if ( ! _capture_af )
  525. {
  526. /* ERROR */
  527. }
  528. /* open it again for reading in the GUI thread */
  529. Audio_File *af = Audio_File::from_file( _capture_af->name() );
  530. _capture = new Region( af, track(), frame );
  531. _capture->prepare();
  532. }
  533. /* THREAD: IO */
  534. /** write a block to the (already opened) capture file */
  535. void
  536. Track::write ( sample_t *buf, nframes_t nframes )
  537. {
  538. nframes_t l = _capture_af->write( buf, nframes );
  539. _capture->write( l );
  540. }
  541. #include <stdio.h>
  542. /* THREAD: IO */
  543. void
  544. Track::stop ( nframes_t nframes )
  545. {
  546. _capture->finalize();
  547. _capture = NULL;
  548. }