home *** CD-ROM | disk | FTP | other *** search
/ Bart's Chess Hits / Chess.iso / Chess / GAMES / DA141096 / DABBABA.TXT < prev    next >
Encoding:
Text File  |  1996-06-07  |  15.5 KB  |  356 lines

  1.  
  2.                     Dabbaba ver. 0.098                 by Jens Bæk Nielsen
  3.  
  4. The name Dabbaba.....
  5.  
  6. Explain matesearch and check-search....
  7.  
  8.  
  9. Improvements from ver. 0.096 to ver. 0.098:
  10.    Selfplay: a) shows the board the first 56 halfmoves
  11.              b) does not loop above the 160 halfmoves
  12.    The internal solution to position H is corrected.
  13.    The game now always ends nice with 'Oh, the game is over...'
  14.    The matesearch is now working when playing games.
  15.    It now (again) chooses one of the moves with the shortest way to a mate.
  16.    (I had tried to jump out of the search when a mating move was found, but
  17.     it has to be one of the shortest ways to prevent the program from playing  
  18.     mating moves 'forever')
  19.                                                     
  20.  
  21. The most special about this chessprogram is that it can play chess with 
  22. other sets of rules. But more about this later.
  23.  
  24. Dabbaba is written in C. It consists of approximately 3.000 lines of code.
  25. It is not very strong. With 3 minutes/move it should be lucky to beat half 
  26. of the members in a usual chessclub (average rating 1.500). With less time 
  27. it should beat more of them (supposed the humans also plays faster. Both 
  28. the computer and the humans play worse with less time, but the human 
  29. playing strenght declines faster.)
  30.  
  31. Dabbaba searches ca. 2.500 positions pr. second on my 50Mhz 486dx with 256K 
  32. cache (coprocessors and amount of ram don't influence the programs speed). 
  33. All subsequent figures also refers to this PC-model. 
  34.  
  35. Tactics is Dabbabas favourite disciplin. With 2 minutes/move it solves 70 
  36. out of the 100 combinations found in Bent Larsen's book 'Find the 
  37. combination'. Even though my rating is 2037 I doubt I could do it better.
  38.  
  39. So far Dabbaba only knows very little. It knows of mate, stalemate and the 
  40. value of the pieces (pawn=90, knight=305, bishop=320, rook=475 and 
  41. queen=950).
  42. Besides this it tries to get pieces near the centre and tries to achieve 
  43. positions with good mobility - that is positions where Dabbaba can make 
  44. relative more moves than its opponent (remember, the values of the men is 
  45. based on how the particular man moves).
  46. Finally Dabbaba have about 20 opening tips to get the pieces developed a 
  47. little better. The opening is defined as a position where one of the 
  48. players still have the right to castle (for chessvariants without castling 
  49. the opening is defined as a position where black has more than 9 men on the 
  50. 7.th and 8.th rank).
  51.  
  52. Dabbaba knows so far nothing about king safety, weak pawns, isolated pawns, 
  53. double pawns, passed pawns, bad/good bishops, bad/good knights, rooks on 
  54. open or halfopen files and on the 7.th rank, trapped pieces, insufficient 
  55. materiel, draw by repetition a position 3 times (the most usual outcome of 
  56. a selfplay-game, where Dabbaba plays against itself).
  57. Strategy and planning is of course also completely unknown for Dabbaba.
  58. So still a lot can be done to improve Dabbaba.
  59.  
  60. But tactics is the most important for a chessprogram, and this can be 
  61. improved by increasing the speed. Some of the code can still be improved, 
  62. and the use of hash-tables can also increase the speed. Hashtables is a way 
  63. of storing information during the search, and when the program encounters 
  64. the same position later (evt. by transposition of moves) in the search, it 
  65. doesn't have to search the whole subtree from that position again.
  66.  
  67. Dabbaba uses internally an 8x12 chessboard, and it uses an iterative search 
  68. (it makes more searches from the position and goes deeper in each search 
  69. using information from the previous searches. I won't explain all 
  70. computerchess terms in detail in this text. Read some of the many books and 
  71. magazines on this subject.)  
  72.  
  73.  
  74.  
  75.  
  76. **********************  1) in the main menu ************************
  77. The search time/depth is controlled by these figures:
  78. Brute force depth: 
  79. the number of halfmoves where all the possible moves are considered. Use 
  80. 2,3,4,>4 for blitz, quick game, tournament game and long analysis.
  81. Selektiv depth: 
  82. the number of halfmoves where only checks, some captures, promotions etc. 
  83. are tried for the side on the move after the brute-force search. The other 
  84. side tries always all the moves.
  85. I strongly recommend this set to 4.
  86. Check search depth: 
  87. Set this to zero. It is not completed yet. Some checks should be tried at 
  88. the end of each line...
  89.  
  90. **********************  2) in the main menu ************************
  91. Computes a move in the current position. See screen-info later.
  92.  
  93. **********************  3) in the main menu ************************
  94. Play agaist Dabbaba. This is easy and is not needed to be explained.
  95.  
  96. I will only emphasize the selfplay option, if you want to study Dabbabas 
  97. play at deeper levels without having to spend too much of your own time by 
  98. the computer.
  99. I have used levels like (3,4,0) or even (4,4,0) and then started a game. After 
  100. 3-4 hours I return to the PC and make a hardcopy of the screen. This gives 
  101. me a paper with a game that represents hours of computing, but only very 
  102. little of my own time is used.
  103. NB: the hardcopy may not work if you run Dabbaba under Windows.
  104. The selfplay cannot be interrupted, so think about it before you start 
  105. the selfplay. 
  106. Ctrl+Break stops Dabbaba at the next move.
  107. At selfplay Dabbaba stops after 160 halfmoves, and it displays the board 
  108. the first 56 halfmoves.
  109.  
  110. **********************  4) in the main menu ************************
  111. Choose a variant of chess. These are explained later.
  112.  
  113. **********************  5) in the main menu ************************
  114. Just some usefull positions I use developing the program.
  115.  
  116. **********************  6) in the main menu ************************
  117. Choose english letters(default) or danish letters(=german letters).
  118. Change size of the graphic chessboard.
  119.  
  120. **********************  7) in the main menu ************************
  121. Chesspositions in files. Mainly for developing the program.
  122. You can study the files and make your own if you like.
  123. You can run the whole file or pick out a single position.
  124. A line with '+++-+-?-+....' indicates positions solved(+) or not(-).
  125. A ? indicates that no answer is marked at the position.
  126. An answer marked with a '?' is solved by not playing this move.
  127.  
  128. ********************************************************************
  129. The rest of the options are mainly my internal figures to be adjusted.
  130. But you can experiment if you like.
  131. ********************************************************************
  132.  
  133. **********************  8) in the main menu ************************
  134. top-kill: This is a name I have used for the moves that are the best answer 
  135. to each possible move in the current position. The programs speed depends 
  136. heavily on trying good moves first, so the opponents bad moves can be 
  137. refused immediately and the search can go on. This should always be turned 
  138. on.
  139.  
  140. 'selektiv search dynamic limit': if the first moves are captures, checks, 
  141. promotion etc., the program accumulates some points. If this sum is bigger 
  142. than this limit, ALL moves on the first move of the selektive search are 
  143. considered.
  144. If this limit is lowered, it happens more often and the program searches 
  145. more moves and takes longer time to calculate a move.
  146. With a value of 8 it will find the mate in 5 in the built-in position 
  147. (1.b7+) sooner.
  148. A big value turns this off.
  149.  
  150. initiativ change: if set to 1 the program 'turns' the selektive search if 
  151. the 'defender' happens to give a check during the selektive search. The 
  152. defendes becomes attacker from that position.
  153.  
  154. **********************  9) in the main menu ************************
  155. iterativ search: if turned on the program goes deeper and deeper into the 
  156. position. Because of better move ordering this is at least as fast as doing 
  157. one whole search. With hashtables the iterative search will be the fastest.
  158.  
  159. simple kill: is turned on with 10 - the value doesn't matter very much. 
  160. Simple killers is used deeper in the search of the tree, where the top-
  161. killers are not working. Simple killers is simply moves, that earlier in 
  162. the search has proved to be good, and they are tried a little earlier than 
  163. other moves to refuse the opponents move.
  164. Two killers are used at each depth in the search.
  165.  
  166. always cut-off: this concerns top-killers. If a top-killer is found that 
  167. refuses one of the moves in the current position, you can go on to the next 
  168. move. This happens with 1. If the value is 0, all the moves are tried, and 
  169. this means you may find a better top-killer. This may be useful in the 
  170. iterative search, so the program better can refuse moves later in the 
  171. search.
  172. A value of 2=auto means, that the program uses 0 if an iterative search to 
  173. depth 4 or deeper is in progress; otherwise it is set to 1.
  174. It seems this idea is usefull. I've never read about it anywhere.
  175.  
  176.  
  177. **********************  A) in the main menu ************************
  178. trace: allows you to see all the lines to a certain depth. Use small values 
  179. like 1 and 2 the first time you try this option.
  180. The -30000 option will probably soon be changed, so I won't explain it now.
  181.  
  182. screen-info: is turned on with 1. 
  183. If screen-info is turned on, a lot of internal information is shown:
  184. How deep the current search is, what move is investigated now, what 
  185. replymove is investigated now (is just shown as a '*' from move 4), what 
  186. score the move got (positive values are good for white).
  187. Use the Break-key if the information scrolls too fast.
  188. The number of nodes pr. second is also shown. Turn screen-info off to give 
  189. Dabbaba the fastest performance.
  190. Screen-info is automatically turned off during game play.
  191.  
  192. mate search:
  193. Before the regular search is done, a mate search is done. This is default 
  194. set to 12 halfmoves to find mates in up to 6 moves (all the moves must be 
  195. checks; though Dabbaba don't recognises discovered checks outside the brute 
  196. force search).
  197. The program has a built-in position, where this matesearch takes two 
  198. minutes, and this won't give you a blitzgame! Very bad.
  199. Because of this problem I have turned the matesearh of when playing a game 
  200. with Dabbaba. The value is not reset after the game.
  201. Later I must let Dabbaba itself cancel this search if it takes too much 
  202. time.
  203. Position 2 in the Colditz-test (see later) - a queen-sacrifice giving mate 
  204. in 5 moves - is solved in 1/100 second because of the mate search! Very 
  205. good.
  206.  
  207. full evaluation: For developing purposes. Full evaluation of positions or 
  208. only material (incl. mate and stalemate) is considered.
  209.  
  210. **********************  B) in the main menu ************************
  211. A set-up I use while developing the program.
  212.  
  213. **********************  C) in the main menu ************************
  214. Weights for mobility, centralisation and opening tips.
  215.  
  216.  
  217.  
  218. The Colditz-test
  219. The Colditz-test with its 30 positions was very popular 5-10 years ago to 
  220. test chesscomputers. It is from a book (for humans...) by Colditz. It is 
  221. about combinations in chess, and it concludes with the test where the 
  222. reader can test himself and estimate his tactical rating.
  223. I gave Dabbaba short time (3,4,0) on the test, and after 3 minutes - 
  224. average 6 seconds pr. position - it had solved 15 out of 30!
  225. With 25 minutes for the test Dabbaba solved 24/30 (4,4,0).
  226. Given 2-5 minutes pr. position it also solved nr. 12, 20, 25 and 29.
  227. Two positions remains:
  228. Pos. 16 is very hard and is not solved. 
  229. Pos. 27 is not solved because black can extend the horizon with 3-4 checks 
  230. with his rooks. If I move pawn h2 to g2 the position is solved in a few 
  231. minutes.
  232.  
  233.  
  234.  
  235.  
  236.  
  237. The variants of chess in Dabbaba
  238.  
  239. Generel:
  240. In a variant is en passant and castle allowed unless otherwise stated. 
  241. Similar is the goal to mate the king.
  242. If a man has got a changed movement as fx the nightrider, the change is 
  243. complete: There is no usual knight, and a promotion to knight will be to a 
  244. knightrider.
  245. In variants where the king can be captured, promotion to king is allowed.
  246.  
  247. 1) Stationary Chess
  248. The king cannot move. No castle.
  249.  
  250. 2) Knightmate Chess
  251. The knights are replaced with kings, and the king is replaced with a 
  252. knight.
  253. The goal is to mate the knight. No castle.
  254.  
  255. 3) Chancellor Chess
  256. The queen moves as a rook and a knight. 
  257.  
  258. 4) Archbishop Chess (Janus Chess)
  259. The queen moves as a bishop and a knight.
  260.  
  261. 5) Nightrider Chess
  262. The knight can make long moves like bishops and rooks.
  263. Ng1 in the startposition can besides f3 and h3 move to e5 and d7.
  264.  
  265. 6) Rooksquare Chess
  266. You also win if you get a man moved to one of the opponents corners (white 
  267. moves a man to a8/h8). This variant is not implemented yet.
  268.  
  269.  
  270. History
  271. Dabbaba started in spring 1995 as NO-CHESS (Nielsen-Osted chess).
  272. Soon I made a version called BRUTALIS. It solves helpmates.
  273. Autumn 1995 Dabbaba got simple graphics, and SHOWTIME and SKAKBRAT were 
  274. preparations for this.
  275. Dabbaba and NO-chess (with focus on ordinary chess) will be continued.
  276.  
  277.  
  278. Stop the program
  279. CTRL+BREAK will cancel the program at the next display to the screen.
  280. If you are computing a move in a testposition and has turned screen-info 
  281. on, you have wait for the move or to reset your computer to stop it. 
  282.  
  283. Known error
  284. at the end of a game (mate/stalemate) Dabbaba will claim stalemate in a 
  285. mate-position....   
  286.  
  287. Future work with Dabbaba
  288. Make a simple evaluation of king safety (number of pawns covering the 
  289. king).
  290. Remove the end-of-the-game-error.
  291. Make Dabbaba play a little random in the opening.
  292. Finish the checksearch and find out what to do with the matesearch.
  293.    *** this is the goal with Dabbaba ver. 0.100 ***
  294. Optimize the code to improve the speed.
  295. Make use of hashtables.
  296. Remove more bad moves.
  297. Make a better search of lines.
  298. Make a better positional evaluation.
  299. Incorporate more variants of chess.
  300. Better graphics (Dabbaba is still mainly based on textmode).
  301. Make use of the mouse.
  302. Implement permanent brain (calculate moves while the opponent thinks).
  303. Make an opening library. 
  304. Try the null-move trick.
  305. Give Dabbaba endgame knowledge.
  306.  
  307.  
  308. ***************************************************************************
  309.  
  310. If you want to know more about computerchess I can strongly recommend 
  311. 'Schach am PC' (sep. 1995, 500 pages). It contains a CD-ROM with 50MB data 
  312. including a school-example of a chessprogram with binaries and sourche both 
  313. in C and Visual Basic (surprisingly only 30% slower than the C-version). 
  314. The program is described in the book.
  315. If you want to have a look at the program MiniMAX; first try the version in
  316. BASIC as only this starts with a presentation of the available commands. 
  317. A demo-version of ChessBase for Windows includes the endgamedatabase KBB-KN 
  318. with 121 million positions compressed in 28MB.
  319.  
  320. 'Grottan' is a computerchess-BBS in G¢teborg, Sweden. SysOp is G¢ran 
  321. Grottling. Phone 31992301. 
  322.  
  323. Variant Chess - 4 issues pr. year.
  324. 9 GBP or 13 USD Europa/Rest of world(surface). 
  325. Write to editor Peter Wood, 39 Linton Road, Hastings, East Sussex, TN34 
  326. 1TW, England.
  327.  
  328. Eteroschacco
  329. An italian magazine about chess variants. Write to Alessandro Castelli, 
  330. 62010 Villa Potenza, Macerata, Italy. 
  331.  
  332. In 1994 came the long waited book: The Encyclopµdia of Chess Variants (ECV) 
  333. by D.B.Pritchard. 1450 variants are explained.
  334. Write to Games & Puzzles, PO Box 20, Godalming, Surrey GU9 4YP, UK.
  335. Price 22 GBP + porto.
  336.  
  337. ***************************************************************************
  338.  
  339. Dabbaba is spread to Denmark, England, Italy, Sweden and USA.
  340.  
  341. If you have any comments you can send me a note. 
  342.  
  343.  
  344.  
  345.  
  346. Greetings
  347.  
  348.  
  349.  
  350. Jens Bæk Nielsen
  351. Daltoften 15
  352. 8600 Silkeborg
  353. Denmark
  354. jensbaek@silkeborg.bib.dk
  355.  
  356.