Search found 4 matches

by jashwant
Sun Oct 31, 2010 7:46 am
Forum: Programming and Technical Discussions
Topic: General query about bitboard
Replies: 3
Views: 2875

Re: General query about bitboard

If you want to avoid scanning for bits, use piece lists (updating their locations as the pieces move around).
Can you explain piece list algo a little bit ? I am not getting any idea about this .
by jashwant
Sat Oct 30, 2010 5:19 am
Forum: Programming and Technical Discussions
Topic: General query about bitboard
Replies: 3
Views: 2875

General query about bitboard

I have got the concept of knight moves in bitboard. I need an array knight[64] in which all possible knight moves will be stored.
But how can I get the position of my knights in bitboard without looping through the bits of knight ??

i.e. How can I know , where my knights are placed in chessboard ...
by jashwant
Wed Oct 27, 2010 5:27 pm
Forum: Programming and Technical Discussions
Topic: Good examples for magic or rotated boards
Replies: 7
Views: 6284

Re: Good examples for magic or rotated boards

Nice approach..At this time, I dont want any optimizations. First I want to complete my initial work.Then, I'll go for optimizations.

Thanks a lot for this approach.Made my way...and many thanks to your implementation :)
by jashwant
Tue Oct 26, 2010 4:39 am
Forum: Programming and Technical Discussions
Topic: Good examples for magic or rotated boards
Replies: 7
Views: 6284

Good examples for magic or rotated boards

Hi,all.
I am a newbie..II've gone through http://chessprogramming.wikispaces.com and http://www.cis.uab.edu/hyatt/pubs.html and many other programming tutorials. They all cover most of the theoretical part but none of them have good pictorial examples. I am perhaps not a good learner or programmer ...