- Add kit combobox in ui,
- Remove kits database load on ui side, - Fix velocity ignore flag toggling, - Start kit name tab update process.
This commit is contained in:
parent
e816f1cb0d
commit
1368d988d1
4
go.sh
4
go.sh
@ -37,8 +37,8 @@ eval ${cmd}
|
|||||||
|
|
||||||
cmd="./drummer-mkttl"
|
cmd="./drummer-mkttl"
|
||||||
|
|
||||||
echo ${cmd}
|
#echo ${cmd}
|
||||||
eval ${cmd}
|
#eval ${cmd}
|
||||||
|
|
||||||
#gcc -g -I . -L . -shared -o drummer.so -fPIC drummer.c
|
#gcc -g -I . -L . -shared -o drummer.so -fPIC drummer.c
|
||||||
#gcc -g -I. -I/usr/include/libxml2 -o xpath -fPIC -ldl -lxml2 -lz -llzma -lm xpath.c
|
#gcc -g -I. -I/usr/include/libxml2 -o xpath -fPIC -ldl -lxml2 -lz -llzma -lm xpath.c
|
||||||
|
25
lv2_plugin.c
25
lv2_plugin.c
@ -87,6 +87,8 @@ static inline void DR_LV2_Map_URIS( LV2_URID_Map *Map_Ptr, DRT_Drummer_URIS *
|
|||||||
|
|
||||||
URIS->Atom_EventTransfer = Map_Ptr->map( Map_Ptr->handle, LV2_ATOM__eventTransfer);
|
URIS->Atom_EventTransfer = Map_Ptr->map( Map_Ptr->handle, LV2_ATOM__eventTransfer);
|
||||||
|
|
||||||
|
URIS->Kit_Name_Tab_Update = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#kitnametabupdate");
|
||||||
|
|
||||||
URIS->Velocity_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#velocitytoggle");
|
URIS->Velocity_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#velocitytoggle");
|
||||||
URIS->Note_Off_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#noteofftoggle");
|
URIS->Note_Off_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#noteofftoggle");
|
||||||
|
|
||||||
@ -758,6 +760,8 @@ static LV2_Handle DR_LV2_Instantiate( const LV2_Descriptor *LV2_Descripto
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
DR_LOG_INFO_1( "DRG_Base_Ptr: (%lx)!", (char *)( &DRG_Base));
|
||||||
|
|
||||||
return( (LV2_Handle)&DRG_LV2_Base);
|
return( (LV2_Handle)&DRG_LV2_Base);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -988,11 +992,32 @@ static void DR_LV2_Run( LV2_Handle Instance_Ptr, uint32_t N_Samples)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if( nn == 26)
|
||||||
|
{
|
||||||
|
LV2_Atom_Forge_Frame set_frame;
|
||||||
|
|
||||||
|
|
||||||
|
DR_LOG_INFO_1( "Update Kit Name Tab: [%d]", nn);
|
||||||
|
|
||||||
|
lv2_atom_forge_frame_time( &( DRG_LV2_Base.Forge), 0);
|
||||||
|
|
||||||
|
lv2_atom_forge_object( &( DRG_LV2_Base.Forge), &set_frame, 1, DRG_LV2_Base.URIS.UI_Msg);
|
||||||
|
|
||||||
|
lv2_atom_forge_property_head( &( DRG_LV2_Base.Forge), DRG_LV2_Base.URIS.Kit_Name_Tab_Update, 0);
|
||||||
|
lv2_atom_forge_string( &( DRG_LV2_Base.Forge), "Hello World!", 13);
|
||||||
|
|
||||||
|
lv2_atom_forge_pop( &( DRG_LV2_Base.Forge), &set_frame);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DR_LOG_INFO_1( "ZZZ Update Kit Name Tab: [%d]", nn);
|
||||||
|
|
||||||
nn -= base_note;
|
nn -= base_note;
|
||||||
|
|
||||||
DR_Sample_Trigger( nn, data, offset);
|
DR_Sample_Trigger( nn, data, offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -215,6 +215,8 @@ typedef struct DRT_Drummer_URIS
|
|||||||
|
|
||||||
LV2_URID Atom_EventTransfer;
|
LV2_URID Atom_EventTransfer;
|
||||||
|
|
||||||
|
LV2_URID Kit_Name_Tab_Update;
|
||||||
|
|
||||||
LV2_URID Velocity_Ignore_Flag_Toggle;
|
LV2_URID Velocity_Ignore_Flag_Toggle;
|
||||||
LV2_URID Note_Off_Ignore_Flag_Toggle;
|
LV2_URID Note_Off_Ignore_Flag_Toggle;
|
||||||
|
|
||||||
|
147
lv2_ui.c
147
lv2_ui.c
@ -80,6 +80,8 @@ static inline void DR_LV2UI_Map_URIS( LV2_URID_Map *Map_Ptr, DRT_LV2UI_URIS *
|
|||||||
|
|
||||||
URIS->Atom_EventTransfer = Map_Ptr->map( Map_Ptr->handle, LV2_ATOM__eventTransfer);
|
URIS->Atom_EventTransfer = Map_Ptr->map( Map_Ptr->handle, LV2_ATOM__eventTransfer);
|
||||||
|
|
||||||
|
URIS->Kit_Name_Tab_Update = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#kitnametabupdate");
|
||||||
|
|
||||||
URIS->Velocity_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#velocitytoggle");
|
URIS->Velocity_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#velocitytoggle");
|
||||||
URIS->Note_Off_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#noteofftoggle");
|
URIS->Note_Off_Ignore_Flag_Toggle = Map_Ptr->map( Map_Ptr->handle, DRD_DRUMMER_URI "#noteofftoggle");
|
||||||
|
|
||||||
@ -220,6 +222,89 @@ static gboolean DR_LV2UI_Expose_Callback (GtkWidget *widget, GdkEventExpose *eve
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------*/
|
||||||
|
/* DR_LV2UI_Kit_ComboBox_Create */
|
||||||
|
/*----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
static GtkWidget *DR_LV2UI_Kit_ComboBox_Create( void)
|
||||||
|
{
|
||||||
|
GtkWidget *combobox_ptr;
|
||||||
|
GtkListStore *list_store_ptr;
|
||||||
|
GtkCellRenderer *cell_ptr;
|
||||||
|
GtkTreeIter iter;
|
||||||
|
int i;
|
||||||
|
char label[8];
|
||||||
|
|
||||||
|
NDT_Status nd_status;
|
||||||
|
NDT_Node *node_cur_ptr;
|
||||||
|
DRT_Kit *kit_cur_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
list_store_ptr = gtk_list_store_new( 1, G_TYPE_STRING);
|
||||||
|
|
||||||
|
|
||||||
|
DR_LOG_INFO_1( "DRG_Base_Ptr: (%lx)!", (char *)( &DRG_Base));
|
||||||
|
|
||||||
|
if( ( nd_status = ND_Index_Node_First_Get( &node_cur_ptr, DRG_Base.Kit_DS_Ptr, 1)) != NDS_OK)
|
||||||
|
{
|
||||||
|
DR_LOG_INFO_1( "Can't find the first kit: ND_Index_Node_First_Get() failed (%d)!", nd_status);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
while( node_cur_ptr != NULL)
|
||||||
|
{
|
||||||
|
kit_cur_ptr = node_cur_ptr->Value;
|
||||||
|
// DR_LOG_INFO_1( "Kit Name: [%s]", kit_cur_ptr->Name);
|
||||||
|
|
||||||
|
gtk_list_store_append( list_store_ptr, &iter);
|
||||||
|
gtk_list_store_set( list_store_ptr, &iter, 0, kit_cur_ptr->Name, -1);
|
||||||
|
|
||||||
|
if( ( nd_status = ND_Index_Node_Next_Get( &node_cur_ptr, node_cur_ptr)) != NDS_OK)
|
||||||
|
{
|
||||||
|
DR_LOG_INFO_1( "Can't find the next kit: ND_Index_Node_Next_Get() failed (%d)!", nd_status);
|
||||||
|
node_cur_ptr = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
combobox_ptr = gtk_combo_box_new_with_model( GTK_TREE_MODEL( list_store_ptr));
|
||||||
|
|
||||||
|
gtk_combo_box_set_active( GTK_COMBO_BOX( combobox_ptr), 0);
|
||||||
|
|
||||||
|
g_object_unref( list_store_ptr);
|
||||||
|
|
||||||
|
cell_ptr = gtk_cell_renderer_text_new();
|
||||||
|
gtk_cell_layout_pack_start( GTK_CELL_LAYOUT( combobox_ptr), cell_ptr, TRUE);
|
||||||
|
gtk_cell_layout_set_attributes( GTK_CELL_LAYOUT( combobox_ptr), cell_ptr, "text", 0, NULL);
|
||||||
|
|
||||||
|
return( combobox_ptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------*/
|
||||||
|
/* DR_LV2UI_Kit_ComboBox_Change */
|
||||||
|
/*----------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
static void DR_LV2UI_Kit_ComboBox_Changed( GtkComboBox *ComboBox_Ptr, gpointer Data_Ptr)
|
||||||
|
{
|
||||||
|
DRG_LV2UI_Base.Kit_Id = (float)gtk_combo_box_get_active( GTK_COMBO_BOX( ComboBox_Ptr));
|
||||||
|
|
||||||
|
DR_LOG_INFO_1( "Kit_ComboBox_Changed: Id: (%d)!", (int)( DRG_LV2UI_Base.Kit_Id));
|
||||||
|
|
||||||
|
DRG_LV2UI_Base.Write( DRG_LV2UI_Base.Controller, DRD_LV2_CHANNEL_ID, 4, 0, &( DRG_LV2UI_Base.Kit_Id));
|
||||||
|
|
||||||
|
// return( FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
/* DR_LV2UI_Channel_Id_ComboBox_Create */
|
/* DR_LV2UI_Channel_Id_ComboBox_Create */
|
||||||
/*----------------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------------*/
|
||||||
@ -313,7 +398,7 @@ static void DR_LV2UI_Base_Note_Spin_Changed( GtkSpinButton *Spin_Ptr, gpointer
|
|||||||
{
|
{
|
||||||
DRG_LV2UI_Base.Base_Note = base;
|
DRG_LV2UI_Base.Base_Note = base;
|
||||||
|
|
||||||
DR_LOG_INFO_1( "Channel_Id_ComboBox_Changed: Id: (%d)!", (int)( base));
|
DR_LOG_INFO_1( "Base_Note_Spin_Changed: Id: (%d)!", (int)( base));
|
||||||
|
|
||||||
DRG_LV2UI_Base.Write( DRG_LV2UI_Base.Controller, DRD_LV2_BASE_NOTE, 4, 0, &( DRG_LV2UI_Base.Base_Note));
|
DRG_LV2UI_Base.Write( DRG_LV2UI_Base.Controller, DRD_LV2_BASE_NOTE, 4, 0, &( DRG_LV2UI_Base.Base_Note));
|
||||||
|
|
||||||
@ -429,8 +514,9 @@ static gboolean DR_LV2UI_Note_Off_Ignore_Flag_Toggled( GtkToggleButton *Button
|
|||||||
|
|
||||||
DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
||||||
{
|
{
|
||||||
GtkWidget *opts_hbox1_ptr, *opts_hbox2_ptr, *channel_id_hbox_ptr, *position_id_hbox_ptr,
|
GtkWidget *opts_hbox1_ptr, *opts_hbox2_ptr, *kit_hbox_ptr, *base_note_hbox_ptr, *channel_id_hbox_ptr, *position_id_hbox_ptr,
|
||||||
*channel_id_label_ptr, *channel_id_combobox_ptr, *position_id_label_ptr, *position_id_combobox_ptr, *base_note_label_ptr, *base_note_spin_ptr, *velocity_ignore_flag_checkbox_ptr, *note_off_ignore_flag_checkbox_ptr;
|
*kit_label_ptr, *kit_combobox_ptr, *channel_id_label_ptr, *channel_id_combobox_ptr, *position_id_label_ptr, *position_id_combobox_ptr,
|
||||||
|
*base_note_label_ptr, *base_note_spin_ptr, *velocity_ignore_flag_checkbox_ptr, *note_off_ignore_flag_checkbox_ptr;
|
||||||
GtkLabel *label_ptr;
|
GtkLabel *label_ptr;
|
||||||
GtkAdjustment *base_note_adj_ptr;
|
GtkAdjustment *base_note_adj_ptr;
|
||||||
|
|
||||||
@ -439,20 +525,20 @@ DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
|||||||
|
|
||||||
g_object_set( *Main_Widget_Ptr_Ptr, "border-width", 6, NULL);
|
g_object_set( *Main_Widget_Ptr_Ptr, "border-width", 6, NULL);
|
||||||
|
|
||||||
label_ptr = GTK_LABEL( gtk_label_new( "Test!"));
|
label_ptr = GTK_LABEL( gtk_label_new( "Test!!!"));
|
||||||
|
|
||||||
/* Option Boxes */
|
/* Option Boxes */
|
||||||
|
|
||||||
opts_hbox1_ptr = gtk_hbox_new( false, 0);
|
opts_hbox1_ptr = gtk_hbox_new( false, 0);
|
||||||
opts_hbox2_ptr = gtk_hbox_new( false, 0);
|
opts_hbox2_ptr = gtk_hbox_new( false, 0);
|
||||||
|
|
||||||
// Midi Channel_Id
|
// Kit
|
||||||
channel_id_hbox_ptr = gtk_hbox_new( false, 0);
|
kit_label_ptr = gtk_label_new( "Kit: <b>No kit selected</b>");
|
||||||
channel_id_label_ptr = gtk_label_new( "Midi Channel: ");
|
gtk_label_set_use_markup( GTK_LABEL( kit_label_ptr), true);
|
||||||
|
kit_combobox_ptr = DR_LV2UI_Kit_ComboBox_Create();
|
||||||
|
|
||||||
channel_id_combobox_ptr = DR_LV2UI_Channel_Id_ComboBox_Create();
|
kit_hbox_ptr = gtk_hbox_new( false, 0);
|
||||||
gtk_box_pack_start( GTK_BOX( channel_id_hbox_ptr), channel_id_label_ptr, true, false, 0);
|
gtk_box_pack_start( GTK_BOX( kit_hbox_ptr), kit_label_ptr, false, false, 0);
|
||||||
gtk_box_pack_start( GTK_BOX( channel_id_hbox_ptr), channel_id_combobox_ptr, false, false, 0);
|
gtk_box_pack_start( GTK_BOX( kit_hbox_ptr), kit_combobox_ptr, true, false, 0);
|
||||||
|
|
||||||
// Midi Base Note
|
// Midi Base Note
|
||||||
base_note_label_ptr = gtk_label_new( "Midi Base Note <b>(C 2)</b>:");
|
base_note_label_ptr = gtk_label_new( "Midi Base Note <b>(C 2)</b>:");
|
||||||
@ -461,9 +547,20 @@ DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
|||||||
21.0,107.0, // min/max
|
21.0,107.0, // min/max
|
||||||
1.0, // step
|
1.0, // step
|
||||||
5.0,0.0)); // page adj/size
|
5.0,0.0)); // page adj/size
|
||||||
|
|
||||||
base_note_spin_ptr = gtk_spin_button_new( base_note_adj_ptr, 1.0, 0);
|
base_note_spin_ptr = gtk_spin_button_new( base_note_adj_ptr, 1.0, 0);
|
||||||
|
|
||||||
|
base_note_hbox_ptr = gtk_hbox_new( false, 0);
|
||||||
|
gtk_box_pack_start( GTK_BOX( base_note_hbox_ptr), base_note_label_ptr, false, false, 0);
|
||||||
|
gtk_box_pack_start( GTK_BOX( base_note_hbox_ptr), base_note_spin_ptr, true, false, 0);
|
||||||
|
|
||||||
|
// Midi Channel_Id
|
||||||
|
channel_id_hbox_ptr = gtk_hbox_new( false, 0);
|
||||||
|
channel_id_label_ptr = gtk_label_new( "Midi Channel: ");
|
||||||
|
|
||||||
|
channel_id_combobox_ptr = DR_LV2UI_Channel_Id_ComboBox_Create();
|
||||||
|
gtk_box_pack_start( GTK_BOX( channel_id_hbox_ptr), channel_id_label_ptr, true, false, 0);
|
||||||
|
gtk_box_pack_start( GTK_BOX( channel_id_hbox_ptr), channel_id_combobox_ptr, false, false, 0);
|
||||||
|
|
||||||
// Sample Zero Position Id
|
// Sample Zero Position Id
|
||||||
position_id_hbox_ptr = gtk_hbox_new( false, 0);
|
position_id_hbox_ptr = gtk_hbox_new( false, 0);
|
||||||
position_id_label_ptr = gtk_label_new( "Sample Zero Position: ");
|
position_id_label_ptr = gtk_label_new( "Sample Zero Position: ");
|
||||||
@ -479,11 +576,12 @@ DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
|||||||
note_off_ignore_flag_checkbox_ptr = gtk_check_button_new_with_label( "Ignore Note Off");
|
note_off_ignore_flag_checkbox_ptr = gtk_check_button_new_with_label( "Ignore Note Off");
|
||||||
|
|
||||||
|
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox1_ptr), base_note_label_ptr, false, false, 15);
|
// Layout
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox1_ptr), base_note_spin_ptr, true, true, 0);
|
gtk_box_pack_start( GTK_BOX( opts_hbox1_ptr), kit_hbox_ptr, true, false, 15);
|
||||||
|
gtk_box_pack_start( GTK_BOX( opts_hbox1_ptr), base_note_hbox_ptr, true, false, 15);
|
||||||
|
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), channel_id_hbox_ptr, true, false, 0);
|
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), channel_id_hbox_ptr, true, false, 15);
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), position_id_hbox_ptr, true, false, 0);
|
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), position_id_hbox_ptr, true, false, 15);
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), velocity_ignore_flag_checkbox_ptr, true, false, 15);
|
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), velocity_ignore_flag_checkbox_ptr, true, false, 15);
|
||||||
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), note_off_ignore_flag_checkbox_ptr, true, true, 15);
|
gtk_box_pack_start( GTK_BOX( opts_hbox2_ptr), note_off_ignore_flag_checkbox_ptr, true, true, 15);
|
||||||
|
|
||||||
@ -492,8 +590,8 @@ DRT_Status DR_LV2UI_UI_Build( GtkWidget **Main_Widget_Ptr_Ptr)
|
|||||||
gtk_box_pack_start( GTK_BOX( *Main_Widget_Ptr_Ptr), opts_hbox2_ptr, false, false, 5);
|
gtk_box_pack_start( GTK_BOX( *Main_Widget_Ptr_Ptr), opts_hbox2_ptr, false, false, 5);
|
||||||
|
|
||||||
// Signals
|
// Signals
|
||||||
// g_signal_connect( G_OBJECT( kit_combo_box), "changed", G_CALLBACK( kit_combobox_changed), &DRG_LV2UI_Note);
|
// g_signal_connect( G_OBJECT( kit_combobox), "changed", G_CALLBACK( kit_combobox_changed), &DRG_LV2UI_Note);
|
||||||
// g_signal_connect( G_OBJECT( base_note_spin_ptr), "value-changed", G_CALLBACK( DR_LV2UI_Base_Note_Note_Changed), &DRG_LV2UI_Base);
|
g_signal_connect( G_OBJECT( base_note_spin_ptr), "value-changed", G_CALLBACK( DR_LV2UI_Base_Note_Spin_Changed), &DRG_LV2UI_Base);
|
||||||
g_signal_connect( G_OBJECT( channel_id_combobox_ptr), "changed", G_CALLBACK( DR_LV2UI_Channel_Id_ComboBox_Changed), &DRG_LV2UI_Base);
|
g_signal_connect( G_OBJECT( channel_id_combobox_ptr), "changed", G_CALLBACK( DR_LV2UI_Channel_Id_ComboBox_Changed), &DRG_LV2UI_Base);
|
||||||
g_signal_connect( G_OBJECT( position_id_combobox_ptr), "changed", G_CALLBACK( DR_LV2UI_Position_Id_ComboBox_Changed), &DRG_LV2UI_Base);
|
g_signal_connect( G_OBJECT( position_id_combobox_ptr), "changed", G_CALLBACK( DR_LV2UI_Position_Id_ComboBox_Changed), &DRG_LV2UI_Base);
|
||||||
g_signal_connect( G_OBJECT( velocity_ignore_flag_checkbox_ptr), "toggled", G_CALLBACK( DR_LV2UI_Velocity_Ignore_Flag_Toggled), &DRG_LV2UI_Base);
|
g_signal_connect( G_OBJECT( velocity_ignore_flag_checkbox_ptr), "toggled", G_CALLBACK( DR_LV2UI_Velocity_Ignore_Flag_Toggled), &DRG_LV2UI_Base);
|
||||||
@ -600,11 +698,12 @@ static LV2UI_Handle DR_LV2UI_Instantiate( const LV2UI_Descriptor *LV2UI_Des
|
|||||||
|
|
||||||
lv2_atom_forge_init( &(DRG_LV2UI_Base.Forge), DRG_LV2UI_Base.Map_Ptr);
|
lv2_atom_forge_init( &(DRG_LV2UI_Base.Forge), DRG_LV2UI_Base.Map_Ptr);
|
||||||
|
|
||||||
|
/*
|
||||||
if( ( status = DR_Kits_Load()) != DRS_OK)
|
if( ( status = DR_Kits_Load()) != DRS_OK)
|
||||||
{
|
{
|
||||||
fprintf( stderr, "Can't load kits (%d)!\n", status);
|
fprintf( stderr, "Can't load kits (%d)!\n", status);
|
||||||
}
|
}
|
||||||
else
|
else */
|
||||||
{
|
{
|
||||||
if( DR_LV2UI_UI_Build( (GtkWidget **)Widget_Ptr_Ptr) != DRS_OK)
|
if( DR_LV2UI_UI_Build( (GtkWidget **)Widget_Ptr_Ptr) != DRS_OK)
|
||||||
{
|
{
|
||||||
@ -659,7 +758,7 @@ static void DR_LV2UI_Port_Event( LV2UI_Handle Instance_Ptr,
|
|||||||
uint32_t Format,
|
uint32_t Format,
|
||||||
const void *Buffer_Ptr)
|
const void *Buffer_Ptr)
|
||||||
{
|
{
|
||||||
// DR_LOG_INFO_2( "Port_Event called: Port: (%d) Format: (%d)!", Port_Id, Format);
|
DR_LOG_INFO_2( "Port_Event called: Port: (%d) Format: (%d)!", Port_Id, Format);
|
||||||
|
|
||||||
if( Port_Id == DRD_LV2_CORE_EVENT)
|
if( Port_Id == DRD_LV2_CORE_EVENT)
|
||||||
{
|
{
|
||||||
@ -675,14 +774,21 @@ static void DR_LV2UI_Port_Event( LV2UI_Handle Instance_Ptr,
|
|||||||
|
|
||||||
if( obj->body.otype == DRG_LV2UI_Base.URIS.UI_Msg)
|
if( obj->body.otype == DRG_LV2UI_Base.URIS.UI_Msg)
|
||||||
{
|
{
|
||||||
|
const LV2_Atom *kit_name_tab_ptr = NULL;
|
||||||
const LV2_Atom *velocity_ignore_flag_ptr = NULL;
|
const LV2_Atom *velocity_ignore_flag_ptr = NULL;
|
||||||
const LV2_Atom *note_off_ignore_flag_ptr = NULL;
|
const LV2_Atom *note_off_ignore_flag_ptr = NULL;
|
||||||
|
|
||||||
lv2_atom_object_get( obj,
|
lv2_atom_object_get( obj,
|
||||||
|
DRG_LV2UI_Base.URIS.Kit_Name_Tab_Update, &kit_name_tab_ptr,
|
||||||
DRG_LV2UI_Base.URIS.Velocity_Ignore_Flag_Toggle, &velocity_ignore_flag_ptr,
|
DRG_LV2UI_Base.URIS.Velocity_Ignore_Flag_Toggle, &velocity_ignore_flag_ptr,
|
||||||
DRG_LV2UI_Base.URIS.Note_Off_Ignore_Flag_Toggle, ¬e_off_ignore_flag_ptr,
|
DRG_LV2UI_Base.URIS.Note_Off_Ignore_Flag_Toggle, ¬e_off_ignore_flag_ptr,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
if( kit_name_tab_ptr)
|
||||||
|
{
|
||||||
|
DR_LOG_INFO_1( "UI Msg: Kit Name Tab Update! [%s]", (char*)LV2_ATOM_BODY( kit_name_tab_ptr));
|
||||||
|
}
|
||||||
|
|
||||||
if( velocity_ignore_flag_ptr)
|
if( velocity_ignore_flag_ptr)
|
||||||
{
|
{
|
||||||
DRG_LV2UI_Base.Velocity_Ignore_Flag = ( (const LV2_Atom_Float *)velocity_ignore_flag_ptr)->body;
|
DRG_LV2UI_Base.Velocity_Ignore_Flag = ( (const LV2_Atom_Float *)velocity_ignore_flag_ptr)->body;
|
||||||
@ -729,6 +835,7 @@ static void DR_LV2UI_Port_Event( LV2UI_Handle Instance_Ptr,
|
|||||||
else if( Port_Id == DRD_LV2_VELOCITY_IGNORE_NOTE)
|
else if( Port_Id == DRD_LV2_VELOCITY_IGNORE_NOTE)
|
||||||
{
|
{
|
||||||
DR_LOG_INFO_0( "Port_Event called: Velocity Ignore Note!");
|
DR_LOG_INFO_0( "Port_Event called: Velocity Ignore Note!");
|
||||||
|
DR_LOG_INFO_1( "Received DRG_Base_Ptr: (%lx)!", (char *)( Buffer_Ptr));
|
||||||
}
|
}
|
||||||
else if( Port_Id == DRD_LV2_NOTE_OFF_IGNORE_NOTE)
|
else if( Port_Id == DRD_LV2_NOTE_OFF_IGNORE_NOTE)
|
||||||
{
|
{
|
||||||
|
3
lv2_ui.h
3
lv2_ui.h
@ -71,6 +71,7 @@ typedef struct DRT_LV2UI_URIS
|
|||||||
LV2_URID UI_Msg;
|
LV2_URID UI_Msg;
|
||||||
|
|
||||||
// LV2_URID kit_path;
|
// LV2_URID kit_path;
|
||||||
|
LV2_URID Kit_Name_Tab_Update;
|
||||||
|
|
||||||
LV2_URID Atom_EventTransfer;
|
LV2_URID Atom_EventTransfer;
|
||||||
|
|
||||||
@ -101,6 +102,7 @@ typedef struct DRT_LV2UI_Base
|
|||||||
LV2_Atom_Sequence *Core_Event_Port;
|
LV2_Atom_Sequence *Core_Event_Port;
|
||||||
|
|
||||||
//Config
|
//Config
|
||||||
|
float Kit_Id;
|
||||||
float Channel_Id;
|
float Channel_Id;
|
||||||
float Base_Note;
|
float Base_Note;
|
||||||
float Velocity_Ignore_Note;
|
float Velocity_Ignore_Note;
|
||||||
@ -123,6 +125,7 @@ typedef struct DRT_LV2UI_Base
|
|||||||
|
|
||||||
// UI
|
// UI
|
||||||
GtkWidget *Main_Widget_Ptr;
|
GtkWidget *Main_Widget_Ptr;
|
||||||
|
GtkWidget *Kit_ComboBox_Ptr;
|
||||||
GtkWidget *Channel_ComboBox_Ptr;
|
GtkWidget *Channel_ComboBox_Ptr;
|
||||||
GtkWidget *Base_Note_Spin_Ptr;
|
GtkWidget *Base_Note_Spin_Ptr;
|
||||||
GtkWidget *Base_Note_Label_Ptr;
|
GtkWidget *Base_Note_Label_Ptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user