-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move onto drumstick and ditch portsmf
* Added Cakewalk file format import support * Added Overture file format import support * Enhanced MIDI CC Message handling
Showing
39 changed files
with
1,656 additions
and
7,312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* smfMidiCC.h - support for importing MIDI files | ||
* | ||
* Copyright (c) 2005-2014 Tobias Doerffel <tobydox/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 SMF_MIDI_CC_H | ||
#define SMF_MIDI_CC_H | ||
|
||
#include <QApplication> | ||
|
||
#include "TrackContainer.h" | ||
#include "AutomationTrack.h" | ||
#include "AutomationPattern.h" | ||
#include "MidiTime.h" | ||
|
||
class SmfMidiCC | ||
{ | ||
|
||
public: | ||
SmfMidiCC(); | ||
|
||
AutomationTrack * at; | ||
AutomationPattern * ap; | ||
MidiTime lastPos; | ||
|
||
SmfMidiCC & create(TrackContainer* tc, QString tn ); | ||
SmfMidiCC & putValue( MidiTime time, AutomatableModel * objModel, float value ); | ||
void clear(); | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* smfMidiChannel.h - support for importing MIDI files | ||
* | ||
* Copyright (c) 2005-2014 Tobias Doerffel <tobydox/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 SMF_MIDI_CHANNEL_H | ||
#define SMF_MIDI_CHANNEL_H | ||
|
||
#include <QApplication> | ||
|
||
#include "InstrumentTrack.h" | ||
#include "Pattern.h" | ||
#include "Instrument.h" | ||
#include "MidiTime.h" | ||
|
||
|
||
|
||
|
||
class SmfMidiChannel | ||
{ | ||
|
||
public: | ||
SmfMidiChannel(); | ||
|
||
InstrumentTrack * it; | ||
Pattern* p; | ||
Instrument * it_inst; | ||
bool isSF2; | ||
bool hasNotes; | ||
MidiTime lastEnd; | ||
QString trackName; | ||
|
||
SmfMidiChannel * create( TrackContainer* tc, QString tn ); | ||
|
||
void addNote( Note & n ); | ||
|
||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.