123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /*
- * patman.h - header for a GUS-compatible patch instrument plugin
- *
- * Copyright (c) 2007-2008 Javier Serrano Polo <jasp00/at/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 PATMAN_H_
- #define PATMAN_H_
- #include "Instrument.h"
- #include "InstrumentView.h"
- #include "SampleBuffer.h"
- #include "AutomatableModel.h"
- #include "MemoryManager.h"
- class PixmapButton;
- #define MODES_16BIT ( 1 << 0 )
- #define MODES_UNSIGNED ( 1 << 1 )
- #define MODES_LOOPING ( 1 << 2 )
- #define MODES_PINGPONG ( 1 << 3 )
- #define MODES_REVERSE ( 1 << 4 )
- #define MODES_SUSTAIN ( 1 << 5 )
- #define MODES_ENVELOPE ( 1 << 6 )
- #define MODES_CLAMPED ( 1 << 7 )
- class patmanInstrument : public Instrument
- {
- Q_OBJECT
- public:
- patmanInstrument( InstrumentTrack * _track );
- virtual ~patmanInstrument();
- virtual void playNote( NotePlayHandle * _n,
- sampleFrame * _working_buffer );
- virtual void deleteNotePluginData( NotePlayHandle * _n );
- virtual void saveSettings( QDomDocument & _doc, QDomElement & _parent );
- virtual void loadSettings( const QDomElement & _this );
- virtual void loadFile( const QString & _file );
- virtual QString nodeName( void ) const;
- virtual f_cnt_t desiredReleaseFrames( void ) const
- {
- return( 128 );
- }
- virtual PluginView * instantiateView( QWidget * _parent );
- public slots:
- void setFile( const QString & _patch_file, bool _rename = true );
- private:
- typedef struct
- {
- MM_OPERATORS
- SampleBuffer::handleState* state;
- bool tuned;
- SampleBuffer* sample;
- } handle_data;
- QString m_patchFile;
- QVector<SampleBuffer *> m_patchSamples;
- BoolModel m_loopedModel;
- BoolModel m_tunedModel;
- enum LoadErrors
- {
- LoadOK,
- LoadOpen,
- LoadNotGUS,
- LoadInstruments,
- LoadLayers,
- LoadIO
- } ;
- LoadErrors loadPatch( const QString & _filename );
- void unloadCurrentPatch( void );
- void selectSample( NotePlayHandle * _n );
- friend class PatmanView;
- signals:
- void fileChanged( void );
- } ;
- class PatmanView : public InstrumentViewFixedSize
- {
- Q_OBJECT
- public:
- PatmanView( Instrument * _instrument, QWidget * _parent );
- virtual ~PatmanView();
- public slots:
- void openFile( void );
- void updateFilename( void );
- protected:
- virtual void dragEnterEvent( QDragEnterEvent * _dee );
- virtual void dropEvent( QDropEvent * _de );
- virtual void paintEvent( QPaintEvent * );
- private:
- virtual void modelChanged( void );
- patmanInstrument * m_pi;
- QString m_displayFilename;
- PixmapButton * m_openFileButton;
- PixmapButton * m_loopButton;
- PixmapButton * m_tuneButton;
- } ;
- #endif
|