X-Git-Url: https://git.danieliu.xyz/?p=ekitaihs.git;a=blobdiff_plain;f=Ekitai.hs;h=028373a2631cf410e89c18a54874d3a2d086c5ba;hp=6c1609ec7047d4b64d4fcaa68d086203eec33502;hb=HEAD;hpb=259904bfc4ca2f8b90381dfdb887750b9bdaf368 diff --git a/Ekitai.hs b/Ekitai.hs index 6c1609e..028373a 100644 --- a/Ekitai.hs +++ b/Ekitai.hs @@ -2,27 +2,19 @@ import System.Environment import System.IO import qualified Data.Vector as V -import qualified Brick as B import Parse import Sim import Render --- ui :: B.Widget () --- ui = B.str "hello" <+> B.str "World" - main = do + -- handle file stuff argv <- getArgs (opts, fname) <- ekitaiOpts argv handle <- openFile fname ReadMode - contents <- hGetContents handle - putStr contents + contents <- hGetLines handle hClose handle - initialState <- buildInitialState $ stringToSim 10 10 contents - endState <- B.defaultMain ekitaiApp initialState - print endState - --- main :: IO () --- main = do - -- return 0 + -- start brick + ekitaiMain (stringToSim contents) (optTimeStep opts) + return 0