home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / BWSB120A.ZIP / BWSB.DOC < prev    next >
Encoding:
Text File  |  1980-01-04  |  57.3 KB  |  1,189 lines

  1.  
  2.                        Bells, Whistles, and Sound Boards
  3.                              TUTORIAL DOCUMENTATION
  4.  
  5.                    v1.20 for ASM, C/C++, TP, QB, PDS, and PB
  6.                             PLEASE DISTRIBUTE FREELY
  7.  
  8.                     Copyright (c) 1993-95, Edward Schlunder
  9.                               All Rights Reserved
  10.  
  11.         This project was started on 07-14-93 and now completed on 05-25-95.
  12.                (two years have been put into the making of BWSB)
  13.  
  14. I. Contents
  15.  ────────────────────────────────────────────────────────────────────────────
  16.  
  17.         1.      Introduction
  18.         1.1     Packing List
  19.         1.2     Hardware Requirements
  20.         1.3     Feature List
  21.         1.4     License Agreement/Disclaimer
  22.         1.5     Credits
  23.  
  24.         2.      Brief Tutorial
  25.         2.1     File Types Used
  26.         2.2     Getting Music Going
  27.         2.3     Adding Sound Effects
  28.         2.4     Things to Keep in Mind
  29.  
  30.         3.      Language Differences
  31.  
  32.         4.      Miscellaneous
  33.         4.1     Common Questions and Concerns about BWSB
  34.         4.2     Known Bugs and Limitations
  35.         4.3     Need Music? Read Here!
  36.         4.4     Technical Support/Contact Information
  37.         4.5     Distribution List
  38.         4.6     Closing Words
  39.  
  40.  
  41. Chapter 1. Introduction
  42.  ────────────────────────────────────────────────────────────────────────────
  43.         BWSB FACT  BWSB was originally written by a guy who did not know
  44.            OR      much about ASM, C, or Pascal coding. It was coded
  45.           LIE?     using mostly QuickBASIC 7.1 (aka PDS) and some ASM.
  46.  
  47.           BWSB  is a digital sound and music programming library for use
  48.         in  games,  demos, intros, etc. All  music and sound effects are
  49.         played  in the background, allowing  your program to do anything
  50.         it  likes  while  the sound and  music  is  playing. BWSB uses a
  51.         seamless  interface  to support  different sound devices through
  52.         the  use of runtime loadable music & sound engines (more on this
  53.         coming  up), so adding support for many different sound cards in
  54.         your  programs is no problem at all.
  55.  
  56. 1.1 Packing List
  57.  
  58.           When you decompress BWSB to your hard drive, make sure you use
  59.         PKUNZIP   -D  BWSBxxx  [enter],  which  will  let  pkzip  create
  60.         directories  on your hard drive. This  makes the whole package a
  61.         little bit less cluttered.
  62.  
  63.         Documentation:
  64.         BWSB.DOC       This tutorial document.
  65.         BWSB.REV       List of all the latest changes and additions
  66.         BWSB-REF.DOC   Function reference. It might be handy to print it.
  67.         TTP.TXT        Tailgunner Target Practice documentation.
  68.         REGISTER.DOC   Tells about what you get when you register.
  69.         REGISTER.FRM   Registration form to order BWSB.
  70.         LICENSE.DOC    License agreement for the registered version.
  71. G->                    See section 1.4 for the license agreement when
  72.                        using the unregistered evaluation copy of BWSB.
  73.  
  74.         Example Programs:
  75.         SETUP.EXE      Program to setup some of the example programs
  76.                        for your sound card and configuration.     [C]
  77.         MMP.EXE        Example module player.                [QB/PDS]
  78.         SND-PAD.EXE    Instrument player for demonstrating
  79.                        the PlaySample routine.               [QB/PDS]
  80.         GDMPLAY.EXE    Example module player.                    [TP]
  81.         GDMSCOPE.EXE   Module player that displays a digital
  82.                        scope in tune with the music.             [TP]
  83.         TTP.EXE        Tailgunner Target Practice example
  84.                        game for BWSB                             [TP]
  85.         PLAYC.EXE      Example module player.                 [C/C++]
  86.         CHPLAY.EXE     A little more advanced module player   [C/C++]
  87.         TPLAY.EXE      Example module player.. Really tiny.     [ASM]
  88.  
  89.         Utilities:
  90.         OL.EXE         OverLoader - a program to tack files onto the
  91.                        end of your EXE files for demos, games, etc so
  92.                        that you don't have lots of external data files
  93.         2GDM.EXE       Converts many different module formats to the
  94.                        GDM format, which is the only format BWSB
  95. G->                    loads directly. See section 2.1.1.
  96.  
  97.         Example Music:
  98.         TTP.GDM        'Tek Gets Off' - 4 channel digital music by
  99.                        Tek/OTM. This was originally composed in S3M
  100.                        format.
  101.         4MORN.GDM      '4 In the Morning' - 8 channel digital music
  102.                        by Stalker/OTM. This was originally composed
  103.                        in S3M format with Scream Tracker v3.21.
  104.  
  105.         Include Files:
  106.         BWSB.H         Declarations of BWSB routines          [C/C++]
  107.         GDMTYPE.H      GDM file structure definitions         [C/C++]
  108.         CHANTYPE.H     Structure definitions for the
  109.                        GetChannelTable routine.               [C/C++]
  110.         BWSB.BI        Declarations of BWSB routines         [QB/PDS]
  111.         GDMTYPE.BI     GDM file structure definitions     [QB/PDS/PB]
  112.         CHANTYPE.BI    Structure definitions for the
  113.                        GetChannelTable routine.           [QB/PDS/PB]
  114.         BWSB.PBI       PowerBasic declarations for BWSB
  115.                        routines                                  [PB]
  116.         BWSB.INC       ASM external declarations.               [ASM]
  117.         GDMTYPE.INC    ASM structure definitions for GDM files  [ASM]
  118.  
  119.         Libraries/Units/Objects:
  120.         MSE_ASM.OBJ    Large/medium memory model object file    [ASM]
  121.         MSE_CL.LIB     Large memory model library             [C/C++]
  122.         MSE_CM.LIB     Medium memory model library            [C/C++]
  123.         MSE_TP.PAS     Turbo Pascal unit source code. Make       [TP]
  124.                        sure you compile this to create the
  125.                        MSE_TP.TPU unit so that you can use
  126.                        BWSB's routines.
  127.         MSE_PB.OBJ     OBJ routines for PowerBasic               [PB]
  128.         MSE_QB.LIB     Library for QuickBasic 4.5 to make EXEs   [QB]
  129.         MSE_QB.QLB     QuickLibrary for QuickBasic 4.5 to use
  130.                        BWSB in the QB environment.               [QB]
  131.         MSE_PDS.LIB    Library for PDS 7.1 to make EXEs         [PDS]
  132.         MSE_PDS.QLB    QuickLibrary for PDS 7.1 to use BWSB in
  133.                        the QBX environment.                     [PDS]
  134.  
  135.           There are quite a few additional files, but they are fairly
  136.         self explanatory.
  137.  
  138. 1.2 Hardware Requirements
  139.  
  140.           BWSB  requires  a  386SX  or better  CPU.  This  is due to the
  141.         intense  popularity of 386 and 486  machines today. XTs and 286s
  142.         are  quickly going out of  style, and programming something this
  143.         complex  for  a 286 would make  development take much longer.
  144.  
  145.           Naturally,  a  sound  card is  required.  BWSB  currently only
  146.         supports  the  Sound Blaster family  of  sound cards, the Gravis
  147.         Ultrasound, and the Pro AudioSpectrum or any 100% compatibles.
  148.  
  149.           Some  of the included example programs  require a VGA card for
  150.         display  of oscilloscopes, animations, etc.  However, no part of
  151.         the sound library requires any type of video card, and therefore
  152.         your programs do not have to require a VGA or better.
  153.  
  154. 1.3 Feature List
  155.  
  156.          ⌐      Seamless  support  for different  sound devices. No code
  157.               needs  changing to support different sound devices, output
  158.               on  each device acts (almost) exactly the same as it would
  159.               on  another,  from your application's  point of view. BWSB
  160.               takes care of hiding any differences from you.
  161.  
  162.          ⌐      Support   for  several  sound   devices.  Sound  devices
  163.               currently supported are:
  164.  
  165.                 Gravis Ultrasound   (Stereo up to 41KHz)
  166.                 Sound Blaster 1.xx  (Mono up to 21KHz)
  167.                 Sound Blaster 2.xx  (Mono up to 43KHz)
  168.                 Sound Blaster Pro   (Stereo up to 22KHz)
  169.                 Sound Blaster 16    (Stereo up to 45KHz)
  170.                 Pro AudioSpectrum   (Stereo up to 45KHz)
  171.  
  172.                 Any sound card 100% compatible with one
  173.                 or more of the above.
  174.  
  175.                 More  sound devices will be  added later. They will work
  176.               with your programs with only a simple recompilation.
  177.  
  178.          ⌐      BWSB is very stable! Stability with BWSB is very good
  179.               because it does not use IRQ 0 and does not use other
  180.               perverse optimizations that other sound systems use. High
  181.               stability was one of the key items kept in mind while
  182.               developing BWSB.
  183.  
  184.          ⌐      Conversion  of  many  module formats  to  GDM.  With the
  185.               included  utility  (2GDM) you can  convert your modules to
  186.               GDM  format,  which are loaded  very quickly because it is
  187.               almost  identical to how modules are stored in memory with
  188.               BWSB.
  189.  
  190.               The following can be converted:
  191.               MOD/NST/WOW/OCT S3M STM MTM 669 e669 ULT FAR MED (MMD0)
  192.  
  193.          ⌐      BWSB is compatible with the following compilers:
  194.  
  195.               Borland C/C++ v3.x
  196.               Watcom C/C++ v10.x (using WCL, not compatible with WCL386)
  197.               Turbo Pascal v6.x/7.x
  198.               QuickBASIC v4.5
  199.               Microsoft Basic v7.x
  200.               PowerBasic v3.x
  201.  
  202.                 It is very possible that BWSB will work with other
  203.               compilers, but the above were the actual compilers we were
  204.               able to test it with.
  205.  
  206.          ⌐      BWSB  is  compatible  with all  programmers  who have at
  207.               least  a vague understanding of how to program a computer.
  208.               <g>
  209.  
  210.          ⌐      All  sample data can be kept in EMS (expanded memory) if
  211.               available. This frees up base memory for your program.
  212.  
  213.               Note: On the Gravis Ultrasound, all sample data is kept in
  214.                     DRAM on the card at all times. No base or EMS memory
  215.                     is used for sample data.
  216.  
  217.          ⌐      Ability  to play music and sound effects together at the
  218.               same time. For instance, you could have some digital music
  219.               going  on in your game, then  have gun shots and explosion
  220.               sound  effects playing too, all  at the same time, without
  221.               stopping anything!
  222.  
  223.          ⌐      Support  of up to 32  digital sound channels. This means
  224.               that  you  can  play up to  32  digital sounds at one time
  225.               (provided that your computer is fast enough for this).
  226.  
  227.          ⌐      IRQ  0 Free. Everything plays  in the background without
  228.               reprogramming   the   timer   chip   (which   is  slightly
  229.               incompatible  with  multitaskers, etc).  This lets you use
  230.               IRQ  0  for more important  things,  such as video retrace
  231.               timing   for  fast  page   flipping  or  snowless  palette
  232.               switching on VGAs.
  233.  
  234.          ⌐      Because  BWSB  is  IRQ  0  free,  programs  using  these
  235.               routines  will still run  properly under multitaskers such
  236.               as  Windows  and  DesqView,  without  any modifications or
  237.               additional  coding. Many other digital music systems cause
  238.               Windows  to crash because Windows does not expect programs
  239.               to reprogram IRQ 0.
  240.  
  241.          ⌐      I've gotten reports that BWSB actually speeds up programs
  242.               compiled with QuickBASIC and PDS. Don't ask me if it's
  243.               a fact or not, I have no idea. I use C myself.
  244.  
  245.          ⌐      BWSB supports full 0 - 15 left to right panning in music
  246.               and sound  effect playing  on all sound  devices  (this is
  247.               fully  compatible with   the Gravis  Ultrasound's  panning
  248.               capability).
  249.  
  250.          ⌐      All  major  Protracker effects  are implemented. Effects
  251.               left  out  are  Set Filter  On/Off  and Glissando, both of
  252.               which  do  not get used very  often.  In fact, we found no
  253.               modules using Glissando, so this wasn't implemented.
  254.  
  255.          ⌐      Most  major Scream Tracker 3.2x effects are implemented.
  256.               This includes such effects  as Retrigger+Volume Slide, Set
  257.               Global Volume, and Fine Vibrato.
  258.  
  259.          ⌐    Many more brainless things forgotten here.
  260.  
  261. 1.4 License Agreement/Disclaimer
  262.  
  263.           This  license agreement pertains to the SHAREWARE/UNREGISTERED
  264.         evaluation  version of BWSB. To see  your rights as a registered
  265. F->     user,  consult the file LICENSE.TXT (Standard and Advanced only,
  266.         does not cover Commercial Edition).
  267.  
  268.           Use  of the unregistered shareware  version of BWSB is subject
  269.         to  a  trial period. If,  after  the  trial  period is over, you
  270.         want  to continue using BWSB in your programs, you must register
  271.         it  with  the authors by paying  a  nominal fee (please read the
  272. F->     file REGISTER.DOC).
  273.  
  274.           This  evaluation  version may *not*  be used for programs that
  275.         are  released to the public except  for freeware programs. It is
  276.         for   your  own  evaluation,  and  if  you  wish  to  release  a
  277.         "for-profit"  program  created  with  BWSB,  you *must* register
  278.         first.
  279.  
  280.           Freeware  programs created with the evaluation version of BWSB
  281.         may  be  released  to  the  public  as  long  as  you  include a
  282.         conspicuous notice detailing the use of BWSB.
  283.  
  284.           The  included  source  code may be  edited  any  way you wish,
  285.         except  that original copyright notices  must remain in the code
  286.         unaltered.   You   are  prohibited   from  reverse  engineering,
  287.         decompiling, or disassembling any part of BWSB.
  288.  
  289.           BWSB  is  provided  as is and  the  author disclaims all other
  290.         warranties,  either  expressed  or  implied,  including  but not
  291.         limited to implied warranties of merchantability and fitness for
  292.         a particular purpose.
  293.  
  294.           In  no  event  shall  the author  be  liable  for  any damages
  295.         whatsoever  (including, without limitation,  damages for loss of
  296.         business  profits, business interruption, loss of business data,
  297.         or  any  other  pecuniary  loss) arising  out  of  the use of or
  298.         inability  to  use  this product, even  if  the  author has been
  299.         advised    of   the   possibility    of   such   damages.   Some
  300.         states/jurisdictions do not allow the exclusion or limitation of
  301.         liability  for  consequential or incidental  damages.  We do not
  302.         sell to people from such perverse places.
  303.  
  304.           You  may  distribute  copies  of  this  unregistered shareware
  305.         version  of  BWSB  to BBSes, FTP  sites,  CDs, etc provided that
  306.         nothing  is  changed, deleted, or added  in the archive. You may
  307.         *not* distribute the registered versions of BWSB.
  308.  
  309. 1.5 Credits
  310.  
  311.         Edward Schlunder          - Project head. All major coding
  312.         zilym@hndymn.stat.com       and some of the documentation.
  313.  
  314.         Alex Chaflin              - All Turbo Pascal support and much
  315.         achalfin@uceng.uc.edu       of the documentation.
  316.  
  317.         Zach Mortensen            - Working on Watcom C/32 bit support.
  318.         mortens1@nes.nersc.gov      This will be added to a future
  319.                                     version of BWSB.
  320.  
  321.         Ryan Petrie               - Misc original coding. Wrote some of
  322.         hurri                       the first mixer prototypes.
  323.         @tydirium.yuma.arizona.edu
  324.  
  325.         Ariel Gross/Taylor Pakula - Composed the example music files
  326.         stalker@primenet.com        included here and provided us with
  327.         pakula@ramp.com             many more to test BWSB with.
  328.  
  329.         Active beta testers       - Jochen Jaeger
  330.  
  331.                                     Email me if you wish to become an
  332.                                     active beta tester. Please do not
  333.                                     join if you have very little spare
  334.                                     time.
  335.  
  336.                                     To all those who replied to my
  337.                                     fidonet beta testing request, sorry,
  338.                                     I will not be automatically adding
  339.                                     you to this list, since BWSB is not
  340.                                     a book any more. Email me again if
  341.                                     you wish to join.
  342.     
  343.           Major thanks go out to those people who I've called upon to do
  344.         beta   testing  here  and  there  and  to  all  those  who  have
  345.         contributed  ideas.  Most of all, a  huge  thank you goes to all
  346.         those who have registered and made our efforts have some sort of
  347.         purpose.
  348.  
  349.           Many  more  people helped out  greatly with the development of
  350.         BWSB.  There are so many it would  be very hard to list them all
  351.         here.
  352.  
  353. Chapter 2. Brief Tutorial
  354.  ────────────────────────────────────────────────────────────────────────────
  355.         BWSB FACT  During the development of the initial mixing
  356.            OR      routines, Edward managed to create a deadly bug
  357.           LIE?     (while trying to add a simple feature to BWSB) that
  358.                    locked up his machine and destroyed the directory on
  359.                    his hard disk where all of the ASM source code was
  360.                    kept. He stayed up for three straight days typing the
  361.                    whole source code (then 150K or so large) back in
  362.                    from memory. He did not repeat that bug again, mind
  363.                    you :-).
  364.  
  365.           This  chapter is for those of  you just starting out with BWSB
  366.         or  any other digital interface kit. It gives you the basic idea
  367.         of how to make a simple S3M or raw sample play using BWSB.
  368.  
  369.           If  you've  already  used BWSB  before,  or  have used another
  370.         similar  interface  kit, you can  probably skip this chapter and
  371.         just  look at the example source code and the function reference
  372.         for further information.
  373.  
  374. 2.1 File Types Used
  375.  
  376.           Digital  music  is  made  up  of  two  distinct parts: samples
  377.         (instruments)  and pattern data  (music notation). Patterns tell
  378.         which  samples  to play at what  time and frequency. Samples are
  379.         small  digital  recordings of real  instruments.  This system of
  380.         music reproduction can be very realistic yet not require massive
  381.         amounts  of disk space for a full digital recording of an entire
  382.         musical piece.
  383.  
  384.           BWSB  supports  several module formats  through the use of the
  385. G->     2GDM  utility  (see  section 2.1.1).  More  formats may be added
  386.         later,  provided  that they are  similar  enough to the internal
  387.         format so that they will sound half decent.
  388.  
  389. 2.1.1 2GDM Module Conversion Utility
  390.  
  391.           Included  with BWSB is a simple  utility to convert almost any
  392.         module  file  format to GDM format  (the internal format used in
  393.         BWSB). In this version of BWSB, you must convert all modules you
  394.         wish  to use in your programs to GDMs first.
  395.  
  396.         2GDM is easy to use, just use:
  397.         C:\>2GDM filename [new filename]
  398.  
  399.           'filename' does not need to include a file extension.
  400.  
  401. 2.1.2 Runtime Loadable Music and Sound Engines (MSEs)
  402.  
  403.           Music  and Sound Engines (MSEs) are the modules actually doing
  404.         all  the work in BWSB. MSEs consist of all the data, tables, and
  405.         code  used to mix multichannel digital sound, process music, and
  406.         output  sound  on various sound  devices. For each sound device,
  407.         there  is a separate MSE file.  This saves memory by not loading
  408.         code  and  tables for sound  devices  that aren't actually being
  409.         used at runtime.
  410.  
  411.           In  the  current  version  of BWSB,  there  are  six MSE files
  412.         included:
  413.  
  414.          GUS     .MSE - Gravis Ultrasound
  415.          SB1X    .MSE - Sound Blaster 1.xx
  416.          SB2X    .MSE - Sound Blaster 2.xx
  417.          SBPRO   .MSE - Sound Blaster Pro
  418.          SB16    .MSE - Sound Blaster 16
  419.          PAS     .MSE - Pro AudioSpectrum
  420.  
  421.           When you tell BWSB which MSE file you want to use, it loads it
  422.         into  memory  ready to use. MSEs  are always kept in base memory
  423.         (except,  possibly,  in  future 32  bit  versions). Through this
  424.         system,  it is very easy to  add support for other sound devices
  425.         in the future, and it's very easy to program for devices you may
  426.         not even own.
  427.  
  428. 2.1.3 Libraries, QuickLibraries, and Units
  429.  
  430.           All  LIBs, QLBs, TPUs, and OBJs are in the \LIB directory. The
  431.         TPU  files may need to be  created first by compiling MSE_TP.PAS
  432.         if the TPU version is not already there. These are the files:
  433.  
  434.         MSE_ASM.OBJ  - Large/medium memory model library for ASM
  435.         MSE_CL.LIB   - Large Memory Model library for C/C++ compilers
  436.         MSE_CM.LIB   - Medium Memory Model library for C/C++ compilers
  437.         MSE_TP.PAS   - May need to compile this to get the file below:
  438.         MSE_TP.TPU   - Turbo Pascal 6.x/7.x Unit file. Make sure you
  439.                        tell the TP IDE where to find this in the
  440.                        options menu.
  441.         MSE_PDS.LIB  - PDS 7.x library for making EXEs
  442.         MSE_PDS.QLB  - PDS 7.x quicklibrary for loading into QBX.EXE
  443.         MSE_QB.LIB   - QuickBasic 4.5 library for making EXEs
  444.         MSE_QB.QLB   - QuickBasic 4.5 quicklibrary for loading into
  445.                        QB.EXE
  446.         MSE_PB.OBJ   - PowerBasic 3.x object file for use with $LINK
  447.  
  448.           To  use  any of the routines  in  the QuickBasic or QuickBasic
  449.         Extended  programming environment, you must load the appropriate
  450.         QLB:
  451.  
  452.         C:\BWSB\LIB>QB /L MSE_QB           [ For QuickBasic ]
  453.         C:\BWSB\LIB>QBX /L MSE_PDS            [ For PDS ]
  454.  
  455.           Please  note  the  PDS 7.1 seems  to  conflict with BWSB's EMS
  456.         routines  in  the environment. You  can either disable QBX's EMS
  457.         support  ("/E:0")  or  you can  disable  BWSB's EMS support (see
  458. G->     section  2.2  about  loading a module).  If  you don't do one of
  459.         these  two,  running  programs  in  QBX  will  likely  crash the
  460.         machine. This only applies to the environment; compiled versions
  461.         of your programs in EXE form do not have this problem.
  462.  
  463.           If you wish to use the C/C++ libraries with the Borland C/C++
  464.         3.1 IDE, you must first edit the file TLINK.CFG (in the \BIN
  465.         directory) to include the line "-3". This allows TLINK to link
  466.         386 specific opcodes, which are used frequently throughout
  467.         BWSB's routines.
  468.  
  469.           If you are using PB/QB/PDS/C/C++, you will probably want to
  470.         edit your INCLUDE environment variable to include the \INCLUDE
  471.         directory of BWSB. This directory contains several files that
  472.         are used in all of the example programs included. If you don't
  473.         want to modify your INCLUDE environment variable, you will have
  474.         to modify the example source files so that they specify the
  475.         path of the BWSB includes.
  476.  
  477. 2.2 Getting Music Going
  478.  
  479.           The first thing to do is load and initialize your MSE. This is
  480.         done  in  the  code fragment  that  follows. Note, however, this
  481.         assumes  you're using a Sound Blaster  1.xx with the SB1X.MSE in
  482.         the current directory.
  483.  
  484.           Basic  and  Pascal  use  all  of  the computer's memory, which
  485.         gives  our routines no room to  store pattern data, sample data,
  486.         etc.  To  get around this, you  must deallocate some heap memory
  487.         using  the  SETMEM  function  in Basic  or  the  $M directive in
  488.         Pascal.
  489.  
  490.         Note: Loading  the MSE prior to  calling  any other routines  in
  491.               the BWSB library is paramount for avoiding system crashes.
  492.               If  *any* other routines in BWSB are called before loading
  493.               a  MSE, the system will likely  reboot or lockup or aliens
  494.               will take over your computer.
  495.  
  496. - C/C++ --------------------------------------------------------------------
  497. #include <bwsb.h>                  /* Declare all BWSB subs and functions */
  498.  
  499. #include <stdio.h>
  500. #include <stdlib.h>
  501. #include <conio.h>
  502. #include <io.h>
  503. #include <fcntl.h>
  504.  
  505. void main(void)
  506. {  GDMHeader ModHeader;            /* Module header */
  507.    int ErrorFlag;
  508.    int file, MusChans, j;
  509.    unsigned int OverRate;
  510.    int Addr = { 0xFFFF },          /* Autodetect Base I/O address */
  511.        IRQ = { 0xFF },             /* Autodetect IRQ level */
  512.        DMA = { 0xFF };             /* Autodetect DMA channel */
  513.  
  514. ErrorFlag = LoadMSE("SB1X.MSE",    /* ASCIIZ MSE file to load */
  515.                     0,             /* File Offset to load from */
  516.                     45,            /* Oversampling rate (sound quality) */
  517.                     4096,          /* Buffer size */
  518.                     &Addr,         /* Base I/O (0xFFFF autodetect) */
  519.                     &IRQ,          /* IRQ level (0xFF autodetect) */
  520.                     &DMA);         /* DMA channel (0xFF autodetect) */
  521. - QuickBasic/PDS -----------------------------------------------------------
  522. 'Declare all the BWSB subs and functions:
  523. '$INCLUDE: 'BWSB.BI'
  524. '$INCLUDE: 'GDMTYPE.BI'
  525.  
  526. DIM ModHeader       AS GDMHeader           'Module Header
  527.  
  528. Freemem& = FRE(-1) - 80000                 'Basic Heap - EXE Memory (80000)
  529. A& = SETMEM(-Freemem&)                     'This is the memory freed for
  530.                                            'module and MSE usage.
  531.  
  532. '                  File Offset ─┐  ┌─ Oversampling rate (sound quality)
  533. '                                 
  534. ErrorFlag = LoadMSE("SB1X.MSE", 0, 45, 4096, &HFFFF, &HFF, &HFF)
  535. '                                                       
  536. '       MSE file name ──┘                │      ├──────┴────┘
  537. '                           Buffer size ─┘      └─ Autodetect IRQ, base I/O
  538. '                                                  address, and DMA channel
  539. - Turbo Pascal -------------------------------------------------------------
  540. {$M 16384,0,65360}   { Leave some memory for the module, don't hog }
  541.                      { all the heap space }
  542. Program PlayGDM;
  543.  
  544. Uses MSE_TP, DOS;         { Include all the MSE functions and Types }
  545.  
  546. Var
  547.   ModHeader : GDMHeader;  { Declare a module header }
  548.   BaseIO : Word;
  549.   IRQ : Byte;
  550.   DMA : Byte;
  551.   ErrorFlag : Word;
  552.  
  553. Begin
  554.   BaseIO := $FFFF;        { Variables are used because values are returned }
  555.   IRQ := $FF;             { Direct values are not supported with reference }
  556.   DMA := $FF;             { parameters.                                    }
  557.  
  558.   {                   File Offset ─┐  ┌─ Oversampling rate (quality)       }
  559.   {                                                                      }
  560.   ErrorFlag := LoadMSE('SB1X.MSE', 0, 45, 4096, BaseIO, IRQ, DMA);         }
  561.   {                                                                   }
  562.   {       MSE file name ──┘                │      ├──────┴────┘            }
  563.   {                           Buffer size ─┘      └─ Autodetect IRQ, DMA,  }
  564.   {                                                  and I/O Address.      }
  565. End.
  566. ----------------------------------------------------------------------------
  567.  
  568.           The  next step is to load your module. The module load routine
  569.         can  load your module into base  memory, EMS memory, or GUS DRAM
  570.         (only  with the GUS MSE). It'll  only  load  the module into EMS
  571.         memory if you tell it to. However, you must first detect whether
  572.         EMS  services actually exist, or you'll probably end up crashing
  573.         the  system.  Included  with BWSB  is  an  EMS detection routine
  574.         (EmsExist), just for this purpose.
  575.  
  576.           The following code assumes you're loading the module "NRG.GDM"
  577.         from  the current directory. It detects  EMS memory and loads it
  578.         into EMS if detected.
  579.  
  580.           Let's get loaded, bud.
  581.  
  582. - C/C++ --------------------------------------------------------------------
  583. ErrorFlag = EmsExist && 1;            /* Enable EMS if available */
  584. file = open("TUNE.GDM", O_RDONLY | O_BINARY);
  585. /*                   ┌─ Calling: Load Flags (EMS enable) */
  586. /* Load our module:    Returns: Error flag (0 - no errors) */
  587. LoadGDM(file, 0, &ErrorFlag, &ModHeader);
  588. /*                              */
  589. /* File ─┘    └─ Offset into     └─ Module header that you can use later */
  590. /* Handle        file to load       to get information on the GDM loaded. */
  591. /*               from. */
  592. close(file);                          /* Close the file handle.. */
  593. - QuickBasic/PDS -----------------------------------------------------------
  594. IF EmsExist THEN Flags = 1 ELSE Flags = 0  'Are there EMS services available?
  595.  
  596. File = FREEFILE                            'Get a free file handle number
  597. OPEN "TUNE.GDM" FOR BINARY AS File         'Open the module in binary mode
  598. '                  ┌─ Calling: Load Flags (EMS enable)
  599. 'Load our module:    Returns: Error flag (0 - no errors)
  600. LoadGDM File, 0, Flags, VARSEG(ModHeader), VARPTR(ModHeader)
  601. '                                
  602. '   File ─┘   └─ Offset into       └─ Module header that you can use later
  603. ' Handle         file to load         to get information on the GDM loaded.
  604. '                from.
  605. CLOSE File                                 'Close the file handle..
  606. - Turbo Pascal -------------------------------------------------------------
  607. Begin
  608.   If EmsExist          { Are there EMS services available? }
  609.     Then Flags := 1    { Yes, then use it                  }
  610.     Else Flags := 0;   { No, disable EMS use               }
  611.  
  612.   Assign(File, 'TUNE.GDM');         { Open the module file }
  613.   Reset(File);
  614.  
  615.   {                               ┌─ Calling: Load Flags (EMS enable)     }
  616.   { Load our module:                Returns: Error flag (0 - no errors)  }
  617.   ErrorFlag := LoadGDM(File, 0, Flags, ModHeader);
  618.   {                                                                    }
  619.   {         File handle ─┘   └─ Offset into  └─ Module header that can be }
  620.   {                             file to load    used later to get info on }
  621.   {                             from.           the GDM loaded.           }
  622.  
  623.   Close(File);                     { Close the file handle }
  624. End.
  625. ----------------------------------------------------------------------------
  626.  
  627.           Then  you'll want to start up  the music engine and enable the
  628.         music.  Note  that GDMs do not  include  a byte telling how many
  629.         channels  are  used; you must  scan  through the channel default
  630.         panning  table  to  count  how many  channels  are  in  use. Pan
  631.         position  of  FFh  implies that the  channel  is not used in the
  632.         module.  Any  other value means that  the channel is used in the
  633.         music file.
  634.  
  635.           Do  you  feel like you're learning how  to drive a car yet, or
  636.         what? :-)
  637.  
  638. - C/C++ --------------------------------------------------------------------
  639. MusChans = 0;                         /* Start out at zero.. */
  640. for (j = 0; j < 32; j++)
  641.   if (ModHeader.PanMap[j] != 0xFF) MusChans++;
  642.  
  643. /*  ┌─ Actual oversampling rate in use (Hz) */
  644. /*                                         */
  645. OverRate = StartOutput(MusChans, 0);  /* Start your (sound) engines */
  646. /* # of Music+Sound                                               */
  647. /* channels              ─┘      └─ Amplification level (0 - none)  */
  648.  
  649. StartMusic();                         /* Enable the music play flag */
  650. /* Music should be playing now.. */
  651. - QuickBasic/PDS -----------------------------------------------------------
  652. MusChans = 0                               'Start out at zero..
  653. FOR J = 1 TO 32                            'Scan for used music channels
  654.   IF ASC(MID$(ModHeader.PanMap, J, 1)) <> &HFF THEN
  655.     MusChans = MusChans + 1
  656.   END IF
  657. NEXT
  658.  
  659. '   ┌─ Actual oversampling rate in use (Hz)
  660. '   
  661. OverRate& = StartOutput(MusChans, 0)      'Start your (sound) engines
  662. '                                
  663. '# of Music+Sound channels ─┘     └─ Amplification level (0 - none)
  664.  
  665. StartMusic                                'Enable the music play flag
  666. 'Music should be playing now.
  667. - Turbo Pascal -------------------------------------------------------------
  668. Begin
  669.   MusChans := 0;         { Start out with zero channels }
  670.  
  671.   For J := 1 to 32 do    { Scan for used channels in then Pan mapping }
  672.     If ModHeader.PanMap[J] <> $FF
  673.       Then MusChans := MusChans + 1;
  674.  
  675.  
  676.   {   ┌─ Actual oversampling rate in use (Hz)   }
  677.   {                                            }
  678.   OverRate := StartOutput(MusChans, 0);   { Start your (sound) engines }
  679.   {                                                                  }
  680.   {  # of Music+Sound channels ─┘     └─ Amplification level (0 - none)}
  681.  
  682.   StartMusic;    { Enable the music play flag }
  683.   { The music should be playing now }
  684. End;
  685. ----------------------------------------------------------------------------
  686.  
  687.           Of course, once you're tired of the music, you'll use this:
  688.  
  689. - C/C++ --------------------------------------------------------------------
  690. StopMusic();                          /* Disable music processing */
  691. StopOutput();                         /* Stop all sound output    */ 
  692. UnloadModule();                       /* Free module memory       */
  693. FreeMSE();                            /* Remove MSE from memory   */
  694. }
  695. - QuickBasic/PDS -----------------------------------------------------------
  696. StopMusic                               'Disable music processing
  697. StopOutput                              'Stop all sound output
  698. UnloadModule                            'Free module memory
  699. FreeMSE                                 'Remove MSE from memory
  700. - Turbo Pascal -------------------------------------------------------------
  701. Begin
  702.   StopMusic;                           { Disable music processing }
  703.   StopOutput;                          { Stop all sound output    }
  704.   UnLoadModule;                        { Free module memory       }
  705.   FreeMSE;                             { Remove MSE from memory   }
  706. End.
  707. ----------------------------------------------------------------------------
  708.  
  709. 2.3 Adding Sound Effects
  710.  
  711.           Adding  sound effects to your programs is not a hard task. You
  712.         first  must  create  a GDM with  the  sound  effects you will be
  713.         using. Say you have a sound effect named LASER.VOC. You are also
  714.         using  the music file RAINBOW.S3M. The  first thing you would do
  715.         is  load  up Scream Tracker 3  (or  any other module editor that
  716.         supports  loading and saving S3Ms,  or for that matter, whatever
  717.         module format your music is currently in).
  718.  
  719.           Once  your  in your module editor,  load RAINBOW.S3M as if you
  720.         were  about  to  edit it. Press  F3  (or whatever in your module
  721.         editor)  to  get to the sample  editing screen in ST3. Then move
  722.         down  to  an empty sample slot  and load the LASER.VOC into that
  723.         slot.  Remember which sample number this slot is for later use..
  724.         If  you  forget,  you can always  go  back  with the SND-PAD.EXE
  725.         program  to load the GDM form of your music file and look at the
  726.         sample numbers along the left hand side of the screen.
  727.  
  728.           Ok,  now  you've got a S3M  (or  whatever format you're using)
  729.         with  all the music and sound effects you want. Save this module
  730.         and  exit the editor. Now you've got to convert it to a GDM with
  731.         the 2GDM utility (included with BWSB). Now you have RAINBOW.GDM,
  732.         with  both your music and sound effects stored in the file. Keep
  733.         a  copy  of RAINBOW.S3M in case you  later want to add or remove
  734.         sound effects.
  735.  
  736.           In  your  program, you would set  things up as normal for just
  737. G->     plain  module playing (see section  2.2). The only difference is
  738.         that   you  must  allocate  more  sound  channels  when  calling
  739.         StartOutput. Here is an example of the modification to make:
  740.  
  741. - C/C++ --------------------------------------------------------------------
  742. /*  ┌─ Actual oversampling rate in use (Hz) */
  743. /*                                         */
  744. OverRate = StartOutput(MusChans + 4, 0);    /* Start your (sound) engines */
  745. /*                                                                     */
  746. /*    # of Music channels ─┘      │  └─ Amplification level (0 - none)    */
  747. /*    # of sound effect channels ─┘                                       */
  748. - QuickBasic/PDS -----------------------------------------------------------
  749. '   ┌─ Actual oversampling rate in use (Hz)
  750. '   
  751. OverRate& = StartOutput(MusChans + 4, 0)      'Start your (sound) engines
  752. '                                   
  753. '      # of Music channels ─┘      │  └─ Amplification level (0 - none)
  754. '      # of sound effect channels ─┘
  755. - Turbo Pascal -------------------------------------------------------------
  756. Begin
  757.   {   ┌─ Actual oversampling rate in use (Hz)   }
  758.   {                                            }
  759.   OverRate := StartOutput(MusChans + 4, 0);  { Start your (sound) engines }
  760.   {                                                                    }
  761.   {      # of Music channels ─┘      │  └─ Amplification level (0 - none) }
  762.   {      # of sound effect channels ─┘                                    }
  763. End;
  764. ----------------------------------------------------------------------------
  765.  
  766.           Note  that  the total number of  channels you allocate can not
  767.         exceed  32. Another thing to keep in mind that the more channels
  768.         you  allocate,  the more CPU power  being used up (except on the
  769.         GUS).  So,  try to keep the  number of channels required for use
  770.         down to a minimum.
  771.  
  772.           Once  you've  got  everything  initialized  and  the  music is
  773.         playing  (note: music does not have  to be enabled to play sound
  774.         effects,  but  in most games you  will be having both playing at
  775.         the  same time), you need to call the PlaySample routine to play
  776.         some sound effects.
  777.  
  778. - C/C++ --------------------------------------------------------------------
  779. do
  780. {  key = getch();
  781.    Sample = key - '0';
  782.    SndFX++;
  783.    if (SndFX==5) SndFX = 1;
  784.  
  785. /*                     ┌─ Digital sound channel to play on */
  786. /*                                                        */
  787.    PlaySample(MusChans + SndFX, Sample, 16000, 64, 0xFF);
  788. /*                                                                      */
  789. /*              Sample # to play ─┘       │    │     └─ Use default panning */
  790. /*                  Play sample at 16KHz ─┘    └─ Maximum volume            */
  791. } while (key!=27);                    /* Exit loop if Esc pressed           */
  792.  
  793. - QuickBasic/PDS -----------------------------------------------------------
  794. DO
  795.   DO
  796.     Key$ = INKEY$
  797.   LOOP UNTIL LEN(Key$)                 'Loop until key pressed
  798.   Sample = VAL(Key$)                   'Find which sample # to play
  799.  
  800.   SNDFX = SNDFX + 1                    'Step through sound effect channels
  801.   IF SNDFX = 5 THEN SNDFX = 1
  802. '                   ┌─ Digital sound channel to play on
  803. '                   
  804. PlaySample MusChans + SNDFX, Sample, 16000, 64, &HFF
  805. '                                              
  806. '            Sample # to play ─┘       │    │     └─ Use default panning
  807. '                Play sample at 16KHz ─┘    └─ Maximum volume
  808. LOOP UNTIL Key$ = CHR$(27)             'Exit loop if Esc pressed
  809. - Turbo Pascal -------------------------------------------------------------
  810. Uses Crt;  { Required for ReadKey function }
  811.  
  812. Var
  813.   Key : Char;
  814.   SndFX : Integer;
  815.   Sample : Integer;
  816.  
  817. Begin
  818.   Repeat
  819.     Key := ReadKey;   { Read in a key }
  820.     If Key <> #27     { Make sure it wasn't ESC }
  821.       Then Begin
  822.         Sample := Ord(Key) - Ord('0');   { Get Sample number to Play }
  823.         SndFX := SndFX + 1;
  824.         If SndFX >= 5
  825.           Then SndFX := 5;
  826.  
  827. {                   ┌─ Digital sound channel to play on        }
  828. {                                                             }
  829. PlaySample(MusChans + SndFX, Sample, 22000, 64, $FF);
  830. {                                             
  831. {            Sample # to play ─┘       │    │    └─ Use default panning }
  832. {                Play sample at 22KHz ─┘    └─ Maximum volume           }
  833.  
  834.       End;
  835.   Until Key = #27;  { User has pressed ESC so exit }
  836. End.
  837. ----------------------------------------------------------------------------
  838.  
  839.           This  short piece of code would  let the user press the number
  840.         keys  (0-9) to play samples 0-9 in the loaded GDM file at 16KHz,
  841.         while  not disturbing the music that  is also playing. It cycles
  842.         through  4  different sound effect  channels  so that each sound
  843.         effect will not cut off the sound effect played just before it.
  844.  
  845.          "huh huh huh, he said 'cut', huh huh huh"
  846.  
  847. 2.4 Things to Keep in Mind
  848.  
  849.         ⌐     There  are many more features to BWSB not documented here,
  850.               this  is  just  a  little bit  of  help  for those getting
  851.               started. You can learn much more by looking at the example
  852.               programs  and  reading about the  other  routines in BWSB,
  853. F->           documented in the function reference guide (BWSB-REF.DOC).
  854.               You will probably want to print that file out; it does not
  855.               contain high order ASCII specifically for this purpose.
  856.  
  857.         ⌐     You  may  have problems running  a  printer while music or
  858.               sound is enabled. This happens if the sound card shares an
  859.               IRQ with the LPT port (such as the dreaded IRQ 7).
  860.  
  861.         ⌐     Don't  use any routines before loading a MSE with LoadMSE!
  862.               Otherwise, watch the system reboot!
  863.  
  864.         ⌐     Always wipe your nose before going out public.
  865.  
  866.         ⌐     Do  not  enable music processing  without  first loading a
  867.               music file! Or, watch the system crash!
  868.  
  869.         ⌐     Do  not  free a module  from memory before disabling music
  870.               processing!  Or,  watch the  possible  system crash (won't
  871.               always happen, but would be very likely with time).
  872.  
  873.         ⌐     If you have problems working in your language environment,
  874.               disable  EMS use or just run your program in compiled form
  875.               (EXE)  each time. IDEs seems  to dislike EMS routines to a
  876.               degree.
  877.  
  878.         ⌐     FreeMSE must be called  before  your program exits to DOS!
  879.               If it is not called,  you will lock the machine at the end
  880.               of your program.
  881.  
  882.         ⌐     BWSB does not   support  samples  over  64K long.  This is
  883.               usually  not  a  problem for  music  files,  but for sound
  884.               effects (mainly voice samples) you will need to watch your
  885.               back.  Use  the  ChannelPos function  to  help  play large
  886.               samples in smaller blocks.
  887.  
  888.         ⌐     SAVE YOUR WORK OFTEN AND KEEP RECENT BACKUPS!!
  889.  
  890.         ⌐     Yes,  there  are an uncounted number  of ways to crash the
  891.               system  using  these routines  incorrectly. Don't let that
  892.               make you think that this library is buggy or hard to use!!
  893.               BWSB  was  created with speed  (highest priority) and size
  894.               (second  priority)  in  mind; putting  in  a bunch of safe
  895.               guards  in  the code would only  bloat the library so that
  896.               your product would be considerably larger.
  897.  
  898.         ⌐     If  you  have problems with your  source code (it locks up
  899.               the machine all the time), just take a look at the example
  900.               programs  given. If that doesn't help, you can always look
  901.               back in the documentation here or send us some email.
  902.  
  903. Chapter 3. Language Differences
  904.  ────────────────────────────────────────────────────────────────────────────
  905.         BWSB FACT  Upon announcement that the family would be taking a
  906.            OR      three to four week vacation to Oregon, Edward stayed
  907.           LIE?     up four days and three nights coding a stand alone
  908.                    module player (OmniPlayer) so that lots of people
  909.                    could test BWSB's routines on their computers while
  910.                    he was gone.
  911.  
  912.    [C/C++]    All of the example C code was written using Borland C/C++
  913.               v3.1 and may need some slight modifications to compile
  914.               using other C/C++ compilers.
  915.  
  916.    [QB/PDS]   FreeMSE  will  automatically be called  on  exit in normal
  917.               cases,  but it doesn't hurt to call it again.  That  won't
  918.               lock   up   the   system.
  919.  
  920.    [TP/C/C++] FreeMSE does not get called automatically on exit.  To get
  921.               the  same  effect  as  in  the  QB/PDS  version,  put  the
  922.               following code immediately after loading the MSE:
  923.  
  924.    [TP]       ExitProc := @FreeMSE; { Do an automatic FreeMSE if abort }
  925.    [C/C++]    atexit(FreeMSE);     // Do an automatic FreeMSE if aborted
  926.  
  927. Chapter 4. Miscellaneous
  928.  ────────────────────────────────────────────────────────────────────────────
  929.         BWSB FACT  Edward has over 200MB of MOD, MED, 669, S3M, XM,
  930.            OR      and MID files on his hard drive to test BWSB with.
  931.           LIE?     There is no room for any games or Windows programs.
  932.  
  933. 4.1 Common Questions and Concerns about BWSB
  934.  
  935.         Q: I'm writing a game that will have three episodes, the first
  936.            being free to the public and the other two only available
  937.            if the user pays me some amount. Will I need a commercial
  938.            registration for the extra two episodes?
  939.         A: As long as they are only getting advertisement through
  940.            noncommercial channels, you do not need a commercial
  941.            registration. In this scenario, you are getting
  942.            advertisement for the other two episodes from the first
  943.            one that it publically distributable, so no, you do not
  944.            need a commercail license.
  945.  
  946.         Q: I represent a commercail company that creates games and
  947.            other programs for the PC. We are in need of some
  948.            specialized routines for an upcoming project. Would you
  949.            be able to create this for us (at a fair price)?
  950.         A: At the time of this writing, I do not have an open
  951.            schedule for such projects (since my school schedule is
  952.            extended to graduate High School early), but email me to
  953.            find out the current status. Fairly soon school will let
  954.            out and in about a year I will be done with High School
  955.            completely.
  956.  
  957.         Q: Hey, sonny, do you know where my car is?
  958.         A: Sure! Right where you parked it last time!
  959.  
  960.         Q: I'm having trouble loading GDMs larger than 450k.
  961.         A: You probably haven't enabled EMS support with BWSB or you do
  962.            not have EMS memory in your computer. Try loading the module
  963.            using one of the example players included.
  964.  
  965.            If they can load it, you haven't enabled EMS support with
  966. G->        BWSB properly (see section 2.2). If one of the example
  967.            players can't load the module, you probably don't have EMS
  968.            services available. Try using EMM386.EXE that came with DOS
  969.            to get EMS memory (refer to your DOS manual).
  970.  
  971.         Q: Does BWSB use it's own mixing routines on a GUS?
  972.         A: No, it uses the GUS onboard mixing services that the GUS
  973.            provides. This is why there are so many slight differences
  974.            when using the GUS (like not using much CPU power for 32
  975.            channels, etc)
  976.  
  977.         Q: What is DRAM?
  978.         A: For all you non-GUS users (or GUS users who've never
  979.            upgraded your GUS to 1mb), the GUS uses onboard memory for
  980.            all digital samples. DRAM is simply the type of memory
  981.            used on a GUS.
  982.  
  983.         Q: I have some other libraries that I'd like to use along
  984.            side BWSB. How do I get all the libraries merged into one?
  985.         A: For this you should refer to your books on LIB and LINK
  986.            for information on putting libraries together. It is a
  987.            fairly painless process.
  988.  
  989.            If you'd like a more visual method of changing libraries
  990.            around, get the Library Wizard program by Thomas Hanlin.
  991.            It makes it as easy as a mouse click to add and remove OBJs
  992.            from a library.
  993.  
  994.         Q: How come there is no support for XM (FastTracker ][ module)
  995.            and MIDI formats?
  996.         A: These two formats are quite different from the majority of
  997.            digital music formats established. Supporting them will take
  998.            a fair bit of reworking in BWSB, which will require some
  999.            time. Currently no time schedule is available for when this
  1000.            will be supported.
  1001.  
  1002. 4.2 Known Bugs and Limitations
  1003.  
  1004.         ⌐     There should be a way to load sound effects separately
  1005.               instead of inside of the modules.
  1006.  
  1007.         ⌐     BWSB-REF.DOC needs more 'Example:' fields filled in, and
  1008.               not just for C/C++.
  1009.  
  1010.         ⌐     There should be a way to load different module formats at
  1011.               runtime instead of using 2GDM first.
  1012.  
  1013.         ⌐     People keep pleading for XM support. In BWSB's current
  1014.               state, these files can't be implemented very well. These
  1015.               files probably won't be implemented for a while until I
  1016.               can rewrite the music engine. Even then, this may only be
  1017.               supported under Watcom C/C++ 32bit implementation (since
  1018.               Watcom support will require a rewrite anyway).
  1019.  
  1020. 4.3 Need Music? Read Here!
  1021.  
  1022.           So  you're  writing  a  game and  you  need  lots of original,
  1023.         creative,  and earth shaking music for your first class game? If
  1024.         you've  ever  tried your hand at  composing  music, you know how
  1025.         time consuming it can be to make professional sounding music.
  1026.  
  1027.           Instead of using second quality music for your game, you can
  1028.         purchase music at a reasonable price from our select group of
  1029.         musicians who we feel will create satisfactory musical pieces
  1030.         for your productions. Here is a list of musicians and their
  1031.         email addresses for additional information on purchasing music:
  1032.  
  1033.         Stalker/OverThrowMachine  - Wrote one of the example songs
  1034.         aka Ariel Gross             included with BWSB.
  1035.         stalker@primenet.com
  1036.  
  1037.         Tek/OverThrowMachine      - Wrote the example song used in
  1038.         aka Taylor Pakula           Tailgunner's Target Practice.
  1039.         pakula@ramp.com
  1040.  
  1041.         Cerulean/Defiance
  1042.         max0803@imap2.asu.edu
  1043.  
  1044. 4.4 Technical Support/Contact Information
  1045.  
  1046.           Technical  support  is  FREE for  all  users of BWSB (although
  1047.         registered users get a heck of a lot more attention :-).
  1048.  
  1049.         BWSB-TALK Mailing List (Internet Only)
  1050.           Send a message to zilym@hndymn.stat.com saying
  1051.           "subscribe BWSB-TALK". You will then receive new
  1052.           announcements concerning updates and current projects
  1053.           going on.
  1054.  
  1055.         Edward Schlunder (Project Head)
  1056.           Internet: email address zilym@hndymn.stat.com
  1057.                     Zilym in the #otm channel on IRC
  1058.           FidoNet:  Edward Schlunder at 1:114/268
  1059.           Mail:     554 N. Acacia Road
  1060.                     Apache Junction, AZ 85219-4313
  1061.                     USA
  1062.  
  1063.        Alex Chalfin (Turbo Pascal Support Author)
  1064.           Internet: email address achalfin@uceng.uc.edu
  1065.                                   achalfin@ddt.eng.uc.edu (alternate)
  1066.                     Phred in the #otm channel on IRC
  1067.           FidoNet:  Alex Chalfin at 1:108/180
  1068.           Mail:     6244 Beech View Circle
  1069.                     Cincinnati, Ohio 45213
  1070.                     USA
  1071.  
  1072. 4.5 Distribution List
  1073.  
  1074.        Internet FTP (also available from ftpmail servers)
  1075.        ──────────────────────────────────────────────────────────────────────
  1076.        x2ftp.oulu.fi                /pub/msdos/programming/mxlibs
  1077.        ftp.vt.edu (vtaix.cc.vt.edu) /pub/otm
  1078.        ftp.cdrom.com                /pub/demo/code/sound or
  1079.                                     /pub/demo/incoming/code
  1080.  
  1081.        FidoNet FREQ (request BWSBxxx.ZIP, where xxx is the version number)
  1082.        ──────────────────────────────────────────────────────────────────────
  1083.        Chandler Programmer's Connection (mail node 3)          Chandler, AZ
  1084.        (602)759-6290 or 1:114/268                                 28.8k bps
  1085.  
  1086.        Note: Latest releases always get uploaded to this BBS first thing,
  1087.              so this one is always a couple days ahead of the other
  1088.              distribution sites.
  1089.  
  1090.        Kingdom of Karmac                                     Cincinatti, OH
  1091.        (513)731-4493 or 1:108/180 (use magic name BWSB)           14.4k bps
  1092.  
  1093.        Private BBSes
  1094.        ──────────────────────────────────────────────────────────────────────
  1095.        Chandler Programmer's Connection (public node 1)        Chandler, AZ
  1096.        (602)759-7789                                               9600 bps
  1097.  
  1098.        Note: Latest releases always get uploaded to this BBS first thing,
  1099.              so this one is always a couple days ahead of the other
  1100.              distribution sites.
  1101.  
  1102.        Obiter Dictum                                         Cincinatti, OH
  1103.        (513)831-2576                                              14.4k bps
  1104.  
  1105.        Kingdom of Karmac                                     Cincinatti, OH
  1106.        (513)731-4493                                              14.4k bps
  1107.  
  1108.        The Mach 5 BBS
  1109.        (319)355-7336
  1110.  
  1111.        ISO BBS
  1112.        (65)270-8066
  1113.  
  1114.        ThE SounD Engine                                             Germany
  1115.        +49-4371-4085
  1116.  
  1117.        Orbit                                                         Greece
  1118.        +30-61-222421                                        22:00-14:00 CET
  1119.  
  1120.         Note: If you are a sysop and wish to become a distribution
  1121.               site for BWSB, please leave me (Ed) some email. You will
  1122.               need to have access to ftp since I can not make unlimited
  1123.               long distance phone calls to u/l new releases to your BBS.
  1124.  
  1125. 4.6 Closing Words
  1126.  
  1127.         April 23rd, 1995 (Edward Schlunder):
  1128.  
  1129.           Well,  I'm pretty satisfied with  this latest version. Looking
  1130.         at  some of the other sound systems  out there, I tend to laugh.
  1131.         They all have some fault or  another (but I guess BWSB isn't
  1132.         totally perfect either).
  1133.  
  1134.           One is really fast,  but really  unstable.  One is very  slow,
  1135.         but  is low priced. One is not  stable, not fast, and has a huge
  1136.         price  (hmm, makes you wonder where that product is going <g>).
  1137.         Oh, and don't forget the one that calls the original Int 8h at a
  1138.         slightly different speed to make all CPU usage checks declare it
  1139.         as  the fastest in the world <laugh>.
  1140.  
  1141.           But  with  BWSB, I feel like  I've achieved the (near) perfect
  1142.         mix  of speed, price, and stability.  If you disagree, send your
  1143.         comments  to /dev/null and let me  sit here happily listening to
  1144.         "Strip  of the Nile" by Stalker/OTM (which  is by far one of the
  1145.         most  wonderful musical renditions I've ever had the pleasure of
  1146.         feeding my ears). Music is so inspiring!
  1147.  
  1148.           Don't forget to look at OTM's first group production, TEXTRO!
  1149.         You have to see it to believe it!
  1150.  
  1151.           Hiyas  to my friends in OverThrowMachine (Tek, Stalkah, Hurri,
  1152.         Volt,  Sup,  NS, and PHRED!), my  friends  at school (Luis, Dan,
  1153.         Bob,  Gina,  Angie, Kris, Sabrina,  Brandy, Logon, Longjohn :-),
  1154.         Glenn,  da  Mills's, Nick, Eric,  Sarah, Adam, Jade, Tom, Bobby,
  1155.         Jeremy,  etc),  the pretty girls at  school  I don't have enough
  1156.         time  to  talk  to (Christy,  the  other  Christy <g>, Julianne,
  1157.         Hollie,  etc),  my  coolio  teachers  (Mr  Henry,  Mr  Berry, Mr
  1158.         Omstead, Mr Mills, Ms Wiseman).
  1159.  
  1160.           A  big mucho thanks to Alex Chalfin  for doing such a nice job
  1161.         on  the  Turbo  Pascal  support  that  I  had  no  clue  over. I
  1162.         understand ASM, Basic, and C, but not Pascal. Alex, you saved my
  1163.         day. :-)
  1164.  
  1165.           Another  big thanks to Kevin  Diggins for helping tremendously
  1166.         in getting the PowerBasic 3.x support added to BWSB. It wouldn't
  1167.         have been possible without him.
  1168.  
  1169.           Uhhh, thanks goes to myself for making the C/C++ support. :-)
  1170.         Oh, and thanks to Voltaire for helping me make it a little bit
  1171.         more compiler independant (PLAYC should compile under any 16bit
  1172.         C compiler for the PC). Also, big thanks to Jochen Jaeger for
  1173.         some additional tips on making BWSB make compatible with certain
  1174.         Microsoft compilers <g>. 
  1175.  
  1176.           My next big project is making a protected mode implementation
  1177.         of this library.  All current BWSB registered people will be
  1178.         able to upgrade to it just as if it were an updated version of
  1179.         BWSB (which is it not, it is more of a complete rewrite), so
  1180.         don't worry about having to pay for something twice. I will
  1181.         still develop BWSB, since there is a large market for real
  1182.         mode sound systems. Much of the new ideas put into the pmode
  1183.         version will be implemented in the real mode version as time
  1184.         goes by.
  1185.  
  1186.         Onwards.....
  1187.  
  1188.         ■ "The louder the music, the better the code"
  1189.