Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix, left-factoring of mapping rules. #17

Merged
merged 2 commits into from
Jun 30, 2015
Merged

Commits on Jun 30, 2015

  1. Configuration menu
    Copy the full SHA
    308b45b View commit details
    Browse the repository at this point in the history
  2. allow sharing the left-hand side of rules

    This allows to abbreviate a collection of rules where the same OSC message is
    mapped to different MIDI messages. E.g.,
    
        /multi/{i} ff, touch,x,y : controlchange( channel, touch, x*127);
        /multi/{i} ff, touch,x,y : controlchange( channel, touch+10, y*127);
    
    may now be written as:
    
        /multi/{i} ff, touch,x,y : controlchange( channel, touch, x*127);
        : controlchange( channel, touch+10, y*127);
    
    Note that the latter simply gets expanded to the former. There's no change in
    semantics (except that an OSC message path can't start with a colon any
    longer, but that's rather unlikely anyway).
    agraef committed Jun 30, 2015
    Configuration menu
    Copy the full SHA
    ee3ec6b View commit details
    Browse the repository at this point in the history