X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fsurfaces%2Fosc%2Fosc.cc;h=08b8fb9c185ea31a48282eed2c586f74565f1c95;hb=9b2612f68615d1b3f80fce732e4a13f5e50ee87d;hp=07865afa627293c43235c80e52d83f0ec29bd399;hpb=a546003457ece088ff61f8cc59a2ccbcacbba9ca;p=ardour.git diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc index 07865afa62..08b8fb9c18 100644 --- a/libs/surfaces/osc/osc.cc +++ b/libs/surfaces/osc/osc.cc @@ -29,6 +29,7 @@ #include #include "pbd/control_math.h" +#include "pbd/controllable.h" #include #include #include @@ -37,6 +38,7 @@ #include "ardour/amp.h" #include "ardour/session.h" #include "ardour/route.h" +#include "ardour/route_group.h" #include "ardour/audio_track.h" #include "ardour/midi_track.h" #include "ardour/vca.h" @@ -44,6 +46,8 @@ #include "ardour/dB.h" #include "ardour/filesystem_paths.h" #include "ardour/panner.h" +#include "ardour/panner_shell.h" +#include "ardour/pannable.h" #include "ardour/plugin.h" #include "ardour/plugin_insert.h" #include "ardour/presentation_info.h" @@ -98,7 +102,7 @@ OSC::OSC (Session& s, uint32_t port) , address_only (true) , remote_port ("8000") , default_banksize (0) - , default_strip (159) + , default_strip (31) , default_feedback (0) , default_gainmode (0) , default_send_size (0) @@ -363,9 +367,9 @@ OSC::surface_destroy (OSCSurface* sur) OSCCueObserver* co; if ((co = dynamic_cast(sur->cue_obs)) != 0) { - co->clear_observer (); delete co; sur->cue_obs = 0; + sur->sends.clear (); } OSCGlobalObserver* go; @@ -411,226 +415,247 @@ OSC::register_callbacks() // Some controls have optional "f" for feedback or touchosc // http://hexler.net/docs/touchosc-controls-reference - REGISTER_CALLBACK (serv, "/refresh", "", refresh_surface); - REGISTER_CALLBACK (serv, "/refresh", "f", refresh_surface); - REGISTER_CALLBACK (serv, "/strip/list", "", routes_list); - REGISTER_CALLBACK (serv, "/strip/list", "f", routes_list); - REGISTER_CALLBACK (serv, "/add_marker", "", add_marker); - REGISTER_CALLBACK (serv, "/add_marker", "f", add_marker); - REGISTER_CALLBACK (serv, "/access_action", "s", access_action); - REGISTER_CALLBACK (serv, "/loop_toggle", "", loop_toggle); - REGISTER_CALLBACK (serv, "/loop_toggle", "f", loop_toggle); - REGISTER_CALLBACK (serv, "/loop_location", "ii", loop_location); - REGISTER_CALLBACK (serv, "/goto_start", "", goto_start); - REGISTER_CALLBACK (serv, "/goto_start", "f", goto_start); - REGISTER_CALLBACK (serv, "/goto_end", "", goto_end); - REGISTER_CALLBACK (serv, "/goto_end", "f", goto_end); - REGISTER_CALLBACK (serv, "/scrub", "f", scrub); - REGISTER_CALLBACK (serv, "/jog", "f", jog); - REGISTER_CALLBACK (serv, "/jog/mode", "f", jog_mode); - REGISTER_CALLBACK (serv, "/rewind", "", rewind); - REGISTER_CALLBACK (serv, "/rewind", "f", rewind); - REGISTER_CALLBACK (serv, "/ffwd", "", ffwd); - REGISTER_CALLBACK (serv, "/ffwd", "f", ffwd); - REGISTER_CALLBACK (serv, "/transport_stop", "", transport_stop); - REGISTER_CALLBACK (serv, "/transport_stop", "f", transport_stop); - REGISTER_CALLBACK (serv, "/transport_play", "", transport_play); - REGISTER_CALLBACK (serv, "/transport_play", "f", transport_play); - REGISTER_CALLBACK (serv, "/transport_frame", "", transport_sample); - REGISTER_CALLBACK (serv, "/transport_speed", "", transport_speed); - REGISTER_CALLBACK (serv, "/record_enabled", "", record_enabled); - REGISTER_CALLBACK (serv, "/set_transport_speed", "f", set_transport_speed); + REGISTER_CALLBACK (serv, X_("/refresh"), "", refresh_surface); + REGISTER_CALLBACK (serv, X_("/refresh"), "f", refresh_surface); + REGISTER_CALLBACK (serv, X_("/strip/list"), "", routes_list); + REGISTER_CALLBACK (serv, X_("/strip/list"), "f", routes_list); + REGISTER_CALLBACK (serv, X_("/group/list"), "", group_list); + REGISTER_CALLBACK (serv, X_("/group/list"), "f", group_list); + REGISTER_CALLBACK (serv, X_("/strip/custom/mode"), "f", custom_mode); + REGISTER_CALLBACK (serv, X_("/strip/custom/clear"), "f", custom_clear); + REGISTER_CALLBACK (serv, X_("/strip/custom/clear"), "", custom_clear); + REGISTER_CALLBACK (serv, X_("/surface/list"), "", surface_list); + REGISTER_CALLBACK (serv, X_("/surface/list"), "f", surface_list); + REGISTER_CALLBACK (serv, X_("/add_marker"), "", add_marker); + REGISTER_CALLBACK (serv, X_("/add_marker"), "f", add_marker); + REGISTER_CALLBACK (serv, X_("/access_action"), "s", access_action); + REGISTER_CALLBACK (serv, X_("/loop_toggle"), "", loop_toggle); + REGISTER_CALLBACK (serv, X_("/loop_toggle"), "f", loop_toggle); + REGISTER_CALLBACK (serv, X_("/loop_location"), "ii", loop_location); + REGISTER_CALLBACK (serv, X_("/goto_start"), "", goto_start); + REGISTER_CALLBACK (serv, X_("/goto_start"), "f", goto_start); + REGISTER_CALLBACK (serv, X_("/goto_end"), "", goto_end); + REGISTER_CALLBACK (serv, X_("/goto_end"), "f", goto_end); + REGISTER_CALLBACK (serv, X_("/scrub"), "f", scrub); + REGISTER_CALLBACK (serv, X_("/jog"), "f", jog); + REGISTER_CALLBACK (serv, X_("/jog/mode"), "f", jog_mode); + REGISTER_CALLBACK (serv, X_("/rewind"), "", rewind); + REGISTER_CALLBACK (serv, X_("/rewind"), "f", rewind); + REGISTER_CALLBACK (serv, X_("/ffwd"), "", ffwd); + REGISTER_CALLBACK (serv, X_("/ffwd"), "f", ffwd); + REGISTER_CALLBACK (serv, X_("/transport_stop"), "", transport_stop); + REGISTER_CALLBACK (serv, X_("/transport_stop"), "f", transport_stop); + REGISTER_CALLBACK (serv, X_("/transport_play"), "", transport_play); + REGISTER_CALLBACK (serv, X_("/transport_play"), "f", transport_play); + REGISTER_CALLBACK (serv, X_("/transport_frame"), "", transport_sample); + REGISTER_CALLBACK (serv, X_("/transport_speed"), "", transport_speed); + REGISTER_CALLBACK (serv, X_("/record_enabled"), "", record_enabled); + REGISTER_CALLBACK (serv, X_("/set_transport_speed"), "f", set_transport_speed); // locate ii is position and bool roll - REGISTER_CALLBACK (serv, "/locate", "ii", locate); - REGISTER_CALLBACK (serv, "/save_state", "", save_state); - REGISTER_CALLBACK (serv, "/save_state", "f", save_state); - REGISTER_CALLBACK (serv, "/prev_marker", "", prev_marker); - REGISTER_CALLBACK (serv, "/prev_marker", "f", prev_marker); - REGISTER_CALLBACK (serv, "/next_marker", "", next_marker); - REGISTER_CALLBACK (serv, "/next_marker", "f", next_marker); - REGISTER_CALLBACK (serv, "/undo", "", undo); - REGISTER_CALLBACK (serv, "/undo", "f", undo); - REGISTER_CALLBACK (serv, "/redo", "", redo); - REGISTER_CALLBACK (serv, "/redo", "f", redo); - REGISTER_CALLBACK (serv, "/toggle_punch_in", "", toggle_punch_in); - REGISTER_CALLBACK (serv, "/toggle_punch_in", "f", toggle_punch_in); - REGISTER_CALLBACK (serv, "/toggle_punch_out", "", toggle_punch_out); - REGISTER_CALLBACK (serv, "/toggle_punch_out", "f", toggle_punch_out); - REGISTER_CALLBACK (serv, "/rec_enable_toggle", "", rec_enable_toggle); - REGISTER_CALLBACK (serv, "/rec_enable_toggle", "f", rec_enable_toggle); - REGISTER_CALLBACK (serv, "/toggle_all_rec_enables", "", toggle_all_rec_enables); - REGISTER_CALLBACK (serv, "/toggle_all_rec_enables", "f", toggle_all_rec_enables); - REGISTER_CALLBACK (serv, "/all_tracks_rec_in", "f", all_tracks_rec_in); - REGISTER_CALLBACK (serv, "/all_tracks_rec_out", "f", all_tracks_rec_out); - REGISTER_CALLBACK (serv, "/cancel_all_solos", "f", cancel_all_solos); - REGISTER_CALLBACK (serv, "/remove_marker", "", remove_marker_at_playhead); - REGISTER_CALLBACK (serv, "/remove_marker", "f", remove_marker_at_playhead); - REGISTER_CALLBACK (serv, "/jump_bars", "f", jump_by_bars); - REGISTER_CALLBACK (serv, "/jump_seconds", "f", jump_by_seconds); - REGISTER_CALLBACK (serv, "/mark_in", "", mark_in); - REGISTER_CALLBACK (serv, "/mark_in", "f", mark_in); - REGISTER_CALLBACK (serv, "/mark_out", "", mark_out); - REGISTER_CALLBACK (serv, "/mark_out", "f", mark_out); - REGISTER_CALLBACK (serv, "/toggle_click", "", toggle_click); - REGISTER_CALLBACK (serv, "/toggle_click", "f", toggle_click); - REGISTER_CALLBACK (serv, "/midi_panic", "", midi_panic); - REGISTER_CALLBACK (serv, "/midi_panic", "f", midi_panic); - REGISTER_CALLBACK (serv, "/toggle_roll", "", toggle_roll); - REGISTER_CALLBACK (serv, "/toggle_roll", "f", toggle_roll); - REGISTER_CALLBACK (serv, "/stop_forget", "", stop_forget); - REGISTER_CALLBACK (serv, "/stop_forget", "f", stop_forget); - REGISTER_CALLBACK (serv, "/set_punch_range", "", set_punch_range); - REGISTER_CALLBACK (serv, "/set_punch_range", "f", set_punch_range); - REGISTER_CALLBACK (serv, "/set_loop_range", "", set_loop_range); - REGISTER_CALLBACK (serv, "/set_loop_range", "f", set_loop_range); - REGISTER_CALLBACK (serv, "/set_session_range", "", set_session_range); - REGISTER_CALLBACK (serv, "/set_session_range", "f", set_session_range); - REGISTER_CALLBACK (serv, "/toggle_monitor_mute", "", toggle_monitor_mute); - REGISTER_CALLBACK (serv, "/toggle_monitor_mute", "f", toggle_monitor_mute); - REGISTER_CALLBACK (serv, "/toggle_monitor_dim", "", toggle_monitor_dim); - REGISTER_CALLBACK (serv, "/toggle_monitor_dim", "f", toggle_monitor_dim); - REGISTER_CALLBACK (serv, "/toggle_monitor_mono", "", toggle_monitor_mono); - REGISTER_CALLBACK (serv, "/toggle_monitor_mono", "f", toggle_monitor_mono); - REGISTER_CALLBACK (serv, "/quick_snapshot_switch", "", quick_snapshot_switch); - REGISTER_CALLBACK (serv, "/quick_snapshot_switch", "f", quick_snapshot_switch); - REGISTER_CALLBACK (serv, "/quick_snapshot_stay", "", quick_snapshot_stay); - REGISTER_CALLBACK (serv, "/quick_snapshot_stay", "f", quick_snapshot_stay); - REGISTER_CALLBACK (serv, "/fit_1_track", "", fit_1_track); - REGISTER_CALLBACK (serv, "/fit_1_track", "f", fit_1_track); - REGISTER_CALLBACK (serv, "/fit_2_tracks", "", fit_2_tracks); - REGISTER_CALLBACK (serv, "/fit_2_tracks", "f", fit_2_tracks); - REGISTER_CALLBACK (serv, "/fit_4_tracks", "", fit_4_tracks); - REGISTER_CALLBACK (serv, "/fit_4_tracks", "f", fit_4_tracks); - REGISTER_CALLBACK (serv, "/fit_8_tracks", "", fit_8_tracks); - REGISTER_CALLBACK (serv, "/fit_8_tracks", "f", fit_8_tracks); - REGISTER_CALLBACK (serv, "/fit_16_tracks", "", fit_16_tracks); - REGISTER_CALLBACK (serv, "/fit_16_tracks", "f", fit_16_tracks); - REGISTER_CALLBACK (serv, "/fit_32_tracks", "", fit_32_tracks); - REGISTER_CALLBACK (serv, "/fit_32_tracks", "f", fit_32_tracks); - REGISTER_CALLBACK (serv, "/fit_all_tracks", "", fit_all_tracks); - REGISTER_CALLBACK (serv, "/fit_all_tracks", "f", fit_all_tracks); - REGISTER_CALLBACK (serv, "/zoom_100_ms", "", zoom_100_ms); - REGISTER_CALLBACK (serv, "/zoom_100_ms", "f", zoom_100_ms); - REGISTER_CALLBACK (serv, "/zoom_1_sec", "", zoom_1_sec); - REGISTER_CALLBACK (serv, "/zoom_1_sec", "f", zoom_1_sec); - REGISTER_CALLBACK (serv, "/zoom_10_sec", "", zoom_10_sec); - REGISTER_CALLBACK (serv, "/zoom_10_sec", "f", zoom_10_sec); - REGISTER_CALLBACK (serv, "/zoom_1_min", "", zoom_1_min); - REGISTER_CALLBACK (serv, "/zoom_1_min", "f", zoom_1_min); - REGISTER_CALLBACK (serv, "/zoom_5_min", "", zoom_5_min); - REGISTER_CALLBACK (serv, "/zoom_5_min", "f", zoom_5_min); - REGISTER_CALLBACK (serv, "/zoom_10_min", "", zoom_10_min); - REGISTER_CALLBACK (serv, "/zoom_10_min", "f", zoom_10_min); - REGISTER_CALLBACK (serv, "/zoom_to_session", "", zoom_to_session); - REGISTER_CALLBACK (serv, "/zoom_to_session", "f", zoom_to_session); - REGISTER_CALLBACK (serv, "/temporal_zoom_in", "f", temporal_zoom_in); - REGISTER_CALLBACK (serv, "/temporal_zoom_in", "", temporal_zoom_in); - REGISTER_CALLBACK (serv, "/temporal_zoom_out", "", temporal_zoom_out); - REGISTER_CALLBACK (serv, "/temporal_zoom_out", "f", temporal_zoom_out); - REGISTER_CALLBACK (serv, "/scroll_up_1_track", "f", scroll_up_1_track); - REGISTER_CALLBACK (serv, "/scroll_up_1_track", "", scroll_up_1_track); - REGISTER_CALLBACK (serv, "/scroll_dn_1_track", "f", scroll_dn_1_track); - REGISTER_CALLBACK (serv, "/scroll_dn_1_track", "", scroll_dn_1_track); - REGISTER_CALLBACK (serv, "/scroll_up_1_page", "f", scroll_up_1_page); - REGISTER_CALLBACK (serv, "/scroll_up_1_page", "", scroll_up_1_page); - REGISTER_CALLBACK (serv, "/scroll_dn_1_page", "f", scroll_dn_1_page); - REGISTER_CALLBACK (serv, "/scroll_dn_1_page", "", scroll_dn_1_page); - REGISTER_CALLBACK (serv, "/bank_up", "", bank_up); - REGISTER_CALLBACK (serv, "/bank_up", "f", bank_delta); - REGISTER_CALLBACK (serv, "/bank_down", "", bank_down); - REGISTER_CALLBACK (serv, "/bank_down", "f", bank_down); - REGISTER_CALLBACK (serv, "/use_group", "f", use_group); + REGISTER_CALLBACK (serv, X_("/locate"), "ii", locate); + REGISTER_CALLBACK (serv, X_("/save_state"), "", save_state); + REGISTER_CALLBACK (serv, X_("/save_state"), "f", save_state); + REGISTER_CALLBACK (serv, X_("/prev_marker"), "", prev_marker); + REGISTER_CALLBACK (serv, X_("/prev_marker"), "f", prev_marker); + REGISTER_CALLBACK (serv, X_("/next_marker"), "", next_marker); + REGISTER_CALLBACK (serv, X_("/next_marker"), "f", next_marker); + REGISTER_CALLBACK (serv, X_("/undo"), "", undo); + REGISTER_CALLBACK (serv, X_("/undo"), "f", undo); + REGISTER_CALLBACK (serv, X_("/redo"), "", redo); + REGISTER_CALLBACK (serv, X_("/redo"), "f", redo); + REGISTER_CALLBACK (serv, X_("/toggle_punch_in"), "", toggle_punch_in); + REGISTER_CALLBACK (serv, X_("/toggle_punch_in"), "f", toggle_punch_in); + REGISTER_CALLBACK (serv, X_("/toggle_punch_out"), "", toggle_punch_out); + REGISTER_CALLBACK (serv, X_("/toggle_punch_out"), "f", toggle_punch_out); + REGISTER_CALLBACK (serv, X_("/rec_enable_toggle"), "", rec_enable_toggle); + REGISTER_CALLBACK (serv, X_("/rec_enable_toggle"), "f", rec_enable_toggle); + REGISTER_CALLBACK (serv, X_("/toggle_all_rec_enables"), "", toggle_all_rec_enables); + REGISTER_CALLBACK (serv, X_("/toggle_all_rec_enables"), "f", toggle_all_rec_enables); + REGISTER_CALLBACK (serv, X_("/all_tracks_rec_in"), "f", all_tracks_rec_in); + REGISTER_CALLBACK (serv, X_("/all_tracks_rec_out"), "f", all_tracks_rec_out); + REGISTER_CALLBACK (serv, X_("/cancel_all_solos"), "f", cancel_all_solos); + REGISTER_CALLBACK (serv, X_("/remove_marker"), "", remove_marker_at_playhead); + REGISTER_CALLBACK (serv, X_("/remove_marker"), "f", remove_marker_at_playhead); + REGISTER_CALLBACK (serv, X_("/jump_bars"), "f", jump_by_bars); + REGISTER_CALLBACK (serv, X_("/jump_seconds"), "f", jump_by_seconds); + REGISTER_CALLBACK (serv, X_("/mark_in"), "", mark_in); + REGISTER_CALLBACK (serv, X_("/mark_in"), "f", mark_in); + REGISTER_CALLBACK (serv, X_("/mark_out"), "", mark_out); + REGISTER_CALLBACK (serv, X_("/mark_out"), "f", mark_out); + REGISTER_CALLBACK (serv, X_("/toggle_click"), "", toggle_click); + REGISTER_CALLBACK (serv, X_("/toggle_click"), "f", toggle_click); + REGISTER_CALLBACK (serv, X_("/click/level"), "f", click_level); + REGISTER_CALLBACK (serv, X_("/midi_panic"), "", midi_panic); + REGISTER_CALLBACK (serv, X_("/midi_panic"), "f", midi_panic); + REGISTER_CALLBACK (serv, X_("/toggle_roll"), "", toggle_roll); + REGISTER_CALLBACK (serv, X_("/toggle_roll"), "f", toggle_roll); + REGISTER_CALLBACK (serv, X_("/stop_forget"), "", stop_forget); + REGISTER_CALLBACK (serv, X_("/stop_forget"), "f", stop_forget); + REGISTER_CALLBACK (serv, X_("/set_punch_range"), "", set_punch_range); + REGISTER_CALLBACK (serv, X_("/set_punch_range"), "f", set_punch_range); + REGISTER_CALLBACK (serv, X_("/set_loop_range"), "", set_loop_range); + REGISTER_CALLBACK (serv, X_("/set_loop_range"), "f", set_loop_range); + REGISTER_CALLBACK (serv, X_("/set_session_range"), "", set_session_range); + REGISTER_CALLBACK (serv, X_("/set_session_range"), "f", set_session_range); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_mute"), "", toggle_monitor_mute); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_mute"), "f", toggle_monitor_mute); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_dim"), "", toggle_monitor_dim); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_dim"), "f", toggle_monitor_dim); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_mono"), "", toggle_monitor_mono); + REGISTER_CALLBACK (serv, X_("/toggle_monitor_mono"), "f", toggle_monitor_mono); + REGISTER_CALLBACK (serv, X_("/quick_snapshot_switch"), "", quick_snapshot_switch); + REGISTER_CALLBACK (serv, X_("/quick_snapshot_switch"), "f", quick_snapshot_switch); + REGISTER_CALLBACK (serv, X_("/quick_snapshot_stay"), "", quick_snapshot_stay); + REGISTER_CALLBACK (serv, X_("/quick_snapshot_stay"), "f", quick_snapshot_stay); + REGISTER_CALLBACK (serv, X_("/session_name"), "s", name_session); + REGISTER_CALLBACK (serv, X_("/fit_1_track"), "", fit_1_track); + REGISTER_CALLBACK (serv, X_("/fit_1_track"), "f", fit_1_track); + REGISTER_CALLBACK (serv, X_("/fit_2_tracks"), "", fit_2_tracks); + REGISTER_CALLBACK (serv, X_("/fit_2_tracks"), "f", fit_2_tracks); + REGISTER_CALLBACK (serv, X_("/fit_4_tracks"), "", fit_4_tracks); + REGISTER_CALLBACK (serv, X_("/fit_4_tracks"), "f", fit_4_tracks); + REGISTER_CALLBACK (serv, X_("/fit_8_tracks"), "", fit_8_tracks); + REGISTER_CALLBACK (serv, X_("/fit_8_tracks"), "f", fit_8_tracks); + REGISTER_CALLBACK (serv, X_("/fit_16_tracks"), "", fit_16_tracks); + REGISTER_CALLBACK (serv, X_("/fit_16_tracks"), "f", fit_16_tracks); + REGISTER_CALLBACK (serv, X_("/fit_32_tracks"), "", fit_32_tracks); + REGISTER_CALLBACK (serv, X_("/fit_32_tracks"), "f", fit_32_tracks); + REGISTER_CALLBACK (serv, X_("/fit_all_tracks"), "", fit_all_tracks); + REGISTER_CALLBACK (serv, X_("/fit_all_tracks"), "f", fit_all_tracks); + REGISTER_CALLBACK (serv, X_("/zoom_100_ms"), "", zoom_100_ms); + REGISTER_CALLBACK (serv, X_("/zoom_100_ms"), "f", zoom_100_ms); + REGISTER_CALLBACK (serv, X_("/zoom_1_sec"), "", zoom_1_sec); + REGISTER_CALLBACK (serv, X_("/zoom_1_sec"), "f", zoom_1_sec); + REGISTER_CALLBACK (serv, X_("/zoom_10_sec"), "", zoom_10_sec); + REGISTER_CALLBACK (serv, X_("/zoom_10_sec"), "f", zoom_10_sec); + REGISTER_CALLBACK (serv, X_("/zoom_1_min"), "", zoom_1_min); + REGISTER_CALLBACK (serv, X_("/zoom_1_min"), "f", zoom_1_min); + REGISTER_CALLBACK (serv, X_("/zoom_5_min"), "", zoom_5_min); + REGISTER_CALLBACK (serv, X_("/zoom_5_min"), "f", zoom_5_min); + REGISTER_CALLBACK (serv, X_("/zoom_10_min"), "", zoom_10_min); + REGISTER_CALLBACK (serv, X_("/zoom_10_min"), "f", zoom_10_min); + REGISTER_CALLBACK (serv, X_("/zoom_to_session"), "", zoom_to_session); + REGISTER_CALLBACK (serv, X_("/zoom_to_session"), "f", zoom_to_session); + REGISTER_CALLBACK (serv, X_("/temporal_zoom_in"), "f", temporal_zoom_in); + REGISTER_CALLBACK (serv, X_("/temporal_zoom_in"), "", temporal_zoom_in); + REGISTER_CALLBACK (serv, X_("/temporal_zoom_out"), "", temporal_zoom_out); + REGISTER_CALLBACK (serv, X_("/temporal_zoom_out"), "f", temporal_zoom_out); + REGISTER_CALLBACK (serv, X_("/scroll_up_1_track"), "f", scroll_up_1_track); + REGISTER_CALLBACK (serv, X_("/scroll_up_1_track"), "", scroll_up_1_track); + REGISTER_CALLBACK (serv, X_("/scroll_dn_1_track"), "f", scroll_dn_1_track); + REGISTER_CALLBACK (serv, X_("/scroll_dn_1_track"), "", scroll_dn_1_track); + REGISTER_CALLBACK (serv, X_("/scroll_up_1_page"), "f", scroll_up_1_page); + REGISTER_CALLBACK (serv, X_("/scroll_up_1_page"), "", scroll_up_1_page); + REGISTER_CALLBACK (serv, X_("/scroll_dn_1_page"), "f", scroll_dn_1_page); + REGISTER_CALLBACK (serv, X_("/scroll_dn_1_page"), "", scroll_dn_1_page); + REGISTER_CALLBACK (serv, X_("/bank_up"), "", bank_up); + REGISTER_CALLBACK (serv, X_("/bank_up"), "f", bank_delta); + REGISTER_CALLBACK (serv, X_("/bank_down"), "", bank_down); + REGISTER_CALLBACK (serv, X_("/bank_down"), "f", bank_down); + REGISTER_CALLBACK (serv, X_("/use_group"), "f", use_group); // controls for "special" strips - REGISTER_CALLBACK (serv, "/master/gain", "f", master_set_gain); - REGISTER_CALLBACK (serv, "/master/fader", "f", master_set_fader); - REGISTER_CALLBACK (serv, "/master/db_delta", "f", master_delta_gain); - REGISTER_CALLBACK (serv, "/master/mute", "i", master_set_mute); - REGISTER_CALLBACK (serv, "/master/trimdB", "f", master_set_trim); - REGISTER_CALLBACK (serv, "/master/pan_stereo_position", "f", master_set_pan_stereo_position); - REGISTER_CALLBACK (serv, "/master/select", "f", master_select); - REGISTER_CALLBACK (serv, "/monitor/gain", "f", monitor_set_gain); - REGISTER_CALLBACK (serv, "/monitor/fader", "f", monitor_set_fader); - REGISTER_CALLBACK (serv, "/monitor/db_delta", "f", monitor_delta_gain); - REGISTER_CALLBACK (serv, "/monitor/mute", "i", monitor_set_mute); - REGISTER_CALLBACK (serv, "/monitor/dim", "i", monitor_set_dim); - REGISTER_CALLBACK (serv, "/monitor/mono", "i", monitor_set_mono); + REGISTER_CALLBACK (serv, X_("/master/gain"), "f", master_set_gain); + REGISTER_CALLBACK (serv, X_("/master/fader"), "f", master_set_fader); + REGISTER_CALLBACK (serv, X_("/master/db_delta"), "f", master_delta_gain); + REGISTER_CALLBACK (serv, X_("/master/mute"), "i", master_set_mute); + REGISTER_CALLBACK (serv, X_("/master/trimdB"), "f", master_set_trim); + REGISTER_CALLBACK (serv, X_("/master/pan_stereo_position"), "f", master_set_pan_stereo_position); + REGISTER_CALLBACK (serv, X_("/master/select"), "f", master_select); + REGISTER_CALLBACK (serv, X_("/monitor/gain"), "f", monitor_set_gain); + REGISTER_CALLBACK (serv, X_("/monitor/fader"), "f", monitor_set_fader); + REGISTER_CALLBACK (serv, X_("/monitor/db_delta"), "f", monitor_delta_gain); + REGISTER_CALLBACK (serv, X_("/monitor/mute"), "i", monitor_set_mute); + REGISTER_CALLBACK (serv, X_("/monitor/dim"), "i", monitor_set_dim); + REGISTER_CALLBACK (serv, X_("/monitor/mono"), "i", monitor_set_mono); // Controls for the Selected strip - REGISTER_CALLBACK (serv, "/select/recenable", "i", sel_recenable); - REGISTER_CALLBACK (serv, "/select/record_safe", "i", sel_recsafe); - REGISTER_CALLBACK (serv, "/select/mute", "i", sel_mute); - REGISTER_CALLBACK (serv, "/select/solo", "i", sel_solo); - REGISTER_CALLBACK (serv, "/select/solo_iso", "i", sel_solo_iso); - REGISTER_CALLBACK (serv, "/select/solo_safe", "i", sel_solo_safe); - REGISTER_CALLBACK (serv, "/select/monitor_input", "i", sel_monitor_input); - REGISTER_CALLBACK (serv, "/select/monitor_disk", "i", sel_monitor_disk); - REGISTER_CALLBACK (serv, "/select/polarity", "i", sel_phase); - REGISTER_CALLBACK (serv, "/select/gain", "f", sel_gain); - REGISTER_CALLBACK (serv, "/select/fader", "f", sel_fader); - REGISTER_CALLBACK (serv, "/select/db_delta", "f", sel_dB_delta); - REGISTER_CALLBACK (serv, "/select/trimdB", "f", sel_trim); - REGISTER_CALLBACK (serv, "/select/pan_stereo_position", "f", sel_pan_position); - REGISTER_CALLBACK (serv, "/select/pan_stereo_width", "f", sel_pan_width); - REGISTER_CALLBACK (serv, "/select/send_gain", "if", sel_sendgain); - REGISTER_CALLBACK (serv, "/select/send_fader", "if", sel_sendfader); - REGISTER_CALLBACK (serv, "/select/send_enable", "if", sel_sendenable); - REGISTER_CALLBACK (serv, "/select/master_send_enable", "i", sel_master_send_enable); - REGISTER_CALLBACK (serv, "/select/send_page", "f", sel_send_page); - REGISTER_CALLBACK (serv, "/select/plug_page", "f", sel_plug_page); - REGISTER_CALLBACK (serv, "/select/plugin", "f", sel_plugin); - REGISTER_CALLBACK (serv, "/select/expand", "i", sel_expand); - REGISTER_CALLBACK (serv, "/select/pan_elevation_position", "f", sel_pan_elevation); - REGISTER_CALLBACK (serv, "/select/pan_frontback_position", "f", sel_pan_frontback); - REGISTER_CALLBACK (serv, "/select/pan_lfe_control", "f", sel_pan_lfe); - REGISTER_CALLBACK (serv, "/select/comp_enable", "f", sel_comp_enable); - REGISTER_CALLBACK (serv, "/select/comp_threshold", "f", sel_comp_threshold); - REGISTER_CALLBACK (serv, "/select/comp_speed", "f", sel_comp_speed); - REGISTER_CALLBACK (serv, "/select/comp_mode", "f", sel_comp_mode); - REGISTER_CALLBACK (serv, "/select/comp_makeup", "f", sel_comp_makeup); - REGISTER_CALLBACK (serv, "/select/eq_enable", "f", sel_eq_enable); - REGISTER_CALLBACK (serv, "/select/eq_hpf/freq", "f", sel_eq_hpf_freq); - REGISTER_CALLBACK (serv, "/select/eq_hpf/enable", "f", sel_eq_hpf_enable); - REGISTER_CALLBACK (serv, "/select/eq_hpf/slope", "f", sel_eq_hpf_slope); - REGISTER_CALLBACK (serv, "/select/eq_lpf/freq", "f", sel_eq_lpf_freq); - REGISTER_CALLBACK (serv, "/select/eq_lpf/enable", "f", sel_eq_lpf_enable); - REGISTER_CALLBACK (serv, "/select/eq_lpf/slope", "f", sel_eq_lpf_slope); - REGISTER_CALLBACK (serv, "/select/eq_gain", "if", sel_eq_gain); - REGISTER_CALLBACK (serv, "/select/eq_freq", "if", sel_eq_freq); - REGISTER_CALLBACK (serv, "/select/eq_q", "if", sel_eq_q); - REGISTER_CALLBACK (serv, "/select/eq_shape", "if", sel_eq_shape); + REGISTER_CALLBACK (serv, X_("/select/recenable"), "i", sel_recenable); + REGISTER_CALLBACK (serv, X_("/select/record_safe"), "i", sel_recsafe); + REGISTER_CALLBACK (serv, X_("/select/name"), "s", sel_rename); + REGISTER_CALLBACK (serv, X_("/select/comment"), "s", sel_comment); + REGISTER_CALLBACK (serv, X_("/select/mute"), "i", sel_mute); + REGISTER_CALLBACK (serv, X_("/select/solo"), "i", sel_solo); + REGISTER_CALLBACK (serv, X_("/select/solo_iso"), "i", sel_solo_iso); + REGISTER_CALLBACK (serv, X_("/select/solo_safe"), "i", sel_solo_safe); + REGISTER_CALLBACK (serv, X_("/select/monitor_input"), "i", sel_monitor_input); + REGISTER_CALLBACK (serv, X_("/select/monitor_disk"), "i", sel_monitor_disk); + REGISTER_CALLBACK (serv, X_("/select/polarity"), "i", sel_phase); + REGISTER_CALLBACK (serv, X_("/select/gain"), "f", sel_gain); + REGISTER_CALLBACK (serv, X_("/select/fader"), "f", sel_fader); + REGISTER_CALLBACK (serv, X_("/select/db_delta"), "f", sel_dB_delta); + REGISTER_CALLBACK (serv, X_("/select/trimdB"), "f", sel_trim); + REGISTER_CALLBACK (serv, X_("/select/hide"), "i", sel_hide); + REGISTER_CALLBACK (serv, X_("/select/previous"), "f", sel_previous); + REGISTER_CALLBACK (serv, X_("/select/previous"), "", sel_previous); + REGISTER_CALLBACK (serv, X_("/select/next"), "f", sel_next); + REGISTER_CALLBACK (serv, X_("/select/next"), "", sel_next); + REGISTER_CALLBACK (serv, X_("/select/pan_stereo_position"), "f", sel_pan_position); + REGISTER_CALLBACK (serv, X_("/select/pan_stereo_width"), "f", sel_pan_width); + REGISTER_CALLBACK (serv, X_("/select/send_gain"), "if", sel_sendgain); + REGISTER_CALLBACK (serv, X_("/select/send_fader"), "if", sel_sendfader); + REGISTER_CALLBACK (serv, X_("/select/send_enable"), "if", sel_sendenable); + REGISTER_CALLBACK (serv, X_("/select/master_send_enable"), "i", sel_master_send_enable); + REGISTER_CALLBACK (serv, X_("/select/send_page"), "f", sel_send_page); + REGISTER_CALLBACK (serv, X_("/select/plug_page"), "f", sel_plug_page); + REGISTER_CALLBACK (serv, X_("/select/plugin"), "f", sel_plugin); + REGISTER_CALLBACK (serv, X_("/select/plugin/activate"), "f", sel_plugin_activate); + REGISTER_CALLBACK (serv, X_("/select/expand"), "i", sel_expand); + REGISTER_CALLBACK (serv, X_("/select/pan_elevation_position"), "f", sel_pan_elevation); + REGISTER_CALLBACK (serv, X_("/select/pan_frontback_position"), "f", sel_pan_frontback); + REGISTER_CALLBACK (serv, X_("/select/pan_lfe_control"), "f", sel_pan_lfe); + REGISTER_CALLBACK (serv, X_("/select/comp_enable"), "f", sel_comp_enable); + REGISTER_CALLBACK (serv, X_("/select/comp_threshold"), "f", sel_comp_threshold); + REGISTER_CALLBACK (serv, X_("/select/comp_speed"), "f", sel_comp_speed); + REGISTER_CALLBACK (serv, X_("/select/comp_mode"), "f", sel_comp_mode); + REGISTER_CALLBACK (serv, X_("/select/comp_makeup"), "f", sel_comp_makeup); + REGISTER_CALLBACK (serv, X_("/select/eq_enable"), "f", sel_eq_enable); + REGISTER_CALLBACK (serv, X_("/select/eq_hpf/freq"), "f", sel_eq_hpf_freq); + REGISTER_CALLBACK (serv, X_("/select/eq_hpf/enable"), "f", sel_eq_hpf_enable); + REGISTER_CALLBACK (serv, X_("/select/eq_hpf/slope"), "f", sel_eq_hpf_slope); + REGISTER_CALLBACK (serv, X_("/select/eq_lpf/freq"), "f", sel_eq_lpf_freq); + REGISTER_CALLBACK (serv, X_("/select/eq_lpf/enable"), "f", sel_eq_lpf_enable); + REGISTER_CALLBACK (serv, X_("/select/eq_lpf/slope"), "f", sel_eq_lpf_slope); + REGISTER_CALLBACK (serv, X_("/select/eq_gain"), "if", sel_eq_gain); + REGISTER_CALLBACK (serv, X_("/select/eq_freq"), "if", sel_eq_freq); + REGISTER_CALLBACK (serv, X_("/select/eq_q"), "if", sel_eq_q); + REGISTER_CALLBACK (serv, X_("/select/eq_shape"), "if", sel_eq_shape); + REGISTER_CALLBACK (serv, X_("/select/add_personal_send"), "s", sel_new_personal_send); /* These commands require the route index in addition to the arg; TouchOSC (et al) can't use these */ - REGISTER_CALLBACK (serv, "/strip/mute", "ii", route_mute); - REGISTER_CALLBACK (serv, "/strip/solo", "ii", route_solo); - REGISTER_CALLBACK (serv, "/strip/solo_iso", "ii", route_solo_iso); - REGISTER_CALLBACK (serv, "/strip/solo_safe", "ii", route_solo_safe); - REGISTER_CALLBACK (serv, "/strip/recenable", "ii", route_recenable); - REGISTER_CALLBACK (serv, "/strip/record_safe", "ii", route_recsafe); - REGISTER_CALLBACK (serv, "/strip/monitor_input", "ii", route_monitor_input); - REGISTER_CALLBACK (serv, "/strip/monitor_disk", "ii", route_monitor_disk); - REGISTER_CALLBACK (serv, "/strip/expand", "ii", strip_expand); - REGISTER_CALLBACK (serv, "/strip/select", "ii", strip_gui_select); - REGISTER_CALLBACK (serv, "/strip/polarity", "ii", strip_phase); - REGISTER_CALLBACK (serv, "/strip/gain", "if", route_set_gain_dB); - REGISTER_CALLBACK (serv, "/strip/fader", "if", route_set_gain_fader); - REGISTER_CALLBACK (serv, "/strip/trimdB", "if", route_set_trim_dB); - REGISTER_CALLBACK (serv, "/strip/pan_stereo_position", "if", route_set_pan_stereo_position); - REGISTER_CALLBACK (serv, "/strip/pan_stereo_width", "if", route_set_pan_stereo_width); - REGISTER_CALLBACK (serv, "/strip/plugin/parameter", "iiif", route_plugin_parameter); + REGISTER_CALLBACK (serv, X_("/strip/mute"), "ii", route_mute); + REGISTER_CALLBACK (serv, X_("/strip/solo"), "ii", route_solo); + REGISTER_CALLBACK (serv, X_("/strip/solo_iso"), "ii", route_solo_iso); + REGISTER_CALLBACK (serv, X_("/strip/solo_safe"), "ii", route_solo_safe); + REGISTER_CALLBACK (serv, X_("/strip/recenable"), "ii", route_recenable); + REGISTER_CALLBACK (serv, X_("/strip/record_safe"), "ii", route_recsafe); + REGISTER_CALLBACK (serv, X_("/strip/monitor_input"), "ii", route_monitor_input); + REGISTER_CALLBACK (serv, X_("/strip/monitor_disk"), "ii", route_monitor_disk); + REGISTER_CALLBACK (serv, X_("/strip/expand"), "ii", strip_expand); + REGISTER_CALLBACK (serv, X_("/strip/hide"), "ii", strip_hide); + REGISTER_CALLBACK (serv, X_("/strip/select"), "ii", strip_gui_select); + REGISTER_CALLBACK (serv, X_("/strip/polarity"), "ii", strip_phase); + REGISTER_CALLBACK (serv, X_("/strip/gain"), "if", route_set_gain_dB); + REGISTER_CALLBACK (serv, X_("/strip/fader"), "if", route_set_gain_fader); + REGISTER_CALLBACK (serv, X_("/strip/db_delta"), "if", strip_db_delta); + REGISTER_CALLBACK (serv, X_("/strip/trimdB"), "if", route_set_trim_dB); + REGISTER_CALLBACK (serv, X_("/strip/pan_stereo_position"), "if", route_set_pan_stereo_position); + REGISTER_CALLBACK (serv, X_("/strip/pan_stereo_width"), "if", route_set_pan_stereo_width); + REGISTER_CALLBACK (serv, X_("/strip/plugin/parameter"), "iiif", route_plugin_parameter); // prints to cerr only - REGISTER_CALLBACK (serv, "/strip/plugin/parameter/print", "iii", route_plugin_parameter_print); - REGISTER_CALLBACK (serv, "/strip/plugin/activate", "ii", route_plugin_activate); - REGISTER_CALLBACK (serv, "/strip/plugin/deactivate", "ii", route_plugin_deactivate); - REGISTER_CALLBACK (serv, "/strip/send/gain", "iif", route_set_send_gain_dB); - REGISTER_CALLBACK (serv, "/strip/send/fader", "iif", route_set_send_fader); - REGISTER_CALLBACK (serv, "/strip/send/enable", "iif", route_set_send_enable); - REGISTER_CALLBACK(serv, "/strip/name", "is", route_rename); - REGISTER_CALLBACK(serv, "/strip/sends", "i", route_get_sends); - REGISTER_CALLBACK(serv, "/strip/receives", "i", route_get_receives); - REGISTER_CALLBACK(serv, "/strip/plugin/list", "i", route_plugin_list); - REGISTER_CALLBACK(serv, "/strip/plugin/descriptor", "ii", route_plugin_descriptor); - REGISTER_CALLBACK(serv, "/strip/plugin/reset", "ii", route_plugin_reset); + REGISTER_CALLBACK (serv, X_("/strip/plugin/parameter/print"), "iii", route_plugin_parameter_print); + REGISTER_CALLBACK (serv, X_("/strip/plugin/activate"), "ii", route_plugin_activate); + REGISTER_CALLBACK (serv, X_("/strip/plugin/deactivate"), "ii", route_plugin_deactivate); + REGISTER_CALLBACK (serv, X_("/strip/send/gain"), "iif", route_set_send_gain_dB); + REGISTER_CALLBACK (serv, X_("/strip/send/fader"), "iif", route_set_send_fader); + REGISTER_CALLBACK (serv, X_("/strip/send/enable"), "iif", route_set_send_enable); + REGISTER_CALLBACK (serv, X_("/strip/name"), "is", route_rename); + REGISTER_CALLBACK (serv, X_("/strip/group"), "is", strip_group); + REGISTER_CALLBACK (serv, X_("/strip/sends"), "i", route_get_sends); + REGISTER_CALLBACK (serv, X_("/strip/receives"), "i", route_get_receives); + REGISTER_CALLBACK (serv, X_("/strip/plugin/list"), "i", route_plugin_list); + REGISTER_CALLBACK (serv, X_("/strip/plugin/descriptor"), "ii", route_plugin_descriptor); + REGISTER_CALLBACK (serv, X_("/strip/plugin/reset"), "ii", route_plugin_reset); /* still not-really-standardized query interface */ //REGISTER_CALLBACK (serv, "/ardour/*/#current_value", "", current_value); @@ -736,7 +761,7 @@ OSC::send_current_value (const char* path, lo_arg** argv, int argc, lo_message m lo_message_add_string (reply, "not found"); } else { - if (strcmp (path, "/strip/state") == 0) { + if (strcmp (path, X_("/strip/state")) == 0) { if (boost::dynamic_pointer_cast(r)) { lo_message_add_string (reply, "AT"); @@ -752,11 +777,11 @@ OSC::send_current_value (const char* path, lo_arg** argv, int argc, lo_message m lo_message_add_int32 (reply, r->muted()); lo_message_add_int32 (reply, r->soloed()); - } else if (strcmp (path, "/strip/mute") == 0) { + } else if (strcmp (path, X_("/strip/mute")) == 0) { lo_message_add_int32 (reply, (float) r->muted()); - } else if (strcmp (path, "/strip/solo") == 0) { + } else if (strcmp (path, X_("/strip/solo")) == 0) { lo_message_add_int32 (reply, r->soloed()); } @@ -765,9 +790,9 @@ OSC::send_current_value (const char* path, lo_arg** argv, int argc, lo_message m OSCSurface *sur = get_surface(get_address (msg)); if (sur->feedback[14]) { - lo_send_message (get_address (msg), "/reply", reply); + lo_send_message (get_address (msg), X_("/reply"), reply); } else { - lo_send_message (get_address (msg), "#reply", reply); + lo_send_message (get_address (msg), X_("#reply"), reply); } lo_message_free (reply); } @@ -790,35 +815,47 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_ /* 15 for /#current_value plus 2 for / */ len = strlen (path); - /* - * not needed until /strip/listen/ignore fixed - OSCSurface *sur = get_surface(get_address (msg)); - */ + OSCSurface *sur = get_surface(get_address (msg), true); + LinkSet *set; + uint32_t ls = sur->linkset; - if (strstr (path, "/automation")) { + if (ls) { + set = &(link_sets[ls]); + sur->custom_mode = set->custom_mode; + sur->custom_strips = set->custom_strips; + sur->temp_mode = set->temp_mode; + sur->temp_strips = set->temp_strips; + sur->temp_master = set->temp_master; + } + + if (strstr (path, X_("/automation"))) { ret = set_automation (path, types, argv, argc, msg); } else - if (strstr (path, "/touch")) { + if (strstr (path, X_("/touch"))) { ret = touch_detect (path, types, argv, argc, msg); } else - if (len >= 17 && !strcmp (&path[len-15], "/#current_value")) { + if (strstr (path, X_("/spill"))) { + ret = spill (path, types, argv, argc, msg); + + } else + if (len >= 17 && !strcmp (&path[len-15], X_("/#current_value"))) { current_value_query (path, len, argv, argc, msg); ret = 0; } else - if (!strncmp (path, "/cue/", 5)) { + if (!strncmp (path, X_("/cue/"), 5)) { ret = cue_parse (path, types, argv, argc, msg); } else - if (!strncmp (path, "/select/plugin/parameter", 24)) { + if (!strncmp (path, X_("/select/plugin/parameter"), 24)) { ret = select_plugin_parameter (path, types, argv, argc, msg); } else - if (!strncmp (path, "/access_action/", 15)) { + if (!strncmp (path, X_("/access_action/"), 15)) { check_surface (msg); if (!(argc && !argv[0]->i)) { std::string action_path = path; @@ -828,71 +865,69 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_ ret = 0; } else -/* if (strcmp (path, "/strip/listen") == 0) { - check_surface (msg); - - cerr << "set up listener\n"; - - lo_message reply = lo_message_new (); - + if (strcmp (path, X_("/strip/listen")) == 0) { if (argc <= 0) { - lo_message_add_string (reply, "syntax error"); + PBD::warning << "OSC: Wrong number of parameters." << endmsg; + } else if (sur->custom_mode && !sur->temp_mode) { + PBD::warning << "OSC: Can't add strips with custom enabled." << endmsg; } else { for (int n = 0; n < argc; ++n) { - - boost::shared_ptr r = session->get_remote_nth_route (argv[n]->i); - - if (!r) { - lo_message_add_string (reply, "not found"); - cerr << "no such route\n"; - break; - } else { - cerr << "add listener\n"; - listen_to_route (r, get_address (msg)); - lo_message_add_int32 (reply, argv[n]->i); + boost::shared_ptr s = boost::shared_ptr(); + if (types[n] == 'f') { + s = get_strip ((uint32_t) argv[n]->f, get_address (msg)); + } else if (types[n] == 'i') { + s = get_strip (argv[n]->i, get_address (msg)); + } + if (s) { + sur->custom_strips.push_back (s); } } + if (ls) { + set->custom_strips = sur->custom_strips; + } } - - if (sur->feedback[14]) { - lo_send_message (get_address (msg), "/reply", reply); - } else { - lo_send_message (get_address (msg), "#reply", reply); - } - lo_message_free (reply); - ret = 0; - } else - if (strcmp (path, "/strip/ignore") == 0) { - check_surface (msg); - - for (int n = 0; n < argc; ++n) { - - boost::shared_ptr r = session->get_remote_nth_route (argv[n]->i); - - if (r) { - end_listen (r, get_address (msg)); + if (strcmp (path, X_("/strip/ignore")) == 0) { + if (argc <= 0) { + PBD::warning << "OSC: Wrong number of parameters." << endmsg; + } else if (!sur->custom_mode || sur->temp_mode) { + PBD::warning << "OSC: Can't remove strips without custom enabled." << endmsg; + } else { + for (int n = 0; n < argc; ++n) { + uint32_t st_no = 0; + if (types[n] == 'f') { + st_no = (uint32_t) argv[n]->f; + } else if (types[n] == 'i') { + st_no = (uint32_t) argv[n]->i; + } + if (st_no && st_no <= sur->custom_strips.size ()) { + sur->custom_strips[argv[n]->i - 1] = boost::shared_ptr(); + } + } + if (ls) { + set->custom_strips = sur->custom_strips; } + ret = set_bank (sur->bank, msg); } ret = 0; - } else */ - if (strstr (path, "/strip") && (argc != 1)) { + } else + if (strstr (path, X_("/strip")) && (argc != 1)) { // All of the strip commands below require 1 parameter PBD::warning << "OSC: Wrong number of parameters." << endmsg; } else - if (!strncmp (path, "/strip/gain/", 12) && strlen (path) > 12) { + if (!strncmp (path, X_("/strip/gain/"), 12) && strlen (path) > 12) { // in dB int ssid = atoi (&path[12]); ret = route_set_gain_dB (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/strip/fader/", 13) && strlen (path) > 13) { + else if (!strncmp (path, X_("/strip/fader/"), 13) && strlen (path) > 13) { // in fader position int ssid = atoi (&path[13]); ret = route_set_gain_fader (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/strip/db_delta", 15)) { + else if (!strncmp (path, X_("/strip/db_delta"), 15)) { // in db delta int ssid; int ar_off = 0; @@ -916,81 +951,97 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_ } ret = strip_db_delta (ssid, delta, msg); } - else if (!strncmp (path, "/strip/trimdB/", 14) && strlen (path) > 14) { + else if (!strncmp (path, X_("/strip/trimdB/"), 14) && strlen (path) > 14) { int ssid = atoi (&path[14]); ret = route_set_trim_dB (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/strip/pan_stereo_position/", 27) && strlen (path) > 27) { + else if (!strncmp (path, X_("/strip/pan_stereo_position/"), 27) && strlen (path) > 27) { int ssid = atoi (&path[27]); ret = route_set_pan_stereo_position (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/strip/mute/", 12) && strlen (path) > 12) { + else if (!strncmp (path, X_("/strip/mute/"), 12) && strlen (path) > 12) { int ssid = atoi (&path[12]); ret = route_mute (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/solo/", 12) && strlen (path) > 12) { + else if (!strncmp (path, X_("/strip/solo/"), 12) && strlen (path) > 12) { int ssid = atoi (&path[12]); ret = route_solo (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/monitor_input/", 21) && strlen (path) > 21) { + else if (!strncmp (path, X_("/strip/monitor_input/"), 21) && strlen (path) > 21) { int ssid = atoi (&path[21]); ret = route_monitor_input (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/monitor_disk/", 20) && strlen (path) > 20) { + else if (!strncmp (path, X_("/strip/monitor_disk/"), 20) && strlen (path) > 20) { int ssid = atoi (&path[20]); ret = route_monitor_disk (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/recenable/", 17) && strlen (path) > 17) { + else if (!strncmp (path, X_("/strip/recenable/"), 17) && strlen (path) > 17) { int ssid = atoi (&path[17]); ret = route_recenable (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/record_safe/", 19) && strlen (path) > 19) { + else if (!strncmp (path, X_("/strip/record_safe/"), 19) && strlen (path) > 19) { int ssid = atoi (&path[19]); ret = route_recsafe (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/expand/", 14) && strlen (path) > 14) { + else if (!strncmp (path, X_("/strip/expand/"), 14) && strlen (path) > 14) { int ssid = atoi (&path[14]); ret = strip_expand (ssid, argv[0]->i, msg); } - else if (!strncmp (path, "/strip/select/", 14) && strlen (path) > 14) { + else if (!strncmp (path, X_("/strip/hide/"), 12) && strlen (path) > 12) { + int ssid = atoi (&path[12]); + ret = strip_hide (ssid, argv[0]->i, msg); + } + else if (!strncmp (path, X_("/strip/select/"), 14) && strlen (path) > 14) { int ssid = atoi (&path[14]); ret = strip_gui_select (ssid, argv[0]->i, msg); - } else - if (strstr (path, "/select") && (argc != 1)) { + } + else if (strstr (path, X_("/select/group"))) { + ret = parse_sel_group (path, types, argv, argc, msg); + } + else if (strstr (path, X_("/select/vca"))) { + ret = parse_sel_vca (path, types, argv, argc, msg); + } + else if (strstr (path, X_("/select")) && (argc != 1)) { // All of the select commands below require 1 parameter PBD::warning << "OSC: Wrong number of parameters." << endmsg; } - else if (!strncmp (path, "/select/send_gain/", 18) && strlen (path) > 18) { + else if (!strncmp (path, X_("/select/send_gain/"), 18) && strlen (path) > 18) { int ssid = atoi (&path[18]); ret = sel_sendgain (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/select/send_fader/", 19) && strlen (path) > 19) { + else if (!strncmp (path, X_("/select/send_fader/"), 19) && strlen (path) > 19) { int ssid = atoi (&path[19]); ret = sel_sendfader (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/select/send_enable/", 20) && strlen (path) > 20) { + else if (!strncmp (path, X_("/select/send_enable/"), 20) && strlen (path) > 20) { int ssid = atoi (&path[20]); ret = sel_sendenable (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/select/eq_gain/", 16) && strlen (path) > 16) { + else if (!strncmp (path, X_("/select/eq_gain/"), 16) && strlen (path) > 16) { int ssid = atoi (&path[16]); ret = sel_eq_gain (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/select/eq_freq/", 16) && strlen (path) > 16) { + else if (!strncmp (path, X_("/select/eq_freq/"), 16) && strlen (path) > 16) { int ssid = atoi (&path[16]); ret = sel_eq_freq (ssid, argv[0]->f , msg); } - else if (!strncmp (path, "/select/eq_q/", 13) && strlen (path) > 13) { + else if (!strncmp (path, X_("/select/eq_q/"), 13) && strlen (path) > 13) { int ssid = atoi (&path[13]); ret = sel_eq_q (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/select/eq_shape/", 17) && strlen (path) > 17) { + else if (!strncmp (path, X_("/select/eq_shape/"), 17) && strlen (path) > 17) { int ssid = atoi (&path[17]); ret = sel_eq_shape (ssid, argv[0]->f, msg); } - else if (!strncmp (path, "/set_surface", 12)) { + else if (!strncmp (path, X_("/marker"), 7)) { + ret = set_marker (types, argv, argc, msg); + } + else if (!strncmp (path, X_("/set_surface"), 12)) { ret = surface_parse (path, types, argv, argc, msg); } + else if (strstr (path, X_("/link"))) { + ret = parse_link (path, types, argv, argc, msg); + } if (ret) { check_surface (msg); } @@ -1074,7 +1125,7 @@ void OSC::session_exported (std::string path, std::string name) { lo_address listener = lo_address_new (NULL, "7770"); - lo_send (listener, "/session/exported", "ss", path.c_str(), name.c_str()); + lo_send (listener, X_("/session/exported"), "ss", path.c_str(), name.c_str()); lo_address_free (listener); } @@ -1098,37 +1149,37 @@ OSC::current_value (const char */*path*/, const char */*types*/, lo_arg **/*argv const char *retpath = argv[2]->s; - if (strcmp (argv[0]->s, "transport_frame") == 0) { + if (strcmp (argv[0]->s, X_("transport_frame")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); } - } else if (strcmp (argv[0]->s, "transport_speed") == 0) { + } else if (strcmp (argv[0]->s, X_("transport_speed")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); } - } else if (strcmp (argv[0]->s, "transport_locked") == 0) { + } else if (strcmp (argv[0]->s, X_("transport_locked")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); } - } else if (strcmp (argv[0]->s, "punch_in") == 0) { + } else if (strcmp (argv[0]->s, X_("punch_in")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); } - } else if (strcmp (argv[0]->s, "punch_out") == 0) { + } else if (strcmp (argv[0]->s, X_("punch_out")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); } - } else if (strcmp (argv[0]->s, "rec_enable") == 0) { + } else if (strcmp (argv[0]->s, X_("rec_enable")) == 0) { if (session) { lo_send (addr, retpath, "i", session->transport_sample()); @@ -1210,9 +1261,9 @@ OSC::routes_list (lo_message msg) lo_message_add_int32 (reply, s->rec_enable_control()->get_value()); } if (sur->feedback[14]) { - lo_send_message (get_address (msg), "/reply", reply); + lo_send_message (get_address (msg), X_("/reply"), reply); } else { - lo_send_message (get_address (msg), "#reply", reply); + lo_send_message (get_address (msg), X_("#reply"), reply); } lo_message_free (reply); } @@ -1221,7 +1272,7 @@ OSC::routes_list (lo_message msg) // Send end of listing message lo_message reply = lo_message_new (); - lo_message_add_string (reply, "end_route_list"); + lo_message_add_string (reply, X_("end_route_list")); lo_message_add_int64 (reply, session->sample_rate()); lo_message_add_int64 (reply, session->current_end_sample()); if (session->monitor_out()) { @@ -1232,18 +1283,159 @@ OSC::routes_list (lo_message msg) } if (sur->feedback[14]) { - lo_send_message (get_address (msg), "/reply", reply); + lo_send_message (get_address (msg), X_("/reply"), reply); } else { - lo_send_message (get_address (msg), "#reply", reply); + lo_send_message (get_address (msg), X_("#reply"), reply); } lo_message_free (reply); // send feedback for newly created control surface strip_feedback (sur, true); global_feedback (sur); - // need to add select start - _strip_select (0, get_address (msg)); + _strip_select (boost::shared_ptr(), get_address (msg)); + +} + +void +OSC::surface_list (lo_message msg) +{ + get_surfaces (); +} + +void +OSC::get_surfaces () +{ + + /* this function is for debugging and prints lots of + * information about what surfaces Ardour knows about and their + * internal parameters. It is best accessed by sending: + * /surface/list from oscsend. This command does not create + * a surface entry. + */ + + PBD::info << string_compose ("\nList of known Surfaces (%1):\n", _surface.size()); + + Glib::Threads::Mutex::Lock lm (surfaces_lock); + for (uint32_t it = 0; it < _surface.size(); it++) { + OSCSurface* sur = &_surface[it]; + char *chost = lo_url_get_hostname (sur->remote_url.c_str()); + string host = chost; + free (chost); + string port = get_port (host); + if (port != "auto") { + port = "Manual port"; + } else { + port = "Auto port"; + } + PBD::info << string_compose ("\n Surface: %1 - URL: %2 %3\n", it, sur->remote_url, port); + PBD::info << string_compose (" Number of strips: %1 Bank size: %2 Current Bank %3\n", sur->nstrips, sur->bank_size, sur->bank); + PBD::info << string_compose (" Use Custom: %1 Custom Strips: %2\n", sur->custom_mode, sur->custom_strips.size ()); + PBD::info << string_compose (" Temp Mode: %1 Temp Strips: %2\n", sur->temp_mode, sur->temp_strips.size ()); + bool ug = false; + if (sur->usegroup == PBD::Controllable::UseGroup) { + ug = true; + } + PBD::info << string_compose (" Strip Types: %1 Feedback: %2 No_clear flag: %3 Gain mode: %4 Use groups flag %5\n", \ + sur->strip_types.to_ulong(), sur->feedback.to_ulong(), sur->no_clear, sur->gainmode, ug); + PBD::info << string_compose (" Using plugin: %1 of %2 plugins, with %3 params. Page size: %4 Page: %5\n", \ + sur->plugin_id, sur->plugins.size(), sur->plug_params.size(), sur->plug_page_size, sur->plug_page); + PBD::info << string_compose (" Send page size: %1 Page: %2\n", sur->send_page_size, sur->send_page); + PBD::info << string_compose (" Expanded flag %1 Track: %2 Jogmode: %3\n", sur->expand_enable, sur->expand, sur->jogmode); + PBD::info << string_compose (" Personal monitor flag %1, Aux master: %2, Number of sends: %3\n", sur->cue, sur->aux, sur->sends.size()); + PBD::info << string_compose (" Linkset: %1 Device Id: %2\n", sur->linkset, sur->linkid); + } + PBD::info << string_compose ("\nList of LinkSets (%1):\n", link_sets.size()); + std::map::iterator it; + for (it = link_sets.begin(); it != link_sets.end(); it++) { + if (!(*it).first) { + continue; + } + uint32_t devices = 0; + LinkSet* set = &(*it).second; + if (set->urls.size()) { + devices = set->urls.size() - 1; + } + PBD::info << string_compose ("\n Linkset %1 has %2 devices and sees %3 strips\n", (*it).first, devices, set->strips.size()); + PBD::info << string_compose (" Bank size: %1 Current bank: %2 Strip Types: %3\n", set->banksize, set->bank, set->strip_types.to_ulong()); + PBD::info << string_compose (" Auto bank sizing: %1 Linkset not ready flag: %2\n", set->autobank, set->not_ready); + PBD::info << string_compose (" Use Custom: %1 Number of Custom Strips: %2\n", set->custom_mode, set->custom_strips.size ()); + PBD::info << string_compose (" Temp Mode: %1 Number of Temp Strips: %2\n", set->temp_mode, set->temp_strips.size ()); + } + PBD::info << endmsg; +} + +int +OSC::custom_clear (lo_message msg) +{ + if (!session) { + return 0; + } + OSCSurface *sur = get_surface(get_address (msg), true); + sur->custom_mode = 0; + sur->custom_strips.clear (); + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, false, sur->custom_strips); + sur->nstrips = sur->strips.size(); + LinkSet *set; + uint32_t ls = sur->linkset; + if (ls) { + set = &(link_sets[ls]); + set->custom_mode = 0; + set->custom_strips.clear (); + set->strips = sur->strips; + } + return set_bank (1, msg); +} + +int +OSC::custom_mode (float state, lo_message msg) +{ + return _custom_mode ((uint32_t) state, get_address (msg)); +} +int +OSC::_custom_mode (uint32_t state, lo_address addr) +{ + if (!session) { + return 0; + } + OSCSurface *sur = get_surface(addr, true); + LinkSet *set; + uint32_t ls = sur->linkset; + + if (ls) { + set = &(link_sets[ls]); + sur->custom_mode = set->custom_mode; + sur->custom_strips = set->custom_strips; + } + sur->temp_mode = TempOff; + if (state > 0){ + if (sur->custom_strips.size () == 0) { + PBD::warning << "No custom strips set to enable" << endmsg; + sur->custom_mode = 0; + if (ls) { + set->custom_mode = 0; + } + return -1; + } else { + if (sur->bank_size) { + sur->custom_mode = state | 0x4; + } else { + sur->custom_mode = state; + } + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, sur->custom_mode, sur->custom_strips); + sur->nstrips = sur->custom_strips.size(); + } + } else { + sur->custom_mode = 0; + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, 0, sur->custom_strips); + sur->nstrips = sur->strips.size(); + } + if (ls) { + set->custom_mode = sur->custom_mode; + set->strips = sur->strips; + set->temp_mode = sur->temp_mode; + } + return _set_bank (1, addr); } int @@ -1256,24 +1448,59 @@ OSC::cancel_all_solos () lo_address OSC::get_address (lo_message msg) { + lo_address addr = lo_message_get_source (msg); + string host = lo_address_get_hostname (addr); + string port = lo_address_get_port (addr); + int protocol = lo_address_get_protocol (addr); + string saved_port = get_port (host); + if (saved_port != "") { + if (saved_port != "auto") { + port = saved_port; + return lo_address_new_with_proto (protocol, host.c_str(), port.c_str()); + } else { + return lo_message_get_source (msg); + } + } + + // if we get here we need to add a new entry for this surface + PortAdd new_port; + new_port.host = host; if (address_only) { - lo_address addr = lo_message_get_source (msg); - string host = lo_address_get_hostname (addr); - int protocol = lo_address_get_protocol (addr); + new_port.port = remote_port; + _ports.push_back (new_port); return lo_address_new_with_proto (protocol, host.c_str(), remote_port.c_str()); } else { + new_port.port = "auto"; + _ports.push_back (new_port); return lo_message_get_source (msg); } } +string +OSC::get_port (string host) +{ + for (uint32_t i = 0; i < _ports.size (); i++) { + if (_ports[i].host == host) { + return _ports[i].port; + } + } + return ""; +} + int OSC::refresh_surface (lo_message msg) { OSCSurface *s = get_surface(get_address (msg), true); + uint32_t bs = s->bank_size; + uint32_t st = (uint32_t) s->strip_types.to_ulong(); + uint32_t fb = (uint32_t) s->feedback.to_ulong(); + uint32_t gm = (uint32_t) s->gainmode; + uint32_t sp = s->send_page_size; + uint32_t pp = s->plug_page_size; + surface_destroy (s); // restart all observers - set_surface (s->bank_size, (uint32_t) s->strip_types.to_ulong(), (uint32_t) s->feedback.to_ulong(), \ - (uint32_t) s->gainmode, (uint32_t) s->send_page_size, (uint32_t) s->plug_page_size, msg); + set_surface (bs, st, fb, gm, sp, pp, msg); return 0; } @@ -1289,6 +1516,8 @@ OSC::clear_devices () surface_destroy (sur); } _surface.clear(); + link_sets.clear (); + _ports.clear (); PresentationInfo::Change.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::recalcbanks, this), this); @@ -1296,6 +1525,216 @@ OSC::clear_devices () tick = true; } +int +OSC::parse_link (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) +{ + int ret = 1; /* unhandled */ + int set = 0; + if (!argc) { + PBD::warning << "OSC: /link/* needs at least one parameter" << endmsg; + return ret; + } + float data = 0; + if (types[argc - 1] == 'f') { + data = argv[argc - 1]->f; + } else { + data = argv[argc - 1]->i; + } + if (isdigit(strrchr (path, '/')[1])) { + set = atoi (&(strrchr (path, '/')[1])); + } else if (argc == 2) { + if (types[0] == 'f') { + set = (int) argv[0]->f; + } else { + set = argv[0]->i; + } + } else { + PBD::warning << "OSC: wrong number of parameters." << endmsg; + return ret; + } + LinkSet *ls = get_linkset (set, get_address (msg)); + + if (!set) { + return 0; + } + if (!strncmp (path, X_("/link/bank_size"), 15)) { + ls->banksize = (uint32_t) data; + ls->autobank = false; + ls->not_ready = link_check (set); + if (ls->not_ready) { + ls->bank = 1; + surface_link_state (ls); + } else { + _set_bank (ls->bank, get_address (msg)); + } + ret = 0; + + } else if (!strncmp (path, X_("/link/set"), 9)) { + ret = set_link (set, (uint32_t) data, get_address (msg)); + } + + return ret; +} + +OSC::LinkSet * +OSC::get_linkset (uint32_t set, lo_address addr) +{ + OSCSurface *sur = get_surface(addr); + LinkSet *ls = 0; + + if (set) { + // need to check if set is wanted + std::map::iterator it; + it = link_sets.find(set); + if (it == link_sets.end()) { + // no such linkset make it + LinkSet new_ls; + new_ls.banksize = 0; + new_ls.bank = 1; + new_ls.autobank = true; + new_ls.not_ready = true; + new_ls.strip_types = sur->strip_types; + new_ls.strips = sur->strips; + new_ls.custom_strips = sur->custom_strips; + new_ls.custom_mode = sur->custom_mode; + new_ls.temp_mode = sur->temp_mode; + new_ls.urls.resize (2); + link_sets[set] = new_ls; + } + ls = &link_sets[set]; + + } else { + // User expects this surface to be removed from any sets + uint32_t oldset = sur->linkset; + if (oldset) { + uint32_t oldid = sur->linkid; + sur->linkid = 1; + sur->linkset = 0; + LinkSet *ols = &link_sets[oldset]; + if (ols) { + ols->not_ready = oldid; + ols->urls[oldid] = ""; + surface_link_state (ols); + } + } + } + return ls; +} + +int +OSC::set_link (uint32_t set, uint32_t id, lo_address addr) +{ + OSCSurface *sur = get_surface(addr, true); + sur->linkset = set; + sur->linkid = id; + LinkSet *ls = get_linkset (set, addr); + if (ls->urls.size() <= (uint32_t) id) { + ls->urls.resize ((int) id + 1); + } + ls->urls[(uint32_t) id] = sur->remote_url; + ls->not_ready = link_check (set); + if (ls->not_ready) { + surface_link_state (ls); + } else { + _set_bank (1, addr); + } + return 0; +} + +void +OSC::link_strip_types (uint32_t linkset, uint32_t striptypes) +{ + LinkSet *ls = 0; + + if (!linkset) { + return; + } + std::map::iterator it; + it = link_sets.find(linkset); + if (it == link_sets.end()) { + // this should never happen... but + return; + } + ls = &link_sets[linkset]; + ls->strip_types = striptypes; + ls->temp_mode = TempOff; + for (uint32_t dv = 1; dv < ls->urls.size(); dv++) { + OSCSurface *su; + + if (ls->urls[dv] != "") { + string url = ls->urls[dv]; + su = get_surface (lo_address_new_from_url (url.c_str()), true); + if (su->linkset == linkset) { + su->strip_types = striptypes; + if (su->strip_types[10]) { + su->usegroup = PBD::Controllable::UseGroup; + } else { + su->usegroup = PBD::Controllable::NoGroup; + } + } else { + ls->urls[dv] = ""; + } + } + } +} + +void +OSC::surface_link_state (LinkSet * set) +{ + for (uint32_t dv = 1; dv < set->urls.size(); dv++) { + + if (set->urls[dv] != "") { + string url = set->urls[dv]; + OSCSurface *sur = get_surface (lo_address_new_from_url (url.c_str()), true); + for (uint32_t i = 0; i < sur->observers.size(); i++) { + sur->observers[i]->set_link_ready (set->not_ready); + } + } + } +} + +int +OSC::link_check (uint32_t set) +{ + LinkSet *ls = 0; + + if (!set) { + return 1; + } + std::map::iterator it; + it = link_sets.find(set); + if (it == link_sets.end()) { + // this should never happen... but + return 1; + } + ls = &link_sets[set]; + uint32_t bank_total = 0; + for (uint32_t dv = 1; dv < ls->urls.size(); dv++) { + OSCSurface *su; + + if (ls->urls[dv] != "") { + string url = ls->urls[dv]; + su = get_surface (lo_address_new_from_url (url.c_str()), true); + } else { + return dv; + } + if (su->linkset == set) { + bank_total = bank_total + su->bank_size; + } else { + ls->urls[dv] = ""; + return dv; + } + if (ls->autobank) { + ls->banksize = bank_total; + } else { + if (bank_total != ls->banksize) { + return ls->urls.size(); + } + } + } + return 0; +} + int OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) { @@ -1307,53 +1746,81 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc int feedback = sur->feedback.to_ulong(); int strip_types = sur->strip_types.to_ulong(); int bank_size = sur->bank_size; + int linkset = sur->linkset; + int linkid = sur->linkid; + string host = lo_url_get_hostname(sur->remote_url.c_str()); + int port = atoi (get_port (host).c_str()); - - if (argc == 1 && !strncmp (path, "/set_surface/feedback", 21)) { + if (argc == 1 && !strncmp (path, X_("/set_surface/feedback"), 21)) { if (types[0] == 'f') { ret = set_surface_feedback ((int)argv[0]->f, msg); } else { ret = set_surface_feedback (argv[0]->i, msg); } } - else if (argc == 1 && !strncmp (path, "/set_surface/bank_size", 22)) { + else if (argc == 1 && !strncmp (path, X_("/set_surface/bank_size"), 22)) { if (types[0] == 'f') { ret = set_surface_bank_size ((int)argv[0]->f, msg); } else { ret = set_surface_bank_size (argv[0]->i, msg); } } - else if (argc == 1 && !strncmp (path, "/set_surface/gainmode", 21)) { + else if (argc == 1 && !strncmp (path, X_("/set_surface/gainmode"), 21)) { if (types[0] == 'f') { ret = set_surface_gainmode ((int)argv[0]->f, msg); } else { ret = set_surface_gainmode (argv[0]->i, msg); } } - else if (argc == 1 && !strncmp (path, "/set_surface/strip_types", 24)) { + else if (argc == 1 && !strncmp (path, X_("/set_surface/strip_types"), 24)) { if (types[0] == 'f') { ret = set_surface_strip_types ((int)argv[0]->f, msg); } else { ret = set_surface_strip_types (argv[0]->i, msg); } } - else if (argc == 1 && !strncmp (path, "/set_surface/send_page_size", 27)) { + else if (argc == 1 && !strncmp (path, X_("/set_surface/send_page_size"), 27)) { if (types[0] == 'f') { ret = sel_send_pagesize ((int)argv[0]->f, msg); } else { ret = sel_send_pagesize (argv[0]->i, msg); } } - else if (argc == 1 && !strncmp (path, "/set_surface/plugin_page_size", 29)) { + else if (argc == 1 && !strncmp (path, X_("/set_surface/plugin_page_size"), 29)) { if (types[0] == 'f') { ret = sel_plug_pagesize ((int)argv[0]->f, msg); } else { ret = sel_plug_pagesize (argv[0]->i, msg); } + } + else if (argc == 1 && !strncmp (path, X_("/set_surface/port"), 17)) { + if (types[0] == 'f') { + ret = set_surface_port ((int)argv[0]->f, msg); + } else { + ret = set_surface_port (argv[0]->i, msg); + } } else if (strlen(path) == 12) { // command is in /set_surface iii form switch (argc) { + case 9: + if (types[8] == 'f') { + linkid = (int) argv[8]->f; + } else { + linkid = argv[8]->i; + } + case 8: + if (types[7] == 'f') { + linkset = (int) argv[7]->f; + } else { + linkset = argv[7]->i; + } + case 7: + if (types[6] == 'f') { + port = (int) argv[6]->f; + } else { + port = argv[6]->i; + } case 6: if (types[5] == 'f') { pi_page = (int) argv[5]->f; @@ -1378,6 +1845,7 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc } else { feedback = argv[2]->i; } + // [[fallthrough]]; old compiler doesn't like case 2: if (types[1] == 'f') { strip_types = (int) argv[1]->f; @@ -1390,7 +1858,11 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc } else { bank_size = argv[0]->i; } + set_surface_port (port, msg); ret = set_surface (bank_size, strip_types, feedback, fadermode, se_page, pi_page, msg); + if ((uint32_t) linkset != sur->linkset) { + set_link (linkset, linkid, get_address (msg)); + } break; case 0: // send current setup @@ -1402,7 +1874,10 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc lo_message_add_int32 (reply, fadermode); lo_message_add_int32 (reply, se_page); lo_message_add_int32 (reply, pi_page); - lo_send_message (get_address (msg), "/set_surface", reply); + lo_message_add_int32 (reply, (int) linkset); + lo_message_add_int32 (reply, (int) linkid); + lo_message_add_int32 (reply, (int) port); + lo_send_message (get_address (msg), X_("/set_surface"), reply); lo_message_free (reply); return 0; } @@ -1431,6 +1906,36 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc const char * pp = strstr (&sp[1], "/"); if (pp) { pi_page = atoi (&pp[1]); + const char * po = strstr (&pp[1], "/"); + if (po) { + port = atoi (&po[1]); + const char * ls = strstr (&po[1], "/"); + if (ls) { + linkset = atoi (&ls[1]); + const char * li = strstr (&ls[1], "/"); + if (li) { + linkid = atoi (&li[1]); + } else { + if (types[0] == 'f') { + linkid = (int) argv[0]->f; + } else if (types[0] == 'i') { + linkid = argv[0]->i; + } + } + } else { + if (types[0] == 'f') { + linkset = (int) argv[0]->f; + } else if (types[0] == 'i') { + linkset = argv[0]->i; + } + } + } else { + if (types[0] == 'f') { + port = (int) argv[0]->f; + } else if (types[0] == 'i') { + port = argv[0]->i; + } + } } else { if (types[0] == 'f') { pi_page = (int) argv[0]->f; @@ -1466,7 +1971,11 @@ OSC::surface_parse (const char *path, const char* types, lo_arg **argv, int argc strip_types = argv[0]->i; } } + set_surface_port (port, msg); ret = set_surface (bank_size, strip_types, feedback, fadermode, se_page, pi_page, msg); + if ((uint32_t) linkset != sur->linkset) { + set_link (linkset, linkid, get_address (msg)); + } } return ret; } @@ -1489,11 +1998,20 @@ OSC::set_surface (uint32_t b_size, uint32_t strips, uint32_t fb, uint32_t gm, ui } s->send_page_size = se_size; s->plug_page_size = pi_size; - // set bank and strip feedback - strip_feedback(s, true); + if (s->temp_mode) { + s->temp_mode = TempOff; + } + if (s->linkset) { + set_link (s->linkset, s->linkid, get_address (msg)); + link_strip_types (s->linkset, s->strip_types.to_ulong()); + } else { + // set bank and strip feedback + strip_feedback(s, true); + _set_bank (1, get_address (msg)); + _strip_select (boost::shared_ptr (), get_address (msg)); + } global_feedback (s); - _strip_select (0, get_address (msg)); sel_send_pagesize (se_size, msg); sel_plug_pagesize (pi_size, msg); return 0; @@ -1507,11 +2025,15 @@ OSC::set_surface_bank_size (uint32_t bs, lo_message msg) } OSCSurface *s = get_surface(get_address (msg), true); s->bank_size = bs; - s->bank = 1; - - // set bank and strip feedback - strip_feedback (s, true); - _strip_select (0, get_address (msg)); + if (s->custom_mode && bs) { + s->custom_mode = s->custom_mode | 0x4; + } + if (s->linkset) { + set_link (s->linkset, s->linkid, get_address (msg)); + } else { + // set bank and strip feedback + _set_bank (1, get_address (msg)); + } return 0; } @@ -1523,16 +2045,19 @@ OSC::set_surface_strip_types (uint32_t st, lo_message msg) } OSCSurface *s = get_surface(get_address (msg), true); s->strip_types = st; + s->temp_mode = TempOff; if (s->strip_types[10]) { s->usegroup = PBD::Controllable::UseGroup; } else { s->usegroup = PBD::Controllable::NoGroup; } - + if (s->linkset) { + link_strip_types (s->linkset, st); + } // set bank and strip feedback - s->bank = 1; - strip_feedback (s, true); - _strip_select (0, get_address (msg)); + strip_feedback(s, false); + set_bank (1, msg); + _strip_select (boost::shared_ptr (), get_address (msg)); return 0; } @@ -1546,12 +2071,9 @@ OSC::set_surface_feedback (uint32_t fb, lo_message msg) OSCSurface *s = get_surface(get_address (msg), true); s->feedback = fb; - // set strip feedback - strip_feedback (s, false); - - // Set global/master feedback + strip_feedback (s, true); global_feedback (s); - _strip_select (0, get_address (msg)); + _strip_select (boost::shared_ptr(), get_address (msg)); return 0; } @@ -1564,15 +2086,70 @@ OSC::set_surface_gainmode (uint32_t gm, lo_message msg) OSCSurface *s = get_surface(get_address (msg), true); s->gainmode = gm; - // set strip feedback - strip_feedback (s, false); - - // Set global/master feedback + strip_feedback (s, true); global_feedback (s); - _strip_select (0, get_address (msg)); + _strip_select (boost::shared_ptr(), get_address (msg)); return 0; } +int +OSC::set_surface_port (uint32_t po, lo_message msg) +{ + string new_port; + if (!po) { + new_port = "auto"; + } else if (po > 1024) { + new_port = string_compose ("%1", po); + } else { + PBD::warning << "Port value must be greater than 1024" << endmsg; + return -1; + } + OSCSurface *sur = get_surface(get_address (msg), true); + lo_address addr = lo_message_get_source (msg); + string host = lo_address_get_hostname (addr); + string port = lo_address_get_port (addr); + int protocol = lo_address_get_protocol (addr); + for (uint32_t i = 0; i < _ports.size (); i++) { + if (_ports[i].host == host) { + if (_ports[i].port == new_port) { + // no change - do nothing + return 0; + } else { + lo_address new_addr; + _ports[i].port = new_port; + if (new_port == "auto") { + new_addr = addr; + } else { + new_addr = lo_address_new_with_proto (protocol, host.c_str(), new_port.c_str()); + } + char * rurl; + rurl = lo_address_get_url (new_addr); + sur->remote_url = rurl; + free (rurl); + for (uint32_t it = 0; it < _surface.size();) { + if (&_surface[it] == sur) { + it++; + continue; + } + char *sur_host = lo_url_get_hostname(_surface[it].remote_url.c_str()); + if (strstr (sur_host, host.c_str())) { + surface_destroy (&_surface[it]); + _surface.erase (_surface.begin() + it); + } else { + it++; + } + } + if (sur->feedback.to_ulong()) { + refresh_surface (msg); + } + return 0; + } + } + } + // should not get here + return -1; +} + int OSC::check_surface (lo_message msg) { @@ -1588,21 +2165,13 @@ OSC::get_surface (lo_address addr , bool quiet) { string r_url; char * rurl; - if (address_only) { - string host = lo_address_get_hostname (addr); - int protocol = lo_address_get_protocol (addr); - addr = lo_address_new_with_proto (protocol, host.c_str(), remote_port.c_str()); - } - rurl = lo_address_get_url (addr); r_url = rurl; free (rurl); - { - for (uint32_t it = 0; it < _surface.size(); ++it) { - //find setup for this server - if (!_surface[it].remote_url.find(r_url)){ - return &_surface[it]; - } + for (uint32_t it = 0; it < _surface.size(); ++it) { + //find setup for this surface + if (!_surface[it].remote_url.find(r_url)){ + return &_surface[it]; } } @@ -1610,7 +2179,7 @@ OSC::get_surface (lo_address addr , bool quiet) OSCSurface s; s.remote_url = r_url; s.no_clear = false; - s.jogmode = JOG; + s.jogmode = 0; s.bank = 1; s.bank_size = default_banksize; s.observers.clear(); @@ -1620,18 +2189,24 @@ OSC::get_surface (lo_address addr , bool quiet) s.feedback = default_feedback; s.gainmode = default_gainmode; s.usegroup = PBD::Controllable::NoGroup; + s.custom_strips.clear (); + s.custom_mode = 0; + s.temp_mode = TempOff; s.sel_obs = 0; s.expand = 0; s.expand_enable = false; + s.expand_strip = boost::shared_ptr (); s.cue = false; s.aux = 0; s.cue_obs = 0; - s.strips = get_sorted_stripables(s.strip_types, s.cue); + s.strips = get_sorted_stripables(s.strip_types, s.cue, false, s.custom_strips); s.send_page = 1; s.send_page_size = default_send_size; s.plug_page = 1; s.plug_page_size = default_plugin_size; s.plugin_id = 1; + s.linkset = 0; + s.linkid = 1; s.nstrips = s.strips.size(); { @@ -1639,13 +2214,9 @@ OSC::get_surface (lo_address addr , bool quiet) } if (!quiet) { - // set bank and strip feedback - strip_feedback (&s, true); - - // Set global/master feedback global_feedback (&s); - _strip_select (0, addr); + _strip_select (boost::shared_ptr(), addr); } return &_surface[_surface.size() - 1]; @@ -1655,19 +2226,46 @@ OSC::get_surface (lo_address addr , bool quiet) void OSC::global_feedback (OSCSurface* sur) { + OSCGlobalObserver* o = sur->global_obs; + if (o) { + delete o; + } if (sur->feedback[4] || sur->feedback[3] || sur->feedback[5] || sur->feedback[6]) { // create a new Global Observer for this surface OSCGlobalObserver* o = new OSCGlobalObserver (*this, *session, sur); sur->global_obs = o; + o->jog_mode (sur->jogmode); } } void OSC::strip_feedback (OSCSurface* sur, bool new_bank_size) { - sur->strips = get_sorted_stripables(sur->strip_types, sur->cue); - sur->nstrips = sur->strips.size(); + LinkSet *set; + uint32_t ls = sur->linkset; + + if (ls) { + set = &(link_sets[ls]); + if (set->not_ready) { + return; + } + sur->custom_mode = set->custom_mode; + sur->custom_strips = set->custom_strips; + sur->temp_mode = set->temp_mode; + sur->temp_strips = set->temp_strips; + sur->temp_master = set->temp_master; + } + if (!sur->temp_mode) { + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, sur->custom_mode, sur->custom_strips); + } else { + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, 1, sur->temp_strips); + } + sur->nstrips = sur->strips.size(); + if (ls) { + set->strips = sur->strips; + } + if (new_bank_size || (!sur->feedback[0] && !sur->feedback[1])) { // delete old observers for (uint32_t i = 0; i < sur->observers.size(); i++) { @@ -1678,7 +2276,6 @@ OSC::strip_feedback (OSCSurface* sur, bool new_bank_size) } sur->observers.clear(); - // get freash striplist - just in case uint32_t bank_size = sur->bank_size; if (!bank_size) { bank_size = sur->nstrips; @@ -1688,12 +2285,27 @@ OSC::strip_feedback (OSCSurface* sur, bool new_bank_size) for (uint32_t i = 0; i < bank_size; i++) { OSCRouteObserver* o = new OSCRouteObserver (*this, i + 1, sur); sur->observers.push_back (o); + if (sur->temp_mode == BusOnly) { + boost::shared_ptr str = get_strip (i + 1, lo_address_new_from_url (sur->remote_url.c_str())); + boost::shared_ptr send = get_send (str, lo_address_new_from_url (sur->remote_url.c_str())); + if (send) { + o->refresh_send (send, true); + } + } + } } } else { if (sur->feedback[0] || sur->feedback[1]) { for (uint32_t i = 0; i < sur->observers.size(); i++) { - sur->observers[i]->refresh_strip(true); + boost::shared_ptr str = get_strip (i + 1, lo_address_new_from_url (sur->remote_url.c_str())); + sur->observers[i]->refresh_strip(str, true); + if (sur->temp_mode == BusOnly) { + boost::shared_ptr send = get_send (str, lo_address_new_from_url (sur->remote_url.c_str())); + if (send) { + sur->observers[i]->refresh_send (send, true); + } + } } } } @@ -1745,7 +2357,6 @@ OSC::_recalcbanks () OSCSurface* sur = &_surface[it]; // find lo_address lo_address addr = lo_address_new_from_url (sur->remote_url.c_str()); - _strip_select (0, addr); if (sur->cue) { _cue_set (sur->aux, addr); } else if (!sur->bank_size) { @@ -1753,11 +2364,12 @@ OSC::_recalcbanks () // This surface uses /strip/list tell it routes have changed lo_message reply; reply = lo_message_new (); - lo_send_message (addr, "/strip/list", reply); + lo_send_message (addr, X_("/strip/list"), reply); lo_message_free (reply); } else { strip_feedback (sur, false); } + _strip_select (boost::shared_ptr(), addr); } } @@ -1774,71 +2386,135 @@ OSC::_set_bank (uint32_t bank_start, lo_address addr) if (!session) { return -1; } - // no nstripables yet if (!session->nroutes()) { return -1; } - OSCSurface *s = get_surface (addr); + OSCSurface *s = get_surface (addr, true); - // revert any expand to select - s->expand = 0; - s->expand_enable = false; - _strip_select (0, addr); + Sorted striplist = s->strips; + uint32_t nstrips = s->nstrips; - s->strips = get_sorted_stripables(s->strip_types, s->cue); - s->nstrips = s->strips.size(); + LinkSet *set; + uint32_t ls = s->linkset; + + if (ls) { + //we have a linkset... deal with each surface + set = &(link_sets[ls]); + if (set->not_ready) { + return 1; + } + uint32_t d_count = set->urls.size(); + set->strips = striplist; + bank_start = bank_limits_check (bank_start, set->banksize, nstrips); + set->bank = bank_start; + uint32_t not_ready = 0; + for (uint32_t dv = 1; dv < d_count; dv++) { + if (set->urls[dv] != "") { + string url = set->urls[dv]; + OSCSurface *sur = get_surface (lo_address_new_from_url (url.c_str())); + if (sur->linkset != ls) { + set->urls[dv] = ""; + not_ready = dv; + } else { + lo_address sur_addr = lo_address_new_from_url (sur->remote_url.c_str()); + + sur->bank = bank_start; + bank_start = bank_start + sur->bank_size; + strip_feedback (sur, false); + _strip_select (boost::shared_ptr(), sur_addr); + bank_leds (sur); + lo_address_free (sur_addr); + } + } else { + not_ready = dv; + } + if (not_ready) { + if (!set->not_ready) { + set->not_ready = not_ready; + } + set->bank = 1; + break; + } + } + if (not_ready) { + surface_link_state (set); + } - uint32_t b_size; - if (!s->bank_size) { - // no banking - bank includes all stripables - b_size = s->nstrips; } else { - b_size = s->bank_size; - } - // Do limits checking - if (bank_start < 1) bank_start = 1; - if (b_size >= s->nstrips) { - bank_start = 1; - } else if (bank_start > ((s->nstrips - b_size) + 1)) { - // top bank is always filled if there are enough strips for at least one bank - bank_start = (uint32_t)((s->nstrips - b_size) + 1); + s->bank = bank_limits_check (bank_start, s->bank_size, nstrips); + strip_feedback (s, true); + _strip_select (boost::shared_ptr(), addr); + bank_leds (s); } - //save bank after bank limit checks - s->bank = bank_start; - if (s->feedback[0] || s->feedback[1]) { - strip_feedback (s, false); - } - bank_leds (s); + bank_dirty = false; tick = true; return 0; } +uint32_t +OSC::bank_limits_check (uint32_t bank, uint32_t size, uint32_t total) +{ + uint32_t b_size; + if (!size) { + // no banking - bank includes all stripables + b_size = total; + } else { + b_size = size; + } + // Do limits checking + if (bank < 1) bank = 1; + if (b_size >= total) { + bank = 1; + } else if (bank > ((total - b_size) + 1)) { + // top bank is always filled if there are enough strips for at least one bank + bank = (uint32_t)((total - b_size) + 1); + } + return bank; +} + void OSC::bank_leds (OSCSurface* s) { + uint32_t bank = 0; + uint32_t size = 0; + uint32_t total = 0; // light bankup or bankdown buttons if it is possible to bank in that direction lo_address addr = lo_address_new_from_url (s->remote_url.c_str()); - if (s->feedback[4] && !s->no_clear) { + if (s->linkset) { + LinkSet *set; + set = &(link_sets[s->linkset]); + bank = set->bank; + size = set->banksize; + total = s->nstrips; + if (set->not_ready) { + total = 1; + } + } else { + bank = s->bank; + size = s->bank_size; + total = s->nstrips; + } + if (size && (s->feedback[0] || s->feedback[1] || s->feedback[4])) { lo_message reply; reply = lo_message_new (); - if ((s->bank > (s->nstrips - s->bank_size)) || (s->nstrips < s->bank_size)) { + if ((total <= size) || (bank > (total - size))) { lo_message_add_int32 (reply, 0); } else { lo_message_add_int32 (reply, 1); } - lo_send_message (addr, "/bank_up", reply); + lo_send_message (addr, X_("/bank_up"), reply); lo_message_free (reply); reply = lo_message_new (); - if (s->bank > 1) { + if (bank > 1) { lo_message_add_int32 (reply, 1); } else { lo_message_add_int32 (reply, 0); } - lo_send_message (addr, "/bank_down", reply); + lo_send_message (addr, X_("/bank_down"), reply); lo_message_free (reply); } } @@ -1846,12 +2522,7 @@ OSC::bank_leds (OSCSurface* s) int OSC::bank_up (lo_message msg) { - if (!session) { - return -1; - } - OSCSurface *s = get_surface(get_address (msg)); - set_bank (s->bank + s->bank_size, msg); - return 0; + return bank_delta (1.0, msg); } int @@ -1860,12 +2531,34 @@ OSC::bank_delta (float delta, lo_message msg) if (!session) { return -1; } + // only do deltas of -1 0 or 1 + if (delta > 0) { + delta = 1; + } else if (delta < 0) { + delta = -1; + } else { + // 0 key release ignore + return 0; + } OSCSurface *s = get_surface(get_address (msg)); - uint32_t new_bank = s->bank + (s->bank_size * (int) delta); + if (!s->bank_size) { + // bank size of 0 means use all strips no banking + return 0; + } + uint32_t old_bank = 0; + uint32_t bank_size = 0; + if (s->linkset) { + old_bank = link_sets[s->linkset].bank; + bank_size = link_sets[s->linkset].banksize; + } else { + old_bank = s->bank; + bank_size = s->bank_size; + } + uint32_t new_bank = old_bank + (bank_size * (int) delta); if ((int)new_bank < 1) { new_bank = 1; } - if (new_bank != s->bank) { + if (new_bank != old_bank) { set_bank (new_bank, msg); } return 0; @@ -1874,16 +2567,7 @@ OSC::bank_delta (float delta, lo_message msg) int OSC::bank_down (lo_message msg) { - if (!session) { - return -1; - } - OSCSurface *s = get_surface(get_address (msg)); - if (s->bank < s->bank_size) { - set_bank (1, msg); - } else { - set_bank (s->bank - s->bank_size, msg); - } - return 0; + return bank_delta (-1.0, msg); } int @@ -1901,6 +2585,362 @@ OSC::use_group (float value, lo_message msg) return 0; } +// this gets called for anything that starts with /select/group +int +OSC::parse_sel_group (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s = sur->select; + int ret = 1; /* unhandled */ + if (s) { + if (!strncmp (path, X_("/select/group"), 13)) { + if (argc == 1) { + if (types[0] == 's') { + return strip_select_group (s, &argv[0]->s); + } + } + } + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + if (!rt) { + PBD::warning << "OSC: VCAs can not be part of a group." << endmsg; + return ret; + } + RouteGroup *rg = rt->route_group(); + if (!rg) { + PBD::warning << "OSC: This strip is not part of a group." << endmsg; + } + float value = 0; + if (argc == 1) { + if (types[0] == 'f') { + value = (uint32_t) argv[0]->f; + } else if (types[0] == 'i') { + value = (uint32_t) argv[0]->i; + } + } + if (!strncmp (path, X_("/select/group/enable"), 20)) { + if (rg) { + if (argc == 1) { + rg->set_active (value, this); + ret = 0; + } + } else { + int_message (X_("/select/group/enable"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/gain")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_gain ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/gain"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/relative")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_relative ((bool) value, this); + ret = 0; + } + } else { + int_message (X_("/select/group/relative"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/mute")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_mute ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/mute"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/solo")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_solo ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/solo"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/recenable")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_recenable ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/recenable"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/select")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_select ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/select"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/active")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_route_active ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/active"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/color")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_color ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/color"), 0, get_address (msg)); + } + } + else if (strcmp (path, X_("/select/group/monitoring")) == 0) { + if (rg) { + if (argc == 1) { + rg->set_monitoring ((bool) value); + ret = 0; + } + } else { + int_message (X_("/select/group/monitoring"), 0, get_address (msg)); + } + } + } + return ret; + } + +// this gets called for anything that starts with /select/vca +int +OSC::parse_sel_vca (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; + int ret = 1; /* unhandled */ + if (s) { + boost::shared_ptr slv = boost::dynamic_pointer_cast (s); + string svalue = ""; + uint32_t ivalue = 1024; + if (strcmp (path, X_("/select/vca")) == 0) { + if (argc == 2) { + if (types[0] == 's') { + svalue = &argv[0]->s; + if (types[1] == 'i') { + ivalue = argv[1]->i; + } else if (types[1] == 'f') { + ivalue = (uint32_t) argv[1]->f; + } else { + return 1; + } + boost::shared_ptr vca = get_vca_by_name (svalue); + if (vca) { + if (ivalue) { + slv->assign (vca); + } else { + slv->unassign (vca); + } + ret = 0; + } + } + } else { + PBD::warning << "OSC: setting a vca needs both the vca name and it's state" << endmsg; + } + } + else if (!strncmp (path, X_("/select/vca/toggle"), 18)) { + if (argc == 1) { + if (types[0] == 's') { + svalue = &argv[0]->s; + string v_name = svalue.substr (0, svalue.rfind (" [")); + boost::shared_ptr vca = get_vca_by_name (v_name); + if (s->slaved_to (vca)) { + slv->unassign (vca); + } else { + slv->assign (vca); + } + ret = 0; + } else { + PBD::warning << "OSC: toggling needs the vca name as a string" << endmsg; + } + } else { + PBD::warning << "OSC: toggling a vca needs the vca name" << endmsg; + } + + } + } + return ret; +} + +boost::shared_ptr +OSC::get_vca_by_name (std::string vname) +{ + StripableList stripables; + session->get_stripables (stripables); + for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { + boost::shared_ptr s = *it; + boost::shared_ptr v = boost::dynamic_pointer_cast (s); + if (v) { + if (vname == v->name()) { + return v; + } + } + } + return boost::shared_ptr(); +} + +int +OSC::set_temp_mode (lo_address addr) +{ + bool ret = 1; + OSCSurface *sur = get_surface(addr); + boost::shared_ptr s = sur->temp_master; + if (s) { + if (sur->temp_mode == GroupOnly) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + if (rt) { + RouteGroup *rg = rt->route_group(); + if (rg) { + sur->temp_strips.clear(); + boost::shared_ptr rl = rg->route_list(); + for (RouteList::iterator it = rl->begin(); it != rl->end(); ++it) { + boost::shared_ptr r = *it; + boost::shared_ptr st = boost::dynamic_pointer_cast (r); + sur->temp_strips.push_back(st); + } + // check if this group feeds a bus or is slaved + boost::shared_ptr mstr = boost::shared_ptr (); + if (rg->has_control_master()) { + boost::shared_ptr vca = session->vca_manager().vca_by_number (rg->group_master_number()); + if (vca) { + mstr = boost::dynamic_pointer_cast (vca); + } + } else if (rg->has_subgroup()) { + boost::shared_ptr sgr = rg->subgroup_bus().lock(); + if (sgr) { + mstr = boost::dynamic_pointer_cast (sgr); + } + } + if (mstr) { + sur->temp_strips.push_back(mstr); + } + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, 1, sur->temp_strips); + sur->nstrips = sur->temp_strips.size(); + ret = 0; + } + } + } else if (sur->temp_mode == VCAOnly) { + boost::shared_ptr vca = boost::dynamic_pointer_cast (s); + if (vca) { + sur->temp_strips.clear(); + StripableList stripables; + session->get_stripables (stripables); + for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { + boost::shared_ptr st = *it; + if (st->slaved_to (vca)) { + sur->temp_strips.push_back(st); + } + } + sur->temp_strips.push_back(s); + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, 1, sur->temp_strips); + sur->nstrips = sur->temp_strips.size(); + ret = 0; + } + } else if (sur->temp_mode == BusOnly) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + if (rt) { + if (!rt->is_track () && rt->can_solo ()) { + // this is a bus, but not master, monitor or audition + sur->temp_strips.clear(); + StripableList stripables; + session->get_stripables (stripables, PresentationInfo::AllStripables); + for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { + boost::shared_ptr st = *it; + boost::shared_ptr ri = boost::dynamic_pointer_cast (st); + bool sends = true; + if (ri && ri->direct_feeds_according_to_graph (rt, &sends)) { + sur->temp_strips.push_back(st); + } + } + sur->temp_strips.push_back(s); + sur->strips = get_sorted_stripables(sur->strip_types, sur->cue, 1, sur->temp_strips); + sur->nstrips = sur->temp_strips.size(); + ret = 0; + } + } + } else if (sur->temp_mode == TempOff) { + sur->temp_mode = TempOff; + ret = 0; + } + } + LinkSet *set; + uint32_t ls = sur->linkset; + if (ls) { + set = &(link_sets[ls]); + set->temp_mode = sur->temp_mode; + set->temp_strips.clear (); + set->temp_strips = sur->temp_strips; + set->temp_master = sur->temp_master; + set->strips = sur->strips; + } + if (ret) { + sur->temp_mode = TempOff; + } + return ret; +} + +boost::shared_ptr +OSC::get_send (boost::shared_ptr st, lo_address addr) +{ + OSCSurface *sur = get_surface(addr); + boost::shared_ptr s = sur->temp_master; + if (st && s && (st != s)) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + boost::shared_ptr rst = boost::dynamic_pointer_cast (st); + //find what send number feeds s + return rst->internal_send_for (rt); + } + return boost::shared_ptr (); +} + +int +OSC::name_session (char *n, lo_message msg) +{ + if (!session) { + return -1; + } + string new_name = n; + char illegal = Session::session_name_is_legal (new_name); + + if (illegal) { + PBD::warning << (string_compose (_("To ensure compatibility with various systems\n" + "session names may not contain a '%1' character"), illegal)) << endmsg; + return -1; + } + switch (session->rename (new_name)) { + case -1: + PBD::warning << (_("That name is already in use by another directory/folder. Please try again.")) << endmsg; + break; + case 0: + return 0; + break; + default: + PBD::warning << (_("Renaming this session failed.\nThings could be seriously messed up at this point")) << endmsg; + break; + } + return -1; +} + uint32_t OSC::get_sid (boost::shared_ptr strip, lo_address addr) { @@ -1925,7 +2965,7 @@ OSC::get_sid (boost::shared_ptr strip, lo_address addr) } } } - // failsafe... should never get here. + // strip not in current bank return 0; } @@ -1947,7 +2987,7 @@ OSC::sel_send_pagesize (uint32_t size, lo_message msg) OSCSurface *s = get_surface(get_address (msg)); if (size != s->send_page_size) { s->send_page_size = size; - s->sel_obs->renew_sends(); + s->sel_obs->set_send_size(size); } return 0; } @@ -1956,8 +2996,18 @@ int OSC::sel_send_page (int page, lo_message msg) { OSCSurface *s = get_surface(get_address (msg)); + uint32_t send_size = s->send_page_size; + if (!send_size) { + send_size = s->nsends; + } + uint32_t max_page = (uint32_t)(s->nsends / send_size) + 1; s->send_page = s->send_page + page; - s->sel_obs->renew_sends(); + if (s->send_page < 1) { + s->send_page = 1; + } else if ((uint32_t)s->send_page > max_page) { + s->send_page = max_page; + } + s->sel_obs->set_send_page (s->send_page); return 0; } @@ -1967,7 +3017,7 @@ OSC::sel_plug_pagesize (uint32_t size, lo_message msg) OSCSurface *s = get_surface(get_address (msg)); if (size != s->plug_page_size) { s->plug_page_size = size; - s->sel_obs->renew_plugin(); + s->sel_obs->set_plugin_size(size); } return 0; } @@ -1975,15 +3025,35 @@ OSC::sel_plug_pagesize (uint32_t size, lo_message msg) int OSC::sel_plug_page (int page, lo_message msg) { + if (!page) { + return 0; + } + int new_page = 0; OSCSurface *s = get_surface(get_address (msg)); - s->plug_page = s->plug_page + page; - s->sel_obs->renew_plugin(); + if (page > 0) { + new_page = s->plug_page + s->plug_page_size; + if ((uint32_t) new_page > s->plug_params.size ()) { + new_page = s->plug_page; + } + } else { + new_page = s->plug_page - s->plug_page_size; + if (new_page < 1) { + new_page = 1; + } + } + if (new_page != s->plug_page) { + s->plug_page = new_page; + s->sel_obs->set_plugin_page(s->plug_page); + } return 0; } int OSC::sel_plugin (int delta, lo_message msg) { + if (!delta) { + return 0; + } OSCSurface *sur = get_surface(get_address (msg)); return _sel_plugin (sur->plugin_id + delta, get_address (msg)); } @@ -1992,12 +3062,7 @@ int OSC::_sel_plugin (int id, lo_address addr) { OSCSurface *sur = get_surface(addr); - boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, addr); - } else { - s = _select; - } + boost::shared_ptr s = sur->select; if (s) { boost::shared_ptr r = boost::dynamic_pointer_cast(s); if (!r) { @@ -2021,24 +3086,28 @@ OSC::_sel_plugin (int id, lo_address addr) if (!pi->is_channelstrip()) { #endif sur->plugins.push_back (nplugs); + nplugs++; #ifdef MIXBUS } } #endif } plugs = true; - nplugs++; } } while (plugs); // limit plugin_id to actual plugins - if (!sur->plugins.size()) { + if (sur->plugins.size() < 1) { sur->plugin_id = 0; + sur->plug_page = 1; + if (sur->sel_obs) { + sur->sel_obs->set_plugin_id(-1, 1); + } return 0; + } else if (id < 1) { + sur->plugin_id = 1; } else if (sur->plugins.size() < (uint32_t) id) { sur->plugin_id = sur->plugins.size(); - } else if (sur->plugins.size() && !id) { - sur->plugin_id = 1; } else { sur->plugin_id = id; } @@ -2047,7 +3116,7 @@ OSC::_sel_plugin (int id, lo_address addr) boost::shared_ptr proc = r->nth_plugin (sur->plugins[sur->plugin_id - 1]); boost::shared_ptr pi; if (!(pi = boost::dynamic_pointer_cast(proc))) { - PBD::warning << "OSC: Plugin: " << sur->plugin_id << " does not seem to be a plugin" << endmsg; + PBD::warning << "OSC: Plugin: " << sur->plugin_id << " does not seem to be a plugin" << endmsg; return 1; } boost::shared_ptr pip = pi->plugin(); @@ -2068,7 +3137,7 @@ OSC::_sel_plugin (int id, lo_address addr) sur->plug_page = 1; if (sur->sel_obs) { - sur->sel_obs->renew_plugin(); + sur->sel_obs->set_plugin_id(sur->plugins[sur->plugin_id - 1], sur->plug_page); } return 0; } @@ -2087,7 +3156,7 @@ OSC::transport_sample (lo_message msg) lo_message reply = lo_message_new (); lo_message_add_int64 (reply, pos); - lo_send_message (get_address (msg), "/transport_frame", reply); + lo_send_message (get_address (msg), X_("/transport_frame"), reply); lo_message_free (reply); } @@ -2104,7 +3173,7 @@ OSC::transport_speed (lo_message msg) lo_message reply = lo_message_new (); lo_message_add_double (reply, ts); - lo_send_message (get_address (msg), "/transport_speed", reply); + lo_send_message (get_address (msg), X_("/transport_speed"), reply); lo_message_free (reply); } @@ -2121,7 +3190,7 @@ OSC::record_enabled (lo_message msg) lo_message reply = lo_message_new (); lo_message_add_int32 (reply, re); - lo_send_message (get_address (msg), "/record_enabled", reply); + lo_send_message (get_address (msg), X_("/record_enabled"), reply); lo_message_free (reply); } @@ -2180,21 +3249,24 @@ OSC::jog (float delta, lo_message msg) OSCSurface *s = get_surface(get_address (msg)); - string path = "/jog/mode/name"; switch(s->jogmode) { - case JOG : - text_message (path, "Jog", get_address (msg)); + case 0: if (delta) { jump_by_seconds (delta / 5); } break; - case SCRUB: - text_message (path, "Scrub", get_address (msg)); + case 1: + if (delta > 0) { + access_action ("Common/nudge-playhead-forward"); + } else if (delta < 0) { + access_action ("Common/nudge-playhead-backward"); + } + break; + case 2: scrub (delta, msg); break; - case SHUTTLE: - text_message (path, "Shuttle", get_address (msg)); + case 3: if (delta) { double speed = get_transport_speed (); set_transport_speed (speed + (delta / 8.1)); @@ -2202,46 +3274,34 @@ OSC::jog (float delta, lo_message msg) set_transport_speed (0); } break; - case SCROLL: - text_message (path, "Scroll", get_address (msg)); + case 4: + if (delta > 0) { + next_marker (); + } else if (delta < 0) { + prev_marker (); + } + break; + case 5: if (delta > 0) { access_action ("Editor/scroll-forward"); } else if (delta < 0) { access_action ("Editor/scroll-backward"); } break; - case TRACK: - text_message (path, "Track", get_address (msg)); + case 6: if (delta > 0) { set_bank (s->bank + 1, msg); } else if (delta < 0) { set_bank (s->bank - 1, msg); } break; - case BANK: - text_message (path, "Bank", get_address (msg)); + case 7: if (delta > 0) { bank_up (msg); } else if (delta < 0) { bank_down (msg); } break; - case NUDGE: - text_message (path, "Nudge", get_address (msg)); - if (delta > 0) { - access_action ("Common/nudge-playhead-forward"); - } else if (delta < 0) { - access_action ("Common/nudge-playhead-backward"); - } - break; - case MARKER: - text_message (path, "Marker", get_address (msg)); - if (delta > 0) { - next_marker (); - } else if (delta < 0) { - prev_marker (); - } - break; default: break; @@ -2259,52 +3319,118 @@ OSC::jog_mode (float mode, lo_message msg) if (get_transport_speed () != 1.0) { set_transport_speed (0); } + s->jogmode = (uint32_t) mode; + s->global_obs->jog_mode (mode); + return 0; +} - switch((uint32_t)mode) - { - case JOG : - text_message ("/jog/mode/name", "Jog", get_address (msg)); - s->jogmode = JOG; - break; - case SCRUB: - text_message ("/jog/mode/name", "Scrub", get_address (msg)); - s->jogmode = SCRUB; - break; - case SHUTTLE: - text_message ("/jog/mode/name", "Shuttle", get_address (msg)); - s->jogmode = SHUTTLE; - break; - case SCROLL: - text_message ("/jog/mode/name", "Scroll", get_address (msg)); - s->jogmode = SCROLL; - break; - case TRACK: - text_message ("/jog/mode/name", "Track", get_address (msg)); - s->jogmode = TRACK; - break; - case BANK: - text_message ("/jog/mode/name", "Bank", get_address (msg)); - s->jogmode = BANK; +// two structs to help with going to markers +struct LocationMarker { + LocationMarker (const std::string& l, samplepos_t w) + : label (l), when (w) {} + std::string label; + samplepos_t when; +}; + +struct LocationMarkerSort { + bool operator() (const LocationMarker& a, const LocationMarker& b) { + return (a.when < b.when); + } +}; + +int +OSC::set_marker (const char* types, lo_arg **argv, int argc, lo_message msg) +{ + if (argc != 1) { + PBD::warning << "Wrong number of parameters, one only." << endmsg; + return -1; + } + const Locations::LocationList& ll (session->locations ()->list ()); + uint32_t marker = 0; + + switch (types[0]) { + case 's': + { + Location *cur_mark = 0; + for (Locations::LocationList::const_iterator l = ll.begin(); l != ll.end(); ++l) { + if ((*l)->is_mark ()) { + if (strcmp (&argv[0]->s, (*l)->name().c_str()) == 0) { + session->request_locate ((*l)->start (), false); + return 0; + } else if ((*l)->start () == session->transport_sample()) { + cur_mark = (*l); + } + } + } + if (cur_mark) { + cur_mark->set_name (&argv[0]->s); + return 0; + } + PBD::warning << string_compose ("Marker: \"%1\" - does not exist", &argv[0]->s) << endmsg; + return -1; + } break; - case NUDGE: - text_message ("/jog/mode/name", "Nudge", get_address (msg)); - s->jogmode = NUDGE; + case 'i': + marker = (uint32_t) argv[0]->i - 1; break; - case MARKER: - text_message ("/jog/mode/name", "Marker", get_address (msg)); - s->jogmode = MARKER; + case 'f': + marker = (uint32_t) argv[0]->f - 1; break; default: - PBD::warning << "Jog Mode: " << mode << " is not valid." << endmsg; + return -1; break; - lo_message reply = lo_message_new (); - lo_message_add_int32 (reply, s->jogmode); - lo_send_message (get_address(msg), "/jog/mode", reply); - lo_message_free (reply); + } + std::vector lm; + // get Locations that are marks + for (Locations::LocationList::const_iterator l = ll.begin(); l != ll.end(); ++l) { + if ((*l)->is_mark ()) { + lm.push_back (LocationMarker((*l)->name(), (*l)->start ())); + } + } + // sort them by position + LocationMarkerSort location_marker_sort; + std::sort (lm.begin(), lm.end(), location_marker_sort); + // go there + if (marker < lm.size()) { + session->request_locate (lm[marker].when, false); + return 0; + } + // we were unable to deal with things + return -1; +} +int +OSC::group_list (lo_message msg) +{ + return send_group_list (get_address (msg)); +} + +int +OSC::send_group_list (lo_address addr) +{ + lo_message reply; + reply = lo_message_new (); + + lo_message_add_string (reply, X_("none")); + + std::list groups = session->route_groups (); + for (std::list::iterator i = groups.begin(); i != groups.end(); ++i) { + RouteGroup *rg = *i; + lo_message_add_string (reply, rg->name().c_str()); } + lo_send_message (addr, X_("/group/list"), reply); + lo_message_free (reply); return 0; +} +int +OSC::click_level (float position) +{ + if (!session) return -1; + if (session->click_gain()->gain_control()) { + session->click_gain()->gain_control()->set_value (session->click_gain()->gain_control()->interface_to_internal (position), PBD::Controllable::NoGroup); + } + return 0; } // master and monitor calls @@ -2393,7 +3519,7 @@ OSC::master_set_pan_stereo_position (float position, lo_message msg) lo_message reply = lo_message_new (); lo_message_add_float (reply, endposition); - lo_send_message (get_address (msg), "/master/pan_stereo_position", reply); + lo_send_message (get_address (msg), X_("/master/pan_stereo_position"), reply); lo_message_free (reply); } @@ -2562,7 +3688,7 @@ OSC::route_get_sends(lo_message msg) { } // if used dedicated message path to identify this reply in async operation. // Naming it #reply wont help the client to identify the content. - lo_send_message(get_address (msg), "/strip/sends", reply); + lo_send_message(get_address (msg), X_("/strip/sends"), reply); lo_message_free(reply); @@ -2593,6 +3719,7 @@ OSC::route_get_receives(lo_message msg) { boost::shared_ptr route_list = session->get_routes(); lo_message reply = lo_message_new(); + lo_message_add_int32(reply, rid); for (RouteList::iterator i = route_list->begin(); i != route_list->end(); ++i) { boost::shared_ptr tr = boost::dynamic_pointer_cast (*i); @@ -2625,7 +3752,7 @@ OSC::route_get_receives(lo_message msg) { // I have used a dedicated message path to identify this reply in async operation. // Naming it #reply wont help the client to identify the content. - lo_send_message(get_address (msg), "/strip/receives", reply); + lo_send_message(get_address (msg), X_("/strip/receives"), reply); lo_message_free(reply); return 0; } @@ -2643,6 +3770,7 @@ OSC::set_automation (const char *path, const char* types, lo_arg **argv, int arg uint32_t ctr = 0; uint32_t aut = 0; uint32_t ssid; + boost::shared_ptr send = boost::shared_ptr (); if (argc) { if (types[argc - 1] == 'f') { @@ -2653,7 +3781,7 @@ OSC::set_automation (const char *path, const char* types, lo_arg **argv, int arg } //parse path first to find stripable - if (!strncmp (path, "/strip/", 7)) { + if (!strncmp (path, X_("/strip/"), 7)) { // find ssid and stripable if (argc > 1) { if (types[1] == 'f') { @@ -2666,13 +3794,10 @@ OSC::set_automation (const char *path, const char* types, lo_arg **argv, int arg ssid = atoi (&(strrchr (path, '/' ))[1]); strp = get_strip (ssid, get_address (msg)); } + send = get_send (strp, get_address (msg)); ctr = 7; - } else if (!strncmp (path, "/select/", 8)) { - if (sur->expand_enable && sur->expand) { - strp = get_strip (sur->expand, get_address (msg)); - } else { - strp = _select; - } + } else if (!strncmp (path, X_("/select/"), 8)) { + strp = sur->select; ctr = 8; } else { return ret; @@ -2680,12 +3805,15 @@ OSC::set_automation (const char *path, const char* types, lo_arg **argv, int arg if (strp) { boost::shared_ptr control = boost::shared_ptr(); // other automatable controls can be added by repeating the next 6.5 lines - if ((!strncmp (&path[ctr], "fader", 5)) || (!strncmp (&path[ctr], "gain", 4))) { + if ((!strncmp (&path[ctr], X_("fader"), 5)) || (!strncmp (&path[ctr], X_("gain"), 4))) { if (strp->gain_control ()) { control = strp->gain_control (); } else { PBD::warning << "No fader for this strip" << endmsg; } + if (send) { + control = send->gain_control (); + } } else { PBD::warning << "Automation not available for " << path << endmsg; } @@ -2709,6 +3837,10 @@ OSC::set_automation (const char *path, const char* types, lo_arg **argv, int arg control->set_automation_state (ARDOUR::Touch); ret = 0; break; + case 4: + control->set_automation_state (ARDOUR::Latch); + ret = 0; + break; default: break; } @@ -2726,6 +3858,7 @@ OSC::touch_detect (const char *path, const char* types, lo_arg **argv, int argc, int ret = 1; OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr strp = boost::shared_ptr(); + boost::shared_ptr send = boost::shared_ptr (); uint32_t ctr = 0; uint32_t touch = 0; uint32_t ssid; @@ -2739,7 +3872,7 @@ OSC::touch_detect (const char *path, const char* types, lo_arg **argv, int argc, } //parse path first to find stripable - if (!strncmp (path, "/strip/", 7)) { + if (!strncmp (path, X_("/strip/"), 7)) { // find ssid and stripable if (argc > 1) { if (types[0] == 'f') { @@ -2752,13 +3885,10 @@ OSC::touch_detect (const char *path, const char* types, lo_arg **argv, int argc, ssid = atoi (&(strrchr (path, '/' ))[1]); strp = get_strip (ssid, get_address (msg)); } + send = get_send (strp, get_address (msg)); ctr = 7; - } else if (!strncmp (path, "/select/", 8)) { - if (sur->expand_enable && sur->expand) { - strp = get_strip (sur->expand, get_address (msg)); - } else { - strp = _select; - } + } else if (!strncmp (path, X_("/select/"), 8)) { + strp = sur->select; ctr = 8; } else { return ret; @@ -2766,12 +3896,15 @@ OSC::touch_detect (const char *path, const char* types, lo_arg **argv, int argc, if (strp) { boost::shared_ptr control = boost::shared_ptr(); // other automatable controls can be added by repeating the next 6.5 lines - if ((!strncmp (&path[ctr], "fader", 5)) || (!strncmp (&path[ctr], "gain", 4))) { + if ((!strncmp (&path[ctr], X_("fader"), 5)) || (!strncmp (&path[ctr], X_("gain"), 4))) { if (strp->gain_control ()) { control = strp->gain_control (); } else { PBD::warning << "No fader for this strip" << endmsg; } + if (send) { + control = send->gain_control (); + } } else { PBD::warning << "Automation not available for " << path << endmsg; } @@ -2782,33 +3915,131 @@ OSC::touch_detect (const char *path, const char* types, lo_arg **argv, int argc, control->start_touch (control->session().transport_sample()); ret = 0; } else { - // end touch - control->stop_touch (control->session().transport_sample()); - ret = 0; + // end touch + control->stop_touch (control->session().transport_sample()); + ret = 0; + } + // just in case some crazy surface starts sending control values before touch + FakeTouchMap::iterator x = _touch_timeout.find(control); + if (x != _touch_timeout.end()) { + _touch_timeout.erase (x); + } + } + } + + return ret; +} + +int +OSC::fake_touch (boost::shared_ptr ctrl) +{ + if (ctrl) { + //start touch + if (ctrl->automation_state() == Touch && !ctrl->touching ()) { + ctrl->start_touch (ctrl->session().transport_sample()); + _touch_timeout[ctrl] = 10; + } + } + + return 0; +} + +int +OSC::spill (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) +{ + /* + * spill should have the form of: + * /select/spill (may have i or f keypress/release) + * /strip/spill i (may have keypress and i may be inline) + */ + if (!session || argc > 1) return -1; + + int ret = 1; + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr strp = boost::shared_ptr(); + uint32_t value = 0; + OSCTempMode new_mode = TempOff; + + if (argc) { + if (types[0] == 'f') { + value = (int)argv[0]->f; + } else { + value = argv[0]->i; + } + if (!value) { + // key release ignore + return 0; + } + } + + //parse path first to find stripable + if (!strncmp (path, X_("/strip/"), 7)) { + /* + * we don't know if value is press or ssid + * so we have to check if the last / has an int after it first + * if not then we use value + */ + uint32_t ssid = 0; + ssid = atoi (&(strrchr (path, '/' ))[1]); + if (!ssid) { + ssid = value; + } + strp = get_strip (ssid, get_address (msg)); + } else if (!strncmp (path, X_("/select/"), 8)) { + strp = sur->select; + } else { + return ret; + } + if (strp) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (strp); + boost::shared_ptr v = boost::dynamic_pointer_cast (strp); + if (strstr (path, X_("/vca")) || v) { + //strp must be a VCA + if (v) { + new_mode = VCAOnly; + } else { + return ret; } - // just in case some crazy surface starts sending control values before touch - FakeTouchMap::iterator x = _touch_timeout.find(control); - if (x != _touch_timeout.end()) { - _touch_timeout.erase (x); + } else + if (strstr (path, X_("/group"))) { + //strp must be in a group + if (rt) { + RouteGroup *rg = rt->route_group(); + if (rg) { + new_mode = GroupOnly; + } else { + return ret; + } + } + } else + if (strstr (path, X_("/bus"))) { + //strp must be a bus with either sends or no inputs + if (rt) { + if (!rt->is_track () && rt->can_solo ()) { + new_mode = BusOnly; + } + } + } else { + // decide by auto + // vca should never get here + if (rt->is_track ()) { + if (rt->route_group()) { + new_mode = GroupOnly; + } + } else if (!rt->is_track () && rt->can_solo ()) { + new_mode = BusOnly; } } - } - - return ret; -} - -int -OSC::fake_touch (boost::shared_ptr ctrl) -{ - if (ctrl) { - //start touch - if (ctrl->automation_state() == Touch && !ctrl->touching ()) { - ctrl->start_touch (ctrl->session().transport_sample()); - _touch_timeout[ctrl] = 10; + if (new_mode) { + sur->temp_mode = new_mode; + sur->temp_master = strp; + set_temp_mode (get_address (msg)); + set_bank (1, msg); + return 0; } - } - return 0; + } + return ret; } int @@ -2819,13 +4050,16 @@ OSC::route_mute (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/mute"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->mute_control()) { s->mute_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); return 0; } } - return float_message_with_id ("/strip/mute", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/mute"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -2833,18 +4067,14 @@ OSC::sel_mute (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->mute_control()) { s->mute_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("mute", 0, get_address (msg)); + return float_message(X_("/select/mute"), 0, get_address (msg)); } int @@ -2855,12 +4085,15 @@ OSC::route_solo (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/solo"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->solo_control()) { s->solo_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); } } - return float_message_with_id ("/strip/solo", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/solo"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -2871,13 +4104,16 @@ OSC::route_solo_iso (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/solo_iso"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->solo_isolate_control()) { s->solo_isolate_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); return 0; } } - return float_message_with_id ("/strip/solo_iso", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/solo_iso"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -2888,13 +4124,16 @@ OSC::route_solo_safe (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/solo_safe"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->solo_safe_control()) { s->solo_safe_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); return 0; } } - return float_message_with_id ("/strip/solo_safe", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/solo_safe"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -2902,17 +4141,13 @@ OSC::sel_solo (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->solo_control()) { session->set_control (s->solo_control(), yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); } } - return sel_fail ("solo", 0, get_address (msg)); + return float_message(X_("/select/solo"), 0, get_address (msg)); } int @@ -2920,18 +4155,14 @@ OSC::sel_solo_iso (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->solo_isolate_control()) { s->solo_isolate_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("solo_iso", 0, get_address (msg)); + return float_message(X_("/select/solo_iso"), 0, get_address (msg)); } int @@ -2939,18 +4170,14 @@ OSC::sel_solo_safe (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->solo_safe_control()) { s->solo_safe_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("solo_safe", 0, get_address (msg)); + return float_message(X_("/select/solo_safe"), 0, get_address (msg)); } int @@ -2958,11 +4185,7 @@ OSC::sel_recenable (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->rec_enable_control()) { s->rec_enable_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); @@ -2971,7 +4194,7 @@ OSC::sel_recenable (uint32_t yn, lo_message msg) } } } - return sel_fail ("recenable", 0, get_address (msg)); + return float_message(X_("/select/recenable"), 0, get_address (msg)); } int @@ -2982,6 +4205,9 @@ OSC::route_recenable (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/recenable"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->rec_enable_control()) { s->rec_enable_control()->set_value (yn, sur->usegroup); if (s->rec_enable_control()->get_value()) { @@ -2989,34 +4215,207 @@ OSC::route_recenable (int ssid, int yn, lo_message msg) } } } - return float_message_with_id ("/strip/recenable", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/recenable"), ssid, 0, sur->feedback[2], get_address (msg)); +} + +int +OSC::route_rename (int ssid, char *newname, lo_message msg) { + if (!session) { + return -1; + } + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s = get_strip(ssid, get_address(msg)); + + if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + text_message_with_id (X_("/strip/name"), ssid, string_compose ("%1-Send", s->name()), sur->feedback[2], get_address(msg)); + return 1; + } + s->set_name(std::string(newname)); + } + + return 0; } int -OSC::route_rename(int ssid, char *newname, lo_message msg) { - if (!session) { - return -1; - } +OSC::sel_rename (char *newname, lo_message msg) { + if (!session) { + return -1; + } + + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; + if (s) { + s->set_name(std::string(newname)); + } + + return 0; +} - boost::shared_ptr s = get_strip(ssid, get_address(msg)); +int +OSC::sel_comment (char *newcomment, lo_message msg) { + if (!session) { + return -1; + } - if (s) { - s->set_name(std::string(newname)); - } + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; + if (s) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + if (!rt) { + PBD::warning << "OSC: can not set comment on VCAs." << endmsg; + return -1; + } + rt->set_comment (newcomment, this); + } - return 0; + return 0; } int -OSC::sel_recsafe (uint32_t yn, lo_message msg) +OSC::sel_new_personal_send (char *foldback, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); + s = sur->select; + boost::shared_ptr rt = boost::shared_ptr (); + if (s) { + rt = boost::dynamic_pointer_cast (s); + if (!rt) { + PBD::warning << "OSC: can not send from VCAs." << endmsg; + return -1; + } + } + /* if a foldbackbus called foldback exists use it + * other wise create create it. Then create a foldback send from + * this route to that bus. + */ + string foldbackbus = foldback; + string foldback_name = foldbackbus; + if (foldbackbus.find ("- monitor") == string::npos) { + foldback_name = string_compose ("%1 - monitor", foldbackbus); + } + boost::shared_ptr lsn_rt = session->route_by_name (foldback_name); + if (!lsn_rt) { + // doesn't exist but check if raw name does and is foldbackbus + boost::shared_ptr raw_rt = session->route_by_name (foldbackbus); + if (raw_rt && raw_rt->is_foldbackbus()) { + lsn_rt = raw_rt; + } else { + // create the foldbackbus + RouteList list = session->new_audio_route (2, 2, 0, 1, foldback_name, PresentationInfo::FoldbackBus, (uint32_t) -1); + lsn_rt = *(list.begin()); + lsn_rt->presentation_info().set_hidden (true); + session->set_dirty(); + } + } + if (lsn_rt) { + //boost::shared_ptr rt_send = ; + if (rt && (lsn_rt != rt)) { + // make sure there isn't one already + bool s_only = true; + if (!rt->feeds (lsn_rt, &s_only)) { + // create send + rt->add_foldback_send (lsn_rt); + //boost::shared_ptr snd = rt->internal_send_for (aux); + session->dirty (); + return 0; + } else { + PBD::warning << "OSC: new_send - duplicate send, ignored." << endmsg; + } + } else { + PBD::warning << "OSC: new_send - can't send to self." << endmsg; + } } else { - s = _select; + PBD::warning << "OSC: new_send - no FoldbackBus to send to." << endmsg; + } + + return -1; +} + +int +OSC::strip_group (int ssid, char *group, lo_message msg) { + if (!session) { + return -1; + } + boost::shared_ptr s = get_strip(ssid, get_address(msg)); + return strip_select_group (s, group); +} + +int +OSC::sel_group (char *group, lo_message msg) { + if (!session) { + return -1; + } + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; + return strip_select_group (s, group); +} + +int +OSC::strip_select_group (boost::shared_ptr s, char *group) +{ + string grp = group; + if (grp == "" || grp == " ") { + grp = "none"; + } + + if (s) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (s); + if (!rt) { + PBD::warning << "OSC: VCAs can not be part of a group." << endmsg; + return -1; + } + RouteGroup *rg = rt->route_group(); + RouteGroup* new_rg = session->route_group_by_name (grp); + if (rg) { + string old_group = rg->name(); + if (grp == "none") { + if (rg->size () == 1) { + session->remove_route_group (*rg); + } else { + rg->remove (rt); + } + } else if (grp != old_group) { + if (new_rg) { + // group exists switch to it + if (rg->size () == 1) { + session->remove_route_group (rg); + } else { + rg->remove (rt); + } + new_rg->add (rt); + } else { + rg->set_name (grp); + } + } else { + return 0; + } + } else { + if (grp == "none") { + return 0; + } else if (new_rg) { + new_rg->add (rt); + } else { + // create new group with this strip in it + RouteGroup* new_rg = new RouteGroup (*session, grp); + session->add_route_group (new_rg); + new_rg->add (rt); + } + } } + return 0; +} + +int +OSC::sel_recsafe (uint32_t yn, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; if (s) { if (s->rec_safe_control()) { s->rec_safe_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); @@ -3025,7 +4424,7 @@ OSC::sel_recsafe (uint32_t yn, lo_message msg) } } } - return sel_fail ("record_safe", 0, get_address (msg)); + return float_message(X_("/select/record_safe"), 0, get_address (msg)); } int @@ -3035,6 +4434,9 @@ OSC::route_recsafe (int ssid, int yn, lo_message msg) boost::shared_ptr s = get_strip (ssid, get_address (msg)); OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/record_safe"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->rec_safe_control()) { s->rec_safe_control()->set_value (yn, sur->usegroup); if (s->rec_safe_control()->get_value()) { @@ -3042,7 +4444,7 @@ OSC::route_recsafe (int ssid, int yn, lo_message msg) } } } - return float_message_with_id ("/strip/record_safe", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/record_safe"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -3053,16 +4455,21 @@ OSC::route_monitor_input (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/monitor_input"), ssid, 0, sur->feedback[2], get_address (msg)); + } boost::shared_ptr track = boost::dynamic_pointer_cast (s); if (track) { if (track->monitoring_control()) { - track->monitoring_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); + std::bitset<32> value = track->monitoring_control()->get_value (); + value[0] = yn ? 1 : 0; + track->monitoring_control()->set_value (value.to_ulong(), sur->usegroup); return 0; } } } - return float_message_with_id ("/strip/monitor_input", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/monitor_input"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -3070,21 +4477,19 @@ OSC::sel_monitor_input (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { boost::shared_ptr track = boost::dynamic_pointer_cast (s); if (track) { if (track->monitoring_control()) { - track->monitoring_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); + std::bitset<32> value = track->monitoring_control()->get_value (); + value[0] = yn ? 1 : 0; + track->monitoring_control()->set_value (value.to_ulong(), sur->usegroup); return 0; } } } - return sel_fail ("monitor_input", 0, get_address (msg)); + return float_message(X_("/select/monitor_input"), 0, get_address (msg)); } int @@ -3095,16 +4500,21 @@ OSC::route_monitor_disk (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/monitor_disk"), ssid, 0, sur->feedback[2], get_address (msg)); + } boost::shared_ptr track = boost::dynamic_pointer_cast (s); if (track) { if (track->monitoring_control()) { - track->monitoring_control()->set_value (yn ? 2.0 : 0.0, sur->usegroup); + std::bitset<32> value = track->monitoring_control()->get_value (); + value[1] = yn ? 1 : 0; + track->monitoring_control()->set_value (value.to_ulong(), sur->usegroup); return 0; } } } - return float_message_with_id ("/strip/monitor_disk", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/monitor_disk"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -3112,21 +4522,19 @@ OSC::sel_monitor_disk (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { boost::shared_ptr track = boost::dynamic_pointer_cast (s); if (track) { if (track->monitoring_control()) { - track->monitoring_control()->set_value (yn ? 2.0 : 0.0, PBD::Controllable::NoGroup); + std::bitset<32> value = track->monitoring_control()->get_value (); + value[1] = yn ? 1 : 0; + track->monitoring_control()->set_value (value.to_ulong(), sur->usegroup); return 0; } } } - return sel_fail ("monitor_disk", 0, get_address (msg)); + return float_message(X_("/select/monitor_disk"), 0, get_address (msg)); } @@ -3138,13 +4546,16 @@ OSC::strip_phase (int ssid, int yn, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/polarity"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->phase_control()) { s->phase_control()->set_value (yn ? 1.0 : 0.0, sur->usegroup); return 0; } } - return float_message_with_id ("/strip/polarity", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/polarity"), ssid, 0, sur->feedback[2], get_address (msg)); } int @@ -3152,34 +4563,51 @@ OSC::sel_phase (uint32_t yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->phase_control()) { s->phase_control()->set_value (yn ? 1.0 : 0.0, PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("polarity", 0, get_address (msg)); + return float_message(X_("/select/polarity"), 0, get_address (msg)); } int OSC::strip_expand (int ssid, int yn, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s = get_strip (ssid, get_address (msg)); + if (s) { + sur->expand_strip = s; + } sur->expand_enable = (bool) yn; sur->expand = ssid; - boost::shared_ptr s; + boost::shared_ptr sel; if (yn) { - s = get_strip (ssid, get_address (msg)); + sel = get_strip (ssid, get_address (msg)); } else { - s = _select; + sel = boost::shared_ptr (); } - return _strip_select (s, get_address (msg)); + return _strip_select (sel, get_address (msg)); +} + +int +OSC::strip_hide (int ssid, int state, lo_message msg) +{ + boost::shared_ptr s = get_strip (ssid, get_address (msg)); + OSCSurface *sur = get_surface(get_address (msg)); + + if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/hide"), ssid, 0, sur->feedback[2], get_address (msg)); + } + if (state != s->is_hidden ()) { + s->presentation_info().set_hidden ((bool) state); + } + } + return 0; } int @@ -3189,55 +4617,91 @@ OSC::_strip_select (boost::shared_ptr s, lo_address addr) return -1; } OSCSurface *sur = get_surface(addr, true); + boost::weak_ptr o_sel = sur->select; + boost::shared_ptr old_sel= o_sel.lock (); + boost::weak_ptr o_expand = sur->expand_strip; + boost::shared_ptr old_expand= o_expand.lock (); + + // we got a null strip check that old strips are valid if (!s) { - if (sur->expand_enable) { - // expand doesn't point to a stripable, turn it off and use select - sur->expand = 0; - sur->expand_enable = false; + if (old_expand && sur->expand_enable) { + sur->expand = get_sid (old_expand, addr); + if (sur->strip_types[11] || sur->expand) { + s = old_expand; + } else { + sur->expand_strip = boost::shared_ptr (); + } } - if(ControlProtocol::first_selected_stripable()) { + } + if (!s) { + sur->expand = 0; + sur->expand_enable = false; + if (ControlProtocol::first_selected_stripable()) { s = ControlProtocol::first_selected_stripable(); } else { s = session->master_out (); } - _select = s; + _select = s; + } + if (s != old_sel) { + sur->select = s; } - sur->select = s; + bool sends; + uint32_t nsends = 0; + do { + sends = false; + if (s->send_level_controllable (nsends)) { + sends = true; + nsends++; + } + } while (sends); + sur->nsends = nsends; + s->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::recalcbanks, this), this); - OSCSelectObserver* so = 0; + OSCSelectObserver* so = dynamic_cast(sur->sel_obs); if (sur->feedback[13]) { - if ((so = dynamic_cast(sur->sel_obs)) != 0) { - so->refresh_strip (false); + if (so != 0) { + so->refresh_strip (s, nsends, sur->gainmode, true); } else { - OSCSelectObserver* sel_fb = new OSCSelectObserver (*this, sur); + OSCSelectObserver* sel_fb = new OSCSelectObserver (*this, *session, sur); sur->sel_obs = sel_fb; } + sur->sel_obs->set_expand (sur->expand_enable); } else { if (so != 0) { delete so; sur->sel_obs = 0; } } - + if (sur->feedback[0] || sur->feedback[1]) { + uint32_t obs_expand = 0; + if (sur->expand_enable) { + sur->expand = get_sid (s, addr); + obs_expand = sur->expand; + } else { + obs_expand = 0; + } + for (uint32_t i = 0; i < sur->observers.size(); i++) { + sur->observers[i]->set_expand (obs_expand); + } + } // need to set monitor for processor changed signal (for paging) - // detecting processor changes requires cast to route + string address = lo_address_get_url (addr); boost::shared_ptr r = boost::dynamic_pointer_cast(s); if (r) { - r->processors_changed.connect (sur->proc_connection, MISSING_INVALIDATOR, boost::bind (&OSC::processor_changed, this, addr), this); - processor_changed (addr); + r->processors_changed.connect (sur->proc_connection, MISSING_INVALIDATOR, boost::bind (&OSC::processor_changed, this, address), this); + _sel_plugin (sur->plugin_id, addr); } - strip_feedback (sur, false); - return 0; } void -OSC::processor_changed (lo_address addr) +OSC::processor_changed (string address) { + lo_address addr = lo_address_new_from_url (address.c_str()); OSCSurface *sur = get_surface (addr); - sur->proc_connection.disconnect (); _sel_plugin (sur->plugin_id, addr); if (sur->sel_obs) { sur->sel_obs->renew_sends (); @@ -3255,13 +4719,13 @@ OSC::strip_gui_select (int ssid, int yn, lo_message msg) return -1; } OSCSurface *sur = get_surface(get_address (msg)); - sur->expand_enable = false; boost::shared_ptr s = get_strip (ssid, get_address (msg)); if (s) { + sur->expand_enable = false; SetStripableSelection (s); } else { if ((int) (sur->feedback.to_ulong())) { - float_message_with_id ("/strip/select", ssid, 0, sur->feedback[2], get_address (msg)); + float_message_with_id (X_("/strip/select"), ssid, 0, sur->feedback[2], get_address (msg)); } } @@ -3273,35 +4737,84 @@ OSC::sel_expand (uint32_t state, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - sur->expand_enable = (bool) state; - if (state && sur->expand) { - s = get_strip (sur->expand, get_address (msg)); + if (!sur->expand_strip) { + state = 0; + float_message (X_("/select/expand"), 0.0, get_address (msg)); + } + if (state) { + sur->expand_enable = (bool) state; + s = boost::shared_ptr (); } else { - s = _select; + sur->expand_enable = false; + s = boost::shared_ptr (); } return _strip_select (s, get_address (msg)); } int -OSC::route_set_gain_abs (int ssid, float level, lo_message msg) +OSC::sel_previous (lo_message msg) { - if (!session) return -1; - boost::shared_ptr s = get_strip (ssid, get_address (msg)); - OSCSurface *sur = get_surface(get_address (msg)); + return sel_delta (-1, msg); +} - if (s) { - if (s->gain_control()) { - fake_touch (s->gain_control()); - s->gain_control()->set_value (level, sur->usegroup); +int +OSC::sel_next (lo_message msg) +{ + return sel_delta (1, msg); +} + +int +OSC::sel_delta (int delta, lo_message msg) +{ + if (!delta) { + return 0; + } + OSCSurface *sur = get_surface(get_address (msg)); + Sorted sel_strips; + sel_strips = sur->strips; + // the current selected strip _should_ be in sel_strips + uint32_t nstps = sel_strips.size (); + if (!nstps) { + return -1; + } + boost::shared_ptr new_sel = boost::shared_ptr (); + boost::weak_ptr o_sel = sur->select; + boost::shared_ptr old_sel= o_sel.lock (); + for (uint32_t i = 0; i < nstps; i++) { + if (old_sel == sel_strips[i]) { + if (i && delta < 0) { + // i is > 0 and delta is -1 + new_sel = sel_strips[i - 1]; + } else if ((i + 1) < nstps && delta > 0) { + // i is at least 1 less than greatest and delta = 1 + new_sel = sel_strips[i + 1]; + } else if ((i + 1) >= nstps && delta > 0) { + // i is greatest strip and delta 1 + new_sel = sel_strips[0]; + } else if (!i && delta < 0) { + // i = 0 and delta -1 + new_sel = sel_strips[nstps - 1]; + } else { + // should not happen + return -1; + } + } + } + if (!new_sel) { + // our selected strip has vanished use the first one + new_sel = sel_strips[0]; + } + if (new_sel) { + if (!sur->expand_enable) { + SetStripableSelection (new_sel); } else { - return 1; + sur->expand_strip = new_sel; + _strip_select (new_sel, get_address (msg)); } - } else { - return 1; + return 0; } - - return 0; + return -1; } int @@ -3311,16 +4824,31 @@ OSC::route_set_gain_dB (int ssid, float dB, lo_message msg) return -1; } OSCSurface *sur = get_surface(get_address (msg)); - int ret; - if (dB < -192) { - ret = route_set_gain_abs (ssid, 0.0, msg); - } else { - ret = route_set_gain_abs (ssid, dB_to_coefficient (dB), msg); - } - if (ret != 0) { - return float_message_with_id ("/strip/gain", ssid, -193, sur->feedback[2], get_address (msg)); + boost::shared_ptr s = get_strip (ssid, get_address (msg)); + if (s) { + boost::shared_ptr gain_control; + if (sur->temp_mode == BusOnly && get_send (s, get_address (msg))) { + gain_control = get_send(s, get_address (msg))->gain_control(); + } else { + gain_control = s->gain_control(); + } + float abs; + if (gain_control) { + if (dB < -192) { + abs = 0; + } else { + abs = dB_to_coefficient (dB); + float top = gain_control->upper(); + if (abs > top) { + abs = top; + } + } + fake_touch (gain_control); + gain_control->set_value (abs, sur->usegroup); + return 0; + } } - return 0; + return float_message_with_id (X_("/strip/gain"), ssid, -193, sur->feedback[2], get_address (msg)); } int @@ -3328,11 +4856,7 @@ OSC::sel_gain (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { float abs; if (s->gain_control()) { @@ -3350,7 +4874,7 @@ OSC::sel_gain (float val, lo_message msg) return 0; } } - return sel_fail ("gain", -193, get_address (msg)); + return float_message(X_("/select/gain"), -193, get_address (msg)); } int @@ -3358,11 +4882,7 @@ OSC::sel_dB_delta (float delta, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->gain_control()) { float dB = accurate_coefficient_to_dB (s->gain_control()->get_value()) + delta; @@ -3381,7 +4901,7 @@ OSC::sel_dB_delta (float delta, lo_message msg) return 0; } } - return sel_fail ("gain", -193, get_address (msg)); + return float_message(X_("/select/gain"), -193, get_address (msg)); } int @@ -3394,14 +4914,20 @@ OSC::route_set_gain_fader (int ssid, float pos, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { - if (s->gain_control()) { - fake_touch (s->gain_control()); - s->gain_control()->set_value (s->gain_control()->interface_to_internal (pos), sur->usegroup); + boost::shared_ptr gain_control; + if (sur->temp_mode == BusOnly && get_send (s, get_address (msg))) { + gain_control = get_send(s, get_address (msg))->gain_control(); + } else { + gain_control = s->gain_control(); + } + if (gain_control) { + fake_touch (gain_control); + gain_control->set_value (gain_control->interface_to_internal (pos), sur->usegroup); } else { - return float_message_with_id ("/strip/fader", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/fader"), ssid, 0, sur->feedback[2], get_address (msg)); } } else { - return float_message_with_id ("/strip/fader", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/fader"), ssid, 0, sur->feedback[2], get_address (msg)); } return 0; } @@ -3413,18 +4939,24 @@ OSC::strip_db_delta (int ssid, float delta, lo_message msg) boost::shared_ptr s = get_strip (ssid, get_address (msg)); OSCSurface *sur = get_surface(get_address (msg)); if (s) { - float db = accurate_coefficient_to_dB (s->gain_control()->get_value()) + delta; + boost::shared_ptr gain_control; + if (sur->temp_mode == BusOnly && get_send (s, get_address (msg))) { + gain_control = get_send(s, get_address (msg))->gain_control(); + } else { + gain_control = s->gain_control(); + } + float db = accurate_coefficient_to_dB (gain_control->get_value()) + delta; float abs; if (db < -192) { abs = 0; } else { abs = dB_to_coefficient (db); - float top = s->gain_control()->upper(); + float top = gain_control->upper(); if (abs > top) { abs = top; } } - s->gain_control()->set_value (abs, sur->usegroup); + gain_control->set_value (abs, sur->usegroup); return 0; } return -1; @@ -3435,11 +4967,7 @@ OSC::sel_fader (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->gain_control()) { fake_touch (s->gain_control()); @@ -3447,7 +4975,7 @@ OSC::sel_fader (float val, lo_message msg) return 0; } } - return sel_fail ("fader", 0, get_address (msg)); + return float_message(X_("/select/fader"), 0, get_address (msg)); } int @@ -3458,6 +4986,9 @@ OSC::route_set_trim_abs (int ssid, float level, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/trimdB"), ssid, 0, sur->feedback[2], get_address (msg)); + } if (s->trim_control()) { s->trim_control()->set_value (level, sur->usegroup); return 0; @@ -3475,7 +5006,7 @@ OSC::route_set_trim_dB (int ssid, float dB, lo_message msg) int ret; ret = route_set_trim_abs(ssid, dB_to_coefficient (dB), msg); if (ret != 0) { - return float_message_with_id ("/strip/trimdB", ssid, 0, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/trimdB"), ssid, 0, sur->feedback[2], get_address (msg)); } return 0; @@ -3486,37 +5017,43 @@ OSC::sel_trim (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->trim_control()) { s->trim_control()->set_value (dB_to_coefficient (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("trimdB", 0, get_address (msg)); + return float_message(X_("/select/trimdB"), 0, get_address (msg)); } int -OSC::sel_pan_position (float val, lo_message msg) +OSC::sel_hide (uint32_t state, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; + s = sur->select; + if (s) { + if (state != s->is_hidden ()) { + s->presentation_info().set_hidden ((bool) state); + } } + return 0; +} + +int +OSC::sel_pan_position (float val, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg)); + boost::shared_ptr s; + s = sur->select; if (s) { if(s->pan_azimuth_control()) { s->pan_azimuth_control()->set_value (s->pan_azimuth_control()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("pan_stereo_position", 0.5, get_address (msg)); + return float_message(X_("/select/pan_stereo_position"), 0.5, get_address (msg)); } int @@ -3524,18 +5061,14 @@ OSC::sel_pan_width (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->pan_width_control()) { s->pan_width_control()->set_value (s->pan_width_control()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("pan_stereo_width", 1, get_address (msg)); + return float_message(X_("/select/pan_stereo_width"), 1, get_address (msg)); } int @@ -3546,13 +5079,22 @@ OSC::route_set_pan_stereo_position (int ssid, float pos, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { - if(s->pan_azimuth_control()) { - s->pan_azimuth_control()->set_value (s->pan_azimuth_control()->interface_to_internal (pos), sur->usegroup); + boost::shared_ptr pan_control = boost::shared_ptr(); + if (sur->temp_mode == BusOnly && get_send (s, get_address (msg))) { + boost::shared_ptr send = get_send (s, get_address (msg)); + if (send->pan_outs() > 1) { + pan_control = send->panner_shell()->panner()->pannable()->pan_azimuth_control; + } + } else { + pan_control = s->pan_azimuth_control(); + } + if(pan_control) { + pan_control->set_value (s->pan_azimuth_control()->interface_to_internal (pos), sur->usegroup); return 0; } } - return float_message_with_id ("/strip/pan_stereo_position", ssid, 0.5, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/pan_stereo_position"), ssid, 0.5, sur->feedback[2], get_address (msg)); } int @@ -3563,13 +5105,16 @@ OSC::route_set_pan_stereo_width (int ssid, float pos, lo_message msg) OSCSurface *sur = get_surface(get_address (msg)); if (s) { + if ((sur->temp_mode == BusOnly) && (s != sur->temp_master)) { + return float_message_with_id (X_("/strip/pan_stereo_width"), ssid, 1, sur->feedback[2], get_address (msg)); + } if (s->pan_width_control()) { s->pan_width_control()->set_value (pos, sur->usegroup); return 0; } } - return float_message_with_id ("/strip/pan_stereo_width", ssid, 1, sur->feedback[2], get_address (msg)); + return float_message_with_id (X_("/strip/pan_stereo_width"), ssid, 1, sur->feedback[2], get_address (msg)); } int @@ -3631,14 +5176,10 @@ OSC::sel_sendgain (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); if (sur->send_page_size && (id > (int)sur->send_page_size)) { - return sel_send_fail ("send_gain", id, -193, get_address (msg)); + return float_message_with_id (X_("/select/send_gain"), id, -193, sur->feedback[2], get_address (msg)); } boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; float abs; int send_id = 0; if (s) { @@ -3662,7 +5203,7 @@ OSC::sel_sendgain (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("send_gain", id, -193, get_address (msg)); + return float_message_with_id (X_("/select/send_gain"), id, -193, sur->feedback[2], get_address (msg)); } int @@ -3670,14 +5211,10 @@ OSC::sel_sendfader (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); if (sur->send_page_size && (id > (int)sur->send_page_size)) { - return sel_send_fail ("send_fader", id, 0, get_address (msg)); + return float_message_with_id (X_("/select/send_fader"), id, 0, sur->feedback[2], get_address (msg)); } boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; float abs; int send_id = 0; if (s) { @@ -3695,7 +5232,7 @@ OSC::sel_sendfader (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("send_fader", id, 0, get_address (msg)); + return float_message_with_id (X_("/select/send_fader"), id, 0, sur->feedback[2], get_address (msg)); } int @@ -3746,14 +5283,10 @@ OSC::sel_sendenable (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); if (sur->send_page_size && (id > (int)sur->send_page_size)) { - return sel_send_fail ("send_enable", id, 0, get_address (msg)); + return float_message_with_id (X_("/select/send_enable"), id, 0, sur->feedback[2], get_address (msg)); } boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; int send_id = 0; if (s) { if (id > 0) { @@ -3770,7 +5303,7 @@ OSC::sel_sendenable (int id, float val, lo_message msg) boost::shared_ptr r = boost::dynamic_pointer_cast (s); if (!r) { // should never get here - return sel_send_fail ("send_enable", id, 0, get_address (msg)); + return float_message_with_id (X_("/select/send_enable"), id, 0, sur->feedback[2], get_address (msg)); } boost::shared_ptr snd = boost::dynamic_pointer_cast (r->nth_send(send_id)); if (snd) { @@ -3783,7 +5316,7 @@ OSC::sel_sendenable (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("send_enable", id, 0, get_address (msg)); + return float_message_with_id (X_("/select/send_enable"), id, 0, sur->feedback[2], get_address (msg)); } int @@ -3791,25 +5324,21 @@ OSC::sel_master_send_enable (int state, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->master_send_enable_controllable ()) { s->master_send_enable_controllable()->set_value (state, PBD::Controllable::NoGroup); return 0; } } - return float_message ("/select/master_send_enable", 0, get_address(msg)); + return float_message (X_("/select/master_send_enable"), 0, get_address(msg)); } int OSC::select_plugin_parameter (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); int paid; - int piid = sur->plugin_id; + uint32_t piid = sur->plugin_id; float value = 0; if (argc > 1) { // no inline args @@ -3855,20 +5384,13 @@ OSC::select_plugin_parameter (const char *path, const char* types, lo_arg **argv PBD::warning << "OSC: Must have parameters." << endmsg; return -1; } - if (piid != sur->plugin_id) { - // if the user is sending to a non-existant plugin, don't adjust one we do have - PBD::warning << "OSC: plugin: " << piid << " out of range" << endmsg; - return -1; + if (!piid || piid > sur->plugins.size ()) { + return float_message_with_id (X_("/select/plugin/parameter"), paid, 0, sur->feedback[2], get_address (msg)); } if (sur->plug_page_size && (paid > (int)sur->plug_page_size)) { - return sel_send_fail ("plugin/parameter", paid, 0, get_address (msg)); - } - boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; + return float_message_with_id (X_("/select/plugin/parameter"), paid, 0, sur->feedback[2], get_address (msg)); } + boost::shared_ptr s = sur->select; boost::shared_ptr r = boost::dynamic_pointer_cast(s); if (!r) { return 1; @@ -3881,10 +5403,10 @@ OSC::select_plugin_parameter (const char *path, const char* types, lo_arg **argv } boost::shared_ptr pip = pi->plugin(); // paid is paged parameter convert to absolute - int parid = paid + (int)(sur->plug_page_size * (sur->plug_page - 1)); + int parid = paid + (int)sur->plug_page - 1; if (parid > (int) sur->plug_params.size ()) { if (sur->feedback[13]) { - sel_send_fail ("plugin/parameter", paid, 0, get_address (msg)); + float_message_with_id (X_("/select/plugin/parameter"), paid, 0, sur->feedback[2], get_address (msg)); } return 0; } @@ -3914,6 +5436,38 @@ OSC::select_plugin_parameter (const char *path, const char* types, lo_arg **argv return 1; } +int +OSC::sel_plugin_activate (float state, lo_message msg) +{ + if (!session) { + return -1; + } + OSCSurface *sur = get_surface(get_address (msg)); + if (sur->plugins.size() > 0) { + boost::shared_ptr s = sur->select; + + boost::shared_ptr r = boost::dynamic_pointer_cast (s); + + if (r) { + boost::shared_ptr redi=r->nth_plugin (sur->plugins[sur->plugin_id -1]); + if (redi) { + boost::shared_ptr pi; + if ((pi = boost::dynamic_pointer_cast(redi))) { + if(state > 0) { + pi->activate(); + } else { + pi->deactivate(); + } + return 0; + } + } + } + } + float_message (X_("/select/plugin/activate"), 0, get_address (msg)); + PBD::warning << "OSC: Select has no Plugin." << endmsg; + return 0; +} + int OSC::route_plugin_list (int ssid, lo_message msg) { if (!session) { @@ -3953,7 +5507,7 @@ OSC::route_plugin_list (int ssid, lo_message msg) { piid++; } - lo_send_message (get_address (msg), "/strip/plugin/list", reply); + lo_send_message (get_address (msg), X_("/strip/plugin/list"), reply); lo_message_free (reply); return 0; } @@ -4073,14 +5627,14 @@ OSC::route_plugin_descriptor (int ssid, int piid, lo_message msg) { lo_message_add_double (reply, 0); } - lo_send_message (get_address (msg), "/strip/plugin/descriptor", reply); + lo_send_message (get_address (msg), X_("/strip/plugin/descriptor"), reply); lo_message_free (reply); } lo_message reply = lo_message_new (); lo_message_add_int32 (reply, ssid); lo_message_add_int32 (reply, piid); - lo_send_message (get_address (msg), "/strip/plugin/descriptor_end", reply); + lo_send_message (get_address (msg), X_("/strip/plugin/descriptor_end"), reply); lo_message_free (reply); return 0; @@ -4306,18 +5860,14 @@ OSC::sel_pan_elevation (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->pan_elevation_control()) { s->pan_elevation_control()->set_value (s->pan_elevation_control()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("pan_elevation_position", 0, get_address (msg)); + return float_message(X_("/select/pan_elevation_position"), 0, get_address (msg)); } int @@ -4325,18 +5875,14 @@ OSC::sel_pan_frontback (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->pan_frontback_control()) { s->pan_frontback_control()->set_value (s->pan_frontback_control()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("pan_frontback_position", 0.5, get_address (msg)); + return float_message(X_("/select/pan_frontback_position"), 0.5, get_address (msg)); } int @@ -4344,18 +5890,14 @@ OSC::sel_pan_lfe (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->pan_lfe_control()) { s->pan_lfe_control()->set_value (s->pan_lfe_control()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("pan_lfe_control", 0, get_address (msg)); + return float_message(X_("/select/pan_lfe_control"), 0, get_address (msg)); } // compressor control @@ -4364,18 +5906,14 @@ OSC::sel_comp_enable (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->comp_enable_controllable()) { s->comp_enable_controllable()->set_value (s->comp_enable_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("comp_enable", 0, get_address (msg)); + return float_message(X_("/select/comp_enable"), 0, get_address (msg)); } int @@ -4383,18 +5921,14 @@ OSC::sel_comp_threshold (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->comp_threshold_controllable()) { s->comp_threshold_controllable()->set_value (s->comp_threshold_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("comp_threshold", 0, get_address (msg)); + return float_message(X_("/select/comp_threshold"), 0, get_address (msg)); } int @@ -4402,18 +5936,14 @@ OSC::sel_comp_speed (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->comp_speed_controllable()) { s->comp_speed_controllable()->set_value (s->comp_speed_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("comp_speed", 0, get_address (msg)); + return float_message(X_("/select/comp_speed"), 0, get_address (msg)); } int @@ -4421,18 +5951,14 @@ OSC::sel_comp_mode (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->comp_mode_controllable()) { s->comp_mode_controllable()->set_value (s->comp_mode_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("comp_mode", 0, get_address (msg)); + return float_message(X_("/select/comp_mode"), 0, get_address (msg)); } int @@ -4440,18 +5966,14 @@ OSC::sel_comp_makeup (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->comp_makeup_controllable()) { s->comp_makeup_controllable()->set_value (s->comp_makeup_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("comp_makeup", 0, get_address (msg)); + return float_message(X_("/select/comp_makeup"), 0, get_address (msg)); } // EQ control @@ -4461,18 +5983,14 @@ OSC::sel_eq_enable (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->eq_enable_controllable()) { s->eq_enable_controllable()->set_value (s->eq_enable_controllable()->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_enable", 0, get_address (msg)); + return float_message(X_("/select/eq_enable"), 0, get_address (msg)); } int @@ -4480,18 +5998,14 @@ OSC::sel_eq_hpf_freq (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_freq_controllable(true)) { s->filter_freq_controllable(true)->set_value (s->filter_freq_controllable(true)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_hpf/freq", 0, get_address (msg)); + return float_message(X_("/select/eq_hpf/freq"), 0, get_address (msg)); } int @@ -4499,18 +6013,14 @@ OSC::sel_eq_lpf_freq (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_freq_controllable(false)) { s->filter_freq_controllable(false)->set_value (s->filter_freq_controllable(false)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_lpf/freq", 0, get_address (msg)); + return float_message(X_("/select/eq_lpf/freq"), 0, get_address (msg)); } int @@ -4518,18 +6028,14 @@ OSC::sel_eq_hpf_enable (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_enable_controllable(true)) { s->filter_enable_controllable(true)->set_value (s->filter_enable_controllable(true)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_hpf/enable", 0, get_address (msg)); + return float_message(X_("/select/eq_hpf/enable"), 0, get_address (msg)); } int @@ -4537,18 +6043,14 @@ OSC::sel_eq_lpf_enable (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_enable_controllable(false)) { s->filter_enable_controllable(false)->set_value (s->filter_enable_controllable(false)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_lpf/enable", 0, get_address (msg)); + return float_message(X_("/select/eq_lpf/enable"), 0, get_address (msg)); } int @@ -4556,18 +6058,14 @@ OSC::sel_eq_hpf_slope (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_slope_controllable(true)) { s->filter_slope_controllable(true)->set_value (s->filter_slope_controllable(true)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_hpf/slope", 0, get_address (msg)); + return float_message(X_("/select/eq_hpf/slope"), 0, get_address (msg)); } int @@ -4575,18 +6073,14 @@ OSC::sel_eq_lpf_slope (float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (s->filter_slope_controllable(false)) { s->filter_slope_controllable(false)->set_value (s->filter_slope_controllable(false)->interface_to_internal (val), PBD::Controllable::NoGroup); return 0; } } - return sel_fail ("eq_lpf/slope", 0, get_address (msg)); + return float_message(X_("/select/eq_lpf/slope"), 0, get_address (msg)); } int @@ -4594,11 +6088,7 @@ OSC::sel_eq_gain (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (id > 0) { --id; @@ -4608,7 +6098,7 @@ OSC::sel_eq_gain (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("eq_gain", id + 1, 0, get_address (msg)); + return float_message_with_id (X_("/select/eq_gain"), id + 1, 0, sur->feedback[2], get_address (msg)); } int @@ -4616,11 +6106,7 @@ OSC::sel_eq_freq (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (id > 0) { --id; @@ -4630,7 +6116,7 @@ OSC::sel_eq_freq (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("eq_freq", id + 1, 0, get_address (msg)); + return float_message_with_id (X_("/select/eq_freq"), id + 1, 0, sur->feedback[2], get_address (msg)); } int @@ -4638,11 +6124,7 @@ OSC::sel_eq_q (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (id > 0) { --id; @@ -4652,7 +6134,7 @@ OSC::sel_eq_q (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("eq_q", id + 1, 0, get_address (msg)); + return float_message_with_id (X_("/select/eq_q"), id + 1, 0, sur->feedback[2], get_address (msg)); } int @@ -4660,11 +6142,7 @@ OSC::sel_eq_shape (int id, float val, lo_message msg) { OSCSurface *sur = get_surface(get_address (msg)); boost::shared_ptr s; - if (sur->expand_enable) { - s = get_strip (sur->expand, get_address (msg)); - } else { - s = _select; - } + s = sur->select; if (s) { if (id > 0) { --id; @@ -4674,7 +6152,7 @@ OSC::sel_eq_shape (int id, float val, lo_message msg) return 0; } } - return sel_send_fail ("eq_shape", id + 1, 0, get_address (msg)); + return float_message_with_id (X_("/select/eq_shape"), id + 1, 0, sur->feedback[2], get_address (msg)); } // timer callbacks @@ -4749,57 +6227,19 @@ OSC::periodic (void) return true; } -int -OSC::sel_fail (string path, float val, lo_address addr) -{ - ostringstream os; - os.str(""); - os << "/select/" << path; - string sel_pth = os.str(); - lo_message reply = lo_message_new (); - lo_message_add_float (reply, (float) val); - lo_send_message (addr, sel_pth.c_str(), reply); - lo_message_free (reply); - - return 0; -} - -int -OSC::sel_send_fail (string path, uint32_t id, float val, lo_address addr) -{ - OSCSurface *sur = get_surface(addr); - - ostringstream os; - lo_message reply; - reply = lo_message_new (); - if (sur->feedback[2]) { - os << "/select/" << path << "/" << id; - } else { - os << "/select/" << path; - lo_message_add_int32 (reply, id); - } - string str_pth = os.str(); - lo_message_add_float (reply, (float) val); - - lo_send_message (addr, str_pth.c_str(), reply); - lo_message_free (reply); - - return 0; -} - XMLNode& OSC::get_state () { XMLNode& node (ControlProtocol::get_state()); - node.set_property ("debugmode", (int32_t) _debugmode); // TODO: enum2str - node.set_property ("address-only", address_only); - node.set_property ("remote-port", remote_port); - node.set_property ("banksize", default_banksize); - node.set_property ("striptypes", default_strip); - node.set_property ("feedback", default_feedback); - node.set_property ("gainmode", default_gainmode); - node.set_property ("send-page-size", default_send_size); - node.set_property ("plug-page-size", default_plugin_size); + node.set_property (X_("debugmode"), (int32_t) _debugmode); // TODO: enum2str + node.set_property (X_("address-only"), address_only); + node.set_property (X_("remote-port"), remote_port); + node.set_property (X_("banksize"), default_banksize); + node.set_property (X_("striptypes"), default_strip); + node.set_property (X_("feedback"), default_feedback); + node.set_property (X_("gainmode"), default_gainmode); + node.set_property (X_("send-page-size"), default_send_size); + node.set_property (X_("plug-page-size"), default_plugin_size); return node; } @@ -4849,18 +6289,51 @@ struct StripableByPresentationOrder }; OSC::Sorted -OSC::get_sorted_stripables(std::bitset<32> types, bool cue) +OSC::get_sorted_stripables(std::bitset<32> types, bool cue, uint32_t custom, Sorted my_list) { Sorted sorted; StripableList stripables; + StripableList custom_list; // fetch all stripables - session->get_stripables (stripables); - + session->get_stripables (stripables, PresentationInfo::AllStripables); + if (custom) { + uint32_t nstps = my_list.size (); + // check each custom strip to see if it still exists + boost::shared_ptr s; + for (uint32_t i = 0; i < nstps; i++) { + bool exists = false; + s = my_list[i]; + for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { + boost::shared_ptr sl = *it; + if (s == sl) { + exists = true; + break; + } + } + if(!exists) { + my_list[i] = boost::shared_ptr(); + } else { + custom_list.push_back (s); + } + } + if (custom == 1) { + return my_list; + } else { + stripables = custom_list; + } + } // Look for stripables that match bit in sur->strip_types for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { boost::shared_ptr s = *it; + if (!s) { + break; + } + if (custom == 2) { + // banking off use all valid custom strips + sorted.push_back (s); + } else if ((!cue) && (!types[9]) && (s->presentation_info().flags() & PresentationInfo::Hidden)) { // do nothing... skip it } else if (types[8] && (s->is_selected())) { @@ -4876,31 +6349,23 @@ OSC::get_sorted_stripables(std::bitset<32> types, bool cue) sorted.push_back (s); } else if (types[4] && boost::dynamic_pointer_cast(s)) { sorted.push_back (s); + } else if (s->is_foldbackbus()) { + if (types[7]) { + sorted.push_back (s); + } } else #ifdef MIXBUS if (types[2] && Profile->get_mixbus() && s->mixbus()) { sorted.push_back (s); } else - if (types[7] && boost::dynamic_pointer_cast(s) && !boost::dynamic_pointer_cast(s)) { - if (Profile->get_mixbus() && !s->mixbus()) { - sorted.push_back (s); - } - } else #endif - if ((types[2] || types[3] || types[7]) && boost::dynamic_pointer_cast(s) && !boost::dynamic_pointer_cast(s)) { + if (boost::dynamic_pointer_cast(s) && !boost::dynamic_pointer_cast(s)) { boost::shared_ptr r = boost::dynamic_pointer_cast(s); if (!(s->presentation_info().flags() & PresentationInfo::MidiBus)) { // note some older sessions will show midibuses as busses - if (r->direct_feeds_according_to_reality (session->master_out())) { - // this is a bus - if (types[2]) { - sorted.push_back (s); - } - } else { - // this is an Aux out - if (types[7]) { - sorted.push_back (s); - } + // this is a bus + if (types[2]) { + sorted.push_back (s); } } else if (types[3]) { sorted.push_back (s); @@ -4908,14 +6373,18 @@ OSC::get_sorted_stripables(std::bitset<32> types, bool cue) } } } - sort (sorted.begin(), sorted.end(), StripableByPresentationOrder()); - // Master/Monitor might be anywhere... we put them at the end - Sorry ;) - if (types[5]) { - sorted.push_back (session->master_out()); + if (!custom || (custom & 0x2)) { + sort (sorted.begin(), sorted.end(), StripableByPresentationOrder()); } - if (types[6]) { - if (session->monitor_out()) { - sorted.push_back (session->monitor_out()); + if (!custom) { + // Master/Monitor might be anywhere... we put them at the end - Sorry ;) + if (types[5]) { + sorted.push_back (session->master_out()); + } + if (types[6]) { + if (session->monitor_out()) { + sorted.push_back (session->monitor_out()); + } } } return sorted; @@ -4924,53 +6393,114 @@ OSC::get_sorted_stripables(std::bitset<32> types, bool cue) int OSC::cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo_message msg) { + OSCSurface *s = get_surface(get_address (msg), true); + s->bank_size = 0; + float value = 0; + if (argc == 1) { + if (types[0] == 'f') { + value = argv[0]->f; + } else if (types[0] == 'i') { + value = (float) argv[0]->i; + } + } int ret = 1; /* unhandled */ - - if (!strncmp (path, "/cue/aux", 8)) { + if (!strncmp (path, X_("/cue/aux"), 8)) { // set our Aux bus - if (argv[0]->f) { - ret = cue_set (argv[0]->f, msg); + if (argc) { + if (value) { + ret = cue_set ((uint32_t) value, msg); + } else { + ret = 0; + } + } + } + else if (!strncmp (path, X_("/cue/connect_aux"), 16)) { + // Create new Aux bus + string dest = ""; + if (argc == 1 && types[0] == 's') { + dest = &argv[0]->s; + ret = cue_connect_aux (dest, msg); } else { - ret = 0; + PBD::warning << "OSC: connect_aux has wrong number or type of parameters." << endmsg; } } - else if (!strncmp (path, "/cue/connect", 12)) { + else if (!strncmp (path, X_("/cue/connect"), 12)) { // Connect to default Aux bus - if ((!argc) || argv[0]->f) { + if ((!argc) || argv[0]->f || argv[0]->i) { ret = cue_set (1, msg); } else { ret = 0; } } - else if (!strncmp (path, "/cue/next_aux", 13)) { + else if (!strncmp (path, X_("/cue/new_aux"), 12)) { + // Create new Aux bus + string name = ""; + string dest_1 = ""; + string dest_2 = ""; + if (argc == 3 && types[0] == 's' && types[1] == 's' && types[2] == 's') { + name = &argv[0]->s; + dest_1 = &argv[1]->s; + dest_2 = &argv[2]->s; + ret = cue_new_aux (name, dest_1, dest_2, msg); + } else if (argc == 2 && types[0] == 's' && types[1] == 's') { + name = &argv[0]->s; + dest_1 = &argv[1]->s; + dest_2 = dest_1; + ret = cue_new_aux (name, dest_1, dest_2, msg); + } else if (argc == 1 && types[0] == 's') { + name = &argv[0]->s; + ret = cue_new_aux (name, dest_1, dest_2, msg); + } else { + PBD::warning << "OSC: new_aux has wrong number or type of parameters." << endmsg; + } + } + else if (!strncmp (path, X_("/cue/new_send"), 13)) { + // Create new send to aux + string rt_name = ""; + if (argc == 1 && types[0] == 's') { + rt_name = &argv[0]->s; + ret = cue_new_send (rt_name, msg); + } else { + PBD::warning << "OSC: new_send has wrong number or type of parameters." << endmsg; + } + } + else if (!strncmp (path, X_("/cue/next_aux"), 13)) { // switch to next Aux bus - if ((!argc) || argv[0]->f) { + if ((!argc) || argv[0]->f || argv[0]->i) { ret = cue_next (msg); } else { ret = 0; } } - else if (!strncmp (path, "/cue/previous_aux", 17)) { + else if (!strncmp (path, X_("/cue/previous_aux"), 17)) { // switch to previous Aux bus - if ((!argc) || argv[0]->f) { + if ((!argc) || argv[0]->f || argv[0]->i) { ret = cue_previous (msg); } else { ret = 0; } } - else if (!strncmp (path, "/cue/send/fader/", 16) && strlen (path) > 16) { - int id = atoi (&path[16]); - ret = cue_send_fader (id, argv[0]->f, msg); + else if (!strncmp (path, X_("/cue/send/fader/"), 16) && strlen (path) > 16) { + if (argc == 1) { + int id = atoi (&path[16]); + ret = cue_send_fader (id, value, msg); + } } - else if (!strncmp (path, "/cue/send/enable/", 17) && strlen (path) > 17) { - int id = atoi (&path[17]); - ret = cue_send_enable (id, argv[0]->f, msg); + else if (!strncmp (path, X_("/cue/send/enable/"), 17) && strlen (path) > 17) { + if (argc == 1) { + int id = atoi (&path[17]); + ret = cue_send_enable (id, value, msg); + } } - else if (!strncmp (path, "/cue/fader", 10)) { - ret = cue_aux_fader (argv[0]->f, msg); + else if (!strncmp (path, X_("/cue/fader"), 10)) { + if (argc == 1) { + ret = cue_aux_fader (value, msg); + } } - else if (!strncmp (path, "/cue/mute", 9)) { - ret = cue_aux_mute (argv[0]->f, msg); + else if (!strncmp (path, X_("/cue/mute"), 9)) { + if (argc == 1) { + ret = cue_aux_mute (value, msg); + } } return ret; @@ -4979,7 +6509,7 @@ OSC::cue_parse (const char *path, const char* types, lo_arg **argv, int argc, lo int OSC::cue_set (uint32_t aux, lo_message msg) { - set_surface_feedback (0, msg); + return _cue_set (aux, get_address (msg)); } @@ -4987,37 +6517,38 @@ int OSC::_cue_set (uint32_t aux, lo_address addr) { int ret = 1; - OSCSurface *s = get_surface(addr); + OSCSurface *s = get_surface(addr, true); s->bank_size = 0; s->strip_types = 128; s->feedback = 0; s->gainmode = 1; s->cue = true; - s->strips = get_sorted_stripables(s->strip_types, s->cue); + s->strips = get_sorted_stripables(s->strip_types, s->cue, false, s->custom_strips); s->nstrips = s->strips.size(); - + if (!s->nstrips) { + surface_destroy (s); + return 0; + } if (aux < 1) { aux = 1; } else if (aux > s->nstrips) { aux = s->nstrips; } s->aux = aux; - // get a list of Auxes for (uint32_t n = 0; n < s->nstrips; ++n) { boost::shared_ptr stp = s->strips[n]; if (stp) { - text_message (string_compose ("/cue/name/%1", n+1), stp->name(), addr); + text_message (string_compose (X_("/cue/name/%1"), n+1), stp->name(), addr); if (aux == n+1) { // aux must be at least one - // need a signal if aux vanishes - stp->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::_cue_set, this, aux, addr), this); + stp->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::_cue_set, this, aux, addr), this); // make a list of stripables with sends that go to this bus s->sends = cue_get_sorted_stripables(stp, aux, addr); if (s->cue_obs) { - s->cue_obs->refresh_strip (false); + s->cue_obs->refresh_strip (stp, s->sends, true); } else { // start cue observer OSCCueObserver* co = new OSCCueObserver (*this, s); @@ -5032,10 +6563,99 @@ OSC::_cue_set (uint32_t aux, lo_address addr) return ret; } +int +OSC::cue_new_aux (string name, string dest_1, string dest_2, lo_message msg) +{ + // create a new bus named name - monitor + RouteList list; + boost::shared_ptr aux; + name = string_compose ("%1 - monitor", name); + list = session->new_audio_route (2, 2, 0, 1, name, PresentationInfo::FoldbackBus, (uint32_t) -1); + aux = *(list.begin()); + if (aux) { + boost::shared_ptr r = boost::dynamic_pointer_cast(aux); + if (dest_1.size()) { + if (atoi( dest_1.c_str())) { + dest_1 = string_compose ("system:playback_%1", dest_1); + } + if (atoi( dest_2.c_str())) { + dest_2 = string_compose ("system:playback_%1", dest_2); + } + PortSet& ports = r->output()->ports (); + PortSet::iterator i = ports.begin(); + ++i; + r->output ()->connect (*(ports.begin()), dest_1, this); + r->output ()->connect (*(i), dest_2, this); + } + cue_set ((uint32_t) -1, msg); + session->set_dirty(); + return 0; + } + return -1; +} + +int +OSC::cue_new_send (string rt_name, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg), true); + if (sur->cue) { + boost::shared_ptr aux = boost::dynamic_pointer_cast (get_strip (sur->aux, get_address(msg))); + if (aux) { + boost::shared_ptr rt_send = session->route_by_name (rt_name); + if (rt_send && (aux != rt_send)) { + // make sure there isn't one already + bool s_only = true; + if (!rt_send->feeds (aux, &s_only)) { + // create send + rt_send->add_foldback_send (aux); + boost::shared_ptr snd = rt_send->internal_send_for (aux); + session->dirty (); + return 0; + } else { + PBD::warning << "OSC: new_send - duplicate send, ignored." << endmsg; + } + } else { + PBD::warning << "OSC: new_send - route doesn't exist or is aux." << endmsg; + } + } else { + PBD::warning << "OSC: new_send - No Aux to send to." << endmsg; + } + } else { + PBD::warning << "OSC: new_send - monitoring not set, select aux first." << endmsg; + } + return 1; +} + +int +OSC::cue_connect_aux (std::string dest, lo_message msg) +{ + OSCSurface *sur = get_surface(get_address (msg), true); + int ret = 1; + if (sur->cue) { + boost::shared_ptr rt = boost::dynamic_pointer_cast (get_strip (sur->aux, get_address(msg))); + if (rt) { + if (dest.size()) { + rt->output()->disconnect (this); + if (atoi( dest.c_str())) { + dest = string_compose ("system:playback_%1", dest); + } + PortSet& ports = rt->output()->ports (); + rt->output ()->connect (*(ports.begin()), dest, this); + session->set_dirty(); + ret = 0; + } + } + } + if (ret) { + PBD::warning << "OSC: cannot connect, no Aux bus chosen." << endmsg; + } + return ret; +} + int OSC::cue_next (lo_message msg) { - OSCSurface *s = get_surface(get_address (msg)); + OSCSurface *s = get_surface(get_address (msg), true); int ret = 1; if (!s->cue) { @@ -5052,13 +6672,15 @@ OSC::cue_next (lo_message msg) int OSC::cue_previous (lo_message msg) { - OSCSurface *s = get_surface(get_address (msg)); + OSCSurface *s = get_surface(get_address (msg), true); int ret = 1; if (!s->cue) { ret = cue_set (1, msg); } if (s->aux > 1) { ret = cue_set (s->aux - 1, msg); + } else { + ret = cue_set (1, msg); } return ret; } @@ -5066,7 +6688,7 @@ OSC::cue_previous (lo_message msg) boost::shared_ptr OSC::cue_get_send (uint32_t id, lo_address addr) { - OSCSurface *s = get_surface(addr); + OSCSurface *s = get_surface(addr, true); if (id && s->aux > 0 && id <= s->sends.size()) { boost::shared_ptr r = boost::dynamic_pointer_cast (s->sends[id - 1]); boost::shared_ptr aux = get_strip (s->aux, addr); @@ -5083,7 +6705,7 @@ OSC::cue_aux_fader (float position, lo_message msg) { if (!session) return -1; - OSCSurface *sur = get_surface(get_address (msg)); + OSCSurface *sur = get_surface(get_address (msg), true); if (sur->cue) { if (sur->aux) { boost::shared_ptr s = get_strip (sur->aux, get_address (msg)); @@ -5096,7 +6718,7 @@ OSC::cue_aux_fader (float position, lo_message msg) } } } - float_message ("/cue/fader", 0, get_address (msg)); + float_message (X_("/cue/fader"), 0, get_address (msg)); return -1; } @@ -5105,7 +6727,7 @@ OSC::cue_aux_mute (float state, lo_message msg) { if (!session) return -1; - OSCSurface *sur = get_surface(get_address (msg)); + OSCSurface *sur = get_surface(get_address (msg), true); if (sur->cue) { if (sur->aux) { boost::shared_ptr s = get_strip (sur->aux, get_address (msg)); @@ -5117,7 +6739,7 @@ OSC::cue_aux_mute (float state, lo_message msg) } } } - float_message ("/cue/mute", 0, get_address (msg)); + float_message (X_("/cue/mute"), 0, get_address (msg)); return -1; } @@ -5134,7 +6756,7 @@ OSC::cue_send_fader (uint32_t id, float val, lo_message msg) return 0; } } - float_message (string_compose ("/cue/send/fader/%1", id), 0, get_address (msg)); + float_message (string_compose (X_("/cue/send/fader/%1"), id), 0, get_address (msg)); return -1; } @@ -5152,7 +6774,7 @@ OSC::cue_send_enable (uint32_t id, float state, lo_message msg) } return 0; } - float_message (string_compose ("/cue/send/enable/%1", id), 0, get_address (msg)); + float_message (string_compose (X_("/cue/send/enable/%1"), id), 0, get_address (msg)); return -1; } @@ -5160,13 +6782,16 @@ OSC::cue_send_enable (uint32_t id, float state, lo_message msg) int OSC::float_message (string path, float val, lo_address addr) { + _lo_lock.lock (); lo_message reply; reply = lo_message_new (); lo_message_add_float (reply, (float) val); lo_send_message (addr, path.c_str(), reply); + Glib::usleep(1); lo_message_free (reply); + _lo_lock.unlock (); return 0; } @@ -5174,6 +6799,7 @@ OSC::float_message (string path, float val, lo_address addr) int OSC::float_message_with_id (std::string path, uint32_t ssid, float value, bool in_line, lo_address addr) { + _lo_lock.lock (); lo_message msg = lo_message_new (); if (in_line) { path = string_compose ("%1/%2", path, ssid); @@ -5183,13 +6809,33 @@ OSC::float_message_with_id (std::string path, uint32_t ssid, float value, bool i lo_message_add_float (msg, value); lo_send_message (addr, path.c_str(), msg); + Glib::usleep(1); lo_message_free (msg); + _lo_lock.unlock (); + return 0; +} + +int +OSC::int_message (string path, int val, lo_address addr) +{ + _lo_lock.lock (); + + lo_message reply; + reply = lo_message_new (); + lo_message_add_int32 (reply, (float) val); + + lo_send_message (addr, path.c_str(), reply); + Glib::usleep(1); + lo_message_free (reply); + _lo_lock.unlock (); + return 0; } int OSC::int_message_with_id (std::string path, uint32_t ssid, int value, bool in_line, lo_address addr) { + _lo_lock.lock (); lo_message msg = lo_message_new (); if (in_line) { path = string_compose ("%1/%2", path, ssid); @@ -5199,20 +6845,25 @@ OSC::int_message_with_id (std::string path, uint32_t ssid, int value, bool in_li lo_message_add_int32 (msg, value); lo_send_message (addr, path.c_str(), msg); + Glib::usleep(1); lo_message_free (msg); + _lo_lock.unlock (); return 0; } int OSC::text_message (string path, string val, lo_address addr) { + _lo_lock.lock (); lo_message reply; reply = lo_message_new (); lo_message_add_string (reply, val.c_str()); lo_send_message (addr, path.c_str(), reply); + Glib::usleep(1); lo_message_free (reply); + _lo_lock.unlock (); return 0; } @@ -5220,6 +6871,7 @@ OSC::text_message (string path, string val, lo_address addr) int OSC::text_message_with_id (std::string path, uint32_t ssid, std::string val, bool in_line, lo_address addr) { + _lo_lock.lock (); lo_message msg = lo_message_new (); if (in_line) { path = string_compose ("%1/%2", path, ssid); @@ -5230,7 +6882,9 @@ OSC::text_message_with_id (std::string path, uint32_t ssid, std::string val, boo lo_message_add_string (msg, val.c_str()); lo_send_message (addr, path.c_str(), msg); + Glib::usleep(1); lo_message_free (msg); + _lo_lock.unlock (); return 0; } @@ -5243,24 +6897,15 @@ OSC::cue_get_sorted_stripables(boost::shared_ptr aux, uint32_t id, lo // fetch all stripables StripableList stripables; - session->get_stripables (stripables); - - // Look for stripables that have a send to aux - for (StripableList::iterator it = stripables.begin(); it != stripables.end(); ++it) { - - boost::shared_ptr s = *it; - // we only want routes - boost::shared_ptr r = boost::dynamic_pointer_cast (s); - if (r) { - r->processors_changed.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::recalcbanks, this), this); - boost::shared_ptr snd = r->internal_send_for (boost::dynamic_pointer_cast (aux)); - if (snd) { // test for send to aux - sorted.push_back (s); - s->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::cue_set, this, id, msg), this); - } + session->get_stripables (stripables, PresentationInfo::MixerStripables); + boost::shared_ptr aux_rt = boost::dynamic_pointer_cast (aux); + Route::FedBy fed_by = aux_rt->fed_by(); + for (Route::FedBy::iterator i = fed_by.begin(); i != fed_by.end(); ++i) { + if (i->sends_only) { + boost::shared_ptr s (i->r.lock()); + sorted.push_back (s); + s->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&OSC::cue_set, this, id, msg), this); } - - } sort (sorted.begin(), sorted.end(), StripableByPresentationOrder());