From 0bf364ec12b15520bdb1edb30e89ce39aa7e2e3b Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Wed, 14 Jun 2017 22:25:32 -0400 Subject: [PATCH] Implement clearing full rows --- src/Tetris.hs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 7567538..845a1e6 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -52,6 +52,8 @@ data Game = Game , _board :: Board } deriving (Eq, Show) +makeLenses ''Game + -- Translate class for direct translations, without concern for boundaries -- Shiftable concerns safe translations with boundaries @@ -135,7 +137,19 @@ initGame lvl = do , _score = 0 , _board = mempty } --- | TODO wallkicks http://tetris.wikia.com/wiki/TGM_rotation +-- TODO check if mapKeysMonotonic works +clearFullRows :: Game -> Game +clearFullRows g = g & board %~ clearBoard + where clearBoard = M.mapKeys shiftRowsAbove . M.filterWithKey isInFullRow + isInFullRow (_,y) _ = y `elem` fullRowIndices + fullRowIndices = filter isFullRow [1..boardHeight] + isFullRow r = boardWidth == (length . M.filterWithKey (inRow r) $ g ^. board) + inRow r (_, y) _ = r == y + shiftRowsAbove (x,y) = + let offset = length . filter (< y) $ fullRowIndices + in (x, y - offset) + +-- TODO wallkicks http://tetris.wikia.com/wiki/TGM_rotation shuffle :: Seq.Seq a -> IO (Seq.Seq a) shuffle xs