Comments/Ratings for a Single Item
It occurs to me that this is not merely one good idea, but two good ideas that work well separately or together. The promotion and win-by-marriage rules could also be applied to other arrays without a Queen - those of Chaturanga, Courier, Shogi, and the 'Kamil' games come to mind. It could even be combined with an idea that I had called Recapitulative Chess - a 9-rank Chaturanga in which Ferz can be promoted to Queen, Elephant to Bishop, and Pawn to any modern capturable piece. Conversely your array would be a good one for a form of Kingrider Chess - a game on which there are never a capturable Queen but the King's move is extended, usually with restrictions. See King Battler in the Piececlopedia for an example (and its comments for others) of such a piece.
The challenge in making an Interactive Diagram for this variant was to implement the unusual winning condition (marriage). The Diagram already supported winning conditions on a move with the royal piece to a certain area, by letting the user-supplied JavaScript function BadZone() return the value -1 for a move that goes there. (Where a return value 1 simply forbids the move.) This winning condition is a 'delayed one' (like baring), to ensure stepping into check with it can still be punished in the next ply.
I could have the routine test whether a Queen move lands to the friendly King, but then this mechanism should also be made to work for non-royal pieces. Perhaps this is the most flexible solution. But instead I tried to also implement user-defined 'immediate' winning conditions (like King capture), by having BadZone() return -2, and let King-captures-friendly-Queen return this value. (Forbidding friendly capture of all other piece types by returning 1.)
This also causes the one-ply delay required to test whether the Queen move was legal. But it had the side effect that the win can also be pre-empted by capturing the Queen on the next ply. When I thought about it, this seemed actually more logical. If there is no win when the King is killed before the marriage can be consumed, why should not the same be the case when the Queen dies? In view of the prospect of breeding a successor this should certainly be worse!?
9 comments displayed
Permalink to the exact comments currently displayed.