home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / MISC / FUNCLR11.ZIP / FUNCOLRS.DOC < prev    next >
Encoding:
Text File  |  1991-08-07  |  4.3 KB  |  75 lines

  1.                 Documentation for
  2.                  FUNCOLRS.COM
  3.                 by Duane Paulson
  4.                    BASED ON RNDGEN.ASM
  5.               BY COMPUSERVE MEMBER 72210,17
  6.  
  7. First off, a big thank you to CompuServe Member 72210,17. I don't know your
  8. name, but you uploaded RNDGEN.ASM way back in July of 1988. Without it,
  9. Funcolrs probably wouldn't work half as well. RNDGEN.ASM implements what looks
  10. like a very sophisticated psuedorandom number generator, certainly beyond
  11. anything that I could come up with.
  12.  
  13. FUNCOLRS.COM is for ZCOMM and PRO-YAM users, who can use it to modify the
  14. colors on their graphics transfer screens. GSZ users, regretably, cannot use
  15. this program, because the GSZ color variables are stored within the GSZ
  16. executable.
  17.  
  18. What FUNCOLRS does is set each variable to a different color. Since there
  19. are 15 active variables in the GCOLORS set (the last 2 don't appear to be
  20. in use), and there are 15 colors available under DOS (if you don't count
  21. black, and include the high-intensity values) everything works out. Each
  22. color parameter is assigned a unique value. All the values from 1 to 15 are
  23. used once, and only once. Since a random number generator is in use,
  24. however, you never know which colors are going to end up assigned to which
  25. parameters. It is my opinion that this adds to the fun of using a color
  26. graphic file transfer program. You will never know what your screen will
  27. look like until the file transfer starts. Since all the values are for
  28. a unique color on a black background, everything should be readable. The
  29. only exception could be mono monitors that don't display "bright black"
  30. (DOS color 8).
  31.  
  32. You can implement FUNCOLRS by a two step process:
  33.     1. Place it in your ZCOMM start-up batch file (or call it
  34.        from your start-up script!) 
  35.     2. Put the following line in your ZCOMM start-up script:
  36.         source    gcolors.t
  37. Your installation is now complete.
  38.  
  39. FUNCOLRS will run automatically, and select a new set of colors each time
  40. you run ZCOMM. If you should hit on a combination of colors that you want
  41. to keep around for awhile, just set the read only bit on GCOLORS.T before
  42. running ZCOMM again (C>attrib gcolors.t +r). FUNCOLRS will not be able
  43. to write to the file. It will show you an error message,
  44.     "Cannot create file. No handles available or access denied."
  45.  
  46. FUNCOLRS creates GCOLORS.T in the subdirectory it is run from, so you'll have
  47. to install it in you ZCOMM directory, or point the script toward it when you
  48. issue the source command.
  49.  
  50. +===========================================================================+
  51. | EMAIL - I can receive and reply to email via the following services:      |
  52. +---------------------------------------------------------------------------+
  53. | ■The Kandy Shack BBS■                      {1200-14400 bps HST/V.32bis N81|
  54. | (714) 636-2667 Garden Grove, CA            {5 Nodes/Files/Games/ILink/More|
  55. | Post a message on the Main Board to: DUANE PAULSON {No Fees Subs or Ratios|
  56. +===========================================================================+
  57. | GEnie: XTX13326                   | CompuServe: 70671,666                 |
  58. +-----------------------------------+---------------------------------------+
  59. | MCI MAIL:                         | INTERNET: (email only)                |
  60. |                                   | 70671.666@compuserve.com              |
  61. | TO: Duane Paulson                 +---------------------------------------+
  62. | EMS: COMPUSERVE/ MCI ID: 281-6320 | AT&T MAIL:                            |
  63. | MBX: 70671,666                    | mhs!csmail!70671.666                  |
  64. +-----------------------------------+---------------------------------------+
  65. | TELEX:                                                                    |
  66. | The machine number to send the message to: 3762848                        |
  67. | (which has the answerback of CompuServe)                                  |
  68. |                                                                           |
  69. | You must specify on the first non-blank line of the message a "TO:"       |
  70. | followed by my User ID to inform CompuServe Mail where to deliver         |
  71. | the message.                                                              |
  72. |        TO: 70671,666              (This is required)                      |
  73. +===========================================================================+
  74.  
  75.