Commit graph

14 commits

Author SHA1 Message Date
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
09de01695c Clean up, use std lib functions 2018-12-26 20:26:30 -05:00
Sam Tay
6ee74604e8 Bump stack lts to 13.0 2018-12-26 18:56:33 -05:00
Sam Tay
83d59f1e3c Add lower & upper bounds to dependencies 2017-08-10 14:56:52 -04:00
Sam Tay
e91b03aed1 Update version to 0.1.2 2017-07-03 00:44:18 -04:00
Sam Tay
99d6a9c56a Keep track of highest score and congratulate player 2017-07-03 00:21:21 -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
23e513f003 Update release numbers to 0.1.1 2017-06-27 23:58:35 -04:00
Sam Tay
0254c0bbcf Delete test suite 2017-06-18 00:27:27 -04:00
Sam Tay
c12bef50b3 Finish level picker, start game interface 2017-06-17 02:55:21 -04:00
Sam Tay
5a1116c6a3 Stub out some of the interface 2017-06-15 23:39:07 -04:00
Sam Tay
1633c4a9c7 Build out more game mechanics
Typical tetris randomizer, bring in `containers`, swap to absolute cell
locations, write game initializer.
2017-06-14 00:28:45 -04:00
Sam Tay
7cdf59d5aa First commit, some basic Tetris types 2017-06-12 23:47:31 -04:00