From a7e39b85d7c35ec44c613e593c57ff27de0d06bc Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 19 Aug 2008 01:04:54 +0000 Subject: Remove more API/code: num_plugins (unused legacy of the really crap OSC days). git-svn-id: http://svn.drobilla.net/lad/ingen@1442 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/OSCClientReceiver.cpp | 13 ------------- src/libs/client/OSCClientReceiver.hpp | 1 - src/libs/client/SigClientInterface.hpp | 3 --- src/libs/client/ThreadedSigClientInterface.hpp | 4 ---- 4 files changed, 21 deletions(-) (limited to 'src/libs/client') diff --git a/src/libs/client/OSCClientReceiver.cpp b/src/libs/client/OSCClientReceiver.cpp index 5f12cd6e..23fcd871 100644 --- a/src/libs/client/OSCClientReceiver.cpp +++ b/src/libs/client/OSCClientReceiver.cpp @@ -141,7 +141,6 @@ OSCClientReceiver::setup_callbacks() { lo_server_thread_add_method(_st, "/ingen/ok", "i", response_ok_cb, this); lo_server_thread_add_method(_st, "/ingen/error", "is", response_error_cb, this); - lo_server_thread_add_method(_st, "/ingen/num_plugins", "i", num_plugins_cb, this); lo_server_thread_add_method(_st, "/ingen/plugin", "ssss", plugin_cb, this); lo_server_thread_add_method(_st, "/ingen/new_patch", "si", new_patch_cb, this); lo_server_thread_add_method(_st, "/ingen/destroyed", "s", destroyed_cb, this); @@ -351,18 +350,6 @@ OSCClientReceiver::_response_error_cb(const char* path, const char* types, lo_ar } -/** Number of plugins in engine, should precede /ingen/plugin messages in response - * to a /ingen/send_plugins - */ -int -OSCClientReceiver::_num_plugins_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg) -{ - num_plugins(argv[0]->i); - - return 0; -} - - /** A plugin info response from the server, in response to an /ingen/send_plugins */ int diff --git a/src/libs/client/OSCClientReceiver.hpp b/src/libs/client/OSCClientReceiver.hpp index eb1efd21..5913322c 100644 --- a/src/libs/client/OSCClientReceiver.hpp +++ b/src/libs/client/OSCClientReceiver.hpp @@ -81,7 +81,6 @@ private: LO_HANDLER(error); LO_HANDLER(response_ok); LO_HANDLER(response_error); - LO_HANDLER(num_plugins); LO_HANDLER(plugin); LO_HANDLER(plugin_list_end); LO_HANDLER(new_patch); diff --git a/src/libs/client/SigClientInterface.hpp b/src/libs/client/SigClientInterface.hpp index dbedd79c..a272fdee 100644 --- a/src/libs/client/SigClientInterface.hpp +++ b/src/libs/client/SigClientInterface.hpp @@ -51,7 +51,6 @@ public: sigc::signal signal_bundle_begin; sigc::signal signal_bundle_end; sigc::signal signal_error; - sigc::signal signal_num_plugins; sigc::signal signal_new_plugin; sigc::signal signal_new_patch; sigc::signal signal_new_node; @@ -90,8 +89,6 @@ protected: void transfer_begin() {} void transfer_end() {} - void num_plugins(uint32_t num) { signal_num_plugins.emit(num); } - void response_ok(int32_t id) { if (_enabled) signal_response_ok.emit(id); } diff --git a/src/libs/client/ThreadedSigClientInterface.hpp b/src/libs/client/ThreadedSigClientInterface.hpp index fb6eb447..7cbb2bfe 100644 --- a/src/libs/client/ThreadedSigClientInterface.hpp +++ b/src/libs/client/ThreadedSigClientInterface.hpp @@ -80,8 +80,6 @@ public: void transfer_begin() {} void transfer_end() {} - void num_plugins(uint32_t num) { _num_plugins = num; } - void response_ok(int32_t id) { push_sig(sigc::bind(response_ok_slot, id)); } @@ -146,11 +144,9 @@ private: void push_sig(Closure ev); Raul::SRSWQueue _sigs; - uint32_t _num_plugins; sigc::slot bundle_begin_slot; sigc::slot bundle_end_slot; - sigc::slot num_plugins_slot; sigc::slot response_ok_slot; sigc::slot response_error_slot; sigc::slot error_slot; -- cgit v1.2.1