]> Git — Sourcephile - tmp/julm/arpeggigon.git/blob - Reactogon/Translator/SortMessage.hs
Add file that will contain sorting informations for messages.
[tmp/julm/arpeggigon.git] / Reactogon / Translator / SortMessage.hs
1 -- The idea is that the stream of data coming from the MIDI input port
2 -- will be sorted in three categories: note on events, controller
3 -- events and other events. The latter will be transmitted as is
4 -- through the whole systems.
5
6 module Reactogon.Message.SortMessage where
7
8 import Reactogon.Semantics
9
10 sortMessage :: [Message] -> ([Note], [Command], [RawMessage])
11 sortMessage = undefined