OpenAL:定位freealut或修复此代码

OpenAL: locating freealut or fixing this code

本文关键字:代码 定位 freealut OpenAL      更新时间:2023-10-16

我正在为游戏引擎编写一个新的框架,但我遇到了一个问题,OpenAL。

我通常使用freealut,但我在任何地方都找不到它,唯一托管它的网站是离线的,我没有它的任何副本。我甚至不得不仔细分析其他人的项目来找到openal32.lib。要么我的谷歌功能变得很弱,要么庞大的互联网真的没有它的副本。

我找到了一些示例代码,展示了如何在没有freealut框架的情况下使用openAL,但我无法将其加载到多个文件中,所以我必须找出它不起作用的原因,或者以某种方式找到freealut,我在github中找到了一些源代码,但目前,从源代码构建freealut是不可能的。

我使用可视化表达c++2010作为ide。

我将找到的代码修改为:

基本上它有三个命令来加载、播放和删除声音文件。它对一个声音文件很好,但当我尝试加载更多时,它就停止工作了。

#include "AudioLib.h"
#include <iostream>
#include <cstdlib>
#include <Windows.h>
#include <map>
#include <vector>
#include <ALal.h>
#include <ALalc.h>

using namespace std;
typedef map <const char *, ALuint > MapType;
MapType soundsbuffer;
MapType soundssource;

int endWithError(char* msg, int error=0)
{
//Display error message in console
cout << msg << "n";
//system("PAUSE");
return error;
}
vector<const char *> soundslist;

ALCdevice *device;                                                      
ALCcontext *context;   

