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.

702 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. resize();
  287. }
  288. void
  289. Track::draw ( void )
  290. {
  291. if ( _selected )
  292. {
  293. Fl_Color c = color();
  294. color( FL_RED );
  295. Fl_Group::draw();
  296. color( c );
  297. }
  298. else
  299. Fl_Group::draw();
  300. }
  301. int
  302. Track::handle ( int m )
  303. {
  304. Logger log( this );
  305. switch ( m )
  306. {
  307. case FL_MOUSEWHEEL:
  308. {
  309. if ( ! Fl::event_shift() )
  310. return 0;
  311. int d = Fl::event_dy();
  312. printf( "%d\n", d );
  313. if ( d < 0 )
  314. size( size() - 1 );
  315. else
  316. size( size() + 1 );
  317. return 1;
  318. }
  319. case FL_PUSH:
  320. {
  321. int X = Fl::event_x();
  322. int Y = Fl::event_y();
  323. if ( Fl::event_button3() && X < Track::width() )
  324. {
  325. int c = output.size();
  326. /* context menu */
  327. Fl_Menu_Item menu[] =
  328. {
  329. { "Type", 0, 0, 0, FL_SUBMENU },
  330. { "Mono", 0, 0, 0, FL_MENU_RADIO | ( c == 1 ? FL_MENU_VALUE : 0 ) },
  331. { "Stereo", 0, 0, 0, FL_MENU_RADIO | ( c == 2 ? FL_MENU_VALUE : 0 ) },
  332. { "Quad", 0, 0, 0, FL_MENU_RADIO | ( c == 4 ? FL_MENU_VALUE : 0 ) },
  333. { "...", 0, 0, 0, FL_MENU_RADIO | ( c == 3 || c > 4 ? FL_MENU_VALUE : 0 ) },
  334. { 0 },
  335. { "Color" },
  336. { "Remove", 0, 0, 0, transport->rolling ? FL_MENU_INACTIVE : 0 },
  337. { 0 },
  338. };
  339. const Fl_Menu_Item *r = menu->popup( X, Y, "Track" );
  340. if ( r && r > &menu[ 0 ] )
  341. {
  342. if ( r < &menu[ 4 ] )
  343. {
  344. int c = r - &menu[1];
  345. int ca[] = { 1, 2, 4 };
  346. configure_inputs( ca[ c ] );
  347. configure_outputs( ca[ c ] );
  348. }
  349. else
  350. {
  351. if ( r == &menu[ 4 ] )
  352. {
  353. const char *s = fl_input( "How many channels?", "3" );
  354. int c = atoi( s );
  355. if ( c <= 0 || c > 10 )
  356. fl_alert( "Invalid number of channels." );
  357. else
  358. {
  359. configure_inputs( c );
  360. configure_outputs( c );
  361. }
  362. }
  363. else if ( r == &menu[ 6 ] )
  364. {
  365. unsigned char r, g, b;
  366. Fl::get_color( color(), r, g, b );
  367. if ( fl_color_chooser( "Track Color", r, g, b ) )
  368. {
  369. color( fl_rgb_color( r, g, b ) );
  370. }
  371. // color( fl_show_colormap( color() ) );
  372. redraw();
  373. }
  374. else if ( r == &menu[ 7 ] )
  375. {
  376. int r = fl_choice( "Are you certain you want to remove track \"%s\"?", "Cancel", NULL, "Remove", name() );
  377. if ( r == 2 )
  378. {
  379. timeline->remove_track( this );
  380. /* FIXME: need to queue deletion. in a way that won't crash the playback. */
  381. // delete this;
  382. Fl::delete_widget( this );
  383. }
  384. }
  385. }
  386. }
  387. return 1;
  388. }
  389. }
  390. default:
  391. return Fl_Group::handle( m );
  392. }
  393. return 0;
  394. }
  395. /**********/
  396. /* Engine */
  397. /**********/
  398. const char *
  399. Track::name_for_port ( Port::type_e type, int n )
  400. {
  401. static char pname[256];
  402. snprintf( pname, sizeof( pname ), "%s/%s-%d",
  403. name(),
  404. type == Port::Output ? "out" : "in",
  405. n + 1 );
  406. return pname;
  407. }
  408. void
  409. Track::update_port_names ( void )
  410. {
  411. for ( int i = 0; i < output.size(); ++i )
  412. output[ i ].name( name_for_port( output[ i ].type(), i ) );
  413. for ( int i = 0; i < input.size(); ++i )
  414. input[ i ].name( name_for_port( input[ i ].type(), i ) );
  415. }
  416. bool
  417. Track::configure_outputs ( int n )
  418. {
  419. int on = output.size();
  420. if ( n == on )
  421. return true;
  422. // engine->lock();
  423. Playback_DS *ds = playback_ds;
  424. playback_ds = NULL;
  425. ds->shutdown();
  426. delete ds;
  427. if ( n > on )
  428. {
  429. for ( int i = on; i < n; ++i )
  430. {
  431. Port p( strdup( name_for_port( Port::Output, i ) ), Port::Output );
  432. if ( p.valid() )
  433. output.push_back( p );
  434. else
  435. printf( "error: could not create output port!\n" );
  436. }
  437. }
  438. else
  439. {
  440. for ( int i = on; i > n; --i )
  441. {
  442. output.back().shutdown();
  443. output.pop_back();
  444. }
  445. }
  446. playback_ds = new Playback_DS( this, engine->frame_rate(), engine->nframes(), output.size() );
  447. // engine->unlock();
  448. /* FIXME: bogus */
  449. return true;
  450. }
  451. bool
  452. Track::configure_inputs ( int n )
  453. {
  454. int on = input.size();
  455. if ( n == on )
  456. return true;
  457. // engine->lock();
  458. Record_DS *ds = record_ds;
  459. record_ds = NULL;
  460. ds->shutdown();
  461. delete ds;
  462. if ( n > on )
  463. {
  464. for ( int i = on; i < n; ++i )
  465. {
  466. Port p( strdup( name_for_port( Port::Input, i ) ), Port::Input );
  467. if ( p.valid() )
  468. input.push_back( p );
  469. else
  470. printf( "error: could not create input port!\n" );
  471. }
  472. }
  473. else
  474. {
  475. for ( int i = on; i > n; --i )
  476. {
  477. input.back().shutdown();
  478. input.pop_back();
  479. }
  480. }
  481. record_ds = new Record_DS( this, engine->frame_rate(), engine->nframes(), input.size() );
  482. // engine->unlock();
  483. /* FIXME: bogus */
  484. return true;
  485. }
  486. /* THREAD: RT */
  487. nframes_t
  488. Track::process ( nframes_t nframes )
  489. {
  490. if ( playback_ds )
  491. {
  492. record_ds->process( nframes );
  493. return playback_ds->process( nframes );
  494. }
  495. else
  496. return 0;
  497. }
  498. /* THREAD: RT */
  499. void
  500. Track::seek ( nframes_t frame )
  501. {
  502. if ( playback_ds )
  503. return playback_ds->seek( frame );
  504. }
  505. /* FIXME: what about theading issues with this region/audiofile being
  506. accessible from the UI thread? Need locking? */
  507. #include "Region.H"
  508. #include <time.h>
  509. /** very cheap UUID generator... */
  510. unsigned long long
  511. uuid ( void )
  512. {
  513. time_t t = time( NULL );
  514. return (unsigned long long) t;
  515. }
  516. /* THREAD: IO */
  517. /** create capture region and prepare to record */
  518. void
  519. Track::record ( nframes_t frame )
  520. {
  521. assert( _capture == NULL );
  522. char pat[256];
  523. snprintf( pat, sizeof( pat ), "%s-%llu", name(), uuid() );
  524. _capture_af = Audio_File_SF::create( pat, 48000, input.size(), Track::capture_format );
  525. if ( ! _capture_af )
  526. {
  527. /* ERROR */
  528. }
  529. /* open it again for reading in the GUI thread */
  530. Audio_File *af = Audio_File::from_file( _capture_af->name() );
  531. _capture = new Region( af, track(), frame );
  532. _capture->prepare();
  533. }
  534. /* THREAD: IO */
  535. /** write a block to the (already opened) capture file */
  536. void
  537. Track::write ( sample_t *buf, nframes_t nframes )
  538. {
  539. nframes_t l = _capture_af->write( buf, nframes );
  540. _capture->write( l );
  541. }
  542. #include <stdio.h>
  543. /* THREAD: IO */
  544. void
  545. Track::stop ( nframes_t nframes )
  546. {
  547. _capture->finalize();
  548. _capture = NULL;
  549. }