< Chess

The 0x88 chess board representation is a square-centric method of representing the chess board used by some chess programs. The number 0x88 (13610, 2108, 100010002) is a hexadecimal integer in C syntax. The rank and file positions are each represented by a nibble (hexadecimal digit), and the bit gaps simplify a number of computations to bitwise operations.

Layout

In the 0x88 board-representation the layout is spread out to cover an 8-by-16 board, equal to the size of two adjacent chessboards. Each square of the 8-by-16 matrix is assigned a number as can be seen in the board layout table. In this scheme each nibble represents a rank or a file, so that the 8-bit integer 0x42 represents the square at (4,2) — c4.

Adding 16 to a number for a square results in the number for the square one row above, and subtracting 16 results in the number for the square one row below. To move from one column to another the number is increased on decreased by one. In hexadecimal notation, legal chess positions (A1-H8) are always below 0x88. This layout simplifies many computations that chess programs need to perform by allowing bitwise operations instead of comparisons.

0x88 board layout
0x00 (A)0x01 (B)0x02 (C)0x03 (D)0x04 (E)0x05 (F)0x06 (G)0x07 (H)0x080x090x0A0x0B0x0C0x0D0x0E0x0F
0x07 (8) 707172737475767778797A7B7C7D7E7F
0x06 (7) 606162636465666768696A6B6C6D6E6F
0x05 (6) 505152535455565758595A5B5C5D5E5F
0x04 (5) 404142434445464748494A4B4C4D4E4F
0x03 (4) 303132333435363738393A3B3C3D3E3F
0x02 (3) 202122232425262728292A2B2C2D2E2F
0x01 (2) 101112131415161718191A1B1C1D1E1F
0x00 (1) 000102030405060708090A0B0C0D0E0F

Algebraic notation and conversion

Squares on a chess board with algebraic notation

Each square of the chessboard is identified by a unique coordinate pair — a letter between (a and h) for the file, and a number between 1 and 8 for the rank. This method of referring to squares is a part of algebraic notation. To convert a coordinate pair to a 0x88 value, files are treated as integers, with a corresponding to 0 and h corresponding to 7.

Thus, a1 corresponds to , with all 8 of the bits set to , b2 corresponds to , and h8 corresponds to .

To convert an 0x88 value to a rank-file coordinate pair:

Applications

Off-the-board detection

Off-the-board detection is a feature of chess programs which determines whether a piece is on or off the legal chess board. In 0x88, the highest bit of each nibble represents whether a piece is on the board or not. Specifically, out of the 8 bits to represent a square, the fourth and the eight must both be 0 for a piece to be located within the board. This allows off-the-board detection by bitwise and operations. If $square AND 0x88 (or, in binary, 0b10001000) is non-zero, then the square is not on the board. This bitwise operation requires fewer computer resources than integer comparisons. This makes calculations such as illegal move detection faster.

Square Relations

The difference of valid 0x88 coordinates A and B is unique with respect to distance and direction, which is not true for classical packed three bit rank and file coordinates. That makes lookups for Manhattan distance, possible piece attacks, and legal piece moves more resource friendly. While classical square coordinates in the 0..63 range require 4K (64*64) sized tables, the 0x88 difference takes 1/16 or 256 sized tables - or even 16 less.

An offset of 119 (0x77 as max valid square index) is added, to make +-119 a 0..238 range (size of 240 for alignment reasons).

0x88Diff = 0x77 + A - B

Adoption

Though the 0x88 representation was initially popular, it has been mostly replaced by the system of bitboards.

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.