audio_stream_player_2d.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /**************************************************************************/
  2. /* audio_stream_player_2d.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef AUDIO_STREAM_PLAYER_2D_H
  31. #define AUDIO_STREAM_PLAYER_2D_H
  32. #include "scene/2d/node_2d.h"
  33. #include "servers/audio_server.h"
  34. struct AudioFrame;
  35. class AudioStream;
  36. class AudioStreamPlayback;
  37. class AudioStreamPlayerInternal;
  38. class AudioStreamPlayer2D : public Node2D {
  39. GDCLASS(AudioStreamPlayer2D, Node2D);
  40. private:
  41. enum {
  42. MAX_OUTPUTS = 8,
  43. MAX_INTERSECT_AREAS = 32
  44. };
  45. struct Output {
  46. AudioFrame vol;
  47. int bus_index = 0;
  48. Viewport *viewport = nullptr; //pointer only used for reference to previous mix
  49. };
  50. AudioStreamPlayerInternal *internal = nullptr;
  51. SafeNumeric<float> setplay{ -1.0 };
  52. Ref<AudioStreamPlayback> setplayback;
  53. Vector<AudioFrame> volume_vector;
  54. uint64_t last_mix_count = -1;
  55. bool force_update_panning = false;
  56. AudioServer::PlaybackType playback_type = AudioServer::PlaybackType::PLAYBACK_TYPE_DEFAULT;
  57. void _set_playing(bool p_enable);
  58. bool _is_active() const;
  59. StringName _get_actual_bus();
  60. void _update_panning();
  61. static void _listener_changed_cb(void *self) { reinterpret_cast<AudioStreamPlayer2D *>(self)->force_update_panning = true; }
  62. uint32_t area_mask = 1;
  63. float max_distance = 2000.0;
  64. float attenuation = 1.0;
  65. float panning_strength = 1.0f;
  66. float cached_global_panning_strength = 0.5f;
  67. protected:
  68. void _validate_property(PropertyInfo &p_property) const;
  69. void _notification(int p_what);
  70. static void _bind_methods();
  71. bool _set(const StringName &p_name, const Variant &p_value);
  72. bool _get(const StringName &p_name, Variant &r_ret) const;
  73. void _get_property_list(List<PropertyInfo> *p_list) const;
  74. #ifndef DISABLE_DEPRECATED
  75. bool _is_autoplay_enabled_bind_compat_86907();
  76. static void _bind_compatibility_methods();
  77. #endif // DISABLE_DEPRECATED
  78. public:
  79. void set_stream(Ref<AudioStream> p_stream);
  80. Ref<AudioStream> get_stream() const;
  81. void set_volume_db(float p_volume);
  82. float get_volume_db() const;
  83. void set_pitch_scale(float p_pitch_scale);
  84. float get_pitch_scale() const;
  85. void play(float p_from_pos = 0.0);
  86. void seek(float p_seconds);
  87. void stop();
  88. bool is_playing() const;
  89. float get_playback_position();
  90. void set_bus(const StringName &p_bus);
  91. StringName get_bus() const;
  92. void set_autoplay(bool p_enable);
  93. bool is_autoplay_enabled() const;
  94. void set_max_distance(float p_pixels);
  95. float get_max_distance() const;
  96. void set_attenuation(float p_curve);
  97. float get_attenuation() const;
  98. void set_area_mask(uint32_t p_mask);
  99. uint32_t get_area_mask() const;
  100. void set_stream_paused(bool p_pause);
  101. bool get_stream_paused() const;
  102. void set_max_polyphony(int p_max_polyphony);
  103. int get_max_polyphony() const;
  104. void set_panning_strength(float p_panning_strength);
  105. float get_panning_strength() const;
  106. bool has_stream_playback();
  107. Ref<AudioStreamPlayback> get_stream_playback();
  108. AudioServer::PlaybackType get_playback_type() const;
  109. void set_playback_type(AudioServer::PlaybackType p_playback_type);
  110. AudioStreamPlayer2D();
  111. ~AudioStreamPlayer2D();
  112. };
  113. #endif // AUDIO_STREAM_PLAYER_2D_H