OpenMusic

Visual Programming | Computer-Assisted Composition

Developer corner

OpenMusic is based on the Common Lisp programming language. Creating an executable in Common Lisp means loading all the source code in the Lisp environment and build an “image” of it, i.e. another Lisp environment extended with the features defined in the code. It is also possible to compile and load OM source code in the Lisp environment and use it directly without saving a new image. Using OM sources therefore requires owning a Lisp compiler.

OM 7 is currently developed with LispWorks 8.0.1 and relies on the graphical and GUI toolkits provided by this commercial Lisp environment. A free (limited) edition of LW7 is available on the LispWorks website, but unfortunately no free version of LW 8 at the moment.

The current OM sources can be compiled and run OM on macOS, Windows and Linux (see compilation instructions below).

Compilation with LispWorks

Here are the successive steps to follow:

.. and you’re (almost) done (see further precisions below).

The LispWorks Personal Edition has a limited heap size, which might be exceeded just by compiling the full OM sources. In this case, LispWorks will quit without finishing the compilation, but next time part of the code will already be compiled. After two or three times, the OM code is compiled and OM can be run as in LispWorks Pro (but still with a limited heap size).

A solution to limit the heap occupied by OM is not to load all the OM projects and components.

The “projects” are specific thematic packages included in the OM base distribution. When compiling OM, you can decide to include or not the different OM projects. In the build-om.lisp file, you will find lines staring with `(load-om-projects …) that can be commented if you don’t want to load some specific projects project. This might sensibly reduce the memory and heap size consumption of OM.

LispWorks Personal has also a time limit of 5 hours for each session, after which it will exit as well (but still can be restarted).

See the build instructions in the OM source repository for further information on external dependencies; fonts installation, etc.

The OM Directory

The OM directory contains the following sub-folders:

Developer Resources

Here are some resources and links for basic or more advanced developement in OpenMusic.