{-# LANGUAGE OverloadedStrings, FlexibleInstances, RankNTypes, NoMonomorphismRestriction #-} module Sound.Tidal.Stream where import Data.Maybe import Control.Applicative import Control.Concurrent import Control.Concurrent.MVar import Control.Exception as E import Data.Time (getCurrentTime) import Data.Time.Clock.POSIX (utcTimeToPOSIXSeconds) import Data.Ratio import Sound.Tidal.Pattern import qualified Sound.Tidal.Parse as P import Sound.Tidal.Tempo (Tempo, logicalTime, clocked,clockedTick,cps) import Sound.Tidal.Utils import qualified Sound.Tidal.Time as T import qualified Data.Map as Map type ToMessageFunc = Shape -> Tempo -> Int -> (Double, ParamMap) -> Maybe (IO ()) data Backend a = Backend { toMessage :: ToMessageFunc } data Param = S {name :: String, sDefault :: Maybe String} | F {name :: String, fDefault :: Maybe Double} | I {name :: String, iDefault :: Maybe Int} instance Eq Param where a == b = name a == name b instance Ord Param where compare a b = compare (name a) (name b) instance Show Param where show p = name p data Shape = Shape {params :: [Param], latency :: Double, cpsStamp :: Bool} data Value = VS { svalue :: String } | VF { fvalue :: Double } | VI { ivalue :: Int } deriving (Show,Eq,Ord) type ParamMap = Map.Map Param (Maybe Value) type ParamPattern = Pattern ParamMap ticksPerCycle = 8 defaultValue :: Param -> Maybe Value defaultValue (S _ (Just x)) = Just $ VS x defaultValue (I _ (Just x)) = Just $ VI x defaultValue (F _ (Just x)) = Just $ VF x defaultValue _ = Nothing hasDefault :: Param -> Bool hasDefault (S _ Nothing) = False hasDefault (I _ Nothing) = False hasDefault (F _ Nothing) = False hasDefault _ = True defaulted :: Shape -> [Param] defaulted = filter hasDefault . params defaultMap :: Shape -> ParamMap defaultMap s = Map.fromList $ map (\x -> (x, defaultValue x)) (defaulted s) required :: Shape -> [Param] required = filter (not . hasDefault) . params hasRequired :: Shape -> ParamMap -> Bool hasRequired s m = isSubset (required s) (Map.keys (Map.filter (\x -> x /= Nothing) m)) isSubset :: (Eq a) => [a] -> [a] -> Bool isSubset xs ys = all (\x -> elem x ys) xs doAt t action = do forkIO $ do now <- getCurrentTime let nowf = realToFrac $ utcTimeToPOSIXSeconds now threadDelay $ floor $ (t - nowf) * 1000000 action return () logicalOnset' change tick o offset = logicalNow + (logicalPeriod * o) + offset where tpc = fromIntegral ticksPerCycle cycleD = ((fromIntegral tick) / tpc) :: Double logicalNow = logicalTime change cycleD logicalPeriod = (logicalTime change (cycleD + (1/tpc))) - logicalNow applyShape' :: Shape -> ParamMap -> Maybe ParamMap applyShape' s m | hasRequired s m = Just $ Map.union m (defaultMap s) | otherwise = Nothing start :: Backend a -> Shape -> IO (MVar (ParamPattern)) start backend shape = do patternM <- newMVar silence let ot = (onTick backend shape patternM) :: Tempo -> Int -> IO () forkIO $ clockedTick ticksPerCycle ot return patternM -- variant of start where history of patterns is available state :: Backend a -> Shape -> IO (MVar (ParamPattern, [ParamPattern])) state backend shape = do patternsM <- newMVar (silence, []) let ot = (onTick' backend shape patternsM) :: Tempo -> Int -> IO () forkIO $ clockedTick ticksPerCycle ot return patternsM stream :: Backend a -> Shape -> IO (ParamPattern -> IO ()) stream backend shape = do patternM <- start backend shape return $ \p -> do swapMVar patternM p return () streamcallback :: (ParamPattern -> IO ()) -> Backend a -> Shape -> IO (ParamPattern -> IO ()) streamcallback callback backend shape = do f <- stream backend shape let f' p = do callback p f p return f' onTick :: Backend a -> Shape -> MVar (ParamPattern) -> Tempo -> Int -> IO () onTick backend shape patternM change ticks = do p <- readMVar patternM let ticks' = (fromIntegral ticks) :: Integer a = ticks' % ticksPerCycle b = (ticks' + 1) % ticksPerCycle messages = mapMaybe (toMessage backend shape change ticks) (seqToRelOnsets (a, b) p) E.catch (sequence_ messages) (\msg -> putStrLn $ "oops " ++ show (msg :: E.SomeException)) return () -- Variant where mutable variable contains list as history of the patterns onTick' :: Backend a -> Shape -> MVar (ParamPattern, [ParamPattern]) -> Tempo -> Int -> IO () onTick' backend shape patternsM change ticks = do ps <- readMVar patternsM let ticks' = (fromIntegral ticks) :: Integer toM = (toMessage backend) a = ticks' % ticksPerCycle b = (ticks' + 1) % ticksPerCycle messages = mapMaybe (toM shape change ticks) (seqToRelOnsets (a, b) $ fst ps) E.catch (sequence_ messages) (\msg -> putStrLn $ "oops " ++ show (msg :: E.SomeException)) return () make :: (a -> Value) -> Shape -> String -> Pattern a -> ParamPattern make toValue s nm p = fmap (\x -> Map.singleton nParam (defaultV x)) p where nParam = param s nm defaultV a = Just $ toValue a --defaultV Nothing = defaultValue nParam makeS = make VS makeF :: Shape -> String -> Pattern Double -> ParamPattern makeF = make VF makeI :: Shape -> String -> Pattern Int -> ParamPattern makeI = make VI param :: Shape -> String -> Param param shape n = head $ filter (\x -> name x == n) (params shape) merge :: ParamPattern -> ParamPattern -> ParamPattern merge x y = (flip Map.union) <$> x <*> y infixl 1 |=| (|=|) :: ParamPattern -> ParamPattern -> ParamPattern (|=|) = merge (#) = (|=|) mergeWith op x y = (Map.unionWithKey op) <$> x <*> y mergeWith :: (Ord k, Applicative f) => (k -> a -> a -> a) -> f (Map.Map k a) -> f (Map.Map k a) -> f (Map.Map k a) mergeNumWith intOp floatOp = mergeWith f where f (F _ _) (Just (VF a)) (Just (VF b)) = Just (VF $ floatOp a b) f (I _ _) (Just (VI a)) (Just (VI b)) = Just (VI $ intOp a b) f _ _ b = b mergePlus = mergeWith f where f (F _ _) (Just (VF a)) (Just (VF b)) = Just (VF $ a + b) f (I _ _) (Just (VI a)) (Just (VI b)) = Just (VI $ a + b) f (S _ _) (Just (VS a)) (Just (VS b)) = Just (VS $ a ++ b) f _ _ b = b infixl 1 |*| (|*|) :: ParamPattern -> ParamPattern -> ParamPattern (|*|) = mergeNumWith (*) (*) infixl 1 |+| (|+|) :: ParamPattern -> ParamPattern -> ParamPattern (|+|) = mergePlus infixl 1 |-| (|-|) :: ParamPattern -> ParamPattern -> ParamPattern (|-|) = mergeNumWith (-) (-) infixl 1 |/| (|/|) :: ParamPattern -> ParamPattern -> ParamPattern (|/|) = mergeNumWith (div) (/) setter :: MVar (a, [a]) -> a -> IO () setter ds p = do ps <- takeMVar ds putMVar ds $ (p, p:snd ps) return ()