home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / SMIXW124.ZIP / MIXTEST.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-26  |  4.3 KB  |  200 lines

  1. /*      SMIXW is Copyright 1995 by Ethan Brodsky.  All rights reserved      */
  2.  
  3. /* mixtest.c */
  4.  
  5. #include <graph.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. #include "detect.h"
  10. #include "smix.h"
  11.  
  12. #define ON  1
  13. #define OFF 0
  14.  
  15. #define TRUE  1
  16. #define FALSE 0
  17.  
  18. #define NUMSOUNDS 6
  19.  
  20. #define random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))
  21. #define randomize() srand((unsigned)time(NULL))
  22.  
  23. char *resource_file = "mixtest.snd";
  24.  
  25. char *sound_key[NUMSOUNDS] =
  26.   {
  27.     "JET",
  28.     "GUN",
  29.     "CRASH",
  30.     "CANNON",
  31.     "LASER",
  32.     "GLASS"
  33.   };
  34.  
  35. int baseio, irq, dma, dma16;
  36.  
  37. SOUND *sound[NUMSOUNDS];
  38.  
  39. unsigned char volume = 255;
  40.  
  41. void ourexitproc(void)
  42.   {
  43.     int i;
  44.  
  45.     for (i=0; i < NUMSOUNDS; ++i)
  46.       if (sound[i] != NULL) free_sound(sound+i);
  47.   }
  48.  
  49. void init(void)
  50.   {
  51.     int i;
  52.  
  53.     randomize();
  54.  
  55.     printf("-------------------------------------------\n");
  56.     printf("Sound Mixing Library v1.24 by Ethan Brodsky\n");
  57.     if (!detect_settings(&baseio, &irq, &dma, &dma16))
  58.       {
  59.         printf("ERROR:  Invalid or non-existant BLASTER environment variable!\n");
  60.         exit(EXIT_FAILURE);
  61.       }
  62.     else
  63.       {
  64.         if (!init_sb(baseio, irq, dma, dma16))
  65.           {
  66.             printf("ERROR:  Error initializing sound card!\n");
  67.             exit(EXIT_FAILURE);
  68.           }
  69.       }
  70.  
  71.     printf("BaseIO=%Xh     IRQ%u     DMA8=%u     DMA16=%u\n", baseio, irq, dma, dma16);
  72.  
  73.     printf("DSP version %.2f:  ", dspversion);
  74.     if (sixteenbit)
  75.       printf("16-bit, ");
  76.     else
  77.       printf("8-bit, ");
  78.     if (autoinit)
  79.       printf("Auto-initialized\n");
  80.     else
  81.       printf("Single-cycle\n");
  82.  
  83.     printf("Loading sounds\n");
  84.     open_sound_resource_file(resource_file);
  85.     for (i=0; i < NUMSOUNDS; i++)
  86.       load_sound(&(sound[i]), sound_key[i]);
  87.     atexit(ourexitproc);
  88.     close_sound_resource_file();
  89.  
  90.     atexit(ourexitproc); // Install exit procedure for emergency deallocation
  91.  
  92.     init_mixing();
  93.  
  94.     set_sound_volume(volume);
  95.  
  96.     printf("\n");
  97.   }
  98.  
  99. void shutdown(void)
  100.   {
  101.     int i;
  102.  
  103.     shutdown_mixing();
  104.     shutdown_sb();
  105.  
  106.     for (i=0; i < NUMSOUNDS; i++)
  107.       free_sound(sound+i);
  108.   }
  109.  
  110. int main(void)
  111.   {
  112.     struct rccoord coords;
  113.  
  114.     int  stop;
  115.  
  116.     long counter;
  117.  
  118.     char inkey;
  119.     int  num;
  120.     int  temp;
  121.  
  122.  
  123.     init();
  124.  
  125.     start_sound(sound[0], 0, 255, ON);      /* Start up the jet engine */
  126.  
  127.     printf("Press:                \n");
  128.     printf("  -   Decrease volume \n");
  129.     printf("  +   Increase volume \n");
  130.     printf("  1   Machine Gun     \n");
  131.     printf("  2   Crash           \n");
  132.     printf("  3   Cannon          \n");
  133.     printf("  4   Laser           \n");
  134.     printf("  5   Breaking glass  \n");
  135.     printf("  Q   Quit            \n");
  136.  
  137.     stop = FALSE;
  138.  
  139.     counter = 0;
  140.  
  141.     coords = _gettextposition();
  142.  
  143.     do
  144.       {
  145.        /* Increment and display counters */
  146.         counter++;
  147.         printf("%8lu %8lu %4u \n", counter, intcount, voicecount);
  148.         _settextposition(coords.row-1, 1);
  149.  
  150.        /* Maybe start a random sound */
  151.         if (!random(10000))
  152.           {
  153.            num = (random(NUMSOUNDS-1))+1;
  154.            start_sound(sound[num], num, 255, OFF);
  155.           }
  156.  
  157.        /* Start a sound if a key is pressed */
  158.         if (kbhit())
  159.           {
  160.             inkey = getch();
  161.             if ((inkey >= '0') && (inkey <= '9'))
  162.               {
  163.                 num = inkey - '0'; /* Convert to integer */
  164.                 if (num < NUMSOUNDS)
  165.                   start_sound(sound[num], num, 255, OFF);
  166.               }
  167.             else
  168.               {
  169.                 switch(inkey)
  170.                   {
  171.                     case '-':
  172.                     case '_':
  173.                       if (volume > 0)
  174.                         set_sound_volume(volume -= 4);
  175.                       break;
  176.  
  177.                     case '+':
  178.                     case '=':
  179.                       if (volume <255)
  180.                         set_sound_volume(volume += 4);
  181.                       break;
  182.  
  183.                     default:
  184.                       stop = TRUE;
  185.                       break;
  186.                   }
  187.               }
  188.           }
  189.       }
  190.     while (!stop);
  191.  
  192.     stop_sound(1); /* Stop the jet engine */
  193.  
  194.     shutdown();
  195.  
  196.     printf("\n");
  197.  
  198.     return(0);
  199.   }
  200.