affection/examples/example01.hs

106 lines
2.9 KiB
Haskell
Raw Normal View History

2016-11-18 15:27:47 +00:00
{-# LANGUAGE RecordWildCards #-}
2016-05-29 16:01:23 +00:00
import Affection
2016-11-18 15:27:47 +00:00
import qualified SDL
import qualified SDL.Raw as Raw
import qualified GEGL as G
import qualified BABL as B
import qualified Data.Map.Strict as M
2016-12-26 13:06:51 +00:00
import Control.Monad (when)
2016-11-18 15:27:47 +00:00
import Foreign.Storable (peek)
import Foreign.C.Types
import Debug.Trace
-- main :: IO ()
-- main = withAllAffection $
-- withDefaultWindow "test" $ do
-- changeColor $ RGBA 255 255 255 255
-- clear
-- present
-- liftIO $ delaySec 2
2016-05-29 16:01:23 +00:00
main :: IO ()
2016-11-18 15:27:47 +00:00
main = do
conf <- return $ AffectionConfig
{ initComponents = All
, windowTitle = "Affection: example00"
, windowConfig = SDL.defaultWindow
2016-12-12 01:10:30 +00:00
, preLoop = return ()
2016-11-18 15:27:47 +00:00
, drawLoop = draw
, updateLoop = update
, loadState = load
, cleanUp = clean
}
withAffection conf
data UserData = UserData
{ nodeGraph :: M.Map String G.GeglNode
, foreground :: G.GeglBuffer
}
load :: SDL.Surface -> IO UserData
load _ = do
traceM "loading"
root <- G.gegl_node_new
traceM "new root node"
checkerboard <- G.gegl_node_new_child root $ G.checkerboardOperation
[ G.Property "color1" $ G.PropertyColor $ G.RGBA 0.4 0.4 0.4 1
, G.Property "color2" $ G.PropertyColor $ G.RGBA 0.6 0.6 0.6 1
]
traceM "checkerboard"
over <- G.gegl_node_new_child root G.defaultOverOperation
traceM "over"
2016-12-21 03:28:57 +00:00
buffer <- G.gegl_buffer_new (Just $ G.GeglRectangle 0 0 800 600) =<<
2016-11-18 15:27:47 +00:00
B.babl_format (B.PixelFormat B.RGBA B.CFfloat)
2016-12-26 13:06:51 +00:00
sink <- G.gegl_node_new_child root $ G.Operation "gegl:copy-buffer"
2016-11-18 15:27:47 +00:00
[ G.Property "buffer" $ G.PropertyBuffer buffer
]
traceM "buffer-source"
2016-12-26 13:06:51 +00:00
nop <- G.gegl_node_new_child root $ G.Operation "gegl:nop" []
traceM "nop"
crop <- G.gegl_node_new_child root $ G.Operation "gegl:crop"
[ G.Property "width" $ G.PropertyDouble 800
, G.Property "height" $ G.PropertyDouble 600
]
G.gegl_node_link_many [checkerboard, over, crop, sink]
G.gegl_node_connect_to nop "output" over "aux"
2016-11-18 15:27:47 +00:00
traceM "connections made"
myMap <- return $ M.fromList
[ ("root" , root)
, ("over" , over)
, ("background" , checkerboard)
2016-12-26 13:06:51 +00:00
, ("sink" , sink)
, ("nop" , nop)
2016-11-18 15:27:47 +00:00
]
let roi = G.GeglRectangle 0 0 20 20
traceM "loading complete"
return $ UserData
{ nodeGraph = myMap
, foreground = buffer
}
2016-12-08 17:22:29 +00:00
draw :: Affection UserData ()
2016-11-18 15:27:47 +00:00
draw = do
traceM "drawing"
2016-12-20 10:29:03 +00:00
UserData{..} <- getAffection
2016-12-26 13:06:51 +00:00
drawRect' (nodeGraph M.! "nop") (G.RGB 1 0 0) Fill (G.GeglRectangle 10 10 500 500) foreground
liftIO $ G.gegl_node_process $ nodeGraph M.! "sink"
2016-11-18 15:27:47 +00:00
update :: Double -> AffectionState (AffectionData UserData) IO ()
update sec = do
traceM "updating"
-- liftIO $ delaySec 5
2016-12-26 13:06:51 +00:00
ad <- get
ud@UserData{..} <- getAffection
2016-12-11 11:23:46 +00:00
traceM $ (show $ 1 / sec) ++ " FPS"
2016-12-26 13:06:51 +00:00
when (elapsedTime ad > 20) $
2016-11-18 15:27:47 +00:00
put $ ad
{ quitEvent = True
}
clean :: UserData -> IO ()
clean _ = return ()