annotate layer/FlexiNoteLayer.cpp @ 660:8663a831838f tonioni

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