-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i really tried porting Plateau...changing size sounds awful idk why
- Loading branch information
1 parent
6d3ed15
commit ac5877e
Showing
55 changed files
with
7,314 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "macos-clang-arm64", | ||
"includePath": [ | ||
"${workspaceFolder}/**" | ||
], | ||
"compilerPath": "/usr/bin/clang", | ||
"cStandard": "${default}", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "macos-clang-arm64", | ||
"compilerArgs": [ | ||
"" | ||
] | ||
} | ||
], | ||
"version": 4 | ||
} |
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,13 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "C/C++ Runner: Debug Session", | ||
"type": "lldb", | ||
"request": "launch", | ||
"args": [], | ||
"cwd": "/Users/Andrew/Google-Drive/Stanford/chugins/AZA", | ||
"program": "/Users/Andrew/Google-Drive/Stanford/chugins/AZA/build/Debug/outDebug" | ||
} | ||
] | ||
} |
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,82 @@ | ||
{ | ||
"C_Cpp_Runner.cCompilerPath": "clang", | ||
"C_Cpp_Runner.cppCompilerPath": "clang++", | ||
"C_Cpp_Runner.debuggerPath": "lldb", | ||
"C_Cpp_Runner.cStandard": "", | ||
"C_Cpp_Runner.cppStandard": "c++17", | ||
"C_Cpp_Runner.msvcBatchPath": "", | ||
"C_Cpp_Runner.useMsvc": false, | ||
"C_Cpp_Runner.warnings": [ | ||
"-Wall", | ||
"-Wextra", | ||
"-Wpedantic", | ||
"-Wshadow", | ||
"-Wformat=2", | ||
"-Wcast-align", | ||
"-Wconversion", | ||
"-Wsign-conversion", | ||
"-Wnull-dereference" | ||
], | ||
"C_Cpp_Runner.msvcWarnings": [ | ||
"/W4", | ||
"/permissive-", | ||
"/w14242", | ||
"/w14287", | ||
"/w14296", | ||
"/w14311", | ||
"/w14826", | ||
"/w44062", | ||
"/w44242", | ||
"/w14905", | ||
"/w14906", | ||
"/w14263", | ||
"/w44265", | ||
"/w14928" | ||
], | ||
"C_Cpp_Runner.enableWarnings": true, | ||
"C_Cpp_Runner.warningsAsError": false, | ||
"C_Cpp_Runner.compilerArgs": [], | ||
"C_Cpp_Runner.linkerArgs": [], | ||
"C_Cpp_Runner.includePaths": [], | ||
"C_Cpp_Runner.includeSearch": ["*", "**/*"], | ||
"C_Cpp_Runner.excludeSearch": [ | ||
"**/build", | ||
"**/build/**", | ||
"**/.*", | ||
"**/.*/**", | ||
"**/.vscode/**" | ||
], | ||
"C_Cpp_Runner.useAddressSanitizer": true, | ||
"C_Cpp_Runner.useUndefinedSanitizer": false, | ||
"C_Cpp_Runner.useLeakSanitizer": false, | ||
"C_Cpp_Runner.showCompilationTime": false, | ||
"C_Cpp_Runner.useLinkTimeOptimization": false, | ||
"C_Cpp_Runner.msvcSecureNoWarnings": false, | ||
"files.associations": { | ||
"cstdio": "cpp", | ||
"typeinfo": "cpp", | ||
"__bit_reference": "cpp", | ||
"__node_handle": "cpp", | ||
"bitset": "cpp", | ||
"chrono": "cpp", | ||
"__memory": "cpp", | ||
"limits": "cpp", | ||
"optional": "cpp", | ||
"random": "cpp", | ||
"ratio": "cpp", | ||
"system_error": "cpp", | ||
"tuple": "cpp", | ||
"type_traits": "cpp", | ||
"vector": "cpp", | ||
"__locale": "cpp", | ||
"__hash_table": "cpp", | ||
"__split_buffer": "cpp", | ||
"__tree": "cpp", | ||
"array": "cpp", | ||
"initializer_list": "cpp", | ||
"map": "cpp", | ||
"string": "cpp", | ||
"string_view": "cpp", | ||
"unordered_map": "cpp" | ||
} | ||
} |
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,30 @@ | ||
//-------------------------------------------------------------------- | ||
// This is a boilerplate ChucK program generated by chuginate, | ||
// to help you test your new chugin, ChuGin Developer! | ||
//-------------------------------------------------------------------- | ||
// 1) try running this program after building your chugin | ||
// (the bulid process should yield a AZA.chug file) | ||
// | ||
// 2) you can manullay load the chugin when you run this program | ||
// `chuck --chugin:AZA.chug AZA-test.ck` | ||
// | ||
// 3) OR you can put the chugin into your chugins search path | ||
// NOTE: not recommended until you feel the chugin to be | ||
// reasonably stable, as chugins in your chugins search paths | ||
// will automatically load every time you run `chuck` or | ||
// start the VM in miniAudicle... | ||
// | ||
// Want to see more information? Add the --verbose:3 (-v3) flag: | ||
// `chuck --chugin:AZA.chug AZA-test.ck -v3` | ||
//-------------------------------------------------------------------- | ||
|
||
<<< "dac has", dac.channels(), "channels" >>>; | ||
|
||
Noise n => Plateau plateau => dac; | ||
// Noise n1 => plateau.chan(1); | ||
|
||
<<< "plateau has", plateau.channels(), "channels" >>>; | ||
<<< "noise has", n.channels(), "channels" >>>; | ||
|
||
10::samp => now; |
Oops, something went wrong.