1 mballs: A microballs game implementation
2 ========================================
4 1. Compiling and running
5 ------------------------
7 To compile it just run 'make' and a binary file called 'mballs' will
10 You can execute it to run the game:
17 There are two players in the game: X and Y. By default, both players
18 are humans, X always plays first and the board size is 8x8.
20 If you select to play against the computer, it will play with player Y.
22 Moves have this format:
26 where, 'from' and 'to' are pairs of row and column, for example:
30 means: move piece from row 'a' and column '1' to row 'a' and
31 column '2'. The '-' character is mandatory.
37 means: move piece from row 'g' and column '3' to row 'f' and
43 mballs executable supports the following options:
45 mballs [ -h ] [ -c ] [ -e<size> ]
49 -c: Select to play against the computer (it'll play with player Y).
51 -e<size>: Custom board size, valid range is from 9 to 16.
57 Creates a 10x10 board to be played by two humans.
61 Creates the default board size (8x8) to be played by a human against
66 Creates a 16x16 board size to be played by a human against the
69 Luiz Fernando N. Capitulino
70 <lcapitulino@gmail.com>