User Tools

Site Tools


chess:programming:database

This is an old revision of the document!


Chess - Programming - Database

My propriety database format to hold a record of every move.

FieldBitsRangeComment
Move From6
Move To6
Promotion Type3000=unused, 001=Knight, 010=Bishop, 011=Rook, 100=Queen.
White Elo110-2047Actual elo of white – 1000.
Elo Diff80-2550-255=w, 256-511=b.
Elo Diff Neg10-10=positive, 1=negative.
%WDL90-5110-99=W, 100-199=D, 200-299=L Unused Values 300-511.
Count120-4095Rolling.
Weight-ELO80-255A measure for the likelihood of a win after that particular move has been made. default is to use elo changes.

Moves

Moves are stored in format:

  • A1 = 0, H1 = 7, A8 = 56, H8 = 63.
  • File = <file> - 'A', row = <rank> - '1'.
  • Castle and Enpassant moves are assumed to be valid moves.

Promotion Type

Assumed that the associated moves are for a pawn and this promotion is valid.


White Elo

The average of the ELO rating for the White player - 1000.


Elo Diff & Elo Diff Neg

Used to calculate the ELO rating of the Black Player.

Either add, or subtract this figure from the White Elo.

  • If Elo Diff Neg is set, then subtract, otherwise add.

%WDL

The percentage of Wins, Draws and Losses for the White Player.

  • Obviously, the Black Player would be the opposite.
ValuesDescription
0-99Percent of Wins.
100-199Percent of Draws.
200-299Percent of Losses.
300-511Unused Values.

Count

The number of games having played this move.

A maximum of 4096 games is recorded.

The other fields using this figure for their calculations, such as %WDL, should be recalculated / updated even though this maximum number of 4096 is reached.


Weight

A measure for the likelihood of a win after that particular move has been made.

Range is 0-255.

Default is to use elo changes.

  P1 = (1.0 / (1.0 + std::pow(10.0, ((rating1 - rating2) / 400.0)) ) );
  P2 = 1 - P1;

Database

chess/programming/database.1641896503.txt.gz · Last modified: 2022/01/11 10:21 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki