ref: af4ca8b389701bb64c5dc9b369697dd486c43def
parent: b09a7562fd06074826bffcc6b7de4d63db555019
parent: e1e7ee337831761900d5c37877b5706372692379
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Sat May 9 07:52:23 EDT 2020
Merge remote-tracking branch 'upstream/master'
--- a/README.md
+++ b/README.md
@@ -1,185 +1,3 @@
# ORCΛ
-Orca is an [esoteric programming language](https://en.wikipedia.org/wiki/Esoteric_programming_language) designed to quickly create procedural sequencers, in which every letter of the alphabet is an operation, where lowercase letters operate on bang, uppercase letters operate each frame.
-
-This application **is not a synthesizer, but a flexible livecoding environment** capable of sending MIDI, OSC & UDP to your audio/visual interfaces, like Ableton, Renoise, VCV Rack or SuperCollider.
-
-If you need <strong>help</strong>, visit the <a href="https://talk.lurk.org/channel/orca" target="_blank" rel="noreferrer" class="external ">chatroom</a> or the <a href="https://llllllll.co/t/orca-live-coding-tool/17689" target="_blank" rel="noreferrer" class="external ">forum</a>.
-
-This is the **C** implementation of the [ORCΛ](https://github.com/hundredrabbits/Orca) language and tools. The livecoding environment for this C version runs in a terminal. It's designed to be power efficient. It can handle large files, even if your terminal is small.
-
-<img src='https://raw.githubusercontent.com/wiki/hundredrabbits/Orca-c/PREVIEW.jpg' width='600'/>
-
-## Quick Start for Debian/Raspbian (Raspberry Pi)
-
-```sh
-sudo apt-get install git libncurses5-dev libncursesw5-dev libportmidi-dev
-git clone https://github.com/hundredrabbits/Orca-c.git
-cd Orca-c
-make # Compile orca
-build/orca # Run orca
-```
-
-To choose your MIDI output device, press `F1` (or `Ctrl+D`) to open the main menu, and then select `MIDI Output...`
-
-```
-┌ ORCA ───────────────┐┌ PortMidi Device Selection ─────┐
-│ New ││ > (*) #0 - Midi Through Port-0 │
-│ Open... ││ ( ) #2 - ES1371 │
-│ Save │└────────────────────────────────┘
-│ Save As... │
-│ │
-│ Set BPM... │
-│ Set Grid Size... │
-│ Auto-fit Grid │
-│ │
-│ OSC Output... │
-│ > MIDI Output... │
-│ │
-│ Clock & Timing... │
-│ Appearance... │
-│ │
-│ Controls... │
-│ Operators... │
-│ About ORCA... │
-│ │
-│ Quit │
-└─────────────────────┘
-```
-
-## Prerequisites
-
-Core library: A C99 compiler (no VLAs required), plus enough libc for `malloc`, `realloc`, `free`, `memcpy`, `memset`, and `memmove`. (Also, `#pragma once` must be supported.)
-
-Command-line interpreter: The above, plus POSIX, and enough libc for the common string operations (`strlen`, `strcmp`, etc.)
-
-Livecoding terminal UI: The above, plus ncurses (or compatible curses library), and floating point support (for timing.) Optionally, PortMidi can be used to enable direct MIDI output.
-
-## Build
-
-The build script, called simply `tool`, is written in `bash`. It should work with `gcc` (including the `musl-gcc` wrapper), `tcc`, and `clang`, and will automatically detect your compiler. You can manually specify a compiler with the `-c` option.
-
-Currently known to build on macOS (`gcc`, `clang`, `tcc`) and Linux (`gcc`, `musl-gcc`, `tcc`, and `clang`, optionally with `LLD`), and Windows via cygwin or WSL (`gcc` or `clang`, `tcc` untested).
-
-There is a fire-and-forget `make` wrapper around the build script.
-
-PortMidi is an optional dependency. It can be enabled by adding the option `--portmidi` when running the `tool` build script.
-
-Mouse awareness can be disabled by adding the `--no-mouse` option.
-
-### Build using the `tool` build script
-
-Run `./tool help` to see usage info. Examples:
-
-```sh
-./tool build -c clang-7 --portmidi orca
- # Build the livecoding environment with a compiler
- # named clang-7, with optimizations enabled, and
- # with PortMidi enabled for MIDI output.
- # Binary placed at build/orca
-
-./tool build -d orca
- # Debug build of the livecoding environment.
- # Binary placed at build/debug/orca
-
-./tool build -d cli
- # Debug build of the headless CLI interpreter.
- # Binary placed at build/debug/cli
-
-./tool clean
- # Same as make clean. Removes build/
-```
-
-### Build using the `make` wrapper
-
-```sh
-make release # optimized build, binary placed at build/orca
-make debug # debugging build, binary placed at build/debug/orca
-make clean # removes build/
-```
-
-The `make` wrapper will enable `--portmidi` by default. If you run the `tool` build script on its own, `--portmidi` is not enabled by default.
-
-## `orca` Livecoding Environment Usage
-
-```
-Usage: orca [options] [file]
-
-General options:
- --undo-limit <number> Set the maximum number of undo steps.
- If you plan to work with large files,
- set this to a low number.
- Default: 100
- --initial-size <nxn> When creating a new grid file, use these
- starting dimensions.
- --bpm <number> Set the tempo (beats per minute).
- Default: 120
- --seed <number> Set the seed for the random function.
- Default: 1
- -h or --help Print this message and exit.
-
-OSC/MIDI options:
- --strict-timing
- Reduce the timing jitter of outgoing MIDI and OSC messages.
- Uses more CPU time.
-
- --osc-midi-bidule <path>
- Set MIDI to be sent via OSC formatted for Plogue Bidule.
- The path argument is the path of the Plogue OSC MIDI device.
- Example: /OSC_MIDI_0/MIDI
-```
-
-### Example: build and run `orca` liveocding environment with MIDI output
-
-```sh
-$ ./tool build --portmidi orca # compile orca using build script
-$ build/orca # run orca
-```
-
-### `orca` Livecoding Environment Controls
-
-```
-┌ Controls ───────────────────────────────────────────┐
-│ Ctrl+Q Quit │
-│ Arrow Keys Move Cursor │
-│ Ctrl+D or F1 Open Main Menu │
-│ 0-9, A-Z, a-z, Insert Character │
-│ ! : % / = # * │
-│ Spacebar Play/Pause │
-│ Ctrl+Z or Ctrl+U Undo │
-│ Ctrl+X Cut │
-│ Ctrl+C Copy │
-│ Ctrl+V Paste │
-│ Ctrl+S Save │
-│ Ctrl+F Frame Step Forward │
-│ Ctrl+R Reset Frame Number │
-│ Ctrl+I or Insert Append/Overwrite Mode │
-│ ' (quote) Rectangle Selection Mode │
-│ Shift+Arrow Keys Adjust Rectangle Selection │
-│ Alt+Arrow Keys Slide Selection │
-│ ` (grave) or ~ Slide Selection Mode │
-│ Escape Return to Normal Mode or Deselect │
-│ ( ) _ + [ ] { } Adjust Grid Size and Rulers │
-│ < and > Adjust BPM │
-│ ? Controls (this message) │
-└─────────────────────────────────────────────────────┘
-```
-
-## `cli` command-line interface interpreter
-
-The CLI (`cli` binary) reads from a file and runs the orca simulation for 1 timestep (default) or a specified number (`-t` option) and writes the resulting state of the grid to stdout.
-
-```sh
-cli [-t timesteps] infile
-```
-
-You can also make `cli` read from stdin:
-```sh
-echo -e "...\na34\n..." | cli /dev/stdin
-```
-
-## Extras
-
-- Support this project through [Patreon](https://patreon.com/100).
-- See the [License](LICENSE.md) file for license rights and limitations (MIT).
-- Pull Requests are welcome!
+The repository is now hosted [here](https://git.sr.ht/~rabbits/orca).
--- a/tool
+++ b/tool
@@ -163,7 +163,7 @@
echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }';
}
-if [[ ($os == bsd) || ($os == unknown) ]]; then
+if [[ ($os == unknown) ]]; then
warn "Build script not tested on this platform"
fi
@@ -320,7 +320,10 @@
else
# -flto is good on both clang and gcc on Linux
case $cc_id in
- gcc|clang) add cc_flags -flto;;
+ gcc|clang)
+ if [[ $os != bsd ]]; then
+ add cc_flags -flto
+ fi
esac
add cc_flags -s
fi
@@ -393,6 +396,12 @@
fi
# needed for using pbpaste instead of xclip
add cc_flags -DORCA_OS_MAC
+ ;;
+ bsd)
+ if [[ $portmidi_enabled = 1 ]]; then
+ add libraries "-L/usr/local/lib"
+ add cc_flags "-I/usr/local/include"
+ fi
;;
*)
# librt and high-res posix timers on Linux
--- a/tui_main.c
+++ b/tui_main.c
@@ -18,6 +18,11 @@
#include <portmidi.h>
#endif
+#if NCURSES_VERSION_PATCH < 20081122
+int _nc_has_mouse(void);
+#define has_mouse _nc_has_mouse
+#endif
+
#define TIME_DEBUG 0
#if TIME_DEBUG
static int spin_track_timeout = 0;
@@ -2258,7 +2263,7 @@
};
static struct Guide_item items[] = {
{'A', "add", "Outputs sum of inputs."},
- {'B', "between", "Outputs subtraction of inputs."},
+ {'B', "subtract", "Outputs difference of inputs."},
{'C', "clock", "Outputs modulo of frame."},
{'D', "delay", "Bangs on modulo of frame."},
{'E', "east", "Moves eastward, or bangs."},