|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- ZynAddSubFX - a software synthesizer
-
- EffectMgr.h - Effect manager, an interface betwen the program and effects
- 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 the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
-
- #ifndef EFFECTMGR_H
- #define EFFECTMGR_H
-
- #include <pthread.h>
-
- class Effect;
- class FilterParams;
- class XMLwrapper;
- class Allocator;
-
- #include "../Params/FilterParams.h"
- #include "../Params/Presets.h"
-
- /** Effect manager, an interface between the program and effects */
- class EffectMgr:public Presets
- {
- public:
- EffectMgr(Allocator &alloc, const SYNTH_T &synth, const bool insertion_,
- const AbsTime *time_ = nullptr);
- ~EffectMgr();
-
- void paste(EffectMgr &e);
- void add2XML(XMLwrapper& xml);
- void defaults(void) REALTIME;
- void getfromXML(XMLwrapper& xml);
-
- void out(float *smpsl, float *smpsr) REALTIME;
-
- void setdryonly(bool value);
-
- /**get the output(to speakers) volume of the systemeffect*/
- float sysefxgetvolume(void);
-
- void init(void) REALTIME;
- void kill(void) REALTIME;
- void cleanup(void) REALTIME;
-
- void changeeffectrt(int nefx_, bool avoidSmash=false) REALTIME;
- void changeeffect(int nefx_) NONREALTIME;
- int geteffect(void);
- void changepreset(unsigned char npreset) NONREALTIME;
- void changepresetrt(unsigned char npreset, bool avoidSmash=false) REALTIME;
- unsigned char getpreset(void);
- void seteffectpar(int npar, unsigned char value) NONREALTIME;
- void seteffectparrt(int npar, unsigned char value) REALTIME;
- unsigned char geteffectpar(int npar);
- unsigned char geteffectparrt(int npar) REALTIME;
-
- const bool insertion;
- float *efxoutl, *efxoutr;
-
- // used by UI
- float getEQfreqresponse(float freq);
-
- FilterParams *filterpars;
-
- static const rtosc::Ports &ports;
- int nefx;
- Effect *efx;
- const AbsTime *time;
- private:
-
- //Parameters Prior to initialization
- char preset;
- char settings[128];
-
- bool dryonly;
- Allocator &memory;
- const SYNTH_T &synth;
- };
-
- #endif
|