Robert Bendun
1fa2ec6b76
Vectorized equality and index operations
2022-08-29 21:22:46 +02:00
Robert Bendun
2b29522293
New operator: modulo operator '%'
2022-08-29 20:37:11 +02:00
Robert Bendun
b8feb4043e
New builtin: n primes generator
2022-08-29 20:29:45 +02:00
Robert Bendun
5c53bb9e9f
Nicer undefiend operator message
2022-08-21 20:39:35 +02:00
Robert Bendun
43555cbc1c
Improved interactive mode interaction with errors
2022-08-21 20:24:49 +02:00
Robert Bendun
cb5eedb2a5
Unexpected empty source error improved
2022-08-21 20:01:59 +02:00
Robert Bendun
183907a0ed
Improved error location reporting
2022-08-21 19:24:33 +02:00
Robert Bendun
99482d4c7c
Improved examples; multiplication = repeat operator
2022-08-21 17:34:03 +02:00
Robert Bendun
b9eb3f957d
play
as evaluation operator
2022-08-21 16:49:54 +02:00
Robert Bendun
5c47b7b808
par
improvement: allow actions like octave changes inside
...
This is implemented with default action idea. During evaluation of
expresions sequence all but return expressions is passed to
default_action. Par sets default action to `action_play` which plays
given value if it's musical value.
2022-08-21 15:52:54 +02:00
Robert Bendun
2452b95a90
Par now accepts arrays
2022-08-21 14:49:39 +02:00
Robert Bendun
e3164395de
Range function for Musique language
2022-08-21 13:45:34 +02:00
Robert Bendun
da1ac0dcf7
{floor, ceil, round} available in Musique language
2022-08-21 13:19:16 +02:00
Robert Bendun
617fbac98f
Unified rounding implementation
2022-08-21 12:26:45 +02:00
Robert Bendun
eb36ad2c93
Implemented Number::{ceil, floor, round, pow, inverse}
...
Except that pow only accepts integer exponents, since nth root is not
that quick to implement and simple blind implementation may have
performance issues.
2022-08-21 00:43:04 +02:00
Robert Bendun
ab6ed8f45c
Report nice error when without MIDI connection
2022-08-19 16:06:33 +02:00
Robert Bendun
b06ad84514
File hierarchy cleanup by removing etc folder
...
And moving it's content into scripts and editor directories.
2022-08-18 23:03:21 +02:00
Robert Bendun
e16a28dfdc
Separated makefile into smaller scripts to improve readability
2022-08-18 22:58:41 +02:00
Robert Bendun
7fb6df219c
Successfully separated small portion of include/musique.hh
2022-08-18 22:48:11 +02:00
Robert Bendun
0b3dc2bb57
Move src/musique.hh to include/musique.hh
...
This is preparation for separation of public musique interface and
implementation details shared across files.
2022-08-18 22:44:04 +02:00
Robert Bendun
81f512d69d
Builtin function handlers definition now in separate file
...
Same as in commit before, we try to cleanup src/interpreter.cc from all
of builtin function noise.
2022-08-18 22:37:40 +02:00
Robert Bendun
831de5abe5
Builtin operator handlers definiton now in separate file
...
Interpreter constructor and file in general is very unreadable
and busy now. To limit noise separate builtin operators from
src/interpreter.cc into their own file src/builtin_operators.cc
This also allows to see which functions are used as implementation
detail of which operations.
2022-08-18 22:21:04 +02:00
Robert Bendun
a3d0a942e4
Ensure when adding new operators we add them right
...
Operators not only are needed to be defined by their implementation in
Interpreter constructor, but also are needed to be included in
precedense resolution.
To prevent partial definition we predefine number of builtin operators
as numeric constant and test against it in all relevant places.
2022-08-18 22:07:13 +02:00
Robert Bendun
e090778db9
Added '&' operator that joins chords together.
...
For example 'c & g' makes chord 'chord c g'
2022-08-18 22:07:13 +02:00
Robert Bendun
881dc8975a
Missing variable error implementation
2022-08-18 22:07:13 +02:00
Robert Bendun
75c9eefd50
Ignoring new LSP
2022-08-18 22:07:13 +02:00
Robert Bendun
d8f8214556
Tests now compile again
2022-07-30 13:45:23 +02:00
Robert Bendun
0e796d5efc
Minor cleanup
2022-07-30 13:40:59 +02:00
2ea507dde2
Par accepts arrays of notes
2022-06-23 07:49:38 +02:00
4a844a319e
Handle incoming note on messages
2022-06-23 07:41:06 +02:00
4d272723c7
Elegant exit (not aborting due to thread issues)
2022-06-23 07:36:28 +02:00
Mateusz Piątkowski
7b572e2a1f
ode to joy final_master_full
2022-06-22 18:46:24 +02:00
Mateusz Piątkowski
24b1a71e55
more examples WIP
2022-06-22 18:39:23 +02:00
Mateusz Piątkowski
742b48e1ce
better ode to joy
2022-06-22 17:44:04 +02:00
772686a2fc
Better error reporting of not mached parens
2022-06-20 13:21:37 +02:00
21bf18bbdd
Error reporting in builtins producing midi messages
2022-06-20 12:59:36 +02:00
d60e2dfb38
Preserving sequences
2022-06-20 06:20:24 +02:00
ea1dddaf26
Precedense aware parser
2022-06-20 05:45:28 +02:00
854b72cf35
Unit testing builtins
2022-06-19 17:44:42 +02:00
29f9a4467c
Skipping tests that require not implemented functionality
2022-06-19 16:15:41 +02:00
2dd97709a0
Better unit test response messages when unrecoverable state reached
...
Instead of `exit` we throw `std::runtime_error` in Debug mode assertions
and unreachable functions, to have better response from unit test runner.
2022-06-19 16:09:39 +02:00
ed3b2006e9
Symbol quoting and user defined incoming MIDI message processing
2022-06-19 15:45:14 +02:00
387835a155
Number -> Note translation for Note{on,off} incoming messages
2022-06-19 00:40:04 +02:00
7a3d211d09
Infrastructure for incoming MIDI messages ready
2022-06-19 00:27:02 +02:00
bf3f388acb
User-defined input and port numbers of ALSA MIDI connection
2022-06-18 00:28:48 +02:00
09f736bf83
Updated to newer version of lib/midi
2022-06-18 00:13:21 +02:00
16d1a5e0d6
Introduced first iteration of typechecking errors
2022-06-14 13:24:15 +02:00
910792e383
rotate function
2022-06-14 11:39:04 +02:00
55554606a1
partition function
2022-06-14 11:21:37 +02:00
5ab750b93b
Array modification functions
2022-06-14 10:30:52 +02:00