From 8e1c949a69456b1a8866972a3cf6121c4539b7f2 Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sat, 17 Jun 2017 02:54:40 -0400 Subject: [PATCH] Rename blockCoords -> coords --- src/Tetris.hs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 89d2652..688fd54 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -125,8 +125,8 @@ rotate' b@(Block s o@(xo,yo) cs) counterclockwise (xo, yo) (x, y) = (xo + yo - y, x + yo - xo) -- | Get coordinates of entire block -blockCoords :: Block -> [Coord] -blockCoords b = b ^. origin : b ^. extra +coords :: Block -> [Coord] +coords b = b ^. origin : b ^. extra -- Higher level functions on game and board @@ -217,13 +217,13 @@ blockStopped g = isStopped (g ^. board) (g ^. block) -- | Check if a block on a board is stopped from further gravitation isStopped :: Board -> Block -> Bool -isStopped b = any (`M.member` b) . map (translate Down) . blockCoords +isStopped b = any (`M.member` b) . map (translate Down) . coords -- | Freeze current block freezeBlock :: Game -> Game freezeBlock g = g & board %~ (M.union blkMap) where blk = g ^. block - blkMap = M.fromList $ zip (blk ^. to blockCoords) (repeat $ blk ^. shape) + blkMap = M.fromList $ zip (blk ^. to coords) (repeat $ blk ^. shape) -- | Replace block with next block nextBlock :: Game -> IO Game @@ -257,7 +257,7 @@ gravitate = shift Down -- | Checks if block's potential new location is valid isValidBlockPosition :: Block -> Board -> Bool -isValidBlockPosition blk brd = all validCoord $ blk ^. to blockCoords +isValidBlockPosition blk brd = all validCoord $ blk ^. to coords where validCoord = (&&) <$> isFree brd <*> isInBounds -- | Shuffle a sequence (random permutation)