2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* audio_driver_dummy.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "audio_driver_dummy.h"
|
|
|
|
|
|
|
|
#include "os/os.h"
|
2017-07-22 12:47:04 +02:00
|
|
|
#include "project_settings.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Error AudioDriverDummy::init() {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
active = false;
|
|
|
|
thread_exited = false;
|
|
|
|
exit_thread = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
samples_in = NULL;
|
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
mix_rate = DEFAULT_MIX_RATE;
|
2017-01-16 19:19:45 +01:00
|
|
|
speaker_mode = SPEAKER_MODE_STEREO;
|
2014-02-10 02:10:30 +01:00
|
|
|
channels = 2;
|
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
int latency = GLOBAL_DEF("audio/output_latency", DEFAULT_OUTPUT_LATENCY);
|
|
|
|
buffer_frames = closest_power_of_2(latency * mix_rate / 1000);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
samples_in = memnew_arr(int32_t, buffer_frames * channels);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
mutex = Mutex::create();
|
2014-02-10 02:10:30 +01:00
|
|
|
thread = Thread::create(AudioDriverDummy::thread_func, this);
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void AudioDriverDummy::thread_func(void *p_udata) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
AudioDriverDummy *ad = (AudioDriverDummy *)p_udata;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
uint64_t usdelay = (ad->buffer_frames / float(ad->mix_rate)) * 1000000;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
while (!ad->exit_thread) {
|
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
if (ad->active) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ad->lock();
|
|
|
|
|
2017-08-29 21:47:44 +02:00
|
|
|
ad->audio_server_process(ad->buffer_frames, ad->samples_in);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ad->unlock();
|
|
|
|
};
|
|
|
|
|
|
|
|
OS::get_singleton()->delay_usec(usdelay);
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ad->thread_exited = true;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void AudioDriverDummy::start() {
|
|
|
|
|
|
|
|
active = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
int AudioDriverDummy::get_mix_rate() const {
|
|
|
|
|
|
|
|
return mix_rate;
|
|
|
|
};
|
|
|
|
|
2017-01-15 20:06:14 +01:00
|
|
|
AudioDriver::SpeakerMode AudioDriverDummy::get_speaker_mode() const {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-16 19:19:45 +01:00
|
|
|
return speaker_mode;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2017-01-16 19:19:45 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void AudioDriverDummy::lock() {
|
|
|
|
|
|
|
|
if (!thread || !mutex)
|
|
|
|
return;
|
|
|
|
mutex->lock();
|
|
|
|
};
|
2017-01-16 19:19:45 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void AudioDriverDummy::unlock() {
|
|
|
|
|
|
|
|
if (!thread || !mutex)
|
|
|
|
return;
|
|
|
|
mutex->unlock();
|
|
|
|
};
|
|
|
|
|
|
|
|
void AudioDriverDummy::finish() {
|
|
|
|
|
|
|
|
if (!thread)
|
|
|
|
return;
|
|
|
|
|
|
|
|
exit_thread = true;
|
|
|
|
Thread::wait_to_finish(thread);
|
|
|
|
|
|
|
|
if (samples_in) {
|
|
|
|
memdelete_arr(samples_in);
|
|
|
|
};
|
|
|
|
|
|
|
|
memdelete(thread);
|
|
|
|
if (mutex)
|
|
|
|
memdelete(mutex);
|
|
|
|
thread = NULL;
|
|
|
|
};
|
|
|
|
|
|
|
|
AudioDriverDummy::AudioDriverDummy() {
|
|
|
|
|
|
|
|
mutex = NULL;
|
2017-03-05 16:44:50 +01:00
|
|
|
thread = NULL;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
AudioDriverDummy::~AudioDriverDummy(){
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
};
|