现在的位置: 首页 > 综合 > 正文

OpenAL Lesson 6: Advanced Loading and Error Handles(转载)

2013年12月06日 ⁄ 综合 ⁄ 共 8067字 ⁄ 字号 评论关闭

转自http://www.devmaster.net/articles/openal-tutorials/lesson6.php

We've been doing some pretty simple stuff up until now that didn't require us to be very precise in the way we've handled things. The reason for this is that we have been writing code for simplicity in order to learn easier, rather that for robustness. Since we are going to move into some advanced stuff soon we will take some time to learn the proper ways. Most importantly we will learn a more advanced way of handling errors. We will also reorganize the way we have been loading audio data. There wasn't anything wrong with our methods in particular, but we will need a more organized and flexible approach to the process.

We will first consider a few functions that will help us out a lot by the time we have finished.

string GetALErrorString(ALenum err);
/*
 * 1) Identify the error code.
 * 2) Return the error as a string.
 
*/


string GetALCErrorString(ALenum err);
/*
 * 1) Identify the error code.
 * 2) Return the error as a string.
 
*/


ALuint LoadALBuffer(
string path);
/*
 * 1) Creates a buffer.
 * 2) Loads a wav file into the buffer.
 * 3) Returns the buffer id.
 
*/


ALuint GetLoadedALBuffer(
string path);
/*
 * 1) Checks if file has already been loaded.
 * 2) If it has been loaded already, return the buffer id.
 * 3) If it has not been loaded, load it and return buffer id.
 
*/


ALuint LoadALSample(
string path, bool loop);
/*
 * 1) Creates a source.
 * 2) Calls 'GetLoadedALBuffer' with 'path' and uses the
 *    returned buffer id as it's sources buffer.
 * 3) Returns the source id.
 
*/


void KillALLoadedData();
/*
 * 1) Releases temporary loading phase data.
 
*/


bool LoadALData();
/*
 * 1) Loads all buffers and sources for the application.
 
*/


void KillALData();
/*
 * 1) Releases all buffers.
 * 2) Releases all sources.
 
*/


vector
<string> LoadedFiles; // Holds loaded file paths temporarily.
vector<ALuint> Buffers; // Holds all loaded buffers.
vector<ALuint> Sources; // Holds all validated sources.

Take a close look at the functions and try to understand what we are going to be doing. Basically what we are trying to create is a system in which we no longer have to worry about the relationship between buffers and sources. We can call for the creation of a source from a file and this system will handle the buffer's creation on it's own so we don't duplicate a buffer (have two buffers with the same data). This system will handle the buffers as a limited resource, and will handle that resource efficiently.

string GetALErrorString(ALenum err)
{
    
switch(err)
    
{
        
case AL_NO_ERROR:
            
return string("AL_NO_ERROR");
        
break;

        
case AL_INVALID_NAME:
            
return string("AL_INVALID_NAME");
        
break;

        
case AL_INVALID_ENUM:
            
return string("AL_INVALID_ENUM");
        
break;

        
case AL_INVALID_VALUE:
            
return string("AL_INVALID_VALUE");
        
break;

        
case AL_INVALID_OPERATION:
            
return string("AL_INVALID_OPERATION");
        
break;

        
case AL_OUT_OF_MEMORY:
            
return string("AL_OUT_OF_MEMORY");
        
break;
    }
;
}

This function will convert an OpenAL error code to a string so it can be read on the console (or some other device). The OpenAL sdk says that the only exception that needs be looked for in the current version is the 'AL_OUT_OF_MEMORY' error. However, we will account for all the errors so that our code will be up to date with later versions.

string GetALCErrorString(ALenum err)
{
    
switch(err)
    
{
        
case ALC_NO_ERROR:
            
return string("AL_NO_ERROR");
        
break;

        
case ALC_INVALID_DEVICE:
            
return string("ALC_INVALID_DEVICE");
        
break;

        
case ALC_INVALID_CONTEXT:
            
return string("ALC_INVALID_CONTEXT");
        
break;

        
case ALC_INVALID_ENUM:
            
return string("ALC_INVALID_ENUM");
        
break;

        
case ALC_INVALID_VALUE:
            
return string("ALC_INVALID_VALUE");
        
break;

        
case ALC_OUT_OF_MEMORY:
            
return string("ALC_OUT_OF_MEMORY");
        
break;
    }
;
}

