ehulinsky / AnalogChess

Chess but no grid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Analog Chess

This is a version of chess where the pieces are not constrained to an 8x8 grid, and instead can move to any position on the board. After clicking on a piece, the areas it may move to are highlighted in green, and areas the enemy can move to are highlighted in red. Drag the piece to move it, and to confirm a move, either click on the piece again or press enter. To cancel a move, press escape or click anywhere off the piece.

There is no check or checkmate in this game. To win, you simply need to capture the opponent's king. This is mainly because stalemate is basically impossible, as the king can always move an infintesimal amount, and also because implementing check/checkmate would destroy the last ounce of sanity I have left.

Pieces

Each piece's moves are based on it's moves in regular chess, but in Analog Chess, pieces may move to any position along their trajectory.

Pawn: May move 0-2 squares on it's first move, 0-1 otherwise. Can only attack diagonally. Sadly en passant (the funny move) is not implemented yet because I have no idea how it would work.

Bishop: Moves any distance diagonally

Knight: Moves in a circle of radius sqrt(5), which is the distance it travels in it's usual L move.

Rook: Moves any distance orthogonally

Queen: Moves any distance orthogonally or diagonally.

King: Moves 0-1 squares orthogonally or 0-sqrt(2) squares diagonally. It is allowed to move into check because this game was way too complicated to code already. You lose if your king dies.

The king may castle with the rooks, and it is allowed to castle out of, into, or through check.

Capturing

Capturing in this game is more powerful than in normal chess. Basically, if your piece overlaps the opponent's piece it is captured, but you cannot move past the first piece you overlap.

Example

One interesting side effect of this is that you can capture multiple pieces at once. :)

Code

To run the code you will need to install Python and the PyGame library, and then run the latest .py file.

About

Chess but no grid

License:MIT License


Languages

Language:Python 100.0%