Page 1 of 1

Bitboard for a non-chess game

Posted: Tue Jun 05, 2018 8:25 pm
by tysen2k
I’m using bitboards for a certain game that has some squares occupied and others that are empty. I’m trying to come up with an efficient way of identifying groups of exactly 1 or 2 empty squares that are completely surrounded by occupied squares (or the edge) – orthogonal directions only. So if the bitboard that identifies occupied squares is

00000000
00011110
00100101
00011011
00001010
00001010
00111010
00100110

Then I’d like to be able to get a function that returns

00000000
00000000
00011010
00000000
00000000
00000000
00000000
00011000

It’s easy to create a function that identifies the groups of size 1 (empty & occupied_shift_down & occupied_shift up & occupied_shift_left & occupied_shift_right, where the shift functions also include the border), but I’m struggling to come up with one that will find groups of size 2. Any suggestions?

Re: Bitboard for a non-chess game

Posted: Tue Jun 05, 2018 10:46 pm
by Evert
You should be able to use the same logic as for pawn duo's and hanging pawns (there's a breakdown of the logic on CPW). Essentially you have to find squares that border exactly one empty square, which can be done by testing for squares that have an empty square to the West (say), but not in any of the other directions. The union of those squares with those that have a free square to the East gives you horizontal pairs, and you can do the same to find the vertical pairs.
This will be four times as expensive as the single test, because you need to test all four directions. I don't think you can avoid that.

Alternatively, you can apply your original test four times, but with one of the directions shifted over two squares. You then need to AND with the bitmask of empty squares to avoid false positives for situations like

Code: Select all

0110
1101
0110
Which would give

Code: Select all

0000
0110
0000

Re: Bitboard for a non-chess game

Posted: Tue Jun 05, 2018 11:02 pm
by Gerd Isenberg
The naive disjunctiv normal form approach would be, with some subexpressions to optimize

Code: Select all

oneEmptyNeighbor =
  ( occupied_shift_left & ~occupied_shift_down & ~occupied_shift_right & ~occupied_shift_up)
| (~occupied_shift_left &  occupied_shift_down & ~occupied_shift_right & ~occupied_shift_up)
| (~occupied_shift_left & ~occupied_shift_down &  occupied_shift_right & ~occupied_shift_up)
| (~occupied_shift_left & ~occupied_shift_down & ~occupied_shift_right &  occupied_shift_up)
;
group2 = oneEmptyNeighbor & ~occupied;
see also
https://chessprogramming.wikispaces.com ... igitCounts

Re: Bitboard for a non-chess game

Posted: Wed Jun 06, 2018 4:44 am
by AlvaroBegue
I would do something like this:

Code: Select all

#include <iostream>

typedef unsigned long long u64;

void print_bb(u64 x) {
  for (int row = 7; row >= 0; row--) {
    for (int col = 7; col >= 0; col--)
      std::cout << ((x >> (row*8+col)) & 1);
    std::cout << '\n';
  }
    
}

inline u64 N(u64 x) {
  return x << 8;
}

inline u64 W(u64 x) {
  return (x & 0xfefefefefefefefeull) >> 1;
}

inline u64 S(u64 x) {
  return x >> 8;
}

inline u64 E(u64 x) {
  return (x & 0x7f7f7f7f7f7f7f7full) << 1;
}

u64 small_gaps(u64 x) {
  u64 z = ~x;
  u64 isolates   = ~S(z) & ~N(z) & ~E(z) & ~W(z);
  u64 west_only  = ~S(z) & ~N(z) & ~E(z) &  W(z);
  u64 east_only  = ~S(z) & ~N(z) &  E(z) & ~W(z);
  u64 north_only = ~S(z) &  N(z) & ~E(z) & ~W(z);
  u64 south_only =  S(z) & ~N(z) & ~E(z) & ~W(z);

  u64 west_ends = west_only & W(east_only);
  u64 north_ends = north_only & N(south_only);
  
  return z & (west_ends | E(west_ends) | north_ends | S(north_ends) | isolates);
}

int main() {
  print_bb(small_gaps(0b0000000000011110001001010001101100001010000010100011101000100110ull));
}


Re: Bitboard for a non-chess game

Posted: Thu Jun 07, 2018 12:34 am
by tysen2k
Thanks! These are good suggestions.