Английская Википедия:0x88

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:About Шаблон:Chess programming series The 0x88 chess board representation is a square-centric method of representing the chess board in computer chess programs. The number 0x88 is a hexadecimal integer (136Шаблон:Sub, 210Шаблон:Sub, 10001000Шаблон:Sub). 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) in zero-based numbering, i.e. c5 in standard algebraic notation.Шаблон:Sfn

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 or decreased by one.Шаблон:Sfn 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.Шаблон:Sfn

0x88 board layoutШаблон:Sfn
0x00 (a) 0x01 (b) 0x02 (c) 0x03 (d) 0x04 (e) 0x05 (f) 0x06 (g) 0x07 (h) 0x08 0x09 0x0A 0x0B 0x0C 0x0D 0x0E 0x0F
0x70 (8) 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D 7E 7F
0x60 (7) 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D 6E 6F
0x50 (6) 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D 5E 5F
0x40 (5) 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D 4E 4F
0x30 (4) 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D 3E 3F
0x20 (3) 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F
0x10 (2) 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
0x00 (1) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F

Algebraic notation and conversion

Файл:SCD algebraic notation.svg
Squares on a chess board with algebraic notation

Шаблон:See also

The modern standard to identify the squares on a chessboard and moves in a game is algebraic notation, whereby each square of the board is identified by a unique coordinate pair — a letter between a and h for the horizontal coordinate, known as the file, and a number between 1 and 8 for the vertical coordinate, known as the rank.

In computer chess, file-rank coordinates are internally represented as integers ranging from 0 to 7, with file a mapping to 0 through to file h mapping to 7, while the rank coordinate is shifted down by one to the range 0 to 7.

An advantage of the 0x88 coding scheme is that values can be easily converted between 0x88 representation and file-rank coordinates using only bitwise operations, which are simple and efficient for computer processors to work with. To convert a zero-based file-rank coordinate to 0x88 value:

<math> \text{square}_{0\rm{x}88} = (\text{rank}_\text{0 to 7} << 4) + \text{file}_\text{0 to 7}</math>

Thus, a1 corresponds to <math>00000000_2</math>, with all 8 of the bits set to <math>0</math>, b2 corresponds to <math>00010001_2</math>, and h8 corresponds to <math>01110111_2</math>.Шаблон:Sfn

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

<math> \text{file}_\text{0 to 7} = \text{square}_{0\rm{x}88}\ \&\ 7</math>
<math> \text{rank}_\text{0 to 7} = ( \text{square}_{0\rm{x}88}\ >> 4 )</math>

Note: In the above formulas, << and >> represent left and right logical bit shift operations respectively while & represents bitwise and.

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 eighth must both be 0 for a piece to be located within the board.Шаблон:Sfn This allows off-the-board detection by bitwise Шаблон:Smallcaps operations. If $square AND 0x88 (or, in binary, 0b10001000) is non-zero, then the square is not on the board.Шаблон:Sfn This bitwise operation requires fewer computer resources than integer comparisons. This makes calculations such as illegal move detection faster.Шаблон:Sfn

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-sized tables (64×64), the 0x88 difference takes 1/16 that or 256-sized tables—or even 16 less.Шаблон:Sfn

An offset of 119 (0x77 as the maximum valid square index) is added, to make ±119 a 0–238 range (a size of 240 for alignment reasons).Шаблон:Sfn

0x88Diff = 0x77 + A − B

Adoption

Шаблон:See also Though the 0x88 representation was initially popular, it has been mostly replaced by the system of bitboards.Шаблон:Sfn

References

Шаблон:Reflist

Works cited

Шаблон:Refbegin

Шаблон:Refend

External links