feat: add project save/load with .wheel files and auto-save thread

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-02 22:53:59 +00:00
parent bee7f6d22b
commit 1487619cc2
7 changed files with 778 additions and 11 deletions

View File

@@ -4,22 +4,22 @@ LDFLAGS = -ljack -lm -lncurses -lpthread
all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o
jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o carla.o
test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o
test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o carla.o
test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o carla.o
test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o
test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o fs.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_wav_io: test_wav_io.o wav_io.o
@@ -52,7 +52,10 @@ transport.o: transport.c transport.h
carla.o: carla.c carla.h
$(CC) $(CFLAGS) -c -o $@ $<
dispatcher.o: dispatcher.c dispatcher.h carla.h
dispatcher.o: dispatcher.c dispatcher.h carla.h fs.h
$(CC) $(CFLAGS) -c -o $@ $<
fs.o: fs.c fs.h dispatcher.h wav_io.h
$(CC) $(CFLAGS) -c -o $@ $<
test_engine.o: test_engine.c engine.h transport.h dispatcher.h