diff --git a/example_graincloud/Makefile b/example_graincloud/Makefile index 8d8e4c0..d2f8482 100644 --- a/example_graincloud/Makefile +++ b/example_graincloud/Makefile @@ -6,7 +6,7 @@ endif # make sure the the OF_ROOT location is defined ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) + OF_ROOT=../../.. endif # call the project makefile! diff --git a/example_graincloud/config.make b/example_graincloud/config.make index 836fce7..3fa1676 100644 --- a/example_graincloud/config.make +++ b/example_graincloud/config.make @@ -8,7 +8,7 @@ # The location of your root openFrameworks installation # (default) OF_ROOT = ../../.. ################################################################################ -# OF_ROOT = ../../.. +OF_ROOT = ../../.. ################################################################################ # PROJECT ROOT diff --git a/example_midi_polysynth/Makefile b/example_midi_polysynth/Makefile index 8d8e4c0..d2f8482 100644 --- a/example_midi_polysynth/Makefile +++ b/example_midi_polysynth/Makefile @@ -6,7 +6,7 @@ endif # make sure the the OF_ROOT location is defined ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) + OF_ROOT=../../.. endif # call the project makefile! diff --git a/example_midi_polysynth/config.make b/example_midi_polysynth/config.make index 836fce7..3fa1676 100644 --- a/example_midi_polysynth/config.make +++ b/example_midi_polysynth/config.make @@ -8,7 +8,7 @@ # The location of your root openFrameworks installation # (default) OF_ROOT = ../../.. ################################################################################ -# OF_ROOT = ../../.. +OF_ROOT = ../../.. ################################################################################ # PROJECT ROOT diff --git a/example_wavesynth_pc_keys/Makefile b/example_wavesynth_pc_keys/Makefile index 8d8e4c0..d2f8482 100644 --- a/example_wavesynth_pc_keys/Makefile +++ b/example_wavesynth_pc_keys/Makefile @@ -6,7 +6,7 @@ endif # make sure the the OF_ROOT location is defined ifndef OF_ROOT - OF_ROOT=$(realpath ../../..) + OF_ROOT=../../.. endif # call the project makefile! diff --git a/example_wavesynth_pc_keys/config.make b/example_wavesynth_pc_keys/config.make index 836fce7..3fa1676 100644 --- a/example_wavesynth_pc_keys/config.make +++ b/example_wavesynth_pc_keys/config.make @@ -8,7 +8,7 @@ # The location of your root openFrameworks installation # (default) OF_ROOT = ../../.. ################################################################################ -# OF_ROOT = ../../.. +OF_ROOT = ../../.. ################################################################################ # PROJECT ROOT diff --git a/src/DSP/control/ValueControl.cpp b/src/DSP/control/ValueControl.cpp index 92015e5..468ff53 100644 --- a/src/DSP/control/ValueControl.cpp +++ b/src/DSP/control/ValueControl.cpp @@ -6,7 +6,7 @@ pdsp::ValueControl::ValueControl(){ updateOutputNodes(); slewInitValue = 0.0f; value = 0.0f; - lastValue = numeric_limits::infinity(); + lastValue = std::numeric_limits::infinity(); this->deactivateSlew(); if(dynamicConstruction){ diff --git a/src/DSP/control/ValueControl.h b/src/DSP/control/ValueControl.h index e47fe40..7a57250 100644 --- a/src/DSP/control/ValueControl.h +++ b/src/DSP/control/ValueControl.h @@ -66,8 +66,8 @@ class ValueControl : public pdsp::Unit, public pdsp::UsesSlew { void releaseResources () override ; void process (int bufferSize) noexcept override; - atomic lastValue; - atomic value; + std::atomic lastValue; + std::atomic value; }; diff --git a/src/ofx/OscInput.cpp b/src/ofx/OscInput.cpp index dc2b66d..8b7a964 100644 --- a/src/ofx/OscInput.cpp +++ b/src/ofx/OscInput.cpp @@ -57,7 +57,7 @@ void pdsp::osc::Input::openPort( int port ) { receiver.setup( port ); connected = true; - bufferChrono = chrono::high_resolution_clock::now(); + bufferChrono = std::chrono::high_resolution_clock::now(); } diff --git a/src/ofx/OscInput.h b/src/ofx/OscInput.h index 8a61173..f76ce99 100644 --- a/src/ofx/OscInput.h +++ b/src/ofx/OscInput.h @@ -162,7 +162,7 @@ class Input : public pdsp::Preparable { double oneSlashMicrosecForSample; - chrono::time_point bufferChrono; + std::chrono::time_point bufferChrono; bool tempoLinked; diff --git a/src/ofx/OscOutput.cpp b/src/ofx/OscOutput.cpp index 19a9e2b..be4bdc4 100644 --- a/src/ofx/OscOutput.cpp +++ b/src/ofx/OscOutput.cpp @@ -12,7 +12,7 @@ pdsp::osc::Output::ScheduledOscMessage::ScheduledOscMessage(){ this->scheduledTime = std::chrono::time_point::min(); }; -pdsp::osc::Output::ScheduledOscMessage::ScheduledOscMessage(ofxOscMessage message, chrono::high_resolution_clock::time_point schedule) { +pdsp::osc::Output::ScheduledOscMessage::ScheduledOscMessage(ofxOscMessage message, std::chrono::high_resolution_clock::time_point schedule) { this->message = message; this->scheduledTime = schedule; }; @@ -141,10 +141,10 @@ void pdsp::osc::Output::process( int bufferSize ) noexcept{ //add note messages if(chronoStarted){ - chrono::nanoseconds bufferOffset = chrono::nanoseconds (static_cast ( bufferSize * usecPerSample )); + std::chrono::nanoseconds bufferOffset = std::chrono::nanoseconds (static_cast ( bufferSize * usecPerSample )); bufferChrono = bufferChrono + bufferOffset; }else{ - bufferChrono = chrono::high_resolution_clock::now(); + bufferChrono = std::chrono::high_resolution_clock::now(); chronoStarted = true; } @@ -158,8 +158,8 @@ void pdsp::osc::Output::process( int bufferSize ) noexcept{ float msg_value = messageBuffer->messages[n].value; int msg_sample = messageBuffer->messages[n].sample; - chrono::nanoseconds offset = chrono::nanoseconds (static_cast ( msg_sample * usecPerSample )); - chrono::high_resolution_clock::time_point scheduleTime = bufferChrono + offset; + std::chrono::nanoseconds offset = std::chrono::nanoseconds (static_cast ( msg_sample * usecPerSample )); + std::chrono::high_resolution_clock::time_point scheduleTime = bufferChrono + offset; ofxOscMessage osc; osc.setAddress( addresses[i] ); @@ -185,7 +185,7 @@ void pdsp::osc::Output::process( int bufferSize ) noexcept{ void pdsp::osc::Output::startDaemon(){ // OK runDaemon = true; - daemonThread = thread( daemonFunctionWrapper, this ); + daemonThread = std::thread( daemonFunctionWrapper, this ); } @@ -199,7 +199,7 @@ void pdsp::osc::Output::daemonFunction() noexcept{ while (runDaemon){ - while( send!=writeindex && circularBuffer[send].scheduledTime < chrono::high_resolution_clock::now() ){ + while( send!=writeindex && circularBuffer[send].scheduledTime < std::chrono::high_resolution_clock::now() ){ #ifndef NDEBUG if(verbose) cout << "[pdsp] OSC message: address = "<< circularBuffer[send].message.getAddress() << " | value = "<<(int)circularBuffer[send].message.getArgAsFloat(0)<<"\n"; diff --git a/src/ofx/OscOutput.h b/src/ofx/OscOutput.h index f410c0d..30ea74f 100644 --- a/src/ofx/OscOutput.h +++ b/src/ofx/OscOutput.h @@ -35,13 +35,13 @@ class Output : public pdsp::ExtSequencer, public pdsp::Preparable { class ScheduledOscMessage{ public: ScheduledOscMessage(); - ScheduledOscMessage(ofxOscMessage message, chrono::high_resolution_clock::time_point schedule); + ScheduledOscMessage(ofxOscMessage message, std::chrono::high_resolution_clock::time_point schedule); ScheduledOscMessage(const ScheduledOscMessage &other); ScheduledOscMessage& operator= (const ScheduledOscMessage &other); ~ScheduledOscMessage(); ofxOscMessage message; - chrono::high_resolution_clock::time_point scheduledTime; + std::chrono::high_resolution_clock::time_point scheduledTime; }; @@ -126,7 +126,7 @@ class Output : public pdsp::ExtSequencer, public pdsp::Preparable { void daemonFunction() noexcept; static void daemonFunctionWrapper(Output* parent); - thread daemonThread; + std::thread daemonThread; std::atomic runDaemon; //serial output processing members diff --git a/src/ofx/SerialOut.cpp b/src/ofx/SerialOut.cpp index bb3ab78..950c5f1 100644 --- a/src/ofx/SerialOut.cpp +++ b/src/ofx/SerialOut.cpp @@ -6,10 +6,9 @@ #define OFXPDSP_SERIALOUTPUTCIRCULARBUFFERSIZE 4096 - pdsp::serial::Output::ScheduledSerialMessage::ScheduledSerialMessage(){ }; -pdsp::serial::Output::ScheduledSerialMessage::ScheduledSerialMessage(int channel, float message, chrono::high_resolution_clock::time_point schedule) { +pdsp::serial::Output::ScheduledSerialMessage::ScheduledSerialMessage(int channel, float message, std::chrono::high_resolution_clock::time_point schedule) { if (channel<1) channel = 1; if (channel>127) channel = 127; int msg = (int) message; @@ -172,7 +171,6 @@ void pdsp::serial::Output::releaseResources() {} // OK -----------------------------------------------^^^^^^^^^^^------------- void pdsp::serial::Output::process( int bufferSize ) noexcept{ - if(connected){ //clear messages messagesToSend.clear(); @@ -181,10 +179,10 @@ void pdsp::serial::Output::process( int bufferSize ) noexcept{ int maxBuffer = inputs.size(); if(chronoStarted){ - chrono::nanoseconds bufferOffset = chrono::nanoseconds (static_cast ( bufferSize * usecPerSample )); + std::chrono::nanoseconds bufferOffset = std::chrono::nanoseconds (static_cast ( bufferSize * usecPerSample )); bufferChrono = bufferChrono + bufferOffset; }else{ - bufferChrono = chrono::high_resolution_clock::now(); + bufferChrono = std::chrono::high_resolution_clock::now(); chronoStarted = true; } @@ -204,8 +202,8 @@ void pdsp::serial::Output::process( int bufferSize ) noexcept{ float msg_value = messageBuffer->messages[n].value; int msg_sample = messageBuffer->messages[n].sample; - chrono::nanoseconds offset = chrono::nanoseconds (static_cast ( msg_sample * usecPerSample )); - chrono::high_resolution_clock::time_point scheduleTime = bufferChrono + offset; + std::chrono::nanoseconds offset = std::chrono::nanoseconds (static_cast ( msg_sample * usecPerSample )); + std::chrono::high_resolution_clock::time_point scheduleTime = bufferChrono + offset; messagesToSend.push_back( ScheduledSerialMessage(msg_channel, msg_value, scheduleTime) ); } @@ -227,7 +225,7 @@ void pdsp::serial::Output::process( int bufferSize ) noexcept{ void pdsp::serial::Output::startDaemon(){ // OK runDaemon = true; - daemonThread = thread( daemonFunctionWrapper, this ); + daemonThread = std::thread( daemonFunctionWrapper, this ); } diff --git a/src/ofx/SerialOut.h b/src/ofx/SerialOut.h index d7471d1..4fb1083 100644 --- a/src/ofx/SerialOut.h +++ b/src/ofx/SerialOut.h @@ -38,14 +38,14 @@ class Output : public pdsp::ExtSequencer, public pdsp::Preparable { class ScheduledSerialMessage{ public: ScheduledSerialMessage(); - ScheduledSerialMessage(int channel, float message, chrono::high_resolution_clock::time_point schedule); + ScheduledSerialMessage(int channel, float message, std::chrono::high_resolution_clock::time_point schedule); ScheduledSerialMessage(const ScheduledSerialMessage &other); ScheduledSerialMessage& operator= (const ScheduledSerialMessage &other); ~ScheduledSerialMessage(); signed char channel; signed char message; - chrono::high_resolution_clock::time_point scheduledTime; + std::chrono::high_resolution_clock::time_point scheduledTime; }; @@ -142,7 +142,7 @@ class Output : public pdsp::ExtSequencer, public pdsp::Preparable { std::atomic runDaemon; //serial output processing members - std::chrono::time_point bufferChrono; + std::chrono::time_point bufferChrono; bool chronoStarted; double usecPerSample; std::vector circularBuffer;