From a0117d3bb1fa1895fdd08b079e024ae1b3d7beee Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sun, 18 Jun 2017 00:52:51 -0400 Subject: [PATCH] Update TODOs --- src/Tetris.hs | 9 +++++++-- src/UI/Game.hs | 1 - 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 816dbc5..bc1dac9 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -18,8 +18,13 @@ import Data.Maybe (fromMaybe) import Data.Monoid (First(..)) -- TODO --- 1. USE linear V2 instead of tuples.. dummy --- 2. leaderboard saved to txt file (requires adding viewport for name entry) +-- 0. BUG in hard drop - if block is under an overhang then it gets sent above +-- 1. leaderboard saved to txt file (requires adding viewport for name entry) +-- and probably wrapping game in a ui state +-- 2. consider adding hard drop preview like other games, but need another color +-- 3. USE linear V2 instead of tuples.. dummy +-- 4. README with gif +-- 5. release binaries for darwin and linux -- Types and instances diff --git a/src/UI/Game.hs b/src/UI/Game.hs index 2f8c1b1..551948e 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -151,7 +151,6 @@ drawNextShape t = blk = Block t (0,0) (relCells t) cs = blk ^. to coords --- TODO test on mac terminal defAttr vs (bg black) theMap = attrMap V.defAttr [ (iAttr, on V.cyan V.cyan) , (oAttr, on V.yellow V.yellow)