make make

This commit is contained in:
nek0 2017-01-02 16:22:23 +01:00
parent 5661e72cf2
commit 8fc717fd8b
5 changed files with 40 additions and 18 deletions

View file

@ -56,6 +56,7 @@ executable haskelloids
other-modules: InGame other-modules: InGame
, Types , Types
, Commons , Commons
, Transitions
-- LANGUAGE extensions used by modules in this package. -- LANGUAGE extensions used by modules in this package.
-- other-extensions: -- other-extensions:

View file

@ -174,21 +174,6 @@ load _ = do
, state = Menu , state = Menu
} }
loadMenu :: UserData -> IO UserData
loadMenu ud = do
gegl_node_link (nodeGraph ud M.! KeyMenuOver) (nodeGraph ud M.! KeyFGNop)
hs <- catMaybes <$> foldM (\acc _ -> do
px <- randomRIO (0, 800)
py <- randomRIO (0, 600)
insertHaskelloid acc Nothing (px, py)
) [] ([0..9] :: [Int])
liftIO $ gegl_node_link_many $ map hFlange hs
liftIO $ gegl_node_link (last $ map hFlange hs) (nodeGraph ud M.! KeyHNop)
return ud
{ haskelloids = hs
, fade = FadeIn 1
}
insertHaskelloid :: [Maybe Haskelloid] -> Maybe Int -> (Double, Double) -> IO [Maybe Haskelloid] insertHaskelloid :: [Maybe Haskelloid] -> Maybe Int -> (Double, Double) -> IO [Maybe Haskelloid]
insertHaskelloid hasks split (px, py) = do insertHaskelloid hasks split (px, py) = do
-- liftIO $ traceIO "inserting haskelloid" -- liftIO $ traceIO "inserting haskelloid"

View file

@ -26,7 +26,7 @@ main = withAffection $ AffectionConfig
{ initComponents = All { initComponents = All
, windowTitle = "Haskelloids" , windowTitle = "Haskelloids"
, windowConfig = defaultWindow , windowConfig = defaultWindow
, preLoop = return () , preLoop = transition
, drawLoop = draw , drawLoop = draw
, updateLoop = update , updateLoop = update
, loadState = load , loadState = load
@ -86,6 +86,9 @@ update sec = do
, shots = ups , shots = ups
} }
transition :: Affection us ()
transition = return ()
wrapAround :: (Ord t, Num t) => (t, t) -> t -> (t, t) wrapAround :: (Ord t, Num t) => (t, t) -> t -> (t, t)
wrapAround (nx, ny) width = (nnx, nny) wrapAround (nx, ny) width = (nnx, nny)
where where

21
src/Transitions.hs Normal file
View file

@ -0,0 +1,21 @@
module Transitions where
import Affection
import qualified SDL
import GEGL
import BABL
loadMenu :: UserData -> IO UserData
loadMenu ud = do
gegl_node_link (nodeGraph ud M.! KeyMenuOver) (nodeGraph ud M.! KeyFGNop)
hs <- catMaybes <$> foldM (\acc _ -> do
px <- randomRIO (0, 800)
py <- randomRIO (0, 600)
insertHaskelloid acc Nothing (px, py)
) [] ([0..9] :: [Int])
liftIO $ gegl_node_link_many $ map hFlange hs
liftIO $ gegl_node_link (last $ map hFlange hs) (nodeGraph ud M.! KeyHNop)
return ud
{ haskelloids = hs
, fade = FadeIn 1
}

View file

@ -1,3 +1,5 @@
{-# LANGUAGE MultiParamTypeClasses #-}
module Types where module Types where
import Affection import Affection
@ -15,7 +17,7 @@ data UserData = UserData
-- , debris :: ParticleSystem -- , debris :: ParticleSystem
, wonlost :: Bool , wonlost :: Bool
, pixelSize :: Int , pixelSize :: Int
, state :: StateMachine , state :: State
, fade :: MenuFade , fade :: MenuFade
} }
@ -58,11 +60,21 @@ data NodeKey
| KeyMenuOver | KeyMenuOver
deriving (Ord, Eq) deriving (Ord, Eq)
data StateMachine data State
= Menu = Menu
| HighScore | HighScore
| InGame | InGame
class StateMachine a us where
load :: a -> Affection us ()
update :: a -> Affection us ()
draw :: a -> Affection us ()
clean :: a -> Affection us ()
instance StateMachine State UserData where
update Menu = return ()
data MenuFade data MenuFade
= FadeIn Double = FadeIn Double
| FadeOut Double | FadeOut Double