From 781dd5edb5b74ecb417a16c28eab31483fc3d11a Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Thu, 1 Feb 2018 09:11:04 -0200 Subject: Fix audaspace mess in 2.8 All these files were removed since accidental commit, revert and merge in 2.8. ea31f0ac3b877e + 0a4e170c28cec + 11f9a23a286c17f + 7b27b10fa6a6 --- .../audaspace/bindings/C/AUD_PlaybackManager.cpp | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 extern/audaspace/bindings/C/AUD_PlaybackManager.cpp (limited to 'extern/audaspace/bindings/C/AUD_PlaybackManager.cpp') diff --git a/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp b/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp new file mode 100644 index 00000000000..69ecb0987e1 --- /dev/null +++ b/extern/audaspace/bindings/C/AUD_PlaybackManager.cpp @@ -0,0 +1,94 @@ +/******************************************************************************* +* 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 + +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(); +} -- cgit v1.2.3