pituicat/src/Affection.hs

78 lines
2.2 KiB
Haskell
Raw Normal View History

{-# LANGUAGE RecordWildCards #-}
2016-03-25 08:41:22 +00:00
module Affection
( withAffection
2016-03-25 10:43:31 +00:00
, withWindow
, withDefaultWindow
, delaySec
2016-03-26 02:50:39 +00:00
, module Affection.Render
2016-11-02 00:14:53 +00:00
, module Types
2016-03-25 08:41:22 +00:00
) where
import qualified SDL
import qualified GEGL as G
import qualified Data.Text as T
import Data.Maybe
2016-11-02 00:14:53 +00:00
import System.Clock
import Control.Monad.Loops
import Control.Monad.State
import Control.Monad.Reader
import Control.Concurrent.MVar
2016-03-25 10:43:31 +00:00
2016-03-25 15:58:46 +00:00
import Affection.Render
import Affection.Types as Types
2016-03-25 15:58:46 +00:00
withAffection :: AffectionConfig us -> IO ()
withAffection conf@AffectionConfig{..} = do
case initComponents of
All ->
SDL.initializeAll
Only is ->
SDL.initialize is
2016-11-02 00:14:53 +00:00
execTime <- newMVar =<< getTime Monotonic
window <- SDL.createWindow windowTitle windowConfig
surface <- SDL.getWindowSurface window
2016-11-02 00:14:53 +00:00
initContainer <- return $ AffectionData
{ affectionConfig = conf
, quitEvent = False
, userState = userData
, drawWindow = window
, drawSurface = surface
}
state <- newMVar initContainer
2016-11-02 00:14:53 +00:00
(res, nState) <- runStateT ( Types.runState $
whileM_ (do
current <- get
return $ Types.quitEvent current
)
$ do
2016-11-02 00:14:53 +00:00
now <- liftIO $ getTime Monotonic
lastTime <- liftIO $ fromMaybe now <$> tryReadMVar execTime
drawLoop
updateLoop $ (fromIntegral $ toNanoSecs $ diffTimeSpec lastTime now) /
(fromIntegral 10 ^ 9)
liftIO $ putMVar execTime $ now
) initContainer
SDL.quit
2016-03-25 10:43:31 +00:00
withWindow :: Monad m => T.Text -> WindowConfig -> SDL.RendererConfig -> RenderT m a -> IO ()
2016-03-25 15:58:46 +00:00
withWindow title wconf rconf ops = do
window <- SDL.createWindow title wconf
-- I don't need a renderer here, i need a surface
renderer <- SDL.createRenderer window (-1) rconf
surface <- SDL.getWindowSurface window
G.gegl_init
-- I think I need some AffectionT or someting similar here and not a RenderT
-- from SDL.
2016-03-25 15:58:46 +00:00
inRender renderer $ ops
G.gegl_exit
SDL.destroyWindow window
2016-03-25 10:43:31 +00:00
withDefaultWindow :: Monad m => T.Text -> (RenderT m a) -> IO ()
withDefaultWindow title ops = withWindow title defaultWindow SDL.defaultRenderer ops
2016-03-25 10:43:31 +00:00
delaySec :: Int -> IO ()
delaySec dur = SDL.delay (fromIntegral $ dur * 1000)