2009-08-09 21:16:39 +00:00
|
|
|
/*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Copyright 2009-2011 Jörg Hermann Müller
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
|
|
|
* This file is part of AudaSpace.
|
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* Audaspace is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2009-08-09 21:16:39 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* AudaSpace is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2011-02-18 23:47:37 +00:00
|
|
|
* GNU General Public License for more details.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Audaspace; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-08-09 21:16:39 +00:00
|
|
|
*
|
2011-02-18 23:47:37 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2009-08-09 21:16:39 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-25 10:21:56 +00:00
|
|
|
/** \file audaspace/OpenAL/AUD_OpenALDevice.h
|
|
|
|
* \ingroup audopenal
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __AUD_OPENALDEVICE_H__
|
|
|
|
#define __AUD_OPENALDEVICE_H__
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
#include "AUD_IDevice.h"
|
2011-06-21 20:21:43 +00:00
|
|
|
#include "AUD_IHandle.h"
|
2009-08-09 21:16:39 +00:00
|
|
|
#include "AUD_I3DDevice.h"
|
2011-06-21 20:21:43 +00:00
|
|
|
#include "AUD_I3DHandle.h"
|
2011-06-14 12:13:19 +00:00
|
|
|
#include "AUD_Buffer.h"
|
2011-06-21 20:21:43 +00:00
|
|
|
//struct AUD_OpenALBufferedFactory;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
#include <AL/al.h>
|
|
|
|
#include <AL/alc.h>
|
|
|
|
#include <list>
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This device plays through OpenAL.
|
|
|
|
*/
|
|
|
|
class AUD_OpenALDevice : public AUD_IDevice, public AUD_I3DDevice
|
|
|
|
{
|
|
|
|
private:
|
2011-06-21 20:21:43 +00:00
|
|
|
/// Saves the data for playback.
|
|
|
|
class AUD_OpenALHandle : public AUD_IHandle, public AUD_I3DHandle
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static const int CYCLE_BUFFERS = 3;
|
|
|
|
|
|
|
|
/// Whether it's a buffered or a streamed source.
|
|
|
|
bool m_isBuffered;
|
|
|
|
|
|
|
|
/// The reader source.
|
2012-11-05 14:24:35 +00:00
|
|
|
boost::shared_ptr<AUD_IReader> m_reader;
|
2011-06-21 20:21:43 +00:00
|
|
|
|
|
|
|
/// Whether to keep the source if end of it is reached.
|
|
|
|
bool m_keep;
|
|
|
|
|
|
|
|
/// OpenAL sample format.
|
|
|
|
ALenum m_format;
|
|
|
|
|
|
|
|
/// OpenAL source.
|
|
|
|
ALuint m_source;
|
|
|
|
|
|
|
|
/// OpenAL buffers.
|
|
|
|
ALuint m_buffers[CYCLE_BUFFERS];
|
|
|
|
|
|
|
|
/// The first buffer to be read next.
|
|
|
|
int m_current;
|
|
|
|
|
|
|
|
/// Whether the stream doesn't return any more data.
|
|
|
|
bool m_eos;
|
|
|
|
|
|
|
|
/// The loop count of the source.
|
|
|
|
int m_loopcount;
|
|
|
|
|
|
|
|
/// The stop callback.
|
|
|
|
stopCallback m_stop;
|
|
|
|
|
|
|
|
/// Stop callback data.
|
|
|
|
void* m_stop_data;
|
|
|
|
|
2011-08-07 11:54:58 +00:00
|
|
|
/// Orientation.
|
|
|
|
AUD_Quaternion m_orientation;
|
|
|
|
|
2011-06-21 20:21:43 +00:00
|
|
|
/// Current status of the handle
|
|
|
|
AUD_Status m_status;
|
|
|
|
|
|
|
|
/// Own device.
|
|
|
|
AUD_OpenALDevice* m_device;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2011-08-16 13:00:55 +00:00
|
|
|
/**
|
|
|
|
* Creates a new OpenAL handle.
|
|
|
|
* \param device The OpenAL device the handle belongs to.
|
|
|
|
* \param format The AL format.
|
|
|
|
* \param reader The reader this handle plays.
|
|
|
|
* \param keep Whether to keep the handle alive when the reader ends.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
AUD_OpenALHandle(AUD_OpenALDevice* device, ALenum format, boost::shared_ptr<AUD_IReader> reader, bool keep);
|
2011-06-21 20:21:43 +00:00
|
|
|
|
|
|
|
virtual ~AUD_OpenALHandle() {}
|
|
|
|
virtual bool pause();
|
|
|
|
virtual bool resume();
|
|
|
|
virtual bool stop();
|
|
|
|
virtual bool getKeep();
|
|
|
|
virtual bool setKeep(bool keep);
|
|
|
|
virtual bool seek(float position);
|
|
|
|
virtual float getPosition();
|
|
|
|
virtual AUD_Status getStatus();
|
|
|
|
virtual float getVolume();
|
|
|
|
virtual bool setVolume(float volume);
|
|
|
|
virtual float getPitch();
|
|
|
|
virtual bool setPitch(float pitch);
|
|
|
|
virtual int getLoopCount();
|
|
|
|
virtual bool setLoopCount(int count);
|
|
|
|
virtual bool setStopCallback(stopCallback callback = 0, void* data = 0);
|
|
|
|
|
|
|
|
virtual AUD_Vector3 getSourceLocation();
|
|
|
|
virtual bool setSourceLocation(const AUD_Vector3& location);
|
|
|
|
virtual AUD_Vector3 getSourceVelocity();
|
|
|
|
virtual bool setSourceVelocity(const AUD_Vector3& velocity);
|
|
|
|
virtual AUD_Quaternion getSourceOrientation();
|
|
|
|
virtual bool setSourceOrientation(const AUD_Quaternion& orientation);
|
|
|
|
virtual bool isRelative();
|
|
|
|
virtual bool setRelative(bool relative);
|
|
|
|
virtual float getVolumeMaximum();
|
|
|
|
virtual bool setVolumeMaximum(float volume);
|
|
|
|
virtual float getVolumeMinimum();
|
|
|
|
virtual bool setVolumeMinimum(float volume);
|
|
|
|
virtual float getDistanceMaximum();
|
|
|
|
virtual bool setDistanceMaximum(float distance);
|
|
|
|
virtual float getDistanceReference();
|
|
|
|
virtual bool setDistanceReference(float distance);
|
|
|
|
virtual float getAttenuation();
|
|
|
|
virtual bool setAttenuation(float factor);
|
|
|
|
virtual float getConeAngleOuter();
|
|
|
|
virtual bool setConeAngleOuter(float angle);
|
|
|
|
virtual float getConeAngleInner();
|
|
|
|
virtual bool setConeAngleInner(float angle);
|
|
|
|
virtual float getConeVolumeOuter();
|
|
|
|
virtual bool setConeVolumeOuter(float volume);
|
|
|
|
};
|
|
|
|
|
2012-11-05 14:24:35 +00:00
|
|
|
typedef std::list<boost::shared_ptr<AUD_OpenALHandle> >::iterator AUD_HandleIterator;
|
2011-06-21 20:21:43 +00:00
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
/**
|
|
|
|
* The OpenAL device handle.
|
|
|
|
*/
|
|
|
|
ALCdevice* m_device;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The OpenAL context.
|
|
|
|
*/
|
|
|
|
ALCcontext* m_context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The specification of the device.
|
|
|
|
*/
|
2010-01-01 05:09:30 +00:00
|
|
|
AUD_DeviceSpecs m_specs;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the device has the AL_EXT_MCFORMATS extension.
|
|
|
|
*/
|
|
|
|
bool m_useMC;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The list of sounds that are currently playing.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
std::list<boost::shared_ptr<AUD_OpenALHandle> > m_playingSounds;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The list of sounds that are currently paused.
|
|
|
|
*/
|
2012-11-05 14:24:35 +00:00
|
|
|
std::list<boost::shared_ptr<AUD_OpenALHandle> > m_pausedSounds;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The list of buffered factories.
|
|
|
|
*/
|
2011-06-21 20:21:43 +00:00
|
|
|
//std::list<AUD_OpenALBufferedFactory*>* m_bufferedFactories;
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The mutex for locking.
|
|
|
|
*/
|
|
|
|
pthread_mutex_t m_mutex;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The streaming thread.
|
|
|
|
*/
|
|
|
|
pthread_t m_thread;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The condition for streaming thread wakeup.
|
|
|
|
*/
|
|
|
|
bool m_playing;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Buffer size.
|
|
|
|
*/
|
|
|
|
int m_buffersize;
|
|
|
|
|
2011-06-14 12:13:19 +00:00
|
|
|
/**
|
|
|
|
* Device buffer.
|
|
|
|
*/
|
|
|
|
AUD_Buffer m_buffer;
|
|
|
|
|
2011-08-07 11:54:58 +00:00
|
|
|
/**
|
|
|
|
* Orientation.
|
|
|
|
*/
|
|
|
|
AUD_Quaternion m_orientation;
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
/**
|
|
|
|
* Starts the streaming thread.
|
2011-08-16 13:00:55 +00:00
|
|
|
* \param Whether the previous thread should be joined.
|
2009-08-09 21:16:39 +00:00
|
|
|
*/
|
2011-07-23 15:59:10 +00:00
|
|
|
void start(bool join = true);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the format according to the specs.
|
|
|
|
* \param format The variable to put the format into.
|
2010-01-01 05:09:30 +00:00
|
|
|
* \param specs The specs to read the channel count from.
|
2009-08-09 21:16:39 +00:00
|
|
|
* \return Whether the format is valid or not.
|
|
|
|
*/
|
|
|
|
bool getFormat(ALenum &format, AUD_Specs specs);
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
// hide copy constructor and operator=
|
|
|
|
AUD_OpenALDevice(const AUD_OpenALDevice&);
|
|
|
|
AUD_OpenALDevice& operator=(const AUD_OpenALDevice&);
|
|
|
|
|
2009-08-09 21:16:39 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Opens the OpenAL audio device for playback.
|
|
|
|
* \param specs The wanted audio specification.
|
|
|
|
* \param buffersize The size of the internal buffer.
|
|
|
|
* \note The specification really used for opening the device may differ.
|
|
|
|
* \note The buffersize will be multiplicated by three for this device.
|
|
|
|
* \exception AUD_Exception Thrown if the audio device cannot be opened.
|
|
|
|
*/
|
2010-01-01 05:09:30 +00:00
|
|
|
AUD_OpenALDevice(AUD_DeviceSpecs specs,
|
|
|
|
int buffersize = AUD_DEFAULT_BUFFER_SIZE);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Streaming thread main function.
|
|
|
|
*/
|
|
|
|
void updateStreams();
|
|
|
|
|
|
|
|
virtual ~AUD_OpenALDevice();
|
|
|
|
|
2010-07-28 09:36:03 +00:00
|
|
|
virtual AUD_DeviceSpecs getSpecs() const;
|
2012-11-05 14:24:35 +00:00
|
|
|
virtual boost::shared_ptr<AUD_IHandle> play(boost::shared_ptr<AUD_IReader> reader, bool keep = false);
|
|
|
|
virtual boost::shared_ptr<AUD_IHandle> play(boost::shared_ptr<AUD_IFactory> factory, bool keep = false);
|
2011-08-07 11:54:58 +00:00
|
|
|
virtual void stopAll();
|
2009-08-09 21:16:39 +00:00
|
|
|
virtual void lock();
|
|
|
|
virtual void unlock();
|
2010-07-28 12:43:59 +00:00
|
|
|
virtual float getVolume() const;
|
|
|
|
virtual void setVolume(float volume);
|
2009-08-09 21:16:39 +00:00
|
|
|
|
2010-07-30 22:20:08 +00:00
|
|
|
virtual AUD_Vector3 getListenerLocation() const;
|
|
|
|
virtual void setListenerLocation(const AUD_Vector3& location);
|
|
|
|
virtual AUD_Vector3 getListenerVelocity() const;
|
|
|
|
virtual void setListenerVelocity(const AUD_Vector3& velocity);
|
|
|
|
virtual AUD_Quaternion getListenerOrientation() const;
|
|
|
|
virtual void setListenerOrientation(const AUD_Quaternion& orientation);
|
|
|
|
virtual float getSpeedOfSound() const;
|
|
|
|
virtual void setSpeedOfSound(float speed);
|
|
|
|
virtual float getDopplerFactor() const;
|
|
|
|
virtual void setDopplerFactor(float factor);
|
|
|
|
virtual AUD_DistanceModel getDistanceModel() const;
|
|
|
|
virtual void setDistanceModel(AUD_DistanceModel model);
|
2009-08-09 21:16:39 +00:00
|
|
|
};
|
|
|
|
|
2012-02-17 18:59:41 +00:00
|
|
|
#endif //__AUD_OPENALDEVICE_H__
|