Skip to content

Commit

Permalink
stepped rec and pb
Browse files Browse the repository at this point in the history
  • Loading branch information
RickTaylor79 committed Nov 1, 2024
1 parent 38b2145 commit bec465d
Show file tree
Hide file tree
Showing 32 changed files with 489 additions and 889 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
/DspNetworks/Binaries
/OLD
/DspNetworks/Binaries
/DspNetworks/Binaries
20 changes: 0 additions & 20 deletions AdditionalSourceCode/nodes/Buff2_networkdata.h

This file was deleted.

381 changes: 0 additions & 381 deletions AdditionalSourceCode/nodes/buff.h

This file was deleted.

2 changes: 0 additions & 2 deletions AdditionalSourceCode/nodes/factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ struct Factory: public scriptnode::dll::StaticLibraryHostFactory
registerPolyNode<project::klp<1>, wrap::illegal_poly<project::klp<1>>>();
registerPolyNode<project::granular<1>, wrap::illegal_poly<project::granular<1>>>();
registerPolyNode<project::g<1>, wrap::illegal_poly<project::g<1>>>();
registerPolyNode<project::buff<1>, wrap::illegal_poly<project::buff<1>>>();
registerNode<project::CleanDelay>();
registerPolyNode<project::stored<1>, wrap::illegal_poly<project::stored<1>>>();
registerDataNode<project::Buff2_networkdata>();
}
};
}
Expand Down
2 changes: 0 additions & 2 deletions AdditionalSourceCode/nodes/includes.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

// Include compiled network files ------------------

#include "buff.h"
#include "Buff2_networkdata.h"
#include "CleanDelay.h"
#include "stored.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,6 @@ dependencies: \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/RevDel.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/../../ThirdParty/RevDel.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/../../ThirdParty/src/RevDel.cpp \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/buff.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/CleanDelay.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/Source/stored.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/JuceHeader.h \
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies: \
/Users/rick/Documents/GitHub/TapeTosser/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/include_hi_dsp_library_01.cpp \
/Users/rick/Documents/GitHub/TapeTosser/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/AppConfig.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/include_hi_dsp_library_01.cpp \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/AppConfig.h \
/Users/rick/Downloads/HISE-develop-2/hi_dsp_library/hi_dsp_library_01.cpp \
/Users/rick/Downloads/HISE-develop-2/hi_dsp_library/hi_dsp_library.h \
/Users/rick/Downloads/HISE-develop-2/hi_dsp_library/../hi_tools/hi_tools.h \
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies: \
/Users/rick/Documents/GitHub/TapeTosser/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/include_juce_gui_basics.mm \
/Users/rick/Documents/GitHub/TapeTosser/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/AppConfig.h \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/include_juce_gui_basics.mm \
/Users/rick/Documents/GitHub/Tezcatlipoca/Tezcatlipoca/DspNetworks/Binaries/JuceLibraryCode/AppConfig.h \
/Users/rick/Downloads/HISE-develop-2/JUCE/modules/juce_gui_basics/juce_gui_basics.mm \
/Users/rick/Downloads/HISE-develop-2/JUCE/modules/juce_gui_basics/juce_gui_basics.cpp \
/Users/rick/Downloads/HISE-develop-2/JUCE/modules/juce_gui_basics/juce_gui_basics.h \
Expand Down
Binary file not shown.
Binary file modified DspNetworks/Binaries/Builds/MacOSX/build/XCBuildData/build.db
Binary file not shown.
4 changes: 1 addition & 3 deletions DspNetworks/Binaries/Source/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ struct Factory: public scriptnode::dll::StaticLibraryHostFactory
registerPolyNode<project::klp<1>, wrap::illegal_poly<project::klp<1>>>();
registerPolyNode<project::granular<1>, wrap::illegal_poly<project::granular<1>>>();
registerPolyNode<project::g<1>, wrap::illegal_poly<project::g<1>>>();
registerPolyNode<project::buff<1>, wrap::illegal_poly<project::buff<1>>>();
registerNode<project::CleanDelay>();
registerPolyNode<project::stored<1>, wrap::illegal_poly<project::stored<1>>>();
}
Expand Down Expand Up @@ -75,9 +74,8 @@ DLL_EXPORT void initOpaqueNode(scriptnode::OpaqueNode* n, int index, bool polyIf
DLL_EXPORT int getHash(int index)
{
static const int thirdPartyOffset = 5;
static const int hashIndexes[3] =
static const int hashIndexes[2] =
{
2126521593,
913633681,
1873770219
};
Expand Down
1 change: 0 additions & 1 deletion DspNetworks/Binaries/Source/includes.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

// Include compiled network files ------------------

#include "buff.h"
#include "CleanDelay.h"
#include "stored.h"

Expand Down
Binary file modified DspNetworks/Binaries/dll/Tezcatlipoca.dylib
Binary file not shown.
Loading

0 comments on commit bec465d

Please sign in to comment.