Stub out some of the interface
This commit is contained in:
parent
4de0c3d8d3
commit
5a1116c6a3
2 changed files with 39 additions and 1 deletions
38
app/Main.hs
38
app/Main.hs
|
@ -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 ()
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue