2013-09-10 22:51:05 +02:00
|
|
|
|
|
|
|
#include "gmastertrack.hxx"
|
|
|
|
|
2013-09-14 04:57:58 +02:00
|
|
|
static void gmastertrack_tempoDial_callback(Fl_Widget *w, void *data)
|
|
|
|
{
|
|
|
|
Avtk::Dial* b = (Avtk::Dial*)w;
|
|
|
|
float bpm = b->value() * 160 + 60; // 60 - 220
|
|
|
|
EventTimeBPM e = EventTimeBPM( bpm );
|
|
|
|
writeToDspRingbuffer( &e );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gmastertrack_button_callback(Fl_Widget *w, void *data)
|
|
|
|
{
|
2013-09-10 22:51:05 +02:00
|
|
|
if ( strcmp( w->label(), "Metro" ) == 0 )
|
|
|
|
{
|
|
|
|
Avtk::Button* b = (Avtk::Button*)w;
|
|
|
|
b->value( !b->value() );
|
|
|
|
EventMetronomeActive e = EventMetronomeActive( b->value() );
|
|
|
|
writeToDspRingbuffer( &e );
|
|
|
|
}
|
|
|
|
else if ( strcmp( w->label(), "Tap" ) == 0 )
|
|
|
|
{
|
|
|
|
EventTimeTempoTap e;
|
|
|
|
writeToDspRingbuffer( &e );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cout << __FILE__ << __LINE__ << " Error: unknown command string" << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GMasterTrack::GMasterTrack(int x, int y, int w, int h, const char* l ) :
|
|
|
|
Fl_Group(x, y, w, h),
|
|
|
|
title( strdup(l) ),
|
|
|
|
bg( x, y , w, h, title ),
|
|
|
|
|
2013-09-10 23:23:32 +02:00
|
|
|
// with "true" master flag: launches scenes instead of clips on tracks
|
2013-09-10 22:51:05 +02:00
|
|
|
clipSel(x + 5, y + 26 + 102, 140, 294,"", true),
|
|
|
|
|
|
|
|
source(x+5, y+26, 140, 100, ""),
|
|
|
|
volBox(x+5, y+422, 140, 172, ""),
|
|
|
|
|
2013-09-10 23:23:32 +02:00
|
|
|
tapTempo ( x + w * 2/4.f - 18, y + 426 + 41 * 0, 44,38, "Tap"),
|
|
|
|
metronomeButton( x + w * 2/4.f - 18, y + 426 + 41 * 1, 44, 38,"Metro"),
|
2013-09-10 22:51:05 +02:00
|
|
|
|
2013-09-11 00:09:45 +02:00
|
|
|
tempoDial ( x + w * 2/4.f - 18, y + 426 + 41 * 2, 45, 36,"BPM"),
|
2013-09-11 02:32:58 +02:00
|
|
|
returnVol ( x + w * 2/4.f - 18, y + 426 + 41 * 3, 45, 36,"Return"),
|
|
|
|
|
2013-09-10 23:23:32 +02:00
|
|
|
inputVolume(x + 9,y + 26 + 4, w - 18, 29,""),
|
2013-09-11 02:32:58 +02:00
|
|
|
inputToRecord(x + 9,y + 26 + 35, w / 2, 29,"to REC"),
|
|
|
|
inputToMix (x + 9,y + 26 + 64, w / 2, 29,"to MIX"),
|
|
|
|
|
2013-09-10 22:51:05 +02:00
|
|
|
volume(x+106, y +425, 36, 166, "")
|
|
|
|
{
|
|
|
|
ID = privateID++;
|
|
|
|
|
|
|
|
bar = 0;
|
|
|
|
|
|
|
|
inputVolume.setOrientationHorizontal();
|
2013-09-10 23:23:32 +02:00
|
|
|
|
2013-09-10 22:51:05 +02:00
|
|
|
tapTempo.callback( gmastertrack_button_callback, &ID );
|
|
|
|
metronomeButton.callback( gmastertrack_button_callback, 0 );
|
2013-09-11 00:09:45 +02:00
|
|
|
|
2013-09-14 04:57:58 +02:00
|
|
|
tempoDial.callback( gmastertrack_tempoDial_callback, 0 );
|
|
|
|
|
2013-09-11 00:09:45 +02:00
|
|
|
tempoDial.align( FL_ALIGN_CENTER );
|
2013-09-11 02:32:58 +02:00
|
|
|
returnVol.align( FL_ALIGN_CENTER );
|
2013-09-10 22:51:05 +02:00
|
|
|
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
{
|
2013-09-10 23:23:32 +02:00
|
|
|
beatLights[i] = new Avtk::LightButton( x + 11, y + 426 + 41 * i, 38, 38, "" );
|
2013-09-10 22:51:05 +02:00
|
|
|
}
|
2013-09-10 23:23:32 +02:00
|
|
|
beatLights[0]->setColor( 1.0, 0.0 , 0.0 );
|
|
|
|
beatLights[1]->setColor( 1.0, 0.48, 0.0 );
|
|
|
|
beatLights[2]->setColor( 1.0, 1.0 , 0.0 );
|
|
|
|
beatLights[3]->setColor( 0.0, 1.0 , 0.0 );
|
2013-09-10 22:51:05 +02:00
|
|
|
|
|
|
|
volBox.maximum(1.0f);
|
|
|
|
volBox.minimum(0.0f);
|
|
|
|
volBox.color( FL_BLACK );
|
|
|
|
|
|
|
|
source.maximum(1.0f);
|
|
|
|
source.minimum(0.0f);
|
|
|
|
source.color( FL_BLACK );
|
|
|
|
|
|
|
|
volume.amplitude( 0.0, 0.0 );
|
|
|
|
|
|
|
|
end(); // close the group
|
|
|
|
}
|
|
|
|
|
2013-09-11 00:09:45 +02:00
|
|
|
void GMasterTrack::setBpm( int b )
|
|
|
|
{
|
|
|
|
bpm = b;
|
2013-09-14 04:57:58 +02:00
|
|
|
tempoDial.value( ( bpm - 60 ) / 160.f );
|
2013-09-11 00:09:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int GMasterTrack::getBpm()
|
|
|
|
{
|
|
|
|
return bpm;
|
|
|
|
}
|
|
|
|
|
2013-09-10 22:51:05 +02:00
|
|
|
void GMasterTrack::setTapTempo( bool b )
|
|
|
|
{
|
2013-09-11 00:09:45 +02:00
|
|
|
tapTempo.setHighlight( b );
|
2013-09-10 22:51:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void GMasterTrack::setBarBeat(int b, int beat)
|
|
|
|
{
|
|
|
|
if ( beat % 4 == 0 )
|
|
|
|
{
|
|
|
|
bar = bar % 4 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int num = (beat % 4) + 1;
|
|
|
|
|
|
|
|
//cout << bar << " " << num << endl;
|
|
|
|
|
|
|
|
// turn all off
|
2013-09-10 23:23:32 +02:00
|
|
|
for( int i = 0; i < 4; i++)
|
2013-09-10 22:51:05 +02:00
|
|
|
beatLights[i]->value( 0 );
|
|
|
|
|
|
|
|
// beat starts at 4
|
|
|
|
for( int i = 0; i < num; i++)
|
2013-09-10 23:23:32 +02:00
|
|
|
beatLights[3-i]->value( 1 );
|
2013-09-10 22:51:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Avtk::Volume* GMasterTrack::getInputVolume()
|
|
|
|
{
|
|
|
|
return &inputVolume;
|
|
|
|
}
|
|
|
|
Avtk::Volume* GMasterTrack::getVolume()
|
|
|
|
{
|
|
|
|
return &volume;
|
|
|
|
}
|
|
|
|
Avtk::ClipSelector* GMasterTrack::getClipSelector()
|
|
|
|
{
|
|
|
|
return &clipSel;
|
|
|
|
}
|
|
|
|
|
|
|
|
GMasterTrack::~GMasterTrack()
|
|
|
|
{
|
|
|
|
free(title);
|
|
|
|
}
|