Commit graph

21 commits

Author SHA1 Message Date
Sam Tay
33f5175595 Add pause feature, closes #5 2018-12-27 13:12:28 -05:00
Sam Tay
b3d812bee5 Formatting only 2018-12-27 12:17:01 -05:00
Sam Tay
ccbd9d8e36 Rename "frozen" -> "locked", better semantics 2018-12-27 10:43:20 -05:00
Sam Tay
ad1fcf9192 Refactor game state computation
Cleaning up the Tetris module, mainly to favor a MonadState style over
explicit `Game -> Game` functions, which were a little awkward. This also
led naturally to explicitly isolating `IO`, by having pure state modifiers
with types like `Tetris a ~ forall m. StateT Game m a` being executed
with `m ~ Identity`, and those few modifiers that need IO specified by
`TetrisT a ~ StateT Game IO a`.
2018-12-27 10:28:26 -05:00
Sam Tay
4f9bcfca34 Add restart option 2017-07-03 00:44:18 -04:00
Sam Tay
2891f7883c Implement custom hard drop previews 2017-07-02 19:02:24 -04:00
Sam Tay
8e2240c87c Add cli opts for score, level, and restricting unicode 2017-07-02 17:47:21 -04:00
Sam Tay
2c150c7b27 Use Linear.V2 instead of tuples 2017-07-02 00:46:16 -04:00
Sam Tay
06c91e4a2b Add hard drop in help and remove semicolons 2017-06-18 17:05:53 -04:00
Sam Tay
94bc6c444b Add hard drop preview
Really annoying to have all these new attributes flying around. The code
would take like 2 lines if I could figure out how to reference the
default bg color from vty..
2017-06-18 16:39:46 -04:00
Sam Tay
87b8e05919 Add GAME OVER callout 2017-06-18 14:58:00 -04:00
Sam Tay
4936597ae2 Add help section and support vim bindings 2017-06-18 14:39:00 -04:00
Sam Tay
a0117d3bb1 Update TODOs 2017-06-18 00:52:51 -04:00
Sam Tay
8361b3464a Improve visuals 2017-06-18 00:25:24 -04:00
Sam Tay
2bc72a0e94 Format, remove unnecessary verbosity 2017-06-17 21:33:01 -04:00
Sam Tay
756fb97414 Implement hard drop and improve Translatable class 2017-06-17 20:30:19 -04:00
Sam Tay
dcacb9bf73 Make visuals a tad clearer with a poor man's grid 2017-06-17 17:00:51 -04:00
Sam Tay
f2327fc3c5 Implement level to gravity delay 2017-06-17 17:00:08 -04:00
Sam Tay
ec72607827 Use vBox, hBox over foldr 2017-06-17 16:02:27 -04:00
Sam Tay
80102d5a4a Derp city over here 2017-06-17 16:01:51 -04:00
Sam Tay
c12bef50b3 Finish level picker, start game interface 2017-06-17 02:55:21 -04:00