wumpus-basic-0.13.0: src/Wumpus/Basic/Dots/Marks.hs
{-# OPTIONS -Wall #-}
--------------------------------------------------------------------------------
-- |
-- Module : Wumpus.Basic.Dots.Marks
-- Copyright : (c) Stephen Tetley 2010
-- License : BSD3
--
-- Maintainer : Stephen Tetley <stephen.tetley@gmail.com>
-- Stability : highly unstable
-- Portability : GHC
--
-- Marks - dots without anchor handles.
--
-- \*\* WARNING \*\* - names are expected to change - filled and
-- background-filled marks need a naming convention.
--
--------------------------------------------------------------------------------
module Wumpus.Basic.Dots.Marks
(
-- * Marks
markChar
, markText
, markHLine
, markVLine
, markX
, markPlus
, markCross
, markDiamond
, markFDiamond
, markBDiamond
, markDisk
, markSquare
, markCircle
, markPentagon
, markStar
, markAsterisk
, markOPlus
, markOCross
, markFOCross
) where
import Wumpus.Basic.Graphic
import Wumpus.Basic.Text.LRText
import Wumpus.Core -- package: wumpus-core
import Data.AffineSpace -- package: vector-space
import Data.VectorSpace
import Control.Applicative
import Data.List
-- Marks should be the height of a lower-case letter...
-- NOTES
--
-- TikZ has both stroked and bordered (filled and outline-stroked)
-- marks e.g. square and square*
--
-- | 'polygonPoints' : @ num_points * radius * center -> [point] @
--
polygonPoints :: Floating u => Int -> u -> Point2 u -> [Point2 u]
polygonPoints n radius ctr = unfoldr phi (0,(pi*0.5))
where
theta = (pi*2) / fromIntegral n
phi (i,ang) | i < n = Just (ctr .+^ avec ang radius, (i+1,ang+theta))
| otherwise = Nothing
shiftOrigin :: Num u => u -> u -> LocGraphic u -> LocGraphic u
shiftOrigin dx dy = prepro1 (displace dx dy)
markChar :: (Fractional u, Ord u, FromPtSize u) => Char -> LocGraphic u
markChar ch = markText [ch]
markText :: (Fractional u, Ord u, FromPtSize u) => String -> LocGraphic u
markText ss = postpro1 (\(_,b) -> b) $ singleLineCC ss
-- | Supplied point is the center.
--
axialLine :: Fractional u => Vec2 u -> LocGraphic u
axialLine v = localPoint (\ctr -> ctr .-^ (0.5 *^ v)) (straightLine v)
markHLine :: (Fractional u, FromPtSize u) => LocGraphic u
markHLine = bind1 (static1 markHeight) $ \h -> axialLine (hvec h)
markVLine :: (Fractional u, FromPtSize u) => LocGraphic u
markVLine = bind1 (static1 markHeight) $ \h -> axialLine (vvec h)
markX :: (Fractional u, FromPtSize u) => LocGraphic u
markX = bind1 (static1 markHeight) $ \h ->
let w = 0.75 * h in axialLine (vec w h) `oplus` axialLine (vec (-w) h)
markPlus :: (Fractional u, FromPtSize u) => LocGraphic u
markPlus = markVLine `oplus` markHLine
markCross :: (Floating u, FromPtSize u) => LocGraphic u
markCross = bind1 (static1 markHeight) $ \h ->
(axialLine $ avec ang h) `oplus` (axialLine $ avec (-ang) h)
where
ang = pi*0.25
-- needs horizontal pinch...
pathDiamond :: (Fractional u, FromPtSize u)
=> LocCF u (PrimPath u)
pathDiamond = bind1 (static1 markHeight) $ \h -> promote1 $ \pt ->
let hh = 0.66 * h; hw = 0.5 * h
s = pt .+^ vvec (-hh)
e = pt .+^ hvec hw
n = pt .+^ vvec hh
w = pt .+^ hvec (-hw)
in pure $ vertexPath [s,e,n,w]
-- closedStroke :: (a -> ctx -> prim)
-- pathDiamond :: (ctx -> pt -> a)
-- ans :: (ctx -> pt -> prim)
markDiamond :: (Fractional u, FromPtSize u) => LocGraphic u
markDiamond = pathDiamond `bind1` (static1 . closedStroke)
markFDiamond :: (Fractional u, FromPtSize u) => LocGraphic u
markFDiamond = pathDiamond `bind1` (static1 . filledPath)
-- Note - the (const . fn) composition doesn\'t /tell/ much about
-- what is going on - though obviously it can be decoded - make
-- the function obvious to the second argument.
--
-- A named combinator might be better.
--
markBDiamond :: (Fractional u, FromPtSize u) => LocGraphic u
markBDiamond = pathDiamond `bind1` (static1 . borderedPath)
-- | Note disk is filled.
--
markDisk :: (Fractional u, FromPtSize u) => LocGraphic u
markDisk = bind1 (static1 markHalfHeight) filledDisk
markSquare :: (Fractional u, FromPtSize u) => LocGraphic u
markSquare = bind1 (static1 markHeight) $ \h ->
let d = 0.5*(-h) in shiftOrigin d d $ strokedRectangle h h
markCircle :: (Fractional u, FromPtSize u) => LocGraphic u
markCircle = bind1 (static1 markHalfHeight) strokedDisk
markBCircle :: (Fractional u, FromPtSize u) => LocGraphic u
markBCircle = bind1 (static1 markHalfHeight) borderedDisk
markPentagon :: (Floating u, FromPtSize u) => LocGraphic u
markPentagon = bind1 (static1 markHeight) $ \h ->
promote1 $ \pt -> closedStroke $ vertexPath $ polygonPoints 5 (0.5*h) pt
markStar :: (Floating u, FromPtSize u) => LocGraphic u
markStar = bind1 (static1 markHeight) $ \h ->
promote1 $ \pt -> let ps = polygonPoints 5 (0.5*h) pt in step $ map (fn pt) ps
where
fn st p1 = openStroke $ primPath st [lineTo p1]
step (x:xs) = oconcat x xs
step _ = error "markStar - unreachable"
-- Note - relies on the functional instance of OPlus
markAsterisk :: (Floating u, FromPtSize u) => LocGraphic u
markAsterisk = bind1 (static1 markHeight) $ \h ->
lineF1 h `oplus` lineF2 h `oplus` lineF3 h
where
ang = (pi*2) / 6
lineF1 z = axialLine (vvec z)
lineF2 z = axialLine (avec ((pi*0.5) + ang) z)
lineF3 z = axialLine (avec ((pi*0.5) + ang + ang) z)
markOPlus :: (Fractional u, FromPtSize u) => LocGraphic u
markOPlus = markCircle `oplus` markPlus
markOCross :: (Floating u, FromPtSize u) => LocGraphic u
markOCross = markCircle `oplus` markCross
markFOCross :: (Floating u, FromPtSize u) => LocGraphic u
markFOCross = markCross `oplus` markBCircle
-- bkCircle :: (Fractional u, FromPtSize u) => LocGraphic u
-- bkCircle = disk (fillAttr attr) (0.5*markHeight attr)