Skip to content

Commit

Permalink
adding main gain control to various visual systems: MPMFluid, Memory,…
Browse files Browse the repository at this point in the history
… Ripples, VectorFlow, Vision
  • Loading branch information
galsasson committed Jan 10, 2014
1 parent 7ca1989 commit b52363c
Show file tree
Hide file tree
Showing 16 changed files with 72 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ void CloudsVisualSystemExampleMPMFluid::selfSetupGui(){
soundGui->addSlider("Volume 1", 0, 3, &volume[1]);
soundGui->addSlider("Volume 2", 0, 3, &volume[2]);
soundGui->addSlider("Volume 3", 0, 3, &volume[3]);

soundGui->addSlider("Main Gain", 0, 1, &fMainGain);

guis.push_back(soundGui);
guimap[customGui->getName()] = soundGui;

Expand Down Expand Up @@ -126,7 +129,9 @@ void CloudsVisualSystemExampleMPMFluid::selfSetup()
fluid.addObstacle(obstacle);

// sound
synth.setOutputGen(buildSynth());
fMainGain = 0;
mainGain.value(0);
synth.setOutputGen(buildSynth() * mainGain);
}

// selfPresetLoaded is called whenever a new preset is triggered
Expand Down Expand Up @@ -211,6 +216,7 @@ void CloudsVisualSystemExampleMPMFluid::selfUpdate()
volumeControl[i].value(volume[i]);
}

mainGain.value(fMainGain);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ class CloudsVisualSystemExampleMPMFluid : public CloudsVisualSystem {
// Sound
ofxUISuperCanvas* soundGui;
float volume[4] = {0};
float fMainGain;
ControlParameter mainGain;
ControlParameter volumeControl[4];
ControlTrigger soundTriggers[3];
ControlParameter mouseX, mouseY, mouseSpeed, totalSpeed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ void CloudsVisualSystemMemory::selfSetup()
generate();

// sound
synth.setOutputGen(buildSynth());
fMainGain = 0;
mainGain.value(0);
synth.setOutputGen(buildSynth() * mainGain);
}

void CloudsVisualSystemMemory::selfSetDefaults(){
Expand Down Expand Up @@ -58,6 +60,8 @@ void CloudsVisualSystemMemory::selfSetupSystemGui()
sysGui->addSlider("Random_Up", 0.0, 100, &randomUp);
sysGui->addSlider("Random_Down", 0.0, 100, &randomDown);
sysGui->addSlider("Noise_Lerp", 0.0, 1.0, &noiseLerp);

sysGui->addSlider("Main Gain", 0, 1, &fMainGain);
}

void CloudsVisualSystemMemory::selfSetupRenderGui()
Expand Down Expand Up @@ -317,7 +321,10 @@ void CloudsVisualSystemMemory::selfUpdate()

for (int i = 0; i < blocks.size(); i++) {
blocks[i].update();
}
}

// sound
mainGain.value(fMainGain);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@ class CloudsVisualSystemMemory : public CloudsVisualSystem {
bool bTexture;

// Sound
float fMainGain;
ControlParameter mainGain;
ofxTonicSynth synth;
Generator buildSynth();
void audioRequested(ofAudioEventArgs& args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ void CloudsVisualSystemRipples::selfSetupGui()
items.push_back("Scale Blues");
items.push_back("Scale Pentatonic");
soundGui->addDropDownList("Scale", items);
soundGui->addSlider("Main gain", 0, 1, &fMainGain);

ofAddListener(soundGui->newGUIEvent, this, &CloudsVisualSystemRipples::selfGuiEvent);
guis.push_back(soundGui);
Expand Down Expand Up @@ -148,7 +149,9 @@ void CloudsVisualSystemRipples::selfSetup()
noteIndex = 0;
baseNote = 0;
setScaleByName("Scale Pentatonic");
mainSynth.setOutputGen(buildSynth());
fMainGain = 0;
mainGain.value(0);
mainSynth.setOutputGen(buildSynth() * mainGain);
currentUserInput = ofVec2f(-1, -1);
}

Expand Down Expand Up @@ -275,6 +278,7 @@ void CloudsVisualSystemRipples::selfUpdate()
}
volumeControl[0].value(volume[0]);
volumeControl[1].value(volume[1]);
mainGain.value(fMainGain);
}

