home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / games / gnugo.README < prev    next >
Encoding:
Text File  |  1992-04-10  |  3.8 KB  |  123 lines

  1.                GNU GO - the game of Go (Wei-Chi)
  2.                Version 1.1   last revised 3-1-89
  3.          Copyright (C) Free Software Foundation, Inc.
  4.                     written by Man L. Li
  5.                     modified by Wayne Iba
  6.                    documented by Bob Webber
  7.          NeXT port by Howard Pan
  8.  
  9. This program is the updated version of Hugo (Version 1.0).  It is an
  10. attempt to start a free program to play Go.  The idea is based on the
  11. article "Programming the Game of Go. Byte, Vol.6 No.4" by J. K. Millen.
  12.  
  13. Currently, this program only understands basic Go rules and play skills.
  14. It counts the number of liberty for each board piece.  Computer move is
  15. generated by choosing among several possible moves to attack the opponent,
  16. defense own pieces and match playing patterns.  If no good move is found
  17. then random move will be generated.  It doesn't have the concept of eye
  18. although it will try to form one.
  19.  
  20. The program is written in C running on Sun and IBM PC.  The only difference
  21. is the function to get system time as the seed for the random number
  22. generator.  It can easily ported to other systems by changing this function.
  23. Computer Innovation C86 compiler is used for the PC version.  To use other
  24. C compilers, simple change is required.
  25.  
  26. You are encouraged to send in enhencement, suggestion, bug/fix for this
  27. program.  Future release can be obtained from Free Software Foundation and
  28. usenet rec.games.go newsgroup.
  29.  
  30. This package contains the following files:
  31.  
  32. README - you are reading it.
  33.  
  34. COPYING - GNU general public license
  35.  
  36. Documentation - description of each function
  37.  
  38. Makefile - file to compile gnugo program on Sun
  39.  
  40. make.bat - file to compile gnugo program on IBM PC with C86 compiler
  41.  
  42. objs - linking list used by make.bat
  43.  
  44. count.c - count liberty of one piece
  45.  
  46. countlib.c - count liberty of pieces
  47.  
  48. endgame.c - bookkeeping at end of game
  49.  
  50. eval.c - evaluate liberty
  51.  
  52. exambord.c - update game board
  53.  
  54. findcolr.c - find connected pieces of the same color
  55.  
  56. findnext.c - find move to defense against attack and function to evaluate move
  57.  
  58. findopen.c - find opponent liberty and choose move to attack
  59.  
  60. findpatn.c - match play patterns for next move
  61.  
  62. findsavr.c - check own weakness to defense
  63.  
  64. findwinr.c - find opponent weakness to attack
  65.  
  66. fioe.c - check if fill in its own eye
  67.  
  68. genmove.c - main function to generate computer move
  69.  
  70. getij.c - convert move string to board position
  71.  
  72. getmove.c - read move or command from human player
  73.  
  74. initmark.c - initialize marking array
  75.  
  76. main.c - gnugo main program
  77.  
  78. matchpat.c - match play pattern
  79.  
  80. opening.c - generate game opening moves
  81.  
  82. openregn.c - check open region
  83.  
  84. patterns.c - playing patterns
  85.  
  86. random.c - random number generator
  87.  
  88. seed.c - start random number generator seed
  89.  
  90. sethand.c - setup handicap pieces
  91.  
  92. showbord.c - show GO board and stone positions
  93.  
  94. showinst.c - show instruction on game playing
  95.  
  96. suicide.c - check illegal move if suicide
  97.  
  98. This program is free software; you can redistribute it and/or modify
  99. it under the terms of the GNU General Public License as published by
  100. the Free Software Foundation - version 1.
  101.  
  102. This program is distributed in the hope that it will be useful,
  103. but WITHOUT ANY WARRANTY; without even the implied warranty of
  104. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  105. GNU General Public License in file COPYING for more details.
  106.  
  107. You should have received a copy of the GNU General Public License
  108. along with this program; if not, write to the Free Software
  109. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  110.  
  111. Please report any bug/fix, modification, suggestion to
  112.  
  113. mail address:   Man L. Li
  114.                 Dept. of Computer Science
  115.                 University of Houston
  116.                 4800 Calhoun Road
  117.                 Houston, TX 77004
  118.  
  119. e-mail address: manli@cs.uh.edu         (Internet)
  120.                 coscgbn@uhvax1.bitnet   (BITNET)
  121.                 70070,404               (CompuServe)
  122.  
  123.