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.

225 lines
5.9KB

  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. #pragma once
  19. #include <FL/Fl.H>
  20. #include "Sequence.H"
  21. #include <FL/Fl_Group.H>
  22. #include <FL/Fl_Input.H>
  23. #include <FL/Fl_Button.H>
  24. #include <FL/Fl_Menu_Button.H>
  25. #include <FL/Fl_Pack.H>
  26. #include <FL/Fl_Box.H>
  27. #include <FL/fl_draw.H>
  28. #include "Loggable.H"
  29. /* TODO: rename this to Audio_Track or something since it's clearly audio specific. */
  30. #include <vector>
  31. using std::vector;
  32. #include "JACK/Port.H"
  33. #include "Timeline.H"
  34. class Control_Sequence;
  35. class Annotation_Sequence;
  36. class Playback_DS;
  37. class Record_DS;
  38. // class JACK::Port;
  39. class Audio_Region;
  40. class Audio_File;
  41. //class Audio_Sequence;
  42. #include "Audio_Sequence.H"
  43. class Track : public Fl_Group, public Loggable
  44. {
  45. /* not permitted */
  46. Track ( const Track &rhs );
  47. Track & operator= ( const Track &rhs );
  48. public:
  49. Track ( const char *L, int channels=1 );
  50. virtual ~Track ( );
  51. static bool soloing ( void ) { return _soloing; }
  52. static const char *capture_format;
  53. struct Capture
  54. {
  55. Audio_File *audio_file;
  56. Audio_Region *region;
  57. };
  58. private:
  59. static int _soloing;
  60. char *_name;
  61. bool _selected;
  62. bool _show_all_takes;
  63. int _size;
  64. enum { AUDIO } _type;
  65. Audio_Sequence *_sequence;
  66. bool configure_outputs ( int n );
  67. bool configure_inputs ( int n );
  68. void update_port_names ( void );
  69. const char *name_for_port( JACK::Port::type_e type, int n );
  70. void update_take_menu ( void );
  71. Track ( );
  72. void init ( void );
  73. protected:
  74. void get ( Log_Entry &e ) const;
  75. void get_unjournaled ( Log_Entry &e ) const;
  76. void set ( Log_Entry &e );
  77. public:
  78. virtual void log_children ( void ) const;
  79. Fl_Input *name_field;
  80. Fl_Button *record_button;
  81. Fl_Button *mute_button;
  82. Fl_Button *solo_button;
  83. Fl_Menu_Button *take_menu;
  84. Fl_Group *controls;
  85. Fl_Pack *pack;
  86. Fl_Pack *annotation;
  87. Fl_Pack *control;
  88. Fl_Pack *takes;
  89. vector<JACK::Port> input; /* input ports... */
  90. vector<JACK::Port> output; /* output ports... */
  91. Playback_DS *playback_ds;
  92. Record_DS *record_ds;
  93. /* for loggable */
  94. LOG_CREATE_FUNC( Track );
  95. void add ( Annotation_Sequence *t );
  96. void remove ( Annotation_Sequence *t );
  97. void add ( Control_Sequence *t );
  98. void add ( Audio_Sequence *t );
  99. void remove ( Audio_Sequence *t );
  100. void remove ( Control_Sequence *t );
  101. void select ( int X, int Y, int W, int H, bool include_control, bool merge_control );
  102. int size ( void ) const { return _size; }
  103. int ncontrols ( void ) { return control->children(); }
  104. void resize ( void );
  105. void size ( int v );
  106. int height ( void ) const
  107. {
  108. static int table[] = { 30, 80, 150, 300 };
  109. return table[ _size ];
  110. }
  111. void show_all_takes ( bool b )
  112. {
  113. _show_all_takes = b;
  114. resize();
  115. }
  116. void name ( const char *name )
  117. {
  118. if ( _name )
  119. free( _name );
  120. _name = strdup( name );
  121. if ( name_field )
  122. name_field->value( _name );
  123. update_port_names();
  124. }
  125. const char * name ( void ) const { return _name; }
  126. bool mute ( void ) const { return mute_button->value(); }
  127. void mute ( bool b ) { mute_button->value( b ); }
  128. bool solo ( void ) const { return solo_button->value(); }
  129. void solo ( bool b );
  130. bool armed ( void ) const { return record_button->value(); }
  131. void armed ( bool b ) { record_button->value( b ); }
  132. bool selected ( void ) const { return _selected; }
  133. static void cb_input_field ( Fl_Widget *w, void *v );
  134. void cb_input_field ( void );
  135. static void cb_button ( Fl_Widget *w, void *v );
  136. void cb_button ( Fl_Widget *w );
  137. static int width ( void ) { return 150; }
  138. void sequence ( Audio_Sequence * t );
  139. Audio_Sequence * sequence ( void ) const { return _sequence; }
  140. Fl_Menu_Button & menu ( void ) const;
  141. static void menu_cb ( Fl_Widget *w, void *v );
  142. void menu_cb ( const Fl_Menu_ *m );
  143. void draw ( void );
  144. int handle ( int m );
  145. /* Engine */
  146. const Audio_Region *capture_region ( void ) const;
  147. void resize_buffers ( nframes_t nframes );
  148. nframes_t process_input ( nframes_t nframes );
  149. nframes_t process_output ( nframes_t nframes );
  150. void seek ( nframes_t frame );
  151. void delay ( nframes_t frames );
  152. void record ( Capture *c, nframes_t frame );
  153. void write ( Capture *c, sample_t *buf, nframes_t nframes );
  154. void finalize ( Capture *c, nframes_t frame );
  155. };