// selfDraw draws in 3D using the default ofEasyCamera
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ class CloudsVisualSystemRipples : public CloudsVisualSystem {
ControlParameter volumeControl[2];
bool bEnableSounds;
ofMutex mutex;
ControlParameter mainGain;
float fMainGain;
ofxTonicSynth mainSynth;
ofxTonicSynth notes[5];
int noteIndex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ void CloudsVisualSystemVectorFlow::selfSetup(){
initBlurFilter();

// sound
synth.setOutputGen(buildSynth());
fMainGain = 0;
mainGain.value(0);
synth.setOutputGen(buildSynth() * mainGain);
}

void CloudsVisualSystemVectorFlow::selfSetupGuis(){
Expand Down Expand Up @@ -141,6 +143,7 @@ void CloudsVisualSystemVectorFlow::selfUpdate(){
}

// UPDATE Sound parameters
mainGain.value(fMainGain);
float distX = abs(GetCloudsInputX() - prevInputX);
float distY = abs(GetCloudsInputY() - prevInputY);
float mSpeed = sqrt(distX*distX + distY*distY);
Expand Down Expand Up @@ -400,6 +403,8 @@ void CloudsVisualSystemVectorFlow::selfSetupRenderGui(){
rdrGui->addToggle("Blend Add", &blendAdd);

rdrGui->addSlider("Blur", 0, 10, &blurAmount);

sysGui->addSlider("Main Gain", 0, 1, &fMainGain);

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ class CloudsVisualSystemVectorFlow : public CloudsVisualSystem {
ofFbo fboInitial, fboBlurX, fboFinal;

// Sound
float fMainGain;
ControlParameter mainGain;
int prevInputX, prevInputY;
ofxTonicSynth synth;
ControlParameter lpfCutoff;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ void CloudsVisualSystemVision::selfSetDefaults(){
currentFlowDensity = -1;
flowDensity = 3;
hueShift = .2;


fMainGain = 0;
mainGain.value(0);
}

void CloudsVisualSystemVision::selfSetup()
Expand All @@ -97,7 +99,7 @@ void CloudsVisualSystemVision::selfSetup()
loadCurrentMovie();

// sound
synth.setOutputGen(buildSynth());
synth.setOutputGen(buildSynth() * mainGain);
}

void CloudsVisualSystemVision::selfSetupGui()
Expand Down Expand Up @@ -210,6 +212,8 @@ void CloudsVisualSystemVision::selfSetupGui()
soundGui->setName("VISION Sound");
soundGui->setWidgetFontSize(OFX_UI_FONT_SMALL);

soundGui->addSlider("Main Gain", 0, 1, &fMainGain);

for (int i=0; i<nSamples; i++)
{
soundGui->addToggle(soundFiles[i], &playSample[i]);
Expand Down Expand Up @@ -470,6 +474,9 @@ void CloudsVisualSystemVision::selfUpdate(){
}
}
}

// sound
mainGain.value(fMainGain);
}

void CloudsVisualSystemVision::selfDrawBackground()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ class CloudsVisualSystemVision : public CloudsVisualSystem {
ofShader shader;

// Sound
float fMainGain;
ControlParameter mainGain;
ofxUISuperCanvas* soundGui;
int nSamples = 2;
string soundFiles[2] = {"distorted_drones.aif",
Expand Down
8 changes: 8 additions & 0 deletions VSExampleMPMFluid/ExampleMPMFluid.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
objects = {

/* Begin PBXBuildFile section */
2A316F85187F84E700662636 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A316F84187F84E700662636 /* ofxSystemTextbox.mm */; };
2A316F86187F84E700662636 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A316F84187F84E700662636 /* ofxSystemTextbox.mm */; };
2ACA6A131872190C0029603B /* ofxTonicSynth.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACA698C1872190C0029603B /* ofxTonicSynth.cpp */; };
2ACA6A141872190C0029603B /* ofxTonicSynth.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACA698C1872190C0029603B /* ofxTonicSynth.cpp */; };
2ACA6A151872190C0029603B /* ADSR.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ACA698F1872190C0029603B /* ADSR.cpp */; };
Expand Down Expand Up @@ -376,6 +378,8 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
2A316F83187F84E700662636 /* ofxSystemTextbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxSystemTextbox.h; sourceTree = "<group>"; };
2A316F84187F84E700662636 /* ofxSystemTextbox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ofxSystemTextbox.mm; sourceTree = "<group>"; };
2ACA698B1872190C0029603B /* ofxTonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxTonic.h; sourceTree = "<group>"; };
2ACA698C1872190C0029603B /* ofxTonicSynth.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxTonicSynth.cpp; sourceTree = "<group>"; };
2ACA698D1872190C0029603B /* ofxTonicSynth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxTonicSynth.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1137,6 +1141,8 @@
E72FF11817E688FE0007780D /* VisualSystemsLibrary */ = {
isa = PBXGroup;
children = (
2A316F83187F84E700662636 /* ofxSystemTextbox.h */,
2A316F84187F84E700662636 /* ofxSystemTextbox.mm */,
E72FF11A17E688FE0007780D /* CloudsRGBDCamera.cpp */,
E72FF11B17E688FE0007780D /* CloudsRGBDCamera.h */,
E72FF11C17E688FE0007780D /* CloudsRGBDVideoPlayer.cpp */,
Expand Down Expand Up @@ -1883,6 +1889,7 @@
85732B3618307AD3002B53D9 /* ofxTLInOut.cpp in Sources */,
2ACA6A6E1872190C0029603B /* Noise.cpp in Sources */,
85732B3718307AD3002B53D9 /* ofxTLKeyframes.cpp in Sources */,
2A316F86187F84E700662636 /* ofxSystemTextbox.mm in Sources */,
2ACA6A3C1872190C0029603B /* ControlMetro.cpp in Sources */,
85732B3818307AD3002B53D9 /* ofxTLLFO.cpp in Sources */,
85732B3918307AD3002B53D9 /* ofxTLPage.cpp in Sources */,
Expand Down Expand Up @@ -1973,6 +1980,7 @@
2ACA6A171872190C0029603B /* Arithmetic.cpp in Sources */,
E7D32FA71751C626006706ED /* ofxPerlinBehavior.cpp in Sources */,
E7D32FA81751C626006706ED /* ofxRParticle.cpp in Sources */,
2A316F85187F84E700662636 /* ofxSystemTextbox.mm in Sources */,
E7D32FA91751C626006706ED /* ofxRParticleGlowieRenderer.cpp in Sources */,
2ACA6A351872190C0029603B /* ControlDelay.cpp in Sources */,
E7D32FAA1751C626006706ED /* ofxRParticleRenderer.cpp in Sources */,
Expand Down
2 changes: 1 addition & 1 deletion VSExampleMPMFluid/src/testApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

//--------------------------------------------------------------
void testApp::setup(){
SetCloudsInputKinect();
// SetCloudsInputKinect();
exampleMPMFluid.setup();
exampleMPMFluid.playSystem();

Expand Down
2 changes: 1 addition & 1 deletion VSExampleMPMFluid/src/testApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "ofMain.h"
#include "ofxUI.h"
#include "CloudsVisualSystemExampleMPMFluid.h"
#include "CloudsInputKinectOSC.h"
//#include "CloudsInputKinectOSC.h"
#include "CloudsMixer.h"


Expand Down
10 changes: 10 additions & 0 deletions VSMemory/Memory.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
objects = {

/* Begin PBXBuildFile section */
2A316F8A187F87F300662636 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A316F89187F87F300662636 /* ofxSystemTextbox.mm */; };
2A316F8B187F87F300662636 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A316F89187F87F300662636 /* ofxSystemTextbox.mm */; };
3D5B95CB175308AE00F558AC /* kiss_fft.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D5B9557175308AD00F558AC /* kiss_fft.c */; };
3D5B95CC175308AE00F558AC /* kiss_fftr.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D5B9558175308AD00F558AC /* kiss_fftr.c */; };
3D5B95CD175308AE00F558AC /* ofOpenALSoundPlayer_TimelineAdditions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D5B955B175308AD00F558AC /* ofOpenALSoundPlayer_TimelineAdditions.cpp */; };
Expand Down Expand Up @@ -376,6 +378,8 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
2A316F88187F87F300662636 /* ofxSystemTextbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxSystemTextbox.h; sourceTree = "<group>"; };
2A316F89187F87F300662636 /* ofxSystemTextbox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ofxSystemTextbox.mm; sourceTree = "<group>"; };
3D5B91B01751CF3E00F558AC /* .gitignore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
3D5B91B11751CF3E00F558AC /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
3D5B91B31751CF3E00F558AC /* ofxColorPalette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxColorPalette.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1715,6 +1719,8 @@
E7DD846117DBC0A500AFB2DD /* VisualSystemsLibrary */ = {
isa = PBXGroup;
children = (
2A316F88187F87F300662636 /* ofxSystemTextbox.h */,
2A316F89187F87F300662636 /* ofxSystemTextbox.mm */,
E7DD846317DBC0A500AFB2DD /* CloudsRGBDCamera.cpp */,
E7DD846417DBC0A500AFB2DD /* CloudsRGBDCamera.h */,
E7DD846517DBC0A500AFB2DD /* CloudsRGBDVideoPlayer.cpp */,
Expand Down Expand Up @@ -1791,6 +1797,8 @@
/* Begin PBXProject section */
E4B69B4C0A3A1720003C02F2 /* Project object */ = {
isa = PBXProject;
attributes = {
};
buildConfigurationList = E4B69B4D0A3A1720003C02F2 /* Build configuration list for PBXProject "Memory" */;
compatibilityVersion = "Xcode 2.4";
developmentRegion = English;
Expand Down Expand Up @@ -1923,6 +1931,7 @@
3D5B967F175308D000F558AC /* ofxEasingBack.cpp in Sources */,
3D5B9680175308D000F558AC /* ofxEasingBounce.cpp in Sources */,
3D5B9681175308D000F558AC /* ofxEasingCirc.cpp in Sources */,
2A316F8A187F87F300662636 /* ofxSystemTextbox.mm in Sources */,
3D5B9682175308D000F558AC /* ofxEasingCubic.cpp in Sources */,
3D5B9683175308D000F558AC /* ofxEasingElastic.cpp in Sources */,
3D5B9684175308D000F558AC /* ofxEasingExpo.cpp in Sources */,
Expand Down Expand Up @@ -2118,6 +2127,7 @@
85F8B30C187266F7006960CB /* ControlTriggerFilter.cpp in Sources */,
85F8B30E187266F7006960CB /* ControlValue.cpp in Sources */,
85F8B310187266F7006960CB /* ControlXYSpeed.cpp in Sources */,
2A316F8B187F87F300662636 /* ofxSystemTextbox.mm in Sources */,
85F8B312187266F7006960CB /* DelayUtils.cpp in Sources */,
85F8B314187266F7006960CB /* DSPUtils.cpp in Sources */,
85F8B316187266F7006960CB /* Effect.cpp in Sources */,
Expand Down
8 changes: 0 additions & 8 deletions VSRipples/Ripples.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,6 @@
E4C2424810CC5A17004149E2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424510CC5A17004149E2 /* Cocoa.framework */; };
E4C2424910CC5A17004149E2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4C2424610CC5A17004149E2 /* IOKit.framework */; };
E4EB6799138ADC1D00A09F29 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BBAB23BE13894E4700AA2426 /* GLUT.framework */; };
E7302C2F187E085C0079C5B8 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7302C2E187E085C0079C5B8 /* ofxSystemTextbox.mm */; };
E7302C30187E085C0079C5B8 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7302C2E187E085C0079C5B8 /* ofxSystemTextbox.mm */; };
E761F4D81622CA3D00029E43 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E761F4D71622CA3D00029E43 /* Accelerate.framework */; };
E7846FBD1714899C00705E7A /* tinyxml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7846FB61714899C00705E7A /* tinyxml.cpp */; };
E7846FBE1714899C00705E7A /* tinyxmlerror.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7846FB81714899C00705E7A /* tinyxmlerror.cpp */; };
Expand Down Expand Up @@ -731,8 +729,6 @@
E4C2424610CC5A17004149E2 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
E4EB691F138AFCF100A09F29 /* CoreOF.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = CoreOF.xcconfig; path = ../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig; sourceTree = SOURCE_ROOT; };
E4EB6923138AFD0F00A09F29 /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; };
E7302C2D187E085C0079C5B8 /* ofxSystemTextbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxSystemTextbox.h; sourceTree = "<group>"; };
E7302C2E187E085C0079C5B8 /* ofxSystemTextbox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ofxSystemTextbox.mm; sourceTree = "<group>"; };
E761F4D71622CA3D00029E43 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = /System/Library/Frameworks/Accelerate.framework; sourceTree = "<absolute>"; };
E7846F411714887E00705E7A /* ofxUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxUI.h; sourceTree = "<group>"; };
E7846F421714887E00705E7A /* ofxUI2DPad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxUI2DPad.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -2047,8 +2043,6 @@
E7E5EC601817C01400CA4196 /* VisualSystemsLibrary */ = {
isa = PBXGroup;
children = (
E7302C2D187E085C0079C5B8 /* ofxSystemTextbox.h */,
E7302C2E187E085C0079C5B8 /* ofxSystemTextbox.mm */,
E7E5EC611817C01400CA4196 /* CloudsRGBDCamera.cpp */,
E7E5EC621817C01400CA4196 /* CloudsRGBDCamera.h */,
E7E5EC631817C01400CA4196 /* CloudsRGBDVideoPlayer.cpp */,
Expand Down Expand Up @@ -2491,7 +2485,6 @@
F302F5A2185584D500EE514A /* ofxOscMessage.cpp in Sources */,
F302F5A4185584D500EE514A /* ofxOscReceiver.cpp in Sources */,
F302F5A6185584D500EE514A /* ofxOscSender.cpp in Sources */,
E7302C30187E085C0079C5B8 /* ofxSystemTextbox.mm in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -2692,7 +2685,6 @@
2ACA6BE418725AC40029603B /* TableLookupOsc.cpp in Sources */,
2ACA6BA418725AC40029603B /* ControlParameter.cpp in Sources */,
1835BF481875E82B002B025D /* CloudsInputKinectOSC.cpp in Sources */,
E7302C2F187E085C0079C5B8 /* ofxSystemTextbox.mm in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
6 changes: 6 additions & 0 deletions VSVectorFlow/VectorFlow.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
2A316F90187F8D5900662636 /* ofxSystemTextbox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A316F8F187F8D5900662636 /* ofxSystemTextbox.mm */; };
2A566D6F186CF53600E7C982 /* ofxTonicSynth.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A566CF0186CF53600E7C982 /* ofxTonicSynth.cpp */; };
2A566D70186CF53600E7C982 /* ADSR.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A566CF3186CF53600E7C982 /* ADSR.cpp */; };
2A566D71186CF53600E7C982 /* Arithmetic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A566CF5186CF53600E7C982 /* Arithmetic.cpp */; };
Expand Down Expand Up @@ -239,6 +240,8 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
2A316F8E187F8D5900662636 /* ofxSystemTextbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxSystemTextbox.h; sourceTree = "<group>"; };
2A316F8F187F8D5900662636 /* ofxSystemTextbox.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ofxSystemTextbox.mm; sourceTree = "<group>"; };
2A566CEF186CF53600E7C982 /* ofxTonic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxTonic.h; sourceTree = "<group>"; };
2A566CF0186CF53600E7C982 /* ofxTonicSynth.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxTonicSynth.cpp; sourceTree = "<group>"; };
2A566CF1186CF53600E7C982 /* ofxTonicSynth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxTonicSynth.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1736,6 +1739,8 @@
E7E5EC601817C01400CA4196 /* VisualSystemsLibrary */ = {
isa = PBXGroup;
children = (
2A316F8E187F8D5900662636 /* ofxSystemTextbox.h */,
2A316F8F187F8D5900662636 /* ofxSystemTextbox.mm */,
E7E5EC611817C01400CA4196 /* CloudsRGBDCamera.cpp */,
E7E5EC621817C01400CA4196 /* CloudsRGBDCamera.h */,
E7E5EC631817C01400CA4196 /* CloudsRGBDVideoPlayer.cpp */,
Expand Down Expand Up @@ -1906,6 +1911,7 @@
E7D32FAE1751C626006706ED /* ofxSwarmBehavior.cpp in Sources */,
2A566D8A186CF53600E7C982 /* ControlRecorder.cpp in Sources */,
E7D32FAF1751C626006706ED /* ofxVerletSolver.cpp in Sources */,
2A316F90187F8D5900662636 /* ofxSystemTextbox.mm in Sources */,
E7D3302D1751C69E006706ED /* ofxCameraSaveLoad.cpp in Sources */,
E7CF783C1753FEA0006B7D41 /* kiss_fft.c in Sources */,
E7CF783D1753FEA0006B7D41 /* kiss_fftr.c in Sources */,
Expand Down

0 comments on commit b52363c

Please sign in to comment.