From f57fa64bfb8ffae4cb7d8978c6bd1315316ed713 Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Mon, 15 Mar 2021 23:44:15 +0100 Subject: [PATCH 1/6] remove redundant brackets in Tetris.hs --- src/Tetris.hs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 61fed94..641f9b7 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -143,8 +143,8 @@ rotateRaw b@(Block s o@(V2 xo yo) cs) s == I && V2 xo (yo + 1) `elem` cs = rotateWith clockwise | otherwise = rotateWith counterclockwise where - clockwise = (+ o) . (cwperp) . (subtract o) - counterclockwise = (+ o) . LV.perp . (subtract o) + clockwise = (+ o) . cwperp . subtract o + counterclockwise = (+ o) . LV.perp . subtract o rotateWith dir = b & extra %~ fmap dir cwperp (V2 x y) = V2 y (-x) @@ -160,7 +160,7 @@ coords b = b ^. origin : b ^. extra bagFourTetriminoEach :: Seq.Seq Tetrimino -> IO (Tetrimino, Seq.Seq Tetrimino) bagFourTetriminoEach (t :<| ts) = pure (t, ts) bagFourTetriminoEach Empty = - bagFourTetriminoEach <=< shuffle . Seq.fromList . take 28 $ cycle [(I) ..] + bagFourTetriminoEach <=< shuffle . Seq.fromList . take 28 $ cycle [I ..] -- | Initialize a game with a given level initGame :: Int -> IO Game @@ -260,8 +260,8 @@ blockStopped g = isStopped (g ^. board) (g ^. block) isStopped :: Board -> Block -> Bool isStopped brd = any stopped . coords where - stopped = (||) <$> atBottom <*> (`M.member` brd) . (translate Down) - atBottom = (== 1) . (view _y) + stopped = (||) <$> atBottom <*> (`M.member` brd) . translate Down + atBottom = (== 1) . view _y hardDrop :: Tetris () hardDrop = hardDroppedBlock >>= assign block @@ -277,8 +277,8 @@ hardDroppedBlock = do , xo == x , yo < y ] - minY = minimum $ (view _y) <$> blockCoords - dist = minimum $ (subtract 1) <$> (minY : diffs) + minY = minimum $ view _y <$> blockCoords + dist = minimum $ subtract 1 <$> (minY : diffs) translateBy dist Down <$> use block -- | Freeze current block @@ -326,7 +326,7 @@ shuffle xs | null xs = mempty | otherwise = do randomPosition <- getStdRandom (randomR (0, length xs - 1)) - let (left, (y :<| ys)) = Seq.splitAt randomPosition xs + let (left, y :<| ys) = Seq.splitAt randomPosition xs fmap (y <|) (shuffle $ left >< ys) v2 :: (a, a) -> V2 a From 9f971cb15913f6d3e2018cdd3153d0611804d090 Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Mon, 15 Mar 2021 23:45:26 +0100 Subject: [PATCH 2/6] remove redundant brackets 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..315c9bf 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -163,7 +163,7 @@ drawGrid ui = $ mconcat [ drawBlockCell NormalBlock <$> ui ^. game ^. board , blockMap NormalBlock (ui ^. game ^. block) - , case (ui ^. preview) of + , case ui ^. preview of Nothing -> M.empty Just s -> blockMap (HardDropBlock s) (evalTetris hardDroppedBlock (ui ^. game)) , emptyCellMap @@ -174,7 +174,7 @@ drawGrid ui = emptyCellMap :: Map Coord (Widget Name) emptyCellMap = M.fromList - [ ((V2 x y), emptyGridCellW) | x <- [1 .. boardWidth], y <- [1 .. boardHeight] ] + [ (V2 x y, emptyGridCellW) | x <- [1 .. boardWidth], y <- [1 .. boardHeight] ] emptyGridCellW :: Widget Name emptyGridCellW = withAttr emptyAttr cw @@ -275,7 +275,7 @@ drawKeyInfo action keys = drawGameOver :: Game -> Widget Name drawGameOver g = - if (isGameOver g) + if isGameOver g then padLeftRight 4 $ withAttr gameOverAttr $ str "GAME OVER" else emptyWidget From 1cdeaa759b838c07e9ca9e577e271edec8dd0cfa Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Tue, 16 Mar 2021 00:01:25 +0100 Subject: [PATCH 3/6] 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..37743d1 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -205,7 +205,7 @@ clearFullRows = do modifying board $ M.filterWithKey $ \(V2 _ y) _ -> y `notElem` fullRows -- Shift cells above full rows modifying board $ M.mapKeysMonotonic $ over _y $ \y -> - y - (length $ filter (< y) fullRows) + y - length (filter (< y) fullRows) return $ length fullRows -- | Empties row on 0, otherwise appends value (just keeps consecutive information) From 76f9007dc27503fe4d506e3be50c95fd682dcb6a Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Tue, 16 Mar 2021 00:03:06 +0100 Subject: [PATCH 4/6] 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..1859fbb 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -222,7 +222,7 @@ drawStats g = ] drawStat :: String -> Int -> Widget Name -drawStat s n = padLeftRight 1 $ str s <+> (padLeft Max $ str $ show n) +drawStat s n = padLeftRight 1 $ str s <+> padLeft Max (str $ show n) drawLeaderBoard :: Game -> Widget Name drawLeaderBoard _ = emptyWidget @@ -270,8 +270,8 @@ drawHelp = drawKeyInfo :: String -> String -> Widget Name drawKeyInfo action keys = - (padRight Max $ padLeft (Pad 1) $ str action) - <+> (padLeft Max $ padRight (Pad 1) $ str keys) + padRight Max (padLeft (Pad 1) $ str action) + <+> padLeft Max (padRight (Pad 1) $ str keys) drawGameOver :: Game -> Widget Name drawGameOver g = From d162cffc8be1b08c82120d3267f94f99b2fc221b Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Tue, 16 Mar 2021 00:06:22 +0100 Subject: [PATCH 5/6] remove redundant $s 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..d223e01 100644 --- a/src/UI/Game.hs +++ b/src/UI/Game.hs @@ -231,8 +231,8 @@ drawInfo :: Game -> Widget Name drawInfo g = hLimit 18 -- size of next piece box $ vBox [ drawNextShape (g ^. nextShape) - , padTop (Pad 1) $ drawHelp - , padTop (Pad 1) $ drawGameOver g + , padTop (Pad 1) drawHelp + , padTop (Pad 1) (drawGameOver g) ] drawNextShape :: Tetrimino -> Widget Name @@ -258,7 +258,7 @@ drawHelp = $ padTopBottom 1 $ vBox $ map (uncurry drawKeyInfo) - $ [ ("Left" , "h, ←") + [ ("Left" , "h, ←") , ("Right" , "l, →") , ("Down" , "j, ↓") , ("Rotate" , "k, ↑") From 1caafe0b352193a192f08a679e3925e55035b0c4 Mon Sep 17 00:00:00 2001 From: Willem Van Onsem Date: Tue, 16 Mar 2021 00:09:36 +0100 Subject: [PATCH 6/6] use maybe instead of fromMaybe --- app/Main.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Main.hs b/app/Main.hs index ec611e7..2011352 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,7 +1,6 @@ module Main where import Control.Monad (when) -import Data.Maybe (fromMaybe) import Data.Monoid ((<>)) import System.Exit (exitSuccess) import System.IO (readFile, writeFile) @@ -75,7 +74,7 @@ main :: IO () main = do (Opts hd ml hs) <- execParser fullopts -- get CLI opts/args when hs (getHighScore >>= printM >> exitSuccess) -- show high score and exit - l <- fromMaybe pickLevel (return <$> ml) -- pick level prompt if necessary + l <- maybe pickLevel return ml -- pick level prompt if necessary g <- playGame l (hdOptStr hd) -- play game handleEndGame (_score g) -- save & print score