2019-06-11 15:31:23 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* audio_stream_generator.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2019-06-11 15:31:23 +02: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
#include "audio_stream_generator.h"
|
|
|
|
|
|
|
|
void AudioStreamGenerator::set_mix_rate(float p_mix_rate) {
|
|
|
|
mix_rate = p_mix_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamGenerator::get_mix_rate() const {
|
|
|
|
return mix_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGenerator::set_buffer_length(float p_seconds) {
|
|
|
|
buffer_len = p_seconds;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
float AudioStreamGenerator::get_buffer_length() const {
|
|
|
|
return buffer_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<AudioStreamPlayback> AudioStreamGenerator::instance_playback() {
|
|
|
|
Ref<AudioStreamGeneratorPlayback> playback;
|
2021-06-18 00:03:09 +02:00
|
|
|
playback.instantiate();
|
2019-04-10 17:57:03 +02:00
|
|
|
playback->generator = this;
|
|
|
|
int target_buffer_size = mix_rate * buffer_len;
|
|
|
|
playback->buffer.resize(nearest_shift(target_buffer_size));
|
|
|
|
playback->buffer.clear();
|
|
|
|
return playback;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
String AudioStreamGenerator::get_stream_name() const {
|
|
|
|
return "UserFeed";
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamGenerator::get_length() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGenerator::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_mix_rate", "hz"), &AudioStreamGenerator::set_mix_rate);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_mix_rate"), &AudioStreamGenerator::get_mix_rate);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_buffer_length", "seconds"), &AudioStreamGenerator::set_buffer_length);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_buffer_length"), &AudioStreamGenerator::get_buffer_length);
|
|
|
|
|
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 19:20:53 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "mix_rate", PROPERTY_HINT_RANGE, "20,192000,1"), "set_mix_rate", "get_mix_rate");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "buffer_length", PROPERTY_HINT_RANGE, "0.01,10,0.01"), "set_buffer_length", "get_buffer_length");
|
2019-04-10 17:57:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamGenerator::AudioStreamGenerator() {
|
|
|
|
mix_rate = 44100;
|
|
|
|
buffer_len = 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////
|
|
|
|
|
|
|
|
bool AudioStreamGeneratorPlayback::push_frame(const Vector2 &p_frame) {
|
|
|
|
if (buffer.space_left() < 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioFrame f = p_frame;
|
|
|
|
|
|
|
|
buffer.write(&f, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamGeneratorPlayback::can_push_buffer(int p_frames) const {
|
|
|
|
return buffer.space_left() >= p_frames;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2020-02-17 22:06:54 +01:00
|
|
|
bool AudioStreamGeneratorPlayback::push_buffer(const PackedVector2Array &p_frames) {
|
2019-04-10 17:57:03 +02:00
|
|
|
int to_write = p_frames.size();
|
|
|
|
if (buffer.space_left() < to_write) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-02-17 22:06:54 +01:00
|
|
|
const Vector2 *r = p_frames.ptr();
|
2019-04-10 17:57:03 +02:00
|
|
|
if (sizeof(real_t) == 4) {
|
|
|
|
//write directly
|
2020-02-17 22:06:54 +01:00
|
|
|
buffer.write((const AudioFrame *)r, to_write);
|
2019-04-10 17:57:03 +02:00
|
|
|
} else {
|
|
|
|
//convert from double
|
|
|
|
AudioFrame buf[2048];
|
|
|
|
int ofs = 0;
|
|
|
|
while (to_write) {
|
|
|
|
int w = MIN(to_write, 2048);
|
|
|
|
for (int i = 0; i < w; i++) {
|
|
|
|
buf[i] = r[i + ofs];
|
|
|
|
}
|
|
|
|
buffer.write(buf, w);
|
|
|
|
ofs += w;
|
|
|
|
to_write -= w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamGeneratorPlayback::get_frames_available() const {
|
|
|
|
return buffer.space_left();
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamGeneratorPlayback::get_skips() const {
|
|
|
|
return skips;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGeneratorPlayback::clear_buffer() {
|
|
|
|
ERR_FAIL_COND(active);
|
|
|
|
buffer.clear();
|
|
|
|
mixed = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGeneratorPlayback::_mix_internal(AudioFrame *p_buffer, int p_frames) {
|
|
|
|
int read_amount = buffer.data_left();
|
|
|
|
if (p_frames < read_amount) {
|
|
|
|
read_amount = p_frames;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer.read(p_buffer, read_amount);
|
|
|
|
|
|
|
|
if (read_amount < p_frames) {
|
|
|
|
//skipped, not ideal
|
|
|
|
for (int i = read_amount; i < p_frames; i++) {
|
|
|
|
p_buffer[i] = AudioFrame(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
skips++;
|
|
|
|
}
|
|
|
|
|
|
|
|
mixed += p_frames / generator->get_mix_rate();
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
float AudioStreamGeneratorPlayback::get_stream_sampling_rate() {
|
|
|
|
return generator->get_mix_rate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGeneratorPlayback::start(float p_from_pos) {
|
|
|
|
if (mixed == 0.0) {
|
|
|
|
_begin_resample();
|
|
|
|
}
|
|
|
|
skips = 0;
|
|
|
|
active = true;
|
|
|
|
mixed = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGeneratorPlayback::stop() {
|
|
|
|
active = false;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
bool AudioStreamGeneratorPlayback::is_playing() const {
|
|
|
|
return active; //always playing, can't be stopped
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamGeneratorPlayback::get_loop_count() const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamGeneratorPlayback::get_playback_position() const {
|
|
|
|
return mixed;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
void AudioStreamGeneratorPlayback::seek(float p_time) {
|
|
|
|
//no seek possible
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamGeneratorPlayback::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("push_frame", "frame"), &AudioStreamGeneratorPlayback::push_frame);
|
|
|
|
ClassDB::bind_method(D_METHOD("can_push_buffer", "amount"), &AudioStreamGeneratorPlayback::can_push_buffer);
|
|
|
|
ClassDB::bind_method(D_METHOD("push_buffer", "frames"), &AudioStreamGeneratorPlayback::push_buffer);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_frames_available"), &AudioStreamGeneratorPlayback::get_frames_available);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_skips"), &AudioStreamGeneratorPlayback::get_skips);
|
|
|
|
ClassDB::bind_method(D_METHOD("clear_buffer"), &AudioStreamGeneratorPlayback::clear_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamGeneratorPlayback::AudioStreamGeneratorPlayback() {
|
2020-04-02 01:20:12 +02:00
|
|
|
generator = nullptr;
|
2019-04-10 17:57:03 +02:00
|
|
|
skips = 0;
|
|
|
|
active = false;
|
|
|
|
mixed = 0;
|
|
|
|
}
|