home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / GRAV_PAT / PPLT_140.ZIP / PATMENU / PATMENU.TXT < prev    next >
Encoding:
Text File  |  1995-12-08  |  10.7 KB  |  263 lines

  1.         *****************************************************
  2.         *                 «Patmenu  v1.0»                   *
  3.         *             by Eero Räsänen (C) 1995              *
  4.         *****************************************************
  5.  
  6. Purpose
  7. -------
  8.  
  9.   A program for managing custom patch sets, especially Pro Patches Lite patch set.
  10.   You can start patmenu without any parameters and do the work easily with
  11.   a menuing system. However, some times it would be handy to manage the patch
  12.   set also from command-line, for example, optimizing the patch set for
  13.   some game in a batch file. Next section describes the command-line parameters.
  14.  
  15. Note
  16. ----
  17.  
  18.   When started the first time Patmenu creates a directory called "backup" under
  19.   your \ultrasnd\midi directory. Patmenu uses this directory to backup the
  20.   original patches which are replaced by some custom patches. So DON'T
  21.   EVER remove this directory !!!
  22.  
  23. ------------------------------------------------------------------------------
  24.  
  25. Usage ( Currently works only with DOS version of Patmenu )
  26. -----
  27.  
  28.   PATMENU [s|p|q|r|X Y]
  29.  
  30.   Parameter  Meaning
  31.   =========  =======
  32.      s          Full Pro Patches Lite mode
  33.                   - Installs all the Pro Patches Lite patches.                  
  34.  
  35.      p          1024 KB GUS Game compability mode
  36.                   - for games which use a lot of patches.
  37.                   - Use with 1024 KB GUS
  38.  
  39.      q          MegaEm and 512 KB GUS game compability mode
  40.                   - For rebuilding 1024 KB MegaEm 3.xx bank.
  41.                   - Removes patches that cause problems also with MegaEm 2.xx.
  42.                   - If you have 512 KB GUS, use this mode when playing games.
  43.  
  44.      r          Restores all orginal patches. You Shouldn't have to use this.
  45.  
  46.      X Y        Command line version of the user interface of the patmenu.
  47.                 Same as starting patmenu without any parameters and pressing
  48.                 key "X" and after that pressing key "Y". For example, restoring
  49.                 original drums could be done with command "patmenu i 0" and
  50.                 with command "patmenu i 1" would vopy the Pro Patches Lite versions
  51.                 back. 
  52.  
  53. ------------------------------------------------------------------------------
  54.  
  55. INI - files
  56. -----------
  57.  
  58.     You already may have noticed that there are some .ini files included
  59.     with the patmenu program. These .ini files describe the cathegories
  60.     of patches used in the program. For example, when you are in the main
  61.     menu of the patmenu and you press key "0" then what ever you decide
  62.     to do, settings in the "0pats.ini" will take effect. Likewise, "1" for
  63.     "1pats.ini", "2" for "2pats.ini" and so on... The last ini -file which
  64.     can be used is "opats.ini" because the "ppats.ini" is already used
  65.     for game compability mode. So, you still have five free ini -files to
  66.     use after that "ipats.ini" used by Pro Patches Lite drums. You can make
  67.     new ini -files to have more cathegories patches.
  68.  
  69.     If you would like to have more options in some of the existing
  70.     cathegories ( like "808 drums" in the "drums" menu ) check out
  71.     the next section of this file and study the format of the ini -files.
  72.     
  73.         INI file   Description
  74.         ==========================
  75.         0pats.ini  Acoustic pianos
  76.         1pats.ini  Electric pianos
  77.         2pats.ini  Chromatic percussion
  78.         3pats.ini  Organs
  79.         4pats.ini  Acoustic guitars
  80.         5pats.ini  Electric guitars
  81.         6pats.ini  Basses
  82.         7pats.ini  Strings
  83.         8pats.ini  Ensemble
  84.         9pats.ini  Brass
  85.         apats.ini  Reed
  86.         bpats.ini  Pipe
  87.         cpats.ini  Synth lead
  88.         dpats.ini  Synth pad
  89.         epats.ini  Synth fx
  90.         fpats.ini  Ethnic
  91.         gpats.ini  Percussive
  92.         hpats.ini  Sound effects
  93.         ipats.ini  Drums
  94.  
  95.         ppats.ini  For playing games with 1024 KB GUS
  96.                       - do not change unless you know what you are doing !
  97.         qpats.ini  For MegaEm 2.xx and 3.xx and 512 KB GUS with games
  98.                       - do not change either !
  99.                    
  100. ------------------------------------------------------------------------------
  101.  
  102. Format of INI files
  103. -------------------
  104.  
  105.    It's essential to know the format of the INI- files, if you want to
  106.    use also some other custom patches. This version of patmenu doesn't
  107.    have any editor included, so you have to do it manually by editing
  108.    the files with some nice editor, like the on which came with DOS :).
  109.    Well, the format is quite simple. Mostly it just looks very cryptic
  110.    because of the "*" and "#" characters.
  111.  
  112.    Let's take a look into file 0PATS.INI
  113.  
  114.    -----------------------------------------------------------------------
  115. (1)     #0*ACOUSTIC PIANOS*ORIGINAL*Pro Patches Lite
  116.  
  117. (2)     0*acpiano**_*
  118.         1*britepno*_*
  119.         3*honky****_*
  120.         6*hrpschrd*_*
  121.         7*clavinet*_*
  122.   ------------------------------------------------------------------------
  123.  
  124.  
  125. (1)  First character of the first line of the file is a "#" char. That
  126.      character describes that the line is the header line of the cathegory.
  127.      So, then comes number "0". Right now, it has no meaning. There could be
  128.      any other number.
  129.      After that comes the first "*" character. As you already may have
  130.      noticed, "*" characters are used for string separators in the file
  131.      because strings can also include spaces. So, there must be at least
  132.      one "*" character to separate two strings. This also means that
  133.      there can be many "*" chars beetween to strings...
  134.      The string "ACOUSTIC PIANOS" describe the option in the main menu
  135.      of the patmenu.
  136.      The strings "ORIGINAL" and "Pro Patches Lite" describe the options in
  137.      the menu under the option "ACOUSTIC PIANOS"...got it ?
  138.  
  139. (2)  The second part of the file describes the patch files used in the
  140.      section. As before, the first number could be anything. I have used
  141.      it as patch number.
  142.      The second string describes the original patch file name.
  143.      Don't change these !!! 
  144.      The third string ("_") is a special case for Pro Patches Lite patch.
  145.      It means that the patch has same file name as the original one but
  146.      it resides in the Pro Patches Lite directory. So, the "_" char in the
  147.      "0*acpiano**_*" means same as "0*acpiano*acpiano*".
  148.      It's just a way to make the lines shorter.
  149.  
  150.      In other words, the second column in the file describes patches for the
  151.      "ORIGINAL" option in the menu and third column describes the same
  152.      thing for the option "Pro Patches Lite".
  153.  
  154.  
  155. ------------------------------------------------------------------------------
  156.  
  157. Changing INI files
  158. ------------------
  159.  
  160.      After you have understood the format of the INI -file described
  161.      above it is a good time to know how to make changes to them.
  162.      For example, lets assume that you have two new pianos under
  163.      directory "C:\PATCHES\BIGPIANO" and your Pro Patches Lite resides
  164.      under directory "C:\PATCHES". These two files are "BIGACPNO.PAT"
  165.      and "BIGBTPNO.PAT" and they are both very nice sounding, but
  166.      both are over 500kB in size. So, you would like to use them
  167.      in time to time for playing some midi files played with a solo
  168.      piano.
  169.  
  170.      First thing to do is to add a menu option for the pianos. It
  171.      can be done as follows.
  172.  
  173.      ----------------------------------------------------------------------
  174.  
  175.      #0*ACOUSTIC PIANOS*ORIGINAL*Pro Patches Lite*BIG PIANOS
  176.                                             
  177.      0*acpiano**_*BIGPIANO\BIGACPNO*
  178.      1*britepno*_*BIGPIANO\BIGBTPNO*
  179.      3*honky****_*_*****************
  180.      6*hrpschrd*_*_*****************
  181.      7*clavinet*_*/*****************
  182.  
  183.      ----------------------------------------------------------------------
  184.  
  185.      As you can see, the changes consist of one more string in the header
  186.      line to describe the new option in the menu and a column of text
  187.      in the second part of the file to describe the new patches.
  188.  
  189.      When the "BIG PIANOS" option is chooced from the menu "Acoustic pianos",
  190.      files acpiano Patmenu copies file "C:\patches\bigpiano\binacpno.pat" to     
  191.      file "C:\ultrasnd\midi\acpiano.pat" and file "C:\patches\bigpiano\binbtpno.pat" to
  192.      file "C:\ultrasnd\midi\britepno.pat".
  193.  
  194.      The next two lines are processed as decribed before and then comes
  195.      the last thing to wonder about - "/" character. This character is
  196.      invertion of "_" character. In this case it would restore the
  197.      original version of the "clavinet" patch. In other words, it
  198.      makes sure that original version of the patch is used when
  199.      "BIG PIANOS" option is chooced from the the menu "Acoustic pianos".
  200.  
  201.                                                     
  202.      BE SURE THAT YOU TAKE BACKUPS OF THE .INI FILES BEFORE CHANGING THEM !!
  203.  
  204. ------------------------------------------------------------------------------
  205.  
  206. Changes in version 1.0
  207. ----------------------
  208.  
  209.     - Few visual changes.
  210.     - The "RESTORE ORIGINAL GRAVIS PATCHES" line didn't highlite when
  211.       it was clicked with mouse.
  212.  
  213.  
  214. Changes in version 0.9
  215. ----------------------
  216.  
  217.      - A major bug was found. If one had FILE called 'backup' in
  218.        '\ultrasnd\midi' directory, Patmenu couldn't create the directory
  219.        called 'backup'! Due to this one could loose all original patches !
  220.        Now, if there is a file called 'backup' in the '\ultrasnd\midi'
  221.        directory when '\ultrasnd\midi\backup' is going to be created, the
  222.        file will be renamed to 'backup.$$'.
  223.  
  224.      - Windows version of the Patmenu did not work because it needed a
  225.        DLL called 'BIVBX11.DLL' to run. It is now included with Patmenu.
  226.  
  227.      - Windows version of the Patmemu didn't create the 'backup' directory,
  228.        if it didn't exist.
  229.  
  230.      - Windows version of the Patmenu didn't have any application icon.
  231.        Now it does.
  232.  
  233.  
  234. Changes in version 0.8
  235. ----------------------
  236.  
  237.      -Few visual changes.
  238.      -Now "Game Compability" and "MegaEm" modes work any time.
  239.      -Windows version included (wpatmenu.exe).
  240.  
  241.  
  242. Changes in version 0.7
  243. ----------------------
  244.  
  245.      When the mode is changed to Game Compability mode, patmenu can
  246.      not only restore, but also copy some instruments.
  247.      This is useful if there is some "middle quality" patch, which is
  248.      small and sound better than the original and sound, but does not sound
  249.      as good as some other bigger replacement.
  250.  
  251.  
  252. Changes in version 0.6
  253. ----------------------
  254.  
  255.      There was a minor bug in the user interface. When one pressed
  256.      "r" button, wrong line was highlighted.
  257.  
  258.      Changed the name to "Pro Patches Lite menu" 
  259.  
  260.  
  261.  
  262.                          ***End of File***
  263.