/* ZynAddSubFX - a software synthesizer JackEngine.h - Jack Driver Copyright 2009, Alan Calvert 2014, Mark McCurry 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 or later) 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 JACK_ENGINE_H #define JACK_ENGINE_H #include #include #include #include #include #include "MidiIn.h" #include "AudioOut.h" typedef jack_default_audio_sample_t jsample_t; class JackEngine:public AudioOut, MidiIn { public: JackEngine(const SYNTH_T &synth); ~JackEngine() { } bool Start(); void Stop(); void setMidiEn(bool nval); bool getMidiEn() const; void setAudioEn(bool nval); bool getAudioEn() const; int getBuffersize() { return audio.jackNframes; } std::string clientName(); int clientId(); protected: int processCallback(jack_nframes_t nframes); static int _processCallback(jack_nframes_t nframes, void *arg); int bufferSizeCallback(jack_nframes_t nframes); static int _bufferSizeCallback(jack_nframes_t nframes, void *arg); static void _errorCallback(const char *msg); static void _infoCallback(const char *msg); static int _xrunCallback(void *arg); private: bool connectServer(std::string server); bool connectJack(); void disconnectJack(); bool openAudio(); void stopAudio(); bool processAudio(jack_nframes_t nframes); bool openMidi(); void stopMidi(); jack_client_t *jackClient; struct audio { unsigned int jackSamplerate; unsigned int jackNframes; jack_port_t *ports[2]; jsample_t *portBuffs[2]; } audio; struct osc { jack_port_t *oscport; } osc; struct midi { jack_port_t *inport; bool jack_sync; } midi; void handleMidi(unsigned long frames); }; #endif