Author: Dann Corbit
Date: 14:02:47 03/03/06
Go up one level in this thread
On March 03, 2006 at 15:58:21, Steffan Westcott wrote: >Gerd, > >I may have terribly misunderstood things, but there is direct algorithm for >mapping the 128 possible attack bitboards to 7 bit numbers. Additionally, the >algorithm does not need the location of the ray source square, nor any lookup >tables. > >For a ray along a rank or diagonal, it is sufficient to collapse the files: > >typedef unsigned __int64 BitBoard; > >int collapsed_files_index(BitBoard b) >{ > b |= b >> 32; > b |= b >> 16; > b |= b >> 8; > return b & 0xFF; >} > >For a ray along a file, a little more trickery is needed: > >int collapsed_ranks_index(BitBoard b) >{ > b |= b >> 4; // No masking needed > b |= b >> 2; // " " > b |= b >> 1; // " " > return ((b & 0x0101010101010101) * 0x0102040810204080) >> 56; >} > >Both of the above routines return 8 bit results. Depending on the left/right >orientation of the ray in relation to your chosen bitboard bit numbering scheme, >you may need to shift the result right by 1 bit. > >In addition, if you know the co-ordinates of the source square (either at >runtime or compile time), simpler variants of the above routines are possible. > >I don't use techniques like these as I avoid serialisation of moves or features >as much as possible. However, I offer you and Dann the above as it may be of >interest. I don't understand why we need to transform them at all. I just switch on the 128 bitboard cases. If you look at the numbers themselves, they will be ugly, I admit. But I give them nice names like: case A1_B2_E5_H8: /* 64 bit unsigned with bits A1, B2, E5, H8 set ... */ /* Do Stuff */ break; It seems to me like a bunch of math for no particular purpose, unless the compiler can create a more efficient jump table if it knows the size of the switch variable is 1 char.
This page took 0.01 seconds to execute
Last modified: Thu, 15 Apr 21 08:11:13 -0700
Current Computer Chess Club Forums at Talkchess. This site by Sean Mintz.