Version number 0.0
[hachu.git] / hachu.c
1 /***********************************************************************/\r
2 /*                               HaChu                                 */\r
3 /* A WinBoard engine for large (dropless) Shogi variants by H.G.Muller */\r
4 /* The engine is based on incremental updating of an attack map and    */\r
5 /* mobility scores, since the effort in this only grows proportional   */\r
6 /* to board edge length, rather than board area.                       */\r
7 /***********************************************************************/\r
8 \r
9 // TODO:\r
10 // in GenCapts we do not generate jumps of more than two squares yet\r
11 // Chu rules for Lion capture\r
12 // promotions by pieces with Lion power stepping in & out the zone in same turn\r
13 // promotion on capture\r
14 \r
15 #define VERSION "0.0"\r
16 \r
17 //define PATH level==0 || level==1 && path[0] == 0x55893\r
18 #define PATH 0\r
19 \r
20 #include <stdio.h>\r
21 #include <stdlib.h>\r
22 #include <string.h>\r
23 #include <signal.h>\r
24 #include <time.h>\r
25 \r
26 #ifdef WIN32 \r
27 #    include <windows.h>\r
28 #else\r
29 #    include <sys/time.h>\r
30      int GetTickCount() // with thanks to Tord\r
31      {  struct timeval t;\r
32         gettimeofday(&t, NULL);\r
33         return t.tv_sec*1000 + t.tv_usec/1000;\r
34      }\r
35 #endif\r
36 \r
37 #define BW 24\r
38 #define BH 12\r
39 #define BSIZE BW*BH*2\r
40 #define ZONE 4\r
41 \r
42 #define ONE 0\r
43 \r
44 #define BLACK      0\r
45 #define WHITE      1\r
46 #define EMPTY      0\r
47 #define EDGE   (1<<11)\r
48 #define TYPE   (WHITE|BLACK|EDGE)\r
49 #define ABSENT  2047\r
50 #define INF     8000\r
51 #define NPIECES 2000               /* length of piece list    */\r
52 \r
53 #define SQLEN    11                /* bits in square number   */\r
54 #define SQUARE  ((1<<SQLEN) - 1)   /* mask for square in move */\r
55 #define DEFER   (1<<2*SQLEN)       /* deferral on zone entry  */\r
56 #define PROMOTE (1<<2*SQLEN+1)     /* promotion bit in move   */\r
57 #define SPECIAL  1500              /* start of special moves  */\r
58 #define STEP(X,Y) (BW*(X)+ (Y))\r
59 #define SORTKEY(X) 0\r
60 \r
61 #define UPDATE_MOBILITY(X,Y)\r
62 #define ADDMOVE(X,Y)\r
63 \r
64 // promotion codes\r
65 #define CAN_PROMOTE 0x11\r
66 #define DONT_DEFER  0x22\r
67 #define CANT_DEFER  0x44\r
68 #define LAST_RANK   0x88\r
69 #define P_WHITE     0x0F\r
70 #define P_BLACK     0xF0\r
71 \r
72 typedef unsigned int Move;\r
73 \r
74 char *MoveToText(Move move, int m);     // from WB driver\r
75 void pmap (int *m, int col);\r
76 \r
77 typedef struct {\r
78   char *name, *promoted;\r
79   int value;\r
80   signed char range[8];\r
81   int whiteKey, blackKey;\r
82 } PieceDesc;\r
83 \r
84 typedef struct {\r
85   int from, to, piece, victim, new, booty, epSquare, epVictim, ep2Square, ep2Victim, revMoveCount, savKeyL, savKeyH;\r
86 } UndoInfo;\r
87 \r
88 int stm, xstm, hashKeyH, hashKeyL, framePtr, msp, nonCapts, rootEval, retMSP, retFirst, pvPtr, level, cnt50, chuFlag=1;\r
89 int nodes, startTime, tlim1, tlim2;\r
90 Move retMove, moveStack[10000], path[100], repStack[300], pv[1000];\r
91 \r
92 #define X 36 /* slider              */\r
93 #define J -1 /* jump                */\r
94 #define N -2 /* Knight              */\r
95 #define D -3 /* linear double move  */\r
96 #define T -4 /* linear triple move  */\r
97 #define L -5 /* true Lion move      */\r
98 #define F -6 /* Lion + 3-step       */\r
99 #define S -7 /* Lion + range        */\r
100 #define H -9 /* hook move           */\r
101 \r
102 PieceDesc chuPieces[] = {\r
103   {"LN", "",  100, { L,L,L,L,L,L,L,L } }, // lion\r
104   {"FK", "",   60, { X,X,X,X,X,X,X,X } }, // free king\r
105   {"SE", "",   55, { X,D,X,X,X,X,X,D } }, // soaring eagle\r
106   {"HF", "",   50, { D,X,X,X,X,X,X,X } }, // horned falcon\r
107   {"FO", "",   40, { X,X,0,X,X,X,0,X } }, // flying ox\r
108   {"FB", "",   40, { 0,X,X,X,0,X,X,X } }, // free boar\r
109   {"DK", "SE", 40, { X,1,X,1,X,1,X,1 } }, // dragon king\r
110   {"DH", "HF", 35, { 1,X,1,X,1,X,1,X } }, // dragon horse\r
111   {"WH", "",   35, { X,X,0,0,X,0,0,X } }, // white horse\r
112   {"R",  "DK", 30, { X,0,X,0,X,0,X,0 } }, // rook\r
113   {"FS", "",   30, { X,1,1,1,X,1,1,1 } }, // flying stag\r
114   {"WL", "",   25, { X,0,0,X,X,X,0,0 } }, // whale\r
115   {"K",  "",   28, { 1,1,1,1,1,1,1,1 } }, // king\r
116   {"CP", "",   27, { 1,1,1,1,1,1,1,1 } }, // king\r
117   {"B",  "DH", 25, { 0,X,0,X,0,X,0,X } }, // bishop\r
118   {"VM", "FO", 20, { X,0,1,0,X,0,1,0 } }, // vertical mover\r
119   {"SM", "FB", 20, { 1,0,X,0,1,0,X,0 } }, // side mover\r
120   {"DE", "CP", 20, { 1,1,1,1,0,1,1,1 } }, // drunk elephant\r
121   {"BT", "FS", 15, { 0,1,1,1,1,1,1,1 } }, // blind tiger\r
122   {"G",  "R",  15, { 1,1,1,0,1,0,1,1 } }, // gold\r
123   {"FL", "B",  15, { 1,1,0,1,1,1,0,1 } }, // ferocious leopard\r
124   {"KN", "LN", 15, { J,1,J,1,J,1,J,1 } }, // kirin\r
125   {"PH", "FK", 15, { 1,J,1,J,1,J,1,J } }, // phoenix\r
126   {"RV", "WL", 15, { X,0,0,0,X,0,0,0 } }, // reverse chariot\r
127   {"L",  "WH", 15, { X,0,0,0,0,0,0,0 } }, // lance\r
128   {"S",  "VM", 10, { 1,1,0,1,0,1,0,1 } }, // silver\r
129   {"C",  "SM", 10, { 1,1,0,0,1,0,0,1 } }, // copper\r
130   {"GB", "DE", 5,  { 1,0,0,0,1,0,0,0 } }, // go between\r
131   {"P",  "G",  4,  { 1,0,0,0,0,0,0,0 } }, // pawn\r
132   { NULL }  // sentinel\r
133 };\r
134 \r
135 PieceDesc daiPieces[] = {\r
136   {"FD", "G", 15, { 0,2,0,2,0,2,0,2 } }, // Flying Dragon\r
137   {"VO", "G", 20, { 2,0,2,0,2,0,2,0 } }, // Violent Ox\r
138   {"EW", "G",  8, { 1,1,1,0,0,0,1,1 } }, // Evil Wolf\r
139   {"CS", "G",  7, { 0,1,0,1,0,1,0,1 } }, // Cat Sword\r
140   {"AB", "G",  6, { 1,0,1,0,1,0,1,0 } }, // Angry Boar\r
141   {"I",  "G",  8, { 1,1,0,0,0,0,0,1 } }, // Iron\r
142   {"N",  "G",  6, { N,0,0,0,0,0,0,N } }, // Knight\r
143   {"ST", "G",  5, { 0,1,0,0,0,0,0,1 } }, // Stone\r
144   { NULL }  // sentinel\r
145 };\r
146 \r
147 PieceDesc ddPieces[] = {\r
148   {"LO", "",   1, { 1,H,1,H,1,H,1,H } }, // Long-Nosed Goblin\r
149   {"OK", "LO", 1, { 2,1,2,0,2,0,2,1 } }, // Old Kite\r
150   {"PS", "HM", 1, { J,0,1,J,0,J,1,0 } }, // Poisonous Snake\r
151   {"GE", "",   1, { 3,3,5,5,3,5,5,3 } }, // Great Elephant\r
152   {"WB", "LD", 1, { 1,1,2,0,1,0,2,1 } }, // Western Barbarian\r
153   {"EA", "LN", 1, { 2,1,1,0,2,0,1,1 } }, // Eastern Barbarian\r
154   {"NO", "FE", 1, { 0,2,1,1,0,1,1,2 } }, // Northern Barbarian\r
155   {"S)", "WE", 1, { 0,1,1,2,0,2,1,1 } }, // Southern Barbarian\r
156   {"FE", "",   1, { 2,X,2,2,2,2,2,X } }, // Fragrant Elephant\r
157   {"WE", "",   1, { 2,2,2,X,2,X,2,2 } }, // White Elephant\r
158   {"FT", "",   1, { X,X,5,0,X,0,5,X } }, // Free Dream-Eater\r
159   {"FR", "",   1, { 5,X,X,0,5,0,X,X } }, // Free Demon\r
160   {"WB", "FT", 1, { 2,X,X,X,2,X,X,X } }, // Water Buffalo\r
161   {"RB", "FR", 1, { X,X,X,X,0,X,X,X } }, // Rushing Bird\r
162   {"SB", "",   1, { X,X,2,2,2,2,2,X } }, // Standard Bearer\r
163   {"FH", "FK", 1, { 1,2,1,0,1,0,1,2 } }, // Flying Horse\r
164   {"NK", "SB", 1, { 1,1,1,1,1,1,1,1 } }, // Neighbor King\r
165   {"BM", "MW", 1, { 0,1,1,1,0,1,1,1 } }, // Blind Monkey\r
166   {"DO", "",   1, { 2,X,2,X,2,X,2,X } }, // Dove\r
167   {"EB", "DO", 1, { 2,0,2,0,0,0,2,0 } }, // Enchanted Badger\r
168   {"EF", "SD", 1, { 0,2,0,0,2,0,0,2 } }, // Enchanted Fox\r
169   {"RA", "",   1, { X,0,X,1,X,1,X,0 } }, // Racing Chariot\r
170   {"SQ", "",   1, { X,1,X,0,X,0,X,1 } }, // Square Mover\r
171   {"PR", "SQ", 1, { 1,1,2,1,0,1,2,1 } }, // Prancing Stag\r
172   {"WT", "",   1, { X,1,2,0,X,0,2,X } }, // White Tiger\r
173   {"BD", "",   1, { 2,X,X,0,2,0,X,1 } }, // Blue Dragon\r
174   {"HD", "",   1, { X,0,0,0,1,0,0,0 } }, // Howling Dog\r
175   {"VB", "",   1, { 0,2,1,0,0,0,1,2 } }, // Violent Bear\r
176   {"SA", "",   1, { 2,1,0,0,2,0,0,1 } }, // Savage Tiger\r
177   {"W",  "",   1, { 0,2,0,0,0,0,0,2 } }, // Wood\r
178   {"CS", "DH",  7, { 0,1,0,1,0,1,0,1 } }, // cat sword\r
179   {"FD", "DK", 15, { 0,2,0,2,0,2,0,2 } }, // flying dragon\r
180   {"KN", "GD", 15, { J,1,J,1,J,1,J,1 } }, // kirin\r
181   {"PH", "GB", 15, { 1,J,1,J,1,J,1,J } }, // phoenix\r
182   {"LN", "FF",  100, { L,L,L,L,L,L,L,L } }, // lion\r
183   {"LD", "GE", 1, { T,T,T,T,T,T,T,T } }, // Lion Dog\r
184   {"AB", "", 1, { 1,0,1,0,1,0,1,0 } }, // Angry Boar\r
185   {"B",  "", 1, { 0,X,0,X,0,X,0,X } }, // Bishop\r
186   {"C",  "", 1, { 1,1,0,0,1,0,0,1 } }, // Copper\r
187   {"DH", "", 1, { 1,X,1,X,1,X,1,X } }, // Dragon Horse\r
188   {"DK", "", 1, { X,1,X,1,X,1,X,1 } }, // Dragon King\r
189   {"FK", "", 1, {  } }, // \r
190   {"EW", "", 1, { 1,1,1,0,0,0,1,1 } }, // Evil Wolf\r
191   {"FL", "", 1, {  } }, // \r
192   {"", "", 1, {  } }, // \r
193   {"", "", 1, {  } }, // \r
194   {"", "", 1, {  } }, // \r
195   {"", "", 1, {  } }, // \r
196   { NULL }  // sentinel\r
197 };\r
198 \r
199 PieceDesc makaPieces[] = {\r
200   {"DV", "", 1, { 0,1,0,1,0,0,1,1 } }, // Deva\r
201   {"DS", "", 1, { 0,1,1,0,0,1,0,1 } }, // Dark Spirit\r
202   {"T",  "", 1, { 0,1,0,0,1,0,0,1 } }, // Tile\r
203   {"CS", "", 1, { 1,0,0,1,1,1,0,0 } }, // Coiled Serpent\r
204   {"RD", "", 1, { 1,0,1,1,1,1,1,0 } }, // Reclining Dragon\r
205   {"CC", "", 1, { 0,1,1,0,1,0,1,1 } }, // Chinese Cock\r
206   {"OM", "", 1, { 0,1,0,1,1,1,0,1 } }, // Old Monkey\r
207   {"BB", "", 1, { 0,1,0,1,X,1,0,1 } }, // Blind Bear\r
208   {"OR", "", 1, { 0,2,0,0,2,0,0,2 } }, // Old Rat\r
209   {"LD", "WS", 1, { T,T,T,T,T,T,T,T } }, // Lion Dog\r
210   {"WR", "", 1, { 0,3,1,3,0,3,1,3 } }, // Wrestler\r
211   {"GG", "", 1, { 3,1,3,0,3,0,3,1 } }, // Guardian of the Gods\r
212   {"BD", "", 1, { 0,3,1,0,1,0,1,3 } }, // Budhist Devil\r
213   {"SD", "", 1, { 5,2,5,2,5,2,5,2 } }, // She-Devil\r
214   {"DY", "", 1, { J,0,1,0,J,0,1,0 } }, // Donkey\r
215   {"CP", "", 1, { 0,H,0,2,0,2,0,H } }, // Capricorn\r
216   {"HM", "", 1, { H,0,H,0,H,0,H,0 } }, // Hook Mover\r
217   {"SF", "", 1, { 0,1,X,1,0,1,0,1 } }, // Side Flier\r
218   {"LC", "", 1, { X,0,0,X,1,0,0,X } }, // Left Chariot\r
219   {"RC", "", 1, { X,X,0,0,1,X,0,0 } }, // Right Chariot\r
220   {"FG", "", 1, { X,X,X,0,X,0,X,X } }, // Free Gold\r
221   {"FS", "", 1, { X,X,0,X,0,X,0,X } }, // Free Silver\r
222   {"FC", "", 1, { X,X,0,0,X,0,0,X } }, // Free Copper\r
223   {"FI", "", 1, { X,X,0,0,0,0,0,X } }, // Free Iron\r
224   {"FT", "", 1, { 0,X,0,0,X,0,0,X } }, // Free Tile\r
225   {"FN", "", 1, { 0,X,0,0,0,0,0,X } }, // Free Stone\r
226   {"FTg", "", 1, { 0,X,X,X,X,X,X,X } }, // Free Tiger\r
227   {"FLp", "", 1, { X,X,0,X,X,X,0,X } }, // Free Leopard (Free Boar?)\r
228   {"FSp", "", 1, { X,0,0,X,X,X,0,0 } }, // Free Serpent (Whale?)\r
229   {"FrD", "", 1, { X,0,X,X,X,X,X,0 } }, // Free Dragon\r
230   {"FC", "", 1, { 0,X,0,X,0,X,0,X } }, // Free Cat (Bishop?)\r
231   {"EM", "", 1, {  } }, // Emperor\r
232   {"TK", "", 1, {  } }, // Teaching King\r
233   {"BS", "", 1, {  } }, // Budhist Spirit\r
234   {"WS", "", 1, { X,X,0,X,1,X,0,X } }, // Wizard Stork\r
235   {"MW", "", 1, { 1,X,0,X,X,X,0,X } }, // Mountain Witch\r
236   {"FF", "", 1, {  } }, // Furious Fiend\r
237   {"GD", "", 1, { 2,3,X,3,2,3,X,3 } }, // Great Dragon\r
238   {"GB", "", 1, { X,3,2,3,X,3,2,3 } }, // Golden Bird\r
239   {"FrW", "", 1, {  } }, // Free Wolf\r
240   {"FrB", "", 1, {  } }, // Free Bear\r
241   {"BT", "", 1, { X,0,0,X,0,X,0,0 } }, // Bat\r
242   {"", "", 1, {  } }, // \r
243   { NULL }  // sentinel\r
244 };\r
245 \r
246 PieceDesc taiPieces[] = {\r
247   {"", "", 1, {  } }, // Peacock\r
248   {"", "", 1, {  } }, // Vermillion Sparrow\r
249   {"", "", 1, {  } }, // Turtle Snake\r
250   {"", "", 1, {  } }, // Silver Hare\r
251   {"", "", 1, {  } }, // Golden Deer\r
252   {"", "", 1, {  } }, // \r
253   {"", "", 1, {  } }, // \r
254   {"", "", 1, {  } }, // \r
255   { NULL }  // sentinel\r
256 };\r
257 \r
258 PieceDesc taikyokuPieces[] = {\r
259   {"", "", 1, {  } }, // \r
260   { NULL }  // sentinel\r
261 };\r
262 \r
263 char chuArray[] = "L:FLCSGK:DEGSC:FLL/:RV.B.:BT:KN:PH:BT.B.:RV/:SM:VMR:DH:DK:LN:FK:DK:DHR:VM:SM/PPPPPPPPPPPP/...:GB....:GB..."\r
264                   "/............/............/"\r
265                   "...:gb....:gb.../pppppppppppp/:sm:vmr:dh:dk:fk:ln:dk:dhr:vm:sm/:rv.b.:bt:ph:kn:bt.b.:rv/l:flcsg:dekgsc:fll";\r
266 char daiArray[] = "LN:STICSGKGSCI:STNL/:RV.:CS.:FL.:BT:DE:BT.:FL.:CS.:RV/.:VO.:AB.:EW:KN:LN:PH:EW.:AB.:VO./R:FD:SM:VMB:DH:DK:FK:DK:DHB:VM:SM:FDR"\r
267                   "/PPPPPPPPPPPPPPP/....:GB.....:GB..../.............../.............../.............../....:gb.....:gb..../ppppppppppppppp/"\r
268                   "r:fd:sm:vmb:dh:dk:fk:dk:dhb:vm:sm:fdr/.:vo.:ab.:ew:ph:ln:kn:ew.:ab.:vo./:rv.:cs.:fl.:bt:de:bt.:fl.:cs.:rv/ln:sticsgkgsci:stnl";\r
269 \r
270 typedef struct {\r
271   int boardWidth, boardFiles, zoneDepth, boardRanks; // board sizes\r
272   char *name;  // WinBoard name\r
273   char *array; // initial position\r
274 } VariantDesc;\r
275 \r
276 VariantDesc variants[] = {\r
277   { 24, 12, 12, 4, "chu",     chuArray }, // Chu\r
278   { 30, 15, 15, 5, "dai",     daiArray }, // Dai\r
279   { 32, 16, 16, 5, "tenjiku", chuArray }, // Tenjiku\r
280   { 34, 17, 17, 0, "dada",    chuArray }, // Dai Dai\r
281   { 38, 19, 19, 0, "maka",    chuArray }, // Maka Dai Dai\r
282   { 50, 25, 25, 0, "tai",     chuArray }, // Tai\r
283   { 40, 36, 36, 0, "kyoku",   chuArray }  // Taikyoku\r
284 };\r
285 \r
286 typedef struct {\r
287   int x, y;\r
288 } Vector;\r
289 \r
290 Vector direction[] = { // clockwise!\r
291   {1,  0},\r
292   {1,  1},\r
293   {0,  1},\r
294   {-1, 1},\r
295   {-1, 0},\r
296   {-1,-1},\r
297   {0, -1},\r
298   {1, -1},\r
299 \r
300   { 2, 1}, // Knight jumps\r
301   { 1, 2},\r
302   {-1, 2},\r
303   {-2, 1},\r
304   {-2,-1},\r
305   {-1,-2},\r
306   { 1,-2},\r
307   { 2,-1}\r
308 };\r
309 \r
310 int epList[96], ep2List[96], toList[96], reverse[96];  // decoding tables for double and triple moves\r
311 int kingStep[10], knightStep[10];         // raw tables for step vectors (indexed as -1 .. 8)\r
312 #define kStep (kingStep+1)\r
313 #define nStep (knightStep+1)\r
314 \r
315 int attackMask[8] = { // indicate which bits in attack-map item are used to count attacks from which direction\r
316   000000007,\r
317   000000070,\r
318   000000700,\r
319   000007000,\r
320   000070000,\r
321   000700000,\r
322   007000000,\r
323   070000000\r
324 };\r
325 \r
326 int rayMask[8] = { // indicate which bits in attack-map item are used to count attacks from which direction\r
327   000000077,\r
328   000000077,\r
329   000007700,\r
330   000007700,\r
331   000770000,\r
332   000770000,\r
333   077000000,\r
334   077000000\r
335 };\r
336 \r
337 int one[] = { // 1 in the bit fields for the various directions\r
338   000000001,\r
339   000000010,\r
340   000000100,\r
341   000001000,\r
342   000010000,\r
343   000100000,\r
344   001000000,\r
345   010000000,\r
346  0100000000  // marks knight jumps\r
347 };\r
348 \r
349 //                                           Main Data structures\r
350 //\r
351 // Piece List: \r
352 //   Interleaved lists for black and white, white taking the odd slots\r
353 //   Pieces in general have two entries: one for the basic, and one for the promoted version\r
354 //   The unused one gets its position set to the invalid square number ABSENT\r
355 //   The list is sorted by piece value, most valuable pieces first\r
356 //   When a piece is captured in the search, both its versions are marked ABSENT\r
357 //   In the root the list is packed to eliminate all captured pieces\r
358 //   The list contains a table for how far the piece moves in each direction\r
359 //   Range encoding: -3 = full Lion, -2 = on-ray Lion, -1 = plain jump, 0 = none, 1 = step, >1 = (limited) range\r
360 // Attack table:\r
361 //   A table in board format, containing pairs of consecutive integers for each square (indexed as 2*sqr and 2*sqr+1)\r
362 //   The first integer contains info on black attacks to the square, the second similarly for white attacks\r
363 //   Each integer contains eight 3-bit fields, which count the number of attacks on it with moves in a particular direction\r
364 //   (If there are attacks by range-jumpers, the 3-bit count is increased by 2 over the actual value)\r
365 // Board:\r
366 //   The board has twice as many files as actually used, in 0x88 fashion\r
367 //   The used squares hold the piece numbers (for use as index in the piece list)\r
368 //   Unused squares are set to the invalid piece number EDGE\r
369 //   There are also 3 guard ranks of EDGE on each side\r
370 // Moves:\r
371 //   Moves are encoded as 11-bit from-square and to-square numbers packed in the low bits of an int\r
372 //   Special moves (like Lion double moves) are encoded by off-board to-squares above a certain value\r
373 //   Promotions are indicated by bit 22\r
374 // Hash table:\r
375 //   Entries of 16 bytes, holding a 32-bit signature, 16-bit lower- and upper-bound scores,\r
376 //   8-bit draft of each of those scores, an age counter that stores the search number of the last access.\r
377 //   The hash key is derived as the XOR of the products pieceKey[piece]*squareKey[square].\r
378 // Promotion zones\r
379 //   the promoBoard contains one byte with flags for each square, to indicate for each side whether the square\r
380 //   is in the promotion zone (twice), on the last two ranks, or on the last rank\r
381 //   the promoFlag field in the piece list can select which bits of this are tested, to see if it\r
382 //   (1) can promote (2) can defer when the to-square is on last rank, last two ranks, or anywhere.\r
383 //   Pawns normally can't defer anywhere, but if the user defers with them, their promoFlag is set to promote on last rank only\r
384 \r
385 typedef struct {\r
386   int pos;\r
387   int pieceKey;\r
388   int promo;\r
389   int value;\r
390   int pst;\r
391   signed char range[8];\r
392   char promoFlag;\r
393   char qval;\r
394   char mobility;\r
395   char mobWeight;\r
396 } PieceInfo; // piece-list entry\r
397 \r
398 int last[2], royal[2];\r
399 PieceInfo p[NPIECES]; // piece list\r
400 \r
401 typedef struct {\r
402   int lock;\r
403   Move move;\r
404   short int upper;\r
405   short int lower;\r
406   char depthU;\r
407   char depthL;\r
408   char flags;\r
409   char age;\r
410 } HashEntry; // hash-table entry\r
411 \r
412     // Some global variables that control your engine's behavior\r
413     int ponder;\r
414     int randomize;\r
415     int postThinking;\r
416     int resign;         // engine-defined option\r
417     int contemptFactor; // likewise\r
418 \r
419 int squareKey[BSIZE];\r
420 \r
421 int rawBoard[BSIZE + 11*BW + 6];\r
422 //int attacks[2*BSIZE];   // attack map\r
423 int attackMaps[200*BSIZE], *attacks = attackMaps;\r
424 char distance[2*BSIZE]; // distance table\r
425 char promoBoard[BSIZE];\r
426 signed char PST[2*BSIZE];\r
427 \r
428 #define board (rawBoard + 6*BW + 3)\r
429 #define dist  (distance + BSIZE)\r
430 \r
431 PieceDesc *\r
432 LookUp (char *name, PieceDesc *list)\r
433 { // find piece of given name in list of descriptors\r
434   int i=0;\r
435   while(list->name && strcmp(name, list->name)) i++, list++;\r
436   return (list->name == NULL ? NULL : list);\r
437 }\r
438 \r
439 void\r
440 SqueezeOut (int n)\r
441 { // remove piece number n from the mentioned side's piece list (and adapt the reference to the displaced pieces!)\r
442   int i;\r
443   for(i=stm+2; i<last[stm]; i+=2)\r
444     if(p[i].promo > n) p[i].promo -= 2;\r
445   for(i=n; i<last[stm]; i+=2) {\r
446     p[i] = p[i+2];\r
447     if(i+2 == royal[stm]) royal[stm] -= 2; // NB: squeezing out the King moves up Crown Prince to royal[stm]\r
448   }\r
449   last[stm] -= 2;\r
450 }\r
451 \r
452 int\r
453 Worse (int a, int b)\r
454 { // determine if range a not upward compatible with b\r
455   if(a == b) return 0;\r
456   if(a >= 0 && b >= 0) return a < b;\r
457   if(a >= 0) return 1; // a (limited) range can never do the same as a special move\r
458   switch(a) {\r
459     case J: return b < J; // any special move is better than a plain jump\r
460     case D: return b > 2 || b < D;\r
461     case T: return b > 3 || b < T;\r
462     case L: return b > 2 || b < D;\r
463     case F: return b > 3 || b < F || b == T;\r
464     case S: return b == H || b == T;\r
465     case H: return b < 0;\r
466     default: return 1; // a >= 0, so b must be < 0 and can always do something a ranging move cannot do\r
467   }\r
468   return 0;\r
469 }\r
470 \r
471 int\r
472 IsUpwardCompatible (signed char *r, signed char *s)\r
473 {\r
474   int i;\r
475   for(i=0; i<8; i++) {\r
476     if(Worse(r[i], s[i])) return 0;\r
477   }\r
478   return 1;\r
479 }\r
480 \r
481 int\r
482 Forward (signed char *r)\r
483 {\r
484   int i;\r
485   for(i=2; i<7; i++) if(r[i]) return 0;\r
486   return 1;\r
487 }\r
488 \r
489 int\r
490 Range (signed char *r)\r
491 {\r
492   int i, m=0;\r
493   for(i=0; i<8; i++) {\r
494     int d = r[i];\r
495     if(r[i] < 0) d == r[i] >= L ? 2 : 36;\r
496     if(d > m) m = d;\r
497   }\r
498   return m;\r
499 }\r
500 \r
501 void\r
502 Compactify (int stm)\r
503 { // remove pieces that are permanently gone (captured or promoted) from one side's piece list\r
504   int i, j, k;\r
505   for(i=stm+2; i<last[stm]; i+=2) { // first pass: unpromoted pieces\r
506     if((k = p[i].promo) >= 0 && p[i].pos == ABSENT) { // unpromoted piece no longer there\r
507       p[k].promo = -2; // orphan promoted version\r
508       SqueezeOut(i);\r
509     }\r
510   }\r
511   for(i=stm+2; i<last[stm]; i+=2) { // second pass: promoted pieces\r
512     if((k = p[i].promo) == -2 && p[i].pos == ABSENT) { // orphaned promoted piece not present\r
513       SqueezeOut(i);\r
514     }\r
515   }\r
516 }\r
517 \r
518 int\r
519 AddPiece (int stm, PieceDesc *list)\r
520 {\r
521   int i, j, *key;\r
522   for(i=stm+2; i<=last[stm]; i += 2) {\r
523     if(p[i].value < 10*list->value || p[i].value == 10*list->value && (p[i].promo < 0)) break;\r
524   }\r
525   last[stm] += 2;\r
526   for(j=last[stm]; j>i; j-= 2) p[j] = p[j-2];\r
527   p[i].value = 10*list->value;\r
528   for(j=0; j<8; j++) p[i].range[j] = list->range[j^4*(WHITE-stm)];\r
529   switch(Range(p[i].range)) {\r
530     case 1:  p[i].pst = BH; break;\r
531     case 2:  p[i].pst = BSIZE; break;\r
532     default: p[i].pst = BSIZE + BH; break;\r
533   }\r
534   key = (stm == WHITE ? &list->whiteKey : &list->blackKey);\r
535   if(!*key) *key = ~(myRandom()*myRandom());\r
536   p[i].pieceKey = *key;\r
537   p[i].promoFlag = 0;\r
538   for(j=stm+2; j<= last[stm]; j+=2) {\r
539     if(p[j].promo >= i) p[j].promo += 2;\r
540   }\r
541   if(royal[stm] >= i) royal[stm] += 2;\r
542   if(p[i].value == 280) royal[stm] = i;\r
543   return i;\r
544 }\r
545 \r
546 void\r
547 SetUp(char *array, PieceDesc *list)\r
548 {\r
549   int i, j, n, m, nr, color;\r
550   char c, *q, name[3];\r
551   PieceDesc *p1, *p2;\r
552   last[WHITE] = 1; last[BLACK] = 0;\r
553   for(i=0; ; i++) {\r
554 //printf("next rank: %s\n", array);\r
555     for(j = BW*i; ; j++) {\r
556       c = name[0] = *array++;\r
557       if(!c) goto eos;\r
558       if(c == '.') continue;\r
559       if(c == '/') break;\r
560       name[1] = name[2] = 0;\r
561       if(c == ':') name[0] = *array++, name[1] = *array++;\r
562       if(name[0] >= 'a') {\r
563         color = BLACK;\r
564         name[0] += 'A' - 'a';\r
565         if(name[1]) name[1] += 'A' - 'a';\r
566       } else color = WHITE;\r
567       p1 = LookUp(name, list);\r
568       n = AddPiece(color, p1);\r
569       p[n].pos = j;\r
570       if(p1->promoted[0]) {\r
571         p2 = LookUp(p1->promoted, list);\r
572         m = AddPiece(color, p2);\r
573         if(m <= n) n += 2;\r
574         p[n].promo = m;\r
575         p[n].promoFlag = IsUpwardCompatible(p2->range, p1->range) * DONT_DEFER + CAN_PROMOTE;\r
576         if(Forward(p1->range)) p[n].promoFlag |= LAST_RANK; // Pieces that only move forward can't defer on last rank\r
577         if(!strcmp(p1->name, "N")) p[n].promoFlag |= CANT_DEFER; // Knights can't defer on last 2 ranks\r
578         p[n].promoFlag &= n&1 ? P_WHITE : P_BLACK;\r
579         p[m].promo = -1;\r
580         p[m].pos = ABSENT;\r
581       } else p[n].promo = -1; // unpromotable piece\r
582 //printf("piece = %c%-2s %d(%d) %d/%d\n", color ? 'w' : 'b', name, n, m, last[color], last[!color]);\r
583     }\r
584   }\r
585  eos:\r
586   for(i=0; i<BH; i++) for(j=0; j<BH; j++) board[BW*i+j] = EMPTY;\r
587   for(i=WHITE+2; i<=last[WHITE]; i+=2) board[p[i].pos] = i;\r
588   for(i=BLACK+2; i<=last[BLACK]; i+=2) board[p[i].pos] = i;\r
589   stm = WHITE; xstm = BLACK;\r
590 }\r
591 \r
592 int myRandom()\r
593 {\r
594   return rand() ^ rand()>>10 ^ rand() << 10 ^ rand() << 20;\r
595 }\r
596 \r
597 void\r
598 Init()\r
599 {\r
600   int i, j, k;\r
601 \r
602   for(i= -1; i<9; i++) { // board steps in linear coordinates\r
603     kStep[i] = STEP(direction[i&7].x,   direction[i&7].y);       // King\r
604     nStep[i] = STEP(direction[(i&7)+8].x, direction[(i&7)+8].y); // Knight\r
605   }\r
606 \r
607   for(i=0; i<8; i++) { // Lion double-move decoding tables\r
608     for(j=0; j<8; j++) {\r
609       epList[8*i+j] = kStep[i];\r
610       toList[8*i+j] = kStep[j] + kStep[i];\r
611       for(k=0; k<8*i+j; k++)\r
612         if(epList[k] == toList[8*i+j] && toList[k] == epList[8*i+j])\r
613           reverse[k] = 8*i+j, reverse[8*i+j] = k;\r
614     }\r
615     // Lion-Dog triple moves\r
616     toList[64+i] = 3*kStep[i]; epList[64+i] =   kStep[i];\r
617     toList[72+i] = 3*kStep[i]; epList[72+i] = 2*kStep[i];\r
618     toList[80+i] = 3*kStep[i]; epList[80+i] =   kStep[i]; ep2List[80+i] = 2*kStep[i];\r
619     toList[88+i] =   kStep[i]; epList[88+i] = 2*kStep[i];\r
620   }\r
621 \r
622   // fill distance table\r
623   for(i=0; i<BSIZE; i++) {\r
624     distance[i] = 0;\r
625   }\r
626   for(i=0; i<8; i++)\r
627     for(j=1; j<BH; j++)\r
628       dist[j * kStep[i]] = j;\r
629 \r
630   // hash key tables\r
631   for(i=0; i<BSIZE; i++) squareKey[i] = ~(myRandom()*myRandom());\r
632 \r
633   // board edge\r
634   for(i=0; i<BSIZE + 11*BW + 6; i++) rawBoard[i] = EDGE;\r
635 \r
636   // promotion zones\r
637   for(i=0; i<BH; i++) for(j=0; j<BH; j++) {\r
638     char v = 0;\r
639     if(i == 0)       v |= LAST_RANK & P_BLACK;\r
640     if(i < 2)        v |= CANT_DEFER & P_BLACK;\r
641     if(i < ZONE)     v |= (CAN_PROMOTE | DONT_DEFER) & P_BLACK;\r
642     if(i >= BH-ZONE) v |= (CAN_PROMOTE | DONT_DEFER) & P_WHITE;\r
643     if(i >= BH-2)    v |= CANT_DEFER & P_WHITE;\r
644     if(i == BH-1)    v |= LAST_RANK & P_WHITE;\r
645     promoBoard[BW*i + j] = v;\r
646   }\r
647 \r
648   // piece-square tables\r
649   for(i=0; i<BH; i++) for(j=0; j<BH; j++) {\r
650     int s = BW*i + j, d = BH*(BH-2) - (2*i - BH + 1)*(2*i - BH + 1) - (2*j - BH + 1)*(2*j - BH + 1);\r
651     PST[BH+s] = d/4 - (i == 0 || i == BH-1 ? 15 : 0) - (j == 0 || j == BH-1 ? 15 : 0);\r
652     PST[BSIZE+s] = d/6;\r
653     PST[BSIZE+BH+s] = d/12;\r
654   }  \r
655 }\r
656 \r
657 #if 0\r
658 inline int\r
659 AddMove (int i, int x, int y)\r
660 {\r
661   if(board[y] == EDGE) return 1;\r
662         if(board[y] == EMPTY) {           // non-capt\r
663           if((flagBoard[x] | flagBoard[y]) & p[i].flags) { // promotion possible\r
664             moveStack[msp++] = moveStack[nonCapts];\r
665             moveStack[nonCapts++] |= PROMOTE | p[i].flags << 24;\r
666             if(!(p[i].flags & ALWAYS_PROMOTE))\r
667                moveStack[msp++] = x << SQLEN | y; // push deferral as well\r
668           else moveStack[msp++] = x << SQLEN | y; // normal move\r
669           }\r
670         } else { // capture\r
671           if(((board[y] ^ i) & 1) return 1; // own\r
672           moveStack[msp++] = moveStack[nonCapts];\r
673           moveStack[nonCapts++] = moveStack[promotions];\r
674           moveStack[promotions++] = x << SQLEN | y;\r
675           if((flagBoard[x] | flagBoard[y]) & p[i].flags) { // promotion possible\r
676             int p = promotions;\r
677             if(!(p[i].flags & ALWAYS_PROMOTE)) {\r
678               moveStack[msp++] = moveStack[nonCapts];\r
679               moveStack[nonCapts++] = moveStack[promotions];\r
680               moveStack[promotions++] = moveStack[p-1];\r
681             }\r
682             moveStack[p-1] += PROMOTE | p[i].flags<<24;\r
683           }\r
684           return 1; // capture ends ray scan\r
685         }\r
686         return 0;\r
687 }\r
688 #endif\r
689 \r
690 int flag;\r
691 \r
692 inline int\r
693 NewNonCapture (int x, int y, int promoFlags)\r
694 {\r
695   if(board[y] != EMPTY) return 1; // edge, capture or own piece\r
696 //if(flag) printf("# add %c%d%c%d, pf=%d\n", x%BW+'a',x/BW,y%BW+'a',y/BW, promoFlags);\r
697   if( (promoBoard[x] | promoBoard[y]) & promoFlags) { // piece can promote with this move\r
698     moveStack[msp++] = moveStack[nonCapts];           // create space for promotion\r
699     moveStack[nonCapts++] = x<<SQLEN | y | PROMOTE;   // push promotion\r
700     if((promoFlags & promoBoard[y] & (CANT_DEFER | DONT_DEFER | LAST_RANK)) == 0) { // deferral could be a better alternative\r
701       moveStack[msp++] = x<<SQLEN | y;                // push deferral\r
702       if( (promoBoard[x] & CAN_PROMOTE) == 0 ) {      // enters zone\r
703         moveStack[msp-1] |= DEFER;                    // flag that promo-suppression takes place after this move\r
704       }\r
705     }\r
706   } else\r
707     moveStack[msp++] = x<<SQLEN | y; // push normal move\r
708 //if(flag) printf("msp=%d nc=%d\n", msp, nonCapts);     \r
709   return 0;\r
710 }\r
711 \r
712 inline int\r
713 NewCapture (int x, int y, int promoFlags)\r
714 {\r
715   if( (promoBoard[x] | promoBoard[y]) & promoFlags) { // piece can promote with this move\r
716     moveStack[msp++] = x<<SQLEN | y | PROMOTE;        // push promotion\r
717     if((promoFlags & promoBoard[y] & (CANT_DEFER | DONT_DEFER | LAST_RANK)) == 0) { // deferral could be a better alternative\r
718       moveStack[msp++] = x<<SQLEN | y;                // push deferral\r
719       if( (promoBoard[x] & CAN_PROMOTE) == 0 ) {      // enters zone\r
720         moveStack[msp-1] |= DEFER;                    // flag that promo-suppression takes place after this move\r
721       }\r
722     }\r
723   } else\r
724     moveStack[msp++] = x<<SQLEN | y; // push normal move\r
725   return 0;\r
726 }\r
727 \r
728 #if 0\r
729 void\r
730 GenAllMoves ()\r
731 {\r
732   int i, j, k;\r
733   promotions = nonCapts = msp;\r
734   for(i=stm+2; i<=last[stm]; i+=2) {\r
735     int x = p[i].pos;\r
736     if(x == ABSENT) continue;\r
737     for(j=0; j<8; j++) {\r
738       int y, v = kStep[j], r = p[i].range[j];\r
739       if(r < 0) { // jumping piece, special treatment\r
740         if(r >= -3) { // in any case, do a jump of 2\r
741           if(board[x + 2*v] == EMPTY)\r
742             ADDMOVE(x, x+2*v);\r
743           if(r < -1) { // Lion power, also single step\r
744             if(board[x + v] == EMPTY)\r
745               ADDMOVE(x, x+v);\r
746             if(r == -3) { // true Lion, also Knight jump\r
747               v = nStep[j];\r
748               if(board[x + v] == EMPTY)\r
749                 ADDMOVE(x, x+v);\r
750             }\r
751           }\r
752         }\r
753         continue;\r
754       }\r
755       y = x;\r
756       while(r-- > 0) {\r
757         if(board[y+=v] == GUARD) break;    // off board\r
758         if((board[y] + i & 1) == 0) break; // same color\r
759     }\r
760   }\r
761 }\r
762 #endif\r
763 \r
764 int\r
765 GenNonCapts (int promoSuppress)\r
766 {\r
767   int i, j, nullMove = ABSENT;\r
768   for(i=stm+2; i<=last[stm]; i+=2) {\r
769     int x = p[i].pos, pFlag = p[i].promoFlag;\r
770     if(x == ABSENT) continue;\r
771     if(x == promoSuppress) pFlag = 0;\r
772     for(j=0; j<8; j++) {\r
773       int y, v = kStep[j], r = p[i].range[j];\r
774       if(r < 0) { // jumping piece, special treatment\r
775         if(r >= S) { // in any case, do a jump of 2\r
776           NewNonCapture(x, x + 2*v, pFlag);\r
777           if(r < N) { // Lion power, also single step\r
778             if(!NewNonCapture(x, x + v, pFlag)) nullMove = x;\r
779             if(r == L) { // true Lion, also Knight jump\r
780               v = nStep[j];\r
781               NewNonCapture(x, x + v, pFlag);\r
782             }\r
783           }\r
784         }\r
785         continue;\r
786       }\r
787       y = x;\r
788       while(r-- > 0)\r
789         if(NewNonCapture(x, y+=v, pFlag)) break;\r
790     }\r
791   }\r
792   return nullMove;\r
793 }\r
794 \r
795 void\r
796 report (int x, int y, int i)\r
797 {\r
798 }\r
799 \r
800 void\r
801 MapOneColor (int start, int last, int *map)\r
802 {\r
803   int i, j, k;\r
804   for(i=start+2; i<=last; i+=2) {\r
805     if(p[i].pos == ABSENT) continue;\r
806     for(j=0; j<8; j++) {\r
807       int x = p[i].pos, v = kStep[j], r = p[i].range[j];\r
808       if(r < 0) { // jumping piece, special treatment\r
809         if(r >= S) { // in any case, do a jump of 2\r
810           if(board[x + 2*v] != EMPTY && board[x + 2*v] != EDGE)\r
811             map[2*(x + 2*v) + start] += one[j];\r
812           if(r < J) { // Lion power, also single step\r
813             if(board[x + v] != EMPTY && board[x + v] != EDGE)\r
814               map[2*(x + v) + start] += one[j];\r
815             if(r == T) { // Lion Dog, also jump of 3\r
816               if(board[x + 3*v] != EMPTY && board[x + 3*v] != EDGE)\r
817                 map[2*(x + 3*v) + start] += one[j];\r
818             } else\r
819             if(r <= L) {  // true Lion, also Knight jump\r
820               if(r < L) { // Lion plus (limited) range\r
821                 int y = x, n = 0;\r
822                 r = (r == S ? 36 : 3);\r
823                 while(n++ <= r) {\r
824                   if(board[y+=v] == EDGE) break;\r
825                   if(board[y] != EMPTY) {\r
826                     if(n > 2) map[2*y + start] += one[j]; // outside Lion range\r
827                     break;\r
828                   }\r
829                 }\r
830               }\r
831               v = nStep[j];\r
832               if(board[x + v] != EMPTY && board[x + v] != EDGE)\r
833                 map[2*(x + v) + start] += one[8];\r
834             }\r
835           }\r
836         }\r
837         continue;\r
838       }\r
839       while(r-- > 0) {\r
840         if(board[x+=v] != EMPTY) {\r
841           if(board[x] != EDGE) map[2*x + start] += one[j];\r
842           break;\r
843         }\r
844       }\r
845     }\r
846   }\r
847 }\r
848 \r
849 void\r
850 MapFromScratch (int *map)\r
851 {\r
852   int i;\r
853   for(i=0; i<2*BSIZE; i++) map[i] = 0;\r
854   MapOneColor(0, last[BLACK], map);\r
855   MapOneColor(1, last[WHITE], map);\r
856 }\r
857 \r
858 void\r
859 Connect (int sqr, int piece, int dir)\r
860 { // scan to both sides along ray to elongate attacks from there, and remove our own attacks on there, if needed\r
861   int x, step = kStep[dir], r1 = p[piece].range[dir], r2 = p[piece].range[dir+4], piece1, piece2;\r
862   int d1, d2, r, y, c;\r
863 \r
864   if((attacks[2*sqr] + attacks[2*sqr+1]) & attackMask[dir]) {         // there are incoming attack(s) from 'behind'\r
865     x = sqr;\r
866     while(board[x-=step] == EMPTY);                                   // in any case, scan to attacker, to see where / what it is\r
867     d1 = dist[x-sqr]; piece1 = board[x];\r
868     attacks[2*x + stm] -= -(d1 <= r2) & one[dir+4];                   // remove our attack on it if in-range\r
869     if((attacks[2*sqr] + attacks[2*sqr+1]) & attackMask[dir+4]) {     // there are also incoming attack(s) from 'ahead'\r
870 \r
871       y = sqr;\r
872       while(board[y+=step] == EMPTY);                                 // also always scan to that one to see what it is\r
873       d2 = dist[y-sqr]; piece2 = board[y];\r
874       attacks[2*y+stm] -= -(d2 <= r1) & one[dir];                     // remove our attack on it if in-range\r
875       // we have two pieces now shooting at each other. See how far they get.\r
876       if(d1 + d2 <= (r1 = p[piece1].range[dir])) {                    // 1 hits 2\r
877         attacks[2*y + (piece1 & WHITE)] += one[dir];                  // count attack\r
878         UPDATE_MOBILITY(piece1, d2);\r
879       } else UPDATE_MOBILITY(piece1, r1 - d1);                        // does not connect, but could still gain mobility\r
880       if(d1 + d2 <= (r2 = p[piece2].range[dir+4])) {                  // 2 hits 1\r
881         attacks[2*x + (piece2 & WHITE)] += one[dir+4];                // count attack\r
882         UPDATE_MOBILITY(piece2, d1);\r
883       } else UPDATE_MOBILITY(piece2, r2 - d2);                        // does not connect, but could still gain mobility\r
884       // if r1 or r2<0, moves typically jump, and thus cannot be unblocked. Exceptions are FF and BS distant moves.\r
885       // test for d1+d2 > 2 && rN == F && d== 3 or rN == S\r
886 \r
887     } else { // we were only attacked from behind\r
888 \r
889       r = (r2 = p[piece1].range[dir]) - d1;\r
890       if(r < 0 || c > one[dir+4]) { // Oops! This was not our attacker, or not the only one. There must be a jump attack from even further behind!\r
891         // for now, forget jumpers\r
892       }\r
893       y = sqr; \r
894       while(r--)\r
895         if(board[y+=step] != EMPTY) {\r
896           d2 = dist[y-sqr]; piece2 = board[y];\r
897           if(piece2 != EDGE) {                                // extended move hits a piece\r
898             attacks[2*y + (piece1 & WHITE)] += one[dir];      // count attack\r
899             attacks[2*y + stm] -= -(d2 <= r1) & one[dir];     // remove our own attack on it, if in-range\r
900           }\r
901           UPDATE_MOBILITY(piece1, d2);                        // count extra mobility even if we hit edge\r
902           return;\r
903         }\r
904       // we hit nothing with the extended move of the attacker behind us.\r
905       UPDATE_MOBILITY(piece1, r2 - d1);\r
906       r = r1 - r2 + d1;                                       // extra squares covered by mover\r
907       while(r-- > 0)\r
908         if(board[y+=step] != EMPTY) {\r
909           d2 = dist[y-sqr]; piece2 = board[y];\r
910           if(piece2 != EDGE) {                                // extended move hits a piece\r
911             attacks[2*y + stm] -= one[dir];                   // count attack\r
912           }\r
913           return;\r
914         }\r
915     }\r
916     // if r2<0 we should again test for F and S moves\r
917 \r
918   } else // no incoming attack from behind\r
919   if(c = (attacks[2*sqr] + attacks[2*sqr+1]) & attackMask[dir+4]) { // but incoming attack(s) from 'ahead'\r
920 \r
921       y = sqr; while(board[y+=step]);                               // locate attacker\r
922       d2 = dist[y-sqr]; piece2 = board[y];\r
923       attacks[2*y + stm] -= -(d2 <= r1) & one[dir];                 // remove our attack on it if in-range\r
924       r = (r1 = p[piece1].range[dir]) - d2;\r
925       if(r < 0 || c > one[dir]) { // Oops! This was not our attacker, or not the only one. There must be a jump attack from even further behind!\r
926         // for now, forget jumpers\r
927       }\r
928       x = sqr;\r
929       while(r--)\r
930         if(board[x-=step] != EMPTY) {\r
931           d1 = dist[x-sqr]; piece1 = board[x];\r
932           if(piece1 != EDGE) {                                      // extended move hits a piece\r
933             attacks[2*x + (piece2 & WHITE)] += one[dir+4];          // count attack\r
934             attacks[2*x + stm] -= -(d1 <= r2) & one[dir+4];         // remove our own attack on it, if in-range\r
935           }\r
936           UPDATE_MOBILITY(piece2, d1);                              // count extra mobility even if we hit edge\r
937           return;\r
938         }\r
939       // we hit nothing with the extended move of the attacker behind us.\r
940       UPDATE_MOBILITY(piece2, r2 - d1);\r
941       r = r2 - r1 + d2;                                             // extra squares covered by mover\r
942       while(r-- > 0)\r
943         if(board[x-=step] != EMPTY) {\r
944           d1 = dist[x-sqr]; piece1 = board[x];\r
945           if(piece1 != EDGE) {                                      // extended move hits a piece\r
946             attacks[2*x + stm] -= one[dir+4];                       // count attack\r
947           }\r
948           return;\r
949         }\r
950 \r
951   } else { // no incoming attacks from either side. Only delete attacks of mover on others\r
952 \r
953     x = sqr;\r
954     while(r1--)\r
955       if(board[x+=step] != EMPTY) {       // piece found that we attacked\r
956         attacks[2*x + stm] -= one[dir];   // decrement attacks along that direction\r
957         break;\r
958       }\r
959 \r
960     x = sqr;\r
961     while(r2--)\r
962       if(board[x-=step] != EMPTY) {       // piece found that we attacked\r
963         attacks[2*x + stm] -= one[dir+4]; // decrement attacks along opposite direction\r
964         break;\r
965       }\r
966 \r
967   }\r
968 }\r
969 \r
970 inline int\r
971 Hit (int r, int d)\r
972 { // test if move with range r reaches over (un-obstructed) distance d\r
973   if(r < 0) switch(r) {\r
974     case J: return (d == 2);\r
975     case D:\r
976     case L: return (d <= 2);\r
977     case T:\r
978     case F: return (d <= 3);\r
979     case S: return 1;\r
980     default: return 0;\r
981   } else return (d <= r);\r
982   return 0; // not reached\r
983 }\r
984 \r
985 void\r
986 Disconnect (int sqr, int piece, int dir)\r
987 {\r
988   int x = sqr, step = kStep[dir], piece1, piece2, d1, d2, r1, r2, y;\r
989   while( board[x+=step] == EMPTY );\r
990   piece1 = board[x];\r
991   if(piece1 != EDGE) { // x has hit a piece\r
992     d1 = dist[x-sqr];\r
993     r1 = p[piece1].range[dir+4];\r
994     y = sqr; while( board[y-=step] == EMPTY );\r
995     piece2 = board[y];\r
996     if(piece2 != EDGE) { // both ends of the ray hit a piece\r
997       d2 = dist[y-sqr];\r
998       r2 = p[piece2].range[dir];\r
999       if(r1 >= d1) {      // piece1 hits us\r
1000         attacks[2*sqr + (piece1 & WHITE)] += one[dir+4];\r
1001         if(r1 >= d1 + d2) // was hitting piece2 before, now blocked\r
1002           attacks[2*y + (piece1 & WHITE)] -= one[dir+4];\r
1003       }\r
1004       if(r2 >= d2) {      // piece2 hits us\r
1005         attacks[2*sqr + (piece2 & WHITE)] += one[dir];\r
1006         if(r2 >= d1 + d2) // was hitting piece1 before, now blocked\r
1007           attacks[2*x + (piece2 & WHITE)] -= one[dir];\r
1008       }\r
1009       if( Hit(p[piece].range[dir], d1) )\r
1010         attacks[2*sqr + stm] += one[dir];\r
1011       if( Hit(p[piece].range[dir+4], d2) )\r
1012         attacks[2*sqr + stm] += one[dir+4];\r
1013       return;\r
1014     }\r
1015   } else {\r
1016     x = sqr; while( board[x-=step] == EMPTY );\r
1017     piece1 = board[x];\r
1018     if(piece1 == EDGE) return; // ray empty on both sides\r
1019     d1 = dist[x-sqr];\r
1020     r1 = p[piece1].range[dir];\r
1021     dir += 4;\r
1022   }\r
1023   // we only get here if one side looks to the board edge\r
1024   if(r1 >= d1) // piece1 hits us\r
1025     attacks[2*sqr + (piece1 & WHITE)] += one[dir^4];\r
1026   if( Hit(p[piece].range[dir], d1) )\r
1027     attacks[2*sqr + stm] += one[dir];\r
1028 }\r
1029 \r
1030 void\r
1031 Occupy (int sqr)\r
1032 { // determines attacks on square and blocking when a piece lands on an empty square\r
1033   int i;\r
1034   for(i=0; i<4; i++) {\r
1035     Disconnect(sqr, board[sqr], i);\r
1036   }\r
1037 }\r
1038 \r
1039 void\r
1040 Evacuate (int sqr, int piece)\r
1041 { // determines change in attacks on neighbors due to unblocking and mover when the mentioned piece vacates the given square\r
1042   int i;\r
1043   for(i=0; i<4; i++) Connect(sqr, piece, i);\r
1044 }\r
1045 \r
1046 int\r
1047 MakeMove(Move m, UndoInfo *u)\r
1048 {\r
1049   int deferred = ABSENT;\r
1050   // first execute move on board\r
1051   u->from = m>>SQLEN & SQUARE;\r
1052   u->to = m & SQUARE;\r
1053   u->piece = board[u->from];\r
1054   board[u->from] = EMPTY;\r
1055   u->booty = 0;\r
1056   u->revMoveCount = cnt50++;\r
1057   u->savKeyL = hashKeyL;\r
1058   u->savKeyH = hashKeyH;\r
1059 \r
1060   if(m & (PROMOTE | DEFER)) {\r
1061     if(m & DEFER) {\r
1062       deferred = u->to;\r
1063       u->new = u->piece;\r
1064     } else {\r
1065       p[u->piece].pos = ABSENT;\r
1066       u->new = p[u->piece].promo;\r
1067       u->booty = p[u->new].value - p[u->piece].value;\r
1068       cnt50 = 0; // promotion irreversible\r
1069     }\r
1070   } else u->new = u->piece;\r
1071 \r
1072   u->booty += PST[p[u->new].pst + u->to] - PST[p[u->piece].pst + u->from];\r
1073 \r
1074   if(u->to >= SPECIAL) { // two-step Lion move\r
1075     // take care of first e.p. victim\r
1076     u->epSquare = u->from + epList[u->to - SPECIAL]; // decode\r
1077     u->epVictim = board[u->epSquare]; // remember for takeback\r
1078     board[u->epSquare] = EMPTY;       // and remove\r
1079     p[u->epVictim].pos = ABSENT;\r
1080     // now take care of (optional) second e.p. victim\r
1081     u->ep2Square = u->from + ep2List[u->to - SPECIAL]; // This is the (already evacuated) from-square when there is none!\r
1082     u->ep2Victim = board[u->ep2Square]; // remember\r
1083     board[u->ep2Square] = EMPTY;        // and remove\r
1084     p[u->ep2Victim].pos = ABSENT;\r
1085     // decode the true to-square, and correct difEval and hash key for the e.p. captures\r
1086     u->to       = u->from + toList[u->to - SPECIAL];\r
1087     u->booty += p[u->ep2Victim].value + PST[p[u->ep2Victim].pst + u->ep2Square];\r
1088     u->booty += p[u->epVictim].value + PST[p[u->epVictim].pst + u->epSquare];\r
1089     hashKeyL ^= p[u->epVictim].pieceKey * squareKey[u->epSquare];\r
1090     hashKeyH ^= p[u->epVictim].pieceKey * squareKey[u->epSquare+BH];\r
1091     hashKeyL ^= p[u->ep2Victim].pieceKey * squareKey[u->ep2Square];\r
1092     hashKeyH ^= p[u->ep2Victim].pieceKey * squareKey[u->ep2Square+BH];\r
1093     if(p[u->piece].value != 1000 && p[u->epVictim].value == 1000) deferred |= PROMOTE; // flag non-Lion x Lion\r
1094     cnt50 = 0; // double capture irreversible\r
1095   } else u->epVictim = EMPTY;\r
1096 \r
1097   u->victim = board[u->to];\r
1098   p[u->victim].pos = ABSENT;\r
1099   u->booty += p[u->victim].value + PST[p[u->victim].pst + u->to];\r
1100   if(u->victim != EMPTY) cnt50 = 0; // capture irreversible\r
1101 \r
1102   p[u->new].pos = u->to;\r
1103   board[u->to] = u->new;\r
1104 \r
1105   hashKeyL ^= p[u->new].pieceKey * squareKey[u->to]\r
1106            ^  p[u->piece].pieceKey * squareKey[u->from]\r
1107            ^  p[u->victim].pieceKey * squareKey[u->to];\r
1108   hashKeyH ^= p[u->new].pieceKey * squareKey[u->to+BH]\r
1109            ^  p[u->piece].pieceKey * squareKey[u->from+BH]\r
1110            ^  p[u->victim].pieceKey * squareKey[u->to+BH];\r
1111 \r
1112   return deferred;\r
1113 }\r
1114 \r
1115 void\r
1116 UnMake(UndoInfo *u)\r
1117 {\r
1118   if(u->epVictim) { // put Lion victim of first leg back\r
1119     p[u->ep2Victim].pos = u->ep2Square;\r
1120     board[u->ep2Square] = u->ep2Victim;\r
1121     p[u->epVictim].pos = u->epSquare;\r
1122     board[u->epSquare] = u->epVictim;\r
1123   }\r
1124 \r
1125   p[u->victim].pos = u->to;\r
1126   board[u->to] = u->victim;  // can be EMPTY\r
1127 \r
1128   p[u->new].pos = ABSENT; \r
1129   p[u->piece].pos = u->from; // this can be the same as above\r
1130   board[u->from] = u->piece;\r
1131 \r
1132   cnt50 = u->revMoveCount;\r
1133   hashKeyL = u->savKeyL;\r
1134   hashKeyH = u->savKeyH;\r
1135 }\r
1136         \r
1137 void\r
1138 GenCapts(int sqr, int victimValue)\r
1139 { // generate all moves that capture the piece on the given square\r
1140   int i, range, att = attacks[2*sqr + stm];\r
1141 //printf("GenCapts(%d,%d)\n",sqr,victimValue);\r
1142   for(i=0; i<8; i++) {                             // try all rays\r
1143     int x, v, jumper;\r
1144     if(att & attackMask[i]) {                      // attacked by move in this direction\r
1145       v = -kStep[i]; x = sqr;\r
1146       while( board[x+=v] == EMPTY );               // scan towards source until we encounter a 'stop'\r
1147 //printf("stop @ %c%d (dir %d)\n",x%BW+'a',x/BW,i);\r
1148       if((board[x] & TYPE) == stm) {               // stop is ours\r
1149         int attacker = board[x], d = dist[x-sqr], r = p[attacker].range[i];\r
1150 //printf("attacker %d, range %d, dist %d\n", attacker, r, d);\r
1151         if(r >= d || r < L && (d > 3 && r == S || d == 3 && r >= S)) { // it has a plain move in our direction that hits us\r
1152           NewCapture(x, sqr + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1153           att -= one[i];\r
1154           if(!(att & attackMask[i])) continue;\r
1155         } else if(r < 0) goto lions; // test for special-move attacks by thiis stop\r
1156       }\r
1157       // we get here when the first stop on the ray is an opponent, or a normal mover which did not range fare enough\r
1158       while(board[x+=v] == EMPTY);   // next stop\r
1159     lions:\r
1160       if((board[x] & TYPE) == stm) {     // second stop is ours\r
1161         int attacker = board[x], d = dist[x-sqr], r = p[attacker].range[i];\r
1162         if(r < 0) { // stop has non-standard moves\r
1163           switch(p[attacker].range[i]) { // figure out what he can do (including multi-captures, which causes the complexity)\r
1164             case F: // Lion power + 3-step (as in FF)\r
1165             case S: // Lion power + ranging (as in BS)\r
1166             case L: // Lion\r
1167               if(d > 2) break;\r
1168               NewCapture(x, sqr + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1169               att -= one[i];\r
1170               // now the multi-captures of designated victim together with lower-valued piece\r
1171               if(d == 2) { // primary victim on second ring; look for victims to take in passing\r
1172                 if((board[sqr+v] & TYPE) == xstm && board[sqr+v] > board[sqr])\r
1173                   NewCapture(x, SPECIAL + 9*i + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1174                 if((i&1) == 0) { // orthogonal: two extra bent paths\r
1175                   v = kStep[i-1];\r
1176                   if((board[x+v] & TYPE) == xstm && board[x+v] > board[sqr])\r
1177                     NewCapture(x, SPECIAL + 8*(i-1&7) + (i+1&7) + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1178                   v = kStep[i+1];\r
1179                   if((board[x+v] & TYPE) == xstm && board[x+v] > board[sqr])\r
1180                     NewCapture(x, SPECIAL + 8*(i+1&7) + (i-1&7) + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1181                 }\r
1182               } else { // primary victim on first ring\r
1183                 int j;\r
1184                 for(j=0; j<8; j++) { // we can go on in 8 directions after we captured it in passing\r
1185                   int v = kStep[j];\r
1186                   if(sqr + v == x || board[sqr+v] == EMPTY) // hit & run; make sure we include igui (attacker is still at x!)\r
1187                     NewCapture(x, SPECIAL + 8*i + j + victimValue, p[attacker].promoFlag);\r
1188                   else if((board[sqr+v] & TYPE) == xstm && board[sqr+v] > board[sqr]) {    // double capture\r
1189                     NewCapture(x, SPECIAL + 8*i + j + victimValue, p[attacker].promoFlag); // other victim after primary\r
1190                     if(dist[sqr+v-x] == 1) // other victim also on first ring; reverse order is possible\r
1191                       NewCapture(x, SPECIAL + reverse[8*i + j] + victimValue, p[attacker].promoFlag);\r
1192                   }\r
1193                 }\r
1194               }\r
1195               break;\r
1196             case D: // linear Lion move (as in HF, SE)\r
1197               if(d > 2) break;\r
1198               NewCapture(x, sqr + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1199               att -= one[i];\r
1200               if(d == 2) { // check if we can take intermediate with it\r
1201                 if((board[x-v] & TYPE) == xstm && board[x-v] > board[sqr])\r
1202                   NewCapture(x, SPECIAL + 9*i + victimValue - SORTKEY(attacker), p[attacker].promoFlag); // e.p.\r
1203               } else { // d=1; can move on to second, or move back for igui\r
1204                 NewCapture(x, SPECIAL + 8*i + (i^4) + victimValue, p[attacker].promoFlag); // igui\r
1205                 if(board[sqr-v] == EMPTY || (board[sqr-v] & TYPE) == xstm && board[sqr-v] > board[sqr])\r
1206                   NewCapture(x, SPECIAL + 9*i + victimValue - SORTKEY(attacker), p[attacker].promoFlag); // hit and run\r
1207               }\r
1208               break;\r
1209             case J: // plain jump (as in KY, PH)\r
1210               if(d != 2) break;\r
1211               NewCapture(x, sqr + victimValue - SORTKEY(attacker), p[attacker].promoFlag);\r
1212               att -= one[i];\r
1213           }\r
1214         }\r
1215 //printf("mask[%d] = %o\n", i, att);\r
1216         if((att & attackMask[i]) == 0) continue; // no other attackers, so done with this direction\r
1217       }\r
1218       // now we get to the hairy part: there are other attackers than the stop, apparently jumping over it\r
1219     }\r
1220   }\r
1221   // off-ray attacks\r
1222   if(att & 0700000000) { // Knight attack\r
1223     for(i=0; i<8; i++) {    // scan all knight jumps to locate source\r
1224       int x = sqr - nStep[i], attacker = board[x];\r
1225       if(attacker == EMPTY || (attacker & TYPE) != stm) continue;\r
1226       if(p[attacker].range[i] <= N && p[attacker].range[i] >= S) { // has Knight jump in our direction\r
1227         NewCapture(x, sqr + victimValue, p[attacker].promoFlag);   // plain jump (as in N)\r
1228         if(p[attacker].range[i] < N) { // Lion power; generate double captures over two possible intermediates\r
1229           int v = kStep[i]; // leftish path\r
1230           if((board[x+v] & TYPE) == xstm && board[x+v] > board[sqr])\r
1231             NewCapture(x, SPECIAL + 8*i + (i+1&7) + victimValue, p[attacker].promoFlag);\r
1232           v = kStep[i+1];  // rightish path\r
1233           if((board[x+v] & TYPE) == xstm && board[x+v] > board[sqr])\r
1234             NewCapture(x, SPECIAL + 8*(i+1&7) + i + victimValue, p[attacker].promoFlag);\r
1235         }\r
1236       }\r
1237     }\r
1238   }\r
1239 }\r
1240 \r
1241 int\r
1242 Evaluate ()\r
1243 {\r
1244   return 0;\r
1245 }\r
1246 \r
1247 int\r
1248 Search (int alpha, int beta, int difEval, int depth, int oldPromo, int promoSuppress)\r
1249 {\r
1250   int i, j, k, firstMove, oldMSP = msp, curMove, sorted, bad, phase, king, iterDep, replyDep, nextVictim, to, defer, dubious, bestMoveNr;\r
1251   int myPV = pvPtr;\r
1252   int score, bestScore, curEval, iterAlpha;\r
1253   Move move, nullMove;\r
1254   UndoInfo tb;\r
1255 if(PATH) printf("search(%d) %d-%d eval=%d, stm=%d\n",depth,alpha,beta,difEval,stm),fflush(stdout);\r
1256   xstm = stm ^ WHITE;\r
1257 //printf("map made\n");fflush(stdout);\r
1258   // KING CAPTURE\r
1259   k = p[king=royal[xstm]].pos;\r
1260   if( k != ABSENT) {\r
1261     if(attacks[2*k + stm]) {\r
1262       if( p[king + 2].pos == ABSENT ) return INF; // we have an attack on his only King\r
1263     }\r
1264   } else { // he has no king! Test for attacks on Crown Prince\r
1265     k = p[king + 2].pos;\r
1266     if(attacks[2*k + stm]) return INF; // we have attack on Crown Prince\r
1267   }\r
1268 //printf("King safe\n");fflush(stdout);\r
1269   // EVALUATION & WINDOW SHIFT\r
1270   curEval = difEval + Evaluate();\r
1271   alpha -= (alpha < curEval);\r
1272   beta  -= (beta <= curEval);\r
1273 \r
1274   nodes++;\r
1275   pv[pvPtr++] = 0; // start empty PV, directly behind PV of parent\r
1276 \r
1277   firstMove = curMove = sorted = msp += 20; // leave 20 empty slots in front of move list\r
1278   phase = 0; iterDep=1; replyDep = (depth < 1 ? depth : 1) - 1;\r
1279   do {\r
1280 if(flag && depth>= 0) printf("iter %d:%d\n", depth,iterDep),fflush(stdout);\r
1281     iterAlpha = alpha; bestScore = -INF; bestMoveNr = 0;\r
1282     for(curMove = firstMove; ; curMove++) { // loop over moves\r
1283 if(flag && depth>= 0) printf("phase=%d: first/curr/last = %d / %d / %d\n", phase, firstMove, curMove, msp);fflush(stdout);\r
1284       // MOVE SOURCE\r
1285       if(curMove >= msp) { // we ran out of moves; generate some new\r
1286         switch(phase) {\r
1287           case 0: // null move\r
1288             if(depth <= 0) {\r
1289               bestScore = curEval;\r
1290               if(bestScore >= beta || depth < -1) goto cutoff;\r
1291             }\r
1292 #if 0\r
1293             if(curEval >= beta) {\r
1294               stm ^= WHITE;\r
1295               score = -Search(-beta, -iterAlpha, difEval, depth-3, promoSuppress & SQUARE, ABSENT);\r
1296               stm ^= WHITE;\r
1297               if(score >= beta) { msp = oldMSP; return score + (score < curEval); }\r
1298             }\r
1299 #endif\r
1300             phase = 1;\r
1301           case 1: // hash move\r
1302             phase = 2;\r
1303           case 2: // capture-gen init\r
1304             nextVictim = xstm;\r
1305             phase = 3;\r
1306           case 3: // generate captures\r
1307             while(nextVictim < last[xstm]) {           // more victims exist\r
1308               int group, to = p[nextVictim += 2].pos; // take next\r
1309               if(to == ABSENT) continue;              // ignore if absent\r
1310               if(!attacks[2*to + stm]) continue;      // skip if not attacked\r
1311               group = p[nextVictim].value;            // remember value of this found victim\r
1312               GenCapts(to, 0);\r
1313               while(nextVictim < last[xstm] && p[nextVictim+2].value == group) { // more victims of same value exist\r
1314                 to = p[nextVictim += 2].pos;          // take next\r
1315                 if(to == ABSENT) continue;            // ignore if absent\r
1316                 if(!attacks[2*to + stm]) continue;    // skip if not attacked\r
1317                 GenCapts(to, 0);\r
1318               }\r
1319 //printf("captures on %d generated, msp=%d\n", nextVictim, msp);\r
1320               goto extractMove;\r
1321             }\r
1322             phase = 4; // out of victims: all captures generated\r
1323           case 4: // dubious captures\r
1324 #if 0\r
1325             while( dubious < framePtr + 250 ) // add dubious captures back to move stack\r
1326               moveStack[msp++] = moveStack[dubious++];\r
1327             if(curMove != msp) break;\r
1328 #endif\r
1329             phase = 5;\r
1330           case 5: // killers\r
1331             if(depth <= 0) goto cutoff;\r
1332             phase = 6;\r
1333           case 6: // non-captures\r
1334             nonCapts = msp;\r
1335             nullMove = GenNonCapts(oldPromo);\r
1336             phase = 7;\r
1337             sorted = msp; // do not sort noncapts\r
1338             break;\r
1339           case 7: // bad captures\r
1340           case 8: // PV null move\r
1341             phase = 9;\r
1342             if(nullMove != ABSENT) {\r
1343               moveStack[msp++] = nullMove + (nullMove << SQLEN) | DEFER; // kludge: setting DEFER guarantees != 0, and has no effect\r
1344             }\r
1345 printf("# %d. sqr = %08x null = %08x\n", msp, nullMove, moveStack[msp-1]);\r
1346           case 9:\r
1347             goto cutoff;\r
1348         }\r
1349       }\r
1350 \r
1351       // MOVE EXTRACTION\r
1352     extractMove:\r
1353 if(flag & depth >= 0) printf("%2d:%d extract %d/%d\n", depth, iterDep, curMove, msp);\r
1354       if(curMove < sorted) {\r
1355         move = moveStack[sorted=j=curMove];\r
1356         for(i=curMove+1; i<msp; i++)\r
1357           if(moveStack[i] > move) move = moveStack[j=i]; // search move with highest priority\r
1358         moveStack[j] = moveStack[curMove]; moveStack[curMove] = move; // swap highest-priority move to front of remaining\r
1359         if(move == 0) { msp = curMove--; continue; } // all remaining moves must be 0; clip off move list\r
1360       } else {\r
1361         move = moveStack[curMove];\r
1362         if(move == 0) continue; // skip invalidated move\r
1363       }\r
1364 if(flag & depth >= 0) printf("%2d:%d found %d/%d\n", depth, iterDep, curMove, msp);\r
1365 \r
1366       // RECURSION\r
1367       stm ^= WHITE;\r
1368       defer = MakeMove(move, &tb);\r
1369 \r
1370       for(i=2; i<=cnt50; i+=2) if(repStack[level-i+200] == hashKeyH) {\r
1371         moveStack[curMove] = 0; // erase forbidden move\r
1372         score = -INF; goto repetition;\r
1373       }\r
1374       repStack[level+200] = hashKeyH;\r
1375 \r
1376 path[level++] = move;\r
1377 attacks += 2*BSIZE;\r
1378 MapFromScratch(attacks); // for as long as incremental update does not work.\r
1379 if(PATH) pmap(attacks, stm);\r
1380       if(chuFlag && p[tb.victim].value == 1000) {    // verify legality of Lion capture in Chu Shogi\r
1381         score = 0;\r
1382         if(p[tb.piece].value == 1000) {              // Ln x Ln: can make Ln 'vulnarable' (if distant and not through intemediate > GB)\r
1383           if(dist[tb.from-tb.to] != 1 && attacks[2*tb.to + stm] && p[tb.epVictim].value <= 50)\r
1384             score = -INF;                           // our Lion is indeed made vulnerable and can be recaptured\r
1385         } else {                                    // other x Ln\r
1386           if(promoSuppress & PROMOTE) score = -INF; // non-Lion captures Lion after opponent did same\r
1387           defer |= PROMOTE;                         // if we started, flag  he cannot do it in reply\r
1388         }\r
1389         if(score == -INF) { moveStack[curMove] = 0; goto abortMove; } // zap illegal moves\r
1390       }\r
1391 #if 1\r
1392       score = -Search(-beta, -iterAlpha, -difEval - tb.booty, replyDep, promoSuppress & ~PROMOTE, defer);\r
1393 #else\r
1394       score = 0;\r
1395 #endif\r
1396     abortMove:\r
1397 attacks -= 2*BSIZE;\r
1398 level--;\r
1399     repetition:\r
1400       UnMake(&tb);\r
1401       xstm = stm; stm ^= WHITE;\r
1402 #if 1\r
1403 if(PATH) printf("%d:%2d:%d %3d %6x %-10s %6d %6d\n", level, depth, iterDep, curMove, moveStack[curMove], MoveToText(moveStack[curMove], 0), score, bestScore);\r
1404 \r
1405       // ALPHA-BETA STUFF\r
1406       if(score > bestScore) {\r
1407         bestScore = score; bestMoveNr = curMove;\r
1408         if(score > iterAlpha) {\r
1409           iterAlpha = score;\r
1410           if(curMove < firstMove + 5) { // if not too much work, sort move to front\r
1411             int i;\r
1412             for(i=curMove; i>firstMove; i--) {\r
1413               moveStack[i] = moveStack[i-1];\r
1414             }\r
1415             moveStack[firstMove] = move;\r
1416           } else { // late move appended in front of list, and leaves hole in list\r
1417             moveStack[--firstMove] = move;\r
1418             moveStack[curMove] = 0;\r
1419           }\r
1420           bestMoveNr = firstMove;\r
1421           if(score >= beta) { // beta cutoff\r
1422             // update killer\r
1423             goto cutoff;\r
1424           }\r
1425           { int i=pvPtr;\r
1426             for(pvPtr = myPV+1; pv[pvPtr++] = pv[i++]; ); // copy daughter PV\r
1427             pv[myPV] = move;                              // behind our move (pvPtr left at end of copy)\r
1428           }\r
1429         }\r
1430 \r
1431       }\r
1432 #endif\r
1433     } // next move\r
1434   cutoff:\r
1435     if(!level) { // root node\r
1436       if(postThinking > 0) {\r
1437         int i;   // WB thinking output\r
1438         printf("%d %d %d %d", iterDep, bestScore, (GetTickCount() - startTime)/10, nodes);\r
1439         for(i=0; pv[i]; i++) printf(" %s", MoveToText(pv[i], 0));\r
1440         printf("\n"); fflush(stdout);\r
1441       }\r
1442       if(GetTickCount() - startTime > tlim1) break; // do not start iteration we can (most likely) not finish\r
1443     }\r
1444     replyDep = iterDep;\r
1445   } while(++iterDep <= depth); // next depth\r
1446   retMSP = msp;\r
1447   retFirst = firstMove;\r
1448   msp = oldMSP; // pop move list\r
1449   pvPtr = myPV; // pop PV\r
1450   retMove = bestMoveNr ? moveStack[bestMoveNr] : 0;\r
1451 if(flag && depth >= 0) printf("return %d: %d %d\n", depth, bestScore, curEval);\r
1452   return bestScore + (bestScore < curEval);\r
1453 }\r
1454 \r
1455 void\r
1456 pplist()\r
1457 {\r
1458   int i, j;\r
1459   for(i=0; i<182; i++) {\r
1460         printf("%3d. %3d %3d %4d   %02x   ", i, p[i].value, p[i].promo, p[i].pos, p[i].promoFlag&255);\r
1461         for(j=0; j<8; j++) printf("  %2d", p[i].range[j]);\r
1462         printf("\n");\r
1463   }\r
1464   printf("last: %d / %d\nroyal %d / %d\n", last[WHITE], last[BLACK], royal[WHITE], royal[BLACK]);\r
1465 }\r
1466 \r
1467 void\r
1468 pboard (int *b)\r
1469 {\r
1470   int i, j;\r
1471   for(i=BH+2; i>-4; i--) {\r
1472     printf("#");\r
1473     for(j=-3; j<BH+3; j++) printf("%4d", b[BW*i+j]);\r
1474     printf("\n");\r
1475   }\r
1476 }\r
1477 \r
1478 void\r
1479 pbytes (unsigned char *b)\r
1480 {\r
1481   int i, j;\r
1482   for(i=BH-1; i>=0; i--) {\r
1483     for(j=0; j<BH; j++) printf("%3x", b[BW*i+j]);\r
1484     printf("\n");\r
1485   }\r
1486 }\r
1487 \r
1488 void\r
1489 pmap (int *m, int col)\r
1490 {\r
1491   int i, j;\r
1492   for(i=BH-1; i>=0; i--) {\r
1493     printf("#");\r
1494     for(j=0; j<BH; j++) printf("%10o", m[2*(BW*i+j)+col]);\r
1495     printf("\n");\r
1496   }\r
1497 }\r
1498 \r
1499 void\r
1500 pmoves(int start, int end)\r
1501 {\r
1502   int i, m, f, t;\r
1503   printf("# move stack from %d to %d\n", start, end);\r
1504   for(i=start; i<end; i++) {\r
1505     m = moveStack[i];\r
1506     f = m>>SQLEN & SQUARE;\r
1507     t = m & SQUARE;\r
1508     printf("# %3d. %08x %3d-%3d %s\n", i, m, f, t, MoveToText(m, 0));\r
1509   }\r
1510 }\r
1511 \r
1512     /********************************************************/\r
1513     /* Example of a WinBoard-protocol driver, by H.G.Muller */\r
1514     /********************************************************/\r
1515 \r
1516     #include <stdio.h>\r
1517 \r
1518     // four different constants, with values for WHITE and BLACK that suit your engine\r
1519     #define NONE    3\r
1520     #define ANALYZE 4\r
1521 \r
1522     // some value that cannot occur as a valid move\r
1523     #define INVALID 0\r
1524 \r
1525     // some parameter of your engine\r
1526     #define MAXMOVES 500  /* maximum game length  */\r
1527     #define MAXPLY   60   /* maximum search depth */\r
1528 \r
1529     #define OFF 0\r
1530     #define ON  1\r
1531 \r
1532 #define ONE 0\r
1533 #define DEFAULT_FEN ""\r
1534 \r
1535 typedef Move MOVE;\r
1536 \r
1537     int moveNr;              // part of game state; incremented by MakeMove\r
1538     MOVE gameMove[MAXMOVES]; // holds the game history\r
1539 \r
1540     // Some routines your engine should have to do the various essential things\r
1541     int  MakeMove2(int stm, MOVE move);      // performs move, and returns new side to move\r
1542     void UnMake2(MOVE move);                 // unmakes the move;\r
1543     int  Setup2(char *fen);                  // sets up the position from the given FEN, and returns the new side to move\r
1544     void SetMemorySize(int n);              // if n is different from last time, resize all tables to make memory usage below n MB\r
1545     char *MoveToText(MOVE move, int m);     // converts the move from your internal format to text like e2e2, e1g1, a7a8q.\r
1546     MOVE ParseMove(char *moveText);         // converts a long-algebraic text move to your internal move format\r
1547     int  SearchBestMove(int stm, int timeLeft, int mps, int timeControl, int inc, int timePerMove, MOVE *move, MOVE *ponderMove);\r
1548     void PonderUntilInput(int stm);         // Search current position for stm, deepening forever until there is input.\r
1549 \r
1550 UndoInfo undoInfo;\r
1551 int sup0, sup1, sup2; // promo suppression squares\r
1552 int lastLift, lastPut;\r
1553 \r
1554 int\r
1555 MakeMove2 (int stm, MOVE move)\r
1556 {\r
1557   int i;\r
1558   sup0 = sup1; sup1 = sup2;\r
1559   sup2 = MakeMove(move, &undoInfo);\r
1560   rootEval = -rootEval - undoInfo.booty;\r
1561   for(i=0; i<200; i++) repStack[i] = repStack[i+1];\r
1562   repStack[199] = hashKeyH;\r
1563 printf("# makemove %08x %c%d %c%d\n", move, sup1%BW+'a', sup1/BW, sup2%BW+'a', sup2/BW);\r
1564   return stm ^ WHITE;\r
1565 }\r
1566 \r
1567 void\r
1568 UnMake2 (MOVE move)\r
1569 {\r
1570   int i;\r
1571   rootEval = -rootEval - undoInfo.booty;\r
1572   UnMake(&undoInfo);\r
1573   for(i=200; i>0; i--) repStack[i] = repStack[i-1];\r
1574   sup2 = sup1; sup1 = sup0;\r
1575 }\r
1576 \r
1577 int\r
1578 Setup2 (char *fen)\r
1579 {\r
1580   SetUp(chuArray, chuPieces);\r
1581   sup0 = sup1 = sup2 = ABSENT;\r
1582   rootEval = cnt50 = hashKeyH = hashKeyL = 0;\r
1583   return WHITE;\r
1584 }\r
1585 \r
1586 void\r
1587 SetMemorySize (int n)\r
1588 {\r
1589 }\r
1590 \r
1591 char *\r
1592 MoveToText (MOVE move, int multiLine)\r
1593 {\r
1594   static char buf[50];\r
1595   int f = move>>SQLEN & SQUARE, g = f, t = move & SQUARE;\r
1596   if(f == t) { sprintf(buf, "@@@@"); return buf; } // null-move notation in WB protocol\r
1597   buf[0] = '\0';\r
1598   if(t >= SPECIAL) { // kludgy! Print as side effect non-standard WB command to remove victims from double-capture (breaks hint command!)\r
1599     int e = f + epList[t - SPECIAL];\r
1600 //    printf("take %c%d\n", e%BW+'a', e/BW+ONE);\r
1601     sprintf(buf, "%c%d%c%d,", f%BW+'a', f/BW+ONE, e%BW+'a', e/BW+ONE); f = e;\r
1602     if(multiLine) printf("move %s\n", buf), buf[0] = '\0';\r
1603     if(ep2List[t - SPECIAL]) {\r
1604       e = g + ep2List[t - SPECIAL];\r
1605 //      printf("take %c%d\n", e%BW+'a', e/BW+ONE);\r
1606       sprintf(buf+strlen(buf), "%c%d%c%d,", f%BW+'a', f/BW+ONE, e%BW+'a', e/BW+ONE); f = e;\r
1607     if(multiLine) printf("move %s\n", buf), buf[0] = '\0';\r
1608     }\r
1609     t = g + toList[t - SPECIAL];\r
1610   }\r
1611   sprintf(buf+strlen(buf), "%c%d%c%d%s", f%BW+'a', f/BW+ONE, t%BW+'a', t/BW+ONE, move & PROMOTE ? "+" : "");\r
1612   return buf;\r
1613 }\r
1614 \r
1615 int\r
1616 ReadSquare (char *p, int *sqr)\r
1617 {\r
1618   int i=0, f, r;\r
1619   f = p[0] - 'a';\r
1620   r = atoi(p + 1) - ONE;\r
1621   *sqr = r*BW + f;\r
1622   return 2 + (r > 9);\r
1623 }\r
1624 \r
1625 MOVE\r
1626 ParseMove (char *moveText)\r
1627 {\r
1628   int i, j, f, t, t2, e, ret, deferred=0;\r
1629   char c = moveText[0];\r
1630   moveText += ReadSquare(moveText, &f);\r
1631   moveText += ReadSquare(moveText, &t); t2 = t;\r
1632   if(*moveText == ',') {\r
1633     moveText++;\r
1634     moveText += ReadSquare(moveText, &e);\r
1635     if(e != t) return INVALID; // must continue with same piece\r
1636     e = t;\r
1637     moveText += ReadSquare(moveText, &t);\r
1638     for(i=0; i<8; i++) if(f + kStep[i] == e) break;\r
1639     if(i >= 8) return INVALID; // this rejects Lion Dog 2+1 and 2-1 moves!\r
1640     for(j=0; j<8; j++) if(e + kStep[j] == t) break;\r
1641     if(j >= 8) return INVALID; // this rejects Lion Dog 1+2 moves!\r
1642     t2 = SPECIAL + 8*i + j;\r
1643   }\r
1644   ret = f<<SQLEN | t2;\r
1645   if(*moveText == '+') ret |= PROMOTE;\r
1646 printf("# suppress = %c%d\n", sup1%BW+'a', sup1/BW);\r
1647 MapFromScratch(attacks);\r
1648   postThinking--;\r
1649   Search(-INF-1, INF+1, 0, 1, sup1, sup2);\r
1650   postThinking++;\r
1651   for(i=retFirst; i<retMSP; i++) {\r
1652     if(moveStack[i] == INVALID) continue;\r
1653     if(c == '@' && (moveStack[i] & SQUARE) == (moveStack[i] >> SQLEN & SQUARE)) break; // any null move matches @@@@\r
1654     if((moveStack[i] & (PROMOTE | DEFER-1)) == ret) break;\r
1655     if((moveStack[i] & DEFER-1) == ret) deferred = i; // promoted version of entered non-promotion is legal\r
1656   }\r
1657   if(i>=retMSP) {  // no exact match\r
1658     if(deferred) { // but maybe non-sensical deferral\r
1659       int flags = p[board[f]].promoFlag;\r
1660 printf("# deferral of %d\n", deferred);\r
1661       i = deferred; // in any case we take that move\r
1662       if(!(flags & promoBoard[t] & (CANT_DEFER | LAST_RANK))) { // but change it into a deferral if that is allowed\r
1663         moveStack[i] &= ~PROMOTE;\r
1664         if(p[board[f]].value == 40) p[board[f]].promoFlag &= LAST_RANK; else\r
1665         if(!(flags & promoBoard[f])) moveStack[i] |= DEFER; // came from outside zone, so essential deferral\r
1666       }\r
1667     }\r
1668     if(i >= retMSP)\r
1669       for(i=retFirst; i<retMSP; i++) printf("# %d. %08x %08x %s\n", i-20, moveStack[i], ret, MoveToText(moveStack[i], 0));\r
1670   }\r
1671   return (i >= retMSP ? INVALID : moveStack[i]);\r
1672 }\r
1673 \r
1674 void\r
1675 Highlight(char *coords)\r
1676 {\r
1677   int i, j, n, sqr, cnt=0;\r
1678   char b[BSIZE], buf[2000], *q;\r
1679   for(i=0; i<BSIZE; i++) b[i] = 0;\r
1680   ReadSquare(coords, &sqr);\r
1681 MapFromScratch(attacks);\r
1682 flag=1;\r
1683   postThinking--;\r
1684   Search(-INF-1, INF+1, 0, 1, sup1, sup2);\r
1685   postThinking++;\r
1686 flag=0;\r
1687   for(i=retFirst; i<retMSP; i++) {\r
1688     if(sqr == (moveStack[i]>>SQLEN & SQUARE)) {\r
1689       int t = moveStack[i] & SQUARE;\r
1690       if(t >= SPECIAL) continue;\r
1691       b[t] = (board[t] == EMPTY ? 'Y' : 'R'); cnt++;\r
1692     }\r
1693   }\r
1694   if(!cnt) { // no moves from given square\r
1695     if(sqr != lastPut) return; // refrain from sending empty FEN\r
1696     // we lifted a piece for second leg of move\r
1697     for(i=retFirst; i<retMSP; i++) {\r
1698       if(lastLift == (moveStack[i]>>SQLEN & SQUARE)) {\r
1699         int e, t = moveStack[i] & SQUARE;\r
1700         if(t < SPECIAL) continue; // only special moves\r
1701         e = lastLift + epList[t - SPECIAL]; // decode\r
1702         t = lastLift + toList[t - SPECIAL];\r
1703         if(e != sqr) continue;\r
1704         b[t] = (board[t] == EMPTY ? 'Y' : 'R'); cnt++;\r
1705       }\r
1706     }\r
1707     if(!cnt) return;\r
1708   } else lastLift = sqr; // remember\r
1709   lastPut = ABSENT;\r
1710   q = buf;\r
1711   for(i=BH-1; i>=0; i--) {\r
1712     for(j=0; j<BH; j++) {\r
1713       n = BW*i + j;\r
1714       if(b[n]) *q++ = b[n]; else {\r
1715         if(q > buf && q[-1] <= '9' && q[-1] >= '0') {\r
1716           q[-1]++;\r
1717           if(q[-1] > '9') {\r
1718             if(q > buf+1 && q[-2] <= '9' && q[-2] >= '0') q[-2]++; else q[-1] = '1', *q++ = '0';\r
1719           }\r
1720         } else *q++ = '1';\r
1721       }\r
1722     }\r
1723     *q++ = '/';\r
1724   }\r
1725   q[-1] = 0;\r
1726   printf("highlight %s\n", buf);\r
1727 }\r
1728 \r
1729 int\r
1730 SearchBestMove (int stm, int timeLeft, int mps, int timeControl, int inc, int timePerMove, MOVE *move, MOVE *ponderMove)\r
1731 {\r
1732   int score, targetTime, movesLeft = 50;\r
1733   if(mps) movesLeft = mps - (moveNr>>1)%mps;\r
1734   targetTime = timeLeft*10 / (movesLeft + 1) + 1000 * inc;\r
1735   if(timePerMove > 0) targetTime = timeLeft * 5;\r
1736   startTime = GetTickCount();\r
1737   tlim1 = 0.3*targetTime;\r
1738   tlim2 = 1.9*targetTime;\r
1739   nodes = 0;\r
1740 MapFromScratch(attacks);\r
1741   score = Search(-INF-1, INF+1, rootEval, 20, sup1, sup2);\r
1742   *move = retMove;\r
1743   *ponderMove = INVALID;\r
1744   return score;\r
1745 }\r
1746 \r
1747 void\r
1748 PonderUntilInput (int stm)\r
1749 {\r
1750 }\r
1751 \r
1752     int TakeBack(int n)\r
1753     { // reset the game and then replay it to the desired point\r
1754       int last, stm;\r
1755       stm = Setup2(NULL);\r
1756 printf("# setup done");fflush(stdout);\r
1757       last = moveNr - n; if(last < 0) last = 0;\r
1758       for(moveNr=0; moveNr<last; moveNr++) stm = MakeMove2(stm, gameMove[moveNr]),printf("make %2d: %x\n", moveNr, gameMove[moveNr]);\r
1759       return stm;\r
1760     }\r
1761 \r
1762     void PrintResult(int stm, int score)\r
1763     {\r
1764       if(score == 0) printf("1/2-1/2\n");\r
1765       if(score > 0 && stm == WHITE || score < 0 && stm == BLACK) printf("1-0\n");\r
1766       else printf("0-1\n");\r
1767     }\r
1768 \r
1769     main()\r
1770     {\r
1771       int engineSide=NONE;                     // side played by engine\r
1772       int timeLeft;                            // timeleft on engine's clock\r
1773       int mps, timeControl, inc, timePerMove;  // time-control parameters, to be used by Search\r
1774       int maxDepth;                            // used by search\r
1775       MOVE move, ponderMove;\r
1776       int i, score;\r
1777       char inBuf[8000], command[80];\r
1778 \r
1779   Init();\r
1780   SetUp(chuArray, chuPieces);\r
1781 //  pplist();\r
1782 //  pboard(board);\r
1783 //  pbytes(promoBoard);\r
1784 //  Search(-INF, INF, 0, 1, ABSENT, ABSENT);\r
1785 //  pmoves(20, retMSP);\r
1786 //MapFromScratch(attacks);\r
1787 //  MapOneColor(1, last[WHITE], attacks);\r
1788 \r
1789       while(1) { // infinite loop\r
1790 \r
1791         fflush(stdout);                 // make sure everything is printed before we do something that might take time\r
1792 \r
1793         if(stm == engineSide) {         // if it is the engine's turn to move, set it thinking, and let it move\r
1794      \r
1795           score = SearchBestMove(stm, timeLeft, mps, timeControl, inc, timePerMove, &move, &ponderMove);\r
1796 \r
1797           if(move == INVALID) {         // game apparently ended\r
1798             engineSide = NONE;          // so stop playing\r
1799             PrintResult(stm, score);\r
1800           } else {\r
1801             stm = MakeMove2(stm, move);  // assumes MakeMove returns new side to move\r
1802             gameMove[moveNr++] = move;  // remember game\r
1803             printf("move %s\n", MoveToText(move, 1));\r
1804           }\r
1805         }\r
1806 \r
1807         fflush(stdout); // make sure everything is printed before we do something that might take time\r
1808 \r
1809         // now it is not our turn (anymore)\r
1810         if(engineSide == ANALYZE) {       // in analysis, we always ponder the position\r
1811             PonderUntilInput(stm);\r
1812         } else\r
1813         if(engineSide != NONE && ponder == ON && moveNr != 0) { // ponder while waiting for input\r
1814           if(ponderMove == INVALID) {     // if we have no move to ponder on, ponder the position\r
1815             PonderUntilInput(stm);\r
1816           } else {\r
1817             int newStm = MakeMove2(stm, ponderMove);\r
1818             PonderUntilInput(newStm);\r
1819             UnMake2(ponderMove);\r
1820           }\r
1821         }\r
1822 \r
1823       noPonder:\r
1824         // wait for input, and read it until we have collected a complete line\r
1825         for(i = 0; (inBuf[i] = getchar()) != '\n'; i++);\r
1826         inBuf[i+1] = 0;\r
1827 pboard(board);\r
1828 pmoves(retFirst, retMSP);\r
1829 \r
1830         // extract the first word\r
1831         sscanf(inBuf, "%s", command);\r
1832 printf("in: %s\n", command);\r
1833 \r
1834         // recognize the command,and execute it\r
1835         if(!strcmp(command, "quit"))    { break; } // breaks out of infinite loop\r
1836         if(!strcmp(command, "force"))   { engineSide = NONE;    continue; }\r
1837         if(!strcmp(command, "analyze")) { engineSide = ANALYZE; continue; }\r
1838         if(!strcmp(command, "exit"))    { engineSide = NONE;    continue; }\r
1839         if(!strcmp(command, "otim"))    { goto noPonder; } // do not start pondering after receiving time commands, as move will follow immediately\r
1840         if(!strcmp(command, "time"))    { sscanf(inBuf, "time %d", &timeLeft); goto noPonder; }\r
1841         if(!strcmp(command, "level"))   {\r
1842           int min, sec=0;\r
1843           sscanf(inBuf, "level %d %d %d", &mps, &min, &inc) == 3 ||  // if this does not work, it must be min:sec format\r
1844           sscanf(inBuf, "level %d %d:%d %d", &mps, &min, &sec, &inc);\r
1845           timeControl = 60*min + sec; timePerMove = -1;\r
1846           continue;\r
1847         }\r
1848         if(!strcmp(command, "protover")){\r
1849           printf("feature ping=1 setboard=1 colors=0 usermove=1 memory=1 debug=1 sigint=0 sigterm=0\n");\r
1850           printf("feature variants=\"chu,12x12+0_fairy\"\n");\r
1851           printf("feature myname=\"HaChu " VERSION "\" highlight=1\n");\r
1852           printf("feature option=\"Resign -check 0\"\n");           // example of an engine-defined option\r
1853           printf("feature option=\"Contempt -spin 0 -200 200\"\n"); // and another one\r
1854           printf("feature done=1\n");\r
1855           continue;\r
1856         }\r
1857         if(!strcmp(command, "option")) { // setting of engine-define option; find out which\r
1858           if(sscanf(inBuf+7, "Resign=%d",   &resign)         == 1) continue;\r
1859           if(sscanf(inBuf+7, "Contempt=%d", &contemptFactor) == 1) continue;\r
1860           continue;\r
1861         }\r
1862         if(!strcmp(command, "sd"))      { sscanf(inBuf, "sd %d", &maxDepth);    continue; }\r
1863         if(!strcmp(command, "st"))      { sscanf(inBuf, "st %d", &timePerMove); continue; }\r
1864         if(!strcmp(command, "memory"))  { SetMemorySize(atoi(inBuf+7)); continue; }\r
1865         if(!strcmp(command, "ping"))    { printf("pong%s", inBuf+4); continue; }\r
1866     //  if(!strcmp(command, ""))        { sscanf(inBuf, " %d", &); continue; }\r
1867         if(!strcmp(command, "new"))     { engineSide = BLACK; stm = Setup2(DEFAULT_FEN); maxDepth = MAXPLY; randomize = OFF; continue; }\r
1868         if(!strcmp(command, "setboard")){ engineSide = NONE;  stm = Setup2(inBuf+9); continue; }\r
1869         if(!strcmp(command, "easy"))    { ponder = OFF; continue; }\r
1870         if(!strcmp(command, "hard"))    { ponder = ON;  continue; }\r
1871         if(!strcmp(command, "undo"))    { stm = TakeBack(1); continue; }\r
1872         if(!strcmp(command, "remove"))  { stm = TakeBack(2); continue; }\r
1873         if(!strcmp(command, "go"))      { engineSide = stm;  continue; }\r
1874         if(!strcmp(command, "post"))    { postThinking = ON; continue; }\r
1875         if(!strcmp(command, "nopost"))  { postThinking = OFF;continue; }\r
1876         if(!strcmp(command, "random"))  { randomize = ON;    continue; }\r
1877         if(!strcmp(command, "hint"))    { if(ponderMove != INVALID) printf("Hint: %s\n", MoveToText(ponderMove, 0)); continue; }\r
1878         if(!strcmp(command, "lift"))    { Highlight(inBuf+5); continue; }\r
1879         if(!strcmp(command, "put"))     { ReadSquare(inBuf+4, &lastPut); continue; }\r
1880         if(!strcmp(command, "book"))    {  continue; }\r
1881         if(!strcmp(command, "variant")) { continue; }\r
1882         // non-standard commands\r
1883         if(!strcmp(command, "p"))       { pboard(board); continue; }\r
1884         if(!strcmp(command, "w"))       { pmap(attacks, WHITE); continue; }\r
1885         if(!strcmp(command, "b"))       { pmap(attacks, BLACK); continue; }\r
1886         // ignored commands:\r
1887         if(!strcmp(command, "xboard"))  { continue; }\r
1888         if(!strcmp(command, "computer")){ continue; }\r
1889         if(!strcmp(command, "name"))    { continue; }\r
1890         if(!strcmp(command, "ics"))     { continue; }\r
1891         if(!strcmp(command, "accepted")){ continue; }\r
1892         if(!strcmp(command, "rejected")){ continue; }\r
1893         if(!strcmp(command, "result"))  { continue; }\r
1894         if(!strcmp(command, "hover"))   {  continue; }\r
1895         if(!strcmp(command, ""))  {  continue; }\r
1896         if(!strcmp(command, "usermove")){\r
1897           int move = ParseMove(inBuf+9);\r
1898           if(move == INVALID) printf("Illegal move\n");\r
1899           else {\r
1900             stm = MakeMove2(stm, move);\r
1901             ponderMove = INVALID;\r
1902             gameMove[moveNr++] = move;  // remember game\r
1903           }\r
1904           continue;\r
1905         }\r
1906         printf("Error: unknown command\n");\r
1907       }\r
1908     }\r
1909 \r