| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  audio_effect_distortion.h                                            */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2017-03-05 15:47:28 +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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | #ifndef AUDIOEFFECTDISTORTION_H
 | 
					
						
							|  |  |  | #define AUDIOEFFECTDISTORTION_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "servers/audio/audio_effect.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AudioEffectDistortion; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AudioEffectDistortionInstance : public AudioEffectInstance { | 
					
						
							| 
									
										
										
										
											2019-03-19 14:35:57 -04:00
										 |  |  | 	GDCLASS(AudioEffectDistortionInstance, AudioEffectInstance); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	friend class AudioEffectDistortion; | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	Ref<AudioEffectDistortion> base; | 
					
						
							|  |  |  | 	float h[2]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							|  |  |  | 	virtual void process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count); | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AudioEffectDistortion : public AudioEffect { | 
					
						
							| 
									
										
										
										
											2019-03-19 14:35:57 -04:00
										 |  |  | 	GDCLASS(AudioEffectDistortion, AudioEffect); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | public: | 
					
						
							|  |  |  | 	enum Mode { | 
					
						
							|  |  |  | 		MODE_CLIP, | 
					
						
							|  |  |  | 		MODE_ATAN, | 
					
						
							|  |  |  | 		MODE_LOFI, | 
					
						
							|  |  |  | 		MODE_OVERDRIVE, | 
					
						
							|  |  |  | 		MODE_WAVESHAPE, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	friend class AudioEffectDistortionInstance; | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	Mode mode; | 
					
						
							|  |  |  | 	float pre_gain; | 
					
						
							|  |  |  | 	float post_gain; | 
					
						
							|  |  |  | 	float keep_hf_hz; | 
					
						
							|  |  |  | 	float drive; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	Ref<AudioEffectInstance> instance(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_mode(Mode p_mode); | 
					
						
							|  |  |  | 	Mode get_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	void set_pre_gain(float p_pre_gain); | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	float get_pre_gain() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	void set_keep_hf_hz(float p_keep_hf_hz); | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	float get_keep_hf_hz() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	void set_drive(float p_drive); | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	float get_drive() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	void set_post_gain(float p_post_gain); | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 	float get_post_gain() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AudioEffectDistortion(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | VARIANT_ENUM_CAST(AudioEffectDistortion::Mode) | 
					
						
							| 
									
										
										
										
											2017-01-21 20:57:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // AUDIOEFFECTDISTORTION_H
 |