1
0
mirror of https://github.com/maaslalani/gambit.git synced 2024-11-28 08:38:36 +02:00
Play chess in your terminal
Go to file
2021-11-27 00:08:07 -05:00
board.go feat: flip board 2021-11-27 00:08:07 -05:00
go.mod feat: add row and column labels 2021-11-26 23:49:43 -05:00
go.sum feat: add row and column labels 2021-11-26 23:49:43 -05:00
main.go feat: flip board 2021-11-27 00:08:07 -05:00
piece_test.go feat: board, pieces, players 2021-11-26 22:22:44 -05:00
piece.go feat: draw board 2021-11-26 22:53:02 -05:00
player.go feat: board, pieces, players 2021-11-26 22:22:44 -05:00
README.md doc: initial spec 2021-11-26 20:52:32 -05:00

Gambit

Chess board in your terminal.

Play

. . . . . . . . . .
. ♜	♞	♝	♛	♚	♝	♞	♜ .
. ♟	♟	♟	♟	♟	♟	♟	♟ .
.                 .
.                 .
.                 .
.                 .
. ♙	♙	♙	♙	♙	♙	♙	♙ .
. ♖	♘	♗	♕	♔	♗	♘	♖ .
. . . . . . . . . .

Move

Suppose you want to open as white with Pawn E4. You will first select the square with the piece you want to move by typing E2, then type the square of the desired end position E4.

Just like a real chess board, gambit currently supports illegal moves. This will likely change in the future.

Players

gambit supports local and networked play. You can play a local game by running gambit and moving the pieces. You can flip the board by pressing Space to allow the second player to go.

For networked play, both players can run gambit unique-room-id, this will connect both players to a shared room in which both can take turns making moves.