From 70270dbbcedcd0af1e488ab4adb363d747adf6f1 Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Mon, 15 Mar 2021 23:47:38 +0100 Subject: [PATCH 1/2] remove redundant .^ in Tetris.hs --- src/Tetris.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 61fed94..73e2ea6 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -178,7 +178,7 @@ initGame lvl = do } isGameOver :: Game -> Bool -isGameOver g = blockStopped g && g ^. block ^. origin == startOrigin +isGameOver g = blockStopped g && g ^. (block . origin) == startOrigin -- | The main game execution, this is executed at each discrete time step timeStep :: MonadIO m => TetrisT m () From ffd621f36a99f000e6e32bcd8c8b5b3931d74f5f Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Mon, 15 Mar 2021 23:49:15 +0100 Subject: [PATCH 2/2] remove redundant .^ in Game.hs --- src/UI/Game.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/UI/Game.hs b/src/UI/Game.hs index e62e55e..22fd589 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -134,7 +134,7 @@ handleTick ui = -- | Restart game at the same level restart :: UI -> EventM Name (Next UI) restart ui = do - let lvl = ui ^. game ^. level + let lvl = ui ^. (game . level) g <- liftIO $ initGame lvl continue $ ui & game .~ g & locked .~ False @@ -161,8 +161,8 @@ drawGrid ui = foldr (<+>) emptyWidget . M.filterWithKey (\(V2 _ y) _ -> r == y) $ mconcat - [ drawBlockCell NormalBlock <$> ui ^. game ^. board - , blockMap NormalBlock (ui ^. game ^. block) + [ drawBlockCell NormalBlock <$> ui ^. (game . board) + , blockMap NormalBlock (ui ^. (game . block)) , case (ui ^. preview) of Nothing -> M.empty Just s -> blockMap (HardDropBlock s) (evalTetris hardDroppedBlock (ui ^. game))