Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/servers/audio/effects/audio_effect_distortion.h
10278 views
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
31
#pragma once
32
33
#include "servers/audio/audio_effect.h"
34
35
class AudioEffectDistortion;
36
37
class AudioEffectDistortionInstance : public AudioEffectInstance {
38
GDCLASS(AudioEffectDistortionInstance, AudioEffectInstance);
39
friend class AudioEffectDistortion;
40
Ref<AudioEffectDistortion> base;
41
float h[2];
42
43
public:
44
virtual void process(const AudioFrame *p_src_frames, AudioFrame *p_dst_frames, int p_frame_count) override;
45
};
46
47
class AudioEffectDistortion : public AudioEffect {
48
GDCLASS(AudioEffectDistortion, AudioEffect);
49
50
public:
51
enum Mode {
52
MODE_CLIP,
53
MODE_ATAN,
54
MODE_LOFI,
55
MODE_OVERDRIVE,
56
MODE_WAVESHAPE,
57
};
58
59
friend class AudioEffectDistortionInstance;
60
Mode mode;
61
float pre_gain;
62
float post_gain;
63
float keep_hf_hz;
64
float drive;
65
66
protected:
67
static void _bind_methods();
68
69
public:
70
Ref<AudioEffectInstance> instantiate() override;
71
72
void set_mode(Mode p_mode);
73
Mode get_mode() const;
74
75
void set_pre_gain(float p_pre_gain);
76
float get_pre_gain() const;
77
78
void set_keep_hf_hz(float p_keep_hf_hz);
79
float get_keep_hf_hz() const;
80
81
void set_drive(float p_drive);
82
float get_drive() const;
83
84
void set_post_gain(float p_post_gain);
85
float get_post_gain() const;
86
87
AudioEffectDistortion();
88
};
89
90
VARIANT_ENUM_CAST(AudioEffectDistortion::Mode)
91
92