mirror of
https://github.com/LMMS/lmms.git
synced 2026-02-05 12:13:40 -05:00
153 lines
3.2 KiB
C++
153 lines
3.2 KiB
C++
/*
|
|
* 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 - http://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 InstrumentView
|
|
{
|
|
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
|