Stub out some of the interface

This commit is contained in:
Sam Tay 2017-06-15 23:39:07 -04:00
parent 4de0c3d8d3
commit 5a1116c6a3
2 changed files with 39 additions and 1 deletions

View file

@ -1,6 +1,42 @@
module Main where module Main where
import Control.Concurrent (threadDelay, forkIO)
import Control.Monad (void, forever)
import Tetris import Tetris
import Brick
import Brick.BChan
import qualified Graphics.Vty as V
-- | Ticks mark passing of time
data Tick = Tick
-- | Named resources
type Name = ()
app :: App Game Tick Name
app = undefined
main :: IO () main :: IO ()
main = undefined main = pickLevel >>= playGame
pickLevel :: IO Int
pickLevel = undefined
playGame :: Int -> IO ()
playGame lvl = do
let delay = levelToDelay lvl
chan <- newBChan 10
forkIO $ forever $ do
writeBChan chan Tick
threadDelay delay
initialGame <- initGame lvl
customMain (V.mkVty V.defaultConfig) (Just chan) app initialGame >>= handleEndGame
levelToDelay :: Int -> Int
levelToDelay = undefined
-- | TODO possibly save high score (with 3 initials? kick it real old school?) to ~/.tetris
handleEndGame :: Game -> IO ()
handleEndGame = const $ return ()

View file

@ -29,7 +29,9 @@ executable tetris
main-is: Main.hs main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base build-depends: base
, microlens
, tetris , tetris
, vty >= 5.15
default-language: Haskell2010 default-language: Haskell2010
test-suite tetris-test test-suite tetris-test