mirror of
https://github.com/LMMS/lmms.git
synced 2025-12-31 02:28:05 -05:00
* Replace QVector with std::vector in AudioEngine * Replace QVector with std::vector in AudioEngineWorkerThread * Replace QVector with std::vector in AudioJack * Replace QVector with std::vector in AutomatableModel * Replace QVector with std::vector in AutomationClip * Replace QVector with std::vector in AutomationEditor * Replace QVector with std::vector in ConfigManager * Replace QVector with std::vector in Controller * Replace QVector with std::vector in ControllerConnection * Replace QVector with std::vector in EffectChain * Replace QVector with std::vector in EnvelopeAndLfoParameters * Replace QVector with std::vector in InstrumentFunctions * Replace QVector with std::vector in MidiClient * Replace QVector with std::vector in Mixer * Replace QVector with std::vector in Note * Replace QVector with std::vector in PeakController * Replace QVector with std::vector in PianoRoll * Replace QVector with std::vector in PluginFactory * Replace QVector with std::vector in RenderManager * Replace QVector with std::vector in StepRecorder * Replace QVector with std::vector in Track * Replace QVector with std::vector in TrackContainer * Replace QVector with std::vector in Song * Adapt QVector to std::vector changes in ControllerConnectionDialog * Phase 2: Use std::abs in panning.h Without this, the QVector changes will make the code not compile. * Phase 2: Replace QVector with std::vector in PeakControllerEffect * Phase 2: Replace QVector with std::vector in AutomatableModel * Phase 2: Replace QVector with std::vector in AutomationClip * Phase 2: Replace QVector with std::vector in ControllerConnection * Phase 2: Replace QVector with std::vector in EffectChain * Phase 2: Replace QVector with std::vector in Mixer * Phase 2: Replace QVector with std::vector in PeakController * Phase 2: Replace QVector with std::vector in RenderManager * Phase 2: Replace QVector with std::vector in Song * Phase 2: Replace QVector with std::vector in StepRecorder * Phase 2: Replace QVector with std::vector in Track * Phase 2: Replace QVector with std::vector in TrackContainer * Phase 2: Adapt QVector changes in EffectRackView * Phase 2: Adapt QVector changes in AutomationClipView * Phase 2: Adapt QVector changes in ClipView * Phase 2: Adapt QVector changes in AutomationEditor * Phase 2: Adapt QVector changes in PianoRoll * Phase 2: Adapt QVector changes in TrackContainerView * Phase 2: Adapt QVector changes in TrackContentWidget * Phase 2: Adapt QVector changes in InstrumentTrack * Phase 2: Adapt QVector changes in MidiClip * Phase 2: Adapt QVector changes in SampleTrack * Fix segmentation fault in ConfigManager::value * Fix unintended faulty std::vector insert in AutomationClip::resolveAllIDs * Resolve trailing whitespace in src/core/StepRecorder.cpp Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> * Use std::next and std::prev in EffectChain::moveUp/moveDown * Introduce static "combineAllTracks" function in AutomationClip * Adjust variable name in Song::automatedValuesAt * Adjust removal of long step notes in StepRecorder::removeNotesReleasedForTooLong * Iterate over m_chords by const reference in src/core/InstrumentFunctions.cpp Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> * Fix StepRecorder::removeNotesReleasedForTooLong again * Combine the ConfigManager::value overloads using std::optional * Revise StepRecorder::removeNotesReleasedForTooLong * Remove redundant std::optional in ConfigManager::value * Remove trailing whitespace in ConfigManager::value * Fix: Prevent incorrect use of std::distance when element not found * Chore: Remove trailing whitespace in edited files * Only set the id attribute if the controller was found Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> * Remove extra indents from 84b8fe8a559855ed263b74cc582eab3655250c5f * Fix compilation issues * Add LMMS_ prefix for header guard in Track.h * Undo changes made to MixerView::deleteUnusedChannels * Simplify code to handle failure of finding tracks Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> * Split ternary operator into separate if statement Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> * Undo changes to indentation in MixerRoute * Do general clean-up Some of the changes made: + Use auto where benefical + Fix bug in AutomatableModel::globalAutomationValueAt (for loop should be looping over clips variable, not clipsInRange) + Undo out of focus whitespace changes * Always assign to m_steps regardless if clip is found or not Even when the clip is not found (i.e., currentClip is -1), m_steps still gets assigned to. * Insert at the end of tracks vector in src/core/Mixer.cpp Co-authored-by: Dominic Clark <mrdomclark@gmail.com> * Insert at the end of tracks vector in src/core/Mixer.cpp (2) Co-authored-by: Dominic Clark <mrdomclark@gmail.com> * Remove redundant template parameter * Use std::array for zoomLevels --------- Co-authored-by: Hyunjin Song <tteu.ingog@gmail.com> Co-authored-by: Dominic Clark <mrdomclark@gmail.com>
177 lines
4.4 KiB
C++
177 lines
4.4 KiB
C++
/*
|
|
* MidiClient.h - base-class for MIDI clients like ALSA-sequencer-client
|
|
*
|
|
* Copyright (c) 2005-2014 Tobias Doerffel <tobydox/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 LMMS_MIDI_CLIENT_H
|
|
#define LMMS_MIDI_CLIENT_H
|
|
|
|
#include <QStringList>
|
|
#include <vector>
|
|
|
|
|
|
#include "MidiEvent.h"
|
|
|
|
class QObject;
|
|
|
|
|
|
namespace lmms
|
|
{
|
|
|
|
class MidiPort;
|
|
class TimePos;
|
|
|
|
|
|
// base-class for all MIDI-clients
|
|
class MidiClient
|
|
{
|
|
public:
|
|
MidiClient() = default;
|
|
virtual ~MidiClient();
|
|
|
|
// to be implemented by sub-classes
|
|
virtual void processOutEvent( const MidiEvent & _me,
|
|
const TimePos & _time,
|
|
const MidiPort * _port ) = 0;
|
|
|
|
// inheriting classes can re-implement this for being able to update
|
|
// their internal port-structures etc.
|
|
virtual void applyPortMode( MidiPort * _port );
|
|
virtual void applyPortName( MidiPort * _port );
|
|
|
|
virtual void addPort( MidiPort * _port );
|
|
|
|
// re-implemented methods HAVE to call removePort() of base-class!!
|
|
virtual void removePort( MidiPort * _port );
|
|
|
|
|
|
// returns whether client works with raw-MIDI, only needs to be
|
|
// re-implemented by MidiClientRaw for returning true
|
|
virtual bool isRaw() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// if not raw-client, return all readable/writable ports
|
|
virtual QStringList readablePorts() const
|
|
{
|
|
return QStringList();
|
|
}
|
|
virtual QStringList writablePorts() const
|
|
{
|
|
return QStringList();
|
|
}
|
|
|
|
// return name of port which specified MIDI event came from
|
|
virtual QString sourcePortName( const MidiEvent & ) const
|
|
{
|
|
return QString();
|
|
}
|
|
|
|
|
|
// (un)subscribe given MidiPort to/from destination-port
|
|
virtual void subscribeReadablePort( MidiPort * _port,
|
|
const QString & _dest,
|
|
bool _subscribe = true );
|
|
virtual void subscribeWritablePort( MidiPort * _port,
|
|
const QString & _dest,
|
|
bool _subscribe = true );
|
|
|
|
// qobject-derived classes can use this for make a slot being
|
|
// connected to signal of non-raw-MIDI-client if port-lists change
|
|
virtual void connectRPChanged( QObject *, const char * )
|
|
{
|
|
}
|
|
|
|
virtual void connectWPChanged( QObject *, const char * )
|
|
{
|
|
}
|
|
|
|
// tries to open either MIDI-driver from config-file or (if it fails)
|
|
// any other working
|
|
static MidiClient * openMidiClient();
|
|
|
|
protected:
|
|
std::vector<MidiPort *> m_midiPorts;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
const uint32_t RAW_MIDI_PARSE_BUF_SIZE = 16;
|
|
|
|
|
|
class MidiClientRaw : public MidiClient
|
|
{
|
|
public:
|
|
MidiClientRaw() = default;
|
|
~MidiClientRaw() override = default;
|
|
|
|
// we are raw-clients for sure!
|
|
bool isRaw() const override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
protected:
|
|
// generic raw-MIDI-parser which generates appropriate MIDI-events
|
|
void parseData( const unsigned char c );
|
|
|
|
// to be implemented by actual client-implementation
|
|
virtual void sendByte( const unsigned char c ) = 0;
|
|
|
|
|
|
private:
|
|
// this does MIDI-event-process
|
|
void processParsedEvent();
|
|
void processOutEvent( const MidiEvent& event, const TimePos& time, const MidiPort* port ) override;
|
|
|
|
// small helper function returning length of a certain event - this
|
|
// is necessary for parsing raw-MIDI-data
|
|
static int eventLength( const unsigned char event );
|
|
|
|
|
|
// data being used for parsing
|
|
struct midiParserData
|
|
{
|
|
uint8_t m_status; // identifies the type of event, that
|
|
// is currently received ('Noteon',
|
|
// 'Pitch Bend' etc).
|
|
uint8_t m_channel; // The channel of the event that is
|
|
// received (in case of a channel event)
|
|
uint32_t m_bytes; // How many bytes have been read for
|
|
// the current event?
|
|
uint32_t m_bytesTotal; // How many bytes does the current
|
|
// event type include?
|
|
uint32_t m_buffer[RAW_MIDI_PARSE_BUF_SIZE];
|
|
// buffer for incoming data
|
|
MidiEvent m_midiEvent; // midi-event
|
|
} m_midiParseData;
|
|
|
|
} ;
|
|
|
|
} // namespace lmms
|
|
|
|
#endif // LMMS_MIDI_CLIENT_H
|