1
0
forked from 0ad/0ad
0ad/source/soundmanager/items/ISoundItem.h

67 lines
1.8 KiB
C++

/* Copyright (C) 2012 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. 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
* (at your option) any later version.
*
* 0 A.D. 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef INCLUDED_ISOUNDITEM_H
#define INCLUDED_ISOUNDITEM_H
#include "lib/config2.h"
#if CONFIG2_AUDIO
#include "lib/external_libraries/openal.h"
#include "maths/Vector3D.h"
#include "ps/CStr.h"
class ISoundItem
{
public:
virtual ~ISoundItem(){};
virtual bool GetLooping() = 0;
virtual void SetLooping(bool loop) = 0;
virtual bool IsPlaying() = 0;
virtual CStrW* GetName() = 0;
virtual bool IdleTask() = 0;
virtual bool IsFading() = 0;
virtual void Play() = 0;
virtual void Stop() = 0;
virtual void EnsurePlay() = 0;
virtual void PlayAsMusic() = 0;
virtual void PlayAsAmbient() = 0;
virtual void PlayAndDelete() = 0;
virtual void StopAndDelete() = 0;
virtual void FadeToIn(ALfloat newVolume, double fadeDuration) = 0;
virtual void FadeAndDelete(double fadeTime) = 0;
virtual void PlayLoop() = 0;
virtual void SetCone(ALfloat innerCone, ALfloat outerCone, ALfloat coneGain) = 0;
virtual void SetPitch(ALfloat pitch) = 0;
virtual void SetGain(ALfloat gain) = 0;
virtual void SetLocation(const CVector3D& position) = 0;
virtual void SetRollOff(ALfloat gain) = 0;
};
#endif // CONFIG2_AUDIO
#endif // INCLUDED_ISOUNDITEM_H