summaryrefslogtreecommitdiff
path: root/attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h
diff options
context:
space:
mode:
authorRobert Jonsson <spamatica@gmail.com>2011-03-07 19:01:11 +0000
committerRobert Jonsson <spamatica@gmail.com>2011-03-07 19:01:11 +0000
commite40fc849149dd97c248866a4a1d026dda5e57b62 (patch)
treeb12b358f3b3a0608001d30403358f8443118ec5f /attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h
parent1bd4f2e8d9745cabb667b043171cad22c8577768 (diff)
clean3
Diffstat (limited to 'attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h')
-rw-r--r--attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h b/attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h
new file mode 100644
index 00000000..14df43ba
--- /dev/null
+++ b/attic/muse_qt4_evolution/synti/zynaddsubfx/Effects/Effect.h
@@ -0,0 +1,61 @@
+/*
+ ZynAddSubFX - a software synthesizer
+
+ Effect.h - this class is inherited by the all effects(Reverb, Echo, ..)
+ Copyright (C) 2002-2005 Nasca Octavian Paul
+ Author: Nasca Octavian Paul
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of version 2 of the GNU General Public License
+ as published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License (version 2) for more details.
+
+ You should have received a copy of the GNU General Public License (version 2)
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+*/
+
+#ifndef EFFECT_H
+#define EFFECT_H
+
+#include <pthread.h>
+#include "../Misc/Util.h"
+#include "../globals.h"
+#include "../Params/FilterParams.h"
+
+
+class Effect{
+ public:
+
+ virtual ~Effect(){};
+ virtual void setpreset(unsigned char /*npreset*/){};
+ virtual void changepar(int /*npar*/,unsigned char /*value*/){};
+ virtual unsigned char getpar(int /*npar*/){return(0);};
+ virtual void out(REALTYPE */*smpsl*/,REALTYPE */*smpsr*/){};
+ virtual void cleanup(){};
+ virtual REALTYPE getfreqresponse(REALTYPE /*freq*/){return (0);};//this is only used for EQ (for user interface)
+
+ unsigned char Ppreset;
+ REALTYPE *efxoutl;
+ REALTYPE *efxoutr;
+
+ REALTYPE outvolume;//this is the volume of effect and is public because need it in system effect. The out volume of such effects are always 1.0, so this setting tells me how is the volume to the Master Output only.
+
+ REALTYPE volume;
+
+ FilterParams *filterpars;
+ protected:
+
+ int insertion;//1 for insertion effect
+};
+
+#endif
+
+
+
+