cwIoPresetSelApp.cpp : Added fragment ordering, selection, deletion.
This commit is contained in:
parent
af51831a39
commit
b139562cb7
@ -43,7 +43,8 @@ namespace cw
|
|||||||
kLoadBtnId,
|
kLoadBtnId,
|
||||||
kFnStringId,
|
kFnStringId,
|
||||||
|
|
||||||
kLocNumbId,
|
kBegPlayLocNumbId,
|
||||||
|
kEndPlayLocNumbId,
|
||||||
|
|
||||||
kInsertLocId,
|
kInsertLocId,
|
||||||
kInsertBtnId,
|
kInsertBtnId,
|
||||||
@ -60,8 +61,6 @@ namespace cw
|
|||||||
kFragGainId,
|
kFragGainId,
|
||||||
kFragWetDryGainId,
|
kFragWetDryGainId,
|
||||||
kFragFadeOutMsId
|
kFragFadeOutMsId
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
enum
|
||||||
@ -88,16 +87,16 @@ namespace cw
|
|||||||
{ kPanelDivId, kCurAudioSecsId, "curAudioSecsId" },
|
{ kPanelDivId, kCurAudioSecsId, "curAudioSecsId" },
|
||||||
{ kPanelDivId, kTotalAudioSecsId, "totalAudioSecsId" },
|
{ kPanelDivId, kTotalAudioSecsId, "totalAudioSecsId" },
|
||||||
|
|
||||||
|
|
||||||
{ kPanelDivId, kSaveBtnId, "saveBtnId" },
|
{ kPanelDivId, kSaveBtnId, "saveBtnId" },
|
||||||
{ kPanelDivId, kLoadBtnId, "loadBtnId" },
|
{ kPanelDivId, kLoadBtnId, "loadBtnId" },
|
||||||
{ kPanelDivId, kFnStringId, "filenameId" },
|
{ kPanelDivId, kFnStringId, "filenameId" },
|
||||||
|
|
||||||
{ kPanelDivId, kLocNumbId, "locNumbId" },
|
{ kPanelDivId, kBegPlayLocNumbId, "begLocNumbId" },
|
||||||
|
{ kPanelDivId, kEndPlayLocNumbId, "endLocNumbId" },
|
||||||
|
|
||||||
{ kPanelDivId, kInsertLocId, "insertLocId" },
|
{ kPanelDivId, kInsertLocId, "insertLocId" },
|
||||||
{ kPanelDivId, kInsertBtnId, "insertBtnId" },
|
{ kPanelDivId, kInsertBtnId, "insertBtnId" },
|
||||||
{ kDeleteBtnId, kDeleteBtnId, "deleteBtnId" },
|
{ kPanelDivId, kDeleteBtnId, "deleteBtnId" },
|
||||||
|
|
||||||
{ kPanelDivId, kFragListId, "fragListId" },
|
{ kPanelDivId, kFragListId, "fragListId" },
|
||||||
{ kFragListId, kFragPanelId, "fragPanelId"},
|
{ kFragListId, kFragPanelId, "fragPanelId"},
|
||||||
@ -117,6 +116,13 @@ namespace cw
|
|||||||
time::spec_t timestamp;
|
time::spec_t timestamp;
|
||||||
} loc_map_t;
|
} loc_map_t;
|
||||||
|
|
||||||
|
typedef struct ui_blob_str
|
||||||
|
{
|
||||||
|
unsigned fragId;
|
||||||
|
unsigned varId;
|
||||||
|
unsigned presetId;
|
||||||
|
} ui_blob_t;
|
||||||
|
|
||||||
typedef struct app_str
|
typedef struct app_str
|
||||||
{
|
{
|
||||||
io::handle_t ioH;
|
io::handle_t ioH;
|
||||||
@ -137,6 +143,9 @@ namespace cw
|
|||||||
|
|
||||||
unsigned insertLoc; // last valid insert location id received from the GUI
|
unsigned insertLoc; // last valid insert location id received from the GUI
|
||||||
|
|
||||||
|
time::spec_t beg_play_timestamp;
|
||||||
|
time::spec_t end_play_timestamp;
|
||||||
|
|
||||||
preset_sel::handle_t psH;
|
preset_sel::handle_t psH;
|
||||||
|
|
||||||
} app_t;
|
} app_t;
|
||||||
@ -257,37 +266,45 @@ namespace cw
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc_t _update_frag_ui(app_t* app, unsigned fragId )
|
// Get the endLoc associated with this fragment id
|
||||||
|
rc_t _frag_id_to_endloc( app_t* app, unsigned fragId, unsigned& endLocRef )
|
||||||
{
|
{
|
||||||
// Notes: fragId == fragPanelUuId
|
rc_t rc = kOkRC;
|
||||||
// uiChanId = endLoc for panel values
|
|
||||||
// or uiChanId = preset_index for preset values
|
|
||||||
|
|
||||||
rc_t rc = kOkRC;
|
endLocRef = kInvalidId;
|
||||||
unsigned fragPanelUuId = fragId;
|
if((rc = get_value( app->psH, fragId, preset_sel::kEndLocVarId, kInvalidId, endLocRef )) != kOkRC )
|
||||||
unsigned endLoc;
|
|
||||||
|
|
||||||
if((rc = get_value( app->psH, fragId, preset_sel::kEndLocVarId, kInvalidId, endLoc )) != kOkRC )
|
|
||||||
{
|
|
||||||
rc = cwLogError(rc,"Unable to get the 'end loc' value for fragment id:%i.",fragId);
|
rc = cwLogError(rc,"Unable to get the 'end loc' value for fragment id:%i.",fragId);
|
||||||
goto errLabel;
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the preset select check boxes on a fragment panel
|
||||||
|
rc_t _update_frag_select_flags( app_t* app, unsigned fragId, unsigned fragEndLoc=kInvalidId )
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
|
||||||
|
// if
|
||||||
|
if( fragEndLoc == kInvalidId )
|
||||||
|
{
|
||||||
|
// get the endLoc associated with this fragment
|
||||||
|
rc = _frag_id_to_endloc(app, fragId, fragEndLoc );
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if( rc == kOkRC )
|
||||||
{
|
{
|
||||||
bool bValue;
|
bool bValue;
|
||||||
unsigned uValue;
|
unsigned uValue;
|
||||||
double dValue;
|
|
||||||
unsigned uiChanId = endLoc;
|
|
||||||
|
|
||||||
|
// The uiChan is the fragment endLoc
|
||||||
|
unsigned uiChanId = fragEndLoc;
|
||||||
|
|
||||||
_update_frag_ui( app, fragId, preset_sel::kEndLocVarId, kInvalidId, fragPanelUuId, kFragEndLocId, uiChanId, uValue );
|
// The fragPanelUUid is the same as the fragId
|
||||||
_update_frag_ui( app, fragId, preset_sel::kGainVarId, kInvalidId, fragPanelUuId, kFragGainId, uiChanId, dValue );
|
unsigned fragPanelUuId = fragId;
|
||||||
_update_frag_ui( app, fragId, preset_sel::kFadeOutMsVarId, kInvalidId, fragPanelUuId, kFragFadeOutMsId, uiChanId, dValue );
|
|
||||||
_update_frag_ui( app, fragId, preset_sel::kWetGainVarId, kInvalidId, fragPanelUuId, kFragWetDryGainId, uiChanId, dValue );
|
|
||||||
|
|
||||||
// uuid of the frag preset row
|
// uuid of the frag preset row
|
||||||
unsigned fragPresetRowUuId = io::uiFindElementUuId( app->ioH, fragPanelUuId, kFragPresetRowId, uiChanId );
|
unsigned fragPresetRowUuId = io::uiFindElementUuId( app->ioH, fragPanelUuId, kFragPresetRowId, uiChanId );
|
||||||
|
|
||||||
|
// Update each fragment preset control UI by getting it's current value from the fragment data record
|
||||||
for(unsigned preset_idx=0; preset_idx<preset_sel::preset_count(app->psH); ++preset_idx)
|
for(unsigned preset_idx=0; preset_idx<preset_sel::preset_count(app->psH); ++preset_idx)
|
||||||
{
|
{
|
||||||
_update_frag_ui( app, fragId, preset_sel::kPresetSelectVarId, preset_idx, fragPresetRowUuId, kFragPresetSelId, preset_idx, bValue );
|
_update_frag_ui( app, fragId, preset_sel::kPresetSelectVarId, preset_idx, fragPresetRowUuId, kFragPresetSelId, preset_idx, bValue );
|
||||||
@ -296,14 +313,67 @@ namespace cw
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
errLabel:
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the fragment UI withh the fragment record associated with 'fragId'
|
||||||
|
rc_t _update_frag_ui(app_t* app, unsigned fragId )
|
||||||
|
{
|
||||||
|
// Notes: fragId == fragPanelUuId
|
||||||
|
// uiChanId = endLoc for panel values
|
||||||
|
// or uiChanId = preset_index for preset values
|
||||||
|
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
unsigned endLoc;
|
||||||
|
|
||||||
|
// get the endLoc for this fragment
|
||||||
|
if((rc = _frag_id_to_endloc(app, fragId, endLoc )) == kOkRC )
|
||||||
|
{
|
||||||
|
unsigned uValue;
|
||||||
|
double dValue;
|
||||||
|
unsigned uiChanId = endLoc;
|
||||||
|
unsigned fragPanelUuId = fragId;
|
||||||
|
|
||||||
|
_update_frag_ui( app, fragId, preset_sel::kEndLocVarId, kInvalidId, fragPanelUuId, kFragEndLocId, uiChanId, uValue );
|
||||||
|
_update_frag_ui( app, fragId, preset_sel::kGainVarId, kInvalidId, fragPanelUuId, kFragGainId, uiChanId, dValue );
|
||||||
|
_update_frag_ui( app, fragId, preset_sel::kFadeOutMsVarId, kInvalidId, fragPanelUuId, kFragFadeOutMsId, uiChanId, dValue );
|
||||||
|
_update_frag_ui( app, fragId, preset_sel::kWetGainVarId, kInvalidId, fragPanelUuId, kFragWetDryGainId, uiChanId, dValue );
|
||||||
|
|
||||||
|
|
||||||
|
_update_frag_select_flags( app, fragId, endLoc );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
template< typename T>
|
template< typename T>
|
||||||
rc_t _on_ui_frag_value( app_t* app, unsigned parentAppId, unsigned uuId, unsigned appId, unsigned chanId, const T& value )
|
rc_t _on_ui_frag_value( app_t* app, unsigned uuId, const T& value )
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
rc_t rc = kOkRC;
|
||||||
|
unsigned blobByteN = 0;
|
||||||
|
ui_blob_t* blob = nullptr;
|
||||||
|
|
||||||
|
|
||||||
|
if(( blob = (ui_blob_t*)io::uiGetBlob( app->ioH, uuId, blobByteN )) == nullptr || blobByteN != sizeof(ui_blob_t) )
|
||||||
|
return cwLogError(kInvalidStateRC,"A fragment UI blob was missing or corrupt.");
|
||||||
|
|
||||||
|
rc = preset_sel::set_value( app->psH, blob->fragId, blob->varId, blob->presetId, value );
|
||||||
|
|
||||||
|
if( rc != kOkRC )
|
||||||
|
{
|
||||||
|
// TODO: Set the error indicator on the GUI
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// TODO: Clear the error indicator on the GUI
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("FV:%i\n",blob->varId );
|
||||||
|
//
|
||||||
|
if( blob->varId == preset_sel::kPresetSelectVarId )
|
||||||
|
_update_frag_select_flags( app, blob->fragId);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -415,6 +485,11 @@ namespace cw
|
|||||||
// update the current event and event count
|
// update the current event and event count
|
||||||
_update_event_ui(app);
|
_update_event_ui(app);
|
||||||
|
|
||||||
|
// enable the start/stop buttons
|
||||||
|
io::uiSetEnable( app->ioH, io::uiFindElementUuId( app->ioH, kStartBtnId ), true );
|
||||||
|
io::uiSetEnable( app->ioH, io::uiFindElementUuId( app->ioH, kStopBtnId ), true );
|
||||||
|
|
||||||
|
|
||||||
cwLogInfo("'%s' loaded.",app->scoreFn);
|
cwLogInfo("'%s' loaded.",app->scoreFn);
|
||||||
|
|
||||||
errLabel:
|
errLabel:
|
||||||
@ -427,18 +502,25 @@ namespace cw
|
|||||||
rc_t _on_ui_start( app_t* app )
|
rc_t _on_ui_start( app_t* app )
|
||||||
{
|
{
|
||||||
rc_t rc=kOkRC;
|
rc_t rc=kOkRC;
|
||||||
|
bool rewindFl = true;
|
||||||
|
|
||||||
if((rc = midi_record_play::start(app->mrpH)) != kOkRC )
|
if( !time::isZero(app->beg_play_timestamp) )
|
||||||
|
{
|
||||||
|
// seek the player to the requested loc
|
||||||
|
if((rc = midi_record_play::seek( app->mrpH, app->beg_play_timestamp )) != kOkRC )
|
||||||
|
{
|
||||||
|
rc = cwLogError(rc,"MIDI seek failed.");
|
||||||
|
goto errLabel;
|
||||||
|
}
|
||||||
|
rewindFl = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if((rc = midi_record_play::start(app->mrpH,rewindFl,&app->end_play_timestamp)) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"MIDI start failed.");
|
rc = cwLogError(rc,"MIDI start failed.");
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
//if((rc = audio_record_play::start(app->arpH)) != kOkRC )
|
|
||||||
//{
|
|
||||||
// rc = cwLogError(rc,"Audio start failed.");
|
|
||||||
// goto errLabel;
|
|
||||||
//}
|
|
||||||
|
|
||||||
io::uiSendValue( app->ioH, uiFindElementUuId(app->ioH,kCurMidiEvtCntId), midi_record_play::event_index(app->mrpH) );
|
io::uiSendValue( app->ioH, uiFindElementUuId(app->ioH,kCurMidiEvtCntId), midi_record_play::event_index(app->mrpH) );
|
||||||
//io::uiSendValue( app->ioH, kInvalidId, uiFindElementUuId(app->ioH,kCurAudioSecsId), audio_record_play::current_loc_seconds(app->arpH) );
|
//io::uiSendValue( app->ioH, kInvalidId, uiFindElementUuId(app->ioH,kCurAudioSecsId), audio_record_play::current_loc_seconds(app->arpH) );
|
||||||
@ -486,13 +568,18 @@ namespace cw
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool _is_loc_valid( app_t* app, unsigned loc )
|
bool _is_valid_insert_loc( app_t* app, unsigned loc )
|
||||||
{ return _find_loc(app,loc) != nullptr; }
|
|
||||||
|
|
||||||
|
|
||||||
rc_t _on_ui_loc(app_t* app, unsigned loc)
|
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
bool fl0 = _find_loc(app,loc) != nullptr;
|
||||||
|
bool fl1 = preset_sel::is_fragment_loc( app->psH, loc)==false;
|
||||||
|
|
||||||
|
return fl0 && fl1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
rc_t _on_ui_play_loc(app_t* app, unsigned appId, unsigned loc)
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
loc_map_t* map;
|
loc_map_t* map;
|
||||||
|
|
||||||
// locate the map record
|
// locate the map record
|
||||||
@ -502,23 +589,52 @@ namespace cw
|
|||||||
goto errLabel;
|
goto errLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
// seek the player to the requested loc
|
switch( appId )
|
||||||
if((rc = midi_record_play::seek( app->mrpH, map->timestamp )) != kOkRC )
|
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"MIDI seek failed.");
|
case kBegPlayLocNumbId:
|
||||||
goto errLabel;
|
app->beg_play_timestamp = map->timestamp;
|
||||||
}
|
break;
|
||||||
|
|
||||||
// start the player
|
case kEndPlayLocNumbId:
|
||||||
start( app->mrpH, false );
|
app->end_play_timestamp = map->timestamp;
|
||||||
io::uiSendValue( app->ioH, uiFindElementUuId(app->ioH,kCurMidiEvtCntId), midi_record_play::event_index(app->mrpH) );
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
errLabel:
|
errLabel:
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc_t _on_ui_insert_loc( app_t* app, unsigned insertLoc )
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
bool enableFl = _is_valid_insert_loc(app,insertLoc);
|
||||||
|
unsigned insertBtnUuId = io::uiFindElementUuId( app->ioH, kInsertBtnId );
|
||||||
|
|
||||||
rc_t _create_frag_preset_ctl( app_t* app, unsigned fragPresetRowUuId, unsigned presetN, unsigned preset_idx )
|
io::uiSetEnable( app->ioH, insertBtnUuId, enableFl );
|
||||||
|
|
||||||
|
if( enableFl )
|
||||||
|
{
|
||||||
|
app->insertLoc = insertLoc;
|
||||||
|
// TODO: Clear GUI error indicator
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
app->insertLoc = kInvalidId;
|
||||||
|
cwLogWarning("Location '%i' is not valid.",insertLoc);
|
||||||
|
// TODO: Set GUI error indicator
|
||||||
|
}
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
rc_t _frag_set_ui_blob( app_t* app, unsigned uuId, unsigned fragId, unsigned varId, unsigned presetId )
|
||||||
|
{
|
||||||
|
ui_blob_t blob = { .fragId=fragId, .varId=varId, .presetId=presetId };
|
||||||
|
return io::uiSetBlob( app->ioH, uuId, &blob, sizeof(blob) );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
rc_t _create_frag_preset_ctl( app_t* app, unsigned fragId, unsigned fragPresetRowUuId, unsigned presetN, unsigned preset_idx )
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
rc_t rc = kOkRC;
|
||||||
unsigned colUuId = kInvalidId;
|
unsigned colUuId = kInvalidId;
|
||||||
@ -539,10 +655,16 @@ namespace cw
|
|||||||
if((rc = io::uiCreateCheck( app->ioH, uuId, colUuId, nullEleName, kFragPresetSelId, chanId, nullClass, presetLabel )) != kOkRC )
|
if((rc = io::uiCreateCheck( app->ioH, uuId, colUuId, nullEleName, kFragPresetSelId, chanId, nullClass, presetLabel )) != kOkRC )
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
|
|
||||||
|
// store a connection for the select control back to the fragment record
|
||||||
|
_frag_set_ui_blob(app, uuId, fragId, preset_sel::kPresetSelectVarId, preset_idx );
|
||||||
|
|
||||||
|
|
||||||
// preset order number
|
// preset order number
|
||||||
if((rc = io::uiCreateNumb( app->ioH, uuId, colUuId, nullEleName, kFragPresetOrderId, chanId, nullClass, nullptr, 0, presetN, 1, 0 )) != kOkRC )
|
if((rc = io::uiCreateNumb( app->ioH, uuId, colUuId, nullEleName, kFragPresetOrderId, chanId, nullClass, nullptr, 0, presetN, 1, 0 )) != kOkRC )
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
|
|
||||||
|
// store a connection for the select control back to the fragment record
|
||||||
|
_frag_set_ui_blob(app, uuId, fragId, preset_sel::kPresetOrderVarId, preset_idx );
|
||||||
|
|
||||||
errLabel:
|
errLabel:
|
||||||
if(rc != kOkRC )
|
if(rc != kOkRC )
|
||||||
@ -559,6 +681,7 @@ namespace cw
|
|||||||
unsigned fragEndLocUuId = kInvalidId;
|
unsigned fragEndLocUuId = kInvalidId;
|
||||||
unsigned fragPresetRowUuId = kInvalidId;
|
unsigned fragPresetRowUuId = kInvalidId;
|
||||||
unsigned presetN = preset_sel::preset_count( app->psH );
|
unsigned presetN = preset_sel::preset_count( app->psH );
|
||||||
|
unsigned fragId = kInvalidId;
|
||||||
|
|
||||||
// verify that frag panel resource object is initiailized
|
// verify that frag panel resource object is initiailized
|
||||||
if( app->frag_panel_cfg == nullptr)
|
if( app->frag_panel_cfg == nullptr)
|
||||||
@ -590,13 +713,29 @@ namespace cw
|
|||||||
assert( fragEndLocUuId != kInvalidId );
|
assert( fragEndLocUuId != kInvalidId );
|
||||||
assert( fragPresetRowUuId != kInvalidId );
|
assert( fragPresetRowUuId != kInvalidId );
|
||||||
|
|
||||||
|
// Make the fragment panel clickable
|
||||||
|
io::uiSetClickable( app->ioH, fragPanelUuId);
|
||||||
|
|
||||||
|
// Set the fragment panel order
|
||||||
|
io::uiSetOrderKey( app->ioH, fragPanelUuId, app->insertLoc );
|
||||||
|
|
||||||
|
|
||||||
|
// The fragment id is the same as the frag panel UUId
|
||||||
|
fragId = fragPanelUuId;
|
||||||
|
|
||||||
|
// Attach blobs to the UI to allow convenient access back to the prese_sel data record
|
||||||
|
_frag_set_ui_blob(app, io::uiFindElementUuId(app->ioH, fragPanelUuId, kFragGainId, fragChanId), fragId, preset_sel::kGainVarId, kInvalidId );
|
||||||
|
_frag_set_ui_blob(app, io::uiFindElementUuId(app->ioH, fragPanelUuId, kFragWetDryGainId, fragChanId), fragId, preset_sel::kWetGainVarId, kInvalidId );
|
||||||
|
_frag_set_ui_blob(app, io::uiFindElementUuId(app->ioH, fragPanelUuId, kFragFadeOutMsId, fragChanId), fragId, preset_sel::kFadeOutMsVarId, kInvalidId );
|
||||||
|
|
||||||
|
|
||||||
// create each of the preset controls
|
// create each of the preset controls
|
||||||
for(unsigned preset_idx=0; preset_idx<presetN; ++preset_idx)
|
for(unsigned preset_idx=0; preset_idx<presetN; ++preset_idx)
|
||||||
if((rc = _create_frag_preset_ctl(app, fragPresetRowUuId, presetN, preset_idx )) != kOkRC )
|
if((rc = _create_frag_preset_ctl(app, fragId, fragPresetRowUuId, presetN, preset_idx )) != kOkRC )
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
|
|
||||||
// create the data record associated with the new fragment.
|
// create the data record associated with the new fragment.
|
||||||
if((rc = preset_sel::create_fragment( app->psH, fragPanelUuId, app->insertLoc)) != kOkRC )
|
if((rc = preset_sel::create_fragment( app->psH, fragId, app->insertLoc)) != kOkRC )
|
||||||
{
|
{
|
||||||
rc = cwLogError(rc,"Fragment data record create failed.");
|
rc = cwLogError(rc,"Fragment data record create failed.");
|
||||||
goto errLabel;
|
goto errLabel;
|
||||||
@ -610,6 +749,33 @@ namespace cw
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc_t _on_ui_delete_btn( app_t* app )
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
unsigned fragId = kInvalidId;
|
||||||
|
|
||||||
|
// get the fragment id (uuid) of the selected fragment
|
||||||
|
if((fragId = preset_sel::ui_select_fragment_id(app->psH)) == kInvalidId )
|
||||||
|
{
|
||||||
|
rc = cwLogError(kInvalidStateRC,"There is no selected fragment to delete.");
|
||||||
|
goto errLabel;
|
||||||
|
}
|
||||||
|
|
||||||
|
// delete the fragment data record
|
||||||
|
if((rc = delete_fragment(app->psH,fragId)) != kOkRC )
|
||||||
|
goto errLabel;
|
||||||
|
|
||||||
|
// delete the fragment UI element
|
||||||
|
if((rc = io::uiDestroyElement( app->ioH, fragId )) != kOkRC )
|
||||||
|
goto errLabel;
|
||||||
|
|
||||||
|
errLabel:
|
||||||
|
|
||||||
|
if( rc != kOkRC )
|
||||||
|
rc = cwLogError(rc,"Fragment delete failed.");
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
rc_t _onUiInit(app_t* app, const io::ui_msg_t& m )
|
rc_t _onUiInit(app_t* app, const io::ui_msg_t& m )
|
||||||
{
|
{
|
||||||
@ -617,14 +783,20 @@ namespace cw
|
|||||||
|
|
||||||
_update_event_ui(app);
|
_update_event_ui(app);
|
||||||
|
|
||||||
|
// disable start and stop buttons until a score is loaded
|
||||||
|
io::uiSetEnable( app->ioH, io::uiFindElementUuId( app->ioH, kStartBtnId ), false );
|
||||||
|
io::uiSetEnable( app->ioH, io::uiFindElementUuId( app->ioH, kStopBtnId ), false );
|
||||||
|
|
||||||
const preset_sel::frag_t* f = preset_sel::get_fragment_base( app->psH );
|
const preset_sel::frag_t* f = preset_sel::get_fragment_base( app->psH );
|
||||||
for(; f!=nullptr; f=f->link)
|
for(; f!=nullptr; f=f->link)
|
||||||
_update_frag_ui( app, f->fragId );
|
_update_frag_ui( app, f->fragId );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
rc_t _onUiValue(app_t* app, const io::ui_msg_t& m )
|
rc_t _onUiValue(app_t* app, const io::ui_msg_t& m )
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
rc_t rc = kOkRC;
|
||||||
@ -666,27 +838,19 @@ namespace cw
|
|||||||
case kFnStringId:
|
case kFnStringId:
|
||||||
mem::release(app->directory);
|
mem::release(app->directory);
|
||||||
app->directory = mem::duplStr(m.value->u.s);
|
app->directory = mem::duplStr(m.value->u.s);
|
||||||
//printf("filename:%s\n",app->directory);
|
//rintf("filename:%s\n",app->directory);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kLocNumbId:
|
case kBegPlayLocNumbId:
|
||||||
_on_ui_loc(app, m.value->u.i);
|
_on_ui_play_loc(app, m.appId, m.value->u.i);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case kEndPlayLocNumbId:
|
||||||
|
_on_ui_play_loc(app, m.appId, m.value->u.i);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kInsertLocId:
|
case kInsertLocId:
|
||||||
{
|
_on_ui_insert_loc(app, m.value->u.u );
|
||||||
unsigned insertLocId = m.value->u.u;
|
|
||||||
bool enableFl = _is_loc_valid(app,insertLocId);
|
|
||||||
unsigned insertBtnUuId = io::uiFindElementUuId( app->ioH, kInsertBtnId );
|
|
||||||
io::uiSetEnable( app->ioH, insertBtnUuId, enableFl );
|
|
||||||
if( enableFl )
|
|
||||||
app->insertLoc = insertLocId;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
app->insertLoc = kInvalidId;
|
|
||||||
cwLogWarning("Location '%i' is not valid.",insertLocId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kInsertBtnId:
|
case kInsertBtnId:
|
||||||
@ -694,32 +858,70 @@ namespace cw
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case kDeleteBtnId:
|
case kDeleteBtnId:
|
||||||
|
_on_ui_delete_btn(app);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kFragGainId:
|
case kFragGainId:
|
||||||
_on_ui_frag_value( app, m.parentAppId, m.uuId, m.appId, m.chanId, m.value->u.d );
|
_on_ui_frag_value( app, m.uuId, m.value->u.d );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kFragWetDryGainId:
|
case kFragWetDryGainId:
|
||||||
_on_ui_frag_value( app, m.parentAppId, m.uuId, m.appId, m.chanId, m.value->u.d );
|
_on_ui_frag_value( app, m.uuId, m.value->u.d );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kFragFadeOutMsId:
|
case kFragFadeOutMsId:
|
||||||
_on_ui_frag_value( app, m.parentAppId, m.uuId, m.appId, m.chanId, m.value->u.d );
|
_on_ui_frag_value( app, m.uuId, m.value->u.d );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kFragPresetOrderId:
|
case kFragPresetOrderId:
|
||||||
_on_ui_frag_value( app, m.parentAppId, m.uuId, m.appId, m.chanId, m.value->u.u );
|
_on_ui_frag_value( app, m.uuId, m.value->u.u );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kFragPresetSelId:
|
case kFragPresetSelId:
|
||||||
_on_ui_frag_value( app, m.parentAppId, m.uuId, m.appId, m.chanId, m.value->u.b );
|
_on_ui_frag_value( app, m.uuId, m.value->u.b );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc_t _onUiClick( app_t* app, const io::ui_msg_t& m )
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
|
||||||
|
// get the last selected fragment
|
||||||
|
unsigned uuId = preset_sel::ui_select_fragment_id(app->psH);
|
||||||
|
|
||||||
|
// is the last selected fragment the same as the clicked fragment
|
||||||
|
bool reclickFl = uuId == m.uuId;
|
||||||
|
|
||||||
|
// if a different fragment was clicked then deselect the last fragment in the UI
|
||||||
|
if( !reclickFl && uuId != kInvalidId )
|
||||||
|
uiSetSelect( app->ioH, uuId, false );
|
||||||
|
|
||||||
|
// select or deselect the clicked fragment
|
||||||
|
uiSetSelect( app->ioH, m.uuId, !reclickFl );
|
||||||
|
|
||||||
|
// Note: calls to uiSetSelect() produce callbacks to _onUiSelect().
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
rc_t _onUiSelect( app_t* app, const io::ui_msg_t& m )
|
||||||
|
{
|
||||||
|
rc_t rc = kOkRC;
|
||||||
|
|
||||||
|
bool selectFl = m.value->u.b; // True/False if the fragment is being selected/deselected
|
||||||
|
|
||||||
|
// track the currently selected fragment.
|
||||||
|
preset_sel::ui_select_fragment( app->psH, m.uuId, selectFl );
|
||||||
|
|
||||||
|
// enable/disable the delete fragment button
|
||||||
|
io::uiSetEnable( app->ioH, io::uiFindElementUuId( app->ioH, kDeleteBtnId ), selectFl );
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
rc_t _onUiEcho(app_t* app, const io::ui_msg_t& m )
|
rc_t _onUiEcho(app_t* app, const io::ui_msg_t& m )
|
||||||
{
|
{
|
||||||
rc_t rc = kOkRC;
|
rc_t rc = kOkRC;
|
||||||
@ -748,6 +950,14 @@ namespace cw
|
|||||||
_onUiValue( app, m );
|
_onUiValue( app, m );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ui::kClickOpId:
|
||||||
|
_onUiClick( app, m );
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ui::kSelectOpId:
|
||||||
|
_onUiSelect( app, m );
|
||||||
|
break;
|
||||||
|
|
||||||
case ui::kEchoOpId:
|
case ui::kEchoOpId:
|
||||||
_onUiEcho( app, m );
|
_onUiEcho( app, m );
|
||||||
break;
|
break;
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
.fragList {
|
.fragList {
|
||||||
border: 1px solid LightSteelBlue;
|
border: 1px solid LightSteelBlue;
|
||||||
width: 900px;
|
width: 900px;
|
||||||
|
height: 450px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fragList label {
|
.fragList label {
|
||||||
@ -29,3 +30,14 @@
|
|||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
.uiCheckDiv,.uiStringDiv,.uiNumberDiv label {
|
||||||
|
border: 1px solid black;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.uiRow {
|
||||||
|
padding-bottom: 5px;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
@ -234,16 +234,23 @@ function ui_send_value( ele, typeId, value )
|
|||||||
|
|
||||||
function ui_send_bool_value( ele, value ) { ui_send_value(ele,'b',value); }
|
function ui_send_bool_value( ele, value ) { ui_send_value(ele,'b',value); }
|
||||||
function ui_send_int_value( ele, value ) { ui_send_value(ele,'i',value); }
|
function ui_send_int_value( ele, value ) { ui_send_value(ele,'i',value); }
|
||||||
function ui_send_float_value( ele, value ) { ui_send_value(ele,'f',value); }
|
function ui_send_float_value( ele, value ) { ui_send_value(ele,'d',value); }
|
||||||
function ui_send_string_value( ele, value ) { ui_send_value(ele,'s',value); }
|
function ui_send_string_value( ele, value ) { ui_send_value(ele,'s',value); }
|
||||||
|
|
||||||
function ui_send_click( ele )
|
function ui_send_click( ele )
|
||||||
{
|
{
|
||||||
console.log("click " + ele.id )
|
//console.log("click " + ele.id )
|
||||||
|
|
||||||
ws_send("click " + ele.id )
|
ws_send("click " + ele.id )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ui_send_select( ele, selectedFl )
|
||||||
|
{
|
||||||
|
let selected_value = selectedFl ? 1 : 0;
|
||||||
|
ws_send("select " + ele.id + " " + selected_value )
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function ui_send_echo( ele )
|
function ui_send_echo( ele )
|
||||||
{
|
{
|
||||||
@ -388,6 +395,7 @@ function ui_create_panel_div( parent_ele, d )
|
|||||||
var div_ele = ui_create_div( parent_ele, d );
|
var div_ele = ui_create_div( parent_ele, d );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return div_ele
|
return div_ele
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -793,9 +801,14 @@ function ui_set_log_text( ele, value )
|
|||||||
function ui_create_log( parent_ele, d )
|
function ui_create_log( parent_ele, d )
|
||||||
{
|
{
|
||||||
// create a containing div with the label
|
// create a containing div with the label
|
||||||
d.className = "uiLog"
|
|
||||||
|
if( !d.hasOwnProperty('className') )
|
||||||
|
d.className = "uiLog"
|
||||||
|
|
||||||
var log_ele = ui_create_ctl( parent_ele, "div", d.title, d, "uiLog" )
|
var log_ele = ui_create_ctl( parent_ele, "div", d.title, d, "uiLog" )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// add a <pre> to the containing div
|
// add a <pre> to the containing div
|
||||||
var ele = dom_create_ele("pre")
|
var ele = dom_create_ele("pre")
|
||||||
|
|
||||||
@ -891,7 +904,14 @@ function _ui_modify_class( ele, classLabelArg, enableFl )
|
|||||||
{
|
{
|
||||||
let classLabel = " " + classLabelArg; // prefix the class label with a space
|
let classLabel = " " + classLabelArg; // prefix the class label with a space
|
||||||
|
|
||||||
let isEnabledFl = ele.className.includes(classLabel)
|
//console.log(ele.id + " " + classLabelArg + " " + enableFl )
|
||||||
|
|
||||||
|
let isEnabledFl = false;
|
||||||
|
|
||||||
|
if( ele.hasOwnProperty("className") )
|
||||||
|
isEnabledFl = ele.className.includes(classLabel)
|
||||||
|
else
|
||||||
|
ele.className = ""
|
||||||
|
|
||||||
// if the class is not already enabled/disabled
|
// if the class is not already enabled/disabled
|
||||||
if( enableFl != isEnabledFl )
|
if( enableFl != isEnabledFl )
|
||||||
@ -901,11 +921,14 @@ function _ui_modify_class( ele, classLabelArg, enableFl )
|
|||||||
else
|
else
|
||||||
ele.className = ele.className.replace(classLabel, "");
|
ele.className = ele.className.replace(classLabel, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//console.log(ele.id + " " + ele.className + " " + enableFl )
|
||||||
}
|
}
|
||||||
|
|
||||||
function ui_set_select( ele, enableFl )
|
function ui_set_select( ele, enableFl )
|
||||||
{
|
{
|
||||||
_ui_modify_class("uiSelected")
|
_ui_modify_class(ele,"uiSelected",enableFl)
|
||||||
|
ui_send_select( ele, enableFl )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -944,6 +967,28 @@ function ui_set_enable( ele, enableFl )
|
|||||||
ele.disabled = !enableFl
|
ele.disabled = !enableFl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ui_set_order_key(ele, orderKey)
|
||||||
|
{
|
||||||
|
let parent = ele.parentElement // get the parent of the element to reorder
|
||||||
|
ele = parent.removeChild( ele ) // remove the element to reorder from the parent list
|
||||||
|
|
||||||
|
ele.order = orderKey
|
||||||
|
|
||||||
|
let i = 0;
|
||||||
|
for(i=0; i<parent.children.length; ++i)
|
||||||
|
{
|
||||||
|
if( parent.children[i].hasOwnProperty("order") && parent.children[i].order >= orderKey)
|
||||||
|
{
|
||||||
|
parent.insertBefore( ele, parent.children[i] )
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no element was found greater than this element ....
|
||||||
|
if( i == parent.children.length )
|
||||||
|
parent.appendChild(ele) // ... insert the element at the end of the child lsit
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function ui_set( d )
|
function ui_set( d )
|
||||||
{
|
{
|
||||||
@ -966,19 +1011,23 @@ function ui_set( d )
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case "select":
|
case "select":
|
||||||
ui_set_select(ele,d.enableFl)
|
ui_set_select(ele,d.value)
|
||||||
break
|
break
|
||||||
|
|
||||||
case "clickable":
|
case "clickable":
|
||||||
ui_set_clickable(ele,d.enableFl)
|
ui_set_clickable(ele,d.value)
|
||||||
break
|
break
|
||||||
|
|
||||||
case "visible":
|
case "visible":
|
||||||
ui_set_visible(ele,d.enableFl)
|
ui_set_visible(ele,d.value)
|
||||||
break
|
break
|
||||||
|
|
||||||
case "enable":
|
case "enable":
|
||||||
ui_set_enable(ele,d.enableFl)
|
ui_set_enable(ele,d.value)
|
||||||
|
break
|
||||||
|
|
||||||
|
case "order":
|
||||||
|
ui_set_order_key(ele,d.value)
|
||||||
break
|
break
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1077,6 +1126,16 @@ function ui_create( d )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ui_destroy( d )
|
||||||
|
{
|
||||||
|
if( typeof(d.uuId) == "number" )
|
||||||
|
d.uuId = d.uuId.toString()
|
||||||
|
|
||||||
|
var ele = dom_id_to_ele(d.uuId)
|
||||||
|
|
||||||
|
if( ele != null )
|
||||||
|
ele.parentElement.removeChild( ele )
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1099,6 +1158,10 @@ function ws_on_msg( jsonMsg )
|
|||||||
ui_create( d )
|
ui_create( d )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'destroy':
|
||||||
|
ui_destroy( d )
|
||||||
|
break
|
||||||
|
|
||||||
case 'value':
|
case 'value':
|
||||||
ui_set_value( d )
|
ui_set_value( d )
|
||||||
break;
|
break;
|
||||||
|
@ -8,17 +8,18 @@
|
|||||||
title: "",
|
title: "",
|
||||||
|
|
||||||
row: {
|
row: {
|
||||||
button:{ name: quitBtnId, title:"Quit" },
|
button:{ name: quitBtnId, title:"Quit" },
|
||||||
button:{ name: ioReportBtnId, title:"IO Report" },
|
button:{ name: ioReportBtnId, title:"IO Report" },
|
||||||
button:{ name: reportBtnId, title:"App Report" },
|
button:{ name: reportBtnId, title:"App Report" },
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
row: {
|
row: {
|
||||||
button:{ name: loadBtnId, title:"Load" },
|
button:{ name: loadBtnId, title:"Load" },
|
||||||
button:{ name: startBtnId, title:"Start" },
|
button:{ name: startBtnId, title:"Start" },
|
||||||
button:{ name: stopBtnId, title:"Stop" },
|
button:{ name: stopBtnId, title:"Stop" },
|
||||||
number:{ name: locNumbId, title:"Loc", min:0, max:100000, step:1, decpl:0 },
|
number:{ name: begLocNumbId, title:"Loc", min:0, max:100000, step:1, decpl:0 },
|
||||||
|
number:{ name: endLocNumbId, title:"End", min:0, max:100000, step:1, decpl:0 },
|
||||||
},
|
},
|
||||||
|
|
||||||
row: {
|
row: {
|
||||||
@ -27,6 +28,7 @@
|
|||||||
numb_disp: { name: totalMidiEvtCntId, title:"Total" },
|
numb_disp: { name: totalMidiEvtCntId, title:"Total" },
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
row: {
|
row: {
|
||||||
|
|
||||||
check:{ name: audioThroughCheckId, title:"Audio Thru" },
|
check:{ name: audioThroughCheckId, title:"Audio Thru" },
|
||||||
@ -34,7 +36,7 @@
|
|||||||
numb_disp: { name: totalAudioSecsId, title:"Total:", decpl:1 },
|
numb_disp: { name: totalAudioSecsId, title:"Total:", decpl:1 },
|
||||||
},
|
},
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
row: {
|
row: {
|
||||||
string:{ name: filenameId, title:"File Name:", value:"record" },
|
string:{ name: filenameId, title:"File Name:", value:"record" },
|
||||||
|
Loading…
Reference in New Issue
Block a user