illiichi / orenolisp

see:
https://youtu.be/RuU0HI-paik
126 stars 2 forks source link

How to launch orenolisp? #1

Closed minosniu closed 4 years ago

minosniu commented 4 years ago

Could you provide a more detailed step-by-step introduction? Thanks!

maacl commented 4 years ago

When trying to load luanch.clj I get the following error:

user=> (load-file "src/orenolisp/launch.clj")
Syntax error macroexpanding clojure.core/ns at (core.clj:1:1).
((require [llll.engine.engine :as en] [llll.sc.groups :as g] [llll.engine.variables :as v] [llll.sc.sound-control :as snd] [llll.sc.synth :as syn] [llll.macro.control] [mount.core :as mount])) - failed: Extra input spec: :clojure.core.specs.alpha/ns-form
illiichi commented 4 years ago

Thank you for your interst.

I fix version of internal library. Please pull the latest master, then could you try again?

I have no plans to make kind instructions so far. You can play sine sound by following instructions:

  1. launch SuperCollider IDE and evaluate below SC codes:
    s.options.maxLogins = 10;
    s.boot;
  2. evaluate all expressions in launch.clj
  3. type SPACE, s, TAB, (, then Alt-h.
maacl commented 4 years ago

Great, this works. Thanks.