music-score-1.7: src/Music/Score/Tremolo.hs
{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveFoldable #-}
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE NoMonomorphismRestriction #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
-------------------------------------------------------------------------------------
-- |
-- Copyright : (c) Hans Hoglund 2012-2014
--
-- License : BSD-style
--
-- Maintainer : hans@hanshoglund.se
-- Stability : experimental
-- Portability : non-portable (TF,GNTD)
--
-- Provides a representation for tremolo, i.e. rapid iterations of a note.
--
-------------------------------------------------------------------------------------
module Music.Score.Tremolo (
-- * Tremolo
HasTremolo(..),
TremoloT(..),
tremolo,
) where
import Control.Applicative
import Control.Comonad
import Control.Lens hiding (transform)
import Data.Foldable
import Data.Foldable
import Data.Functor.Couple
import Data.Ratio
import Data.Semigroup
import Data.Typeable
import Data.Word
import Music.Dynamics.Literal
import Music.Pitch.Alterable
import Music.Pitch.Augmentable
import Music.Pitch.Literal
import Music.Score.Part
import Music.Score.Phrases
import Music.Time
class HasTremolo a where
setTrem :: Int -> a -> a
instance HasTremolo a => HasTremolo (b, a) where
setTrem n = fmap (setTrem n)
instance HasTremolo a => HasTremolo (Couple b a) where
setTrem n = fmap (setTrem n)
instance HasTremolo a => HasTremolo [a] where
setTrem n = fmap (setTrem n)
instance HasTremolo a => HasTremolo (Score a) where
setTrem n = fmap (setTrem n)
newtype TremoloT a = TremoloT { getTremoloT :: Couple (Max Word) a }
deriving (Eq, Show, Ord, Functor, Foldable, Typeable, Applicative, Monad, Comonad)
--
-- We use Word instead of Int to get (mempty = Max 0), as (Max.mempty = Max minBound)
-- Preferably we would use Natural but unfortunately this is not an instance of Bounded
--
-- | Unsafe: Do not use 'Wrapped' instances
instance Wrapped (TremoloT a) where
type Unwrapped (TremoloT a) = Couple (Max Word) a
_Wrapped' = iso getTremoloT TremoloT
instance Rewrapped (TremoloT a) (TremoloT b)
instance HasTremolo (TremoloT a) where
setTrem n = set (_Wrapped . _Wrapped . _1) (Max $ fromIntegral n)
-- Lifted instances
deriving instance Num a => Num (TremoloT a)
deriving instance Fractional a => Fractional (TremoloT a)
deriving instance Floating a => Floating (TremoloT a)
deriving instance Enum a => Enum (TremoloT a)
deriving instance Bounded a => Bounded (TremoloT a)
deriving instance (Num a, Ord a, Real a) => Real (TremoloT a)
deriving instance (Real a, Enum a, Integral a) => Integral (TremoloT a)
-- |
-- Set the number of tremolo divisions for all notes in the score.
--
tremolo :: HasTremolo a => Int -> a -> a
tremolo = setTrem