1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022
|
// -*- c-basic-offset: 4 -*-
/*
Rosegarden-4
A sequencer and musical notation editor.
This program is Copyright 2000-2005
Guillaume Laurent <glaurent@telegraph-road.org>,
Chris Cannam <cannam@all-day-breakfast.com>,
Richard Bown <bownie@bownie.com>
The moral right of the authors to claim authorship of this work
has been asserted.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#include "notationcommands.h"
#include "Composition.h"
#include "Segment.h"
#include "Event.h"
#include "NotationTypes.h"
#include "Selection.h"
#include "Sets.h"
#include "Quantizer.h"
#include "SegmentNotationHelper.h"
#include "SegmentMatrixHelper.h"
#include "BaseProperties.h"
#include "Clipboard.h"
#include "notationproperties.h"
#include "rosestrings.h"
#include "rosedebug.h"
#include <iostream>
#include <cctype>
using Rosegarden::Segment;
using Rosegarden::SegmentNotationHelper;
using Rosegarden::Event;
using Rosegarden::timeT;
using Rosegarden::Note;
using Rosegarden::Clef;
using Rosegarden::Int;
using Rosegarden::Bool;
using Rosegarden::String;
using Rosegarden::Text;
using Rosegarden::Accidental;
using namespace Rosegarden::Accidentals;
using Rosegarden::Mark;
using Rosegarden::Indication;
using Rosegarden::EventSelection;
using namespace Rosegarden::BaseProperties;
using std::string;
using std::endl;
// The endTime passed in is the end of the affected section, not
// necessarily the same as time + note.getDuration()
NoteInsertionCommand::NoteInsertionCommand(Segment &segment, timeT time,
timeT endTime, Note note, int pitch,
Accidental accidental,
bool autoBeam,
bool matrixType,
NoteStyleName noteStyle) :
BasicCommand(i18n("Insert Note"), segment,
getModificationStartTime(segment, time),
(autoBeam ? segment.getBarEndForTime(endTime) : endTime)),
m_insertionTime(time),
m_note(note),
m_pitch(pitch),
m_accidental(accidental),
m_autoBeam(autoBeam),
m_matrixType(matrixType),
m_noteStyle(noteStyle),
m_lastInsertedEvent(0)
{
// nothing
}
NoteInsertionCommand::~NoteInsertionCommand()
{
// nothing
}
Rosegarden::timeT
NoteInsertionCommand::getModificationStartTime(Segment &segment,
Rosegarden::timeT time)
{
// We may be splitting a rest to insert this note, so we'll have
// to record the change from the start of that rest rather than
// just the start of the note
Rosegarden::timeT barTime = segment.getBarStartForTime(time);
Segment::iterator i = segment.findNearestTime(time);
if (i != segment.end() &&
(*i)->getAbsoluteTime() < time &&
(*i)->getAbsoluteTime() + (*i)->getDuration() > time &&
(*i)->isa(Note::EventRestType)) {
return std::min(barTime, (*i)->getAbsoluteTime());
}
return barTime;
}
void
NoteInsertionCommand::modifySegment()
{
Segment &segment(getSegment());
SegmentNotationHelper helper(segment);
// If we're attempting to insert at the same time and pitch as an
// existing note, then we remove the existing note first (so as to
// change its duration, if the durations differ)
Segment::iterator i, j;
segment.getTimeSlice(m_insertionTime, i, j);
while (i != j) {
if ((*i)->isa(Note::EventType)) {
long pitch;
if ((*i)->get<Int>(PITCH, pitch) && pitch == m_pitch) {
helper.deleteNote(*i);
break;
}
}
++i;
}
// insert via a model event, so as to apply the note style
Event *e = new Event
(Note::EventType, m_insertionTime, m_note.getDuration());
e->set<Int>(PITCH, m_pitch);
e->set<Int>(VELOCITY, 100);
if (m_accidental != Rosegarden::Accidentals::NoAccidental) {
e->set<String>(ACCIDENTAL, m_accidental);
}
if (m_noteStyle != NoteStyleFactory::DefaultStyle) {
e->set<String>(NotationProperties::NOTE_STYLE, m_noteStyle);
}
if (m_matrixType) {
i = Rosegarden::SegmentMatrixHelper(segment).insertNote(e);
} else {
i = helper.insertNote(e);
// e is just a model for SegmentNotationHelper::insertNote
delete e;
}
if (i != segment.end()) m_lastInsertedEvent = *i;
if (m_autoBeam) {
// We auto-beam the bar if it contains no beamed groups
// after the insertion point and if it contains no tupled
// groups at all.
timeT barStartTime = segment.getBarStartForTime(m_insertionTime);
timeT barEndTime = segment.getBarEndForTime(m_insertionTime);
for (Segment::iterator j = i;
j != segment.end() && (*j)->getAbsoluteTime() < barEndTime;
++j) {
if ((*j)->has(BEAMED_GROUP_ID)) return;
}
for (Segment::iterator j = i;
j != segment.end() && (*j)->getAbsoluteTime() >= barStartTime;
--j) {
if ((*j)->has(BEAMED_GROUP_TUPLET_BASE)) return;
if (j == segment.begin()) break;
}
helper.autoBeam(m_insertionTime, m_insertionTime, GROUP_TYPE_BEAMED);
}
}
RestInsertionCommand::RestInsertionCommand(Segment &segment, timeT time,
timeT endTime, Note note) :
NoteInsertionCommand(segment, time, endTime, note, 0, NoAccidental,
false, false, NoteStyleFactory::DefaultStyle)
{
setName("Insert Rest");
}
RestInsertionCommand::~RestInsertionCommand()
{
// nothing
}
void
RestInsertionCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
Segment::iterator i = helper.insertRest(m_insertionTime, m_note);
if (i != helper.segment().end()) m_lastInsertedEvent = *i;
}
ClefInsertionCommand::ClefInsertionCommand(Segment &segment, timeT time,
Clef clef,
bool shouldChangeOctave,
bool shouldTranspose) :
BasicCommand(getGlobalName(&clef), segment, time,
((shouldChangeOctave || shouldTranspose) ?
segment.getEndTime() : time + 1)),
m_clef(clef),
m_shouldChangeOctave(shouldChangeOctave),
m_shouldTranspose(shouldTranspose),
m_lastInsertedEvent(0)
{
// nothing
}
ClefInsertionCommand::~ClefInsertionCommand()
{
// nothing
}
QString
ClefInsertionCommand::getGlobalName(Rosegarden::Clef *)
{
/* doesn't handle octave offset -- leave it for now
if (clef) {
QString name(strtoqstr(clef->getClefType()));
name = name.left(1).upper() + name.right(name.length()-1);
return i18n("Change to %1 Cle&f...").arg(name);
} else {
*/
return i18n("Add Cle&f Change...");
/*
}
*/
}
timeT
ClefInsertionCommand::getRelayoutEndTime()
{
// Inserting a clef can change the y-coord of every subsequent note
return getSegment().getEndTime();
}
void
ClefInsertionCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
Clef oldClef(getSegment().getClefAtTime(getStartTime()));
Segment::iterator i = getSegment().findTime(getStartTime());
while (getSegment().isBeforeEndMarker(i)) {
if ((*i)->getAbsoluteTime() > getStartTime()) {
break;
}
if ((*i)->isa(Clef::EventType)) {
getSegment().erase(i);
break;
}
++i;
}
i = helper.insertClef(getStartTime(), m_clef);
if (i != helper.segment().end()) m_lastInsertedEvent = *i;
if (m_clef != oldClef) {
int semitones = 0;
if (m_shouldChangeOctave) {
semitones += 12 * (m_clef.getOctave() - oldClef.getOctave());
}
if (m_shouldTranspose) {
semitones -= m_clef.getPitchOffset() - oldClef.getPitchOffset();
}
if (semitones != 0) {
while (i != helper.segment().end()) {
if ((*i)->isa(Note::EventType)) {
long pitch = 0;
if ((*i)->get<Int>(PITCH, pitch)) {
pitch += semitones;
(*i)->set<Int>(PITCH, pitch);
}
}
++i;
}
}
}
}
TextInsertionCommand::TextInsertionCommand(Segment &segment, timeT time,
Text text) :
BasicCommand(i18n("Insert Text"), segment, time, time + 1),
m_text(text),
m_lastInsertedEvent(0)
{
// nothing
}
TextInsertionCommand::~TextInsertionCommand()
{
// nothing
}
void
TextInsertionCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
Segment::iterator i = helper.insertText(getStartTime(), m_text);
if (i != helper.segment().end()) m_lastInsertedEvent = *i;
}
TextChangeCommand::TextChangeCommand(Segment &segment,
Event *event,
Text text) :
BasicCommand(i18n("Edit Text"), segment,
event->getAbsoluteTime(), event->getAbsoluteTime() + 1,
true), // bruteForceRedo
m_event(event),
m_text(text)
{
// nothing
}
TextChangeCommand::~TextChangeCommand()
{
}
void
TextChangeCommand::modifySegment()
{
m_event->set<String>(Text::TextTypePropertyName, m_text.getTextType());
m_event->set<String>(Text::TextPropertyName, m_text.getText());
}
KeyInsertionCommand::KeyInsertionCommand(Segment &segment, timeT time,
Rosegarden::Key key,
bool convert,
bool transpose) :
BasicCommand(getGlobalName(&key), segment, time, segment.getEndTime()),
m_key(key),
m_lastInsertedEvent(0),
m_convert(convert),
m_transpose(transpose)
{
// nothing
}
KeyInsertionCommand::~KeyInsertionCommand()
{
// nothing
}
void
KeyInsertionCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
Rosegarden::Key oldKey;
if (m_convert || m_transpose) {
oldKey = getSegment().getKeyAtTime(getStartTime());
}
Segment::iterator i = getSegment().findTime(getStartTime());
while (getSegment().isBeforeEndMarker(i)) {
if ((*i)->getAbsoluteTime() > getStartTime()) {
break;
}
if ((*i)->isa(Rosegarden::Key::EventType)) {
getSegment().erase(i);
break;
}
++i;
}
i = helper.insertKey(getStartTime(), m_key);
if (i != helper.segment().end()) {
m_lastInsertedEvent = *i;
if (!m_convert && !m_transpose) return;
while (++i != helper.segment().end()) {
//!!! what if we get two keys at the same time...?
if ((*i)->isa(Rosegarden::Key::EventType)) break;
if ((*i)->isa(Rosegarden::Note::EventType) &&
(*i)->has(PITCH)) {
long pitch = (*i)->get<Int>(PITCH);
if (m_convert) {
(*i)->set<Int>(PITCH, m_key.convertFrom(pitch, oldKey));
} else {
(*i)->set<Int>(PITCH, m_key.transposeFrom(pitch, oldKey));
}
(*i)->unset(ACCIDENTAL);
}
}
}
}
MultiKeyInsertionCommand::MultiKeyInsertionCommand(Rosegarden::Composition &c,
timeT time,
Rosegarden::Key key,
bool convert,
bool transpose) :
KMacroCommand(getGlobalName(&key))
{
for (Rosegarden::Composition::iterator i = c.begin(); i != c.end(); ++i) {
addCommand(new KeyInsertionCommand(**i, time, key, convert, transpose));
}
}
MultiKeyInsertionCommand::~MultiKeyInsertionCommand()
{
// nothing
}
SustainInsertionCommand::SustainInsertionCommand(Segment &segment, timeT time,
bool down,
int controllerNumber) :
BasicCommand(getGlobalName(down), segment, time, time),
m_down(down),
m_controllerNumber(controllerNumber),
m_lastInsertedEvent(0)
{
// nothing
}
SustainInsertionCommand::~SustainInsertionCommand()
{
// nothing
}
void
SustainInsertionCommand::modifySegment()
{
Event *e = new Event(Rosegarden::Controller::EventType, getStartTime(), 0,
Rosegarden::Controller::EventSubOrdering);
e->set<Int>(Rosegarden::Controller::NUMBER, m_controllerNumber);
e->set<Int>(Rosegarden::Controller::VALUE, m_down ? 127 : 0);
m_lastInsertedEvent = *getSegment().insert(e);
}
EraseEventCommand::EraseEventCommand(Segment &segment,
Event *event,
bool collapseRest) :
BasicCommand(strtoqstr(makeName(event->getType())),
segment,
event->getAbsoluteTime(),
event->getAbsoluteTime() + event->getDuration(),
true),
m_collapseRest(collapseRest),
m_event(event),
m_relayoutEndTime(getEndTime())
{
// nothing
}
EraseEventCommand::~EraseEventCommand()
{
// nothing
}
string
EraseEventCommand::makeName(string e)
{
string n = "Erase ";
n += (char)toupper(e[0]);
n += e.substr(1);
return n;
}
timeT
EraseEventCommand::getRelayoutEndTime()
{
return m_relayoutEndTime;
}
void
EraseEventCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
if (m_event->isa(Rosegarden::Clef::EventType) ||
m_event->isa(Rosegarden::Key ::EventType)) {
m_relayoutEndTime = helper.segment().getEndTime();
} else if (m_event->isa(Rosegarden::Indication::EventType)) {
try {
Indication indication(*m_event);
if (indication.isOttavaType()) {
for (Segment::iterator i = getSegment().findTime
(m_event->getAbsoluteTime());
i != getSegment().findTime
(m_event->getAbsoluteTime() + indication.getIndicationDuration());
++i) {
(*i)->unset(NotationProperties::OTTAVA_SHIFT);
}
}
} catch (...) {
}
}
helper.deleteEvent(m_event, m_collapseRest);
}
void
NotesMenuBeamCommand::modifySegment()
{
int id = getSegment().getNextId();
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
(*i)->set<Int>(BEAMED_GROUP_ID, id);
(*i)->set<String>(BEAMED_GROUP_TYPE, GROUP_TYPE_BEAMED);
}
}
}
void
NotesMenuAutoBeamCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
helper.autoBeam(getStartTime(), getEndTime(), GROUP_TYPE_BEAMED);
}
void
NotesMenuBreakCommand::modifySegment()
{
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
(*i)->unset(NotationProperties::BEAMED);
(*i)->unset(BEAMED_GROUP_ID);
(*i)->unset(BEAMED_GROUP_TYPE);
(*i)->clearNonPersistentProperties();
}
}
AdjustMenuGraceCommand::AdjustMenuGraceCommand(Rosegarden::EventSelection &selection) :
BasicCommand(getGlobalName(),
selection.getSegment(),
selection.getStartTime(),
getEffectiveEndTime(selection),
true),
m_selection(&selection)
{
}
timeT
AdjustMenuGraceCommand::getEffectiveEndTime(Rosegarden::EventSelection &
selection)
{
EventSelection::eventcontainer::iterator i =
selection.getSegmentEvents().end();
if (i == selection.getSegmentEvents().begin())
return selection.getEndTime();
--i;
Segment::iterator si = selection.getSegment().findTime
((*i)->getAbsoluteTime() + (*i)->getDuration());
if (si == selection.getSegment().end()) return selection.getEndTime();
else return (*si)->getAbsoluteTime() + 1;
}
void
AdjustMenuGraceCommand::modifySegment()
{
Segment &s(getSegment());
timeT startTime = getStartTime();
timeT endOfLastGraceNote = startTime;
int id = s.getNextId();
// first turn the selected events into grace notes
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
(*i)->set<Bool>(IS_GRACE_NOTE, true);
(*i)->set<Int>(BEAMED_GROUP_ID, id);
(*i)->set<String>(BEAMED_GROUP_TYPE, GROUP_TYPE_GRACE);
}
if ((*i)->getAbsoluteTime() + (*i)->getDuration() >
endOfLastGraceNote) {
endOfLastGraceNote =
(*i)->getAbsoluteTime() + (*i)->getDuration();
}
}
// then indicate that the following chord has grace notes
Segment::iterator i0, i1;
s.getTimeSlice(endOfLastGraceNote, i0, i1);
while (i0 != i1 && i0 != s.end()) {
if (!(*i0)->isa(Note::EventType)) {
++i0;
continue;
}
(*i0)->set<Bool>(HAS_GRACE_NOTES, true);
++i0;
}
}
void
AdjustMenuUnGraceCommand::modifySegment()
{
//!!!
}
AdjustMenuTupletCommand::AdjustMenuTupletCommand(Rosegarden::Segment &segment,
timeT startTime,
timeT unit,
int untupled, int tupled,
bool hasTimingAlready) :
BasicCommand(getGlobalName((untupled == 3) && (tupled == 2)),
segment, startTime, startTime + (unit * untupled)),
m_unit(unit),
m_untupled(untupled),
m_tupled(tupled),
m_hasTimingAlready(hasTimingAlready)
{
// nothing else
}
void
AdjustMenuTupletCommand::modifySegment()
{
if (m_hasTimingAlready) {
int groupId = getSegment().getNextId();
for (Segment::iterator i = getSegment().findTime(getStartTime());
getSegment().isBeforeEndMarker(i); ++i) {
if ((*i)->getNotationAbsoluteTime() >=
getStartTime() + (m_unit * m_tupled)) break;
Event *e = *i;
e->set<Int>(BEAMED_GROUP_ID, groupId);
e->set<String>(BEAMED_GROUP_TYPE, GROUP_TYPE_TUPLED);
e->set<Int>(BEAMED_GROUP_TUPLET_BASE, m_unit);
e->set<Int>(BEAMED_GROUP_TUPLED_COUNT, m_tupled);
e->set<Int>(BEAMED_GROUP_UNTUPLED_COUNT, m_untupled);
}
} else {
SegmentNotationHelper helper(getSegment());
helper.makeTupletGroup(getStartTime(), m_untupled, m_tupled, m_unit);
}
}
void
AdjustMenuUnTupletCommand::modifySegment()
{
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
(*i)->unset(BEAMED_GROUP_ID);
(*i)->unset(BEAMED_GROUP_TYPE);
(*i)->unset(BEAMED_GROUP_TUPLET_BASE);
(*i)->unset(BEAMED_GROUP_TUPLED_COUNT);
(*i)->unset(BEAMED_GROUP_UNTUPLED_COUNT);
}
}
NotesMenuAddIndicationCommand::NotesMenuAddIndicationCommand(std::string indicationType,
EventSelection &selection) :
BasicCommand(getGlobalName(indicationType),
selection.getSegment(),
selection.getStartTime(),
selection.getEndTime()),
m_indicationType(indicationType),
m_indicationDuration(selection.getEndTime() - selection.getStartTime()),
m_lastInsertedEvent(0)
{
// nothing else
}
NotesMenuAddIndicationCommand::~NotesMenuAddIndicationCommand()
{
// empty
}
bool
NotesMenuAddIndicationCommand::canExecute()
{
Segment &s(getSegment());
for (Segment::iterator i = s.begin(); s.isBeforeEndMarker(i); ++i) {
if ((*i)->getAbsoluteTime() >= getStartTime() + m_indicationDuration) {
return true;
}
if ((*i)->isa(Indication::EventType)) {
try {
Indication indication(**i);
if ((*i)->getAbsoluteTime() + indication.getIndicationDuration() <=
getStartTime()) continue;
std::string type = indication.getIndicationType();
if (type == m_indicationType) {
// for all indications (including slur), we reject an
// exact overlap
if ((*i)->getAbsoluteTime() == getStartTime() &&
indication.getIndicationDuration() == m_indicationDuration) {
return false;
}
} else if (m_indicationType == Indication::Slur) {
continue;
}
// for non-slur indications we reject a partial
// overlap such as this one, if it's an overlap with
// an indication of the same "sort"
if (m_indicationType == Indication::Crescendo ||
m_indicationType == Indication::Decrescendo) {
if (type == Indication::Crescendo ||
type == Indication::Decrescendo) return false;
}
if (m_indicationType == Indication::QuindicesimaUp ||
m_indicationType == Indication::OttavaUp ||
m_indicationType == Indication::OttavaDown ||
m_indicationType == Indication::QuindicesimaDown) {
if (indication.isOttavaType()) return false;
}
} catch (...) {
}
}
}
return true;
}
void
NotesMenuAddIndicationCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
Indication indication(m_indicationType, m_indicationDuration);
Event *e = indication.getAsEvent(getStartTime());
helper.segment().insert(e);
m_lastInsertedEvent = e;
if (indication.isOttavaType()) {
for (Segment::iterator i = getSegment().findTime(getStartTime());
i != getSegment().findTime(getStartTime() + m_indicationDuration);
++i) {
if ((*i)->isa(Note::EventType)) {
(*i)->setMaybe<Int>(NotationProperties::OTTAVA_SHIFT,
indication.getOttavaShift());
}
}
}
}
QString
NotesMenuAddIndicationCommand::getGlobalName(std::string indicationType)
{
if (indicationType == Rosegarden::Indication::Slur) {
return i18n("Add S&lur");
} else if (indicationType == Rosegarden::Indication::PhrasingSlur) {
return i18n("Add &Phrasing Slur");
} else if (indicationType == Rosegarden::Indication::QuindicesimaUp) {
return i18n("Add Double-Octave Up");
} else if (indicationType == Rosegarden::Indication::OttavaUp) {
return i18n("Add Octave &Up");
} else if (indicationType == Rosegarden::Indication::OttavaDown) {
return i18n("Add Octave &Down");
} else if (indicationType == Rosegarden::Indication::QuindicesimaDown) {
return i18n("Add Double Octave Down");
// We used to generate these ones from the internal names plus
// caps, but that makes them untranslateable:
} else if (indicationType == Rosegarden::Indication::Crescendo) {
return i18n("Add &Crescendo");
} else if (indicationType == Rosegarden::Indication::Decrescendo) {
return i18n("Add &Decrescendo");
} else if (indicationType == Rosegarden::Indication::Glissando) {
return i18n("Add &Glissando");
}
QString n = i18n("Add &%1%2").arg((char)toupper(indicationType[0])).arg(strtoqstr(indicationType.substr(1)));
return n;
}
void
AdjustMenuMakeChordCommand::modifySegment()
{
// find all the notes in the selection, and bring them back to align
// with the start of the selection, giving them the same duration as
// the longest note among them
std::vector<Event *> toErase;
std::vector<Event *> toInsert;
Segment &segment(m_selection->getSegment());
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
toErase.push_back(*i);
toInsert.push_back(new Event(**i, m_selection->getStartTime()));
}
}
for (unsigned int j = 0; j < toErase.size(); ++j) {
Segment::iterator jtr(segment.findSingle(toErase[j]));
if (jtr != segment.end()) segment.erase(jtr);
}
for (unsigned int j = 0; j < toInsert.size(); ++j) {
segment.insert(toInsert[j]);
}
segment.normalizeRests(getStartTime(), getEndTime());
//!!! should select all notes in chord now
}
AdjustMenuNormalizeRestsCommand::AdjustMenuNormalizeRestsCommand
(Rosegarden::EventSelection &selection) :
BasicCommand(getGlobalName(),
selection.getSegment(),
selection.getStartTime(),
selection.getEndTime())
{
// nothing else
}
void AdjustMenuNormalizeRestsCommand::modifySegment()
{
getSegment().normalizeRests(getStartTime(), getEndTime());
}
AdjustMenuCollapseRestsCommand::AdjustMenuCollapseRestsCommand
(Rosegarden::EventSelection &selection) :
BasicCommand(getGlobalName(),
selection.getSegment(),
selection.getStartTime(),
selection.getEndTime())
{
// nothing else
}
void AdjustMenuCollapseRestsCommand::modifySegment()
{
SegmentNotationHelper helper(getSegment());
helper.collapseRestsAggressively(getStartTime(), getEndTime());
}
void
NotesMenuTieNotesCommand::modifySegment()
{
Segment &segment(getSegment());
SegmentNotationHelper helper(segment);
//!!! move part of this to SegmentNotationHelper?
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
// bool tiedForward;
// if ((*i)->get<Bool>(TIED_FORWARD, tiedForward) && tiedForward) {
// continue;
// }
Segment::iterator si = segment.findSingle(*i);
Segment::iterator sj;
while ((sj = helper.getNextAdjacentNote(si, true, false)) !=
segment.end()) {
if (!m_selection->contains(*sj)) break;
(*si)->set<Bool>(TIED_FORWARD, true);
(*sj)->set<Bool>(TIED_BACKWARD, true);
si = sj;
}
}
}
void
AdjustMenuUntieNotesCommand::modifySegment()
{
for (EventSelection::eventcontainer::iterator i =
m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
(*i)->unset(TIED_FORWARD);
(*i)->unset(TIED_BACKWARD);
}
}
void
AdjustMenuMakeNotesViableCommand::modifySegment()
{
Segment &segment(getSegment());
SegmentNotationHelper helper(segment);
if (m_selection) {
EventSelection::RangeTimeList ranges(m_selection->getRangeTimes());
for (EventSelection::RangeTimeList::iterator i = ranges.begin();
i != ranges.end(); ++i) {
helper.makeNotesViable(i->first, i->second, true);
segment.normalizeRests(i->first, i->second);
}
} else {
helper.makeNotesViable(getStartTime(), getEndTime(), true);
segment.normalizeRests(getStartTime(), getEndTime());
}
}
void
AdjustMenuMakeRegionViableCommand::modifySegment()
{
Segment &segment(getSegment());
SegmentNotationHelper helper(segment);
helper.makeNotesViable(getStartTime(), getEndTime(), true);
segment.normalizeRests(getStartTime(), getEndTime());
}
void
AdjustMenuDeCounterpointCommand::modifySegment()
{
Segment &segment(getSegment());
SegmentNotationHelper helper(segment);
if (m_selection) {
EventSelection::RangeTimeList ranges(m_selection->getRangeTimes());
for (EventSelection::RangeTimeList::iterator i = ranges.begin();
i != ranges.end(); ++i) {
helper.deCounterpoint(i->first, i->second);
segment.normalizeRests(i->first, i->second);
}
} else {
helper.deCounterpoint(getStartTime(), getEndTime());
segment.normalizeRests(getStartTime(), getEndTime());
}
}
void
AdjustMenuChangeStemsCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
(*i)->set<Rosegarden::Bool>(NotationProperties::STEM_UP, m_up);
}
}
}
void
AdjustMenuRestoreStemsCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
(*i)->unset(NotationProperties::STEM_UP);
}
}
}
void
AdjustMenuChangeSlurPositionCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Indication::EventType)) {
std::string indicationType;
if ((*i)->get<String>(Indication::IndicationTypePropertyName, indicationType)
&& (indicationType == Indication::Slur ||
indicationType == Indication::PhrasingSlur)) {
(*i)->set<Rosegarden::Bool>(NotationProperties::SLUR_ABOVE, m_above);
}
}
}
}
void
AdjustMenuRestoreSlursCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Indication::EventType)) {
std::string indicationType;
if ((*i)->get<String>(Indication::IndicationTypePropertyName, indicationType)
&& (indicationType == Indication::Slur ||
indicationType == Indication::PhrasingSlur)) {
(*i)->unset(NotationProperties::SLUR_ABOVE);
}
}
}
}
QString
AdjustMenuChangeStyleCommand::getGlobalName(NoteStyleName style)
{
return strtoqstr(style);
}
void
AdjustMenuChangeStyleCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
if (m_style == NoteStyleFactory::DefaultStyle) {
(*i)->unset(NotationProperties::NOTE_STYLE);
} else {
(*i)->set<Rosegarden::String>
(NotationProperties::NOTE_STYLE, m_style);
}
}
}
}
void
NotesMenuAddSlashesCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if (m_number < 1) {
(*i)->unset(NotationProperties::SLASHES);
} else {
(*i)->set<Int>(NotationProperties::SLASHES, m_number);
}
}
}
QString
NotesMenuAddMarkCommand::getGlobalName(Rosegarden::Mark markType)
{
QString m = strtoqstr(markType);
// Gosh, lots of collisions
if (markType == Rosegarden::Marks::Sforzando) m = i18n("S&forzando");
else if (markType == Rosegarden::Marks::Staccato) m = i18n("Sta&ccato");
else if (markType == Rosegarden::Marks::Rinforzando) m = i18n("R&inforzando");
else if (markType == Rosegarden::Marks::Tenuto) m = i18n("T&enuto");
else if (markType == Rosegarden::Marks::Trill) m = i18n("Tri&ll");
else if (markType == Rosegarden::Marks::LongTrill) m = i18n("Trill &with Line");
else if (markType == Rosegarden::Marks::TrillLine) m = i18n("Trill Line");
else if (markType == Rosegarden::Marks::Turn) m = i18n("&Turn");
else if (markType == Rosegarden::Marks::Accent) m = i18n("&Accent");
else if (markType == Rosegarden::Marks::Staccatissimo) m = i18n("&Staccatissimo");
else if (markType == Rosegarden::Marks::Marcato) m = i18n("&Marcato");
else if (markType == Rosegarden::Marks::Pause) m = i18n("&Pause");
else if (markType == Rosegarden::Marks::UpBow) m = i18n("&Up-Bow");
else if (markType == Rosegarden::Marks::DownBow) m = i18n("&Down-Bow");
else if (markType == Rosegarden::Marks::Mordent)
m = i18n("Mo&rdent");
else if (markType == Rosegarden::Marks::MordentInverted)
m = i18n("Inverted Mordent");
else if (markType == Rosegarden::Marks::MordentLong)
m = i18n("Long Mordent");
else if (markType == Rosegarden::Marks::MordentLongInverted)
m = i18n("Lon&g Inverted Mordent");
else m = i18n("&%1%2").arg(m[0].upper()).arg(m.right(m.length()-1));
// FIXME: That last i18n has very little chance of working, unless
// by some miracle the exact same string was translated elsewhere already
// but we'll leave it as a warning
m = i18n("Add %1").arg(m);
return m;
}
void
NotesMenuAddMarkCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
long n = 0;
(*i)->get<Int>(MARK_COUNT, n);
(*i)->set<Int>(MARK_COUNT, n + 1);
(*i)->set<String>(getMarkPropertyName(n),
m_mark);
}
}
void
NotesMenuAddTextMarkCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
long n = 0;
(*i)->get<Int>(MARK_COUNT, n);
(*i)->set<Int>(MARK_COUNT, n + 1);
(*i)->set<String>(getMarkPropertyName(n),
Rosegarden::Marks::getTextMark(m_text));
}
}
QString
NotesMenuAddFingeringMarkCommand::getGlobalName(QString fingering)
{
if (fingering == "") return i18n("Add Other &Fingering...");
else if (fingering == "0") return i18n("Add Fingering &0 (Thumb)");
else return i18n("Add Fingering &%1").arg(fingering);
}
void
NotesMenuAddFingeringMarkCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
Segment &segment(m_selection->getSegment());
std::set<Event *> done;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if (done.find(*i) != done.end()) continue;
if (!(*i)->isa(Note::EventType)) continue;
// We should do this on a chord-by-chord basis, considering
// only those notes in a chord that are also in the selection.
// Apply this fingering to the first note in the chord that
// does not already have a fingering. If they all already do,
// then clear them all and start again.
Rosegarden::Chord chord(segment, segment.findSingle(*i),
segment.getComposition()->getNotationQuantizer());
int attempt = 0;
while (attempt < 2) {
int count = 0;
for (Rosegarden::Chord::iterator ci = chord.begin();
ci != chord.end(); ++ci) {
if (!m_selection->contains(**ci)) continue;
if (attempt < 2 &&
Rosegarden::Marks::getFingeringMark(***ci) ==
Rosegarden::Marks::NoMark) {
Rosegarden::Marks::addMark
(***ci, Rosegarden::Marks::getFingeringMark(m_text), true);
attempt = 2;
}
done.insert(**ci);
++count;
}
if (attempt < 2) {
if (count == 0) break;
for (Rosegarden::Chord::iterator ci = chord.begin();
ci != chord.end(); ++ci) {
if (m_selection->contains(**ci)) {
Rosegarden::Marks::removeMark
(***ci,
Rosegarden::Marks::getFingeringMark(***ci));
}
}
++attempt;
}
}
}
}
void
NotesMenuRemoveMarksCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
long n = 0;
(*i)->get<Int>(MARK_COUNT, n);
(*i)->unset(MARK_COUNT);
for (int j = 0; j < n; ++j) {
(*i)->unset(getMarkPropertyName(j));
}
}
}
void
NotesMenuRemoveFingeringMarksCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
std::vector<Rosegarden::Mark> marks = Rosegarden::Marks::getMarks(**i);
for (std::vector<Rosegarden::Mark>::iterator j = marks.begin();
j != marks.end(); ++j) {
if (Rosegarden::Marks::isFingeringMark(*j)) {
Rosegarden::Marks::removeMark(**i, *j);
}
}
}
}
void
AdjustMenuFixNotationQuantizeCommand::modifySegment()
{
std::vector<Event *> toErase;
std::vector<Event *> toInsert;
Segment &segment(m_selection->getSegment());
EventSelection::eventcontainer::iterator i;
//!!! the Quantizer needs a fixQuantizedValues(EventSelection*)
//method, but it hasn't got one yet so for the moment we're doing
//this by hand.
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
timeT ut = (*i)->getAbsoluteTime();
timeT ud = (*i)->getDuration();
timeT qt = (*i)->getNotationAbsoluteTime();
timeT qd = (*i)->getNotationDuration();
if ((ut != qt) || (ud != qd)) {
toErase.push_back(*i);
toInsert.push_back(new Event(**i, qt, qd));
}
}
for (unsigned int j = 0; j < toErase.size(); ++j) {
Segment::iterator jtr(segment.findSingle(toErase[j]));
if (jtr != segment.end()) segment.erase(jtr);
}
for (unsigned int j = 0; j < toInsert.size(); ++j) {
segment.insert(toInsert[j]);
}
/*!!!
Segment *segment(&m_selection->getSegment());
m_quantizer->fixQuantizedValues
(segment,
segment->findTime(m_selection->getStartTime()),
segment->findTime(m_selection->getEndTime()));
*/
//!!! normalizeRests?
}
void
AdjustMenuRemoveNotationQuantizeCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
std::vector<Event *> toInsert;
std::vector<Event *> toErase;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
toInsert.push_back(new Event(**i,
(*i)->getAbsoluteTime(),
(*i)->getDuration(),
(*i)->getSubOrdering(),
(*i)->getAbsoluteTime(),
(*i)->getDuration()));
toErase.push_back(*i);
}
for (std::vector<Event *>::iterator i = toErase.begin(); i != toErase.end();
++i) {
m_selection->getSegment().eraseSingle(*i);
}
for (std::vector<Event *>::iterator i = toInsert.begin(); i != toInsert.end();
++i) {
m_selection->getSegment().insert(*i);
}
}
const int AdjustMenuInterpretCommand::NoInterpretation = 0;
const int AdjustMenuInterpretCommand::GuessDirections = (1<<0);
const int AdjustMenuInterpretCommand::ApplyTextDynamics = (1<<1);
const int AdjustMenuInterpretCommand::ApplyHairpins = (1<<2);
const int AdjustMenuInterpretCommand::StressBeats = (1<<3);
const int AdjustMenuInterpretCommand::Articulate = (1<<4);
const int AdjustMenuInterpretCommand::AllInterpretations = (1<<5) - 1;
AdjustMenuInterpretCommand::~AdjustMenuInterpretCommand()
{
for (IndicationMap::iterator i = m_indications.begin();
i != m_indications.end(); ++i) {
delete i->second;
}
}
void
AdjustMenuInterpretCommand::modifySegment()
{
// Of all the interpretations, Articulate is the only one that
// changes event times or durations. This means we must apply it
// last, as the selection cannot be used after it's been applied,
// because the events in the selection will have been recreated
// with their new timings.
// The default velocity for new notes is 100, and the range is
// 0-127 (in practice this seems to be roughly logarithmic rather
// than linear, though perhaps that's an illusion).
// We should only apply interpretation to those events actually
// selected, but when applying things like hairpins and text
// dynamics we need to take into account all dynamics that may
// cover our events even if they're not selected or are not within
// the time range of the selection at all. So first we'd better
// find all the likely indications, starting at (for the sake of
// argument) three bars before the start of the selection:
Segment &segment(getSegment());
timeT t = m_selection->getStartTime();
for (int i = 0; i < 3; ++i) t = segment.getBarStartForTime(t);
Segment::iterator itr = segment.findTime(t);
while (itr != segment.end()) {
timeT eventTime = (*itr)->getAbsoluteTime();
if (eventTime > m_selection->getEndTime()) break;
if ((*itr)->isa(Indication::EventType)) {
m_indications[eventTime] = new Rosegarden::Indication(**itr);
}
++itr;
}
//!!! need the option of ignoring current velocities or adjusting
//them: at the moment ApplyTextDynamics ignores them and the
//others adjust them
if (m_interpretations & GuessDirections) guessDirections();
if (m_interpretations & ApplyTextDynamics) applyTextDynamics();
if (m_interpretations & ApplyHairpins) applyHairpins();
if (m_interpretations & StressBeats) stressBeats();
if (m_interpretations & Articulate) articulate();
//!!! Finally, in future we should extend this to allow
// indications on one segment (e.g. top line of piano staff) to
// affect another (e.g. bottom line). All together now: "Even
// Rosegarden 2.1 could do that!"
}
void
AdjustMenuInterpretCommand::guessDirections()
{
//...
}
void
AdjustMenuInterpretCommand::applyTextDynamics()
{
// laborious
Segment &segment(getSegment());
int velocity = 100;
timeT startTime = m_selection->getStartTime();
timeT endTime = m_selection->getEndTime();
for (Segment::iterator i = segment.begin();
segment.isBeforeEndMarker(i); ++i) {
timeT t = (*i)->getAbsoluteTime();
if (t > endTime) break;
if (Text::isTextOfType(*i, Text::Dynamic)) {
std::string text;
if ((*i)->get<String>(Text::TextPropertyName, text)) {
velocity = getVelocityForDynamic(text);
}
}
if (t >= startTime &&
(*i)->isa(Note::EventType) && m_selection->contains(*i)) {
(*i)->set<Int>(VELOCITY, velocity);
}
}
}
int
AdjustMenuInterpretCommand::getVelocityForDynamic(std::string text)
{
int velocity = 100;
// should do case-insensitive matching with whitespace
// removed. can surely be cleverer about this too!
if (text == "ppppp") velocity = 10;
else if (text == "pppp") velocity = 20;
else if (text == "ppp") velocity = 30;
else if (text == "pp") velocity = 40;
else if (text == "p") velocity = 60;
else if (text == "mp") velocity = 80;
else if (text == "mf") velocity = 90;
else if (text == "f") velocity = 105;
else if (text == "ff") velocity = 110;
else if (text == "fff") velocity = 115;
else if (text == "ffff") velocity = 120;
else if (text == "fffff") velocity = 125;
NOTATION_DEBUG << "AdjustMenuInterpretCommand::getVelocityForDynamic: unrecognised dynamic " << text << endl;
return velocity;
}
void
AdjustMenuInterpretCommand::applyHairpins()
{
Segment &segment(getSegment());
int velocityToApply = -1;
for (EventSelection::eventcontainer::iterator ecitr =
m_selection->getSegmentEvents().begin();
ecitr != m_selection->getSegmentEvents().end(); ++ecitr) {
Event *e = *ecitr;
if (Text::isTextOfType(e, Text::Dynamic)) {
velocityToApply = -1;
}
if (!e->isa(Note::EventType)) continue;
bool crescendo = true;
IndicationMap::iterator inditr =
findEnclosingIndication(e, Indication::Crescendo);
// we can't be in both crescendo and decrescendo -- at least,
// not meaningfully
if (inditr == m_indications.end()) {
inditr = findEnclosingIndication(e, Indication::Decrescendo);
if (inditr == m_indications.end()) {
if (velocityToApply > 0) {
e->set<Int>(VELOCITY, velocityToApply);
}
continue;
}
crescendo = false;
}
// The starting velocity for the indication is easy -- it's
// just the velocity of the last note at or before the
// indication begins that has a velocity
timeT hairpinStartTime = inditr->first;
// ensure we scan all of the events at this time:
Segment::iterator itr(segment.findTime(hairpinStartTime + 1));
while (itr == segment.end() ||
(*itr)->getAbsoluteTime() > hairpinStartTime ||
!(*itr)->isa(Note::EventType) ||
!(*itr)->has(VELOCITY)) {
if (itr == segment.begin()) {
itr = segment.end();
break;
}
--itr;
}
long startingVelocity = 100;
if (itr != segment.end()) {
(*itr)->get<Int>(VELOCITY, startingVelocity);
}
// The ending velocity is harder. If there's a dynamic change
// directly after the hairpin, then we want to use that
// dynamic's velocity unless it opposes the hairpin's
// direction. If there isn't, or it does oppose the hairpin,
// we should probably make the degree of change caused by the
// hairpin depend on its total duration.
long endingVelocity = startingVelocity;
timeT hairpinEndTime = inditr->first +
inditr->second->getIndicationDuration();
itr = segment.findTime(hairpinEndTime);
while (itr != segment.end()) {
if (Text::isTextOfType(*itr, Text::Dynamic)) {
std::string text;
if ((*itr)->get<String>(Text::TextPropertyName, text)) {
endingVelocity = getVelocityForDynamic(text);
break;
}
}
if ((*itr)->getAbsoluteTime() >
(hairpinEndTime + Note(Note::Crotchet).getDuration())) break;
++itr;
}
if (( crescendo && (endingVelocity < startingVelocity)) ||
(!crescendo && (endingVelocity > startingVelocity))) {
// we've got it wrong; prefer following the hairpin to
// following whatever direction we got the dynamic from
endingVelocity = startingVelocity;
// and then fall into the next conditional to set up the
// velocities
}
if (endingVelocity == startingVelocity) {
// calculate an ending velocity based on starting velocity
// and hairpin duration (okay, we'll leave that bit for later)
endingVelocity = startingVelocity * (crescendo ? 120 : 80) / 100;
}
double proportion =
(double(e->getAbsoluteTime() - hairpinStartTime) /
double(hairpinEndTime - hairpinStartTime));
long velocity =
int((endingVelocity - startingVelocity) * proportion +
startingVelocity);
NOTATION_DEBUG << "AdjustMenuInterpretCommand::applyHairpins: velocity of note at " << e->getAbsoluteTime() << " is " << velocity << " (" << proportion << " through hairpin from " << startingVelocity << " to " << endingVelocity <<")" << endl;
if (velocity < 10) velocity = 10;
if (velocity > 127) velocity = 127;
e->set<Int>(VELOCITY, velocity);
velocityToApply = velocity;
}
}
void
AdjustMenuInterpretCommand::stressBeats()
{
Rosegarden::Composition *c = getSegment().getComposition();
for (EventSelection::eventcontainer::iterator itr =
m_selection->getSegmentEvents().begin();
itr != m_selection->getSegmentEvents().end(); ++itr) {
Event *e = *itr;
if (!e->isa(Note::EventType)) continue;
timeT t = e->getNotationAbsoluteTime();
Rosegarden::TimeSignature timeSig = c->getTimeSignatureAt(t);
timeT barStart = getSegment().getBarStartForTime(t);
int stress = timeSig.getEmphasisForTime(t - barStart);
// stresses are from 0 to 4, so we add 12% to the velocity
// at the maximum stress, subtract 4% at the minimum
int velocityChange = stress * 4 - 4;
// do this even if velocityChange == 0, in case the event
// has no velocity yet
long velocity = 100;
e->get<Int>(VELOCITY, velocity);
velocity += velocity * velocityChange / 100;
if (velocity < 10) velocity = 10;
if (velocity > 127) velocity = 127;
e->set<Int>(VELOCITY, velocity);
}
}
void
AdjustMenuInterpretCommand::articulate()
{
// Basic articulations:
//
// -- Anything marked tenuto or within a slur gets 100% of its
// nominal duration (that's what we need the quantizer for,
// to get the display nominal duration), and its velocity
// is unchanged.
//
// -- Anything marked marcato gets 60%, or 70% if slurred (!),
// and gets an extra 15% of velocity.
//
// -- Anything marked staccato gets 55%, or 70% if slurred,
// and unchanged velocity.
//
// -- Anything marked staccatissimo gets 30%, or 50% if slurred (!),
// and loses 5% of velocity.
//
// -- Anything marked sforzando gains 35% of velocity.
//
// -- Anything marked with an accent gains 30% of velocity.
//
// -- Anything marked rinforzando gains 15% of velocity and has
// its full duration. Guess we really need to use some proper
// controllers here.
//
// -- Anything marked down-bow gains 5% of velocity, anything
// marked up-bow loses 5%.
//
// -- Anything unmarked and unslurred, or marked tenuto and
// slurred, gets 90% of duration.
std::set<Event *> toErase;
std::set<Event *> toInsert;
Segment &segment(getSegment());
for (EventSelection::eventcontainer::iterator ecitr =
m_selection->getSegmentEvents().begin();
ecitr != m_selection->getSegmentEvents().end(); ++ecitr) {
Event *e = *ecitr;
if (!e->isa(Note::EventType)) continue;
Segment::iterator itr = segment.findSingle(e);
Rosegarden::Chord chord(segment, itr, m_quantizer);
// the things that affect duration
bool staccato = false;
bool staccatissimo = false;
bool marcato = false;
bool tenuto = false;
bool rinforzando = false;
bool slurred = false;
int velocityChange = 0;
std::vector<Mark> marks(chord.getMarksForChord());
for (std::vector<Mark>::iterator i = marks.begin();
i != marks.end(); ++i) {
if (*i == Rosegarden::Marks::Accent) {
velocityChange += 30;
} else if (*i == Rosegarden::Marks::Tenuto) {
tenuto = true;
} else if (*i == Rosegarden::Marks::Staccato) {
staccato = true;
} else if (*i == Rosegarden::Marks::Staccatissimo) {
staccatissimo = true;
velocityChange -= 5;
} else if (*i == Rosegarden::Marks::Marcato) {
marcato = true;
velocityChange += 15;
} else if (*i == Rosegarden::Marks::Sforzando) {
velocityChange += 35;
} else if (*i == Rosegarden::Marks::Rinforzando) {
rinforzando = true;
velocityChange += 15;
} else if (*i == Rosegarden::Marks::DownBow) {
velocityChange += 5;
} else if (*i == Rosegarden::Marks::UpBow) {
velocityChange -= 5;
}
}
IndicationMap::iterator inditr =
findEnclosingIndication(e, Indication::Slur);
if (inditr != m_indications.end()) slurred = true;
if (slurred) {
// last note in a slur should be treated as if unslurred
timeT slurEnd =
inditr->first + inditr->second->getIndicationDuration();
if (slurEnd == e->getNotationAbsoluteTime() + e->getNotationDuration() ||
slurEnd == e->getAbsoluteTime() + e->getDuration()) {
slurred = false;
}
/*!!!
Segment::iterator slurEndItr = segment.findTime(slurEnd);
if (slurEndItr != segment.end() &&
(*slurEndItr)->getNotationAbsoluteTime() <=
e->getNotationAbsoluteTime()) {
slurred = false;
}
*/
}
int durationChange = 0;
if (slurred) {
//!!! doesn't seem to be picking up slurs correctly
if (tenuto) durationChange = -10;
else if (marcato || staccato) durationChange = -30;
else if (staccatissimo) durationChange = -50;
else durationChange = 0;
} else {
if (tenuto) durationChange = 0;
else if (marcato) durationChange = -40;
else if (staccato) durationChange = -45;
else if (staccatissimo) durationChange = -70;
else if (rinforzando) durationChange = 0;
else durationChange = -10;
}
NOTATION_DEBUG << "AdjustMenuInterpretCommand::modifySegment: chord has " << chord.size() << " notes in it" << endl;
for (Rosegarden::Chord::iterator ci = chord.begin();
ci != chord.end(); ++ci) {
e = **ci;
NOTATION_DEBUG << "AdjustMenuInterpretCommand::modifySegment: For note at " << e->getAbsoluteTime() << ", velocityChange is " << velocityChange << " and durationChange is " << durationChange << endl;
// do this even if velocityChange == 0, in case the event
// has no velocity yet
long velocity = 100;
e->get<Int>(VELOCITY, velocity);
velocity += velocity * velocityChange / 100;
if (velocity < 10) velocity = 10;
if (velocity > 127) velocity = 127;
e->set<Int>(VELOCITY, velocity);
timeT duration = e->getNotationDuration();
// don't mess with the duration of a tied note
bool tiedForward = false;
if (e->get<Bool>(TIED_FORWARD, tiedForward) && tiedForward) {
durationChange = 0;
}
timeT newDuration = duration + duration * durationChange / 100;
// this comparison instead of "durationChange != 0"
// because we want to permit the possibility of resetting
// the performance duration of a note (that's perhaps been
// articulated wrongly) based on the notation duration:
if (e->getDuration() != newDuration) {
if (toErase.find(e) == toErase.end()) {
//!!! deal with tuplets
Event *newEvent = new Event(*e,
e->getAbsoluteTime(),
newDuration,
e->getSubOrdering(),
e->getNotationAbsoluteTime(),
duration);
toInsert.insert(newEvent);
toErase.insert(e);
}
}
}
// what we want to do here is jump our iterator to the final
// element in the chord -- but that doesn't work because we're
// iterating through the selection, not the segment. So for
// now we just accept the fact that notes in chords might be
// processed multiple times (slow) and added into the toErase
// set more than once (hence the nasty tests in the loop just
// after the close of this loop).
}
for (std::set<Event *>::iterator j = toErase.begin(); j != toErase.end(); ++j) {
Segment::iterator jtr(segment.findSingle(*j));
if (jtr != segment.end()) segment.erase(jtr);
}
for (std::set<Event *>::iterator j = toInsert.begin(); j != toInsert.end(); ++j) {
segment.insert(*j);
}
}
AdjustMenuInterpretCommand::IndicationMap::iterator
AdjustMenuInterpretCommand::findEnclosingIndication(Event *e,
std::string type)
{
// a bit slow, but let's wait and see whether it's a bottleneck
// before we worry about that
timeT t = e->getAbsoluteTime();
IndicationMap::iterator itr = m_indications.lower_bound(t);
while (1) {
if (itr != m_indications.end()) {
if (itr->second->getIndicationType() == type &&
itr->first <= t &&
itr->first + itr->second->getIndicationDuration() > t) {
return itr;
}
}
if (itr == m_indications.begin()) break;
--itr;
}
return m_indications.end();
}
QString
RespellCommand::getGlobalName(Type type, Accidental accidental)
{
switch(type) {
case Set:
{
QString s(i18n("Respell with %1"));
//!!! should be in notationstrings:
if (accidental == DoubleSharp) {
s = s.arg(i18n("Do&uble Sharp"));
} else if (accidental == Sharp) {
s = s.arg(i18n("&Sharp"));
} else if (accidental == Flat) {
s = s.arg(i18n("&Flat"));
} else if (accidental == DoubleFlat) {
s = s.arg(i18n("Dou&ble Flat"));
} else if (accidental == Natural) {
s = s.arg(i18n("&Natural"));
} else {
s = s.arg(i18n("N&one"));
}
return s;
}
case Up:
return i18n("Respell Accidentals &Upward");
case Down:
return i18n("Respell Accidentals &Downward");
case Restore:
return i18n("&Restore Computed Accidentals");
}
return i18n("Respell Accidentals");
}
void
RespellCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
if (m_type == Up || m_type == Down) {
Accidental acc = NoAccidental;
(*i)->get<String>(ACCIDENTAL, acc);
if (m_type == Down) {
if (acc == DoubleFlat) {
acc = Flat;
} else if (acc == Flat || acc == NoAccidental) {
acc = Sharp;
} else if (acc == Sharp) {
acc = DoubleSharp;
}
} else {
if (acc == Flat) {
acc = DoubleFlat;
} else if (acc == Sharp || acc == NoAccidental) {
acc = Flat;
} else if (acc == DoubleSharp) {
acc = Sharp;
}
}
(*i)->set<String>(ACCIDENTAL, acc);
} else if (m_type == Set) {
(*i)->set<String>(ACCIDENTAL, m_accidental);
} else {
(*i)->unset(ACCIDENTAL);
}
}
}
}
QString
MakeAccidentalsCautionaryCommand::getGlobalName(bool cautionary)
{
if (cautionary) return i18n("Use &Cautionary Accidentals");
else return i18n("Cancel C&autionary Accidentals");
}
void
MakeAccidentalsCautionaryCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if ((*i)->isa(Note::EventType)) {
if (m_cautionary) {
(*i)->set<Bool>(NotationProperties::USE_CAUTIONARY_ACCIDENTAL,
true);
} else {
(*i)->unset(NotationProperties::USE_CAUTIONARY_ACCIDENTAL);
}
}
}
}
void
IncrementDisplacementsCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
long prevX = 0, prevY = 0;
(*i)->get<Int>(DISPLACED_X, prevX);
(*i)->get<Int>(DISPLACED_Y, prevY);
(*i)->setMaybe<Int>(DISPLACED_X, prevX + long(m_dx));
(*i)->setMaybe<Int>(DISPLACED_Y, prevY + long(m_dy));
}
}
void
ResetDisplacementsCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
(*i)->unset(DISPLACED_X);
(*i)->unset(DISPLACED_Y);
}
}
void
SetVisibilityCommand::modifySegment()
{
EventSelection::eventcontainer::iterator i;
for (i = m_selection->getSegmentEvents().begin();
i != m_selection->getSegmentEvents().end(); ++i) {
if (m_visible) {
(*i)->unset(INVISIBLE);
} else {
(*i)->set<Bool>(INVISIBLE, true);
}
}
}
|