int loadSound(const char * input) {
FILE *fp;
unsigned char* buf;
ALuint source;                                                          
ALuint buffer;  
fp = NULL;
fp = fopen(input,"rb");

char type[4];
DWORD size,chunkSize;
short formatType,channels;
DWORD sampleRate, avgBytesPerSec;
short bytesPerSample, bitsPerSample;
DWORD dataSize;

//Check that the WAVE file is OK
fread(type,sizeof(char),4,fp);                                              //Reads the first bytes in the file
if(type[0]!='R' || type[1]!='I' || type[2]!='F' || type[3]!='F')            //Should be "RIFF"
return endWithError ("No RIFF");                                            //Not RIFF
fread(&size, sizeof(DWORD),1,fp);                                           //Continue to read the file
fread(type, sizeof(char),4,fp);                                             //Continue to read the file
if (type[0]!='W' || type[1]!='A' || type[2]!='V' || type[3]!='E')           //This part should be "WAVE"
return endWithError("not WAVE");                                            //Not WAVE
fread(type,sizeof(char),4,fp);                                              //Continue to read the file
if (type[0]!='f' || type[1]!='m' || type[2]!='t' || type[3]!=' ')           //This part should be "fmt "
return endWithError("not fmt ");                                            //Not fmt 
//Now we know that the file is a acceptable WAVE file
//Info about the WAVE data is now read and stored
fread(&chunkSize,sizeof(DWORD),1,fp);
fread(&formatType,sizeof(short),1,fp);
fread(&channels,sizeof(short),1,fp);
fread(&sampleRate,sizeof(DWORD),1,fp);
fread(&avgBytesPerSec,sizeof(DWORD),1,fp);
fread(&bytesPerSample,sizeof(short),1,fp);
fread(&bitsPerSample,sizeof(short),1,fp);
fread(type,sizeof(char),4,fp);
if (type[0]!='d' || type[1]!='a' || type[2]!='t' || type[3]!='a')           //This part should be "data"
return endWithError("Missing DATA");                                        //not data
fread(&dataSize,sizeof(DWORD),1,fp);                                        //The size of the sound data is read
//Display the info about the WAVE file
cout << "Chunk Size: " << chunkSize << "n";
cout << "Format Type: " << formatType << "n";
cout << "Channels: " << channels << "n";
cout << "Sample Rate: " << sampleRate << "n";
cout << "Average Bytes Per Second: " << avgBytesPerSec << "n";
cout << "Bytes Per Sample: " << bytesPerSample << "n";
cout << "Bits Per Sample: " << bitsPerSample << "n";
cout << "Data Size: " << dataSize << "n";

buf= new unsigned char[dataSize];                            //Allocate memory for the sound data
cout << fread(buf,sizeof(BYTE),dataSize,fp) << " bytes loadedn";           //Read the sound data and display the 
      //number of bytes loaded.
      //Should be the same as the Data Size if OK

//Now OpenAL needs to be initialized 
//And an OpenAL Context
device = alcOpenDevice(NULL);                                               //Open the device
if(!device) return endWithError("no sound device");                         //Error during device oening
context = alcCreateContext(device, NULL);                                   //Give the device a context
alcMakeContextCurrent(context);                                             //Make the context the current
if(!context) return endWithError("no sound context");                       //Error during context handeling
//Stores the sound data
ALuint frequency=sampleRate;;                                              //The Sample Rate of the WAVE file
ALenum format=0;                                                            //The audio format (bits per sample, number of channels)
alGenBuffers(1, &buffer);                                                    //Generate one OpenAL Buffer and link to "buffer"
alGenSources(1, &source);                                                   //Generate one OpenAL Source and link to "source"
if(alGetError() != AL_NO_ERROR) return endWithError("Error GenSource");     //Error during buffer/source generation
//Figure out the format of the WAVE file
if(bitsPerSample == 8)
{
if(channels == 1)
format = AL_FORMAT_MONO8;
else if(channels == 2)
format = AL_FORMAT_STEREO8;
}
else if(bitsPerSample == 16)
{
if(channels == 1)
format = AL_FORMAT_MONO16;
else if(channels == 2)
format = AL_FORMAT_STEREO16;
}
if(!format) return endWithError("Wrong BitPerSample");                      //Not valid format
alBufferData(buffer, format, buf, dataSize, frequency);                    //Store the sound data in the OpenAL Buffer
soundsbuffer[input] = buffer;
soundssource[input] = source;
soundslist.push_back(input);

if(alGetError() != AL_NO_ERROR) {
return endWithError("Error loading ALBuffer");                              //Error during buffer loading
}
fclose(fp); 
delete[] buf;    
}
int playSound(const char * input) {
//Sound setting variables
ALfloat SourcePos[] = { 0.0, 0.0, 0.0 };                                    //Position of the source sound
ALfloat SourceVel[] = { 0.0, 0.0, 0.0 };                                    //Velocity of the source sound
ALfloat ListenerPos[] = { 0.0, 0.0, 0.0 };                                  //Position of the listener
ALfloat ListenerVel[] = { 0.0, 0.0, 0.0 };                                  //Velocity of the listener
ALfloat ListenerOri[] = { 0.0, 0.0, -1.0,  0.0, 1.0, 0.0 };                 //Orientation of the listener
      //First direction vector, then vector pointing up) 
//Listener                                                                               
alListenerfv(AL_POSITION,    ListenerPos);                                  //Set position of the listener
alListenerfv(AL_VELOCITY,    ListenerVel);                                  //Set velocity of the listener
alListenerfv(AL_ORIENTATION, ListenerOri);                                  //Set orientation of the listener
ALuint source = soundssource[input];
ALuint buffer = soundsbuffer[input];
//Source
alSourcei (source, AL_BUFFER,   buffer);                                 //Link the buffer to the source
alSourcef (source, AL_PITCH,    1.0f     );                                 //Set the pitch of the source
alSourcef (source, AL_GAIN,     1.0f     );                                 //Set the gain of the source
alSourcefv(source, AL_POSITION, SourcePos);                                 //Set the position of the source
alSourcefv(source, AL_VELOCITY, SourceVel);                                 //Set the velocity of the source
alSourcei (source, AL_LOOPING,  AL_FALSE );                                 //Set if source is looping sound
//PLAY 
alSourcePlay(source);                                                       //Play the sound buffer linked to the source
if(alGetError() != AL_NO_ERROR) return endWithError("Error playing sound"); //Error when playing sound
//system("PAUSE");                                                            //Pause to let the sound play

}

void deleteSound() {
//Clean-up
//Close the WAVE file
//Delete the sound data buffer
for(int i = 0; i < soundslist.size(); i++) {
const char * out = soundslist[i];
alDeleteSources(1, &soundssource[out]);                                                //Delete the OpenAL Source
alDeleteBuffers(1, &soundsbuffer[out]);   
}        
//Delete the OpenAL Buffer
soundslist.clear();
alcMakeContextCurrent(NULL);                                                //Make no context current
alcDestroyContext(context);                                                 //Destroy the OpenAL Context
alcCloseDevice(device);      
}

所以我的要求是:我需要freealut文件,或者一些代码方面的帮助。有什么解决方案吗?

好的,openal网站似乎部分恢复了在线。

对于任何需要链接的人:http://connect.creativelabs.com/openal/Downloads/Forms/AllItems.aspx?RootFolder=http%3a%2f%2fconnect%2ecreativelabs%2ecom%2fopenal%2fDownloads%2fALUT&文件夹CTID=0x012000730059C4C04B4D4B80686126F6C1A2E8