This function will perform a similar task as the previous one accept this one will interpret Alc errors. OpenAL and Alc share common id's, but not common enough and not dissimilar enough to use the same function for both.

One more note about the function 'alGetError': The OpenAL sdk defines that it only holds a single error at a time (i.e. there is no stacking). When the function is invoked it will return the first error that it has received, and then clear the error bit to 'AL_NO_ERROR'. In other words an error will only be stored in the error bit if no previous error is already stored there.

ALuint LoadALBuffer(string path)
{
    
// Variables to store data which defines the buffer.
    ALenum format;
    ALsizei size;
    ALvoid
* data;
    ALsizei freq;
    ALboolean loop;

    
// Buffer id and error checking variable.
    ALuint buffer;
    ALenum result;

    
// Generate a buffer. Check that it was created successfully.
    alGenBuffers(1&buffer);

    
if ((result = alGetError()) != AL_NO_ERROR)
        
throw GetALErrorString(result);

    
// Read in the wav data from file. Check that it loaded correctly.
    alutLoadWAVFile(szFilePath, &format, &data, &size, &freq, &loop);

    
if ((result = alGetError()) != AL_NO_ERROR)
        
throw GetALErrorString(result);

    
// Send the wav data into the buffer. Check that it was received properly.
    alBufferData(buffer, format, data, size, freq);

    
if ((result = alGetError()) != AL_NO_ERROR)
        
throw GetALErrorString(result);

    
// Get rid of the temporary data.
    alutUnloadWAV(format, data, size, freq);

    
if ((result = alGetError()) != AL_NO_ERROR)
        
throw GetALErrorString(result);

    
// Return the buffer id.
    return buffer;
}

As you can see we do an error check at every possible phase of the load. Any number of things can happen at this point which will cause an error to be thrown. There could be no more system memory either for the buffer creation or the data to be loaded, the wav file itself may not even exist, or an invalid value can be passed to any one of the OpenAL functions which will generate an error.

ALuint GetLoadedALBuffer(string path)
{
    
int count = 0// 'count' will be an index to the buffer list.

    ALuint buffer; 
// Buffer id for the loaded buffer.


    
// Iterate through each file path in the list.
    for(vector<string>::iterator iter = LoadedFiles.begin(); iter != LoadedFiles.end(); ++iter, count++)
    
{
        
// If this file path matches one we have loaded already, return the buffer id for it.
        if(*iter == path)
            
return Buffers[count];
    }


    
// If we have made it this far then this file is new and we will create a buffer for it.
    buffer = LoadALBuffer(path);

    
// Add this new buffer to the list, and register that this file has been loaded already.
    Buffers.push_back(buffer);

    LoadedFiles.push_back(path);

    
return buffer;
}

This will probably be the piece of code most people have trouble with, but it's really not that complex. We are doing a search through a list which contains the file paths of all the wav's we have loaded so far. If one of the paths matches the one we want to load, we will simply return the id to the buffer we loaded it into the first time. This way as long as we consistently load our files through this function, we will never have buffers wasted due to duplication. Every file loaded this way must also be kept track of with it's own list. The 'Buffers' list is parallel to the 'LoadedFiles' list. What I mean by this is that every buffer in the index of 'Buffers', is the same path of the index in 'LoadedFiles' from which that buffer was created.

ALuint LoadALSample(string path, bool loop)
{
    ALuint source;
    ALuint buffer;
    ALenum result;

    
// Get the files buffer id (load it if necessary).
    buffer = GetLoadedALBuffer(path);

    
// Generate a source.
    alGenSources(1 &source);

    
if ((result = alGetError()) != AL_NO_ERROR)
        
throw GetALErrorString(result);

    
// Setup the source properties.
    alSourcei (source, AL_BUFFER,   buffer   );
    alSourcef (source, AL_PITCH,    
1.0      );
    alSourcef (source, AL_GAIN,     
1.0      );
    alSourcefv(source, AL_POSITION, SourcePos);
    alSourcefv(source, AL_VELOCITY, SourceVel);
    alSourcei (source, AL_LOOPING,  loop     );

    
// Save the source id.
    Sources.push_back(source);

    
// Return the source id.
    return source;
}

Now that we have created a system which will handle the buffers for us, we just need an extension to it that will get the sources. In this code we obtain the result of a search for the file, which is the buffer id that the file was loaded into. This buffer is bound to the new source. We save the source id internally and also return it.

抱歉!评论已关闭.