/** * \file source_music_channel.cpp * \brief CSourceMusicChannel * \date 2012-04-11 16:08GMT * \author Jan Boon (Kaetemi) * CSourceMusicChannel */ /* * Copyright (C) 2012 by authors * * This file is part of RYZOM CORE. * RYZOM CORE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * RYZOM CORE 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 * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public * License along with RYZOM CORE. If not, see * . */ #include "stdsound.h" #include // STL includes // NeL includes // #include #include // Project includes using namespace std; // using namespace NLMISC; namespace NLSOUND { CSourceMusicChannel::CSourceMusicChannel() : m_Source(NULL), m_Gain(1.0f) { } CSourceMusicChannel::~CSourceMusicChannel() { delete m_Source; m_Source = NULL; } bool CSourceMusicChannel::play(const std::string &filepath, bool async, bool loop) { if (m_Source) delete m_Source; m_Sound.setMusicFilePath(filepath, async, loop); m_Source = new CStreamFileSource(&m_Sound, false, NULL, NULL, NULL, NULL); m_Source->play(); return m_Source->isPlaying(); } void CSourceMusicChannel::stop() { if (m_Source) m_Source->stop(); } void CSourceMusicChannel::reset() { delete m_Source; m_Source = NULL; } void CSourceMusicChannel::pause() { if (m_Source) m_Source->pause(); } void CSourceMusicChannel::resume() { if (m_Source) m_Source->resume(); } bool CSourceMusicChannel::isEnded() { if (m_Source) return m_Source->isEnded(); return true; } bool CSourceMusicChannel::isLoadingAsync() { if (m_Source) return m_Source->isLoadingAsync(); return false; } float CSourceMusicChannel::getLength() { if (m_Source) return m_Source->getLength(); return 0.0f; } void CSourceMusicChannel::setVolume(float gain) { m_Gain = gain; if (m_Source) m_Source->setRelativeGain(gain); } } /* namespace NLSOUND */ /* end of file */