├── .gitignore ├── .gitmodules ├── README.md ├── example.lua ├── example_midi.lua ├── lua ├── clock.lua ├── grid.lua ├── help.lua ├── isms.lua ├── midi.lua ├── sequins.lua └── tabutil.lua ├── polyperc.scd ├── src ├── clock.c ├── clock.h ├── clocks │ ├── clock_crow.c │ ├── clock_crow.h │ ├── clock_internal.c │ ├── clock_internal.h │ ├── clock_midi.c │ ├── clock_midi.h │ ├── clock_scheduler.c │ └── clock_scheduler.h ├── event.c ├── event.h ├── input.c ├── input.h ├── interface.c ├── interface.h ├── lua.c ├── lua.h ├── main.c ├── metro.c ├── metro.h ├── midi.c ├── midi.h ├── monome.c ├── monome.h ├── osc.c ├── osc.h ├── platform_clock.c ├── platform_clock.h ├── sdl.c ├── sdl.h ├── socket.c └── socket.h ├── test.lua ├── waf └── wscript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/README.md -------------------------------------------------------------------------------- /example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/example.lua -------------------------------------------------------------------------------- /example_midi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/example_midi.lua -------------------------------------------------------------------------------- /lua/clock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/clock.lua -------------------------------------------------------------------------------- /lua/grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/grid.lua -------------------------------------------------------------------------------- /lua/help.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/help.lua -------------------------------------------------------------------------------- /lua/isms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/isms.lua -------------------------------------------------------------------------------- /lua/midi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/midi.lua -------------------------------------------------------------------------------- /lua/sequins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/sequins.lua -------------------------------------------------------------------------------- /lua/tabutil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/lua/tabutil.lua -------------------------------------------------------------------------------- /polyperc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/polyperc.scd -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clock.h -------------------------------------------------------------------------------- /src/clocks/clock_crow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_crow.c -------------------------------------------------------------------------------- /src/clocks/clock_crow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_crow.h -------------------------------------------------------------------------------- /src/clocks/clock_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_internal.c -------------------------------------------------------------------------------- /src/clocks/clock_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_internal.h -------------------------------------------------------------------------------- /src/clocks/clock_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_midi.c -------------------------------------------------------------------------------- /src/clocks/clock_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_midi.h -------------------------------------------------------------------------------- /src/clocks/clock_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_scheduler.c -------------------------------------------------------------------------------- /src/clocks/clock_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/clocks/clock_scheduler.h -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/event.c -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/event.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/input.c -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/input.h -------------------------------------------------------------------------------- /src/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/interface.c -------------------------------------------------------------------------------- /src/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/interface.h -------------------------------------------------------------------------------- /src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/lua.c -------------------------------------------------------------------------------- /src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/lua.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/main.c -------------------------------------------------------------------------------- /src/metro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/metro.c -------------------------------------------------------------------------------- /src/metro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/metro.h -------------------------------------------------------------------------------- /src/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/midi.c -------------------------------------------------------------------------------- /src/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/midi.h -------------------------------------------------------------------------------- /src/monome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/monome.c -------------------------------------------------------------------------------- /src/monome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/monome.h -------------------------------------------------------------------------------- /src/osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/osc.c -------------------------------------------------------------------------------- /src/osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/osc.h -------------------------------------------------------------------------------- /src/platform_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/platform_clock.c -------------------------------------------------------------------------------- /src/platform_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/platform_clock.h -------------------------------------------------------------------------------- /src/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/sdl.c -------------------------------------------------------------------------------- /src/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/sdl.h -------------------------------------------------------------------------------- /src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/src/socket.c -------------------------------------------------------------------------------- /src/socket.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void init_socket(int); 4 | -------------------------------------------------------------------------------- /test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/test.lua -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/waf -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehn/isms/HEAD/wscript --------------------------------------------------------------------------------