2018-01-05 00:50:27 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* audio_stream_player_2d.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-06-19 02:07:32 +02:00
|
|
|
|
|
|
|
#include "audio_stream_player_2d.h"
|
2017-08-19 01:02:56 +02:00
|
|
|
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/config/engine.h"
|
2017-06-19 02:07:32 +02:00
|
|
|
#include "scene/2d/area_2d.h"
|
2020-03-04 02:51:12 +01:00
|
|
|
#include "scene/main/window.h"
|
2017-08-19 01:02:56 +02:00
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
void AudioStreamPlayer2D::_mix_audio() {
|
2021-02-10 19:22:13 +01:00
|
|
|
if (!stream_playback.is_valid() || !active.is_set() ||
|
2019-04-27 17:17:54 +02:00
|
|
|
(stream_paused && !stream_paused_fade_out)) {
|
2017-06-19 02:07:32 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
if (setseek.get() >= 0.0) {
|
|
|
|
stream_playback->start(setseek.get());
|
|
|
|
setseek.set(-1.0); //reset seek
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//get data
|
2017-11-25 04:07:54 +01:00
|
|
|
AudioFrame *buffer = mix_buffer.ptrw();
|
2017-06-19 02:07:32 +02:00
|
|
|
int buffer_size = mix_buffer.size();
|
|
|
|
|
2019-04-27 17:17:54 +02:00
|
|
|
if (stream_paused_fade_out) {
|
2018-07-09 02:30:26 +02:00
|
|
|
// Short fadeout ramp
|
|
|
|
buffer_size = MIN(buffer_size, 128);
|
2018-05-27 20:29:10 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2018-07-09 02:30:26 +02:00
|
|
|
stream_playback->mix(buffer, pitch_scale, buffer_size);
|
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
//write all outputs
|
2021-02-10 19:22:13 +01:00
|
|
|
int oc = output_count.get();
|
|
|
|
for (int i = 0; i < oc; i++) {
|
2017-06-19 02:07:32 +02:00
|
|
|
Output current = outputs[i];
|
|
|
|
|
|
|
|
//see if current output exists, to keep volume ramp
|
|
|
|
bool found = false;
|
|
|
|
for (int j = i; j < prev_output_count; j++) {
|
|
|
|
if (prev_outputs[j].viewport == current.viewport) {
|
|
|
|
if (j != i) {
|
|
|
|
SWAP(prev_outputs[j], prev_outputs[i]);
|
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
//create new if was not used before
|
|
|
|
if (prev_output_count < MAX_OUTPUTS) {
|
|
|
|
prev_outputs[prev_output_count] = prev_outputs[i]; //may be owned by another viewport
|
|
|
|
prev_output_count++;
|
|
|
|
}
|
|
|
|
prev_outputs[i] = current;
|
|
|
|
}
|
|
|
|
|
|
|
|
//mix!
|
2019-04-27 17:17:54 +02:00
|
|
|
AudioFrame target_volume = stream_paused_fade_out ? AudioFrame(0.f, 0.f) : current.vol;
|
|
|
|
AudioFrame vol_prev = stream_paused_fade_in ? AudioFrame(0.f, 0.f) : prev_outputs[i].vol;
|
2018-07-09 02:30:26 +02:00
|
|
|
AudioFrame vol_inc = (target_volume - vol_prev) / float(buffer_size);
|
2020-03-25 02:06:26 +01:00
|
|
|
AudioFrame vol = vol_prev;
|
2018-05-27 20:29:10 +02:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
int cc = AudioServer::get_singleton()->get_channel_count();
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
if (cc == 1) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!AudioServer::get_singleton()->thread_has_channel_mix_buffer(current.bus_index, 0)) {
|
2018-11-13 22:16:33 +01:00
|
|
|
continue; //may have been removed
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-11-13 22:16:33 +01:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
AudioFrame *target = AudioServer::get_singleton()->thread_get_channel_mix_buffer(current.bus_index, 0);
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
for (int j = 0; j < buffer_size; j++) {
|
|
|
|
target[j] += buffer[j] * vol;
|
|
|
|
vol += vol_inc;
|
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
} else {
|
|
|
|
AudioFrame *targets[4];
|
2018-11-13 22:16:33 +01:00
|
|
|
bool valid = true;
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
for (int k = 0; k < cc; k++) {
|
2018-11-13 22:16:33 +01:00
|
|
|
if (!AudioServer::get_singleton()->thread_has_channel_mix_buffer(current.bus_index, k)) {
|
|
|
|
valid = false; //may have been removed
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
targets[k] = AudioServer::get_singleton()->thread_get_channel_mix_buffer(current.bus_index, k);
|
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!valid) {
|
2018-11-13 22:16:33 +01:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-11-13 22:16:33 +01:00
|
|
|
|
2017-08-22 23:27:17 +02:00
|
|
|
for (int j = 0; j < buffer_size; j++) {
|
|
|
|
AudioFrame frame = buffer[j] * vol;
|
|
|
|
for (int k = 0; k < cc; k++) {
|
|
|
|
targets[k][j] += frame;
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
2017-08-22 23:27:17 +02:00
|
|
|
vol += vol_inc;
|
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prev_outputs[i] = current;
|
|
|
|
}
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
prev_output_count = oc;
|
2017-06-19 02:07:32 +02:00
|
|
|
|
|
|
|
//stream is no longer active, disable this.
|
|
|
|
if (!stream_playback->is_playing()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
active.clear();
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
output_ready.clear();
|
2019-04-27 17:17:54 +02:00
|
|
|
stream_paused_fade_in = false;
|
|
|
|
stream_paused_fade_out = false;
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::_notification(int p_what) {
|
|
|
|
if (p_what == NOTIFICATION_ENTER_TREE) {
|
|
|
|
AudioServer::get_singleton()->add_callback(_mix_audios, this);
|
2017-08-19 01:02:56 +02:00
|
|
|
if (autoplay && !Engine::get_singleton()->is_editor_hint()) {
|
2017-06-19 02:07:32 +02:00
|
|
|
play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_what == NOTIFICATION_EXIT_TREE) {
|
|
|
|
AudioServer::get_singleton()->remove_callback(_mix_audios, this);
|
|
|
|
}
|
|
|
|
|
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-09-30 16:19:07 +02:00
|
|
|
if (p_what == NOTIFICATION_INTERNAL_PHYSICS_PROCESS) {
|
2017-06-19 02:07:32 +02:00
|
|
|
//update anything related to position first, if possible of course
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
if (!output_ready.is_set()) {
|
2017-06-19 02:07:32 +02:00
|
|
|
List<Viewport *> viewports;
|
|
|
|
Ref<World2D> world_2d = get_world_2d();
|
|
|
|
ERR_FAIL_COND(world_2d.is_null());
|
|
|
|
|
|
|
|
int new_output_count = 0;
|
|
|
|
|
|
|
|
Vector2 global_pos = get_global_position();
|
|
|
|
|
|
|
|
int bus_index = AudioServer::get_singleton()->thread_find_bus_index(bus);
|
|
|
|
|
|
|
|
//check if any area is diverting sound into a bus
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
PhysicsDirectSpaceState2D *space_state = PhysicsServer2D::get_singleton()->space_get_direct_state(world_2d->get_space());
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
PhysicsDirectSpaceState2D::ShapeResult sr[MAX_INTERSECT_AREAS];
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2018-10-11 05:15:22 +02:00
|
|
|
int areas = space_state->intersect_point(global_pos, sr, MAX_INTERSECT_AREAS, Set<RID>(), area_mask, false, true);
|
2017-06-19 02:07:32 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < areas; i++) {
|
2017-08-24 22:58:51 +02:00
|
|
|
Area2D *area2d = Object::cast_to<Area2D>(sr[i].collider);
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!area2d) {
|
2017-06-19 02:07:32 +02:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (!area2d->is_overriding_audio_bus()) {
|
2017-06-19 02:07:32 +02:00
|
|
|
continue;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-09-22 18:29:33 +02:00
|
|
|
StringName bus_name = area2d->get_audio_bus_name();
|
2017-06-19 02:07:32 +02:00
|
|
|
bus_index = AudioServer::get_singleton()->thread_find_bus_index(bus_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
world_2d->get_viewport_list(&viewports);
|
|
|
|
for (List<Viewport *>::Element *E = viewports.front(); E; E = E->next()) {
|
|
|
|
Viewport *vp = E->get();
|
|
|
|
if (vp->is_audio_listener_2d()) {
|
|
|
|
//compute matrix to convert to screen
|
|
|
|
Transform2D to_screen = vp->get_global_canvas_transform() * vp->get_canvas_transform();
|
|
|
|
Vector2 screen_size = vp->get_visible_rect().size;
|
|
|
|
|
|
|
|
//screen in global is used for attenuation
|
|
|
|
Vector2 screen_in_global = to_screen.affine_inverse().xform(screen_size * 0.5);
|
|
|
|
|
|
|
|
float dist = global_pos.distance_to(screen_in_global); //distance to screen center
|
|
|
|
|
2020-05-14 16:41:43 +02:00
|
|
|
if (dist > max_distance) {
|
2018-01-18 21:37:17 +01:00
|
|
|
continue; //can't hear this sound in this viewport
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
|
|
|
float multiplier = Math::pow(1.0f - dist / max_distance, attenuation);
|
|
|
|
multiplier *= Math::db2linear(volume_db); //also apply player volume!
|
|
|
|
|
|
|
|
//point in screen is used for panning
|
|
|
|
Vector2 point_in_screen = to_screen.xform(global_pos);
|
|
|
|
|
|
|
|
float pan = CLAMP(point_in_screen.x / screen_size.width, 0.0, 1.0);
|
|
|
|
|
|
|
|
float l = 1.0 - pan;
|
|
|
|
float r = pan;
|
|
|
|
|
|
|
|
outputs[new_output_count].vol = AudioFrame(l, r) * multiplier;
|
|
|
|
outputs[new_output_count].bus_index = bus_index;
|
|
|
|
outputs[new_output_count].viewport = vp; //keep pointer only for reference
|
|
|
|
new_output_count++;
|
2020-05-14 16:41:43 +02:00
|
|
|
if (new_output_count == MAX_OUTPUTS) {
|
2017-06-19 02:07:32 +02:00
|
|
|
break;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 19:22:13 +01:00
|
|
|
output_count.set(new_output_count);
|
|
|
|
output_ready.set();
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//start playing if requested
|
2021-02-10 19:22:13 +01:00
|
|
|
if (setplay.get() >= 0.0) {
|
|
|
|
setseek.set(setplay.get());
|
|
|
|
active.set();
|
|
|
|
setplay.set(-1);
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//stop playing if no longer active
|
2021-02-10 19:22:13 +01:00
|
|
|
if (!active.is_set()) {
|
2017-09-30 16:19:07 +02:00
|
|
|
set_physics_process_internal(false);
|
2017-08-25 16:58:21 +02:00
|
|
|
emit_signal("finished");
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_stream(Ref<AudioStream> p_stream) {
|
|
|
|
AudioServer::get_singleton()->lock();
|
|
|
|
|
|
|
|
mix_buffer.resize(AudioServer::get_singleton()->thread_get_mix_buffer_size());
|
|
|
|
|
|
|
|
if (stream_playback.is_valid()) {
|
|
|
|
stream_playback.unref();
|
|
|
|
stream.unref();
|
2021-02-10 19:22:13 +01:00
|
|
|
active.clear();
|
|
|
|
setseek.set(-1);
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
2018-06-19 13:56:05 +02:00
|
|
|
if (p_stream.is_valid()) {
|
|
|
|
stream = p_stream;
|
|
|
|
stream_playback = p_stream->instance_playback();
|
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
|
2017-09-01 21:42:50 +02:00
|
|
|
AudioServer::get_singleton()->unlock();
|
|
|
|
|
2018-06-19 13:56:05 +02:00
|
|
|
if (p_stream.is_valid() && stream_playback.is_null()) {
|
2017-06-19 02:07:32 +02:00
|
|
|
stream.unref();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<AudioStream> AudioStreamPlayer2D::get_stream() const {
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_volume_db(float p_volume) {
|
|
|
|
volume_db = p_volume;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
float AudioStreamPlayer2D::get_volume_db() const {
|
|
|
|
return volume_db;
|
|
|
|
}
|
|
|
|
|
2018-01-01 22:23:16 +01:00
|
|
|
void AudioStreamPlayer2D::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 AudioStreamPlayer2D::get_pitch_scale() const {
|
|
|
|
return pitch_scale;
|
|
|
|
}
|
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
void AudioStreamPlayer2D::play(float p_from_pos) {
|
2018-07-11 03:57:50 +02:00
|
|
|
if (!is_playing()) {
|
|
|
|
// Reset the prev_output_count if the stream is stopped
|
|
|
|
prev_output_count = 0;
|
|
|
|
}
|
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
if (stream_playback.is_valid()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
setplay.set(p_from_pos);
|
|
|
|
output_ready.clear();
|
2017-09-30 16:19:07 +02:00
|
|
|
set_physics_process_internal(true);
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::seek(float p_seconds) {
|
|
|
|
if (stream_playback.is_valid()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
setseek.set(p_seconds);
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::stop() {
|
|
|
|
if (stream_playback.is_valid()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
active.clear();
|
2019-04-27 17:17:54 +02:00
|
|
|
set_physics_process_internal(false);
|
2021-02-10 19:22:13 +01:00
|
|
|
setplay.set(-1);
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlayer2D::is_playing() const {
|
|
|
|
if (stream_playback.is_valid()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
return active.is_set() || setplay.get() >= 0;
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-21 05:31:36 +02:00
|
|
|
float AudioStreamPlayer2D::get_playback_position() {
|
2017-06-19 02:07:32 +02:00
|
|
|
if (stream_playback.is_valid()) {
|
2021-02-10 19:22:13 +01:00
|
|
|
float ss = setseek.get();
|
|
|
|
if (ss >= 0.0) {
|
|
|
|
return ss;
|
2021-02-15 05:41:59 +01:00
|
|
|
}
|
2017-09-21 05:31:36 +02:00
|
|
|
return stream_playback->get_playback_position();
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::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-06-19 02:07:32 +02:00
|
|
|
StringName AudioStreamPlayer2D::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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "Master";
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_autoplay(bool p_enable) {
|
|
|
|
autoplay = p_enable;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
bool AudioStreamPlayer2D::is_autoplay_enabled() {
|
|
|
|
return autoplay;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::_set_playing(bool p_enable) {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (p_enable) {
|
2017-06-19 02:07:32 +02:00
|
|
|
play();
|
2020-05-14 16:41:43 +02:00
|
|
|
} else {
|
2017-06-19 02:07:32 +02:00
|
|
|
stop();
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
bool AudioStreamPlayer2D::_is_active() const {
|
2021-02-10 19:22:13 +01:00
|
|
|
return active.is_set();
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::_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-06-19 02:07:32 +02:00
|
|
|
options += ",";
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2017-06-19 02:07:32 +02:00
|
|
|
String name = AudioServer::get_singleton()->get_bus_name(i);
|
|
|
|
options += name;
|
|
|
|
}
|
|
|
|
|
|
|
|
property.hint_string = options;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::_bus_layout_changed() {
|
2021-02-10 21:18:45 +01:00
|
|
|
notify_property_list_changed();
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_max_distance(float p_pixels) {
|
|
|
|
ERR_FAIL_COND(p_pixels <= 0.0);
|
|
|
|
max_distance = p_pixels;
|
|
|
|
}
|
|
|
|
|
|
|
|
float AudioStreamPlayer2D::get_max_distance() const {
|
|
|
|
return max_distance;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_attenuation(float p_curve) {
|
|
|
|
attenuation = p_curve;
|
|
|
|
}
|
2020-05-14 14:29:06 +02:00
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
float AudioStreamPlayer2D::get_attenuation() const {
|
|
|
|
return attenuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AudioStreamPlayer2D::set_area_mask(uint32_t p_mask) {
|
|
|
|
area_mask = p_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t AudioStreamPlayer2D::get_area_mask() const {
|
|
|
|
return area_mask;
|
|
|
|
}
|
|
|
|
|
2018-05-27 20:29:10 +02:00
|
|
|
void AudioStreamPlayer2D::set_stream_paused(bool p_pause) {
|
|
|
|
if (p_pause != stream_paused) {
|
|
|
|
stream_paused = p_pause;
|
2019-06-26 15:08:25 +02:00
|
|
|
stream_paused_fade_in = !p_pause;
|
|
|
|
stream_paused_fade_out = p_pause;
|
2018-05-27 20:29:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AudioStreamPlayer2D::get_stream_paused() const {
|
|
|
|
return stream_paused;
|
|
|
|
}
|
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
Ref<AudioStreamPlayback> AudioStreamPlayer2D::get_stream_playback() {
|
|
|
|
return stream_playback;
|
|
|
|
}
|
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
void AudioStreamPlayer2D::_bind_methods() {
|
2017-08-09 13:19:41 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_stream", "stream"), &AudioStreamPlayer2D::set_stream);
|
2017-06-19 02:07:32 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_stream"), &AudioStreamPlayer2D::get_stream);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_volume_db", "volume_db"), &AudioStreamPlayer2D::set_volume_db);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_volume_db"), &AudioStreamPlayer2D::get_volume_db);
|
|
|
|
|
2018-01-01 22:23:16 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_pitch_scale", "pitch_scale"), &AudioStreamPlayer2D::set_pitch_scale);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_pitch_scale"), &AudioStreamPlayer2D::get_pitch_scale);
|
|
|
|
|
2017-09-10 15:37:49 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("play", "from_position"), &AudioStreamPlayer2D::play, DEFVAL(0.0));
|
|
|
|
ClassDB::bind_method(D_METHOD("seek", "to_position"), &AudioStreamPlayer2D::seek);
|
2017-06-19 02:07:32 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("stop"), &AudioStreamPlayer2D::stop);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("is_playing"), &AudioStreamPlayer2D::is_playing);
|
2017-09-21 05:31:36 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_playback_position"), &AudioStreamPlayer2D::get_playback_position);
|
2017-06-19 02:07:32 +02:00
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_bus", "bus"), &AudioStreamPlayer2D::set_bus);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_bus"), &AudioStreamPlayer2D::get_bus);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_autoplay", "enable"), &AudioStreamPlayer2D::set_autoplay);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_autoplay_enabled"), &AudioStreamPlayer2D::is_autoplay_enabled);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_set_playing", "enable"), &AudioStreamPlayer2D::_set_playing);
|
|
|
|
ClassDB::bind_method(D_METHOD("_is_active"), &AudioStreamPlayer2D::_is_active);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_max_distance", "pixels"), &AudioStreamPlayer2D::set_max_distance);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_max_distance"), &AudioStreamPlayer2D::get_max_distance);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_attenuation", "curve"), &AudioStreamPlayer2D::set_attenuation);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_attenuation"), &AudioStreamPlayer2D::get_attenuation);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_area_mask", "mask"), &AudioStreamPlayer2D::set_area_mask);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_area_mask"), &AudioStreamPlayer2D::get_area_mask);
|
|
|
|
|
2018-05-27 20:29:10 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("set_stream_paused", "pause"), &AudioStreamPlayer2D::set_stream_paused);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_stream_paused"), &AudioStreamPlayer2D::get_stream_paused);
|
|
|
|
|
2019-04-10 17:57:03 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_stream_playback"), &AudioStreamPlayer2D::get_stream_playback);
|
|
|
|
|
2017-06-19 02:07:32 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "stream", PROPERTY_HINT_RESOURCE_TYPE, "AudioStream"), "set_stream", "get_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 19:20:53 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "volume_db", PROPERTY_HINT_RANGE, "-80,24"), "set_volume_db", "get_volume_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-06-19 02:07:32 +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");
|
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_distance", PROPERTY_HINT_EXP_RANGE, "1,4096,1,or_greater"), "set_max_distance", "get_max_distance");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "attenuation", PROPERTY_HINT_EXP_EASING, "attenuation"), "set_attenuation", "get_attenuation");
|
2020-02-20 22:58:05 +01:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "bus", PROPERTY_HINT_ENUM, ""), "set_bus", "get_bus");
|
2017-06-19 02:07:32 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "area_mask", PROPERTY_HINT_LAYERS_2D_PHYSICS), "set_area_mask", "get_area_mask");
|
2017-08-25 16:58:21 +02:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("finished"));
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer2D::AudioStreamPlayer2D() {
|
2020-02-21 18:28:45 +01:00
|
|
|
AudioServer::get_singleton()->connect("bus_layout_changed", callable_mp(this, &AudioStreamPlayer2D::_bus_layout_changed));
|
2017-06-19 02:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamPlayer2D::~AudioStreamPlayer2D() {
|
|
|
|
}
|