tak-rs

Implementation of tak in Rust.

Tak is a game from The Kingkiller Chronicles, which has recently released a set of beta rules. http://www.cheapass.com/sites/default/files/TAKBetaRules9-9.pdf

I'm not entirely sure where this will end up. It will start as a command line application that will validate moves and declare a winner. From there it may turn into an AI project, or a nice GUI, or a webapp for two people to play online. (Or some combination of the three.)

TODO

  1. Only can move piles you control

Writing games of tak

I need a good way to transcribe moves as strings, so I am borrowing from the way chess games are transcribed. The vertical axis is labelled with numbers, and the horizontal axis with letters. A turn is a location followed by a coded letter. For the movements, the letter is followed by a list of numbers describing the amount each piece was moved, from the bottom of the stack to the top. For placing stones, the number following denotes whether the stone belongs to player 1 (whoever goes first) or player 2.

To summarize a game, both players moves are put on the same line, separated by a space. (This isn't necessary for computers, but it makes it more human-readable). It's worth remembering that the moves are pieces laid, so the first line is weird, since the players are laying stones of the opposite color. As an example, here's a game I played (poorly) against myself on a 5x5 board. (But seriously, I haven't even figured out how to use standing stones or my Capstone effectively.)

Breaking it down:

At this point the board looks like:

5| | | | | 4| | | | | 3| | |F2| | 2| | | |F1| 1|F2| | | |F1 a b c d e

So that move took a piece from c3, and moved it right 1 space, onto d3. Now (with right being the top of piles), the board looks like:

5| | | |F1 | 4| | |F2 |F2 | 3| | | |F1F2| 2| | | |F1 |F1 1|F2 | | | |F1 a b c d e

With a couple of questionable moves, P1 has gotten himself into a pickle:

5| | | |F1 | 4|F1 |F2 |F2 |F2F1|F1 3| |F2 |F1 |F1F2|F2 2| | | |F1 |F1 1|F2 | | | |F1 a b c d e

P1 continuing to not even drop stones, but just try to move around to stay alive, now makes a really stupid move to lose:

5| | |F2 | | 4|F1 |F2F1|F2 |F2F1| 3| |F2F1|F2 |F1F2|F2F1 2| |F2 |F2F1|F1 |F1 1|F2 |F2 | | |F1 a b c d e

5| | |F2 | | 4|F1 |F2F1 |F2 |F2F1 | 3| |F2F1 |F2F1 |F1F2F2| 2| |F2 |F2F1 |F1 |F1 1|F2 |F2 | | |F1 a b c d e

Leaving the easy win for P2 with:

5| | |F2 | | 4|F1 |F2F1 |F2 |F2F1 | 3| |F2F1F2|F2F1F2|F1 | 2| |F2 |F2F1 |F1 |F1 1|F2 |F2 | | |F1 a b c d e

Note that the winning path goes b1, b2, b3, c3, c4, c5.