123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * Lv2Instrument.h - implementation of LV2 instrument
- *
- * Copyright (c) 2018-2020 Johannes Lorenz <jlsf2013$users.sourceforge.net, $=@>
- *
- * This file is part of LMMS - https://lmms.io
- *
- * 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.
- *
- * 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 for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program (see COPYING); if not, write to the
- * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301 USA.
- *
- */
- #ifndef LV2_INSTRUMENT_H
- #define LV2_INSTRUMENT_H
- #include <QString>
- #include "Instrument.h"
- #include "InstrumentView.h"
- #include "Note.h"
- #include "Lv2ControlBase.h"
- #include "Lv2ViewBase.h"
- // whether to use MIDI vs playHandle
- // currently only MIDI works
- #define LV2_INSTRUMENT_USE_MIDI
- class QPushButton;
- class Lv2Instrument : public Instrument, public Lv2ControlBase
- {
- Q_OBJECT
- public:
- /*
- initialization
- */
- Lv2Instrument(InstrumentTrack *instrumentTrackArg,
- Descriptor::SubPluginFeatures::Key* key);
- ~Lv2Instrument() override;
- //! Must be checked after ctor or reload
- bool isValid() const;
- /*
- load/save
- */
- void saveSettings(QDomDocument &doc, QDomElement &that) override;
- void loadSettings(const QDomElement &that) override;
- void loadFile(const QString &file) override;
- /*
- realtime funcs
- */
- bool hasNoteInput() const override { return Lv2ControlBase::hasNoteInput(); }
- #ifdef LV2_INSTRUMENT_USE_MIDI
- bool handleMidiEvent(const MidiEvent &event,
- const TimePos &time = TimePos(), f_cnt_t offset = 0) override;
- #else
- void playNote(NotePlayHandle *nph, sampleFrame *) override;
- #endif
- void play(sampleFrame *buf) override;
- /*
- misc
- */
- Flags flags() const override
- {
- #ifdef LV2_INSTRUMENT_USE_MIDI
- return IsSingleStreamed | IsMidiBased;
- #else
- return IsSingleStreamed;
- #endif
- }
- PluginView *instantiateView(QWidget *parent) override;
- private slots:
- void updatePitchRange();
- private:
- QString nodeName() const override;
- DataFile::Types settingsType() override;
- void setNameFromFile(const QString &name) override;
- #ifdef LV2_INSTRUMENT_USE_MIDI
- int m_runningNotes[NumKeys];
- #endif
- friend class Lv2InsView;
- };
- class Lv2InsView : public InstrumentView, public Lv2ViewBase
- {
- Q_OBJECT
- public:
- Lv2InsView(Lv2Instrument *_instrument, QWidget *_parent);
- protected:
- void dragEnterEvent(QDragEnterEvent *_dee) override;
- void dropEvent(QDropEvent *_de) override;
- private:
- void modelChanged() override;
- };
- #endif // LV2_INSTRUMENT_H
|