mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-23 22:08:02 -05:00
- currently only affects Vestige
- no idea whether this can also be used for Zyn and OpulenZ, I'm not sure if Zyn has any kind of mechanism for communicating frame offset to the synth, as for OpulenZ, @softrabbit would know the answer better
- basically, I made it happen by simply adding an extra parameter in the processMidi{In|Out} functions, which is 0 by default, and made the necessary changes in instrumentTrack and nph to utilize it
- I based this against 1.1 because I didn't think it's a very big change, and I don't see much possibility for things going wrong here, since we're basically just using the existing functionality in Vestige (there already was a frame offset being communicated to the remote plugin, just that it was always set to 0). However, if @tobydox thinks this is better to bump up to 1.2, I can rebase it for master...
85 lines
2.1 KiB
C++
85 lines
2.1 KiB
C++
/*
|
|
* MidiController.h - A controller to receive MIDI control-changes
|
|
*
|
|
* Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail.com>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* 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 MIDI_CONTROLLER_H
|
|
#define MIDI_CONTROLLER_H
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include "AutomatableModel.h"
|
|
#include "Controller.h"
|
|
#include "MidiEventProcessor.h"
|
|
#include "MidiPort.h"
|
|
|
|
|
|
class MidiPort;
|
|
|
|
|
|
class MidiController : public Controller, public MidiEventProcessor
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MidiController( Model * _parent );
|
|
virtual ~MidiController();
|
|
|
|
virtual void processInEvent( const MidiEvent & _me,
|
|
const MidiTime & _time, f_cnt_t offset = 0 );
|
|
|
|
virtual void processOutEvent( const MidiEvent& _me,
|
|
const MidiTime & _time, f_cnt_t offset = 0 )
|
|
{
|
|
// No output yet
|
|
}
|
|
|
|
virtual void saveSettings( QDomDocument & _doc, QDomElement & _this );
|
|
virtual void loadSettings( const QDomElement & _this );
|
|
virtual QString nodeName() const;
|
|
|
|
// Used by controllerConnectionDialog to copy
|
|
void subscribeReadablePorts( const MidiPort::Map & _map );
|
|
|
|
|
|
public slots:
|
|
virtual ControllerDialog * createDialog( QWidget * _parent );
|
|
void updateName();
|
|
|
|
|
|
protected:
|
|
// The internal per-controller get-value function
|
|
virtual float value( int _offset );
|
|
|
|
|
|
MidiPort m_midiPort;
|
|
|
|
|
|
float m_lastValue;
|
|
|
|
friend class ControllerConnectionDialog;
|
|
friend class AutoDetectMidiController;
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|