home *** CD-ROM | disk | FTP | other *** search
/ Computer Installation Guide - Dragon Clan Series / CD1.iso / MPEG / S3_MMX2 / MISC / S3 / DOSMPEG.Z / README.TXT < prev    next >
Encoding:
Text File  |  1995-12-21  |  14.6 KB  |  380 lines

  1.  
  2.                  I.  INSTALLATION OF THE S3 DOS MPEG DRIVERS
  3.                  ===========================================
  4.  
  5.  
  6. 1.1  To install driver and associated files run SETUP.EXE under Windows 3.1
  7.      or Windows 95.  The following files will be installed on the hard disk:
  8.  
  9.      Drivers and dependent files:
  10.      ----------------------------
  11.         README   TXT  - This readme file
  12.         FMPDRV   EXE  - ReelMagic compliant DOS MPEG Driver
  13.         S3RMDRV  SYS  - S3 MPEG Environment driver
  14.         DOSMPEG  INI  - Configuration parameters
  15.         ALLOC_0       - Audio decoder file
  16.         ALLOC_1       - Audio decoder file
  17.         ALLOC_2       - Audio decoder file
  18.         ALLOC_3       - Audio decoder file
  19.         DRAGON   BAT  - Command file to run first version of Dragon's Lair
  20.  
  21.      Since installation utility modifies AUTOEXEC.BAT and CONFIG.SYS, the
  22.      installation will take effect only after you reboot the computer
  23.  
  24.  
  25. 1.2  Installation utility will do the following modifications to the
  26.      CONFIG.SYS and AUTOEXEC.BAT files (X:\XXXX represents the full path
  27.      you specified during the installation process):
  28.  
  29.      Adds to the CONFIG.SYS and to CONFIG.DOS and CONFIG.WIN,
  30.      if present:
  31.      --------------------------------------------------------
  32.         DEVICE=X:\XXXX\S3RMDRV.SYS
  33.  
  34.      Adds to the AUTOEXEC.BAT and to AUTOEXEC.DOS and
  35.      AUTOEXEC.WIN, if present:
  36.      --------------------------------------------------------
  37.         PATH=%PATH%;X:\XXXX
  38.  
  39.      Installation utility will add these lines to the very end of the
  40.      mentioned files.  Thus if you have a multiple configuration structure
  41.      supported by CONFIG.SYS and AUTOEXEC.BAT files, DOS MPEG drivers will
  42.      work in all configurations.
  43.  
  44.      Windows 95 may keep three versions of CONFIG and AUTOEXEC files. Their
  45.      extensions will be .SYS/.BAT, .WIN, and .DOS - Windows 95 uses different
  46.      pairs of files being boot to DOS or to Windows.  Installation utility
  47.      will modify all .SYS/.BAT, .WIN, and .DOS files so that DOS MPEG
  48.      drivers will be installed and accessible in any circumstances.
  49.  
  50.  
  51. 1.3  It is impossible, of course, to predict how CONFIG.SYS and AUTOEXEC.BAT
  52.      files will look on your system.  Provided is a sample highlighting some
  53.      issues which may help you to master your DOS environment.  See comments,
  54.      "rem"s, included in the samples.
  55.  
  56.      CONFIG.SYS:
  57.      -------------------------------------------------------
  58.         DOS=HIGH,UMB
  59.         DEVICE=C:\DOS\HIMEM.SYS /TESTMEM:OFF
  60.  
  61.         DEVICE=C:\DOS\EMM386.EXE NOEMS HIGHSCAN
  62.         rem  Using HIGHSCAN may give you a couple of extra K-bytes but may
  63.         rem  give some troubles as well
  64.  
  65.         BUFFERS=20,0
  66.         FILES=35
  67.         FCBS=20,0
  68.         STACKS=9,256
  69.         rem  Preceding four lines define, after all, how many files can
  70.         rem  be simultaneously opened on the system.  Proposed parameters
  71.         rem  will work for all supported DOS MPEG titles
  72.  
  73.         LASTDRIVE=F
  74.         rem  DOS will reserve some space for each additional drive.  So if
  75.         rem  you try to squeeze the maximum free space, you should specify
  76.         rem  as few drives as possible.  Usually LASTDIVE need to be the next
  77.         rem  after CD-ROM drive.  For example, if the CD-ROM drive is E:
  78.         rem  you can make LASTDRIVE=F
  79.  
  80.         SHELL=C:\DOS\COMMAND.COM /P /E:1636
  81.  
  82.         DEVICEHIGH=C:\SB16\DRV\SBIDE.SYS /D:MSCD001 /M:P
  83.         rem  CD-ROM models and drivers will vary, but you definitely have
  84.         rem  a CD-ROM drive on your system.  As an example we used
  85.         rem  Creative Labs 4x IDE CD-ROM drive.
  86.  
  87.         DEVICEHIGH=C:\SB16\DRV\CTSB16.SYS /UNIT=0 /BLASTER=A:220 I:5 D:1 H:5
  88.         DEVICEHIGH=C:\SB16\DRV\CTMMSYS.SYS
  89.         rem  Most games will work more spectacular if you have a sound
  90.         rem  device on your computer.  Please check your User's Guide
  91.         rem  to see how MPEG device and Sound device should be connected.
  92.         rem  The given sample shows how Creative Labs Sound Blaster 16 can
  93.         rem  be configured
  94.  
  95.         DEVICE=C:\S3MPEG\S3RMDRV.SYS
  96.         rem  We have just installed it !
  97.  
  98.      AUTOEXEC.BAT:
  99.      -------------------------------------------------------
  100.         @ECHO OFF
  101.  
  102.         PROMPT $p$g
  103.         SET TEMP=C:\TMP
  104.         PATH=C:\;C:\WINDOWS;C:\DOS;C:\MOUSE
  105.         C:\MOUSE\MOUSE.EXE
  106.  
  107.         LH C:\DOS\SMARTDRV.EXE /U
  108.         rem  If using SmartDrive, use the /U option to disable the buffering
  109.         rem  for the CD-ROM.  It is recommended that you do not use
  110.         rem  SmartDrive for the DOS MPEG playback - it will eat a lot of
  111.         rem  space and will not give any performance advantages (may give
  112.         rem  disadvantages though).
  113.  
  114.         rem  The following is for the Creative Labs Sound Blaster 16 Sound
  115.         rem  card.  Consult your manual for other cards.
  116.         SET SOUND=C:\SB16
  117.         SET BLASTER=A220 I5 H5 P330 T6
  118.         SET MIDI=SYNTH:1 MAP:E
  119.         C:\SB16\DIAGNOSE /S
  120.         C:\SB16\SB16SET /P /Q
  121.  
  122.         C:\DOS\MSCDEX.EXE /D:MSCD001
  123.         rem  For best results, do not use the /M:X buffering settings with
  124.         rem  MSCDEX.EXE.  It may slow down MPEG playback dramatically.
  125.  
  126.         PATH=%PATH%;C:\S3MPEG
  127.         rem  We have just added it !
  128.  
  129.  
  130.      For Compaq users the following sample files may look more familiar.
  131.      We did not comment each line here, but all preceding comments are still
  132.      applicable.
  133.  
  134.      CONFIG.SYS:
  135.      -------------------------------------------------------
  136.         DOS=HIGH,UMB
  137.         DEVICE=C:\DOS\HIMEM.SYS /TESTMEM:OFF
  138.         DEVICEHIGH=C:\WINDOWS\CPQWIN\CPQCM.SYS
  139.         DEVICE=C:\DOS\EMM386.EXE NOEMS HIGHSCAN
  140.  
  141.         BUFFERS=20,0
  142.         FILES=35
  143.  
  144.         DEVICEHIGH /L:1,12048 =C:\DOS\SETVER.EXE
  145.         DEVICEHIGH /L:1,14816 =C:\CPQDOS\CPQIDECD.SYS /D:IDECD001
  146.  
  147.         DEVICEHIGH=C:\S3MPEG\S3RMDRV.SYS
  148.  
  149.      AUTOEXEC.BAT:
  150.      -------------------------------------------------------
  151.         @ECHO OFF
  152.  
  153.         PROMPT $p$g
  154.         SET LMOUSE=C:\MOUSE
  155.         SET TEMP=C:\TEMP
  156.         SET TMP=C:\TEMP
  157.  
  158.         PATH=C:\;C:\WINDOWS;C:\DOS;C:\MOUSE
  159.  
  160.         C:\WINDOWS\ESSCFG
  161.         LH /L:0;1,45536 /S C:\DOS\SMARTDRV.EXE /U
  162.         LH /L:1,27952 C:\CPQDOS\MSCDEX.EXE /D:IDECD001
  163.         C:\MOUSE\MOUSE.EXE
  164.  
  165.         C:\CPQDOS\MODE.COM CO80
  166.  
  167.         PATH=%PATH%;C:\S3MPEG
  168.  
  169.  
  170. 1.4  Most MPEG titles require a lot of free memory.  To get the maximum
  171.      free DOS memory on your system, remove all unused or irrelevant
  172.      device drivers, TSRs, and settings and run MEMMAKER.EXE - DOS
  173.      memory configuration utility.  Consult DOS Help for additional
  174.      information about MEMMAKER.
  175.  
  176.      To check how much free memory is available, use MEM.EXE - another DOS
  177.      utility.  Consult DOS Help for additional information about MEM.
  178.  
  179.  
  180. 1.5  To achieve the best performance and smooth MPEG playback your system
  181.      should be equipped with 4x or better CD-ROM drive.  You should also
  182.      disable any kind of CD-ROM access caching.  Please consult your CD-ROM
  183.      drive Manual for additional information.  Be prepared to spend some
  184.      time configuring your CD-ROM drive - it will pay off !
  185.  
  186.  
  187.  
  188.  
  189.                 II.  CONFIGURATION OF THE S3 DOS MPEG DRIVERS
  190.                 =============================================
  191.  
  192.  
  193. 2.1  DOSMPEG.INI is the configuration file for the DOS MPEG drivers.  This
  194.      section explains in details all entries of this file.
  195.  
  196.  
  197. 2.2  Board's unchangeable parameters.  This parameters represent the board
  198.      type and should not be modified.  The most common parameters will be:
  199.  
  200.      ISA Card
  201.      ---------------
  202.         board=1
  203.         clock=444
  204.  
  205.      PCI Combo Card
  206.      ---------------
  207.         board=3
  208.         clock=444
  209.  
  210.      Compaq Systems
  211.      ---------------
  212.         board=2
  213.         clock=444
  214.  
  215.  
  216. 2.3  Interrupt (IRQ) configuration.  There are two entries in the DOSMPEG.INI
  217.      responsible for it: "irq" and "irqlet"
  218.  
  219.      In case of the PCI (board=3) or Compaq (board=2) systems, drivers can
  220.      detect IRQ automatically.  To specify it, the configuration file will
  221.      contain :
  222.  
  223.         irq=0
  224.         irqlet=P
  225.  
  226.      When "irq" is equal to 0, the autodetection mechanism will be involved.
  227.      On some PCI systems, especially with the older versions of the PCI BIOS
  228.      this mechanism may not work properly.  In this case you may want to
  229.      force MPEG hardware to use a specific interrupt vector.  To do it, you
  230.      should specify IRQ number explicitly, for example:
  231.  
  232.         irq=11
  233.  
  234.      will force interrupt 11 to be used.  If your MPEG hardware can use only
  235.      specific interrupts, the User's Guide will specify all allowed values of
  236.      the "irq" entry.  "irqlet" entry for both PCI and Compaq systems should
  237.      be set to "P".
  238.  
  239.      It is impossible to automatically detect the IRQ number for the ISA
  240.      MPEG card.  Both "irq" and "irqlet" entries should then be set
  241.      explicitly.  There is a strict relation between both parameters.  Your
  242.      MPEG hardware User's Guide should contain the table defining the
  243.      relation.  In most cases it will look like:
  244.  
  245.          irq    irqlet
  246.          -------------
  247.           3        A
  248.           4        B
  249.           5        C
  250.           6        D
  251.           7        E
  252.  
  253.      In this case if, for example you decided to use interrupt 6, you should
  254.      make:
  255.  
  256.         irq=6
  257.         irqlet=D
  258.  
  259.      IRQ is the master - select IRQ first and then find the corresponding
  260.      letter.
  261.  
  262.      DOSMPEG.INI for ISA card will contain the default values of "irq" and
  263.      "irqlet".
  264.  
  265.  
  266. 2.4  Operating system parameters are:
  267.  
  268.        win95=0
  269.        win31=0
  270.  
  271.      If equal to "0", drivers will totally refuse to work under Windows95 or
  272.      Windows 3.1 respectively.  It is possible though to force drivers
  273.      to work in full screen Windows 3.1 or Windows 95.  Set the respective
  274.      value to "1".  For example "win95=1" will make driver loadable
  275.      under Windows 95.  Important !  It is not advised to run drivers in
  276.      the multitasking environment.  Many titles will fail.
  277.  
  278.  
  279.  
  280.  
  281.                   III.  SUPPORTED REELMAGIC DOS MPEG TITLES
  282.                   =========================================
  283.  
  284.  
  285. 3.1  Return to Zork
  286.      ----------------------------
  287.      Run installation and follow the instructions.  Choose Sound Blaster
  288.      Pro as a sound device.  Parameters should be port=220, irq=5, dma=1.
  289.  
  290.      Because of palette switching problem, there are a few areas where parts
  291.      of the screen may flicker.  This will not effect gameplay.
  292.  
  293.  
  294. 3.2  Space Ace (ReelMagic ver.)
  295.      ----------------------------
  296.      Change active drive to be a CD-ROM drive and run PLAY.BAT.
  297.  
  298.  
  299. 3.3  Dragon's Lair
  300.      ----------------------------
  301.      There are two versions of this game.  The early version of the game
  302.      uses "play-from-file" ReelMagic API; the other - "play-from-buffer".
  303.      If there is PLAY.BAT file on the CD-ROM - it is the second version,
  304.      if not - the first.  Second version of the game can be run directly
  305.      from CD-ROM.  Simple run PLAY.BAT.  Since the earlier version did
  306.      not contain this useful file, we provide one (it is called DRAGON.BAT)
  307.      on our installation diskette.  If you get an "Invalid drive" error,
  308.      then modify the line that reads "D:" to reflect which drive is the
  309.      CD-ROM.
  310.  
  311.      There is a known problem with the play-from-files version of Dragon's
  312.      Lair title in the room Black Knight and the Checkerboard Floor.  If the
  313.      room starts out with a jump to the right, the room cannot be completed.
  314.      There is a mirror image of this room, so you will have to restart the
  315.      game and play until you start with a jump to the left.
  316.  
  317.  
  318. 3.4  The Horde
  319.      ----------------------------
  320.      Install and run.  This title will not display MPEG clips if mouse is
  321.      not installed.  Be sure to have mouse installed.
  322.  
  323.      If the game locks up as you start gameplay, it is an indication that
  324.      the sound card was not detected properly.  This game is unique in that
  325.      it does not allow for manual configuration of your sound card, and
  326.      occasionally it will detect the wrong settings.  Consult your Sound
  327.      Card manuals and adjust the settings until it works properly.  You will
  328.      know it is correct when a "selection" noise plays when you scroll
  329.      through the options on the "New Game", "Load Game", "Quit" screen.
  330.  
  331.  
  332. 3.5  Lord Of The Rings
  333.      ----------------------------
  334.      It is the most "memory greedy" program so far.  Installation guide
  335.      suggests the way to install this game.  We found that game can be
  336.      installed successfully if before MEM.EXE reports more than 580K (593,920
  337.      bytes) in Conventional Memory and more than 129K (132,096 bytes) in
  338.      Upper Memory.  In order to free this amount of space you will have to
  339.      remove all drivers and TSRs from AUTOEXEC.BAT and CONFIG.SYS files.  It
  340.      will also help if you move CD-ROM drivers to lower memory.
  341.  
  342.      Here is the sample of how you can meet memory restrictions on the Compaq
  343.      system.  The following modifications ot AUTOEXEC.BAT and CONFIG.SYS are
  344.      advised (please refer to sample files in section 1.3 of this README file):
  345.  
  346.      CONFIG.SYS:
  347.         remove ->  DEVICEHIGH=C:\WINDOWS\CPQWIN\CPQCM.SYS
  348.         remove ->  DEVICEHIGH /L:1,12048 =C:\DOS\SETVER.EXE
  349.         edit   ->  DEVICEHIGH /L:1,14816 =C:\CPQDOS\CPQIDECD.SYS /D:IDECD001
  350.         to     ->  C:\CPQDOS\CPQIDECD.SYS /D:IDECD001
  351.  
  352.      AUTOEXEC.BAT:
  353.         remove ->  LH /L:0;1,45536 /S C:\DOS\SMARTDRV.EXE /U
  354.         edit   ->  LH /L:1,27952 C:\CPQDOS\MSCDEX.EXE /D:IDECD001
  355.         to     ->  C:\CPQDOS\MSCDEX.EXE /D:IDECD001
  356.  
  357.      You may have to run the game without mouse support. It may not be
  358.      possible to free enough memory to run this game on some systems.
  359.  
  360.  
  361. 3.6  Man Enough
  362.      ----------------------------
  363.      Run installation utility with /A option (INSTALL /A) and follow the
  364.      instructions.  Choose Sound Blaster (NOT Sound Blaster Pro) as a sound
  365.      device in both cases.  Put the scroller in the middle of [MIN-MAX] scroll
  366.      bar; Scroller [Music-Samples] should be 1/2" from Samples.
  367.  
  368.  
  369. 3.7  Flash Traffic
  370.      ----------------------------
  371.      Run installation and follow the instructions.  Do not try to profile
  372.      CD-ROM (cancel it as soon as possible, otherwise it may crash). Choose
  373.      Sound Blaster Pro as a sound device in both cases.  Parameters should be
  374.      port=220, irq=5, dma=1.  This game should be always installed after the
  375.      driver, since it tries to find driver in path and than hardcodes it in
  376.      batch file.
  377.  
  378.  
  379.  
  380.