//See associated .cpp file for copyright and other info #ifndef __mdaPiano__ #define __mdaPiano__ #include #include "audioeffectx.h" #define NPARAMS 12 //number of parameters #define NPROGS 8 //number of programs #define NOUTS 2 //number of outputs #define NVOICES 32 //max polyphony #define SUSTAIN 128 #define SILENCE 0.0001f //voice choking #define WAVELEN 586348 //wave data bytes class mdaPianoProgram { friend class mdaPiano; public: mdaPianoProgram(); ~mdaPianoProgram() {} private: float param[NPARAMS]; char name[24]; }; struct VOICE //voice state { LvzInt32 delta; //sample playback LvzInt32 frac; LvzInt32 pos; LvzInt32 end; LvzInt32 loop; float env; //envelope float dec; float f0; //first-order LPF float f1; float ff; float outl; float outr; LvzInt32 note; //remember what note triggered this }; struct KGRP //keygroup { LvzInt32 root; //MIDI root note LvzInt32 high; //highest note LvzInt32 pos; LvzInt32 end; LvzInt32 loop; }; class mdaPiano : public AudioEffectX { public: mdaPiano(audioMasterCallback audioMaster); ~mdaPiano(); virtual void process(float **inputs, float **outputs, LvzInt32 sampleframes); virtual void processReplacing(float **inputs, float **outputs, LvzInt32 sampleframes); virtual LvzInt32 processEvents(LvzEvents* events); virtual void setProgram(LvzInt32 program); virtual void setProgramName(char *name); virtual void getProgramName(char *name); virtual void setParameter(LvzInt32 index, float value); virtual float getParameter(LvzInt32 index); virtual void getParameterLabel(LvzInt32 index, char *label); virtual void getParameterDisplay(LvzInt32 index, char *text); virtual void getParameterName(LvzInt32 index, char *text); virtual void setBlockSize(LvzInt32 blockSize); virtual void resume(); virtual bool getOutputProperties (LvzInt32 index, LvzPinProperties* properties); virtual bool getProgramNameIndexed (LvzInt32 category, LvzInt32 index, char* text); virtual bool copyProgram (LvzInt32 destination); virtual bool getEffectName (char* name); virtual bool getVendorString (char* text); virtual bool getProductString (char* text); virtual LvzInt32 getVendorVersion () {return 1;} virtual LvzInt32 canDo (char* text); virtual LvzInt32 getNumMidiInputChannels () { return 1; } LvzInt32 guiUpdate; void guiGetDisplay(LvzInt32 index, char *label); private: void update(); //my parameter update void noteOn(LvzInt32 note, LvzInt32 velocity); void fillpatch(LvzInt32 p, char *name, float p0, float p1, float p2, float p3, float p4, float p5, float p6, float p7, float p8, float p9, float p10,float p11); float param[NPARAMS]; mdaPianoProgram* programs; float Fs, iFs; #define EVENTBUFFER 120 #define EVENTS_DONE 99999999 LvzInt32 notes[EVENTBUFFER + 8]; //list of delta|note|velocity for current block ///global internal variables KGRP kgrp[16]; VOICE voice[NVOICES]; LvzInt32 activevoices, poly, cpos; short *waves; LvzInt32 cmax; float *comb, cdep, width, trim; LvzInt32 size, sustain; float tune, fine, random, stretch; float muff, muffvel, sizevel, velsens, volume; }; #endif