All these files were removed since accidental commit, revert and merge in 2.8.ea31f0ac3b+0a4e170c28+11f9a23a28+7b27b10fa6
95 lines
2.4 KiB
C++
95 lines
2.4 KiB
C++
/*******************************************************************************
|
|
* Copyright 2015-2016 Juan Francisco Crespo Galán
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
******************************************************************************/
|
|
|
|
#include "Exception.h"
|
|
|
|
#include <cassert>
|
|
|
|
using namespace aud;
|
|
|
|
#define AUD_CAPI_IMPLEMENTATION
|
|
#include "AUD_PlaybackManager.h"
|
|
|
|
AUD_API AUD_PlaybackManager* AUD_PlaybackManager_create(AUD_Device* device)
|
|
{
|
|
assert(device);
|
|
|
|
try
|
|
{
|
|
return new AUD_PlaybackManager(new PlaybackManager(*device));
|
|
}
|
|
catch(Exception&)
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
AUD_API void AUD_PlaybackManager_free(AUD_PlaybackManager* manager)
|
|
{
|
|
assert(manager);
|
|
delete manager;
|
|
}
|
|
|
|
AUD_API void AUD_PlaybackManager_play(AUD_PlaybackManager* manager, AUD_Sound* sound, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
assert(sound);
|
|
|
|
(*manager)->play(*sound, catKey);
|
|
}
|
|
|
|
AUD_API int AUD_PlaybackManager_resume(AUD_PlaybackManager* manager, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->resume(catKey);
|
|
}
|
|
|
|
AUD_API int AUD_PlaybackManager_pause(AUD_PlaybackManager* manager, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->pause(catKey);
|
|
}
|
|
|
|
AUD_API unsigned int AUD_PlaybackManager_addCategory(AUD_PlaybackManager* manager, float volume)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->addCategory(volume);
|
|
}
|
|
|
|
AUD_API float AUD_PlaybackManager_getVolume(AUD_PlaybackManager* manager, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->getVolume(catKey);
|
|
}
|
|
|
|
AUD_API int AUD_PlaybackManager_setVolume(AUD_PlaybackManager* manager, float volume, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->setVolume(volume, catKey);
|
|
}
|
|
|
|
AUD_API int AUD_PlaybackManager_stop(AUD_PlaybackManager* manager, unsigned int catKey)
|
|
{
|
|
assert(manager);
|
|
return (*manager)->stop(catKey);
|
|
}
|
|
|
|
AUD_API void AUD_PlaybackManager_clean(AUD_PlaybackManager* manager)
|
|
{
|
|
assert(manager);
|
|
(*manager)->clean();
|
|
}
|