Copperbox revision 2495.
I've added a monad for specifying modulator-carrier connection patterns. A DX7 style algorithm will look something like this (cycles not yet implemented):
algo28 :: Config6 -> Spec ()
algo28 (Config6 o1 o2 o3 o4 o5 o6) = do
m2 <- modulator o2
m5 <- modulator o5
m4 <- modulator o4
c1 <- carrier o1
c3 <- carrier o3
c6 <- carrier o6
m2 =>- c1
m5 =>= m4
m4 =>- c3
-- m5 should be cycled
return ()
Blog Archive
About Me
- Stephen Tetley
- Disambiguating biog as there are a few Stephen Tetley's in the world. I'm neither a cage fighter or yachtsman. I studied Fine Art in the nineties (foundation Bradford 1992, degree Cheltenham 1992 - 95) then Computing part-time at Leeds Met graduating in 2003. I'm the Stephen Tetley on Haskell Cafe and Stackoverflow.