home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / life.zip / life.cnf < prev    next >
Text File  |  1994-05-16  |  2KB  |  48 lines

  1.     0 0 0
  2.     255 100 100
  3.     100 255 100
  4.     100 100 255
  5.     0 255 255
  6.     255 0 255
  7.     255 255 0
  8.     255 255 255
  9.     192 192 192
  10.     96 96 96
  11.     128 128 0
  12.     0 0 192
  13.     192 0 0
  14. 10  1  2  3
  15.  4  5  6 11
  16. 12  7  8  9
  17.  
  18. Organization of this file:
  19. The first line is the R G B colors for the background.  The next 12 lines
  20. is the RGB colors for the 12 different species of cells.  If my
  21. colors doesn't look good/distinct on your display, try something else.
  22. PM will try to map the colors to some palette if you have 256
  23. colors or less.
  24. After the colors comes the distribution of starting colonies.  The program
  25. divides the area used into a grid of 3 rows and 4 columns.  Each element
  26. in this grid is filled with a mix of background and the celltype specified
  27. for that position.  The rest of the file isn't used, and may be filled
  28. with comments like this.
  29. The species 1,2 & 3 are of type intolerant,
  30. species 4,5 & 6 are of type tolerant,
  31. species 7,8 & 9 are of type symbiotic I,
  32. and species 10, 11 & 12 are of type symbiotic II.
  33. See "life.c" for a description of the types.
  34.  
  35. 1 4 7 10   This is an alternative layout.  Each column has cells
  36. 2 5 8 11   of same type, but different species.  Different species
  37. 3 6 9 12   of type symbiotic II are adjacent, and may therefore
  38.              "take over" the screen fast.
  39.  
  40. You don't have to use all the different cell types if you
  41. don't want to.  Try the following cell array if you
  42. want a classical game of life:
  43. 1 1 1 1
  44. 1 1 1 1
  45. 1 1 1 1
  46.  
  47.  
  48.