home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / MK1_23.ZIP / MIDWAV.C < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-17  |  5.4 KB  |  186 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <conio.h>
  4. #include <dos.h>
  5. #include <string.h>
  6.  
  7. #include "mtypes.h"                      // you must include these headers
  8. #include "mwav.h"              
  9. #include "midkit.h"
  10.  
  11.  
  12. mks_file mks[2];                          // initiate the song varibles
  13. mki_file mki;                             // the MID-KIT instrument bank file
  14. int song=0;                               // current song #
  15.  
  16. int volume=50;
  17.  
  18. void do_mid_kit(void);
  19.  
  20.  
  21. int main(int argc,char *argv[])
  22. {
  23.     printf(" =============================================================\n");
  24.     printf(" ** MID-KIT ver 1.23 *** Programmed by - John Pollard       **\n");
  25.     printf(" ** A powerfull midi engine!  With 32 voice support!        **\n");
  26.     printf(" ** Complete with Panning, and stereo sound effects!        **\n");
  27.     printf(" ** Please read MID-KIT.DOC for info.                       **\n");            
  28.     printf(" **---------------------------------------------------------**\n");
  29.     printf(" **   Registering is only $50!  No royalties to be paid!    **\n");
  30.     printf(" **         Read REGISTER.FRM for ordering info.            **\n");
  31.     printf(" **---------------------------------------------------------**\n");
  32.     printf(" ** You can contact me via compuserve, internet, or phone.  **\n");
  33.     printf(" ** Compuserve: 74723,1626 - Phone: 1(918)234-1420          **\n");
  34.     printf(" ** INTERNET: 74723.1626@compuserve.com                     **\n");
  35.     printf(" =============================================================\n");
  36.  
  37.     /*
  38.         Initialize soundcard parameters.. you _have_ to do this
  39.         before calling MK_Init(), and it's illegal to change them
  40.         after you've called MK_Init()
  41.     */
  42.     // these are for the digital routines
  43.     // These mean nothing, if you don't iniatiate the SB for DIGI_PLAY
  44.     mk_mixfreq      =44100;             // standard mixing freq for .WAV's
  45.     mk_dmabufsize   =4000;              // standard dma buf size
  46.     mk_mode         =STEREO;            // standard mixing mode
  47.     // NOTE - if the sound card does not support any of the above
  48.     // perameters, then they will be dropped accordingly, by MID-KIT.
  49.     
  50.     //      initialize soundcard
  51.     
  52.     // NOTE - if you want to use you own perameters to install MID-KIT
  53.     // just set MK_AutoDetect=0, and set the irq,dma, etc variables.
  54.     // Read "MID-KIT.DOC" for details on these variables...
  55.  
  56.     // Set for MID, and DIG play.  Use auto-detect, and mix 10 channels.
  57.  
  58.     if(!MK_Init(MK_DIGI | MK_MIDI | MK_AUTO,10) ){
  59.         printf("ERROR: %s.\n",mkerr);
  60.         printf("No sound will be heard...\n");
  61.     }
  62.     else
  63.     printf("Sound Blaster found at port %0xh, IRQ %i\n",sb_port, sb_irq);
  64.     printf("FM-OPL2 found at address %0xh\n",fm_addr);
  65.  
  66.     MK_StartTimer();                   // you can call this even if
  67.                        // no sound card was found...
  68.                        // all MK routine can also be called
  69.  
  70.     if (!MK_LoadMKI(&mki) ) {      
  71.         printf("%s",mkerr);
  72.         goto end;
  73.     }
  74.     if (!MK_LoadMKS("fightm.mks",&mks[0]) ) {
  75.          printf("%s",mkerr);
  76.          goto end;
  77.     }
  78.     if (!MK_LoadMKS("credits.mks",&mks[1]) ) {
  79.          printf("%s",mkerr);
  80.          goto end;
  81.     }
  82.  
  83.     MK_PlayMKS(&mks[0],&mki);
  84.     
  85.     MK_SetMusicVol(volume);            // about 50%
  86.  
  87.     printf("Using %d bit %s sound at %u Hz\n\n",
  88.             (mk_mode&BITS16) ? 16:8,
  89.             (mk_mode&STEREO) ? "stereo":"mono",
  90.             mk_mixfreq);
  91.     
  92.     // call main program
  93.  
  94.     do_mid_kit();
  95.  
  96.     // and clean up
  97.     end:;
  98.     MK_StopMKS();                  // stop whatever song is playing....
  99.     MK_FreeMKS(&mks[1]);             // make sure to free them :-)
  100.     MK_FreeMKS(&mks[0]);
  101.     MK_Exit();                     
  102.     MK_StopTimer();                // allways call this after your done
  103.                        // with MID-KIT, if you initiated it!!!
  104.     return 0;
  105. }
  106.  
  107. void do_mid_kit(void)
  108. {
  109.     int t;
  110.     SAMPLE *s1,*s2;
  111.  
  112.     if((s1=MK_LoadWave("s1.wav"))==NULL){
  113.         printf("Wavload error: %s.\n",mkerr);
  114.         return;
  115.     }
  116.  
  117.     if((s2=MK_LoadWave("s2.wav"))==NULL){
  118.         printf("Wavload error: %s.\n",mkerr);
  119.         MK_FreeWave(s1);
  120.         return;
  121.     }
  122.  
  123.     puts("Press '1,2,3,4' to hear the .WAV files.");
  124.     puts("Press '5' to change songs.");
  125.     puts("Press - / + to change music volume.");
  126.     printf("\nPress 'q' to EXIT to DOS.\n");
  127.  
  128.     while(1){
  129.           if (kbhit() )
  130.         t=getch();
  131.  
  132.         if (t=='5') {
  133.             song++;
  134.             if (song>1) song=0;
  135.             MK_StopMKS();                   // stop the old song
  136.             MK_PlayMKS(&mks[song], &mki);   // play the current song
  137.         }
  138.         
  139.         if(t=='q') break;
  140.  
  141.         if(t=='1'){
  142.             MK_VoiceSetVolume(0,64);
  143.             MK_VoiceSetPanning(0,0);
  144.             MK_VoiceSetFrequency(0,12000);
  145.             MK_VoicePlay(0,s1->handle,0,s1->length,0,0,s1->flags);
  146.         }
  147.  
  148.         if(t=='2'){
  149.             MK_VoiceSetVolume(1,64);
  150.             MK_VoiceSetPanning(1,64);
  151.             MK_VoiceSetFrequency(1,13000);
  152.             MK_VoicePlay(1,s1->handle,0,s1->length,0,0,s1->flags);
  153.         }
  154.  
  155.         if(t=='3'){
  156.             MK_VoiceSetVolume(2,64);
  157.             MK_VoiceSetPanning(2,128);
  158.             MK_VoiceSetFrequency(2,10000);
  159.             MK_VoicePlay(2,s2->handle,0,s2->length,0,0,s2->flags);
  160.         }
  161.  
  162.         if(t=='4'){
  163.             MK_VoiceSetVolume(3,64);
  164.             MK_VoiceSetPanning(3,200);
  165.             MK_VoiceSetFrequency(3,12000);
  166.             MK_VoicePlay(3,s2->handle,0,s2->length,0,0,s2->flags);
  167.         }
  168.         if (t=='-') { volume--; 
  169.            if (!MK_SetMusicVol(volume)) 
  170.          printf("%s",mkerr);
  171.         }
  172.         if (t=='=') { volume++; 
  173.            if (!MK_SetMusicVol(volume)) 
  174.          printf("%s",mkerr);
  175.         }
  176.  
  177.     // this will show you how MK_Timer is updated......
  178.     printf("\rMusic Volume: %i , MK_Timer val = %lu",volume,MK_Timer);
  179.  
  180.     t=0;
  181.     }
  182.  
  183.     MK_FreeWave(s1);
  184.     MK_FreeWave(s2);
  185. }
  186.