├── LICENSE ├── Makefile ├── README.md ├── add.c ├── add.h ├── audio.c ├── audio.h ├── chooser.c ├── drone.sp ├── glitch.c ├── glitch.h ├── graphics.c ├── graphics.h ├── lib ├── chuck │ ├── RtAudio │ │ ├── RtAudio.cpp │ │ ├── RtAudio.h │ │ ├── RtError.h │ │ └── original │ │ │ ├── RtAudio.cpp │ │ │ ├── RtAudio.h │ │ │ └── RtError.h │ ├── chuck.lex │ ├── chuck.y │ ├── chuck_absyn.cpp │ ├── chuck_absyn.h │ ├── chuck_bbq.cpp │ ├── chuck_bbq.h │ ├── chuck_compile.cpp │ ├── chuck_compile.h │ ├── chuck_console.cpp │ ├── chuck_console.h │ ├── chuck_def.h │ ├── chuck_dl.cpp │ ├── chuck_dl.h │ ├── chuck_emit.cpp │ ├── chuck_emit.h │ ├── chuck_errmsg.cpp │ ├── chuck_errmsg.h │ ├── chuck_frame.cpp │ ├── chuck_frame.h │ ├── chuck_globals.cpp │ ├── chuck_globals.h │ ├── chuck_instr.cpp │ ├── chuck_instr.h │ ├── chuck_io.cpp │ ├── chuck_io.h │ ├── chuck_lang.cpp │ ├── chuck_lang.h │ ├── chuck_main.cpp │ ├── chuck_oo.cpp │ ├── chuck_oo.h │ ├── chuck_otf.cpp │ ├── chuck_otf.h │ ├── chuck_parse.cpp │ ├── chuck_parse.h │ ├── chuck_scan.cpp │ ├── chuck_scan.h │ ├── chuck_shell.cpp │ ├── chuck_shell.h │ ├── chuck_stats.cpp │ ├── chuck_stats.h │ ├── chuck_symbol.cpp │ ├── chuck_symbol.h │ ├── chuck_system.cpp │ ├── chuck_system.h │ ├── chuck_table.cpp │ ├── chuck_table.h │ ├── chuck_type.cpp │ ├── chuck_type.h │ ├── chuck_ugen.cpp │ ├── chuck_ugen.h │ ├── chuck_utils.cpp │ ├── chuck_utils.h │ ├── chuck_vm.cpp │ ├── chuck_vm.h │ ├── digiio_rtaudio.cpp │ ├── digiio_rtaudio.h │ ├── hidio_sdl.cpp │ ├── hidio_sdl.h │ ├── lo │ │ ├── address.c │ │ ├── blob.c │ │ ├── bundle.c │ │ ├── config.h │ │ ├── lo.h │ │ ├── lo_endian.h │ │ ├── lo_errors.h │ │ ├── lo_internal.h │ │ ├── lo_lowlevel.h │ │ ├── lo_macros.h │ │ ├── lo_osc_types.h │ │ ├── lo_throw.h │ │ ├── lo_types.h │ │ ├── lo_types_internal.h │ │ ├── message.c │ │ ├── method.c │ │ ├── pattern_match.c │ │ ├── send.c │ │ ├── server.c │ │ ├── server_thread.c │ │ └── timetag.c │ ├── makefile │ ├── makefile.alsa │ ├── makefile.audicle │ ├── makefile.jack │ ├── makefile.osx │ ├── makefile.pulse │ ├── makefile.rl │ ├── makefile.skot │ ├── makefile.test │ ├── makefile.vicon │ ├── midiio_rtmidi.cpp │ ├── midiio_rtmidi.h │ ├── momu │ │ ├── mo_audio.h │ │ ├── mo_audio.mm │ │ └── mo_def.h │ ├── regex │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── config.h │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regex.h │ │ ├── regexec.c │ │ ├── tre-ast.c │ │ ├── tre-ast.h │ │ ├── tre-compile.c │ │ ├── tre-compile.h │ │ ├── tre-config.h │ │ ├── tre-filter.c │ │ ├── tre-filter.h │ │ ├── tre-internal.h │ │ ├── tre-match-approx.c │ │ ├── tre-match-backtrack.c │ │ ├── tre-match-parallel.c │ │ ├── tre-match-utils.h │ │ ├── tre-mem.c │ │ ├── tre-mem.h │ │ ├── tre-parse.c │ │ ├── tre-parse.h │ │ ├── tre-stack.c │ │ ├── tre-stack.h │ │ ├── tre.h │ │ ├── xmalloc.c │ │ └── xmalloc.h │ ├── rtmidi.cpp │ ├── rtmidi.h │ ├── todo.txt │ ├── uana_extract.cpp │ ├── uana_extract.h │ ├── uana_xform.cpp │ ├── uana_xform.h │ ├── ugen_filter.cpp │ ├── ugen_filter.h │ ├── ugen_osc.cpp │ ├── ugen_osc.h │ ├── ugen_stk.cpp │ ├── ugen_stk.h │ ├── ugen_xxx.cpp │ ├── ugen_xxx.h │ ├── ulib_machine.cpp │ ├── ulib_machine.h │ ├── ulib_math.cpp │ ├── ulib_math.h │ ├── ulib_opsc.cpp │ ├── ulib_opsc.h │ ├── ulib_regex.cpp │ ├── ulib_regex.h │ ├── ulib_std.cpp │ ├── ulib_std.h │ ├── util_buffers.cpp │ ├── util_buffers.h │ ├── util_console.cpp │ ├── util_console.h │ ├── util_hid.cpp │ ├── util_hid.h │ ├── util_math.c │ ├── util_math.h │ ├── util_network.c │ ├── util_network.h │ ├── util_opsc.cpp │ ├── util_opsc.h │ ├── util_raw.c │ ├── util_raw.h │ ├── util_serial.cpp │ ├── util_serial.h │ ├── util_sndfile.c │ ├── util_sndfile.h │ ├── util_string.cpp │ ├── util_string.h │ ├── util_thread.cpp │ ├── util_thread.h │ ├── util_xforms.c │ └── util_xforms.h ├── libchuck │ ├── chuckwrap.cpp │ ├── chuckwrap.h │ └── chuckwrap.hpp ├── lua │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── nanovg │ ├── fontstash.h │ ├── nanovg.c │ ├── nanovg.h │ ├── nanovg_gl.h │ ├── nanovg_gl_utils.h │ ├── stb_image.h │ └── stb_truetype.h └── patchwerk │ ├── patchwerk.c │ └── patchwerk.h ├── main.c ├── orch.wav ├── pwsporth.c ├── pwsporth.h ├── reg.c ├── reg.h ├── run.ck ├── run.lua ├── shot.png ├── wavout.c ├── wavout.h └── world.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/README.md -------------------------------------------------------------------------------- /add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/add.c -------------------------------------------------------------------------------- /add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/add.h -------------------------------------------------------------------------------- /audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/audio.c -------------------------------------------------------------------------------- /audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/audio.h -------------------------------------------------------------------------------- /chooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/chooser.c -------------------------------------------------------------------------------- /drone.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/drone.sp -------------------------------------------------------------------------------- /glitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/glitch.c -------------------------------------------------------------------------------- /glitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/glitch.h -------------------------------------------------------------------------------- /graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/graphics.c -------------------------------------------------------------------------------- /graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/graphics.h -------------------------------------------------------------------------------- /lib/chuck/RtAudio/RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/RtAudio.cpp -------------------------------------------------------------------------------- /lib/chuck/RtAudio/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/RtAudio.h -------------------------------------------------------------------------------- /lib/chuck/RtAudio/RtError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/RtError.h -------------------------------------------------------------------------------- /lib/chuck/RtAudio/original/RtAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/original/RtAudio.cpp -------------------------------------------------------------------------------- /lib/chuck/RtAudio/original/RtAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/original/RtAudio.h -------------------------------------------------------------------------------- /lib/chuck/RtAudio/original/RtError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/RtAudio/original/RtError.h -------------------------------------------------------------------------------- /lib/chuck/chuck.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck.lex -------------------------------------------------------------------------------- /lib/chuck/chuck.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck.y -------------------------------------------------------------------------------- /lib/chuck/chuck_absyn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_absyn.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_absyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_absyn.h -------------------------------------------------------------------------------- /lib/chuck/chuck_bbq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_bbq.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_bbq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_bbq.h -------------------------------------------------------------------------------- /lib/chuck/chuck_compile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_compile.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_compile.h -------------------------------------------------------------------------------- /lib/chuck/chuck_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_console.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_console.h -------------------------------------------------------------------------------- /lib/chuck/chuck_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_def.h -------------------------------------------------------------------------------- /lib/chuck/chuck_dl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_dl.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_dl.h -------------------------------------------------------------------------------- /lib/chuck/chuck_emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_emit.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_emit.h -------------------------------------------------------------------------------- /lib/chuck/chuck_errmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_errmsg.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_errmsg.h -------------------------------------------------------------------------------- /lib/chuck/chuck_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_frame.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_frame.h -------------------------------------------------------------------------------- /lib/chuck/chuck_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_globals.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_globals.h -------------------------------------------------------------------------------- /lib/chuck/chuck_instr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_instr.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_instr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_instr.h -------------------------------------------------------------------------------- /lib/chuck/chuck_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_io.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_io.h -------------------------------------------------------------------------------- /lib/chuck/chuck_lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_lang.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_lang.h -------------------------------------------------------------------------------- /lib/chuck/chuck_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_main.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_oo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_oo.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_oo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_oo.h -------------------------------------------------------------------------------- /lib/chuck/chuck_otf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_otf.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_otf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_otf.h -------------------------------------------------------------------------------- /lib/chuck/chuck_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_parse.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_parse.h -------------------------------------------------------------------------------- /lib/chuck/chuck_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_scan.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_scan.h -------------------------------------------------------------------------------- /lib/chuck/chuck_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_shell.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_shell.h -------------------------------------------------------------------------------- /lib/chuck/chuck_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_stats.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_stats.h -------------------------------------------------------------------------------- /lib/chuck/chuck_symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_symbol.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_symbol.h -------------------------------------------------------------------------------- /lib/chuck/chuck_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_system.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_system.h -------------------------------------------------------------------------------- /lib/chuck/chuck_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_table.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_table.h -------------------------------------------------------------------------------- /lib/chuck/chuck_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_type.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_type.h -------------------------------------------------------------------------------- /lib/chuck/chuck_ugen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_ugen.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_ugen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_ugen.h -------------------------------------------------------------------------------- /lib/chuck/chuck_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_utils.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_utils.h -------------------------------------------------------------------------------- /lib/chuck/chuck_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_vm.cpp -------------------------------------------------------------------------------- /lib/chuck/chuck_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/chuck_vm.h -------------------------------------------------------------------------------- /lib/chuck/digiio_rtaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/digiio_rtaudio.cpp -------------------------------------------------------------------------------- /lib/chuck/digiio_rtaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/digiio_rtaudio.h -------------------------------------------------------------------------------- /lib/chuck/hidio_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/hidio_sdl.cpp -------------------------------------------------------------------------------- /lib/chuck/hidio_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/hidio_sdl.h -------------------------------------------------------------------------------- /lib/chuck/lo/address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/address.c -------------------------------------------------------------------------------- /lib/chuck/lo/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/blob.c -------------------------------------------------------------------------------- /lib/chuck/lo/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/bundle.c -------------------------------------------------------------------------------- /lib/chuck/lo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/config.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_endian.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_errors.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_internal.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_lowlevel.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_macros.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_osc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_osc_types.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_throw.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_types.h -------------------------------------------------------------------------------- /lib/chuck/lo/lo_types_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/lo_types_internal.h -------------------------------------------------------------------------------- /lib/chuck/lo/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/message.c -------------------------------------------------------------------------------- /lib/chuck/lo/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/method.c -------------------------------------------------------------------------------- /lib/chuck/lo/pattern_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/pattern_match.c -------------------------------------------------------------------------------- /lib/chuck/lo/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/send.c -------------------------------------------------------------------------------- /lib/chuck/lo/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/server.c -------------------------------------------------------------------------------- /lib/chuck/lo/server_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/server_thread.c -------------------------------------------------------------------------------- /lib/chuck/lo/timetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/lo/timetag.c -------------------------------------------------------------------------------- /lib/chuck/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile -------------------------------------------------------------------------------- /lib/chuck/makefile.alsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.alsa -------------------------------------------------------------------------------- /lib/chuck/makefile.audicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.audicle -------------------------------------------------------------------------------- /lib/chuck/makefile.jack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.jack -------------------------------------------------------------------------------- /lib/chuck/makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.osx -------------------------------------------------------------------------------- /lib/chuck/makefile.pulse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.pulse -------------------------------------------------------------------------------- /lib/chuck/makefile.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.rl -------------------------------------------------------------------------------- /lib/chuck/makefile.skot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.skot -------------------------------------------------------------------------------- /lib/chuck/makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.test -------------------------------------------------------------------------------- /lib/chuck/makefile.vicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/makefile.vicon -------------------------------------------------------------------------------- /lib/chuck/midiio_rtmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/midiio_rtmidi.cpp -------------------------------------------------------------------------------- /lib/chuck/midiio_rtmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/midiio_rtmidi.h -------------------------------------------------------------------------------- /lib/chuck/momu/mo_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/momu/mo_audio.h -------------------------------------------------------------------------------- /lib/chuck/momu/mo_audio.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/momu/mo_audio.mm -------------------------------------------------------------------------------- /lib/chuck/momu/mo_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/momu/mo_def.h -------------------------------------------------------------------------------- /lib/chuck/regex/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/LICENSE.txt -------------------------------------------------------------------------------- /lib/chuck/regex/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/README.txt -------------------------------------------------------------------------------- /lib/chuck/regex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/config.h -------------------------------------------------------------------------------- /lib/chuck/regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/regcomp.c -------------------------------------------------------------------------------- /lib/chuck/regex/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/regerror.c -------------------------------------------------------------------------------- /lib/chuck/regex/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/regex.h -------------------------------------------------------------------------------- /lib/chuck/regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/regexec.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-ast.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-ast.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-compile.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-compile.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-config.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-filter.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-filter.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-internal.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-match-approx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-match-approx.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-match-backtrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-match-backtrack.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-match-parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-match-parallel.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-match-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-match-utils.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-mem.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-mem.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-parse.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-parse.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre-stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-stack.c -------------------------------------------------------------------------------- /lib/chuck/regex/tre-stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre-stack.h -------------------------------------------------------------------------------- /lib/chuck/regex/tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/tre.h -------------------------------------------------------------------------------- /lib/chuck/regex/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/xmalloc.c -------------------------------------------------------------------------------- /lib/chuck/regex/xmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/regex/xmalloc.h -------------------------------------------------------------------------------- /lib/chuck/rtmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/rtmidi.cpp -------------------------------------------------------------------------------- /lib/chuck/rtmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/rtmidi.h -------------------------------------------------------------------------------- /lib/chuck/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/todo.txt -------------------------------------------------------------------------------- /lib/chuck/uana_extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/uana_extract.cpp -------------------------------------------------------------------------------- /lib/chuck/uana_extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/uana_extract.h -------------------------------------------------------------------------------- /lib/chuck/uana_xform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/uana_xform.cpp -------------------------------------------------------------------------------- /lib/chuck/uana_xform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/uana_xform.h -------------------------------------------------------------------------------- /lib/chuck/ugen_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_filter.cpp -------------------------------------------------------------------------------- /lib/chuck/ugen_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_filter.h -------------------------------------------------------------------------------- /lib/chuck/ugen_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_osc.cpp -------------------------------------------------------------------------------- /lib/chuck/ugen_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_osc.h -------------------------------------------------------------------------------- /lib/chuck/ugen_stk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_stk.cpp -------------------------------------------------------------------------------- /lib/chuck/ugen_stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_stk.h -------------------------------------------------------------------------------- /lib/chuck/ugen_xxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_xxx.cpp -------------------------------------------------------------------------------- /lib/chuck/ugen_xxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ugen_xxx.h -------------------------------------------------------------------------------- /lib/chuck/ulib_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_machine.cpp -------------------------------------------------------------------------------- /lib/chuck/ulib_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_machine.h -------------------------------------------------------------------------------- /lib/chuck/ulib_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_math.cpp -------------------------------------------------------------------------------- /lib/chuck/ulib_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_math.h -------------------------------------------------------------------------------- /lib/chuck/ulib_opsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_opsc.cpp -------------------------------------------------------------------------------- /lib/chuck/ulib_opsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_opsc.h -------------------------------------------------------------------------------- /lib/chuck/ulib_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_regex.cpp -------------------------------------------------------------------------------- /lib/chuck/ulib_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_regex.h -------------------------------------------------------------------------------- /lib/chuck/ulib_std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_std.cpp -------------------------------------------------------------------------------- /lib/chuck/ulib_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/ulib_std.h -------------------------------------------------------------------------------- /lib/chuck/util_buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_buffers.cpp -------------------------------------------------------------------------------- /lib/chuck/util_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_buffers.h -------------------------------------------------------------------------------- /lib/chuck/util_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_console.cpp -------------------------------------------------------------------------------- /lib/chuck/util_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_console.h -------------------------------------------------------------------------------- /lib/chuck/util_hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_hid.cpp -------------------------------------------------------------------------------- /lib/chuck/util_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_hid.h -------------------------------------------------------------------------------- /lib/chuck/util_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_math.c -------------------------------------------------------------------------------- /lib/chuck/util_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_math.h -------------------------------------------------------------------------------- /lib/chuck/util_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_network.c -------------------------------------------------------------------------------- /lib/chuck/util_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_network.h -------------------------------------------------------------------------------- /lib/chuck/util_opsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_opsc.cpp -------------------------------------------------------------------------------- /lib/chuck/util_opsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_opsc.h -------------------------------------------------------------------------------- /lib/chuck/util_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_raw.c -------------------------------------------------------------------------------- /lib/chuck/util_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_raw.h -------------------------------------------------------------------------------- /lib/chuck/util_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_serial.cpp -------------------------------------------------------------------------------- /lib/chuck/util_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_serial.h -------------------------------------------------------------------------------- /lib/chuck/util_sndfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_sndfile.c -------------------------------------------------------------------------------- /lib/chuck/util_sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_sndfile.h -------------------------------------------------------------------------------- /lib/chuck/util_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_string.cpp -------------------------------------------------------------------------------- /lib/chuck/util_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_string.h -------------------------------------------------------------------------------- /lib/chuck/util_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_thread.cpp -------------------------------------------------------------------------------- /lib/chuck/util_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_thread.h -------------------------------------------------------------------------------- /lib/chuck/util_xforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_xforms.c -------------------------------------------------------------------------------- /lib/chuck/util_xforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/chuck/util_xforms.h -------------------------------------------------------------------------------- /lib/libchuck/chuckwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/libchuck/chuckwrap.cpp -------------------------------------------------------------------------------- /lib/libchuck/chuckwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/libchuck/chuckwrap.h -------------------------------------------------------------------------------- /lib/libchuck/chuckwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/libchuck/chuckwrap.hpp -------------------------------------------------------------------------------- /lib/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lapi.c -------------------------------------------------------------------------------- /lib/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lapi.h -------------------------------------------------------------------------------- /lib/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lauxlib.c -------------------------------------------------------------------------------- /lib/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lauxlib.h -------------------------------------------------------------------------------- /lib/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lbaselib.c -------------------------------------------------------------------------------- /lib/lua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lbitlib.c -------------------------------------------------------------------------------- /lib/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lcode.c -------------------------------------------------------------------------------- /lib/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lcode.h -------------------------------------------------------------------------------- /lib/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lcorolib.c -------------------------------------------------------------------------------- /lib/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lctype.c -------------------------------------------------------------------------------- /lib/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lctype.h -------------------------------------------------------------------------------- /lib/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldblib.c -------------------------------------------------------------------------------- /lib/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldebug.c -------------------------------------------------------------------------------- /lib/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldebug.h -------------------------------------------------------------------------------- /lib/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldo.c -------------------------------------------------------------------------------- /lib/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldo.h -------------------------------------------------------------------------------- /lib/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ldump.c -------------------------------------------------------------------------------- /lib/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lfunc.c -------------------------------------------------------------------------------- /lib/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lfunc.h -------------------------------------------------------------------------------- /lib/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lgc.c -------------------------------------------------------------------------------- /lib/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lgc.h -------------------------------------------------------------------------------- /lib/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/linit.c -------------------------------------------------------------------------------- /lib/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/liolib.c -------------------------------------------------------------------------------- /lib/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/llex.c -------------------------------------------------------------------------------- /lib/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/llex.h -------------------------------------------------------------------------------- /lib/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/llimits.h -------------------------------------------------------------------------------- /lib/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lmathlib.c -------------------------------------------------------------------------------- /lib/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lmem.c -------------------------------------------------------------------------------- /lib/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lmem.h -------------------------------------------------------------------------------- /lib/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/loadlib.c -------------------------------------------------------------------------------- /lib/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lobject.c -------------------------------------------------------------------------------- /lib/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lobject.h -------------------------------------------------------------------------------- /lib/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lopcodes.c -------------------------------------------------------------------------------- /lib/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lopcodes.h -------------------------------------------------------------------------------- /lib/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/loslib.c -------------------------------------------------------------------------------- /lib/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lparser.c -------------------------------------------------------------------------------- /lib/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lparser.h -------------------------------------------------------------------------------- /lib/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lprefix.h -------------------------------------------------------------------------------- /lib/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lstate.c -------------------------------------------------------------------------------- /lib/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lstate.h -------------------------------------------------------------------------------- /lib/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lstring.c -------------------------------------------------------------------------------- /lib/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lstring.h -------------------------------------------------------------------------------- /lib/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lstrlib.c -------------------------------------------------------------------------------- /lib/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ltable.c -------------------------------------------------------------------------------- /lib/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ltable.h -------------------------------------------------------------------------------- /lib/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ltablib.c -------------------------------------------------------------------------------- /lib/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ltm.c -------------------------------------------------------------------------------- /lib/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/ltm.h -------------------------------------------------------------------------------- /lib/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lua.c -------------------------------------------------------------------------------- /lib/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lua.h -------------------------------------------------------------------------------- /lib/lua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/luac.c -------------------------------------------------------------------------------- /lib/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/luaconf.h -------------------------------------------------------------------------------- /lib/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lualib.h -------------------------------------------------------------------------------- /lib/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lundump.c -------------------------------------------------------------------------------- /lib/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lundump.h -------------------------------------------------------------------------------- /lib/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lutf8lib.c -------------------------------------------------------------------------------- /lib/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lvm.c -------------------------------------------------------------------------------- /lib/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lvm.h -------------------------------------------------------------------------------- /lib/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lzio.c -------------------------------------------------------------------------------- /lib/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/lua/lzio.h -------------------------------------------------------------------------------- /lib/nanovg/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/fontstash.h -------------------------------------------------------------------------------- /lib/nanovg/nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/nanovg.c -------------------------------------------------------------------------------- /lib/nanovg/nanovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/nanovg.h -------------------------------------------------------------------------------- /lib/nanovg/nanovg_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/nanovg_gl.h -------------------------------------------------------------------------------- /lib/nanovg/nanovg_gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/nanovg_gl_utils.h -------------------------------------------------------------------------------- /lib/nanovg/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/stb_image.h -------------------------------------------------------------------------------- /lib/nanovg/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/nanovg/stb_truetype.h -------------------------------------------------------------------------------- /lib/patchwerk/patchwerk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/patchwerk/patchwerk.c -------------------------------------------------------------------------------- /lib/patchwerk/patchwerk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/lib/patchwerk/patchwerk.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/main.c -------------------------------------------------------------------------------- /orch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/orch.wav -------------------------------------------------------------------------------- /pwsporth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/pwsporth.c -------------------------------------------------------------------------------- /pwsporth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/pwsporth.h -------------------------------------------------------------------------------- /reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/reg.c -------------------------------------------------------------------------------- /reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/reg.h -------------------------------------------------------------------------------- /run.ck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/run.ck -------------------------------------------------------------------------------- /run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/run.lua -------------------------------------------------------------------------------- /shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/shot.png -------------------------------------------------------------------------------- /wavout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/wavout.c -------------------------------------------------------------------------------- /wavout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/wavout.h -------------------------------------------------------------------------------- /world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulBatchelor/tiziku/HEAD/world.h --------------------------------------------------------------------------------