audio_effect_record.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**************************************************************************/
  2. /* audio_effect_record.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_EFFECT_RECORD_H
  31. #define AUDIO_EFFECT_RECORD_H
  32. #include "core/io/file_access.h"
  33. #include "core/io/marshalls.h"
  34. #include "core/os/os.h"
  35. #include "core/os/thread.h"
  36. #include "scene/resources/audio_stream_wav.h"
  37. #include "servers/audio/audio_effect.h"
  38. #include "servers/audio_server.h"
  39. class AudioEffectRecord;
  40. class AudioEffectRecordInstance : public AudioEffectInstance {
  41. GDCLASS(AudioEffectRecordInstance, AudioEffectInstance);
  42. friend class AudioEffectRecord;
  43. bool is_recording;
  44. Thread io_thread;
  45. Vector<AudioFrame> ring_buffer;
  46. Vector<float> recording_data;
  47. unsigned int ring_buffer_pos;
  48. unsigned int ring_buffer_mask;
  49. unsigned int ring_buffer_read_pos;
  50. void _io_thread_process();
  51. void _io_store_buffer();
  52. static void _thread_callback(void *_instance);
  53. void _init_recording();
  54. void _update_buffer();
  55. static void _update(void *userdata);
  56. public:
  57. void init();
  58. void finish();
  59. virtual void process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count) override;
  60. virtual bool process_silence() const override;
  61. };
  62. class AudioEffectRecord : public AudioEffect {
  63. GDCLASS(AudioEffectRecord, AudioEffect);
  64. friend class AudioEffectRecordInstance;
  65. enum {
  66. IO_BUFFER_SIZE_MS = 1500
  67. };
  68. Ref<AudioEffectRecordInstance> current_instance;
  69. AudioStreamWAV::Format format;
  70. void ensure_thread_stopped();
  71. protected:
  72. static void _bind_methods();
  73. public:
  74. Ref<AudioEffectInstance> instantiate() override;
  75. void set_recording_active(bool p_record);
  76. bool is_recording_active() const;
  77. void set_format(AudioStreamWAV::Format p_format);
  78. AudioStreamWAV::Format get_format() const;
  79. Ref<AudioStreamWAV> get_recording() const;
  80. AudioEffectRecord();
  81. ~AudioEffectRecord();
  82. };
  83. #endif // AUDIO_EFFECT_RECORD_H