audio_effect_distortion.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /**************************************************************************/
  2. /* audio_effect_distortion.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. #pragma once
  31. #include "servers/audio/audio_effect.h"
  32. class AudioEffectDistortion;
  33. class AudioEffectDistortionInstance : public AudioEffectInstance {
  34. GDCLASS(AudioEffectDistortionInstance, AudioEffectInstance);
  35. friend class AudioEffectDistortion;
  36. Ref<AudioEffectDistortion> base;
  37. float h[2];
  38. public:
  39. virtual void process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count) override;
  40. };
  41. class AudioEffectDistortion : public AudioEffect {
  42. GDCLASS(AudioEffectDistortion, AudioEffect);
  43. public:
  44. enum Mode {
  45. MODE_CLIP,
  46. MODE_ATAN,
  47. MODE_LOFI,
  48. MODE_OVERDRIVE,
  49. MODE_WAVESHAPE,
  50. };
  51. friend class AudioEffectDistortionInstance;
  52. Mode mode;
  53. float pre_gain;
  54. float post_gain;
  55. float keep_hf_hz;
  56. float drive;
  57. protected:
  58. static void _bind_methods();
  59. public:
  60. Ref<AudioEffectInstance> instantiate() override;
  61. void set_mode(Mode p_mode);
  62. Mode get_mode() const;
  63. void set_pre_gain(float p_pre_gain);
  64. float get_pre_gain() const;
  65. void set_keep_hf_hz(float p_keep_hf_hz);
  66. float get_keep_hf_hz() const;
  67. void set_drive(float p_drive);
  68. float get_drive() const;
  69. void set_post_gain(float p_post_gain);
  70. float get_post_gain() const;
  71. AudioEffectDistortion();
  72. };
  73. VARIANT_ENUM_CAST(AudioEffectDistortion::Mode)