chiark / gitweb /
`Fifteen' was getting the parity wrong on any size of board where
authorSimon Tatham <anakin@pobox.com>
Mon, 3 May 2004 07:56:23 +0000 (07:56 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 3 May 2004 07:56:23 +0000 (07:56 +0000)
the top left and bottom right corners didn't have the same
chessboard colour.

[originally from svn r4185]

fifteen.c

index 7f6769ae441074e9ef08e4dc532622f1aa67de7e..04a8f759a2ec5f6c87d70ab3c4ac92d5b82f1c53 100644 (file)
--- a/fifteen.c
+++ b/fifteen.c
@@ -199,15 +199,16 @@ char *new_game_seed(game_params *params)
      * Determine the required parity of the overall permutation.
      * This is the XOR of:
      * 
-     *  - The chessboard parity ((x^y)&1) of the gap square. The
-     *    bottom right, and therefore also the top left, count as
-     *    even.
+     *         - The chessboard parity ((x^y)&1) of the gap square. The
+     *           bottom right counts as even.
      * 
      *  - The parity of n. (The target permutation is 1,...,n-1,0
      *    rather than 0,...,n-1; this is a cyclic permutation of
      *    the starting point and hence is odd iff n is even.)
      */
-    parity = (X(params, gap) ^ Y(params, gap) ^ (n+1)) & 1;
+    parity = ((X(params, gap) - (params->w-1)) ^
+             (Y(params, gap) - (params->h-1)) ^
+             (n+1)) & 1;
 
     /*
      * Try the last two tiles one way round. If that fails, swap