home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / util / grifeath.sit / Help.bin / Help
Encoding:
Text File  |  1989-08-13  |  3.1 KB  |  82 lines  |  [TEXT/MACA]

  1. ### Introduction. ###
  2.  
  3. Here is a nifty implementation of the cyclic cellular automaton  described in the August 1989 Scientic American. The purpose of this program is to make pretty color pictures.
  4.  
  5. ### About Griffeath's Cyclic Space ###
  6.  
  7. Like Conway's familiar game of Life, Griffeath is a two dimensional space in which objects are born, eat, grow, and are eaten.
  8.  
  9. Unlike Life, Griffeath's space uses lots of pretty colors, so this program requires color quickdraw. It should even be interesting on an SE/30, but to get the full benefit of the program you should have a monitor with at least 16 colors.
  10.  
  11. Griffeath spaces go through three or four distinct states:
  12.  
  13. Ñ debris: a random pepper & salt appearance
  14.  
  15. Ñ droplets: small lozenge shaped areas of solid colors that grow and consume each other.
  16.  
  17. Ñ The droplets may grow until they consume the whole window, or spirals may appear. the stage of baby spirals is called the "defect" stage
  18.  
  19. Ñ demons: color spirals take over the whole window. Since these develop at random, sometimes they never happen.
  20.  
  21. Colors grow by looking at their left, right, up, & down neighbors. If the color number there is one less than theirs, they eat their neighbor. Here is an example:
  22.  
  23. time t:      time t+1
  24.   +-+          +-+
  25.   |6|          |7|
  26. +-+-+-+      +-+-+-+
  27. |5|7|3|  =>  |5|7|3|
  28. +-+=+-+      +-+=+-+
  29.   |6|          |7|
  30.   +-+          +-+
  31.  
  32. ### About This Program, Griffeath,DPO ###
  33.  
  34. This program is Copyright (c) 1989 by David Phillip Oster.
  35. You may make as many copies as you want, and you may give copies away, but you may not remove my copyright message, nor modify the help text. You do not need to pay me anything for this version. I may make a newer version available someday, under different terms.
  36.  
  37. Ñ You can edit the color palette by clicking on the colors at the right of the window.
  38.  
  39. Ñ If you completely mess up the colors, choose "restore factory colors" from the Edit menu, and my original colors will be used for the next window you make.
  40.  
  41. Ñ Wrap Edges connects the top edge to the bottom edge, and the left edge to the right edge. You can turn it on and off at any time.
  42.  
  43. Ñ You can set the number of states from the state menu. Changing the number of states causes the window to re-initialize.
  44.  
  45. Ñ Changing the size of a window causes the window to re-initialize.
  46.  
  47. I appreciate all communication. If you wish to send me kudos, complaints, comments, or coinage, you can reach me at:
  48.  
  49. David Phillip Oster
  50. Mosaic Codes
  51. Suite 2036
  52. 2140 Shattuck Ave.
  53. Berkeley, CA 94704
  54.  
  55. on M.C.I, I am "DOSTER".
  56. on Macnet, I am "oster"
  57. on internet, I have a temporary account as:
  58. oster@dewey.soe.berkeley.edu
  59.  
  60. on uucp, I have a permanent account as:
  61. {sun,ucbvax}!well!oster
  62.  
  63. ### For More Information ###
  64. David Griffeath is at the University of Wisconsin at Madison
  65.  
  66. His book is:
  67. "Cyclic Cellular Automata in Two Dimensions."
  68. Robert Fisch, Janko Gravner and David Griffeath
  69. Ted. E. Harris Festschrift. Birkhauser, in press.
  70.  
  71. The best source at the moment is:
  72.  
  73. Computer Recreations
  74. Scientific American, August 1989
  75. p. 102-105
  76.  
  77. "A cellular universe of debris, droplets, defects and demons"
  78.  
  79. by A. K. Dewdney
  80.  
  81. Read this article, it is fun.
  82.