0x88 FRC castle questions

How could I handle FRC castle in a 0x88 engine? Wich data structures could help me? I want my engine being a native FRC player, but i dont figure how to handle castles in an efficient and clean way...
Discussions (not only) about Xboard/Winboard, Computer Chess and Chess Programming
http://www.open-aurec.com/wbforum/
Teemu Pudas wrote:Move generation: I recommend doing it the same way you do it in normal chess, i.e. figure out which squares need to be empty/unattacked before the game. Of course, the initialization code is a bit more complicated...
Special case: you need to check for an enemy queen/rook on A1 (A8) if the queenside rook is on the B-file.
Teemu Pudas wrote:Makemove: IMO the only clean way is to clear both squares first.
The problem is: how i keep track of castling rigths after makemove?
CastlingRights &= CastleMask[from] & CastleMask[to]; // CastleMask[WhiteKingRook] == everything but white kingside castling
Teemu Pudas wrote:
When in doubt, see what Fruit does:
I understand this is pretty common (both the method and the part about Fruit).