module Graphics.Rendering.Chart.Grid ( Grid, tval, tspan, empty, nullt, (.|.), (./.), above, aboveN, beside, besideN, overlay, width, height, gridToRenderable, weights ) where import Data.List import Data.Array -- import qualified Data.Map as Map import Control.Monad import Numeric import Graphics.Rendering.Chart.Renderable import Graphics.Rendering.Chart.Types --import Graphics.Rendering.Chart.Gtk import qualified Graphics.Rendering.Cairo as C type Span = (Int,Int) type Size = (Int,Int) type SpaceWeight = (Double,Double) type Cell a = (a,Span,SpaceWeight) data Grid a = Value (a,Span,SpaceWeight) | Above (Grid a) (Grid a) Size | Beside (Grid a) (Grid a) Size | Overlay (Grid a) (Grid a) Size | Empty | Null deriving (Show) width :: Grid a -> Int width Null = 0 width Empty = 1 width (Value _) = 1 width (Beside _ _ (w,h)) = w width (Above _ _ (w,h)) = w width (Overlay _ _ (w,h)) = w height :: Grid a -> Int height Null = 0 height Empty = 1 height (Value _) = 1 height (Beside _ _ (w,h)) = h height (Above _ _ (w,h)) = h height (Overlay _ _ (w,h)) = h tval :: a -> Grid a tval a = Value (a,(1,1),(0,0)) tspan :: a -> Span -> Grid a tspan a span = Value (a,span,(1,1)) empty, nullt :: Grid a empty = Empty nullt = Null above, beside :: Grid a -> Grid a -> Grid a above Null t = t above t Null = t above t1 t2 = Above t1 t2 size where size = (max (width t1) (width t2), height t1 + height t2) beside Null t = t beside t Null = t beside t1 t2 = Beside t1 t2 size where size = (width t1 + width t2, max (height t1) (height t2)) aboveN, besideN :: [Grid a] -> Grid a aboveN = foldl above nullt besideN = foldl beside nullt overlay Null t = t overlay t Null = t overlay t1 t2 = Overlay t1 t2 size where size = (max (width t1) (width t2), max (height t1) (height t2)) (.|.) = beside (./.) = above weights :: SpaceWeight -> Grid a -> Grid a weights sw Null = Null weights sw Empty = Empty weights sw (Value (v,sp,_)) = Value (v,sp,sw) weights sw (Above t1 t2 sz) = Above (weights sw t1) (weights sw t2) sz weights sw (Beside t1 t2 sz) = Beside (weights sw t1) (weights sw t2) sz weights sw (Overlay t1 t2 sz) = Overlay (weights sw t1) (weights sw t2) sz -- fix me, need to make .|. and .||. higher precedence -- than ./. and .//. instance Functor Grid where fmap f (Value (a,span,ew)) = Value (f a,span,ew) fmap f (Above t1 t2 s) = Above (fmap f t1) (fmap f t2) s fmap f (Beside t1 t2 s) = Beside (fmap f t1) (fmap f t2) s fmap f (Overlay t1 t2 s) = Overlay (fmap f t1) (fmap f t2) s fmap f Empty = Empty fmap f Null = Null mapGridM :: Monad m => (a -> m b) -> Grid a -> m (Grid b) mapGridM f (Value (a,span,ew)) = do b <- f a return (Value (b,span,ew)) mapGridM f (Above t1 t2 s) = do t1' <- mapGridM f t1 t2' <- mapGridM f t2 return (Above t1' t2' s) mapGridM f (Beside t1 t2 s) = do t1' <- mapGridM f t1 t2' <- mapGridM f t2 return (Beside t1' t2' s) mapGridM f (Overlay t1 t2 s) = do t1' <- mapGridM f t1 t2' <- mapGridM f t2 return (Overlay t1' t2' s) mapGridM _ Empty = return Empty mapGridM _ Null = return Null ---------------------------------------------------------------------- type FlatGrid a = Array (Int,Int) [(a,Span,SpaceWeight)] flatten :: Grid a -> FlatGrid a flatten t = accumArray (flip (:)) [] ((0,0), (width t - 1, height t - 1)) (flatten2 (0,0) t []) type FlatEl a = ((Int,Int),Cell a) flatten2 :: (Int,Int) -> Grid a -> [FlatEl a] -> [FlatEl a] flatten2 i Empty els = els flatten2 i Null els = els flatten2 i (Value cell) els = (i,cell):els flatten2 i@(x,y) (Above t1 t2 size) els = (f1.f2) els where f1 = flatten2 i t1 f2 = flatten2 (x,y + height t1) t2 flatten2 i@(x,y) (Beside t1 t2 size) els = (f1.f2) els where f1 = flatten2 i t1 f2 = flatten2 (x + width t1, y) t2 flatten2 i@(x,y) (Overlay t1 t2 size) els = (f1.f2) els where f1 = flatten2 i t1 f2 = flatten2 i t2 foldT :: ((Int,Int) -> Cell a -> r -> r) -> r -> FlatGrid a -> r foldT f iv ft = foldr f' iv (assocs ft) where f' (i,vs) r = foldr (\cell -> f i cell) r vs ---------------------------------------------------------------------- type DArray = Array Int Double gridToRenderable :: Grid (Renderable a) -> Renderable a gridToRenderable t = Renderable minsizef renderf where getSizes :: CRender (DArray, DArray, DArray, DArray) getSizes = do szs <- mapGridM minsize t :: CRender (Grid RectSize) let szs' = flatten szs let widths = accumArray max 0 (0, width t - 1) (foldT (ef wf) [] szs') let heights = accumArray max 0 (0, height t - 1) (foldT (ef hf) [] szs') let xweights = accumArray max 0 (0, width t - 1) (foldT (ef xwf) [] szs') let yweights = accumArray max 0 (0, height t - 1) (foldT (ef ywf) [] szs') return (widths,heights,xweights,yweights) wf (x,y) (w,h) (ww,wh) = (x,w) hf (x,y) (w,h) (ww,wh) = (y,h) xwf (x,y) (w,h) (xw,yw) = (x,xw) ywf (x,y) (w,h) (xw,yw) = (y,yw) ef f loc (size,span,ew) | span == (1,1) = (f loc size ew:) | otherwise = id minsizef = do (widths, heights, xweights, yweights) <- getSizes return (sum (elems widths), sum (elems heights)) renderf (w,h) = do (widths, heights, xweights, yweights) <- getSizes let widths' = addExtraSpace w widths xweights let heights' = addExtraSpace h heights yweights let csizes = (ctotal widths',ctotal heights') rf1 csizes (0,0) t rf1 csizes loc@(i,j) t = case t of Null -> return nullPickFn Empty -> return nullPickFn (Value (r,span,_)) -> do let (Rect p0 p1) = mkRect csizes loc span p0'@(Point x0 y0) <- alignc p0 p1'@(Point x1 y1) <- alignc p1 preserveCState $ do c $ C.translate x0 y0 render r (x1-x0,y1-y0) (Above t1 t2 _) -> do pf1 <- rf1 csizes (i,j) t1 pf2 <- rf1 csizes (i,j+height t1) t2 let pf p@(Point x y) = if y < (snd csizes ! (j + height t1)) then pf1 p else pf2 p return pf (Beside t1 t2 _) -> do pf1 <- rf1 csizes (i,j) t1 pf2 <- rf1 csizes (i+width t1,j) t2 let pf p@(Point x y) = if x < (fst csizes ! (i + width t1)) then pf1 p else pf2 p return pf (Overlay t1 t2 _) -> do pf2 <- rf1 csizes (i,j) t2 pf1 <- rf1 csizes (i,j) t1 let pf p = pf1 p `mplus` pf2 p return pf mkRect :: (DArray, DArray) -> (Int,Int) -> (Int,Int) -> Rect mkRect (cwidths,cheights) (x,y) (w,h) = Rect (Point x1 y1) (Point x2 y2) where x1 = cwidths ! x y1 = cheights ! y x2 = cwidths ! min (x+w) (snd $ bounds cwidths) y2 = cheights ! min (y+h) (snd $ bounds cheights) mx = fst (bounds cwidths) my = fst (bounds cheights) addExtraSpace :: Double -> DArray -> DArray -> DArray addExtraSpace size sizes weights = if totalws == 0 then sizes else listArray (bounds sizes) sizes' where ws = elems weights totalws = sum ws extra = size - sum (elems sizes) extras = map (*(extra/totalws)) ws sizes' = zipWith (+) extras (elems sizes) ctotal :: DArray -> DArray ctotal a = listArray (let (i,j) = bounds a in (i,j+1)) (scanl (+) 0 (elems a))