Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 19, 2005, 1:21:14 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/sound_engine: sound gets enabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/sound_engine/src/lib/sound/sound_engine.cc

    r3887 r3889  
    1919
    2020#include "sound_engine.h"
     21#include <SDL_mixer.h>
    2122
    2223using namespace std;
     
    2829{
    2930   this->setClassName ("SoundEngine");
     31
     32   // preInit
    3033   this->isInit = false;
     34   this->frequency = SOUND_DEFAULT_FREQUENCY;
     35   this->format = MIX_DEFAULT_FORMAT;
     36   this->channels = SOUND_DEFAULT_CHANNELS;
     37   this->buffers = SOUND_DEFAULT_BUFIZE;
     38
    3139   this->enableSound();
    3240}
    3341
    34 //! brief the singleton reference to this class
     42/**
     43   \brief the singleton reference to this class
     44*/
    3545SoundEngine* SoundEngine::singletonRef = NULL;
    3646
     
    6373{
    6474  if (!this->isInit)
    65     if (SDL_Init(SDL_INIT_AUDIO))
    66       {
    67         PRINTF(1)("SDL-sound could not be initialized\n");
    68         return;
    69       }
    70   this->isInit = true;
     75    {
     76      if (SDL_Init(SDL_INIT_AUDIO) == -1)
     77        {
     78          PRINTF(1)("SDL-sound could not be initialized\nSDL_Init: %s\n", SDL_GetError());
     79          return;
     80        }
     81      else
     82        {
     83          this->isInit = true;
     84         
     85          // checking if the mode is supported
     86          Mix_QuerySpec(&this->frequency, &this->format, &this->channels);
     87         
     88          this->bits = this->format & 0xFF;
     89          PRINTF(3)("Opened audio at %d Hz %d bit %s, %d bytes audio buffer\n",
     90                    this->frequency, this->bits, this->channels > 1 ? "stereo" : "mono", this->buffers);
     91          Mix_VolumeMusic(this->volume);
     92         
     93          if(Mix_OpenAudio(this->frequency, this->format, this->channels, this->buffers) == -1)
     94            PRINTF(1)("Mix_OpenAudio: %s\n", Mix_GetError());
     95        }
     96 
     97
     98    }
    7199}
    72100
     
    78106  if (this->isInit)
    79107    {
    80       SDL_QuitSubSystem(SDL_INIT_AUDIO);
     108      Mix_CloseAudio();
    81109    }
    82110  else
Note: See TracChangeset for help on using the changeset viewer.