diff options
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/OSCEngineReceiver.cpp | 5 | ||||
-rw-r--r-- | src/engine/PatchImpl.cpp | 7 | ||||
-rw-r--r-- | src/engine/internals/Note.cpp | 5 | ||||
-rw-r--r-- | src/engine/internals/Trigger.cpp | 1 |
4 files changed, 10 insertions, 8 deletions
diff --git a/src/engine/OSCEngineReceiver.cpp b/src/engine/OSCEngineReceiver.cpp index e0b176bc..95823c1d 100644 --- a/src/engine/OSCEngineReceiver.cpp +++ b/src/engine/OSCEngineReceiver.cpp @@ -76,8 +76,9 @@ OSCEngineReceiver::OSCEngineReceiver(Engine& engine, size_t queue_size, uint16_t free(lo_url); } - // For debugging, print all incoming OSC messages - //lo_server_add_method(_server, NULL, NULL, generic_cb, NULL); +#ifdef LOG_DEBUG + lo_server_add_method(_server, NULL, NULL, generic_cb, NULL); +#endif // Set response address for this message. // It's important this is first and returns nonzero. diff --git a/src/engine/PatchImpl.cpp b/src/engine/PatchImpl.cpp index 4dc61a21..c2d60de8 100644 --- a/src/engine/PatchImpl.cpp +++ b/src/engine/PatchImpl.cpp @@ -27,6 +27,7 @@ #include "DuplexPort.hpp" #include "Engine.hpp" #include "ProcessSlave.hpp" +#include "ingen-config.h" using namespace std; using namespace Raul; @@ -466,10 +467,8 @@ PatchImpl::compile() const #ifdef LOG_DEBUG debug << path() << " compiled {" << endl; - for (size_t i=0; i < process_order->size(); ++i) { - assert(process_order->at(i)); - debug << " " << process_order->at(i)->path() << endl; - } + for (size_t i=0; i < compiled_patch->size(); ++i) + debug << " " << compiled_patch->at(i).node()->path() << endl; debug << "}" << endl; #endif diff --git a/src/engine/internals/Note.cpp b/src/engine/internals/Note.cpp index 76659cfd..9ed45c96 100644 --- a/src/engine/internals/Note.cpp +++ b/src/engine/internals/Note.cpp @@ -35,6 +35,7 @@ #define LOG(s) s << "[NoteNode] " using namespace std; +using namespace Raul; namespace Ingen { namespace Internals { @@ -353,7 +354,7 @@ NoteNode::free_voice(ProcessContext& context, uint32_t voice, FrameTime time) } else { // No new note for voice, deactivate (set gate low) #ifdef LOG_DEBUG - LOG(debug) << "Note off: key " << (int)note_num << " voice " << voice << endl; + LOG(debug) << "Note off: key " << (*_voices)[voice].note << " voice " << voice << endl; #endif ((AudioBuffer*)_gate_port->buffer(voice).get())->set_value(0.0f, context.start(), time); (*_voices)[voice].state = Voice::FREE; @@ -368,7 +369,7 @@ NoteNode::all_notes_off(ProcessContext& context, FrameTime time) assert(time - context.start() < _buffer_size); #ifdef LOG_DEBUG - LOG(debug) << "All notes off @ " << offset << endl; + LOG(debug) << "All notes off @ " << time << endl; #endif // FIXME: set all keys to Key::OFF? diff --git a/src/engine/internals/Trigger.cpp b/src/engine/internals/Trigger.cpp index 7c05a1d3..440e9a63 100644 --- a/src/engine/internals/Trigger.cpp +++ b/src/engine/internals/Trigger.cpp @@ -26,6 +26,7 @@ #include "OutputPort.hpp" #include "ProcessContext.hpp" #include "util.hpp" +#include "ingen-config.h" #define LOG(s) s << "[TriggerNode] " |