This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Added list of supported objects #3
Open
CarloCattano
wants to merge
8
commits into
enzienaudio:master
Choose a base branch
from
CarloCattano:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
80bb8d5
added supported objects list
CarloCattano 160065b
added supported objects list
CarloCattano 3803508
added supported objects list
CarloCattano 9236d66
added supported objects list
CarloCattano 3d17d60
fix text format
CarloCattano ab0d794
fix text format
CarloCattano c68a929
fix text format
CarloCattano 1c74652
added path info
CarloCattano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
## Supported vanilla objects | ||
|
||
### Message Objects | ||
``` | ||
!= | ||
% | ||
& | ||
&& | ||
* | ||
+ | ||
- | ||
/ | ||
< | ||
<< | ||
<= | ||
== | ||
> | ||
>= | ||
>> | ||
abs | ||
atan | ||
atan2 | ||
b | ||
bang | ||
bendin | ||
bendout | ||
bng | ||
change | ||
clip | ||
cnv | ||
cos | ||
ctlin | ||
ctlout | ||
dbtopow | ||
dbtorms | ||
declare | ||
del | ||
delay | ||
div | ||
exp | ||
f | ||
float | ||
floatatom | ||
ftom | ||
hradio | ||
hsl | ||
i | ||
inlet | ||
int | ||
line | ||
loadbang | ||
log | ||
makenote | ||
max | ||
metro | ||
min | ||
mod | ||
moses | ||
mtof | ||
nbx | ||
notein | ||
noteout | ||
outlet | ||
pack | ||
pgmin | ||
pgmout | ||
pipe | ||
poly | ||
pow | ||
powtodb | ||
r | ||
random | ||
receive | ||
rmstodb | ||
route | ||
s | ||
sel | ||
select | ||
send | ||
sin | ||
spigot | ||
sqrt | ||
swap | ||
symbol | ||
symbolatom | ||
t | ||
table | ||
tabread | ||
tabwrite | ||
tan | ||
tgl | ||
timer | ||
touchin | ||
touchout | ||
trigger | ||
unpack | ||
until | ||
vradio | ||
vsl | ||
wrap | ||
``` | ||
|
||
### Signal Objects | ||
``` | ||
*~ | ||
+~ | ||
-~ | ||
/~ | ||
abs~ | ||
adc~ | ||
biquad~ | ||
bp~ | ||
catch~ | ||
clip~ | ||
cos~ | ||
cpole~ | ||
czero_rev~ | ||
czero~ | ||
dac~ | ||
dbtopow~ | ||
dbtorms~ | ||
delread~ | ||
delwrite~ | ||
env~ | ||
exp~ | ||
ftom~ | ||
hip~ | ||
inlet~ | ||
line~ | ||
lop~ | ||
max~ | ||
min~ | ||
mtof~ | ||
noise~ | ||
osc~ | ||
outlet~ | ||
phasor~ | ||
powtodb~ | ||
pow~ | ||
q8_rsqrt~ | ||
q8_sqrt~ | ||
receive~ | ||
rmstodb~ | ||
rpole~ | ||
rsqrt~ | ||
rzero_rev~ | ||
rzero~ | ||
r~ | ||
samphold~ | ||
samplerate~ | ||
send~ | ||
sig~ | ||
snapshot~ | ||
sqrt~ | ||
s~ | ||
tabosc4~ | ||
tabread4~ | ||
tabread~ | ||
tabwrite~ | ||
throw~ | ||
vcf~ | ||
vd~ | ||
wrap~ | ||
``` | ||
#### `-p` Search Paths | ||
|
||
`hvcc` will iterate through various directories when resolving patch objects and abstractions. The `-p` or `--search_paths` argument can be used to add additional folders for `hvcc` to look in. | ||
|
||
This can be handy when using a third-party patch library for example https://github.com/enzienaudio/heavylib. | ||
|
||
`$ python2.7 hvcc.py ~/myProject/_main.pd -o ~/Desktop/somewhere/else/ -n mySynth -p "[~/Workspace/Projects/Enzien/heavylib/, ~/Desktop/myLib/]"` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great list to add, thank you. I'd remove this section though. Don't use a
-p
flag, use a[declare -path]
object in your patch instead. The-p
flag isn't implemented properly and we never used it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right. I was just assuming that this solution works , but didn't have the time to test it yet
https://github.com/giuliomoro/hvcc/commit/50329d8ed4b35573be02fdf563c99c4815d5bf22