Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1 parasites #49

Open
wants to merge 6 commits into
base: 0.6-parasites
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/build
/dist
/plugin.dylib
/plugin.dll
/plugin.so
.DS_Store
.vscode/
16 changes: 2 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@

SLUG = Southpole-parasites
VERSION = 0.6.0

FLAGS += \
-DTEST -DPARASITES \
-DTEST \
-I./parasites \
-Wno-unused-local-typedefs

# SOURCES += $(wildcard src/*.cpp)
SOURCES += src/Southpole.cpp
SOURCES += parasites/stmlib/utils/random.cc
SOURCES += parasites/stmlib/dsp/units.cc
Expand All @@ -20,21 +16,13 @@ SOURCES += parasites/clouds/dsp/mu_law.cc
SOURCES += parasites/clouds/dsp/pvoc/frame_transformation.cc
SOURCES += parasites/clouds/dsp/pvoc/phase_vocoder.cc
SOURCES += parasites/clouds/dsp/pvoc/stft.cc
SOURCES += parasites/clouds/resources.cc
SOURCES += parasites/clouds/resources.cc

SOURCES += src/Splash.cpp
SOURCES += parasites/tides/generator.cc
SOURCES += parasites/tides/resources.cc

#SOURCES += src/Cestoda.cpp
#SOURCES += parasites/warps/dsp/modulator.cc
#SOURCES += parasites/warps/dsp/oscillator.cc
#SOURCES += parasites/warps/dsp/vocoder.cc
#SOURCES += parasites/warps/dsp/filter_bank.cc
#SOURCES += parasites/warps/resources.cc

DISTRIBUTABLES += $(wildcard LICENSE*) res

RACK_DIR ?= ../..
include $(RACK_DIR)/plugin.mk

36 changes: 36 additions & 0 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"slug": "Southpole-parasites",
"name": "Southpole Parasites",
"version": "1.0.0",
"license": "MIT",
"brand": "southpole",
"author": "gbrandt1",
"authorEmail": "",
"authorUrl": "",
"pluginUrl": "https://github.com/gbrandt1/southpole-vcvrack",
"manualUrl": "",
"sourceUrl": "https://github.com/gbrandt1/southpole-vcvrack",
"donateUrl": "",
"modules": [
{
"slug": "Smoke",
"name": "Smoke",
"description": "Texture synth",
"tags": [
"Granular",
"Reverb"
]
},
{
"slug": "Splash",
"name": "Splash",
"description": "Tidal modulator",
"tags": [
"LFO",
"VCO",
"Waveshaper",
"Function generator"
]
}
]
}
Loading