2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* audio_stream.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2021-01-01 19:13:46 +00:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00: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-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "audio_stream.h"
|
2020-01-26 10:24:14 +00:00
|
|
|
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/config/project_settings.h"
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/os/os.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-08-23 17:53:27 +00:00
|
|
|
void AudioStreamPlayback::start(float p_from_pos) {
|
|
|
|
if (GDVIRTUAL_CALL(_start, p_from_pos)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ERR_FAIL_MSG("AudioStreamPlayback::start unimplemented!");
|
|
|
|
}
|
|
|
|
void AudioStreamPlayback::stop() {
|
|
|
|
if (GDVIRTUAL_CALL(_stop)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ERR_FAIL_MSG("AudioStreamPlayback::stop unimplemented!");
|
|
|
|
}
|
|
|
|
bool AudioStreamPlayback::is_playing() const {
|
|
|
|
bool ret;
|
|
|
|
if (GDVIRTUAL_CALL(_is_playing, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ERR_FAIL_V_MSG(false, "AudioStreamPlayback::is_playing unimplemented!");
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamPlayback::get_loop_count() const {
|
|
|
|
int ret;
|
|
|
|
if (GDVIRTUAL_CALL(_get_loop_count, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayback::get_playback_position() const {
|
|
|
|
float ret;
|
|
|
|
if (GDVIRTUAL_CALL(_get_playback_position, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ERR_FAIL_V_MSG(0, "AudioStreamPlayback::get_playback_position unimplemented!");
|
|
|
|
}
|
|
|
|
void AudioStreamPlayback::seek(float p_time) {
|
|
|
|
if (GDVIRTUAL_CALL(_seek, p_time)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int AudioStreamPlayback::mix(AudioFrame *p_buffer, float p_rate_scale, int p_frames) {
|
|
|
|
int ret;
|
|
|
|
if (GDVIRTUAL_CALL(_mix, p_buffer, p_rate_scale, p_frames, ret)) {
|
|
|
|
return ret;
|
2021-08-23 17:53:27 +00:00
|
|
|
}
|
|
|
|
WARN_PRINT_ONCE("AudioStreamPlayback::mix unimplemented!");
|
2021-08-27 17:27:58 +00:00
|
|
|
return 0;
|
2021-08-23 17:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayback::_bind_methods() {
|
|
|
|
GDVIRTUAL_BIND(_start, "from_pos")
|
|
|
|
GDVIRTUAL_BIND(_stop)
|
|
|
|
GDVIRTUAL_BIND(_is_playing)
|
|
|
|
GDVIRTUAL_BIND(_get_loop_count)
|
|
|
|
GDVIRTUAL_BIND(_get_playback_position)
|
|
|
|
GDVIRTUAL_BIND(_seek, "position")
|
|
|
|
GDVIRTUAL_BIND(_mix, "buffer", "rate_scale", "frames");
|
|
|
|
}
|
2015-09-09 21:50:52 +00:00
|
|
|
//////////////////////////////
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-21 22:00:25 +00:00
|
|
|
void AudioStreamPlaybackResampled::_begin_resample() {
|
|
|
|
//clear cubic interpolation history
|
2017-03-05 15:44:50 +00:00
|
|
|
internal_buffer[0] = AudioFrame(0.0, 0.0);
|
|
|
|
internal_buffer[1] = AudioFrame(0.0, 0.0);
|
|
|
|
internal_buffer[2] = AudioFrame(0.0, 0.0);
|
|
|
|
internal_buffer[3] = AudioFrame(0.0, 0.0);
|
2017-01-21 22:00:25 +00:00
|
|
|
//mix buffer
|
2017-03-05 15:44:50 +00:00
|
|
|
_mix_internal(internal_buffer + 4, INTERNAL_BUFFER_LEN);
|
|
|
|
mix_offset = 0;
|
2017-01-21 22:00:25 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int AudioStreamPlaybackResampled::mix(AudioFrame *p_buffer, float p_rate_scale, int p_frames) {
|
2018-01-01 21:23:16 +00:00
|
|
|
float target_rate = AudioServer::get_singleton()->get_mix_rate();
|
2020-05-07 16:46:33 +00:00
|
|
|
float playback_speed_scale = AudioServer::get_singleton()->get_playback_speed_scale();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-05-07 16:46:33 +00:00
|
|
|
uint64_t mix_increment = uint64_t(((get_stream_sampling_rate() * p_rate_scale * playback_speed_scale) / double(target_rate)) * double(FP_LEN));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int mixed_frames_total = p_frames;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < p_frames; i++) {
|
2017-01-21 22:00:25 +00:00
|
|
|
uint32_t idx = CUBIC_INTERP_HISTORY + uint32_t(mix_offset >> FP_BITS);
|
2021-07-30 15:07:48 +00:00
|
|
|
//standard cubic interpolation (great quality/performance ratio)
|
|
|
|
//this used to be moved to a LUT for greater performance, but nowadays CPU speed is generally faster than memory.
|
2017-03-05 15:44:50 +00:00
|
|
|
float mu = (mix_offset & FP_MASK) / float(FP_LEN);
|
|
|
|
AudioFrame y0 = internal_buffer[idx - 3];
|
|
|
|
AudioFrame y1 = internal_buffer[idx - 2];
|
|
|
|
AudioFrame y2 = internal_buffer[idx - 1];
|
|
|
|
AudioFrame y3 = internal_buffer[idx - 0];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
if (idx <= internal_buffer_end && idx >= internal_buffer_end && mixed_frames_total == p_frames) {
|
|
|
|
// The internal buffer ends somewhere in this range, and we haven't yet recorded the number of good frames we have.
|
|
|
|
mixed_frames_total = i;
|
|
|
|
}
|
|
|
|
|
2021-07-30 15:07:48 +00:00
|
|
|
float mu2 = mu * mu;
|
2021-07-30 20:20:25 +00:00
|
|
|
AudioFrame a0 = 3 * y1 - 3 * y2 + y3 - y0;
|
|
|
|
AudioFrame a1 = 2 * y0 - 5 * y1 + 4 * y2 - y3;
|
2021-07-30 15:07:48 +00:00
|
|
|
AudioFrame a2 = y2 - y0;
|
2021-07-30 20:20:25 +00:00
|
|
|
AudioFrame a3 = 2 * y1;
|
2021-07-30 15:07:48 +00:00
|
|
|
|
2021-07-30 20:20:25 +00:00
|
|
|
p_buffer[i] = (a0 * mu * mu2 + a1 * mu2 + a2 * mu + a3) / 2;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
mix_offset += mix_increment;
|
2017-01-21 22:00:25 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while ((mix_offset >> FP_BITS) >= INTERNAL_BUFFER_LEN) {
|
|
|
|
internal_buffer[0] = internal_buffer[INTERNAL_BUFFER_LEN + 0];
|
|
|
|
internal_buffer[1] = internal_buffer[INTERNAL_BUFFER_LEN + 1];
|
|
|
|
internal_buffer[2] = internal_buffer[INTERNAL_BUFFER_LEN + 2];
|
|
|
|
internal_buffer[3] = internal_buffer[INTERNAL_BUFFER_LEN + 3];
|
2017-12-20 16:55:30 +00:00
|
|
|
if (is_playing()) {
|
2021-08-27 17:27:58 +00:00
|
|
|
int mixed_frames = _mix_internal(internal_buffer + 4, INTERNAL_BUFFER_LEN);
|
|
|
|
if (mixed_frames != INTERNAL_BUFFER_LEN) {
|
|
|
|
// internal_buffer[mixed_frames] is the first frame of silence.
|
|
|
|
internal_buffer_end = mixed_frames;
|
|
|
|
} else {
|
|
|
|
// The internal buffer does not contain the first frame of silence.
|
|
|
|
internal_buffer_end = -1;
|
|
|
|
}
|
2017-12-20 16:55:30 +00:00
|
|
|
} else {
|
|
|
|
//fill with silence, not playing
|
2019-02-12 20:10:08 +00:00
|
|
|
for (int j = 0; j < INTERNAL_BUFFER_LEN; ++j) {
|
|
|
|
internal_buffer[j + 4] = AudioFrame(0, 0);
|
2017-12-17 21:31:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
mix_offset -= (INTERNAL_BUFFER_LEN << FP_BITS);
|
2017-01-21 22:00:25 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-27 17:27:58 +00:00
|
|
|
return mixed_frames_total;
|
2017-01-21 22:00:25 +00:00
|
|
|
}
|
2018-06-07 15:46:14 +00:00
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
2021-08-23 17:53:27 +00:00
|
|
|
Ref<AudioStreamPlayback> AudioStream::instance_playback() {
|
|
|
|
Ref<AudioStreamPlayback> ret;
|
|
|
|
if (GDVIRTUAL_CALL(_instance_playback, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ERR_FAIL_V_MSG(Ref<AudioStreamPlayback>(), "Method must be implemented!");
|
|
|
|
}
|
|
|
|
String AudioStream::get_stream_name() const {
|
|
|
|
String ret;
|
|
|
|
if (GDVIRTUAL_CALL(_get_stream_name, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStream::get_length() const {
|
|
|
|
float ret;
|
|
|
|
if (GDVIRTUAL_CALL(_get_length, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-28 04:51:03 +00:00
|
|
|
bool AudioStream::is_monophonic() const {
|
|
|
|
bool ret;
|
|
|
|
if (GDVIRTUAL_CALL(_is_monophonic, ret)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:35:33 +00:00
|
|
|
void AudioStream::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("get_length"), &AudioStream::get_length);
|
2021-08-28 04:51:03 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("is_monophonic"), &AudioStream::is_monophonic);
|
2021-08-23 17:53:27 +00:00
|
|
|
GDVIRTUAL_BIND(_instance_playback);
|
|
|
|
GDVIRTUAL_BIND(_get_stream_name);
|
|
|
|
GDVIRTUAL_BIND(_get_length);
|
2021-08-28 04:51:03 +00:00
|
|
|
GDVIRTUAL_BIND(_is_monophonic);
|
2018-01-22 19:35:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-02-27 07:54:56 +00:00
|
|
|
Ref<AudioStreamPlayback> AudioStreamMicrophone::instance_playback() {
|
|
|
|
Ref<AudioStreamPlaybackMicrophone> playback;
|
2021-06-17 22:03:09 +00:00
|
|
|
playback.instantiate();
|
2018-02-27 07:54:56 +00:00
|
|
|
|
|
|
|
playbacks.insert(playback.ptr());
|
|
|
|
|
|
|
|
playback->microphone = Ref<AudioStreamMicrophone>((AudioStreamMicrophone *)this);
|
|
|
|
playback->active = false;
|
|
|
|
|
|
|
|
return playback;
|
|
|
|
}
|
|
|
|
|
|
|
|
String AudioStreamMicrophone::get_stream_name() const {
|
|
|
|
//if (audio_stream.is_valid()) {
|
|
|
|
//return "Random: " + audio_stream->get_name();
|
|
|
|
//}
|
|
|
|
return "Microphone";
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamMicrophone::get_length() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-28 04:51:03 +00:00
|
|
|
bool AudioStreamMicrophone::is_monophonic() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-02-27 07:54:56 +00:00
|
|
|
void AudioStreamMicrophone::_bind_methods() {
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamMicrophone::AudioStreamMicrophone() {
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int AudioStreamPlaybackMicrophone::_mix_internal(AudioFrame *p_buffer, int p_frames) {
|
2020-01-20 12:11:47 +00:00
|
|
|
AudioDriver::get_singleton()->lock();
|
2018-07-04 01:08:43 +00:00
|
|
|
|
2020-01-20 12:11:47 +00:00
|
|
|
Vector<int32_t> buf = AudioDriver::get_singleton()->get_input_buffer();
|
|
|
|
unsigned int input_size = AudioDriver::get_singleton()->get_input_size();
|
|
|
|
int mix_rate = AudioDriver::get_singleton()->get_mix_rate();
|
|
|
|
unsigned int playback_delay = MIN(((50 * mix_rate) / 1000) * 2, buf.size() >> 1);
|
2018-10-19 19:32:03 +00:00
|
|
|
#ifdef DEBUG_ENABLED
|
2020-01-20 12:11:47 +00:00
|
|
|
unsigned int input_position = AudioDriver::get_singleton()->get_input_position();
|
2018-10-19 19:32:03 +00:00
|
|
|
#endif
|
2018-02-27 07:54:56 +00:00
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int mixed_frames = p_frames;
|
|
|
|
|
2020-01-20 12:11:47 +00:00
|
|
|
if (playback_delay > input_size) {
|
2018-07-27 02:47:22 +00:00
|
|
|
for (int i = 0; i < p_frames; i++) {
|
|
|
|
p_buffer[i] = AudioFrame(0.0f, 0.0f);
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
2020-01-20 12:11:47 +00:00
|
|
|
input_ofs = 0;
|
2018-07-27 02:47:22 +00:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < p_frames; i++) {
|
2020-01-20 12:11:47 +00:00
|
|
|
if (input_size > input_ofs && (int)input_ofs < buf.size()) {
|
|
|
|
float l = (buf[input_ofs++] >> 16) / 32768.f;
|
|
|
|
if ((int)input_ofs >= buf.size()) {
|
|
|
|
input_ofs = 0;
|
2018-07-27 02:47:22 +00:00
|
|
|
}
|
2020-01-20 12:11:47 +00:00
|
|
|
float r = (buf[input_ofs++] >> 16) / 32768.f;
|
|
|
|
if ((int)input_ofs >= buf.size()) {
|
|
|
|
input_ofs = 0;
|
2018-07-27 02:47:22 +00:00
|
|
|
}
|
2018-07-04 01:08:43 +00:00
|
|
|
|
2018-07-27 02:47:22 +00:00
|
|
|
p_buffer[i] = AudioFrame(l, r);
|
|
|
|
} else {
|
2021-08-27 17:27:58 +00:00
|
|
|
if (mixed_frames == p_frames) {
|
|
|
|
mixed_frames = i;
|
|
|
|
}
|
2018-07-27 02:47:22 +00:00
|
|
|
p_buffer[i] = AudioFrame(0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
}
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
2018-07-04 01:08:43 +00:00
|
|
|
|
2018-10-19 19:32:03 +00:00
|
|
|
#ifdef DEBUG_ENABLED
|
2020-01-20 12:11:47 +00:00
|
|
|
if (input_ofs > input_position && (int)(input_ofs - input_position) < (p_frames * 2)) {
|
|
|
|
print_verbose(String(get_class_name()) + " buffer underrun: input_position=" + itos(input_position) + " input_ofs=" + itos(input_ofs) + " input_size=" + itos(input_size));
|
2018-10-19 19:32:03 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-01-20 12:11:47 +00:00
|
|
|
AudioDriver::get_singleton()->unlock();
|
2021-08-27 17:27:58 +00:00
|
|
|
|
|
|
|
return mixed_frames;
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int AudioStreamPlaybackMicrophone::mix(AudioFrame *p_buffer, float p_rate_scale, int p_frames) {
|
|
|
|
return AudioStreamPlaybackResampled::mix(p_buffer, p_rate_scale, p_frames);
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlaybackMicrophone::get_stream_sampling_rate() {
|
2018-07-04 01:08:43 +00:00
|
|
|
return AudioDriver::get_singleton()->get_mix_rate();
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlaybackMicrophone::start(float p_from_pos) {
|
2019-03-01 12:33:15 +00:00
|
|
|
if (active) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-17 16:44:49 +00:00
|
|
|
if (!GLOBAL_GET("audio/driver/enable_input")) {
|
2019-11-07 08:44:15 +00:00
|
|
|
WARN_PRINT("Need to enable Project settings > Audio > Enable Audio Input option to use capturing.");
|
2018-12-13 15:35:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-20 12:11:47 +00:00
|
|
|
input_ofs = 0;
|
2018-02-27 07:54:56 +00:00
|
|
|
|
2020-01-20 12:11:47 +00:00
|
|
|
if (AudioDriver::get_singleton()->capture_start() == OK) {
|
2019-03-01 12:33:15 +00:00
|
|
|
active = true;
|
|
|
|
_begin_resample();
|
|
|
|
}
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlaybackMicrophone::stop() {
|
2019-03-01 12:33:15 +00:00
|
|
|
if (active) {
|
2020-01-20 12:11:47 +00:00
|
|
|
AudioDriver::get_singleton()->capture_stop();
|
2019-03-01 12:33:15 +00:00
|
|
|
active = false;
|
|
|
|
}
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlaybackMicrophone::is_playing() const {
|
|
|
|
return active;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamPlaybackMicrophone::get_loop_count() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlaybackMicrophone::get_playback_position() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlaybackMicrophone::seek(float p_time) {
|
2019-06-26 13:08:25 +00:00
|
|
|
// Can't seek a microphone input
|
2018-02-27 07:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlaybackMicrophone::~AudioStreamPlaybackMicrophone() {
|
|
|
|
microphone->playbacks.erase(this);
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlaybackMicrophone::AudioStreamPlaybackMicrophone() {
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
void AudioStreamRandomPitch::set_audio_stream(const Ref<AudioStream> &p_audio_stream) {
|
|
|
|
audio_stream = p_audio_stream;
|
|
|
|
if (audio_stream.is_valid()) {
|
|
|
|
for (Set<AudioStreamPlaybackRandomPitch *>::Element *E = playbacks.front(); E; E = E->next()) {
|
|
|
|
E->get()->playback = audio_stream->instance_playback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<AudioStream> AudioStreamRandomPitch::get_audio_stream() const {
|
|
|
|
return audio_stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamRandomPitch::set_random_pitch(float p_pitch) {
|
2020-05-14 14:41:43 +00:00
|
|
|
if (p_pitch < 1) {
|
2017-07-15 04:23:10 +00:00
|
|
|
p_pitch = 1;
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-07-15 04:23:10 +00:00
|
|
|
random_pitch = p_pitch;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamRandomPitch::get_random_pitch() const {
|
|
|
|
return random_pitch;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<AudioStreamPlayback> AudioStreamRandomPitch::instance_playback() {
|
|
|
|
Ref<AudioStreamPlaybackRandomPitch> playback;
|
2021-06-17 22:03:09 +00:00
|
|
|
playback.instantiate();
|
2020-05-14 14:41:43 +00:00
|
|
|
if (audio_stream.is_valid()) {
|
2017-07-15 04:23:10 +00:00
|
|
|
playback->playback = audio_stream->instance_playback();
|
2020-05-14 14:41:43 +00:00
|
|
|
}
|
2017-07-15 04:23:10 +00:00
|
|
|
|
|
|
|
playbacks.insert(playback.ptr());
|
|
|
|
playback->random_pitch = Ref<AudioStreamRandomPitch>((AudioStreamRandomPitch *)this);
|
|
|
|
return playback;
|
|
|
|
}
|
|
|
|
|
|
|
|
String AudioStreamRandomPitch::get_stream_name() const {
|
|
|
|
if (audio_stream.is_valid()) {
|
|
|
|
return "Random: " + audio_stream->get_name();
|
|
|
|
}
|
|
|
|
return "RandomPitch";
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:35:33 +00:00
|
|
|
float AudioStreamRandomPitch::get_length() const {
|
|
|
|
if (audio_stream.is_valid()) {
|
|
|
|
return audio_stream->get_length();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-28 04:51:03 +00:00
|
|
|
bool AudioStreamRandomPitch::is_monophonic() const {
|
|
|
|
if (audio_stream.is_valid()) {
|
|
|
|
return audio_stream->is_monophonic();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true; // It doesn't really matter what we return here, but no sense instancing a many playbacks of a null stream.
|
|
|
|
}
|
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
void AudioStreamRandomPitch::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_audio_stream", "stream"), &AudioStreamRandomPitch::set_audio_stream);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_audio_stream"), &AudioStreamRandomPitch::get_audio_stream);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_random_pitch", "scale"), &AudioStreamRandomPitch::set_random_pitch);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_random_pitch"), &AudioStreamRandomPitch::get_random_pitch);
|
|
|
|
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "audio_stream", PROPERTY_HINT_RESOURCE_TYPE, "AudioStream"), "set_audio_stream", "get_audio_stream");
|
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
2020-02-24 18:20:53 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "random_pitch", PROPERTY_HINT_RANGE, "1,16,0.01"), "set_random_pitch", "get_random_pitch");
|
2017-07-15 04:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamRandomPitch::AudioStreamRandomPitch() {
|
|
|
|
random_pitch = 1.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlaybackRandomPitch::start(float p_from_pos) {
|
|
|
|
playing = playback;
|
|
|
|
float range_from = 1.0 / random_pitch->random_pitch;
|
|
|
|
float range_to = random_pitch->random_pitch;
|
|
|
|
|
|
|
|
pitch_scale = range_from + Math::randf() * (range_to - range_from);
|
|
|
|
|
|
|
|
if (playing.is_valid()) {
|
|
|
|
playing->start(p_from_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlaybackRandomPitch::stop() {
|
|
|
|
if (playing.is_valid()) {
|
|
|
|
playing->stop();
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
bool AudioStreamPlaybackRandomPitch::is_playing() const {
|
|
|
|
if (playing.is_valid()) {
|
|
|
|
return playing->is_playing();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamPlaybackRandomPitch::get_loop_count() const {
|
|
|
|
if (playing.is_valid()) {
|
|
|
|
return playing->get_loop_count();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-21 03:31:36 +00:00
|
|
|
float AudioStreamPlaybackRandomPitch::get_playback_position() const {
|
2017-07-15 04:23:10 +00:00
|
|
|
if (playing.is_valid()) {
|
2017-09-21 03:31:36 +00:00
|
|
|
return playing->get_playback_position();
|
2017-07-15 04:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-05-14 12:29:06 +00:00
|
|
|
|
2017-09-21 03:31:36 +00:00
|
|
|
void AudioStreamPlaybackRandomPitch::seek(float p_time) {
|
2017-07-15 04:23:10 +00:00
|
|
|
if (playing.is_valid()) {
|
2017-09-21 03:31:36 +00:00
|
|
|
playing->seek(p_time);
|
2017-07-15 04:23:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-27 17:27:58 +00:00
|
|
|
int AudioStreamPlaybackRandomPitch::mix(AudioFrame *p_buffer, float p_rate_scale, int p_frames) {
|
2017-07-15 04:23:10 +00:00
|
|
|
if (playing.is_valid()) {
|
2021-08-27 17:27:58 +00:00
|
|
|
return playing->mix(p_buffer, p_rate_scale * pitch_scale, p_frames);
|
2017-07-15 04:23:10 +00:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < p_frames; i++) {
|
2017-10-28 12:04:25 +00:00
|
|
|
p_buffer[i] = AudioFrame(0, 0);
|
2017-07-15 04:23:10 +00:00
|
|
|
}
|
2021-08-27 17:27:58 +00:00
|
|
|
return p_frames;
|
2017-07-15 04:23:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlaybackRandomPitch::~AudioStreamPlaybackRandomPitch() {
|
|
|
|
random_pitch->playbacks.erase(this);
|
|
|
|
}
|
2021-08-23 17:53:27 +00:00
|
|
|
/////////////////////////////////////////////
|