2018-01-05 00:50:27 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* audio_stream_player_3d.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). */
|
2018-01-05 00:50:27 +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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
#include "audio_stream_player_3d.h"
|
2020-03-27 16:04:01 +01:00
|
|
|
|
2020-03-26 22:49:16 +01:00
|
|
|
#include "scene/3d/area_3d.h"
|
|
|
|
#include "scene/3d/camera_3d.h"
|
|
|
|
#include "scene/3d/listener_3d.h"
|
2021-08-13 01:05:59 +02:00
|
|
|
#include "scene/main/viewport.h"
|
2019-01-16 23:41:36 +01:00
|
|
|
|
2019-07-01 22:35:07 +02:00
|
|
|
// Based on "A Novel Multichannel Panning Method for Standard and Arbitrary Loudspeaker Configurations" by Ramy Sadek and Chris Kyriakakis (2004)
|
|
|
|
// Speaker-Placement Correction Amplitude Panning (SPCAP)
|
|
|
|
class Spcap {
|
|
|
|
private:
|
|
|
|
struct Speaker {
|
|
|
|
Vector3 direction;
|
2021-02-07 22:29:31 +01:00
|
|
|
real_t effective_number_of_speakers = 0; // precalculated
|
|
|
|
mutable real_t squared_gain = 0; // temporary
|
2019-07-01 22:35:07 +02:00
|
|
|
};
|
|
|
|
|
2020-02-17 22:06:54 +01:00
|
|
|
Vector<Speaker> speakers;
|
2019-07-01 22:35:07 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
Spcap(unsigned int speaker_count, const Vector3 *speaker_directions) {
|
|
|
|
this->speakers.resize(speaker_count);
|
2020-02-17 22:06:54 +01:00
|
|
|
Speaker *w = this->speakers.ptrw();
|
2019-07-01 22:35:07 +02:00
|
|
|
for (unsigned int speaker_num = 0; speaker_num < speaker_count; speaker_num++) {
|
|
|
|
w[speaker_num].direction = speaker_directions[speaker_num];
|
|
|
|
w[speaker_num].squared_gain = 0.0;
|
|
|
|
w[speaker_num].effective_number_of_speakers = 0.0;
|
|
|
|
for (unsigned int other_speaker_num = 0; other_speaker_num < speaker_count; other_speaker_num++) {
|
|
|
|
w[speaker_num].effective_number_of_speakers += 0.5 * (1.0 + w[speaker_num].direction.dot(w[other_speaker_num].direction));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int get_speaker_count() const {
|
|
|
|
return (unsigned int)this->speakers.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 get_speaker_direction(unsigned int index) const {
|
2020-02-17 22:06:54 +01:00
|
|
|
return this->speakers.ptr()[index].direction;
|
2019-07-01 22:35:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void calculate(const Vector3 &source_direction, real_t tightness, unsigned int volume_count, real_t *volumes) const {
|
2020-02-17 22:06:54 +01:00
|
|
|
const Speaker *r = this->speakers.ptr();
|
2019-07-01 22:35:07 +02:00
|
|
|
real_t sum_squared_gains = 0.0;
|
|
|
|
for (unsigned int speaker_num = 0; speaker_num < (unsigned int)this->speakers.size(); speaker_num++) {
|
|
|
|
real_t initial_gain = 0.5 * powf(1.0 + r[speaker_num].direction.dot(source_direction), tightness) / r[speaker_num].effective_number_of_speakers;
|
|
|
|
r[speaker_num].squared_gain = initial_gain * initial_gain;
|
|
|
|
sum_squared_gains += r[speaker_num].squared_gain;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int speaker_num = 0; speaker_num < MIN(volume_count, (unsigned int)this->speakers.size()); speaker_num++) {
|
|
|
|
volumes[speaker_num] = sqrtf(r[speaker_num].squared_gain / sum_squared_gains);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//TODO: hardcoded main speaker directions for 2, 3.1, 5.1 and 7.1 setups - these are simplified and could also be made configurable
|
|
|
|
static const Vector3 speaker_directions[7] = {
|
|
|
|
Vector3(-1.0, 0.0, -1.0).normalized(), // front-left
|
|
|
|
Vector3(1.0, 0.0, -1.0).normalized(), // front-right
|
|
|
|
Vector3(0.0, 0.0, -1.0).normalized(), // center
|
|
|
|
Vector3(-1.0, 0.0, 1.0).normalized(), // rear-left
|
|
|
|
Vector3(1.0, 0.0, 1.0).normalized(), // rear-right
|
|
|
|
Vector3(-1.0, 0.0, 0.0).normalized(), // side-left
|
|
|
|
Vector3(1.0, 0.0, 0.0).normalized(), // side-right
|
|
|
|
};
|
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
void AudioStreamPlayer3D::_calc_output_vol(const Vector3 &source_dir, real_t tightness, Vector<AudioFrame> &output) {
|
2020-03-27 16:04:01 +01:00
|
|
|
unsigned int speaker_count = 0; // only main speakers (no LFE)
|
2019-07-01 22:35:07 +02:00
|
|
|
switch (AudioServer::get_singleton()->get_speaker_mode()) {
|
2020-02-22 20:47:50 +01:00
|
|
|
case AudioServer::SPEAKER_MODE_STEREO:
|
|
|
|
speaker_count = 2;
|
|
|
|
break;
|
|
|
|
case AudioServer::SPEAKER_SURROUND_31:
|
|
|
|
speaker_count = 3;
|
|
|
|
break;
|
|
|
|
case AudioServer::SPEAKER_SURROUND_51:
|
|
|
|
speaker_count = 5;
|
|
|
|
break;
|
|
|
|
case AudioServer::SPEAKER_SURROUND_71:
|
|
|
|
speaker_count = 7;
|
|
|
|
break;
|
2019-07-01 22:35:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Spcap spcap(speaker_count, speaker_directions); //TODO: should only be created/recreated once the speaker mode / speaker positions changes
|
|
|
|
real_t volumes[7];
|
|
|
|
spcap.calculate(source_dir, tightness, speaker_count, volumes);
|
|
|
|
|
|
|
|
switch (AudioServer::get_singleton()->get_speaker_mode()) {
|
|
|
|
case AudioServer::SPEAKER_SURROUND_71:
|
2021-08-27 19:28:23 +02:00
|
|
|
output.write[3].l = volumes[5]; // side-left
|
|
|
|
output.write[3].r = volumes[6]; // side-right
|
2020-02-22 20:47:50 +01:00
|
|
|
[[fallthrough]];
|
2019-07-01 22:35:07 +02:00
|
|
|
case AudioServer::SPEAKER_SURROUND_51:
|
2021-08-27 19:28:23 +02:00
|
|
|
output.write[2].l = volumes[3]; // rear-left
|
|
|
|
output.write[2].r = volumes[4]; // rear-right
|
2020-02-22 20:47:50 +01:00
|
|
|
[[fallthrough]];
|
2019-07-01 22:35:07 +02:00
|
|
|
case AudioServer::SPEAKER_SURROUND_31:
|
2021-08-27 19:28:23 +02:00
|
|
|
output.write[1].r = 1.0; // LFE - always full power
|
|
|
|
output.write[1].l = volumes[2]; // center
|
2020-02-22 20:47:50 +01:00
|
|
|
[[fallthrough]];
|
2019-07-01 22:35:07 +02:00
|
|
|
case AudioServer::SPEAKER_MODE_STEREO:
|
2021-08-27 19:28:23 +02:00
|
|
|
output.write[0].r = volumes[1]; // front-right
|
|
|
|
output.write[0].l = volumes[0]; // front-left
|
2020-02-22 20:47:50 +01:00
|
|
|
break;
|
2019-07-01 22:35:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
void AudioStreamPlayer3D::_calc_reverb_vol(Area3D *area, Vector3 listener_area_pos, Vector<AudioFrame> direct_path_vol, Vector<AudioFrame> &reverb_vol) {
|
|
|
|
reverb_vol.resize(4);
|
|
|
|
reverb_vol.write[0] = AudioFrame(0, 0);
|
|
|
|
reverb_vol.write[1] = AudioFrame(0, 0);
|
|
|
|
reverb_vol.write[2] = AudioFrame(0, 0);
|
|
|
|
reverb_vol.write[3] = AudioFrame(0, 0);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
float uniformity = area->get_reverb_uniformity();
|
|
|
|
float area_send = area->get_reverb_amount();
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (uniformity > 0.0) {
|
|
|
|
float distance = listener_area_pos.length();
|
|
|
|
float attenuation = Math::db2linear(_get_attenuation_db(distance));
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
// Determine the fraction of sound that would come from each speaker if they were all driven uniformly.
|
|
|
|
float center_val[3] = { 0.5f, 0.25f, 0.16666f };
|
|
|
|
int channel_count = AudioServer::get_singleton()->get_channel_count();
|
|
|
|
AudioFrame center_frame(center_val[channel_count - 1], center_val[channel_count - 1]);
|
2018-07-09 02:30:26 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (attenuation < 1.0) {
|
|
|
|
//pan the uniform sound
|
|
|
|
Vector3 rev_pos = listener_area_pos;
|
|
|
|
rev_pos.y = 0;
|
|
|
|
rev_pos.normalize();
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (channel_count >= 1) {
|
|
|
|
// Stereo pair
|
|
|
|
float c = rev_pos.x * 0.5 + 0.5;
|
|
|
|
reverb_vol.write[0].l = 1.0 - c;
|
|
|
|
reverb_vol.write[0].r = c;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (channel_count >= 3) {
|
|
|
|
// Center pair + Side pair
|
|
|
|
float xl = Vector3(-1, 0, -1).normalized().dot(rev_pos) * 0.5 + 0.5;
|
|
|
|
float xr = Vector3(1, 0, -1).normalized().dot(rev_pos) * 0.5 + 0.5;
|
2019-06-26 15:08:25 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
reverb_vol.write[1].l = xl;
|
|
|
|
reverb_vol.write[1].r = xr;
|
|
|
|
reverb_vol.write[2].l = 1.0 - xr;
|
|
|
|
reverb_vol.write[2].r = 1.0 - xl;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2018-05-27 20:29:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (channel_count >= 4) {
|
|
|
|
// Rear pair
|
|
|
|
// FIXME: Not sure what math should be done here
|
|
|
|
float c = rev_pos.x * 0.5 + 0.5;
|
|
|
|
reverb_vol.write[3].l = 1.0 - c;
|
|
|
|
reverb_vol.write[3].r = c;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
for (int i = 0; i < channel_count; i++) {
|
|
|
|
reverb_vol.write[i] = reverb_vol[i].lerp(center_frame, attenuation);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < channel_count; i++) {
|
|
|
|
reverb_vol.write[i] = center_frame;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
for (int i = 0; i < channel_count; i++) {
|
|
|
|
reverb_vol.write[i] = direct_path_vol[i].lerp(reverb_vol[i] * attenuation, uniformity);
|
|
|
|
reverb_vol.write[i] *= area_send;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
} else {
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
reverb_vol.write[i] = direct_path_vol[i] * area_send;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayer3D::_get_attenuation_db(float p_distance) const {
|
2017-09-01 22:33:39 +02:00
|
|
|
float att = 0;
|
2017-07-15 06:23:10 +02:00
|
|
|
switch (attenuation_model) {
|
|
|
|
case ATTENUATION_INVERSE_DISTANCE: {
|
2019-01-16 23:41:36 +01:00
|
|
|
att = Math::linear2db(1.0 / ((p_distance / unit_size) + CMP_EPSILON));
|
2017-07-15 06:23:10 +02:00
|
|
|
} break;
|
|
|
|
case ATTENUATION_INVERSE_SQUARE_DISTANCE: {
|
|
|
|
float d = (p_distance / unit_size);
|
|
|
|
d *= d;
|
2019-01-16 23:41:36 +01:00
|
|
|
att = Math::linear2db(1.0 / (d + CMP_EPSILON));
|
2017-07-15 06:23:10 +02:00
|
|
|
} break;
|
|
|
|
case ATTENUATION_LOGARITHMIC: {
|
2019-01-16 23:41:36 +01:00
|
|
|
att = -20 * Math::log(p_distance / unit_size + CMP_EPSILON);
|
2017-07-15 06:23:10 +02:00
|
|
|
} break;
|
2020-05-10 13:00:47 +02:00
|
|
|
case ATTENUATION_DISABLED:
|
|
|
|
break;
|
2017-09-01 22:33:39 +02:00
|
|
|
default: {
|
|
|
|
ERR_PRINT("Unknown attenuation type");
|
|
|
|
break;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
att += unit_db;
|
|
|
|
if (att > max_db) {
|
|
|
|
att = max_db;
|
|
|
|
}
|
|
|
|
|
|
|
|
return att;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::_notification(int p_what) {
|
|
|
|
if (p_what == NOTIFICATION_ENTER_TREE) {
|
|
|
|
velocity_tracker->reset(get_global_transform().origin);
|
2021-08-27 19:28:23 +02:00
|
|
|
AudioServer::get_singleton()->add_listener_changed_callback(_listener_changed_cb, this);
|
2017-08-19 01:02:56 +02:00
|
|
|
if (autoplay && !Engine::get_singleton()->is_editor_hint()) {
|
2017-07-15 06:23:10 +02:00
|
|
|
play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what == NOTIFICATION_EXIT_TREE) {
|
2021-08-27 19:28:23 +02:00
|
|
|
stop();
|
|
|
|
AudioServer::get_singleton()->remove_listener_changed_callback(_listener_changed_cb, this);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2018-05-27 20:29:10 +02:00
|
|
|
|
|
|
|
if (p_what == NOTIFICATION_PAUSED) {
|
|
|
|
if (!can_process()) {
|
|
|
|
// Node can't process so we start fading out to silence
|
|
|
|
set_stream_paused(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what == NOTIFICATION_UNPAUSED) {
|
|
|
|
set_stream_paused(false);
|
|
|
|
}
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
if (p_what == NOTIFICATION_TRANSFORM_CHANGED) {
|
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
velocity_tracker->update_position(get_global_transform().origin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-30 16:19:07 +02:00
|
|
|
if (p_what == NOTIFICATION_INTERNAL_PHYSICS_PROCESS) {
|
2017-07-15 06:23:10 +02:00
|
|
|
//update anything related to position first, if possible of course
|
2021-08-28 06:51:03 +02:00
|
|
|
Vector<AudioFrame> volume_vector;
|
|
|
|
if (setplay.get() > 0 || (active.is_set() && last_mix_count != AudioServer::get_singleton()->get_mix_count())) {
|
|
|
|
volume_vector = _update_panning();
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
if (setplay.get() >= 0 && stream.is_valid()) {
|
2021-08-27 19:28:23 +02:00
|
|
|
active.set();
|
2021-08-28 06:51:03 +02:00
|
|
|
Ref<AudioStreamPlayback> new_playback = stream->instance_playback();
|
|
|
|
ERR_FAIL_COND_MSG(new_playback.is_null(), "Failed to instantiate playback.");
|
|
|
|
Map<StringName, Vector<AudioFrame>> bus_map;
|
|
|
|
bus_map[_get_actual_bus()] = volume_vector;
|
|
|
|
AudioServer::get_singleton()->start_playback_stream(new_playback, bus_map, setplay.get(), linear_attenuation, attenuation_filter_cutoff_hz, actual_pitch_scale);
|
|
|
|
stream_playbacks.push_back(new_playback);
|
2021-08-27 19:28:23 +02:00
|
|
|
setplay.set(-1);
|
|
|
|
}
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
if (!stream_playbacks.is_empty() && active.is_set()) {
|
|
|
|
// Stop playing if no longer active.
|
|
|
|
Vector<Ref<AudioStreamPlayback>> playbacks_to_remove;
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
if (playback.is_valid() && !AudioServer::get_singleton()->is_playback_active(playback) && !AudioServer::get_singleton()->is_playback_paused(playback)) {
|
|
|
|
emit_signal(SNAME("finished"));
|
|
|
|
playbacks_to_remove.push_back(playback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Now go through and remove playbacks that have finished. Removing elements from a Vector in a range based for is asking for trouble.
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : playbacks_to_remove) {
|
|
|
|
stream_playbacks.erase(playback);
|
|
|
|
}
|
|
|
|
if (!playbacks_to_remove.is_empty() && stream_playbacks.is_empty()) {
|
|
|
|
// This node is no longer actively playing audio.
|
|
|
|
active.clear();
|
|
|
|
set_physics_process_internal(false);
|
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
while (stream_playbacks.size() > max_polyphony) {
|
|
|
|
AudioServer::get_singleton()->stop_playback_stream(stream_playbacks[0]);
|
|
|
|
stream_playbacks.remove(0);
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Area3D *AudioStreamPlayer3D::_get_overriding_area() {
|
|
|
|
//check if any area is diverting sound into a bus
|
|
|
|
Ref<World3D> world_3d = get_world_3d();
|
|
|
|
ERR_FAIL_COND_V(world_3d.is_null(), nullptr);
|
|
|
|
|
|
|
|
Vector3 global_pos = get_global_transform().origin;
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
PhysicsDirectSpaceState3D *space_state = PhysicsServer3D::get_singleton()->space_get_direct_state(world_3d->get_space());
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
PhysicsDirectSpaceState3D::ShapeResult sr[MAX_INTERSECT_AREAS];
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
int areas = space_state->intersect_point(global_pos, sr, MAX_INTERSECT_AREAS, Set<RID>(), area_mask, false, true);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
for (int i = 0; i < areas; i++) {
|
|
|
|
if (!sr[i].collider) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Area3D *tarea = Object::cast_to<Area3D>(sr[i].collider);
|
|
|
|
if (!tarea) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tarea->is_overriding_audio_bus() && !tarea->is_using_reverb_bus()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tarea;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
StringName AudioStreamPlayer3D::_get_actual_bus() {
|
|
|
|
Area3D *overriding_area = _get_overriding_area();
|
|
|
|
if (overriding_area && overriding_area->is_overriding_audio_bus() && !overriding_area->is_using_reverb_bus()) {
|
|
|
|
return overriding_area->get_audio_bus_name();
|
|
|
|
}
|
|
|
|
return bus;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Vector<AudioFrame> AudioStreamPlayer3D::_update_panning() {
|
|
|
|
Vector<AudioFrame> output_volume_vector;
|
|
|
|
output_volume_vector.resize(4);
|
|
|
|
for (AudioFrame &frame : output_volume_vector) {
|
|
|
|
frame = AudioFrame(0, 0);
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
if (!active.is_set() || stream.is_null()) {
|
|
|
|
return output_volume_vector;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Vector3 linear_velocity;
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
//compute linear velocity for doppler
|
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
linear_velocity = velocity_tracker->get_tracked_linear_velocity();
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Vector3 global_pos = get_global_transform().origin;
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Ref<World3D> world_3d = get_world_3d();
|
|
|
|
ERR_FAIL_COND_V(world_3d.is_null(), output_volume_vector);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Set<Camera3D *> cameras = world_3d->get_cameras();
|
|
|
|
cameras.insert(get_viewport()->get_camera_3d());
|
|
|
|
|
|
|
|
PhysicsDirectSpaceState3D *space_state = PhysicsServer3D::get_singleton()->space_get_direct_state(world_3d->get_space());
|
|
|
|
|
|
|
|
for (Camera3D *camera : cameras) {
|
|
|
|
Viewport *vp = camera->get_viewport();
|
|
|
|
if (!vp->is_audio_listener_3d()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool listener_is_camera = true;
|
|
|
|
Node3D *listener_node = camera;
|
|
|
|
|
|
|
|
Listener3D *listener = vp->get_listener_3d();
|
|
|
|
if (listener) {
|
|
|
|
listener_node = listener;
|
|
|
|
listener_is_camera = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 local_pos = listener_node->get_global_transform().orthonormalized().affine_inverse().xform(global_pos);
|
|
|
|
|
|
|
|
float dist = local_pos.length();
|
|
|
|
|
|
|
|
Vector3 area_sound_pos;
|
|
|
|
Vector3 listener_area_pos;
|
|
|
|
|
|
|
|
Area3D *area = _get_overriding_area();
|
|
|
|
|
|
|
|
if (area && area->is_using_reverb_bus() && area->get_reverb_uniformity() > 0) {
|
|
|
|
area_sound_pos = space_state->get_closest_point_to_object_volume(area->get_rid(), listener_node->get_global_transform().origin);
|
|
|
|
listener_area_pos = listener_node->get_global_transform().affine_inverse().xform(area_sound_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_distance > 0) {
|
|
|
|
float total_max = max_distance;
|
|
|
|
|
|
|
|
if (area && area->is_using_reverb_bus() && area->get_reverb_uniformity() > 0) {
|
|
|
|
total_max = MAX(total_max, listener_area_pos.length());
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
if (total_max > max_distance) {
|
|
|
|
continue; //can't hear this sound in this listener
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float multiplier = Math::db2linear(_get_attenuation_db(dist));
|
|
|
|
if (max_distance > 0) {
|
|
|
|
multiplier *= MAX(0, 1.0 - (dist / max_distance));
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
float db_att = (1.0 - MIN(1.0, multiplier)) * attenuation_filter_db;
|
|
|
|
|
|
|
|
if (emission_angle_enabled) {
|
|
|
|
Vector3 listenertopos = global_pos - listener_node->get_global_transform().origin;
|
|
|
|
float c = listenertopos.normalized().dot(get_global_transform().basis.get_axis(2).normalized()); //it's z negative
|
|
|
|
float angle = Math::rad2deg(Math::acos(c));
|
|
|
|
if (angle > emission_angle) {
|
|
|
|
db_att -= -emission_angle_filter_attenuation_db;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
linear_attenuation = Math::db2linear(db_att);
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
AudioServer::get_singleton()->set_playback_highshelf_params(playback, linear_attenuation, attenuation_filter_cutoff_hz);
|
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
//TODO: The lower the second parameter (tightness) the more the sound will "enclose" the listener (more undirected / playing from
|
|
|
|
// speakers not facing the source) - this could be made distance dependent.
|
|
|
|
_calc_output_vol(local_pos.normalized(), 4.0, output_volume_vector);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
for (unsigned int k = 0; k < 4; k++) {
|
|
|
|
output_volume_vector.write[k] = multiplier * output_volume_vector[k];
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
Map<StringName, Vector<AudioFrame>> bus_volumes;
|
|
|
|
if (area) {
|
|
|
|
if (area->is_overriding_audio_bus()) {
|
|
|
|
//override audio bus
|
|
|
|
bus_volumes[area->get_audio_bus_name()] = output_volume_vector;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (area->is_using_reverb_bus()) {
|
|
|
|
StringName reverb_bus_name = area->get_reverb_bus();
|
|
|
|
Vector<AudioFrame> reverb_vol;
|
|
|
|
_calc_reverb_vol(area, listener_area_pos, output_volume_vector, reverb_vol);
|
|
|
|
bus_volumes[reverb_bus_name] = reverb_vol;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bus_volumes[bus] = output_volume_vector;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-28 06:51:03 +02:00
|
|
|
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
AudioServer::get_singleton()->set_playback_bus_volumes_linear(playback, bus_volumes);
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2021-08-27 19:28:23 +02:00
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
Vector3 listener_velocity;
|
|
|
|
|
|
|
|
if (listener_is_camera) {
|
|
|
|
listener_velocity = camera->get_doppler_tracked_velocity();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 local_velocity = listener_node->get_global_transform().orthonormalized().basis.xform_inv(linear_velocity - listener_velocity);
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
if (local_velocity != Vector3()) {
|
2021-08-27 19:28:23 +02:00
|
|
|
float approaching = local_pos.normalized().dot(local_velocity.normalized());
|
|
|
|
float velocity = local_velocity.length();
|
|
|
|
float speed_of_sound = 343.0;
|
|
|
|
|
|
|
|
float doppler_pitch_scale = pitch_scale * speed_of_sound / (speed_of_sound + velocity * approaching);
|
|
|
|
doppler_pitch_scale = CLAMP(doppler_pitch_scale, (1 / 8.0), 8.0); //avoid crazy stuff
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
actual_pitch_scale = doppler_pitch_scale;
|
|
|
|
} else {
|
|
|
|
actual_pitch_scale = pitch_scale;
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
|
|
|
} else {
|
2021-08-28 06:51:03 +02:00
|
|
|
actual_pitch_scale = pitch_scale;
|
|
|
|
}
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
AudioServer::get_singleton()->set_playback_pitch_scale(playback, actual_pitch_scale);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
return output_volume_vector;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_stream(Ref<AudioStream> p_stream) {
|
2021-08-28 06:51:03 +02:00
|
|
|
stop();
|
|
|
|
stream = p_stream;
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Ref<AudioStream> AudioStreamPlayer3D::get_stream() const {
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_unit_db(float p_volume) {
|
|
|
|
unit_db = p_volume;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
float AudioStreamPlayer3D::get_unit_db() const {
|
|
|
|
return unit_db;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_unit_size(float p_volume) {
|
|
|
|
unit_size = p_volume;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
float AudioStreamPlayer3D::get_unit_size() const {
|
|
|
|
return unit_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_max_db(float p_boost) {
|
|
|
|
max_db = p_boost;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
float AudioStreamPlayer3D::get_max_db() const {
|
|
|
|
return max_db;
|
|
|
|
}
|
|
|
|
|
2018-01-01 22:23:16 +01:00
|
|
|
void AudioStreamPlayer3D::set_pitch_scale(float p_pitch_scale) {
|
2018-08-20 10:25:48 +02:00
|
|
|
ERR_FAIL_COND(p_pitch_scale <= 0.0);
|
2018-01-01 22:23:16 +01:00
|
|
|
pitch_scale = p_pitch_scale;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2018-01-01 22:23:16 +01:00
|
|
|
float AudioStreamPlayer3D::get_pitch_scale() const {
|
|
|
|
return pitch_scale;
|
|
|
|
}
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
void AudioStreamPlayer3D::play(float p_from_pos) {
|
2021-08-28 06:51:03 +02:00
|
|
|
if (stream.is_null()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ERR_FAIL_COND_MSG(!is_inside_tree(), "Playback can only happen when a node is inside the scene tree");
|
|
|
|
if (stream->is_monophonic() && is_playing()) {
|
|
|
|
stop();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-28 06:51:03 +02:00
|
|
|
setplay.set(p_from_pos);
|
|
|
|
active.set();
|
|
|
|
set_physics_process_internal(true);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::seek(float p_seconds) {
|
2021-08-28 06:51:03 +02:00
|
|
|
stop();
|
|
|
|
play(p_seconds);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::stop() {
|
2021-08-28 06:51:03 +02:00
|
|
|
setplay.set(-1);
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
AudioServer::get_singleton()->stop_playback_stream(playback);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2021-08-28 06:51:03 +02:00
|
|
|
stream_playbacks.clear();
|
|
|
|
active.clear();
|
|
|
|
set_physics_process_internal(false);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlayer3D::is_playing() const {
|
2021-08-28 06:51:03 +02:00
|
|
|
for (const Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
if (AudioServer::get_singleton()->is_playback_active(playback)) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-21 05:31:36 +02:00
|
|
|
float AudioStreamPlayer3D::get_playback_position() {
|
2021-08-28 06:51:03 +02:00
|
|
|
// Return the playback position of the most recently started playback stream.
|
|
|
|
if (!stream_playbacks.is_empty()) {
|
|
|
|
return AudioServer::get_singleton()->get_playback_position(stream_playbacks[stream_playbacks.size() - 1]);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_bus(const StringName &p_bus) {
|
|
|
|
//if audio is active, must lock this
|
|
|
|
AudioServer::get_singleton()->lock();
|
|
|
|
bus = p_bus;
|
|
|
|
AudioServer::get_singleton()->unlock();
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
StringName AudioStreamPlayer3D::get_bus() const {
|
|
|
|
for (int i = 0; i < AudioServer::get_singleton()->get_bus_count(); i++) {
|
|
|
|
if (AudioServer::get_singleton()->get_bus_name(i) == bus) {
|
|
|
|
return bus;
|
|
|
|
}
|
|
|
|
}
|
2021-08-27 19:28:23 +02:00
|
|
|
return SNAME("Master");
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_autoplay(bool p_enable) {
|
|
|
|
autoplay = p_enable;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
bool AudioStreamPlayer3D::is_autoplay_enabled() {
|
|
|
|
return autoplay;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::_set_playing(bool p_enable) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (p_enable) {
|
2017-07-15 06:23:10 +02:00
|
|
|
play();
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2017-07-15 06:23:10 +02:00
|
|
|
stop();
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
bool AudioStreamPlayer3D::_is_active() const {
|
2021-02-10 19:22:13 +01:00
|
|
|
return active.is_set();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::_validate_property(PropertyInfo &property) const {
|
|
|
|
if (property.name == "bus") {
|
|
|
|
String options;
|
|
|
|
for (int i = 0; i < AudioServer::get_singleton()->get_bus_count(); i++) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (i > 0) {
|
2017-07-15 06:23:10 +02:00
|
|
|
options += ",";
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
String name = AudioServer::get_singleton()->get_bus_name(i);
|
|
|
|
options += name;
|
|
|
|
}
|
|
|
|
|
|
|
|
property.hint_string = options;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::_bus_layout_changed() {
|
2021-02-10 21:18:45 +01:00
|
|
|
notify_property_list_changed();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_max_distance(float p_metres) {
|
|
|
|
ERR_FAIL_COND(p_metres < 0.0);
|
|
|
|
max_distance = p_metres;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayer3D::get_max_distance() const {
|
|
|
|
return max_distance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_area_mask(uint32_t p_mask) {
|
|
|
|
area_mask = p_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioStreamPlayer3D::get_area_mask() const {
|
|
|
|
return area_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_emission_angle_enabled(bool p_enable) {
|
|
|
|
emission_angle_enabled = p_enable;
|
2021-06-23 16:49:50 +02:00
|
|
|
update_gizmos();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlayer3D::is_emission_angle_enabled() const {
|
|
|
|
return emission_angle_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_emission_angle(float p_angle) {
|
|
|
|
ERR_FAIL_COND(p_angle < 0 || p_angle > 90);
|
|
|
|
emission_angle = p_angle;
|
2021-06-23 16:49:50 +02:00
|
|
|
update_gizmos();
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayer3D::get_emission_angle() const {
|
|
|
|
return emission_angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_emission_angle_filter_attenuation_db(float p_angle_attenuation_db) {
|
|
|
|
emission_angle_filter_attenuation_db = p_angle_attenuation_db;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayer3D::get_emission_angle_filter_attenuation_db() const {
|
|
|
|
return emission_angle_filter_attenuation_db;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_attenuation_filter_cutoff_hz(float p_hz) {
|
|
|
|
attenuation_filter_cutoff_hz = p_hz;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
float AudioStreamPlayer3D::get_attenuation_filter_cutoff_hz() const {
|
|
|
|
return attenuation_filter_cutoff_hz;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_attenuation_filter_db(float p_db) {
|
|
|
|
attenuation_filter_db = p_db;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
float AudioStreamPlayer3D::get_attenuation_filter_db() const {
|
|
|
|
return attenuation_filter_db;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_attenuation_model(AttenuationModel p_model) {
|
2019-03-10 14:25:54 +01:00
|
|
|
ERR_FAIL_INDEX((int)p_model, 4);
|
2017-07-15 06:23:10 +02:00
|
|
|
attenuation_model = p_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer3D::AttenuationModel AudioStreamPlayer3D::get_attenuation_model() const {
|
|
|
|
return attenuation_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_out_of_range_mode(OutOfRangeMode p_mode) {
|
2018-10-04 09:17:59 +02:00
|
|
|
ERR_FAIL_INDEX((int)p_mode, 2);
|
2017-07-15 06:23:10 +02:00
|
|
|
out_of_range_mode = p_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer3D::OutOfRangeMode AudioStreamPlayer3D::get_out_of_range_mode() const {
|
|
|
|
return out_of_range_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_doppler_tracking(DopplerTracking p_tracking) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (doppler_tracking == p_tracking) {
|
2017-07-15 06:23:10 +02:00
|
|
|
return;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
|
|
|
|
doppler_tracking = p_tracking;
|
|
|
|
|
|
|
|
if (doppler_tracking != DOPPLER_TRACKING_DISABLED) {
|
|
|
|
set_notify_transform(true);
|
2017-09-30 16:19:07 +02:00
|
|
|
velocity_tracker->set_track_physics_step(doppler_tracking == DOPPLER_TRACKING_PHYSICS_STEP);
|
2019-02-26 13:15:51 +01:00
|
|
|
if (is_inside_tree()) {
|
|
|
|
velocity_tracker->reset(get_global_transform().origin);
|
|
|
|
}
|
2017-07-15 06:23:10 +02:00
|
|
|
} else {
|
|
|
|
set_notify_transform(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer3D::DopplerTracking AudioStreamPlayer3D::get_doppler_tracking() const {
|
|
|
|
return doppler_tracking;
|
|
|
|
}
|
|
|
|
|
2018-05-27 20:29:10 +02:00
|
|
|
void AudioStreamPlayer3D::set_stream_paused(bool p_pause) {
|
2021-08-28 06:51:03 +02:00
|
|
|
// TODO this does not have perfect recall, fix that maybe? If there are zero playbacks registered with the AudioServer, this bool isn't persisted.
|
|
|
|
for (Ref<AudioStreamPlayback> &playback : stream_playbacks) {
|
|
|
|
AudioServer::get_singleton()->set_playback_paused(playback, p_pause);
|
2018-05-27 20:29:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlayer3D::get_stream_paused() const {
|
2021-08-28 06:51:03 +02:00
|
|
|
// There's currently no way to pause some playback streams but not others. Check the first and don't bother looking at the rest.
|
|
|
|
if (!stream_playbacks.is_empty()) {
|
|
|
|
return AudioServer::get_singleton()->is_playback_paused(stream_playbacks[0]);
|
2021-08-27 19:28:23 +02:00
|
|
|
}
|
|
|
|
return false;
|
2018-05-27 20:29:10 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
Ref<AudioStreamPlayback> AudioStreamPlayer3D::get_stream_playback() {
|
2021-08-28 06:51:03 +02:00
|
|
|
if (!stream_playbacks.is_empty()) {
|
|
|
|
return stream_playbacks[stream_playbacks.size() - 1];
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer3D::set_max_polyphony(int p_max_polyphony) {
|
|
|
|
if (p_max_polyphony > 0) {
|
|
|
|
max_polyphony = p_max_polyphony;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int AudioStreamPlayer3D::get_max_polyphony() const {
|
|
|
|
return max_polyphony;
|
2019-04-10 17:57:03 +02:00
|
|
|
}
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
void AudioStreamPlayer3D::_bind_methods() {
|
2017-08-09 13:19:41 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_stream", "stream"), &AudioStreamPlayer3D::set_stream);
|
2017-07-15 06:23:10 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_stream"), &AudioStreamPlayer3D::get_stream);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_unit_db", "unit_db"), &AudioStreamPlayer3D::set_unit_db);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_unit_db"), &AudioStreamPlayer3D::get_unit_db);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_unit_size", "unit_size"), &AudioStreamPlayer3D::set_unit_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_unit_size"), &AudioStreamPlayer3D::get_unit_size);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_max_db", "max_db"), &AudioStreamPlayer3D::set_max_db);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_max_db"), &AudioStreamPlayer3D::get_max_db);
|
|
|
|
|
2018-01-01 22:23:16 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_pitch_scale", "pitch_scale"), &AudioStreamPlayer3D::set_pitch_scale);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_pitch_scale"), &AudioStreamPlayer3D::get_pitch_scale);
|
|
|
|
|
2017-09-10 15:37:49 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("play", "from_position"), &AudioStreamPlayer3D::play, DEFVAL(0.0));
|
|
|
|
ClassDB::bind_method(D_METHOD("seek", "to_position"), &AudioStreamPlayer3D::seek);
|
2017-07-15 06:23:10 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("stop"), &AudioStreamPlayer3D::stop);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("is_playing"), &AudioStreamPlayer3D::is_playing);
|
2017-09-21 05:31:36 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_playback_position"), &AudioStreamPlayer3D::get_playback_position);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_bus", "bus"), &AudioStreamPlayer3D::set_bus);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bus"), &AudioStreamPlayer3D::get_bus);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_autoplay", "enable"), &AudioStreamPlayer3D::set_autoplay);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_autoplay_enabled"), &AudioStreamPlayer3D::is_autoplay_enabled);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_set_playing", "enable"), &AudioStreamPlayer3D::_set_playing);
|
|
|
|
ClassDB::bind_method(D_METHOD("_is_active"), &AudioStreamPlayer3D::_is_active);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_max_distance", "metres"), &AudioStreamPlayer3D::set_max_distance);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_max_distance"), &AudioStreamPlayer3D::get_max_distance);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_area_mask", "mask"), &AudioStreamPlayer3D::set_area_mask);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_area_mask"), &AudioStreamPlayer3D::get_area_mask);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_emission_angle", "degrees"), &AudioStreamPlayer3D::set_emission_angle);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_emission_angle"), &AudioStreamPlayer3D::get_emission_angle);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_emission_angle_enabled", "enabled"), &AudioStreamPlayer3D::set_emission_angle_enabled);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_emission_angle_enabled"), &AudioStreamPlayer3D::is_emission_angle_enabled);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_emission_angle_filter_attenuation_db", "db"), &AudioStreamPlayer3D::set_emission_angle_filter_attenuation_db);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_emission_angle_filter_attenuation_db"), &AudioStreamPlayer3D::get_emission_angle_filter_attenuation_db);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_attenuation_filter_cutoff_hz", "degrees"), &AudioStreamPlayer3D::set_attenuation_filter_cutoff_hz);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_attenuation_filter_cutoff_hz"), &AudioStreamPlayer3D::get_attenuation_filter_cutoff_hz);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_attenuation_filter_db", "db"), &AudioStreamPlayer3D::set_attenuation_filter_db);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_attenuation_filter_db"), &AudioStreamPlayer3D::get_attenuation_filter_db);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_attenuation_model", "model"), &AudioStreamPlayer3D::set_attenuation_model);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_attenuation_model"), &AudioStreamPlayer3D::get_attenuation_model);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_out_of_range_mode", "mode"), &AudioStreamPlayer3D::set_out_of_range_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_out_of_range_mode"), &AudioStreamPlayer3D::get_out_of_range_mode);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_doppler_tracking", "mode"), &AudioStreamPlayer3D::set_doppler_tracking);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_doppler_tracking"), &AudioStreamPlayer3D::get_doppler_tracking);
|
|
|
|
|
2018-05-27 20:29:10 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_stream_paused", "pause"), &AudioStreamPlayer3D::set_stream_paused);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_stream_paused"), &AudioStreamPlayer3D::get_stream_paused);
|
|
|
|
|
2021-08-28 06:51:03 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_max_polyphony", "max_polyphony"), &AudioStreamPlayer3D::set_max_polyphony);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_max_polyphony"), &AudioStreamPlayer3D::get_max_polyphony);
|
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_stream_playback"), &AudioStreamPlayer3D::get_stream_playback);
|
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "stream", PROPERTY_HINT_RESOURCE_TYPE, "AudioStream"), "set_stream", "get_stream");
|
2021-05-22 04:30:58 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "attenuation_model", PROPERTY_HINT_ENUM, "Inverse,Inverse Square,Log,Disabled"), "set_attenuation_model", "get_attenuation_model");
|
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, "unit_db", PROPERTY_HINT_RANGE, "-80,80"), "set_unit_db", "get_unit_db");
|
2020-04-26 14:26:01 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "unit_size", PROPERTY_HINT_RANGE, "0.1,100,0.01,or_greater"), "set_unit_size", "get_unit_size");
|
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, "max_db", PROPERTY_HINT_RANGE, "-24,6"), "set_max_db", "get_max_db");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "pitch_scale", PROPERTY_HINT_RANGE, "0.01,4,0.01,or_greater"), "set_pitch_scale", "get_pitch_scale");
|
2017-09-13 13:40:41 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "playing", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "_set_playing", "is_playing");
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "autoplay"), "set_autoplay", "is_autoplay_enabled");
|
2018-05-27 20:29:10 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "stream_paused", PROPERTY_HINT_NONE, ""), "set_stream_paused", "get_stream_paused");
|
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "max_distance", PROPERTY_HINT_RANGE, "0,4096,1,or_greater,exp"), "set_max_distance", "get_max_distance");
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "out_of_range_mode", PROPERTY_HINT_ENUM, "Mix,Pause"), "set_out_of_range_mode", "get_out_of_range_mode");
|
2021-08-28 06:51:03 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "max_polyphony", PROPERTY_HINT_NONE, ""), "set_max_polyphony", "get_max_polyphony");
|
2020-02-20 22:58:05 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "bus", PROPERTY_HINT_ENUM, ""), "set_bus", "get_bus");
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "area_mask", PROPERTY_HINT_LAYERS_2D_PHYSICS), "set_area_mask", "get_area_mask");
|
|
|
|
ADD_GROUP("Emission Angle", "emission_angle");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "emission_angle_enabled"), "set_emission_angle_enabled", "is_emission_angle_enabled");
|
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "emission_angle_degrees", PROPERTY_HINT_RANGE, "0.1,90,0.1,degrees"), "set_emission_angle", "get_emission_angle");
|
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, "emission_angle_filter_attenuation_db", PROPERTY_HINT_RANGE, "-80,0,0.1"), "set_emission_angle_filter_attenuation_db", "get_emission_angle_filter_attenuation_db");
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_GROUP("Attenuation Filter", "attenuation_filter_");
|
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, "attenuation_filter_cutoff_hz", PROPERTY_HINT_RANGE, "1,20500,1"), "set_attenuation_filter_cutoff_hz", "get_attenuation_filter_cutoff_hz");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "attenuation_filter_db", PROPERTY_HINT_RANGE, "-80,0,0.1"), "set_attenuation_filter_db", "get_attenuation_filter_db");
|
2017-07-15 06:23:10 +02:00
|
|
|
ADD_GROUP("Doppler", "doppler_");
|
2017-10-21 16:28:08 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "doppler_tracking", PROPERTY_HINT_ENUM, "Disabled,Idle,Physics"), "set_doppler_tracking", "get_doppler_tracking");
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(ATTENUATION_INVERSE_DISTANCE);
|
|
|
|
BIND_ENUM_CONSTANT(ATTENUATION_INVERSE_SQUARE_DISTANCE);
|
|
|
|
BIND_ENUM_CONSTANT(ATTENUATION_LOGARITHMIC);
|
2019-03-10 14:25:54 +01:00
|
|
|
BIND_ENUM_CONSTANT(ATTENUATION_DISABLED);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(OUT_OF_RANGE_MIX);
|
|
|
|
BIND_ENUM_CONSTANT(OUT_OF_RANGE_PAUSE);
|
2017-07-15 06:23:10 +02:00
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_DISABLED);
|
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_IDLE_STEP);
|
2017-09-30 16:19:07 +02:00
|
|
|
BIND_ENUM_CONSTANT(DOPPLER_TRACKING_PHYSICS_STEP);
|
2017-08-25 16:58:21 +02:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("finished"));
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer3D::AudioStreamPlayer3D() {
|
2021-06-18 00:03:09 +02:00
|
|
|
velocity_tracker.instantiate();
|
2020-02-21 18:28:45 +01:00
|
|
|
AudioServer::get_singleton()->connect("bus_layout_changed", callable_mp(this, &AudioStreamPlayer3D::_bus_layout_changed));
|
2018-07-18 18:47:42 +02:00
|
|
|
set_disable_scale(true);
|
2017-07-15 06:23:10 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-07-15 06:23:10 +02:00
|
|
|
AudioStreamPlayer3D::~AudioStreamPlayer3D() {
|
|
|
|
}
|