summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNil Geisweiller <a-lin@sourceforge.net>2006-12-29 17:55:00 +0000
committerNil Geisweiller <a-lin@sourceforge.net>2006-12-29 17:55:00 +0000
commita271de08004bc45eba8fc5f766d58b1090abfd2b (patch)
tree14c970fe79a738dac9825665f63f698d17ee4925
parentfde27296b934fde533cdc47a8db7f7db50290922 (diff)
see ChangeLog
-rw-r--r--muse/ChangeLog3
-rw-r--r--muse/muse/midiedit/miditracker.cpp12
-rw-r--r--muse/muse/midiedit/miditracker.h3
-rw-r--r--muse/muse/midiedit/trackpattern.cpp208
-rw-r--r--muse/muse/midiedit/trackpattern.h48
-rw-r--r--muse/synti/deicsonze/deicsonze.cpp5
6 files changed, 211 insertions, 68 deletions
diff --git a/muse/ChangeLog b/muse/ChangeLog
index 3d124340..6612d080 100644
--- a/muse/ChangeLog
+++ b/muse/ChangeLog
@@ -1,3 +1,6 @@
+29.12 (ng)
+ - fixed sync LFO Deicsonze
+ - update II miditracker (not working yet)
27.12 (ng)
- deleted getBankName and getPatchInfo of zynaddsubfx
- add gradient color for the tracks
diff --git a/muse/muse/midiedit/miditracker.cpp b/muse/muse/midiedit/miditracker.cpp
index af87d513..f0b6b961 100644
--- a/muse/muse/midiedit/miditracker.cpp
+++ b/muse/muse/midiedit/miditracker.cpp
@@ -107,8 +107,8 @@ MidiTrackerEditor::MidiTrackerEditor(PartList* pl, bool /*init*/)
//-------------
//timing matrix
//-------------
-// TimingPattern* timingPattern =
-// new TimingPattern(this, "Timing", firstTick, lastTick, _quant);
+ _timingPattern =
+ new TimingPattern(this, "Timing", firstTick, lastTick, _quant);
//---------------
//tracks matrices
@@ -122,7 +122,8 @@ MidiTrackerEditor::MidiTrackerEditor(PartList* pl, bool /*init*/)
if(_trackPatterns[i]->getTrack()==track) trackNotFound = false;
if(trackNotFound) {
TrackPattern* tp;
- tp = new TrackPattern(this, firstTick, _quant, pl, (MidiTrack*) track);
+ tp = new TrackPattern(this, track->name(), firstTick, lastTick,
+ _quant, pl, (MidiTrack*) track);
_trackPatterns.push_back(tp);
}
}
@@ -227,3 +228,8 @@ void MidiTrackerEditor::cmd(QAction* /*a*/) {
//canvas()->cmd(cmd, _quantStrength, _quantLimit, _quantLen);
}
+//void MidiTrackerEditor::resizeEvent(QResizeEvent *event) {
+// for(int i = 0; i < _trackPatterns.size(); i++)
+// _trackPatterns[i]->fillTrackPat();
+// _timingPattern->fillTimmingPat();
+//}
diff --git a/muse/muse/midiedit/miditracker.h b/muse/muse/midiedit/miditracker.h
index 1ee3e831..edff20ee 100644
--- a/muse/muse/midiedit/miditracker.h
+++ b/muse/muse/midiedit/miditracker.h
@@ -38,6 +38,7 @@ class MidiTrackerEditor : public MidiEditor {
void setFollow(bool);
std::vector<TrackPattern*> _trackPatterns;
+ TimingPattern* _timingPattern;
private slots:
virtual void cmd(QAction*);
@@ -58,6 +59,8 @@ class MidiTrackerEditor : public MidiEditor {
static const bool INIT_SREC = false;
static const bool INIT_MIDIIN = false;
+ protected:
+ //void resizeEvent(QResizeEvent *event);
};
#endif
diff --git a/muse/muse/midiedit/trackpattern.cpp b/muse/muse/midiedit/trackpattern.cpp
index 3a1fae64..781879f3 100644
--- a/muse/muse/midiedit/trackpattern.cpp
+++ b/muse/muse/midiedit/trackpattern.cpp
@@ -13,6 +13,8 @@ class EventList;
//#define FONT "Console"
//#define FONT "Monospace"
#define FONT "MiscFixed"
+#define FONT_HEIGHT 14
+#define OFFSET_Y 4
//----------------------------------------------------------
// EventPat
@@ -34,14 +36,22 @@ VoiceEventPat::VoiceEventPat(int n, int v):EventPat(false, true) {
_noteNum = n;
_velocity = v;
}
+
VoiceEventPat::VoiceEventPat(bool e, bool r):EventPat(e, r) {}
+
VoiceEventPat::VoiceEventPat():EventPat(true, true) {}
+
VoiceEventPat::~VoiceEventPat() {}
+
void VoiceEventPat::setNoteNum(int n) { _noteNum = n; }
+
int VoiceEventPat::getNoteNum() { return _noteNum; }
+
void VoiceEventPat::setVelocity(int n) { _velocity = n; }
+
int VoiceEventPat::getVelocity() { return _velocity; }
+
QString VoiceEventPat::str() {
if(_isEmpty) {
return QString(EMPTYCHAR EMPTYCHAR EMPTYCHAR EMPTYCHAR)
@@ -114,13 +124,20 @@ CtrlEventPat::CtrlEventPat(int c, int v):EventPat(false, true) {
_ctrlNum = c;
_value = v;
}
+
CtrlEventPat::CtrlEventPat():EventPat(true, true) {}
+
CtrlEventPat::~CtrlEventPat() {}
+
void CtrlEventPat::setCtrlNum(int n) { _ctrlNum = n; }
+
int CtrlEventPat::getCtrlNum() { return _ctrlNum; }
+
void CtrlEventPat::setValue(int n) { _value = n; }
+
int CtrlEventPat::getValue() { return _value; }
+
QString CtrlEventPat::str() {
//TODO
if(_isReadable) {
@@ -140,6 +157,8 @@ QString CtrlEventPat::str() {
//----------------------------------------------------------
// BasePat
//----------------------------------------------------------
+BasePat::BasePat() {
+}
BasePat::BasePat(QString name, unsigned firstTick,
unsigned lastTick, int quant) {
_name = name;
@@ -170,10 +189,12 @@ VoicePat::VoicePat(QString name, unsigned firstTick, unsigned lastTick,
int quant):BasePat(name, firstTick, lastTick, quant) {
_events = new EventList();
}
+
VoicePat::~VoicePat() {
delete(_events);
}
+
std::vector<VoiceEventPat*> VoicePat::getEventsCol() {
return _eventsCol;
}
@@ -239,17 +260,63 @@ bool VoicePat::isFreeSpace(const Event* e, unsigned tick) {
//----------------------------------------------------------
CtrlPat::CtrlPat(QString /*name*/) {
}
+
CtrlPat::~CtrlPat() {}
-//------------------------------------------------------
+//----------------------------------------------------------
+// BaseTrackPat
+//----------------------------------------------------------
+BaseTrackPat::BaseTrackPat(QMainWindow* parent) {
+ _parent = parent;
+ _currentRow = 0;
+ _numRow = 0;
+}
+
+BaseTrackPat::~BaseTrackPat() {
+}
+
+void BaseTrackPat::setNumRow(unsigned nr) {
+ _numRow = nr;
+}
+
+unsigned BaseTrackPat::getNumRow() {
+ return _numRow;
+}
+
+unsigned BaseTrackPat::getRowMag() {
+ return (unsigned) height()/FONT_HEIGHT - OFFSET_Y;
+}
+
+unsigned BaseTrackPat::getCurTreeRow() {
+ unsigned rmd2 = getRowMag()/2;
+ if(_currentRow < rmd2) return _currentRow;
+ else if(_currentRow > getNumRow() - rmd2)
+ return _currentRow - getNumRow() + getRowMag();
+ else return rmd2;
+}
+
+unsigned BaseTrackPat::getLowRow() {
+ unsigned rmd2 = getRowMag()/2;
+ if(_currentRow < rmd2) return 0;
+ else if(_currentRow > getNumRow() - rmd2)
+ return _tree->topLevelItemCount() - getRowMag();
+ else return _currentRow - rmd2;
+}
+
+unsigned BaseTrackPat::getUpRow() {
+ return getLowRow() + getRowMag();
+}
+
+//----------------------------------------------------------
// TrackPattern
-//------------------------------------------------------
-TrackPattern::TrackPattern(QMainWindow* parent, unsigned firstTick,
- int quant, PartList* pl, MidiTrack* t) {
+//----------------------------------------------------------
+TrackPattern::TrackPattern(QMainWindow* parent, QString name,
+ unsigned firstTick, unsigned lastTick,
+ int quant, PartList* pl, MidiTrack* t)
+ : BaseTrackPat(parent), BasePat(name, firstTick, lastTick, quant) {
+
//set attributs
_track = t;
- _quant = quant;
- _firstTick = firstTick;
//build the list of parts belonging to track t
_partList = new PartList;
@@ -260,31 +327,22 @@ TrackPattern::TrackPattern(QMainWindow* parent, unsigned firstTick,
}
//build the matrix of events
- for(ciPart p = _partList->begin(); p != _partList->end(); p++) {
- Part* part = p->second;
- EventList* events = part->events();
- for(ciEvent e = events->begin(); e != events->end(); e++) {
- const Event* event = &e->second;
- unsigned rescaledTick = part->tick() + event->tick() - _firstTick;
- add(event, rescaledTick);
- }
- }
+ buildEventMatrix();
- //build the dockWidget
- _dock = new QDockWidget(_track->name());
- _dock->setFeatures(QDockWidget::DockWidgetClosable |
- QDockWidget::DockWidgetMovable);
- parent->addDockWidget(Qt::LeftDockWidgetArea, _dock, Qt::Horizontal);
+ //configure and add the dockWidget
+ setWindowTitle(_track->name());
+ setFeatures(QDockWidget::DockWidgetClosable |QDockWidget::DockWidgetMovable);
+ parent->addDockWidget(Qt::LeftDockWidgetArea, this, Qt::Horizontal);
//build the treeWidget
- _tree = new QTreeWidget(_dock);
+ _tree = new QTreeWidget(this);
_tree->setColumnCount(_voiceColumns.size() + _ctrlColumns.size());
QStringList headerLabels;
for(unsigned i = 0; i < _voiceColumns.size(); i++) {
headerLabels += QStringList(_voiceColumns[i]->getName());
}
for(unsigned i = 0; i < _ctrlColumns.size(); i++) {
- //TODO
+ //TODO CTRL
//headerLabels += QStringList(_ctrlColumns[i]->getName());
}
_tree->setHeaderLabels(headerLabels);
@@ -294,22 +352,12 @@ TrackPattern::TrackPattern(QMainWindow* parent, unsigned firstTick,
QFont font =_tree->font();
font.setFamily(FONT);
_tree->setFont(font);
- _dock->setWidget(_tree);
+ setWidget(_tree);
//fill the treeWidget
- for(unsigned i = 0; i < _voiceColumns.size(); i++) {
- for(unsigned j = 0; j < _voiceColumns[i]->getEventsCol().size(); j++) {
- QTreeWidgetItem* item = _tree->topLevelItem(j);
- if(!item) item = new QTreeWidgetItem(_tree);
- VoiceEventPat* vep = (_voiceColumns[i]->getEventsCol())[j];
- if(vep) item->setText(i, vep->str());
- }
- }
- for(unsigned i = 0; i < _ctrlColumns.size(); i++) {
- //TODO CTRL
- }
-
+ fillTrackPat();
+ //Resize the columns
for(unsigned i = 0; i < _voiceColumns.size(); i++)
_tree->resizeColumnToContents(i);
@@ -343,6 +391,43 @@ void TrackPattern::setQuant(int /*quant*/) {
//TODO
}
+void TrackPattern::buildEventMatrix() {
+ _numRow = tick2row(_lastTick) - tick2row(_firstTick);
+ for(ciPart p = _partList->begin(); p != _partList->end(); p++) {
+ Part* part = p->second;
+ EventList* events = part->events();
+ for(ciEvent e = events->begin(); e != events->end(); e++) {
+ const Event* event = &e->second;
+ unsigned rescaledTick = part->tick() + event->tick() - _firstTick;
+ add(event, rescaledTick);
+ }
+ }
+}
+
+void TrackPattern::fillTrackPat() {
+ getRowMag();
+ _tree->clear();
+ for(unsigned i = 0; i < _voiceColumns.size(); i++) {
+ for(unsigned j = getLowRow(); j < getUpRow(); j++) {
+ QTreeWidgetItem* item = _tree->topLevelItem(j);
+ if(!item) item = new QTreeWidgetItem(_tree);
+ VoiceEventPat* vep = (_voiceColumns[i]->getEventsCol())[j];
+ if(vep) item->setText(i, vep->str());
+ }
+ }
+ for(unsigned i = 0; i < _ctrlColumns.size(); i++) {
+ //TODO CTRL
+ }
+
+ //select the line corresponding to the current row
+ QTreeWidgetItem* item = _tree->topLevelItem(getCurTreeRow());
+ item->setSelected(true);
+}
+
+void TrackPattern::resizeEvent(QResizeEvent* /*event*/) {
+ fillTrackPat();
+}
+
//---------------------------------------------------------------
// TimingEvent
//---------------------------------------------------------------
@@ -356,12 +441,12 @@ void TimingEvent::setBarBeatTick(unsigned tick) {
QString TimingEvent::barBeatTickStr() {
QString barS;
- barS.setNum(_bar);
+ barS.setNum(_bar + 1);
if(_bar<10) barS = QString("000") + barS;
else if(_bar<100) barS = QString("00") + barS;
else if(_bar<1000) barS = QString("0") + barS;
QString beatS;
- beatS.setNum(_beat);
+ beatS.setNum(_beat + 1);
if(_beat<10) beatS = QString("0") + beatS;
QString tickS;
tickS.setNum(_tick);
@@ -383,19 +468,17 @@ QString TimingEvent::rowStr() {
//---------------------------------------------------------------
TimingPattern::TimingPattern(QMainWindow* parent, QString name,
unsigned firstTick, unsigned lastTick, int quant)
- : BasePat(name, firstTick, lastTick, quant) {
-
+ : BasePat(name, firstTick, lastTick, quant), BaseTrackPat(parent) {
//build the timing matrix
buildTimingMatrix();
- //build the dockWidget
- _dock = new QDockWidget(_name);
- _dock->setFeatures(QDockWidget::DockWidgetClosable |
- QDockWidget::DockWidgetMovable);
- parent->addDockWidget(Qt::LeftDockWidgetArea, _dock, Qt::Horizontal);
+ //configure and add the dockWidget
+ setWindowTitle(name);
+ setFeatures(QDockWidget::DockWidgetClosable |QDockWidget::DockWidgetMovable);
+ parent->addDockWidget(Qt::LeftDockWidgetArea, this, Qt::Horizontal);
//build the treeWidget
- _tree = new QTreeWidget(_dock);
+ _tree = new QTreeWidget(this);
_tree->setColumnCount(2);
QStringList headerLabels;
_tree->setHeaderLabels(QStringList("bar:bt:tick") + QStringList("row"));
@@ -406,26 +489,43 @@ TimingPattern::TimingPattern(QMainWindow* parent, QString name,
QFont font =_tree->font();
font.setFamily(FONT);
_tree->setFont(font);
- _dock->setWidget(_tree);
+ setWidget(_tree);
//fill the treeWidget
- for(unsigned i = 0; i < _timingEvents.size(); i++) {
- QTreeWidgetItem* item = new QTreeWidgetItem(_tree);
- TimingEvent* te = _timingEvents[i];
- item->setText(0, te->barBeatTickStr());
- item->setText(1, te->rowStr());
- }
-
+ fillTimingPat();
for(int i = 0; i < _tree->columnCount(); i++)
_tree->resizeColumnToContents(i);
}
+TimingPattern::~TimingPattern() {}
+
void TimingPattern::buildTimingMatrix() {
+ _numRow = 0;
for(unsigned tick = _firstTick; tick <= _lastTick; tick++) {
if(isRow(tick)) {
- TimingEvent* te = new TimingEvent(tick2row(tick));
+ TimingEvent* te = new TimingEvent(tick2row(tick) - tick2row(_firstTick));
te->setBarBeatTick(tick);
_timingEvents.push_back(te);
+ _numRow++;
}
}
}
+
+void TimingPattern::fillTimingPat() {
+ _tree->clear();
+ for(unsigned i = 0; i < getRowMag(); i++) {
+ QTreeWidgetItem* item = new QTreeWidgetItem(_tree);
+ TimingEvent* te = _timingEvents[i + getLowRow()];
+ item->setText(0, te->barBeatTickStr());
+ item->setText(1, te->rowStr());
+ }
+
+ //select the line corresponding to the current row
+ QTreeWidgetItem* item = _tree->topLevelItem(getCurTreeRow());
+ item->setSelected(true);
+
+}
+
+void TimingPattern::resizeEvent(QResizeEvent* /*event*/) {
+ fillTimingPat();
+}
diff --git a/muse/muse/midiedit/trackpattern.h b/muse/muse/midiedit/trackpattern.h
index be780d44..ba2486a4 100644
--- a/muse/muse/midiedit/trackpattern.h
+++ b/muse/muse/midiedit/trackpattern.h
@@ -83,6 +83,7 @@ class BasePat {
unsigned _lastTick;
int _quant;
public:
+ BasePat();
BasePat(QString name, unsigned firstTick, unsigned lastTick, int quant);
~BasePat();
@@ -106,7 +107,7 @@ class VoicePat : public BasePat {
std::vector<VoiceEventPat*> getEventsCol();
bool add(const Event* e, unsigned tick); //add the Event e into the EventList
- //and update properly _eventsPat
+ //and update properly _events
//return true if success, that is
//there is an empty space of the
//event
@@ -128,20 +129,39 @@ class CtrlPat {
};
//------------------------------------------------------
+// BaseTrackPat
+//------------------------------------------------------
+class BaseTrackPat : public QDockWidget {
+ protected:
+ QTreeWidget* _tree;
+ QMainWindow* _parent;
+ unsigned _currentRow;
+ unsigned _numRow; //contains the number of rows
+ public:
+ BaseTrackPat(QMainWindow* parent);
+ ~BaseTrackPat();
+
+ void setNumRow(unsigned);
+ unsigned getNumRow();
+ unsigned getRowMag(); //returns the number of rows to display according
+ //to the size of the window
+ unsigned getCurTreeRow();
+ unsigned getLowRow();
+ unsigned getUpRow();
+};
+
+//------------------------------------------------------
// TrackPattern
//------------------------------------------------------
-class TrackPattern {
+class TrackPattern : public BaseTrackPat, public BasePat {
private:
- QDockWidget* _dock;
- QTreeWidget* _tree;
PartList* _partList; //partList concerned by a track
MidiTrack* _track;
- int _quant;
- unsigned _firstTick;
std::vector<VoicePat*> _voiceColumns; //matrix of voice events
std::vector<CtrlPat*> _ctrlColumns; //matrix of ctrl events
public:
- TrackPattern(QMainWindow* parent, unsigned firstTick,
+ TrackPattern(QMainWindow* parent, QString name,
+ unsigned firstTick, unsigned lastTick,
int quant, PartList* pl, MidiTrack* t);
~TrackPattern();
@@ -151,6 +171,12 @@ class TrackPattern {
//creating new voices when necessary
MidiTrack* getTrack() {return _track;}
void setQuant(int quant);
+ void buildEventMatrix();
+ void fillTrackPat(); //fill the treeWidget with the right set of events
+ //according to _currentRow and the size of the window
+
+ protected:
+ void resizeEvent(QResizeEvent *event);
};
//------------------------------------------------------
@@ -173,9 +199,8 @@ class TimingEvent {
QString rowStr();
};
-class TimingPattern : public BasePat {
+class TimingPattern : public BasePat, public BaseTrackPat {
private:
- QDockWidget* _dock;
QTreeWidget* _tree;
std::vector<TimingEvent*> _timingEvents;
public:
@@ -184,6 +209,11 @@ class TimingPattern : public BasePat {
~TimingPattern();
void buildTimingMatrix();
+ void fillTimingPat(); //fill the treeWidget with the right window of times
+ //according to _currentRow and the size of the window
+
+ protected:
+ void resizeEvent(QResizeEvent *event);
};
#endif
diff --git a/muse/synti/deicsonze/deicsonze.cpp b/muse/synti/deicsonze/deicsonze.cpp
index d6620bec..dbbba68f 100644
--- a/muse/synti/deicsonze/deicsonze.cpp
+++ b/muse/synti/deicsonze/deicsonze.cpp
@@ -3610,10 +3610,11 @@ bool DeicsOnze::playNote(int ch, int pitch, int velo) {
}
else _global.channel[ch].voices[newVoice].hasAttractor = false;
- /*if(_preset->lfo.sync)*/ _global.channel[ch].lfoIndex=0;//TODO
+ if(_preset[ch]->lfo.sync) _global.channel[ch].lfoIndex=0;
+
_global.channel[ch].lfoDelayIndex =
(_preset[ch]->lfo.delay==0?(double)(RESOLUTION/4):0.0);
- _global.channel[ch].delayPassed=false;
+ _global.channel[ch].delayPassed = false;
//--------------
//PITCH ENVELOPE