home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / tcl / tcl_1 / !Wally_!Help < prev    next >
Encoding:
Text File  |  1996-01-28  |  1.4 KB  |  34 lines

  1. Wally - shade demonstration program
  2.  
  3. Wally is a front end for a simple Go program written in c by Bill Newman.
  4.  
  5. See the file "!Wally.wallyrm" for conditions of use of the original wally
  6. program, and "!Wally.readme" for details of later additions.
  7.  
  8. The filer needs to have seen the !Tcl directory before it will run
  9. It needs RISCOS 3.1 or greater.
  10.  
  11. The iconbar setup option choses a board size, and whether to give the computer
  12. a handicap. Click on the icon to get a board.
  13.  
  14. You play white. Make a move by clicking on the board. Pass or resign from the 
  15. board menu. If you close the board window it shuts down the game ready to start
  16. another one. If you shut the comments window you can open it from the board 
  17. menu.
  18.  
  19. ================================================================================
  20.  
  21. The program gives a example of how to use a taskwindow in shade.
  22.  
  23. The last command of procedure "play" starts wally in a taskwindow.
  24.  
  25. The output of the taskwindow is sent to procedure "out".  This assembles the
  26. output into lines to pass on to procedure "use". This takes the output lines
  27. that give an ASCII representation of the board and update the display.
  28.  
  29. Procedure "clickproc" translates the coordinates into a suitable form and pass
  30. them to wally.
  31.  
  32. The procedure "change" draws the pieces, and demonstrates how to draw a good 
  33. approximation to a circle using four Bezier curves.
  34.