mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-03 12:08:07 -05:00
321 lines
6.4 KiB
C++
321 lines
6.4 KiB
C++
/*
|
|
* SampleTrack.h - class SampleTrack, a track which provides arrangement of samples
|
|
*
|
|
* 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 SAMPLE_TRACK_H
|
|
#define SAMPLE_TRACK_H
|
|
|
|
#include <QDialog>
|
|
#include <QLayout>
|
|
|
|
#include "AudioPort.h"
|
|
#include "FadeButton.h"
|
|
#include "FxMixer.h"
|
|
#include "FxLineLcdSpinBox.h"
|
|
#include "Track.h"
|
|
|
|
class EffectRackView;
|
|
class Knob;
|
|
class SampleBuffer;
|
|
class SampleTrackWindow;
|
|
class TrackLabelButton;
|
|
class QLineEdit;
|
|
|
|
|
|
class SampleTCO : public TrackContentObject
|
|
{
|
|
Q_OBJECT
|
|
mapPropertyFromModel(bool,isRecord,setRecord,m_recordModel);
|
|
public:
|
|
SampleTCO( Track * _track );
|
|
virtual ~SampleTCO();
|
|
|
|
void changeLength( const MidiTime & _length ) override;
|
|
const QString & sampleFile() const;
|
|
|
|
void saveSettings( QDomDocument & _doc, QDomElement & _parent ) override;
|
|
void loadSettings( const QDomElement & _this ) override;
|
|
inline QString nodeName() const override
|
|
{
|
|
return "sampletco";
|
|
}
|
|
|
|
SampleBuffer* sampleBuffer()
|
|
{
|
|
return m_sampleBuffer;
|
|
}
|
|
|
|
MidiTime sampleLength() const;
|
|
void setSampleStartFrame( f_cnt_t startFrame );
|
|
void setSamplePlayLength( f_cnt_t length );
|
|
TrackContentObjectView * createView( TrackView * _tv ) override;
|
|
|
|
|
|
bool isPlaying() const;
|
|
void setIsPlaying(bool isPlaying);
|
|
|
|
public slots:
|
|
void setSampleBuffer( SampleBuffer* sb );
|
|
void setSampleFile( const QString & _sf );
|
|
void updateLength();
|
|
void toggleRecord();
|
|
void playbackPositionChanged();
|
|
void updateTrackTcos();
|
|
|
|
|
|
private:
|
|
SampleBuffer* m_sampleBuffer;
|
|
BoolModel m_recordModel;
|
|
bool m_isPlaying;
|
|
|
|
|
|
friend class SampleTCOView;
|
|
|
|
|
|
signals:
|
|
void sampleChanged();
|
|
|
|
} ;
|
|
|
|
|
|
|
|
class SampleTCOView : public TrackContentObjectView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SampleTCOView( SampleTCO * _tco, TrackView * _tv );
|
|
virtual ~SampleTCOView() = default;
|
|
|
|
public slots:
|
|
void updateSample();
|
|
|
|
|
|
|
|
protected:
|
|
void contextMenuEvent( QContextMenuEvent * _cme ) override;
|
|
void mousePressEvent( QMouseEvent * _me ) override;
|
|
void mouseReleaseEvent( QMouseEvent * _me ) override;
|
|
void dragEnterEvent( QDragEnterEvent * _dee ) override;
|
|
void dropEvent( QDropEvent * _de ) override;
|
|
void mouseDoubleClickEvent( QMouseEvent * ) override;
|
|
void paintEvent( QPaintEvent * ) override;
|
|
|
|
|
|
private:
|
|
SampleTCO * m_tco;
|
|
QPixmap m_paintPixmap;
|
|
} ;
|
|
|
|
|
|
|
|
|
|
class SampleTrack : public Track
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SampleTrack( TrackContainer* tc );
|
|
virtual ~SampleTrack();
|
|
|
|
virtual bool play( const MidiTime & _start, const fpp_t _frames,
|
|
const f_cnt_t _frame_base, int _tco_num = -1 ) override;
|
|
TrackView * createView( TrackContainerView* tcv ) override;
|
|
TrackContentObject * createTCO( const MidiTime & _pos ) override;
|
|
|
|
|
|
virtual void saveTrackSpecificSettings( QDomDocument & _doc,
|
|
QDomElement & _parent ) override;
|
|
void loadTrackSpecificSettings( const QDomElement & _this ) override;
|
|
|
|
inline IntModel * effectChannelModel()
|
|
{
|
|
return &m_effectChannelModel;
|
|
}
|
|
|
|
inline AudioPort * audioPort()
|
|
{
|
|
return &m_audioPort;
|
|
}
|
|
|
|
QString nodeName() const override
|
|
{
|
|
return "sampletrack";
|
|
}
|
|
|
|
bool isPlaying()
|
|
{
|
|
return m_isPlaying;
|
|
}
|
|
|
|
void setPlaying(bool playing)
|
|
{
|
|
if (m_isPlaying != playing) { emit playingChanged(); }
|
|
m_isPlaying = playing;
|
|
}
|
|
|
|
signals:
|
|
void playingChanged();
|
|
|
|
public slots:
|
|
void updateTcos();
|
|
void setPlayingTcos( bool isPlaying );
|
|
void updateEffectChannel();
|
|
|
|
private:
|
|
FloatModel m_volumeModel;
|
|
FloatModel m_panningModel;
|
|
IntModel m_effectChannelModel;
|
|
AudioPort m_audioPort;
|
|
bool m_isPlaying;
|
|
|
|
|
|
|
|
friend class SampleTrackView;
|
|
friend class SampleTrackWindow;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
class SampleTrackView : public TrackView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SampleTrackView( SampleTrack* Track, TrackContainerView* tcv );
|
|
virtual ~SampleTrackView();
|
|
|
|
SampleTrackWindow * getSampleTrackWindow()
|
|
{
|
|
return m_window;
|
|
}
|
|
|
|
SampleTrack * model()
|
|
{
|
|
return castModel<SampleTrack>();
|
|
}
|
|
|
|
const SampleTrack * model() const
|
|
{
|
|
return castModel<SampleTrack>();
|
|
}
|
|
|
|
|
|
QMenu * createFxMenu( QString title, QString newFxLabel ) override;
|
|
|
|
|
|
public slots:
|
|
void showEffects();
|
|
void updateIndicator();
|
|
|
|
|
|
protected:
|
|
void modelChanged() override;
|
|
QString nodeName() const override
|
|
{
|
|
return "SampleTrackView";
|
|
}
|
|
|
|
void dragEnterEvent(QDragEnterEvent *dee) override;
|
|
void dropEvent(QDropEvent *de) override;
|
|
|
|
private slots:
|
|
void assignFxLine( int channelIndex );
|
|
void createFxLine();
|
|
|
|
|
|
private:
|
|
SampleTrackWindow * m_window;
|
|
Knob * m_volumeKnob;
|
|
Knob * m_panningKnob;
|
|
FadeButton * m_activityIndicator;
|
|
|
|
TrackLabelButton * m_tlb;
|
|
|
|
FadeButton * getActivityIndicator()
|
|
{
|
|
return m_activityIndicator;
|
|
}
|
|
|
|
friend class SampleTrackWindow;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
class SampleTrackWindow : public QWidget, public ModelView, public SerializingObjectHook
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SampleTrackWindow(SampleTrackView * tv);
|
|
virtual ~SampleTrackWindow();
|
|
|
|
SampleTrack * model()
|
|
{
|
|
return castModel<SampleTrack>();
|
|
}
|
|
|
|
const SampleTrack * model() const
|
|
{
|
|
return castModel<SampleTrack>();
|
|
}
|
|
|
|
void setSampleTrackView(SampleTrackView * tv);
|
|
|
|
SampleTrackView *sampleTrackView()
|
|
{
|
|
return m_stv;
|
|
}
|
|
|
|
|
|
public slots:
|
|
void textChanged(const QString & new_name);
|
|
void toggleVisibility(bool on);
|
|
void updateName();
|
|
|
|
|
|
protected:
|
|
// capture close-events for toggling sample-track-button
|
|
void closeEvent(QCloseEvent * ce) override;
|
|
|
|
void saveSettings(QDomDocument & doc, QDomElement & element) override;
|
|
void loadSettings(const QDomElement & element) override;
|
|
|
|
private:
|
|
void modelChanged() override;
|
|
|
|
SampleTrack * m_track;
|
|
SampleTrackView * m_stv;
|
|
|
|
// widgets on the top of an sample-track-window
|
|
QLineEdit * m_nameLineEdit;
|
|
Knob * m_volumeKnob;
|
|
Knob * m_panningKnob;
|
|
FxLineLcdSpinBox * m_effectChannelNumber;
|
|
|
|
EffectRackView * m_effectRack;
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|