annotate layer/FlexiNoteLayer.cpp @ 680:ced5f158eda7 tonioni

Merge from default branch
author Chris Cannam
date Fri, 22 Nov 2013 10:40:51 +0000
parents 47735c9518e7
children 917039d333bb
rev   line source
Chris@58 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@30 2
Chris@30 3 /*
Chris@59 4 Sonic Visualiser
Chris@59 5 An audio file viewer and annotation editor.
Chris@59 6 Centre for Digital Music, Queen Mary, University of London.
Chris@59 7 This file copyright 2006 Chris Cannam.
Chris@30 8
Chris@59 9 This program is free software; you can redistribute it and/or
Chris@59 10 modify it under the terms of the GNU General Public License as
Chris@59 11 published by the Free Software Foundation; either version 2 of the
Chris@59 12 License, or (at your option) any later version. See the file
Chris@59 13 COPYING included with this distribution for more information.
Chris@30 14 */
Chris@30 15
matthiasm@620 16 #include "FlexiNoteLayer.h"
Chris@30 17
Chris@128 18 #include "data/model/Model.h"
gyorgyf@655 19 #include "data/model/SparseTimeValueModel.h"
Chris@30 20 #include "base/RealTime.h"
Chris@30 21 #include "base/Profiler.h"
Chris@30 22 #include "base/Pitch.h"
Chris@197 23 #include "base/LogRange.h"
Chris@439 24 #include "base/RangeMapper.h"
Chris@376 25 #include "ColourDatabase.h"
Chris@128 26 #include "view/View.h"
Chris@30 27
matthiasm@620 28 #include "data/model/FlexiNoteModel.h"
Chris@30 29
Chris@70 30 #include "widgets/ItemEditDialog.h"
Chris@70 31
Chris@30 32 #include <QPainter>
Chris@30 33 #include <QPainterPath>
Chris@30 34 #include <QMouseEvent>
Chris@316 35 #include <QTextStream>
Chris@360 36 #include <QMessageBox>
Chris@30 37
Chris@30 38 #include <iostream>
Chris@30 39 #include <cmath>
Chris@551 40 #include <utility>
gyorgyf@655 41 #include <limits> // GF: included to compile std::numerical_limits on linux
gyorgyf@655 42 #include <vector>
gyorgyf@655 43
Chris@30 44
matthiasm@620 45 FlexiNoteLayer::FlexiNoteLayer() :
gyorgyf@646 46 SingleColourLayer(),
gyorgyf@625 47
gyorgyf@646 48 // m_model(0),
gyorgyf@646 49 // m_editing(false),
gyorgyf@646 50 // m_originalPoint(0, 0.0, 0, 1.f, tr("New Point")),
gyorgyf@646 51 // m_editingPoint(0, 0.0, 0, 1.f, tr("New Point")),
gyorgyf@646 52 // m_editingCommand(0),
gyorgyf@646 53 // m_verticalScale(AutoAlignScale),
gyorgyf@646 54 // m_scaleMinimum(0),
gyorgyf@646 55 // m_scaleMaximum(0)
gyorgyf@625 56
gyorgyf@627 57 m_model(0),
gyorgyf@628 58 m_editing(false),
gyorgyf@627 59 m_originalPoint(0, 0.0, 0, 1.f, tr("New Point")),
gyorgyf@627 60 m_editingPoint(0, 0.0, 0, 1.f, tr("New Point")),
gyorgyf@627 61 m_editingCommand(0),
matthiasm@634 62 m_verticalScale(AutoAlignScale),
gyorgyf@628 63 m_scaleMinimum(34),
gyorgyf@658 64 m_scaleMaximum(77),
gyorgyf@658 65 m_intelligentActions(true)
Chris@30 66 {
Chris@30 67 }
Chris@30 68
Chris@30 69 void
gyorgyf@626 70 FlexiNoteLayer::setModel(FlexiNoteModel *model)
Chris@30 71 {
Chris@30 72 if (m_model == model) return;
Chris@30 73 m_model = model;
Chris@30 74
Chris@320 75 connectSignals(m_model);
Chris@30 76
gyorgyf@628 77 // m_scaleMinimum = 0;
gyorgyf@628 78 // m_scaleMaximum = 0;
Chris@439 79
Chris@30 80 emit modelReplaced();
Chris@30 81 }
Chris@30 82
Chris@30 83 Layer::PropertyList
matthiasm@620 84 FlexiNoteLayer::getProperties() const
Chris@30 85 {
Chris@287 86 PropertyList list = SingleColourLayer::getProperties();
Chris@87 87 list.push_back("Vertical Scale");
Chris@100 88 list.push_back("Scale Units");
Chris@30 89 return list;
Chris@30 90 }
Chris@30 91
Chris@87 92 QString
matthiasm@620 93 FlexiNoteLayer::getPropertyLabel(const PropertyName &name) const
Chris@87 94 {
Chris@87 95 if (name == "Vertical Scale") return tr("Vertical Scale");
Chris@116 96 if (name == "Scale Units") return tr("Scale Units");
Chris@287 97 return SingleColourLayer::getPropertyLabel(name);
Chris@87 98 }
Chris@87 99
Chris@30 100 Layer::PropertyType
matthiasm@620 101 FlexiNoteLayer::getPropertyType(const PropertyName &name) const
Chris@30 102 {
Chris@100 103 if (name == "Scale Units") return UnitsProperty;
Chris@287 104 if (name == "Vertical Scale") return ValueProperty;
Chris@287 105 return SingleColourLayer::getPropertyType(name);
Chris@30 106 }
Chris@30 107
Chris@198 108 QString
matthiasm@620 109 FlexiNoteLayer::getPropertyGroupName(const PropertyName &name) const
Chris@198 110 {
Chris@198 111 if (name == "Vertical Scale" || name == "Scale Units") {
Chris@198 112 return tr("Scale");
Chris@198 113 }
Chris@287 114 return SingleColourLayer::getPropertyGroupName(name);
Chris@198 115 }
Chris@198 116
Chris@30 117 int
matthiasm@620 118 FlexiNoteLayer::getPropertyRangeAndValue(const PropertyName &name,
Chris@216 119 int *min, int *max, int *deflt) const
Chris@30 120 {
Chris@216 121 int val = 0;
Chris@30 122
Chris@287 123 if (name == "Vertical Scale") {
gyorgyf@646 124
gyorgyf@646 125 if (min) *min = 0;
gyorgyf@646 126 if (max) *max = 3;
Chris@216 127 if (deflt) *deflt = int(AutoAlignScale);
gyorgyf@646 128
gyorgyf@646 129 val = int(m_verticalScale);
Chris@30 130
Chris@100 131 } else if (name == "Scale Units") {
Chris@100 132
Chris@216 133 if (deflt) *deflt = 0;
Chris@100 134 if (m_model) {
Chris@216 135 val = UnitDatabase::getInstance()->getUnitId
Chris@100 136 (m_model->getScaleUnits());
Chris@100 137 }
Chris@100 138
Chris@30 139 } else {
Chris@216 140
gyorgyf@646 141 val = SingleColourLayer::getPropertyRangeAndValue(name, min, max, deflt);
Chris@30 142 }
Chris@30 143
Chris@216 144 return val;
Chris@30 145 }
Chris@30 146
Chris@30 147 QString
matthiasm@620 148 FlexiNoteLayer::getPropertyValueLabel(const PropertyName &name,
Chris@287 149 int value) const
Chris@30 150 {
Chris@287 151 if (name == "Vertical Scale") {
gyorgyf@646 152 switch (value) {
gyorgyf@646 153 default:
gyorgyf@646 154 case 0: return tr("Auto-Align");
gyorgyf@646 155 case 1: return tr("Linear");
gyorgyf@646 156 case 2: return tr("Log");
gyorgyf@646 157 case 3: return tr("MIDI Notes");
gyorgyf@646 158 }
Chris@30 159 }
Chris@287 160 return SingleColourLayer::getPropertyValueLabel(name, value);
Chris@30 161 }
Chris@30 162
Chris@30 163 void
matthiasm@620 164 FlexiNoteLayer::setProperty(const PropertyName &name, int value)
Chris@30 165 {
Chris@287 166 if (name == "Vertical Scale") {
gyorgyf@646 167 setVerticalScale(VerticalScale(value));
Chris@100 168 } else if (name == "Scale Units") {
Chris@100 169 if (m_model) {
Chris@100 170 m_model->setScaleUnits
Chris@100 171 (UnitDatabase::getInstance()->getUnitById(value));
Chris@100 172 emit modelChanged();
Chris@100 173 }
Chris@287 174 } else {
Chris@287 175 return SingleColourLayer::setProperty(name, value);
Chris@30 176 }
Chris@30 177 }
Chris@30 178
Chris@30 179 void
matthiasm@620 180 FlexiNoteLayer::setVerticalScale(VerticalScale scale)
Chris@30 181 {
Chris@30 182 if (m_verticalScale == scale) return;
Chris@30 183 m_verticalScale = scale;
Chris@30 184 emit layerParametersChanged();
Chris@30 185 }
Chris@30 186
Chris@30 187 bool
matthiasm@620 188 FlexiNoteLayer::isLayerScrollable(const View *v) const
Chris@30 189 {
Chris@30 190 QPoint discard;
Chris@44 191 return !v->shouldIlluminateLocalFeatures(this, discard);
Chris@30 192 }
Chris@30 193
Chris@79 194 bool
matthiasm@620 195 FlexiNoteLayer::shouldConvertMIDIToHz() const
Chris@101 196 {
Chris@101 197 QString unit = m_model->getScaleUnits();
Chris@101 198 return (unit != "Hz");
Chris@101 199 // if (unit == "" ||
Chris@101 200 // unit.startsWith("MIDI") ||
Chris@101 201 // unit.startsWith("midi")) return true;
Chris@101 202 // return false;
Chris@101 203 }
Chris@101 204
Chris@101 205 bool
matthiasm@620 206 FlexiNoteLayer::getValueExtents(float &min, float &max,
Chris@101 207 bool &logarithmic, QString &unit) const
Chris@79 208 {
Chris@79 209 if (!m_model) return false;
Chris@79 210 min = m_model->getValueMinimum();
Chris@79 211 max = m_model->getValueMaximum();
Chris@101 212
Chris@105 213 if (shouldConvertMIDIToHz()) {
Chris@105 214 unit = "Hz";
Chris@105 215 min = Pitch::getFrequencyForPitch(lrintf(min));
Chris@105 216 max = Pitch::getFrequencyForPitch(lrintf(max + 1));
Chris@105 217 } else unit = m_model->getScaleUnits();
Chris@101 218
Chris@101 219 if (m_verticalScale == MIDIRangeScale ||
Chris@101 220 m_verticalScale == LogScale) logarithmic = true;
Chris@101 221
Chris@101 222 return true;
Chris@101 223 }
Chris@101 224
Chris@101 225 bool
matthiasm@620 226 FlexiNoteLayer::getDisplayExtents(float &min, float &max) const
Chris@101 227 {
matthiasm@623 228 if (!m_model || shouldAutoAlign()) {
gyorgyf@646 229 std::cerr << "No model or shouldAutoAlign()" << std::endl;
gyorgyf@646 230 return false;
gyorgyf@646 231 }
Chris@101 232
Chris@101 233 if (m_verticalScale == MIDIRangeScale) {
Chris@101 234 min = Pitch::getFrequencyForPitch(0);
matthiasm@634 235 max = Pitch::getFrequencyForPitch(127);
Chris@101 236 return true;
Chris@101 237 }
Chris@101 238
Chris@439 239 if (m_scaleMinimum == m_scaleMaximum) {
Chris@455 240 min = m_model->getValueMinimum();
Chris@455 241 max = m_model->getValueMaximum();
Chris@455 242 } else {
Chris@455 243 min = m_scaleMinimum;
Chris@455 244 max = m_scaleMaximum;
Chris@439 245 }
Chris@439 246
Chris@101 247 if (shouldConvertMIDIToHz()) {
Chris@101 248 min = Pitch::getFrequencyForPitch(lrintf(min));
Chris@101 249 max = Pitch::getFrequencyForPitch(lrintf(max + 1));
Chris@101 250 }
Chris@101 251
Chris@667 252 #ifdef DEBUG_NOTE_LAYER
Chris@667 253 std::cerr << "NoteLayer::getDisplayExtents: min = " << min << ", max = " << max << " (m_scaleMinimum = " << m_scaleMinimum << ", m_scaleMaximum = " << m_scaleMaximum << ")" << std::endl;
Chris@667 254 #endif
Chris@667 255
Chris@79 256 return true;
Chris@79 257 }
Chris@79 258
Chris@439 259 bool
matthiasm@620 260 FlexiNoteLayer::setDisplayExtents(float min, float max)
Chris@439 261 {
Chris@439 262 if (!m_model) return false;
Chris@439 263
Chris@439 264 if (min == max) {
Chris@439 265 if (min == 0.f) {
Chris@439 266 max = 1.f;
Chris@439 267 } else {
Chris@439 268 max = min * 1.0001;
Chris@439 269 }
Chris@439 270 }
Chris@439 271
Chris@439 272 m_scaleMinimum = min;
Chris@439 273 m_scaleMaximum = max;
Chris@439 274
Chris@667 275 #ifdef DEBUG_NOTE_LAYER
Chris@670 276 std::cerr << "FlexiNoteLayer::setDisplayExtents: min = " << min << ", max = " << max << std::endl;
Chris@667 277 #endif
Chris@439 278
Chris@439 279 emit layerParametersChanged();
Chris@439 280 return true;
Chris@439 281 }
Chris@439 282
Chris@439 283 int
matthiasm@620 284 FlexiNoteLayer::getVerticalZoomSteps(int &defaultStep) const
Chris@439 285 {
Chris@439 286 if (shouldAutoAlign()) return 0;
Chris@439 287 if (!m_model) return 0;
Chris@439 288
Chris@439 289 defaultStep = 0;
Chris@439 290 return 100;
Chris@439 291 }
Chris@439 292
Chris@439 293 int
matthiasm@620 294 FlexiNoteLayer::getCurrentVerticalZoomStep() const
Chris@439 295 {
Chris@439 296 if (shouldAutoAlign()) return 0;
Chris@439 297 if (!m_model) return 0;
Chris@439 298
Chris@439 299 RangeMapper *mapper = getNewVerticalZoomRangeMapper();
Chris@439 300 if (!mapper) return 0;
Chris@439 301
Chris@439 302 float dmin, dmax;
Chris@439 303 getDisplayExtents(dmin, dmax);
Chris@439 304
Chris@439 305 int nr = mapper->getPositionForValue(dmax - dmin);
Chris@439 306
Chris@439 307 delete mapper;
Chris@439 308
Chris@439 309 return 100 - nr;
Chris@439 310 }
Chris@439 311
Chris@439 312 //!!! lots of duplication with TimeValueLayer
Chris@439 313
Chris@439 314 void
matthiasm@620 315 FlexiNoteLayer::setVerticalZoomStep(int step)
Chris@439 316 {
Chris@439 317 if (shouldAutoAlign()) return;
Chris@439 318 if (!m_model) return;
Chris@439 319
Chris@439 320 RangeMapper *mapper = getNewVerticalZoomRangeMapper();
Chris@439 321 if (!mapper) return;
Chris@439 322
Chris@439 323 float min, max;
Chris@439 324 bool logarithmic;
Chris@439 325 QString unit;
Chris@439 326 getValueExtents(min, max, logarithmic, unit);
Chris@439 327
Chris@439 328 float dmin, dmax;
Chris@439 329 getDisplayExtents(dmin, dmax);
Chris@439 330
Chris@439 331 float newdist = mapper->getValueForPosition(100 - step);
Chris@439 332
Chris@439 333 float newmin, newmax;
Chris@439 334
Chris@439 335 if (logarithmic) {
Chris@439 336
Chris@439 337 // see SpectrogramLayer::setVerticalZoomStep
Chris@439 338
Chris@439 339 newmax = (newdist + sqrtf(newdist*newdist + 4*dmin*dmax)) / 2;
Chris@439 340 newmin = newmax - newdist;
Chris@439 341
Chris@439 342 // std::cerr << "newmin = " << newmin << ", newmax = " << newmax << std::endl;
Chris@439 343
Chris@439 344 } else {
Chris@439 345 float dmid = (dmax + dmin) / 2;
Chris@439 346 newmin = dmid - newdist / 2;
Chris@439 347 newmax = dmid + newdist / 2;
Chris@439 348 }
Chris@439 349
Chris@439 350 if (newmin < min) {
Chris@439 351 newmax += (min - newmin);
Chris@439 352 newmin = min;
Chris@439 353 }
Chris@439 354 if (newmax > max) {
Chris@439 355 newmax = max;
Chris@439 356 }
Chris@439 357
Chris@667 358 #ifdef DEBUG_NOTE_LAYER
Chris@670 359 std::cerr << "FlexiNoteLayer::setVerticalZoomStep: " << step << ": " << newmin << " -> " << newmax << " (range " << newdist << ")" << std::endl;
Chris@667 360 #endif
Chris@439 361
Chris@439 362 setDisplayExtents(newmin, newmax);
Chris@439 363 }
Chris@439 364
Chris@439 365 RangeMapper *
matthiasm@620 366 FlexiNoteLayer::getNewVerticalZoomRangeMapper() const
Chris@439 367 {
Chris@439 368 if (!m_model) return 0;
Chris@439 369
Chris@439 370 RangeMapper *mapper;
Chris@439 371
Chris@439 372 float min, max;
Chris@439 373 bool logarithmic;
Chris@439 374 QString unit;
Chris@439 375 getValueExtents(min, max, logarithmic, unit);
Chris@439 376
Chris@439 377 if (min == max) return 0;
Chris@439 378
Chris@439 379 if (logarithmic) {
Chris@439 380 mapper = new LogRangeMapper(0, 100, min, max, unit);
Chris@439 381 } else {
Chris@439 382 mapper = new LinearRangeMapper(0, 100, min, max, unit);
Chris@439 383 }
Chris@439 384
Chris@439 385 return mapper;
Chris@439 386 }
Chris@439 387
matthiasm@620 388 FlexiNoteModel::PointList
matthiasm@620 389 FlexiNoteLayer::getLocalPoints(View *v, int x) const
Chris@30 390 {
matthiasm@620 391 if (!m_model) return FlexiNoteModel::PointList();
Chris@30 392
Chris@44 393 long frame = v->getFrameForX(x);
Chris@30 394
matthiasm@620 395 FlexiNoteModel::PointList onPoints =
gyorgyf@646 396 m_model->getPoints(frame);
Chris@30 397
Chris@30 398 if (!onPoints.empty()) {
gyorgyf@646 399 return onPoints;
Chris@30 400 }
Chris@30 401
matthiasm@620 402 FlexiNoteModel::PointList prevPoints =
gyorgyf@646 403 m_model->getPreviousPoints(frame);
matthiasm@620 404 FlexiNoteModel::PointList nextPoints =
gyorgyf@646 405 m_model->getNextPoints(frame);
Chris@30 406
matthiasm@620 407 FlexiNoteModel::PointList usePoints = prevPoints;
Chris@30 408
Chris@30 409 if (prevPoints.empty()) {
gyorgyf@646 410 usePoints = nextPoints;
Chris@248 411 } else if (long(prevPoints.begin()->frame) < v->getStartFrame() &&
gyorgyf@646 412 !(nextPoints.begin()->frame > v->getEndFrame())) {
gyorgyf@646 413 usePoints = nextPoints;
Chris@248 414 } else if (long(nextPoints.begin()->frame) - frame <
gyorgyf@646 415 frame - long(prevPoints.begin()->frame)) {
gyorgyf@646 416 usePoints = nextPoints;
Chris@30 417 }
Chris@30 418
Chris@30 419 if (!usePoints.empty()) {
gyorgyf@646 420 int fuzz = 2;
gyorgyf@646 421 int px = v->getXForFrame(usePoints.begin()->frame);
gyorgyf@646 422 if ((px > x && px - x > fuzz) ||
gyorgyf@646 423 (px < x && x - px > fuzz + 1)) {
gyorgyf@646 424 usePoints.clear();
gyorgyf@646 425 }
Chris@30 426 }
Chris@30 427
Chris@30 428 return usePoints;
Chris@30 429 }
Chris@30 430
Chris@550 431 bool
matthiasm@622 432 FlexiNoteLayer::getPointToDrag(View *v, int x, int y, FlexiNoteModel::Point &p) const
Chris@550 433 {
Chris@550 434 if (!m_model) return false;
Chris@550 435
Chris@550 436 long frame = v->getFrameForX(x);
Chris@550 437
matthiasm@620 438 FlexiNoteModel::PointList onPoints = m_model->getPoints(frame);
Chris@550 439 if (onPoints.empty()) return false;
Chris@550 440
Chris@551 441 // std::cerr << "frame " << frame << ": " << onPoints.size() << " candidate points" << std::endl;
Chris@550 442
Chris@550 443 int nearestDistance = -1;
Chris@550 444
matthiasm@620 445 for (FlexiNoteModel::PointList::const_iterator i = onPoints.begin();
Chris@550 446 i != onPoints.end(); ++i) {
Chris@550 447
Chris@550 448 int distance = getYForValue(v, (*i).value) - y;
Chris@550 449 if (distance < 0) distance = -distance;
Chris@550 450 if (nearestDistance == -1 || distance < nearestDistance) {
Chris@550 451 nearestDistance = distance;
Chris@550 452 p = *i;
Chris@550 453 }
Chris@550 454 }
Chris@550 455
Chris@550 456 return true;
Chris@550 457 }
Chris@550 458
gyorgyf@646 459 bool
gyorgyf@646 460 FlexiNoteLayer::getNoteToEdit(View *v, int x, int y, FlexiNoteModel::Point &p) const
gyorgyf@646 461 {
gyorgyf@647 462 // GF: find the note that is closest to the cursor
gyorgyf@646 463 if (!m_model) return false;
gyorgyf@646 464
gyorgyf@646 465 long frame = v->getFrameForX(x);
gyorgyf@646 466
gyorgyf@646 467 FlexiNoteModel::PointList onPoints = m_model->getPoints(frame);
gyorgyf@646 468 if (onPoints.empty()) return false;
gyorgyf@646 469
gyorgyf@646 470 // std::cerr << "frame " << frame << ": " << onPoints.size() << " candidate points" << std::endl;
gyorgyf@646 471
gyorgyf@646 472 int nearestDistance = -1;
gyorgyf@646 473
gyorgyf@646 474 for (FlexiNoteModel::PointList::const_iterator i = onPoints.begin();
gyorgyf@646 475 i != onPoints.end(); ++i) {
gyorgyf@646 476
gyorgyf@646 477 int distance = getYForValue(v, (*i).value) - y;
gyorgyf@646 478 if (distance < 0) distance = -distance;
gyorgyf@646 479 if (nearestDistance == -1 || distance < nearestDistance) {
gyorgyf@646 480 nearestDistance = distance;
gyorgyf@646 481 p = *i;
gyorgyf@646 482 }
gyorgyf@646 483 }
gyorgyf@646 484
gyorgyf@646 485 return true;
gyorgyf@646 486 }
gyorgyf@646 487
Chris@30 488 QString
matthiasm@620 489 FlexiNoteLayer::getFeatureDescription(View *v, QPoint &pos) const
Chris@30 490 {
Chris@30 491 int x = pos.x();
Chris@30 492
Chris@30 493 if (!m_model || !m_model->getSampleRate()) return "";
Chris@30 494
matthiasm@620 495 FlexiNoteModel::PointList points = getLocalPoints(v, x);
Chris@30 496
Chris@30 497 if (points.empty()) {
gyorgyf@653 498 if (!m_model->isReady()) {
gyorgyf@653 499 return tr("In progress");
gyorgyf@653 500 } else {
gyorgyf@653 501 return tr("No local points");
gyorgyf@653 502 }
Chris@30 503 }
Chris@30 504
matthiasm@620 505 FlexiNote note(0);
matthiasm@620 506 FlexiNoteModel::PointList::iterator i;
Chris@30 507
Chris@30 508 for (i = points.begin(); i != points.end(); ++i) {
Chris@30 509
gyorgyf@653 510 int y = getYForValue(v, i->value);
gyorgyf@653 511 int h = NOTE_HEIGHT; // GF: larger notes
Chris@30 512
gyorgyf@653 513 if (m_model->getValueQuantization() != 0.0) {
gyorgyf@653 514 h = y - getYForValue(v, i->value + m_model->getValueQuantization());
gyorgyf@653 515 if (h < NOTE_HEIGHT) h = NOTE_HEIGHT;
gyorgyf@653 516 }
Chris@30 517
gyorgyf@647 518 // GF: this is not quite correct
gyorgyf@653 519 if (pos.y() >= y - 4 && pos.y() <= y + h) {
gyorgyf@653 520 note = *i;
gyorgyf@653 521 break;
gyorgyf@653 522 }
Chris@30 523 }
Chris@30 524
Chris@30 525 if (i == points.end()) return tr("No local points");
Chris@30 526
Chris@30 527 RealTime rt = RealTime::frame2RealTime(note.frame,
gyorgyf@653 528 m_model->getSampleRate());
Chris@30 529 RealTime rd = RealTime::frame2RealTime(note.duration,
gyorgyf@653 530 m_model->getSampleRate());
Chris@30 531
Chris@101 532 QString pitchText;
Chris@101 533
Chris@101 534 if (shouldConvertMIDIToHz()) {
Chris@101 535
Chris@101 536 int mnote = lrintf(note.value);
Chris@101 537 int cents = lrintf((note.value - mnote) * 100);
Chris@101 538 float freq = Pitch::getFrequencyForPitch(mnote, cents);
Chris@544 539 pitchText = tr("%1 (%2, %3 Hz)")
Chris@544 540 .arg(Pitch::getPitchLabel(mnote, cents))
Chris@544 541 .arg(mnote)
Chris@544 542 .arg(freq);
Chris@101 543
Chris@101 544 } else if (m_model->getScaleUnits() == "Hz") {
Chris@101 545
Chris@544 546 pitchText = tr("%1 Hz (%2, %3)")
Chris@101 547 .arg(note.value)
Chris@544 548 .arg(Pitch::getPitchLabelForFrequency(note.value))
Chris@544 549 .arg(Pitch::getPitchForFrequency(note.value));
Chris@101 550
Chris@101 551 } else {
Chris@234 552 pitchText = tr("%1 %2")
Chris@101 553 .arg(note.value).arg(m_model->getScaleUnits());
Chris@101 554 }
Chris@101 555
Chris@30 556 QString text;
Chris@30 557
Chris@30 558 if (note.label == "") {
gyorgyf@653 559 text = QString(tr("Time:\t%1\nPitch:\t%2\nDuration:\t%3\nNo label"))
gyorgyf@653 560 .arg(rt.toText(true).c_str())
gyorgyf@653 561 .arg(pitchText)
gyorgyf@653 562 .arg(rd.toText(true).c_str());
Chris@30 563 } else {
gyorgyf@653 564 text = QString(tr("Time:\t%1\nPitch:\t%2\nDuration:\t%3\nLabel:\t%4"))
gyorgyf@653 565 .arg(rt.toText(true).c_str())
gyorgyf@653 566 .arg(pitchText)
gyorgyf@653 567 .arg(rd.toText(true).c_str())
gyorgyf@653 568 .arg(note.label);
Chris@30 569 }
Chris@30 570
Chris@44 571 pos = QPoint(v->getXForFrame(note.frame),
gyorgyf@653 572 getYForValue(v, note.value));
Chris@30 573 return text;
Chris@30 574 }
Chris@30 575
Chris@30 576 bool
matthiasm@620 577 FlexiNoteLayer::snapToFeatureFrame(View *v, int &frame,
gyorgyf@646 578 size_t &resolution,
gyorgyf@646 579 SnapType snap) const
Chris@30 580 {
Chris@30 581 if (!m_model) {
gyorgyf@646 582 return Layer::snapToFeatureFrame(v, frame, resolution, snap);
Chris@30 583 }
Chris@30 584
Chris@30 585 resolution = m_model->getResolution();
matthiasm@620 586 FlexiNoteModel::PointList points;
Chris@30 587
Chris@30 588 if (snap == SnapNeighbouring) {
gyorgyf@646 589
gyorgyf@646 590 points = getLocalPoints(v, v->getXForFrame(frame));
gyorgyf@646 591 if (points.empty()) return false;
gyorgyf@646 592 frame = points.begin()->frame;
gyorgyf@646 593 return true;
Chris@30 594 }
Chris@30 595
Chris@30 596 points = m_model->getPoints(frame, frame);
Chris@30 597 int snapped = frame;
Chris@30 598 bool found = false;
Chris@30 599
matthiasm@620 600 for (FlexiNoteModel::PointList::const_iterator i = points.begin();
gyorgyf@646 601 i != points.end(); ++i) {
Chris@30 602
gyorgyf@646 603 if (snap == SnapRight) {
Chris@30 604
gyorgyf@646 605 if (i->frame > frame) {
gyorgyf@646 606 snapped = i->frame;
gyorgyf@646 607 found = true;
gyorgyf@646 608 break;
gyorgyf@646 609 }
Chris@30 610
gyorgyf@646 611 } else if (snap == SnapLeft) {
Chris@30 612
gyorgyf@646 613 if (i->frame <= frame) {
gyorgyf@646 614 snapped = i->frame;
gyorgyf@646 615 found = true; // don't break, as the next may be better
gyorgyf@646 616 } else {
gyorgyf@646 617 break;
gyorgyf@646 618 }
Chris@30 619
gyorgyf@646 620 } else { // nearest
Chris@30 621
gyorgyf@646 622 FlexiNoteModel::PointList::const_iterator j = i;
gyorgyf@646 623 ++j;
Chris@30 624
gyorgyf@646 625 if (j == points.end()) {
Chris@30 626
gyorgyf@646 627 snapped = i->frame;
gyorgyf@646 628 found = true;
gyorgyf@646 629 break;
Chris@30 630
gyorgyf@646 631 } else if (j->frame >= frame) {
Chris@30 632
gyorgyf@646 633 if (j->frame - frame < frame - i->frame) {
gyorgyf@646 634 snapped = j->frame;
gyorgyf@646 635 } else {
gyorgyf@646 636 snapped = i->frame;
gyorgyf@646 637 }
gyorgyf@646 638 found = true;
gyorgyf@646 639 break;
gyorgyf@646 640 }
gyorgyf@646 641 }
Chris@30 642 }
Chris@30 643
Chris@30 644 frame = snapped;
Chris@30 645 return found;
Chris@30 646 }
Chris@30 647
Chris@101 648 void
matthiasm@620 649 FlexiNoteLayer::getScaleExtents(View *v, float &min, float &max, bool &log) const
Chris@30 650 {
Chris@101 651 min = 0.0;
Chris@101 652 max = 0.0;
Chris@101 653 log = false;
Chris@42 654
Chris@101 655 QString queryUnits;
Chris@101 656 if (shouldConvertMIDIToHz()) queryUnits = "Hz";
Chris@101 657 else queryUnits = m_model->getScaleUnits();
Chris@30 658
Chris@439 659 if (shouldAutoAlign()) {
Chris@30 660
Chris@101 661 if (!v->getValueExtents(queryUnits, min, max, log)) {
Chris@30 662
Chris@101 663 min = m_model->getValueMinimum();
Chris@101 664 max = m_model->getValueMaximum();
Chris@42 665
Chris@101 666 if (shouldConvertMIDIToHz()) {
Chris@101 667 min = Pitch::getFrequencyForPitch(lrintf(min));
Chris@101 668 max = Pitch::getFrequencyForPitch(lrintf(max + 1));
Chris@101 669 }
Chris@42 670
gyorgyf@635 671 // std::cerr << "FlexiNoteLayer[" << this << "]::getScaleExtents: min = " << min << ", max = " << max << ", log = " << log << std::endl;
Chris@105 672
Chris@101 673 } else if (log) {
Chris@101 674
Chris@197 675 LogRange::mapRange(min, max);
Chris@105 676
gyorgyf@635 677 // std::cerr << "FlexiNoteLayer[" << this << "]::getScaleExtents: min = " << min << ", max = " << max << ", log = " << log << std::endl;
Chris@105 678
Chris@101 679 }
Chris@101 680
Chris@101 681 } else {
Chris@101 682
Chris@439 683 getDisplayExtents(min, max);
Chris@101 684
Chris@101 685 if (m_verticalScale == MIDIRangeScale) {
Chris@101 686 min = Pitch::getFrequencyForPitch(0);
matthiasm@623 687 max = Pitch::getFrequencyForPitch(70);
Chris@101 688 } else if (shouldConvertMIDIToHz()) {
Chris@101 689 min = Pitch::getFrequencyForPitch(lrintf(min));
Chris@101 690 max = Pitch::getFrequencyForPitch(lrintf(max + 1));
Chris@101 691 }
Chris@101 692
Chris@101 693 if (m_verticalScale == LogScale || m_verticalScale == MIDIRangeScale) {
Chris@197 694 LogRange::mapRange(min, max);
Chris@101 695 log = true;
Chris@101 696 }
Chris@30 697 }
Chris@30 698
Chris@101 699 if (max == min) max = min + 1.0;
Chris@101 700 }
Chris@30 701
Chris@101 702 int
matthiasm@620 703 FlexiNoteLayer::getYForValue(View *v, float val) const
Chris@101 704 {
Chris@101 705 float min = 0.0, max = 0.0;
Chris@101 706 bool logarithmic = false;
Chris@101 707 int h = v->height();
Chris@101 708
Chris@101 709 getScaleExtents(v, min, max, logarithmic);
Chris@101 710
matthiasm@620 711 // std::cerr << "FlexiNoteLayer[" << this << "]::getYForValue(" << val << "): min = " << min << ", max = " << max << ", log = " << logarithmic << std::endl;
Chris@101 712
Chris@101 713 if (shouldConvertMIDIToHz()) {
Chris@101 714 val = Pitch::getFrequencyForPitch(lrintf(val),
Chris@101 715 lrintf((val - lrintf(val)) * 100));
Chris@101 716 // std::cerr << "shouldConvertMIDIToHz true, val now = " << val << std::endl;
Chris@101 717 }
Chris@101 718
Chris@101 719 if (logarithmic) {
Chris@197 720 val = LogRange::map(val);
Chris@101 721 // std::cerr << "logarithmic true, val now = " << val << std::endl;
Chris@101 722 }
Chris@101 723
Chris@101 724 int y = int(h - ((val - min) * h) / (max - min)) - 1;
Chris@101 725 // std::cerr << "y = " << y << std::endl;
Chris@101 726 return y;
Chris@30 727 }
Chris@30 728
Chris@30 729 float
matthiasm@620 730 FlexiNoteLayer::getValueForY(View *v, int y) const
Chris@30 731 {
Chris@101 732 float min = 0.0, max = 0.0;
Chris@101 733 bool logarithmic = false;
Chris@44 734 int h = v->height();
Chris@30 735
Chris@101 736 getScaleExtents(v, min, max, logarithmic);
Chris@101 737
Chris@101 738 float val = min + (float(h - y) * float(max - min)) / h;
Chris@101 739
Chris@101 740 if (logarithmic) {
Chris@197 741 val = powf(10.f, val);
Chris@101 742 }
Chris@101 743
Chris@101 744 if (shouldConvertMIDIToHz()) {
Chris@101 745 val = Pitch::getPitchForFrequency(val);
Chris@101 746 }
Chris@101 747
Chris@101 748 return val;
Chris@30 749 }
Chris@30 750
Chris@439 751 bool
matthiasm@620 752 FlexiNoteLayer::shouldAutoAlign() const
Chris@439 753 {
Chris@439 754 if (!m_model) return false;
Chris@439 755 return (m_verticalScale == AutoAlignScale);
Chris@439 756 }
Chris@439 757
Chris@30 758 void
matthiasm@620 759 FlexiNoteLayer::paint(View *v, QPainter &paint, QRect rect) const
Chris@30 760 {
Chris@30 761 if (!m_model || !m_model->isOK()) return;
Chris@30 762
Chris@30 763 int sampleRate = m_model->getSampleRate();
Chris@30 764 if (!sampleRate) return;
Chris@30 765
matthiasm@620 766 // Profiler profiler("FlexiNoteLayer::paint", true);
Chris@30 767
Chris@30 768 int x0 = rect.left(), x1 = rect.right();
Chris@44 769 long frame0 = v->getFrameForX(x0);
Chris@44 770 long frame1 = v->getFrameForX(x1);
Chris@30 771
matthiasm@620 772 FlexiNoteModel::PointList points(m_model->getPoints(frame0, frame1));
Chris@30 773 if (points.empty()) return;
Chris@30 774
Chris@287 775 paint.setPen(getBaseQColor());
Chris@30 776
Chris@287 777 QColor brushColour(getBaseQColor());
Chris@30 778 brushColour.setAlpha(80);
Chris@30 779
matthiasm@620 780 // SVDEBUG << "FlexiNoteLayer::paint: resolution is "
gyorgyf@646 781 // << m_model->getResolution() << " frames" << endl;
Chris@30 782
Chris@30 783 float min = m_model->getValueMinimum();
Chris@30 784 float max = m_model->getValueMaximum();
Chris@30 785 if (max == min) max = min + 1.0;
Chris@30 786
Chris@30 787 QPoint localPos;
matthiasm@620 788 FlexiNoteModel::Point illuminatePoint(0);
Chris@551 789 bool shouldIlluminate = false;
Chris@30 790
Chris@44 791 if (v->shouldIlluminateLocalFeatures(this, localPos)) {
Chris@551 792 shouldIlluminate = getPointToDrag(v, localPos.x(), localPos.y(),
Chris@551 793 illuminatePoint);
Chris@30 794 }
Chris@30 795
Chris@30 796 paint.save();
Chris@30 797 paint.setRenderHint(QPainter::Antialiasing, false);
Chris@30 798
matthiasm@620 799 for (FlexiNoteModel::PointList::const_iterator i = points.begin();
gyorgyf@646 800 i != points.end(); ++i) {
Chris@30 801
gyorgyf@646 802 const FlexiNoteModel::Point &p(*i);
Chris@30 803
gyorgyf@646 804 int x = v->getXForFrame(p.frame);
gyorgyf@646 805 int y = getYForValue(v, p.value);
gyorgyf@646 806 int w = v->getXForFrame(p.frame + p.duration) - x;
gyorgyf@647 807 int h = NOTE_HEIGHT; //GF: larger notes
gyorgyf@646 808
gyorgyf@646 809 if (m_model->getValueQuantization() != 0.0) {
gyorgyf@646 810 h = y - getYForValue(v, p.value + m_model->getValueQuantization());
gyorgyf@647 811 if (h < NOTE_HEIGHT) h = NOTE_HEIGHT; //GF: larger notes
gyorgyf@646 812 }
Chris@30 813
gyorgyf@646 814 if (w < 1) w = 1;
gyorgyf@646 815 paint.setPen(getBaseQColor());
gyorgyf@646 816 paint.setBrush(brushColour);
Chris@30 817
matthiasm@651 818 // if (shouldIlluminate &&
matthiasm@651 819 // // "illuminatePoint == p"
matthiasm@651 820 // !FlexiNoteModel::Point::Comparator()(illuminatePoint, p) &&
matthiasm@651 821 // !FlexiNoteModel::Point::Comparator()(p, illuminatePoint)) {
matthiasm@651 822 //
matthiasm@651 823 // paint.setPen(v->getForeground());
matthiasm@651 824 // paint.setBrush(v->getForeground());
matthiasm@651 825 //
matthiasm@651 826 // QString vlabel = QString("%1%2").arg(p.value).arg(m_model->getScaleUnits());
matthiasm@651 827 // v->drawVisibleText(paint,
matthiasm@651 828 // x - paint.fontMetrics().width(vlabel) - 2,
matthiasm@651 829 // y + paint.fontMetrics().height()/2
matthiasm@651 830 // - paint.fontMetrics().descent(),
matthiasm@651 831 // vlabel, View::OutlinedText);
matthiasm@651 832 //
matthiasm@651 833 // QString hlabel = RealTime::frame2RealTime
matthiasm@651 834 // (p.frame, m_model->getSampleRate()).toText(true).c_str();
matthiasm@651 835 // v->drawVisibleText(paint,
matthiasm@651 836 // x,
matthiasm@651 837 // y - h/2 - paint.fontMetrics().descent() - 2,
matthiasm@651 838 // hlabel, View::OutlinedText);
matthiasm@651 839 // }
gyorgyf@646 840
gyorgyf@646 841 paint.drawRect(x, y - h/2, w, h);
Chris@30 842 }
Chris@30 843
Chris@30 844 paint.restore();
Chris@30 845 }
Chris@30 846
Chris@30 847 void
matthiasm@620 848 FlexiNoteLayer::drawStart(View *v, QMouseEvent *e)
Chris@30 849 {
matthiasm@620 850 // SVDEBUG << "FlexiNoteLayer::drawStart(" << e->x() << "," << e->y() << ")" << endl;
Chris@30 851
Chris@30 852 if (!m_model) return;
Chris@30 853
Chris@44 854 long frame = v->getFrameForX(e->x());
Chris@30 855 if (frame < 0) frame = 0;
Chris@30 856 frame = frame / m_model->getResolution() * m_model->getResolution();
Chris@30 857
Chris@44 858 float value = getValueForY(v, e->y());
Chris@30 859
matthiasm@620 860 m_editingPoint = FlexiNoteModel::Point(frame, value, 0, 0.8, tr("New Point"));
Chris@30 861 m_originalPoint = m_editingPoint;
Chris@30 862
Chris@376 863 if (m_editingCommand) finish(m_editingCommand);
matthiasm@620 864 m_editingCommand = new FlexiNoteModel::EditCommand(m_model,
gyorgyf@646 865 tr("Draw Point"));
Chris@30 866 m_editingCommand->addPoint(m_editingPoint);
Chris@30 867
Chris@30 868 m_editing = true;
Chris@30 869 }
Chris@30 870
Chris@30 871 void
matthiasm@620 872 FlexiNoteLayer::drawDrag(View *v, QMouseEvent *e)
Chris@30 873 {
matthiasm@620 874 // SVDEBUG << "FlexiNoteLayer::drawDrag(" << e->x() << "," << e->y() << ")" << endl;
Chris@30 875
Chris@30 876 if (!m_model || !m_editing) return;
Chris@30 877
Chris@44 878 long frame = v->getFrameForX(e->x());
Chris@30 879 if (frame < 0) frame = 0;
Chris@30 880 frame = frame / m_model->getResolution() * m_model->getResolution();
Chris@30 881
Chris@101 882 float newValue = getValueForY(v, e->y());
Chris@101 883
Chris@101 884 long newFrame = m_editingPoint.frame;
Chris@101 885 long newDuration = frame - newFrame;
Chris@101 886 if (newDuration < 0) {
Chris@101 887 newFrame = frame;
Chris@101 888 newDuration = -newDuration;
Chris@101 889 } else if (newDuration == 0) {
Chris@101 890 newDuration = 1;
Chris@101 891 }
Chris@30 892
Chris@30 893 m_editingCommand->deletePoint(m_editingPoint);
Chris@101 894 m_editingPoint.frame = newFrame;
Chris@101 895 m_editingPoint.value = newValue;
Chris@101 896 m_editingPoint.duration = newDuration;
Chris@30 897 m_editingCommand->addPoint(m_editingPoint);
Chris@30 898 }
Chris@30 899
Chris@30 900 void
matthiasm@620 901 FlexiNoteLayer::drawEnd(View *, QMouseEvent *)
Chris@30 902 {
matthiasm@620 903 // SVDEBUG << "FlexiNoteLayer::drawEnd(" << e->x() << "," << e->y() << ")" << endl;
Chris@30 904 if (!m_model || !m_editing) return;
Chris@376 905 finish(m_editingCommand);
Chris@30 906 m_editingCommand = 0;
Chris@30 907 m_editing = false;
Chris@30 908 }
Chris@30 909
Chris@30 910 void
matthiasm@620 911 FlexiNoteLayer::eraseStart(View *v, QMouseEvent *e)
Chris@335 912 {
Chris@335 913 if (!m_model) return;
Chris@335 914
Chris@550 915 if (!getPointToDrag(v, e->x(), e->y(), m_editingPoint)) return;
Chris@335 916
Chris@335 917 if (m_editingCommand) {
gyorgyf@646 918 finish(m_editingCommand);
gyorgyf@646 919 m_editingCommand = 0;
Chris@335 920 }
Chris@335 921
Chris@335 922 m_editing = true;
Chris@335 923 }
Chris@335 924
Chris@335 925 void
matthiasm@620 926 FlexiNoteLayer::eraseDrag(View *v, QMouseEvent *e)
Chris@335 927 {
Chris@335 928 }
Chris@335 929
Chris@335 930 void
matthiasm@620 931 FlexiNoteLayer::eraseEnd(View *v, QMouseEvent *e)
Chris@335 932 {
Chris@335 933 if (!m_model || !m_editing) return;
Chris@335 934
Chris@335 935 m_editing = false;
Chris@335 936
matthiasm@620 937 FlexiNoteModel::Point p(0);
Chris@550 938 if (!getPointToDrag(v, e->x(), e->y(), p)) return;
Chris@550 939 if (p.frame != m_editingPoint.frame || p.value != m_editingPoint.value) return;
Chris@550 940
matthiasm@620 941 m_editingCommand = new FlexiNoteModel::EditCommand(m_model, tr("Erase Point"));
Chris@335 942
Chris@335 943 m_editingCommand->deletePoint(m_editingPoint);
Chris@335 944
Chris@376 945 finish(m_editingCommand);
Chris@335 946 m_editingCommand = 0;
Chris@335 947 m_editing = false;
Chris@335 948 }
Chris@335 949
Chris@335 950 void
matthiasm@620 951 FlexiNoteLayer::editStart(View *v, QMouseEvent *e)
Chris@30 952 {
matthiasm@620 953 // SVDEBUG << "FlexiNoteLayer::editStart(" << e->x() << "," << e->y() << ")" << endl;
gyorgyf@635 954 std::cerr << "FlexiNoteLayer::editStart(" << e->x() << "," << e->y() << ")" << std::endl;
Chris@30 955
Chris@30 956 if (!m_model) return;
Chris@30 957
Chris@550 958 if (!getPointToDrag(v, e->x(), e->y(), m_editingPoint)) return;
matthiasm@651 959 m_originalPoint = FlexiNote(m_editingPoint);
gyorgyf@649 960
matthiasm@651 961 if (m_editMode == RightBoundary) {
matthiasm@651 962 m_dragPointX = v->getXForFrame(m_editingPoint.frame + m_editingPoint.duration);
gyorgyf@649 963 } else {
gyorgyf@649 964 m_dragPointX = v->getXForFrame(m_editingPoint.frame);
gyorgyf@649 965 }
Chris@551 966 m_dragPointY = getYForValue(v, m_editingPoint.value);
Chris@551 967
Chris@30 968 if (m_editingCommand) {
gyorgyf@646 969 finish(m_editingCommand);
gyorgyf@646 970 m_editingCommand = 0;
Chris@30 971 }
Chris@30 972
Chris@30 973 m_editing = true;
Chris@551 974 m_dragStartX = e->x();
Chris@551 975 m_dragStartY = e->y();
matthiasm@651 976
matthiasm@651 977 long onset = m_originalPoint.frame;
matthiasm@651 978 long offset = m_originalPoint.frame + m_originalPoint.duration - 1;
matthiasm@651 979
matthiasm@651 980 m_greatestLeftNeighbourFrame = -1;
matthiasm@651 981 m_smallestRightNeighbourFrame = std::numeric_limits<long>::max();
matthiasm@651 982
matthiasm@651 983 for (FlexiNoteModel::PointList::const_iterator i = m_model->getPoints().begin();
matthiasm@651 984 i != m_model->getPoints().end(); ++i) {
matthiasm@651 985 FlexiNote currentNote = *i;
matthiasm@651 986
matthiasm@651 987 // left boundary
matthiasm@651 988 if (currentNote.frame + currentNote.duration - 1 < onset) {
matthiasm@651 989 m_greatestLeftNeighbourFrame = currentNote.frame + currentNote.duration - 1;
matthiasm@651 990 }
matthiasm@651 991
matthiasm@651 992 // right boundary
matthiasm@651 993 if (currentNote.frame > offset) {
matthiasm@651 994 m_smallestRightNeighbourFrame = currentNote.frame;
matthiasm@651 995 break;
matthiasm@651 996 }
matthiasm@651 997 }
matthiasm@651 998 std::cerr << "note frame: " << onset << ", left boundary: " << m_greatestLeftNeighbourFrame << ", right boundary: " << m_smallestRightNeighbourFrame << std::endl;
Chris@30 999 }
Chris@30 1000
Chris@30 1001 void
matthiasm@620 1002 FlexiNoteLayer::editDrag(View *v, QMouseEvent *e)
Chris@30 1003 {
matthiasm@620 1004 // SVDEBUG << "FlexiNoteLayer::editDrag(" << e->x() << "," << e->y() << ")" << endl;
gyorgyf@635 1005 std::cerr << "FlexiNoteLayer::editDrag(" << e->x() << "," << e->y() << ")" << std::endl;
Chris@30 1006
Chris@30 1007 if (!m_model || !m_editing) return;
Chris@30 1008
Chris@551 1009 int xdist = e->x() - m_dragStartX;
Chris@551 1010 int ydist = e->y() - m_dragStartY;
Chris@551 1011 int newx = m_dragPointX + xdist;
Chris@551 1012 int newy = m_dragPointY + ydist;
Chris@551 1013
matthiasm@657 1014 long dragFrame = v->getFrameForX(newx);
matthiasm@657 1015 if (dragFrame < 0) dragFrame = 0;
matthiasm@657 1016 dragFrame = dragFrame / m_model->getResolution() * m_model->getResolution();
matthiasm@651 1017
Chris@551 1018 float value = getValueForY(v, newy);
Chris@30 1019
Chris@30 1020 if (!m_editingCommand) {
gyorgyf@646 1021 m_editingCommand = new FlexiNoteModel::EditCommand(m_model,
gyorgyf@646 1022 tr("Drag Point"));
Chris@30 1023 }
Chris@30 1024
Chris@30 1025 m_editingCommand->deletePoint(m_editingPoint);
matthiasm@651 1026
matthiasm@651 1027 std::cerr << "edit mode: " << m_editMode << std::endl;
matthiasm@657 1028
matthiasm@651 1029 switch (m_editMode) {
matthiasm@651 1030 case LeftBoundary : {
gyorgyf@658 1031 // left
gyorgyf@658 1032 if (m_intelligentActions && dragFrame <= m_greatestLeftNeighbourFrame) dragFrame = m_greatestLeftNeighbourFrame + 1;
matthiasm@657 1033 // right
gyorgyf@658 1034 if (m_intelligentActions && dragFrame >= m_originalPoint.frame + m_originalPoint.duration) {
matthiasm@657 1035 dragFrame = m_originalPoint.frame + m_originalPoint.duration - 1;
matthiasm@651 1036 }
matthiasm@657 1037 m_editingPoint.frame = dragFrame;
matthiasm@657 1038 m_editingPoint.duration = m_originalPoint.frame - dragFrame + m_originalPoint.duration;
matthiasm@651 1039 break;
matthiasm@651 1040 }
matthiasm@651 1041 case RightBoundary : {
matthiasm@657 1042 // left
gyorgyf@658 1043 if (m_intelligentActions && dragFrame <= m_greatestLeftNeighbourFrame) dragFrame = m_greatestLeftNeighbourFrame + 1;
gyorgyf@658 1044 if (m_intelligentActions && dragFrame >= m_smallestRightNeighbourFrame) dragFrame = m_smallestRightNeighbourFrame - 1;
matthiasm@657 1045 m_editingPoint.duration = dragFrame - m_originalPoint.frame + 1;
matthiasm@651 1046 break;
matthiasm@651 1047 }
matthiasm@651 1048 case DragNote : {
matthiasm@657 1049 // left
gyorgyf@658 1050 if (m_intelligentActions && dragFrame <= m_greatestLeftNeighbourFrame) dragFrame = m_greatestLeftNeighbourFrame + 1;
matthiasm@657 1051 // right
gyorgyf@658 1052 if (m_intelligentActions && dragFrame + m_originalPoint.duration >= m_smallestRightNeighbourFrame) {
matthiasm@657 1053 dragFrame = m_smallestRightNeighbourFrame - m_originalPoint.duration;
matthiasm@651 1054 }
matthiasm@657 1055 m_editingPoint.frame = dragFrame;
matthiasm@651 1056 m_editingPoint.value = value;
matthiasm@651 1057 break;
matthiasm@651 1058 }
gyorgyf@649 1059 }
Chris@30 1060 m_editingCommand->addPoint(m_editingPoint);
gyorgyf@649 1061 std::cerr << "added new point(" << m_editingPoint.frame << "," << m_editingPoint.duration << ")" << std::endl;
gyorgyf@649 1062
Chris@30 1063 }
Chris@30 1064
Chris@30 1065 void
gyorgyf@635 1066 FlexiNoteLayer::editEnd(View *v, QMouseEvent *e)
Chris@30 1067 {
matthiasm@620 1068 // SVDEBUG << "FlexiNoteLayer::editEnd(" << e->x() << "," << e->y() << ")" << endl;
gyorgyf@635 1069 std::cerr << "FlexiNoteLayer::editEnd(" << e->x() << "," << e->y() << ")" << std::endl;
matthiasm@656 1070
Chris@30 1071 if (!m_model || !m_editing) return;
Chris@30 1072
Chris@30 1073 if (m_editingCommand) {
Chris@30 1074
gyorgyf@646 1075 QString newName = m_editingCommand->getName();
Chris@30 1076
gyorgyf@646 1077 if (m_editingPoint.frame != m_originalPoint.frame) {
gyorgyf@646 1078 if (m_editingPoint.value != m_originalPoint.value) {
gyorgyf@646 1079 newName = tr("Edit Point");
gyorgyf@646 1080 } else {
gyorgyf@646 1081 newName = tr("Relocate Point");
gyorgyf@646 1082 }
gyorgyf@646 1083 } else {
gyorgyf@646 1084 newName = tr("Change Point Value");
gyorgyf@646 1085 }
Chris@30 1086
gyorgyf@646 1087 m_editingCommand->setName(newName);
gyorgyf@646 1088 finish(m_editingCommand);
Chris@30 1089 }
Chris@30 1090
Chris@30 1091 m_editingCommand = 0;
Chris@30 1092 m_editing = false;
Chris@30 1093 }
Chris@30 1094
gyorgyf@635 1095 void
gyorgyf@635 1096 FlexiNoteLayer::splitStart(View *v, QMouseEvent *e)
gyorgyf@635 1097 {
gyorgyf@646 1098 // GF: note splitting starts (!! remove printing soon)
gyorgyf@646 1099 std::cerr << "splitStart" << std::endl;
gyorgyf@646 1100 if (!m_model) return;
gyorgyf@635 1101
gyorgyf@635 1102 if (!getPointToDrag(v, e->x(), e->y(), m_editingPoint)) return;
gyorgyf@635 1103 // m_originalPoint = m_editingPoint;
gyorgyf@635 1104 //
gyorgyf@635 1105 // m_dragPointX = v->getXForFrame(m_editingPoint.frame);
gyorgyf@635 1106 // m_dragPointY = getYForValue(v, m_editingPoint.value);
gyorgyf@635 1107
gyorgyf@635 1108 if (m_editingCommand) {
gyorgyf@646 1109 finish(m_editingCommand);
gyorgyf@646 1110 m_editingCommand = 0;
gyorgyf@635 1111 }
gyorgyf@635 1112
gyorgyf@635 1113 m_editing = true;
gyorgyf@635 1114 m_dragStartX = e->x();
gyorgyf@635 1115 m_dragStartY = e->y();
gyorgyf@635 1116
gyorgyf@635 1117 }
gyorgyf@635 1118
gyorgyf@635 1119 void
gyorgyf@635 1120 FlexiNoteLayer::splitEnd(View *v, QMouseEvent *e)
gyorgyf@635 1121 {
gyorgyf@646 1122 // GF: note splitting ends. (!! remove printing soon)
gyorgyf@646 1123 std::cerr << "splitEnd" << std::endl;
matthiasm@651 1124 if (!m_model || !m_editing || m_editMode != SplitNote) return;
gyorgyf@635 1125
gyorgyf@635 1126 int xdist = e->x() - m_dragStartX;
gyorgyf@635 1127 int ydist = e->y() - m_dragStartY;
gyorgyf@635 1128 if (xdist != 0 || ydist != 0) {
gyorgyf@646 1129 std::cerr << "mouse moved" << std::endl;
gyorgyf@635 1130 return;
gyorgyf@635 1131 }
gyorgyf@635 1132
gyorgyf@649 1133 // MM: simpler declaration
matthiasm@648 1134 FlexiNote note(0);
gyorgyf@635 1135 if (!getPointToDrag(v, e->x(), e->y(), note)) return;
gyorgyf@635 1136
gyorgyf@635 1137 long frame = v->getFrameForX(e->x());
gyorgyf@635 1138
matthiasm@648 1139 int gap = 0; // MM: I prefer a gap of 0, but we can decide later
matthiasm@648 1140
gyorgyf@649 1141 // MM: changed this a bit, to make it slightly clearer (// GF: nice changes!)
matthiasm@648 1142 FlexiNote newNote1(note.frame, note.value,
matthiasm@648 1143 frame - note.frame - gap,
matthiasm@648 1144 note.level, note.label);
matthiasm@648 1145
matthiasm@648 1146 FlexiNote newNote2(frame, note.value,
matthiasm@648 1147 note.duration - newNote1.duration,
matthiasm@648 1148 note.level, note.label);
gyorgyf@658 1149
gyorgyf@658 1150 if (m_intelligentActions) {
gyorgyf@658 1151 updateNoteValue(v,newNote1);
gyorgyf@658 1152 updateNoteValue(v,newNote2);
gyorgyf@658 1153 }
gyorgyf@655 1154
gyorgyf@635 1155 FlexiNoteModel::EditCommand *command = new FlexiNoteModel::EditCommand
gyorgyf@635 1156 (m_model, tr("Edit Point"));
gyorgyf@635 1157 command->deletePoint(note);
gyorgyf@649 1158 if ((e->modifiers() & Qt::ShiftModifier)) {
gyorgyf@649 1159 finish(command);
gyorgyf@649 1160 return;
gyorgyf@649 1161 }
gyorgyf@635 1162 command->addPoint(newNote1);
gyorgyf@635 1163 command->addPoint(newNote2);
gyorgyf@635 1164 finish(command);
gyorgyf@646 1165
gyorgyf@646 1166 }
gyorgyf@646 1167
gyorgyf@655 1168 void
matthiasm@660 1169 FlexiNoteLayer::addNote(View *v, QMouseEvent *e)
matthiasm@660 1170 {
matthiasm@660 1171 std::cerr << "addNote" << std::endl;
matthiasm@660 1172 if (!m_model) return;
matthiasm@660 1173
matthiasm@660 1174 long duration = 10000;
matthiasm@660 1175
matthiasm@660 1176 long frame = v->getFrameForX(e->x());
matthiasm@660 1177 float value = getValueForY(v, e->y());
matthiasm@660 1178
matthiasm@660 1179 if (m_intelligentActions) {
matthiasm@660 1180 long smallestRightNeighbourFrame = 0;
matthiasm@660 1181 for (FlexiNoteModel::PointList::const_iterator i = m_model->getPoints().begin();
matthiasm@660 1182 i != m_model->getPoints().end(); ++i) {
matthiasm@660 1183 FlexiNote currentNote = *i;
matthiasm@660 1184 if (currentNote.frame > frame) {
matthiasm@660 1185 smallestRightNeighbourFrame = currentNote.frame;
matthiasm@660 1186 break;
matthiasm@660 1187 }
matthiasm@660 1188 }
matthiasm@660 1189
matthiasm@660 1190 duration = std::min(smallestRightNeighbourFrame - frame + 1, duration);
matthiasm@660 1191 duration = (duration > 0) ? duration : 0;
matthiasm@660 1192 }
matthiasm@660 1193
matthiasm@660 1194 if (!m_intelligentActions ||
matthiasm@660 1195 m_model->getPoints(frame).empty() && duration > 0)
matthiasm@660 1196 {
matthiasm@660 1197 FlexiNote newNote(frame, value, duration, 100, "new note");
matthiasm@660 1198 FlexiNoteModel::EditCommand *command = new FlexiNoteModel::EditCommand
matthiasm@660 1199 (m_model, tr("Add Point"));
matthiasm@660 1200 command->addPoint(newNote);
matthiasm@660 1201 finish(command);
matthiasm@660 1202 }
matthiasm@660 1203 }
matthiasm@660 1204
matthiasm@660 1205
matthiasm@660 1206 void
gyorgyf@655 1207 FlexiNoteLayer::updateNoteValue(View *v, FlexiNoteModel::Point &note) const
gyorgyf@655 1208 {
gyorgyf@655 1209 //GF: update the note value conforming the median of pitch values in the underlying note layer
gyorgyf@655 1210 Layer *layer = v->getLayer(1); // GF: !!! gross assumption about correct layer order
gyorgyf@655 1211 SparseTimeValueModel *model = 0;
gyorgyf@655 1212 if (layer && layer->getModel())
gyorgyf@655 1213 model = dynamic_cast<SparseTimeValueModel *>(layer->getModel());
gyorgyf@655 1214
gyorgyf@655 1215 if (!model) return;
gyorgyf@655 1216
gyorgyf@655 1217 std::cerr << model->getTypeName() << std::endl;
gyorgyf@655 1218
gyorgyf@655 1219 SparseModel<TimeValuePoint>::PointList dataPoints = model->getPoints(note.frame, note.frame + note.duration);
gyorgyf@655 1220 if (dataPoints.empty()) return;
gyorgyf@655 1221
gyorgyf@655 1222 // std::cerr << "frame " << note.frame << ": " << dataPoints.size() << " candidate points" << std::endl;
gyorgyf@655 1223
gyorgyf@655 1224 std::vector<float> pitchValues;
gyorgyf@655 1225
gyorgyf@655 1226 for (SparseModel<TimeValuePoint>::PointList::const_iterator i = dataPoints.begin();
gyorgyf@655 1227 i != dataPoints.end(); ++i) {
gyorgyf@655 1228 pitchValues.push_back((*i).value);
gyorgyf@655 1229 }
gyorgyf@655 1230 sort(pitchValues.begin(), pitchValues.end());
gyorgyf@655 1231 size_t size = pitchValues.size();
gyorgyf@655 1232 double median;
gyorgyf@655 1233
gyorgyf@655 1234 if (size % 2 == 0) {
gyorgyf@655 1235 median = (pitchValues[size/2 - 1] + pitchValues[size/2]) / 2;
gyorgyf@655 1236 } else {
gyorgyf@655 1237 median = pitchValues[size/2];
gyorgyf@655 1238 }
gyorgyf@655 1239
gyorgyf@655 1240 note.value = median;
gyorgyf@655 1241 }
gyorgyf@655 1242
gyorgyf@646 1243 void
gyorgyf@646 1244 FlexiNoteLayer::mouseMoveEvent(View *v, QMouseEvent *e)
gyorgyf@646 1245 {
gyorgyf@646 1246 // GF: context sensitive cursors
gyorgyf@646 1247 // v->setCursor(Qt::ArrowCursor);
gyorgyf@646 1248 FlexiNoteModel::Point note(0);
gyorgyf@646 1249 if (!getNoteToEdit(v, e->x(), e->y(), note)) {
gyorgyf@646 1250 // v->setCursor(Qt::UpArrowCursor);
gyorgyf@646 1251 return;
gyorgyf@646 1252 }
gyorgyf@646 1253
gyorgyf@646 1254 bool closeToLeft = false, closeToRight = false, closeToTop = false, closeToBottom = false;
gyorgyf@646 1255 getRelativeMousePosition(v, note, e->x(), e->y(), closeToLeft, closeToRight, closeToTop, closeToBottom);
gyorgyf@646 1256 // if (!closeToLeft) return;
gyorgyf@646 1257 // if (closeToTop) v->setCursor(Qt::SizeVerCursor);
gyorgyf@649 1258
matthiasm@651 1259 if (closeToLeft) { v->setCursor(Qt::SizeHorCursor); m_editMode = LeftBoundary; return; }
matthiasm@651 1260 if (closeToRight) { v->setCursor(Qt::SizeHorCursor); m_editMode = RightBoundary; return; }
matthiasm@651 1261 if (closeToTop) { v->setCursor(Qt::CrossCursor); m_editMode = DragNote; return; }
matthiasm@651 1262 if (closeToBottom) { v->setCursor(Qt::UpArrowCursor); m_editMode = SplitNote; return; }
gyorgyf@649 1263
gyorgyf@646 1264 v->setCursor(Qt::ArrowCursor);
gyorgyf@646 1265
gyorgyf@649 1266 // std::cerr << "Mouse moved in edit mode over FlexiNoteLayer" << std::endl;
gyorgyf@646 1267 // v->setCursor(Qt::SizeHorCursor);
gyorgyf@646 1268
gyorgyf@646 1269 }
gyorgyf@646 1270
gyorgyf@646 1271 void
gyorgyf@646 1272 FlexiNoteLayer::getRelativeMousePosition(View *v, FlexiNoteModel::Point &note, int x, int y, bool &closeToLeft, bool &closeToRight, bool &closeToTop, bool &closeToBottom) const
gyorgyf@646 1273 {
gyorgyf@649 1274 // GF: TODO: consoloidate the tolerance values
gyorgyf@646 1275 if (!m_model) return;
gyorgyf@646 1276
matthiasm@651 1277 int ctol = 0;
gyorgyf@646 1278 int noteStartX = v->getXForFrame(note.frame);
gyorgyf@646 1279 int noteEndX = v->getXForFrame(note.frame + note.duration);
gyorgyf@646 1280 int noteValueY = getYForValue(v,note.value);
gyorgyf@646 1281 int noteStartY = noteValueY - (NOTE_HEIGHT / 2);
gyorgyf@646 1282 int noteEndY = noteValueY + (NOTE_HEIGHT / 2);
gyorgyf@646 1283
gyorgyf@646 1284 bool closeToNote = false;
gyorgyf@646 1285
gyorgyf@646 1286 if (y >= noteStartY-ctol && y <= noteEndY+ctol && x >= noteStartX-ctol && x <= noteEndX+ctol) closeToNote = true;
gyorgyf@646 1287 if (!closeToNote) return;
gyorgyf@646 1288
matthiasm@651 1289 int tol = NOTE_HEIGHT / 2;
gyorgyf@646 1290
gyorgyf@646 1291 if (x >= noteStartX - tol && x <= noteStartX + tol) closeToLeft = true;
gyorgyf@646 1292 if (x >= noteEndX - tol && x <= noteEndX + tol) closeToRight = true;
gyorgyf@646 1293 if (y >= noteStartY - tol && y <= noteStartY + tol) closeToTop = true;
gyorgyf@646 1294 if (y >= noteEndY - tol && y <= noteEndY + tol) closeToBottom = true;
gyorgyf@646 1295
gyorgyf@635 1296 }
gyorgyf@635 1297
gyorgyf@635 1298
Chris@255 1299 bool
matthiasm@620 1300 FlexiNoteLayer::editOpen(View *v, QMouseEvent *e)
Chris@70 1301 {
gyorgyf@633 1302 std::cerr << "Opening note editor dialog" << std::endl;
Chris@255 1303 if (!m_model) return false;
Chris@70 1304
matthiasm@620 1305 FlexiNoteModel::Point note(0);
Chris@550 1306 if (!getPointToDrag(v, e->x(), e->y(), note)) return false;
Chris@550 1307
matthiasm@620 1308 // FlexiNoteModel::Point note = *points.begin();
Chris@70 1309
Chris@70 1310 ItemEditDialog *dialog = new ItemEditDialog
Chris@70 1311 (m_model->getSampleRate(),
Chris@70 1312 ItemEditDialog::ShowTime |
Chris@70 1313 ItemEditDialog::ShowDuration |
Chris@70 1314 ItemEditDialog::ShowValue |
Chris@100 1315 ItemEditDialog::ShowText,
Chris@100 1316 m_model->getScaleUnits());
Chris@70 1317
Chris@70 1318 dialog->setFrameTime(note.frame);
Chris@70 1319 dialog->setValue(note.value);
Chris@70 1320 dialog->setFrameDuration(note.duration);
Chris@70 1321 dialog->setText(note.label);
Chris@70 1322
Chris@70 1323 if (dialog->exec() == QDialog::Accepted) {
Chris@70 1324
matthiasm@620 1325 FlexiNoteModel::Point newNote = note;
Chris@70 1326 newNote.frame = dialog->getFrameTime();
Chris@70 1327 newNote.value = dialog->getValue();
Chris@70 1328 newNote.duration = dialog->getFrameDuration();
Chris@70 1329 newNote.label = dialog->getText();
Chris@70 1330
matthiasm@620 1331 FlexiNoteModel::EditCommand *command = new FlexiNoteModel::EditCommand
Chris@70 1332 (m_model, tr("Edit Point"));
Chris@70 1333 command->deletePoint(note);
Chris@70 1334 command->addPoint(newNote);
Chris@376 1335 finish(command);
Chris@70 1336 }
Chris@70 1337
Chris@70 1338 delete dialog;
Chris@255 1339 return true;
Chris@70 1340 }
Chris@70 1341
Chris@70 1342 void
matthiasm@620 1343 FlexiNoteLayer::moveSelection(Selection s, size_t newStartFrame)
Chris@43 1344 {
Chris@99 1345 if (!m_model) return;
Chris@99 1346
matthiasm@620 1347 FlexiNoteModel::EditCommand *command =
gyorgyf@646 1348 new FlexiNoteModel::EditCommand(m_model, tr("Drag Selection"));
Chris@43 1349
matthiasm@620 1350 FlexiNoteModel::PointList points =
gyorgyf@646 1351 m_model->getPoints(s.getStartFrame(), s.getEndFrame());
Chris@43 1352
matthiasm@620 1353 for (FlexiNoteModel::PointList::iterator i = points.begin();
gyorgyf@646 1354 i != points.end(); ++i) {
Chris@43 1355
gyorgyf@646 1356 if (s.contains(i->frame)) {
gyorgyf@646 1357 FlexiNoteModel::Point newPoint(*i);
gyorgyf@646 1358 newPoint.frame = i->frame + newStartFrame - s.getStartFrame();
gyorgyf@646 1359 command->deletePoint(*i);
gyorgyf@646 1360 command->addPoint(newPoint);
gyorgyf@646 1361 }
Chris@43 1362 }
Chris@43 1363
Chris@376 1364 finish(command);
Chris@43 1365 }
Chris@43 1366
Chris@43 1367 void
matthiasm@620 1368 FlexiNoteLayer::resizeSelection(Selection s, Selection newSize)
Chris@43 1369 {
Chris@99 1370 if (!m_model) return;
Chris@99 1371
matthiasm@620 1372 FlexiNoteModel::EditCommand *command =
gyorgyf@646 1373 new FlexiNoteModel::EditCommand(m_model, tr("Resize Selection"));
Chris@43 1374
matthiasm@620 1375 FlexiNoteModel::PointList points =
gyorgyf@646 1376 m_model->getPoints(s.getStartFrame(), s.getEndFrame());
Chris@43 1377
Chris@43 1378 double ratio =
gyorgyf@646 1379 double(newSize.getEndFrame() - newSize.getStartFrame()) /
gyorgyf@646 1380 double(s.getEndFrame() - s.getStartFrame());
Chris@43 1381
matthiasm@620 1382 for (FlexiNoteModel::PointList::iterator i = points.begin();
gyorgyf@646 1383 i != points.end(); ++i) {
Chris@43 1384
gyorgyf@646 1385 if (s.contains(i->frame)) {
Chris@43 1386
gyorgyf@646 1387 double targetStart = i->frame;
gyorgyf@646 1388 targetStart = newSize.getStartFrame() +
gyorgyf@646 1389 double(targetStart - s.getStartFrame()) * ratio;
Chris@43 1390
gyorgyf@646 1391 double targetEnd = i->frame + i->duration;
gyorgyf@646 1392 targetEnd = newSize.getStartFrame() +
gyorgyf@646 1393 double(targetEnd - s.getStartFrame()) * ratio;
Chris@43 1394
gyorgyf@646 1395 FlexiNoteModel::Point newPoint(*i);
gyorgyf@646 1396 newPoint.frame = lrint(targetStart);
gyorgyf@646 1397 newPoint.duration = lrint(targetEnd - targetStart);
gyorgyf@646 1398 command->deletePoint(*i);
gyorgyf@646 1399 command->addPoint(newPoint);
gyorgyf@646 1400 }
Chris@43 1401 }
Chris@43 1402
Chris@376 1403 finish(command);
Chris@43 1404 }
Chris@43 1405
Chris@76 1406 void
matthiasm@620 1407 FlexiNoteLayer::deleteSelection(Selection s)
Chris@76 1408 {
Chris@99 1409 if (!m_model) return;
Chris@99 1410
matthiasm@620 1411 FlexiNoteModel::EditCommand *command =
gyorgyf@646 1412 new FlexiNoteModel::EditCommand(m_model, tr("Delete Selected Points"));
Chris@76 1413
matthiasm@620 1414 FlexiNoteModel::PointList points =
gyorgyf@646 1415 m_model->getPoints(s.getStartFrame(), s.getEndFrame());
Chris@76 1416
matthiasm@620 1417 for (FlexiNoteModel::PointList::iterator i = points.begin();
gyorgyf@646 1418 i != points.end(); ++i) {
Chris@76 1419
Chris@76 1420 if (s.contains(i->frame)) {
Chris@76 1421 command->deletePoint(*i);
Chris@76 1422 }
Chris@76 1423 }
Chris@76 1424
Chris@376 1425 finish(command);
Chris@76 1426 }
Chris@76 1427
Chris@76 1428 void
matthiasm@620 1429 FlexiNoteLayer::copy(View *v, Selection s, Clipboard &to)
Chris@76 1430 {
Chris@99 1431 if (!m_model) return;
Chris@99 1432
matthiasm@620 1433 FlexiNoteModel::PointList points =
gyorgyf@646 1434 m_model->getPoints(s.getStartFrame(), s.getEndFrame());
Chris@76 1435
matthiasm@620 1436 for (FlexiNoteModel::PointList::iterator i = points.begin();
gyorgyf@646 1437 i != points.end(); ++i) {
gyorgyf@646 1438 if (s.contains(i->frame)) {
Chris@335 1439 Clipboard::Point point(i->frame, i->value, i->duration, i->level, i->label);
Chris@360 1440 point.setReferenceFrame(alignToReference(v, i->frame));
Chris@76 1441 to.addPoint(point);
Chris@76 1442 }
Chris@76 1443 }
Chris@76 1444 }
Chris@76 1445
Chris@125 1446 bool
matthiasm@620 1447 FlexiNoteLayer::paste(View *v, const Clipboard &from, int frameOffset, bool /* interactive */)
Chris@76 1448 {
Chris@125 1449 if (!m_model) return false;
Chris@99 1450
Chris@76 1451 const Clipboard::PointList &points = from.getPoints();
Chris@76 1452
Chris@360 1453 bool realign = false;
Chris@360 1454
Chris@360 1455 if (clipboardHasDifferentAlignment(v, from)) {
Chris@360 1456
Chris@360 1457 QMessageBox::StandardButton button =
Chris@360 1458 QMessageBox::question(v, tr("Re-align pasted items?"),
Chris@360 1459 tr("The items you are pasting came from a layer with different source material from this one. Do you want to re-align them in time, to match the source material for this layer?"),
Chris@360 1460 QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel,
Chris@360 1461 QMessageBox::Yes);
Chris@360 1462
Chris@360 1463 if (button == QMessageBox::Cancel) {
Chris@360 1464 return false;
Chris@360 1465 }
Chris@360 1466
Chris@360 1467 if (button == QMessageBox::Yes) {
Chris@360 1468 realign = true;
Chris@360 1469 }
Chris@360 1470 }
Chris@360 1471
matthiasm@620 1472 FlexiNoteModel::EditCommand *command =
gyorgyf@646 1473 new FlexiNoteModel::EditCommand(m_model, tr("Paste"));
Chris@76 1474
Chris@76 1475 for (Clipboard::PointList::const_iterator i = points.begin();
Chris@76 1476 i != points.end(); ++i) {
Chris@76 1477
Chris@76 1478 if (!i->haveFrame()) continue;
Chris@76 1479 size_t frame = 0;
Chris@360 1480
Chris@360 1481 if (!realign) {
Chris@360 1482
Chris@360 1483 frame = i->getFrame();
Chris@360 1484
Chris@360 1485 } else {
Chris@360 1486
Chris@360 1487 if (i->haveReferenceFrame()) {
Chris@360 1488 frame = i->getReferenceFrame();
Chris@360 1489 frame = alignFromReference(v, frame);
Chris@360 1490 } else {
Chris@360 1491 frame = i->getFrame();
Chris@360 1492 }
Chris@76 1493 }
Chris@360 1494
matthiasm@620 1495 FlexiNoteModel::Point newPoint(frame);
Chris@76 1496
Chris@76 1497 if (i->haveLabel()) newPoint.label = i->getLabel();
Chris@76 1498 if (i->haveValue()) newPoint.value = i->getValue();
Chris@76 1499 else newPoint.value = (m_model->getValueMinimum() +
Chris@76 1500 m_model->getValueMaximum()) / 2;
Chris@335 1501 if (i->haveLevel()) newPoint.level = i->getLevel();
Chris@76 1502 if (i->haveDuration()) newPoint.duration = i->getDuration();
Chris@125 1503 else {
Chris@125 1504 size_t nextFrame = frame;
Chris@125 1505 Clipboard::PointList::const_iterator j = i;
Chris@125 1506 for (; j != points.end(); ++j) {
Chris@125 1507 if (!j->haveFrame()) continue;
Chris@125 1508 if (j != i) break;
Chris@125 1509 }
Chris@125 1510 if (j != points.end()) {
Chris@125 1511 nextFrame = j->getFrame();
Chris@125 1512 }
Chris@125 1513 if (nextFrame == frame) {
Chris@125 1514 newPoint.duration = m_model->getResolution();
Chris@125 1515 } else {
Chris@125 1516 newPoint.duration = nextFrame - frame;
Chris@125 1517 }
Chris@125 1518 }
Chris@76 1519
Chris@76 1520 command->addPoint(newPoint);
Chris@76 1521 }
Chris@76 1522
Chris@376 1523 finish(command);
Chris@125 1524 return true;
Chris@76 1525 }
Chris@76 1526
Chris@507 1527 void
matthiasm@620 1528 FlexiNoteLayer::addNoteOn(long frame, int pitch, int velocity)
Chris@507 1529 {
matthiasm@620 1530 m_pendingNoteOns.insert(FlexiNote(frame, pitch, 0, float(velocity) / 127.0, ""));
Chris@507 1531 }
Chris@507 1532
Chris@507 1533 void
matthiasm@620 1534 FlexiNoteLayer::addNoteOff(long frame, int pitch)
Chris@507 1535 {
matthiasm@620 1536 for (FlexiNoteSet::iterator i = m_pendingNoteOns.begin();
Chris@507 1537 i != m_pendingNoteOns.end(); ++i) {
Chris@507 1538 if (lrintf((*i).value) == pitch) {
matthiasm@620 1539 FlexiNote note(*i);
Chris@507 1540 m_pendingNoteOns.erase(i);
Chris@507 1541 note.duration = frame - note.frame;
Chris@507 1542 if (m_model) {
matthiasm@620 1543 FlexiNoteModel::AddPointCommand *c = new FlexiNoteModel::AddPointCommand
matthiasm@620 1544 (m_model, note, tr("Record FlexiNote"));
Chris@507 1545 // execute and bundle:
Chris@507 1546 CommandHistory::getInstance()->addCommand(c, true, true);
Chris@507 1547 }
Chris@507 1548 break;
Chris@507 1549 }
Chris@507 1550 }
Chris@507 1551 }
Chris@507 1552
Chris@507 1553 void
matthiasm@620 1554 FlexiNoteLayer::abandonNoteOns()
Chris@507 1555 {
Chris@507 1556 m_pendingNoteOns.clear();
Chris@507 1557 }
Chris@507 1558
Chris@287 1559 int
matthiasm@620 1560 FlexiNoteLayer::getDefaultColourHint(bool darkbg, bool &impose)
Chris@287 1561 {
Chris@287 1562 impose = false;
Chris@287 1563 return ColourDatabase::getInstance()->getColourIndex
Chris@287 1564 (QString(darkbg ? "White" : "Black"));
Chris@287 1565 }
Chris@287 1566
Chris@316 1567 void
matthiasm@620 1568 FlexiNoteLayer::toXml(QTextStream &stream,
Chris@316 1569 QString indent, QString extraAttributes) const
Chris@30 1570 {
Chris@316 1571 SingleColourLayer::toXml(stream, indent, extraAttributes +
Chris@445 1572 QString(" verticalScale=\"%1\" scaleMinimum=\"%2\" scaleMaximum=\"%3\" ")
Chris@445 1573 .arg(m_verticalScale)
Chris@445 1574 .arg(m_scaleMinimum)
Chris@445 1575 .arg(m_scaleMaximum));
Chris@30 1576 }
Chris@30 1577
Chris@30 1578 void
matthiasm@620 1579 FlexiNoteLayer::setProperties(const QXmlAttributes &attributes)
Chris@30 1580 {
Chris@287 1581 SingleColourLayer::setProperties(attributes);
Chris@30 1582
Chris@445 1583 bool ok, alsoOk;
Chris@30 1584 VerticalScale scale = (VerticalScale)
gyorgyf@646 1585 attributes.value("verticalScale").toInt(&ok);
Chris@30 1586 if (ok) setVerticalScale(scale);
Chris@445 1587
Chris@445 1588 float min = attributes.value("scaleMinimum").toFloat(&ok);
Chris@445 1589 float max = attributes.value("scaleMaximum").toFloat(&alsoOk);
Chris@670 1590 // if (ok && alsoOk && min != max) setDisplayExtents(min, max);
Chris@30 1591 }
Chris@30 1592
matthiasm@651 1593 void
matthiasm@656 1594 FlexiNoteLayer::setVerticalRangeToNoteRange(View *v)
matthiasm@651 1595 {
matthiasm@656 1596 float minf = std::numeric_limits<float>::max();
matthiasm@651 1597 float maxf = 0;
matthiasm@656 1598 bool hasNotes = 0;
matthiasm@651 1599 for (FlexiNoteModel::PointList::const_iterator i = m_model->getPoints().begin();
matthiasm@651 1600 i != m_model->getPoints().end(); ++i) {
matthiasm@656 1601 hasNotes = 1;
matthiasm@651 1602 FlexiNote note = *i;
matthiasm@651 1603 if (note.value < minf) minf = note.value;
matthiasm@656 1604 if (note.value > maxf) maxf = note.value;
matthiasm@651 1605 }
matthiasm@651 1606
matthiasm@656 1607 std::cerr << "min frequency:" << minf << ", max frequency: " << maxf << std::endl;
matthiasm@656 1608
matthiasm@656 1609 if (hasNotes) {
matthiasm@659 1610 v->getLayer(1)->setDisplayExtents(minf*0.66,maxf*1.5);
matthiasm@656 1611 // MM: this is a hack because we rely on
matthiasm@656 1612 // * this layer being automatically aligned to layer 1
matthiasm@656 1613 // * layer one is a log frequency layer.
matthiasm@651 1614 }
matthiasm@651 1615 }
Chris@30 1616
matthiasm@651 1617