cwIoPresetSelApp.cpp, cwPresetSel.h/cpp: Fix problem where correct preset was not selected when playing outside the currently selected fragment.
Added p->sel_frag_id to track last frag. triggered so that fragment_play_preset_index() selects correct preset for fragments outside of the currently selected fragment when play-all or play-seq.
This commit is contained in:
parent
141bd8da73
commit
cb192f32cb
@ -292,16 +292,16 @@ namespace cw
|
|||||||
bool trackMidiFl; // apply presets based on MIDI location (otherwise respond only to direct manipulation of fragment control)
|
bool trackMidiFl; // apply presets based on MIDI location (otherwise respond only to direct manipulation of fragment control)
|
||||||
bool audioFileSrcFl;
|
bool audioFileSrcFl;
|
||||||
|
|
||||||
unsigned pvWndSmpCnt;
|
unsigned pvWndSmpCnt;
|
||||||
bool sdBypassFl;
|
bool sdBypassFl;
|
||||||
double sdInGain;
|
double sdInGain;
|
||||||
double sdCeiling;
|
double sdCeiling;
|
||||||
double sdExpo;
|
double sdExpo;
|
||||||
double sdThresh;
|
double sdThresh;
|
||||||
double sdUpr;
|
double sdUpr;
|
||||||
double sdLwr;
|
double sdLwr;
|
||||||
double sdMix;
|
double sdMix;
|
||||||
bool cmpBypassFl;
|
bool cmpBypassFl;
|
||||||
|
|
||||||
} app_t;
|
} app_t;
|
||||||
|
|
||||||
@ -428,6 +428,7 @@ namespace cw
|
|||||||
char s[sN];
|
char s[sN];
|
||||||
vsnprintf(s,sN,fmt,vl);
|
vsnprintf(s,sN,fmt,vl);
|
||||||
uiSendValue( app->ioH, uiFindElementUuId(app->ioH,kStatusId), s );
|
uiSendValue( app->ioH, uiFindElementUuId(app->ioH,kStatusId), s );
|
||||||
|
//printf("Status:%s\n",s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -470,14 +471,12 @@ namespace cw
|
|||||||
return kOkRC;
|
return kOkRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc_t _apply_preset( app_t* app, const time::spec_t& ts, unsigned loc, const preset_sel::frag_t* frag=nullptr )
|
rc_t _apply_preset( app_t* app, unsigned loc, const preset_sel::frag_t* frag=nullptr )
|
||||||
{
|
{
|
||||||
// if frag is NULL this is the beginning of a play session
|
// if frag is NULL this is the beginning of a play session
|
||||||
if( frag == nullptr )
|
if( frag == nullptr )
|
||||||
{
|
{
|
||||||
preset_sel::track_loc_reset(app->psH);
|
preset_sel::track_loc_reset(app->psH);
|
||||||
//preset_sel::track_timestamp( app->psH, ts, frag);
|
|
||||||
|
|
||||||
preset_sel::track_loc( app->psH, loc, frag);
|
preset_sel::track_loc( app->psH, loc, frag);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -492,7 +491,7 @@ namespace cw
|
|||||||
unsigned seq_idx_n = app->seqActiveFl ? app->seqPresetIdx : kInvalidIdx;
|
unsigned seq_idx_n = app->seqActiveFl ? app->seqPresetIdx : kInvalidIdx;
|
||||||
|
|
||||||
// get the preset index to play for this fragment
|
// get the preset index to play for this fragment
|
||||||
if((preset_idx = fragment_play_preset_index(frag,seq_idx_n)) == kInvalidIdx )
|
if((preset_idx = fragment_play_preset_index(app->psH, frag,seq_idx_n)) == kInvalidIdx )
|
||||||
cwLogInfo("No preset has been assigned to the fragment at end loc. '%i'.",frag->endLoc );
|
cwLogInfo("No preset has been assigned to the fragment at end loc. '%i'.",frag->endLoc );
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -585,7 +584,7 @@ namespace cw
|
|||||||
if( preset_sel::track_loc( app->psH, loc, f ) )
|
if( preset_sel::track_loc( app->psH, loc, f ) )
|
||||||
{
|
{
|
||||||
//printf("NEW FRAG: id:%i loc:%i\n", f->fragId, f->endLoc );
|
//printf("NEW FRAG: id:%i loc:%i\n", f->fragId, f->endLoc );
|
||||||
_apply_preset( app, timestamp, loc, f );
|
_apply_preset( app, loc, f );
|
||||||
|
|
||||||
if( f != nullptr )
|
if( f != nullptr )
|
||||||
_do_select_frag( app, f->guiUuId );
|
_do_select_frag( app, f->guiUuId );
|
||||||
@ -696,6 +695,7 @@ namespace cw
|
|||||||
|
|
||||||
//midi_record_play::half_pedal_params( app->mrpH, app->hpDelayMs, app->hpPitch, app->hpVel, app->hpPedalVel, app->hpDurMs, app->hpDnDelayMs );
|
//midi_record_play::half_pedal_params( app->mrpH, app->hpDelayMs, app->hpPitch, app->hpVel, app->hpPedalVel, app->hpDurMs, app->hpDnDelayMs );
|
||||||
|
|
||||||
|
// If we are using an audio file as the audio source
|
||||||
if( app->audioFileSrcFl )
|
if( app->audioFileSrcFl )
|
||||||
{
|
{
|
||||||
if((rc = io_flow::set_variable_value( app->ioFlowH, flow_cross::kAllDestId, "aud_in", "on_off", flow::kAnyChIdx, true )) != kOkRC )
|
if((rc = io_flow::set_variable_value( app->ioFlowH, flow_cross::kAllDestId, "aud_in", "on_off", flow::kAnyChIdx, true )) != kOkRC )
|
||||||
@ -739,7 +739,7 @@ namespace cw
|
|||||||
}
|
}
|
||||||
|
|
||||||
// apply the preset which is active at the start time
|
// apply the preset which is active at the start time
|
||||||
if((rc = _apply_preset( app, app->beg_play_timestamp, begMap->loc )) != kOkRC )
|
if((rc = _apply_preset( app, begMap->loc )) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Preset application failed prior to MIDI start.");
|
rc = cwLogError(rc,"Preset application failed prior to MIDI start.");
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
@ -764,13 +764,14 @@ namespace cw
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This function is used to apply the selected (checked) preset immediately.
|
||||||
rc_t _apply_current_preset( app_t* app, unsigned fragId )
|
rc_t _apply_current_preset( app_t* app, unsigned fragId )
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
rc_t rc = kOkRC;
|
||||||
time::spec_t ts = {0};
|
const preset_sel::frag_t* frag = nullptr;
|
||||||
const preset_sel::frag_t* frag = nullptr;
|
bool orig_seqActiveFl = app->seqActiveFl;
|
||||||
bool orig_seqActiveFl = app->seqActiveFl;
|
|
||||||
|
|
||||||
|
// temporarily turn of the preset sequencer (if it is active)
|
||||||
app->seqActiveFl = false;
|
app->seqActiveFl = false;
|
||||||
|
|
||||||
if((frag = preset_sel::get_fragment( app->psH, fragId )) == nullptr )
|
if((frag = preset_sel::get_fragment( app->psH, fragId )) == nullptr )
|
||||||
@ -780,7 +781,7 @@ namespace cw
|
|||||||
}
|
}
|
||||||
|
|
||||||
// apply the preset which is active at the start time
|
// apply the preset which is active at the start time
|
||||||
if((rc = _apply_preset( app, ts, frag->begPlayLoc, frag )) != kOkRC )
|
if((rc = _apply_preset( app, frag->begPlayLoc, frag )) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Preset application failed on fragment at id '%i'.",fragId);
|
rc = cwLogError(rc,"Preset application failed on fragment at id '%i'.",fragId);
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
@ -797,13 +798,17 @@ namespace cw
|
|||||||
rc_t rc;
|
rc_t rc;
|
||||||
unsigned begLoc = 0;
|
unsigned begLoc = 0;
|
||||||
unsigned endLoc = 0;
|
unsigned endLoc = 0;
|
||||||
|
|
||||||
|
// get the fragment starting location as currently set in the UI
|
||||||
|
// (this may be different from the fragment begin location)
|
||||||
if((rc = get_value( app->psH, fragId, preset_sel::kBegPlayLocVarId, kInvalidId, begLoc )) != kOkRC )
|
if((rc = get_value( app->psH, fragId, preset_sel::kBegPlayLocVarId, kInvalidId, begLoc )) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Could not retrieve the begin play location for fragment id:%i.",fragId);
|
rc = cwLogError(rc,"Could not retrieve the begin play location for fragment id:%i.",fragId);
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// get the fragment ending location as currently set in the UI
|
||||||
|
// (this may be different from the fragment end location)
|
||||||
if((rc = get_value( app->psH, fragId, preset_sel::kEndPlayLocVarId, kInvalidId, endLoc )) != kOkRC )
|
if((rc = get_value( app->psH, fragId, preset_sel::kEndPlayLocVarId, kInvalidId, endLoc )) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Could not retrieve the begin play location for fragment id:%i.",fragId);
|
rc = cwLogError(rc,"Could not retrieve the begin play location for fragment id:%i.",fragId);
|
||||||
|
@ -36,6 +36,8 @@ namespace cw
|
|||||||
double master_wet_out_gain;
|
double master_wet_out_gain;
|
||||||
double master_dry_gain;
|
double master_dry_gain;
|
||||||
double master_sync_delay_ms;
|
double master_sync_delay_ms;
|
||||||
|
|
||||||
|
unsigned sel_frag_id; // fragment id assoc'd with last selected frag. ui element
|
||||||
|
|
||||||
} preset_sel_t;
|
} preset_sel_t;
|
||||||
|
|
||||||
@ -245,11 +247,6 @@ namespace cw
|
|||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rc_t _validate_preset_id( const frag_t* frag, unsigned preset_id )
|
rc_t _validate_preset_id( const frag_t* frag, unsigned preset_id )
|
||||||
@ -272,9 +269,13 @@ namespace cw
|
|||||||
|
|
||||||
// if this is not a 'master' variable then locate the requested fragment
|
// if this is not a 'master' variable then locate the requested fragment
|
||||||
if( !_is_master_var_id(varId) )
|
if( !_is_master_var_id(varId) )
|
||||||
|
{
|
||||||
if((rc = _find_frag(p,fragId,f)) != kOkRC )
|
if((rc = _find_frag(p,fragId,f)) != kOkRC )
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
|
|
||||||
|
p->sel_frag_id = fragId;
|
||||||
|
}
|
||||||
|
|
||||||
switch( varId )
|
switch( varId )
|
||||||
{
|
{
|
||||||
case kGuiUuIdVarId:
|
case kGuiUuIdVarId:
|
||||||
@ -932,14 +933,16 @@ bool cw::preset_sel::track_loc( handle_t h, unsigned loc, const cw::preset_sel::
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
unsigned cw::preset_sel::fragment_play_preset_index( const frag_t* frag, unsigned preset_seq_idx )
|
unsigned cw::preset_sel::fragment_play_preset_index( handle_t h, const frag_t* frag, unsigned preset_seq_idx )
|
||||||
{
|
{
|
||||||
unsigned n = 0;
|
unsigned n = 0;
|
||||||
|
preset_sel_t* p = _handleToPtr(h);
|
||||||
|
|
||||||
// for each preset
|
// for each preset
|
||||||
for(unsigned i=0; i<frag->presetN; ++i)
|
for(unsigned i=0; i<frag->presetN; ++i)
|
||||||
{
|
{
|
||||||
// if 'preset_seq_idx' is not valid ...
|
// if 'preset_seq_idx' is not valid ...
|
||||||
if( preset_seq_idx==kInvalidIdx )
|
if( preset_seq_idx==kInvalidIdx || frag->fragId != p->sel_frag_id )
|
||||||
{
|
{
|
||||||
// ...then select the first preset whose 'playFl' is set.
|
// ...then select the first preset whose 'playFl' is set.
|
||||||
if( frag->presetA[i].playFl )
|
if( frag->presetA[i].playFl )
|
||||||
|
@ -120,7 +120,7 @@ namespace cw
|
|||||||
bool track_loc( handle_t h, unsigned loc, const cw::preset_sel::frag_t*& frag_Ref );
|
bool track_loc( handle_t h, unsigned loc, const cw::preset_sel::frag_t*& frag_Ref );
|
||||||
|
|
||||||
// Return the preset index marked to play on this fragment.
|
// Return the preset index marked to play on this fragment.
|
||||||
unsigned fragment_play_preset_index( const frag_t* frag, unsigned preset_seq_idx=kInvalidIdx );
|
unsigned fragment_play_preset_index( handle_t h, const frag_t* frag, unsigned preset_seq_idx=kInvalidIdx );
|
||||||
|
|
||||||
// Return the count of presets whose 'seqFl' is set.
|
// Return the count of presets whose 'seqFl' is set.
|
||||||
unsigned fragment_seq_count( handle_t h, unsigned fragId );
|
unsigned fragment_seq_count( handle_t h, unsigned fragId );
|
||||||
|
Loading…
Reference in New Issue
Block a user