| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  video_player.cpp                                                     */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											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).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "video_player.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-01 23:22:24 -04:00
										 |  |  | #include "scene/scene_string_names.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-27 21:07:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-21 19:00:25 -03:00
										 |  |  | #include "servers/audio_server.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | int VideoPlayer::sp_get_channel_count() const { | 
					
						
							| 
									
										
										
										
											2019-10-24 01:35:47 +01:00
										 |  |  | 	if (playback.is_null()) { | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return playback->get_channels(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | bool VideoPlayer::mix(AudioFrame *p_buffer, int p_frames) { | 
					
						
							|  |  |  | 	// Check the amount resampler can really handle.
 | 
					
						
							|  |  |  | 	// If it cannot, wait "wait_resampler_phase_limit" times.
 | 
					
						
							|  |  |  | 	// This mechanism contributes to smoother pause/unpause operation.
 | 
					
						
							|  |  |  | 	if (p_frames <= resampler.get_num_of_ready_frames() || | 
					
						
							|  |  |  | 			wait_resampler_limit <= wait_resampler) { | 
					
						
							|  |  |  | 		wait_resampler = 0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		return resampler.mix(p_buffer, p_frames); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	wait_resampler++; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | // Called from main thread (eg VideoStreamPlaybackWebm::update)
 | 
					
						
							|  |  |  | int VideoPlayer::_audio_mix_callback(void *p_udata, const float *p_data, int p_frames) { | 
					
						
							| 
									
										
										
										
											2019-10-24 01:35:47 +01:00
										 |  |  | 	ERR_FAIL_NULL_V(p_udata, 0); | 
					
						
							|  |  |  | 	ERR_FAIL_NULL_V(p_data, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	VideoPlayer *vp = (VideoPlayer *)p_udata; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	int todo = MIN(vp->resampler.get_writer_space(), p_frames); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	float *wb = vp->resampler.get_write_buffer(); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	int c = vp->resampler.get_channel_count(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	for (int i = 0; i < todo * c; i++) { | 
					
						
							|  |  |  | 		wb[i] = p_data[i]; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	vp->resampler.write(todo); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return todo; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-24 01:35:47 +01:00
										 |  |  | void VideoPlayer::_mix_audios(void *p_self) { | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(p_self); | 
					
						
							|  |  |  | 	reinterpret_cast<VideoPlayer *>(p_self)->_mix_audio(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | // Called from audio thread
 | 
					
						
							|  |  |  | void VideoPlayer::_mix_audio() { | 
					
						
							|  |  |  | 	if (!stream.is_valid()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!playback.is_valid() || !playback->is_playing() || playback->is_paused()) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-25 00:07:54 -03:00
										 |  |  | 	AudioFrame *buffer = mix_buffer.ptrw(); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	int buffer_size = mix_buffer.size(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Resample
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!mix(buffer, buffer_size)) { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	AudioFrame vol = AudioFrame(volume, volume); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 	int cc = AudioServer::get_singleton()->get_channel_count(); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 	if (cc == 1) { | 
					
						
							|  |  |  | 		AudioFrame *target = AudioServer::get_singleton()->thread_get_channel_mix_buffer(bus_index, 0); | 
					
						
							|  |  |  | 		ERR_FAIL_COND(!target); | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 		for (int j = 0; j < buffer_size; j++) { | 
					
						
							|  |  |  | 			target[j] += buffer[j] * vol; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-09-26 13:13:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		AudioFrame *targets[4]; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 		for (int k = 0; k < cc; k++) { | 
					
						
							|  |  |  | 			targets[k] = AudioServer::get_singleton()->thread_get_channel_mix_buffer(bus_index, k); | 
					
						
							|  |  |  | 			ERR_FAIL_COND(!targets[k]); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03: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-09-14 15:45:02 -05:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-11-02 13:33:20 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void VideoPlayer::_notification(int p_notification) { | 
					
						
							|  |  |  | 	switch (p_notification) { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 		case NOTIFICATION_ENTER_TREE: { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 			AudioServer::get_singleton()->add_callback(_mix_audios, this); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-19 01:02:56 +02:00
										 |  |  | 			if (stream.is_valid() && autoplay && !Engine::get_singleton()->is_editor_hint()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				play(); | 
					
						
							| 
									
										
										
										
											2015-12-15 09:17:32 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_EXIT_TREE: { | 
					
						
							|  |  |  | 			AudioServer::get_singleton()->remove_callback(_mix_audios, this); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 18:02:19 -03:00
										 |  |  | 		case NOTIFICATION_INTERNAL_PROCESS: { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 			bus_index = AudioServer::get_singleton()->thread_find_bus_index(bus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (stream.is_null() || paused || playback.is_null() || !playback->is_playing()) { | 
					
						
							| 
									
										
										
										
											2014-11-02 11:31:01 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 			double audio_time = USEC_TO_SEC(OS::get_singleton()->get_ticks_usec()); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			double delta = last_audio_time == 0 ? 0 : audio_time - last_audio_time; | 
					
						
							|  |  |  | 			last_audio_time = audio_time; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (delta == 0) { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 23:22:24 -04:00
										 |  |  | 			playback->update(delta); // playback->is_playing() returns false in the last video frame
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!playback->is_playing()) { | 
					
						
							|  |  |  | 				emit_signal(SceneStringNames::get_singleton()->finished); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_DRAW: { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (texture.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			if (texture->get_width() == 0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			Size2 s = expand ? get_size() : texture->get_size(); | 
					
						
							|  |  |  | 			draw_texture_rect(texture, Rect2(Point2(), s), false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} break; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Size2 VideoPlayer::get_minimum_size() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!expand && !texture.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return texture->get_size(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return Size2(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::set_expand(bool p_expand) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	expand = p_expand; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	update(); | 
					
						
							|  |  |  | 	minimum_size_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VideoPlayer::has_expand() const { | 
					
						
							|  |  |  | 	return expand; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::set_stream(const Ref<VideoStream> &p_stream) { | 
					
						
							|  |  |  | 	stop(); | 
					
						
							| 
									
										
										
										
											2020-06-29 12:56:10 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	AudioServer::get_singleton()->lock(); | 
					
						
							|  |  |  | 	mix_buffer.resize(AudioServer::get_singleton()->thread_get_mix_buffer_size()); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	stream = p_stream; | 
					
						
							|  |  |  | 	if (stream.is_valid()) { | 
					
						
							|  |  |  | 		stream->set_audio_track(audio_track); | 
					
						
							|  |  |  | 		playback = stream->instance_playback(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		playback = Ref<VideoStreamPlayback>(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-29 12:56:10 +10:00
										 |  |  | 	AudioServer::get_singleton()->unlock(); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!playback.is_null()) { | 
					
						
							|  |  |  | 		playback->set_loop(loops); | 
					
						
							|  |  |  | 		playback->set_paused(paused); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		texture = playback->get_texture(); | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 15:31:32 +02:00
										 |  |  | 		const int channels = playback->get_channels(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		AudioServer::get_singleton()->lock(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (channels > 0) { | 
					
						
							| 
									
										
										
										
											2018-01-07 12:57:48 -03:00
										 |  |  | 			resampler.setup(channels, playback->get_mix_rate(), AudioServer::get_singleton()->get_mix_rate(), buffering_ms, 0); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-06-15 15:31:32 +02:00
										 |  |  | 			resampler.clear(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 		AudioServer::get_singleton()->unlock(); | 
					
						
							| 
									
										
										
										
											2016-06-15 15:31:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (channels > 0) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			playback->set_mix_callback(_audio_mix_callback, this); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		texture.unref(); | 
					
						
							|  |  |  | 		AudioServer::get_singleton()->lock(); | 
					
						
							|  |  |  | 		resampler.clear(); | 
					
						
							|  |  |  | 		AudioServer::get_singleton()->unlock(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	update(); | 
					
						
							| 
									
										
										
										
											2020-01-26 10:24:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!expand) { | 
					
						
							|  |  |  | 		minimum_size_changed(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<VideoStream> VideoPlayer::get_stream() const { | 
					
						
							|  |  |  | 	return stream; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::play() { | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	ERR_FAIL_COND(!is_inside_tree()); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (playback.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	playback->stop(); | 
					
						
							|  |  |  | 	playback->play(); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:02:19 -03:00
										 |  |  | 	set_process_internal(true); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	//	AudioServer::get_singleton()->stream_set_active(stream_rid,true);
 | 
					
						
							|  |  |  | 	//	AudioServer::get_singleton()->stream_set_volume_scale(stream_rid,volume);
 | 
					
						
							|  |  |  | 	last_audio_time = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::stop() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!is_inside_tree()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (playback.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	playback->stop(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	//	AudioServer::get_singleton()->stream_set_active(stream_rid,false);
 | 
					
						
							| 
									
										
										
										
											2016-09-28 13:39:06 +02:00
										 |  |  | 	resampler.flush(); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:02:19 -03:00
										 |  |  | 	set_process_internal(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	last_audio_time = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VideoPlayer::is_playing() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (playback.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return playback->is_playing(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::set_paused(bool p_paused) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	paused = p_paused; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	if (playback.is_valid()) { | 
					
						
							|  |  |  | 		playback->set_paused(p_paused); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:02:19 -03:00
										 |  |  | 		set_process_internal(!p_paused); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2015-12-26 15:38:39 -03:00
										 |  |  | 	last_audio_time = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VideoPlayer::is_paused() const { | 
					
						
							|  |  |  | 	return paused; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::set_buffering_msec(int p_msec) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	buffering_ms = p_msec; | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | int VideoPlayer::get_buffering_msec() const { | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 	return buffering_ms; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | void VideoPlayer::set_audio_track(int p_track) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	audio_track = p_track; | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int VideoPlayer::get_audio_track() const { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return audio_track; | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-26 14:50:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void VideoPlayer::set_volume(float p_vol) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	volume = p_vol; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float VideoPlayer::get_volume() const { | 
					
						
							|  |  |  | 	return volume; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void VideoPlayer::set_volume_db(float p_db) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_db < -79) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		set_volume(0); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		set_volume(Math::db2linear(p_db)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float VideoPlayer::get_volume_db() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (volume == 0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return -80; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return Math::linear2db(volume); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String VideoPlayer::get_stream_name() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (stream.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return "<No Stream>"; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return stream->get_name(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | float VideoPlayer::get_stream_position() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (playback.is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-21 00:31:36 -03:00
										 |  |  | 	return playback->get_playback_position(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-03 23:29:30 +02:00
										 |  |  | void VideoPlayer::set_stream_position(float p_position) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (playback.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-10-03 23:29:30 +02:00
										 |  |  | 		playback->seek(p_position); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-03 23:29:30 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | Ref<Texture2D> VideoPlayer::get_video_texture() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (playback.is_valid()) { | 
					
						
							| 
									
										
										
										
											2015-12-12 20:05:26 -03:00
										 |  |  | 		return playback->get_texture(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-12-12 20:05:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	return Ref<Texture2D>(); | 
					
						
							| 
									
										
										
										
											2015-12-12 20:05:26 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void VideoPlayer::set_autoplay(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	autoplay = p_enable; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool VideoPlayer::has_autoplay() const { | 
					
						
							|  |  |  | 	return autoplay; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | void VideoPlayer::set_bus(const StringName &p_bus) { | 
					
						
							|  |  |  | 	//if audio is active, must lock this
 | 
					
						
							|  |  |  | 	AudioServer::get_singleton()->lock(); | 
					
						
							|  |  |  | 	bus = p_bus; | 
					
						
							|  |  |  | 	AudioServer::get_singleton()->unlock(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | StringName VideoPlayer::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"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-24 01:35:47 +01:00
										 |  |  | void VideoPlayer::_validate_property(PropertyInfo &p_property) const { | 
					
						
							|  |  |  | 	if (p_property.name == "bus") { | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 		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-09-14 15:45:02 -05:00
										 |  |  | 				options += ","; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 			String name = AudioServer::get_singleton()->get_bus_name(i); | 
					
						
							|  |  |  | 			options += name; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-24 01:35:47 +01:00
										 |  |  | 		p_property.hint_string = options; | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void VideoPlayer::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_stream", "stream"), &VideoPlayer::set_stream); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_stream"), &VideoPlayer::get_stream); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("play"), &VideoPlayer::play); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("stop"), &VideoPlayer::stop); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("is_playing"), &VideoPlayer::is_playing); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_paused", "paused"), &VideoPlayer::set_paused); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_paused"), &VideoPlayer::is_paused); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_volume", "volume"), &VideoPlayer::set_volume); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_volume"), &VideoPlayer::get_volume); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_volume_db", "db"), &VideoPlayer::set_volume_db); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_volume_db"), &VideoPlayer::get_volume_db); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_audio_track", "track"), &VideoPlayer::set_audio_track); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_audio_track"), &VideoPlayer::get_audio_track); | 
					
						
							| 
									
										
										
										
											2015-10-13 01:17:54 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_stream_name"), &VideoPlayer::get_stream_name); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-03 23:29:30 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_stream_position", "position"), &VideoPlayer::set_stream_position); | 
					
						
							| 
									
										
										
										
											2017-09-10 15:37:49 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_stream_position"), &VideoPlayer::get_stream_position); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_autoplay", "enabled"), &VideoPlayer::set_autoplay); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("has_autoplay"), &VideoPlayer::has_autoplay); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_expand", "enable"), &VideoPlayer::set_expand); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("has_expand"), &VideoPlayer::has_expand); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_buffering_msec", "msec"), &VideoPlayer::set_buffering_msec); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_buffering_msec"), &VideoPlayer::get_buffering_msec); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 15:45:02 -05:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_bus", "bus"), &VideoPlayer::set_bus); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_bus"), &VideoPlayer::get_bus); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_video_texture"), &VideoPlayer::get_video_texture); | 
					
						
							| 
									
										
										
										
											2015-12-12 20:05:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-01 23:22:24 -04:00
										 |  |  | 	ADD_SIGNAL(MethodInfo("finished")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "audio_track", PROPERTY_HINT_RANGE, "0,128,1"), "set_audio_track", "get_audio_track"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "stream", PROPERTY_HINT_RESOURCE_TYPE, "VideoStream"), "set_stream", "get_stream"); | 
					
						
							| 
									
										
										
										
											2017-02-12 01:11:37 +01:00
										 |  |  | 	//ADD_PROPERTY( PropertyInfo(Variant::BOOL, "stream/loop"), "set_loop", "has_loop") ;
 | 
					
						
							| 
									
										
										
											
												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 15:20:53 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "volume_db", PROPERTY_HINT_RANGE, "-80,24,0.01"), "set_volume_db", "get_volume_db"); | 
					
						
							| 
									
										
										
										
											2021-06-17 19:10:18 -04:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "volume", PROPERTY_HINT_EXP_RANGE, "0,15,0.01", PROPERTY_USAGE_NONE), "set_volume", "get_volume"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "autoplay"), "set_autoplay", "has_autoplay"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "paused"), "set_paused", "is_paused"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "expand"), "set_expand", "has_expand"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "buffering_msec", PROPERTY_HINT_RANGE, "10,1000"), "set_buffering_msec", "get_buffering_msec"); | 
					
						
							| 
									
										
										
										
											2021-06-17 19:10:18 -04:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "stream_position", PROPERTY_HINT_RANGE, "0,1280000,0.1", PROPERTY_USAGE_NONE), "set_stream_position", "get_stream_position"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-20 18:58:05 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "bus", PROPERTY_HINT_ENUM, ""), "set_bus", "get_bus"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | VideoPlayer::VideoPlayer() {} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | VideoPlayer::~VideoPlayer() { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	//	if (stream_rid.is_valid())
 | 
					
						
							|  |  |  | 	//		AudioServer::get_singleton()->free(stream_rid);
 | 
					
						
							| 
									
										
										
										
											2016-09-28 13:39:06 +02:00
										 |  |  | 	resampler.clear(); //Not necessary here, but make in consistent with other "stream_player" classes
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; |