summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-05-04 22:01:07 -0700
committerLen Ovens <len@ovenwerks.net>2017-05-05 15:02:22 -0700
commit379ad3357df6cba267b7005aac572d6821487269 (patch)
tree0c830dd12e2f1c8bf8e4177d82af3415da5b637c
parent69f61936ff975db6843f814f5ce44f3bc34299f5 (diff)
OSC: remove debug output.
-rw-r--r--libs/surfaces/osc/osc.cc8
-rw-r--r--libs/surfaces/osc/osc_cue_observer.cc3
2 files changed, 0 insertions, 11 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index fae9db11e1..a0985f7850 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -878,7 +878,6 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
std::string action_path = path;
access_action (action_path.substr(15));
- std::cout << "access_action path = " << action_path.substr(15) << "\n";
}
ret = 0;
@@ -4076,8 +4075,6 @@ 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)
{
- std::cout << "cue set\n";
-
return _cue_set (aux, get_address (msg));
}
@@ -4127,7 +4124,6 @@ OSC::_cue_set (uint32_t aux, lo_address addr)
for (uint32_t n = 0; n < s->nstrips; ++n) {
boost::shared_ptr<Stripable> stp = s->strips[n];
if (stp) {
- std::cout << "Aux: " << stp->name() << " number: " << n+1 << " requested: " << aux << "\n";
text_message (string_compose ("/cue/name/%1", n+1), stp->name(), addr);
if (aux == n+1) {
// aux must be at least one
@@ -4137,7 +4133,6 @@ OSC::_cue_set (uint32_t aux, lo_address addr)
// make a list of stripables with sends that go to this bus
s->sends = cue_get_sorted_stripables(stp, aux, addr);
// start cue observer
- std::cout << "starting cue obsever\n";
OSCCueObserver* co = new OSCCueObserver (stp, s->sends, addr);
cue_observers.push_back (co);
}
@@ -4153,13 +4148,10 @@ OSC::cue_next (lo_message msg)
{
OSCSurface *s = get_surface(get_address (msg));
- std::cout << "cue next\n";
if (!s->cue) {
- std::cout << "cue next init\n";
cue_set (1, msg);
return 0;
}
- std::cout << "cue next no init\n";
if (s->aux < s->nstrips) {
cue_set (s->aux + 1, msg);
} else {
diff --git a/libs/surfaces/osc/osc_cue_observer.cc b/libs/surfaces/osc/osc_cue_observer.cc
index e49d64e416..c846145ebc 100644
--- a/libs/surfaces/osc/osc_cue_observer.cc
+++ b/libs/surfaces/osc/osc_cue_observer.cc
@@ -38,7 +38,6 @@ OSCCueObserver::OSCCueObserver (boost::shared_ptr<Stripable> s, std::vector<boos
, _strip (s)
, tick_enable (false)
{
- std::cout << "entered observer\n";
addr = lo_address_new (lo_address_get_hostname(a) , lo_address_get_port(a));
_strip->PropertyChanged.connect (strip_connections, MISSING_INVALIDATOR, boost::bind (&OSCCueObserver::name_changed, this, boost::lambda::_1, 0), OSC::instance());
@@ -48,12 +47,10 @@ OSCCueObserver::OSCCueObserver (boost::shared_ptr<Stripable> s, std::vector<boos
send_change_message ("/cue/mute", 0, _strip->mute_control());
gain_timeout.push_back (0);
- std::cout << "observer past gain timeout for aux\n";
_strip->gain_control()->Changed.connect (strip_connections, MISSING_INVALIDATOR, bind (&OSCCueObserver::send_gain_message, this, 0, _strip->gain_control()), OSC::instance());
send_gain_message (0, _strip->gain_control());
send_init ();
- std::cout << "observer past send init\n";
tick_enable = true;
tick ();