Skip to content

Commit

Permalink
i really tried porting Plateau...changing size sounds awful idk why
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewAday committed Mar 5, 2025
1 parent 6d3ed15 commit ac5877e
Show file tree
Hide file tree
Showing 55 changed files with 7,314 additions and 0 deletions.
18 changes: 18 additions & 0 deletions AZA/.vscode/c_cpp_properties.json
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
}
13 changes: 13 additions & 0 deletions AZA/.vscode/launch.json
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"
}
]
}
82 changes: 82 additions & 0 deletions AZA/.vscode/settings.json
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"
}
}
30 changes: 30 additions & 0 deletions AZA/AZA-test.ck
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`
//--------------------------------------------------------------------

// print
<<< "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;
Loading

0 comments on commit ac5877e

Please sign in to comment.