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
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2010-2011 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#include "tremolobar.h"
#include "score.h"
#include "undo.h"
#include "staff.h"
#include "chord.h"
#include "note.h"
#include "xml.h"
namespace Ms {
//---------------------------------------------------------
// TremoloBar
//---------------------------------------------------------
TremoloBar::TremoloBar(Score* s)
: Element(s)
{
setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE);
}
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void TremoloBar::layout()
{
qreal _spatium = spatium();
setPos(0.0, 0.0);
if (staff() && !staff()->isTabStaff()) {
setbbox(QRectF());
if (!parent()) {
noteWidth = -_spatium*2;
notePos = QPointF(0.0, _spatium*3);
}
}
_lw = _spatium * 0.1;
Note* note = 0;
if (note == 0) {
noteWidth = 0.0;
notePos = QPointF();
}
else {
noteWidth = note->width();
notePos = note->pos();
}
// int n = _points.size();
// int pt = 0;
// qreal x = noteWidth * .5;
// qreal y = notePos.y() - _spatium;
// qreal x2, y2;
QRectF bb (0, 0, _spatium, -_spatium * 5);
#if 0
for (int pt = 0; pt < n; ++pt) {
if (pt == (n-1))
break;
x = x2;
y = y2;
}
#endif
bb.adjust(-_lw, -_lw, _lw, _lw);
setbbox(bb);
}
//---------------------------------------------------------
// draw
//---------------------------------------------------------
void TremoloBar::draw(QPainter* painter) const
{
QPen pen(curColor(), _lw, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
painter->setPen(pen);
painter->setBrush(QBrush(Qt::black));
qreal _spatium = spatium();
const TextStyle* st = &score()->textStyle(TextStyleType::BENCH);
QFont f = st->fontPx(_spatium);
painter->setFont(f);
int n = _points.size();
int previousTime = _points[0].time;
int previousPitch = _points[0].pitch;
/* we place the tremolo bars starting slightly before the
* notehead, and end it slightly after, drawing above the
* note. The values specified in Guitar Pro are very large, too
* large for the scale used in Musescore. We used the
* timeFactor and pitchFactor below to reduce these values down
* consistently to values that make sense to draw with the
* Musescore scale. */
qreal timeFactor = 10.0 / _userMag;
qreal pitchFactor = 25.0 / _userMag;
for (int pt = 1; pt < n; ++pt) {
painter->drawLine(QLineF(previousTime/timeFactor, -previousPitch/pitchFactor-_spatium*3,
_points[pt].time/timeFactor, -_points[pt].pitch/pitchFactor-_spatium*3));
previousTime = _points[pt].time;
previousPitch = _points[pt].pitch;
}
}
//---------------------------------------------------------
// write
//---------------------------------------------------------
void TremoloBar::write(Xml& xml) const
{
xml.stag("TremoloBar");
writeProperty(xml, P_ID::MAG);
for (const PitchValue& v : _points) {
xml.tagE(QString("point time=\"%1\" pitch=\"%2\" vibrato=\"%3\"")
.arg(v.time).arg(v.pitch).arg(v.vibrato));
}
xml.etag();
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
void TremoloBar::read(XmlReader& e)
{
while (e.readNextStartElement()) {
if (e.name() == "point") {
PitchValue pv;
pv.time = e.intAttribute("time");
pv.pitch = e.intAttribute("pitch");
pv.vibrato = e.intAttribute("vibrato");
_points.append(pv);
e.readNext();
}
else if (e.name() == "mag")
_userMag = e.readDouble(0.1, 10.0);
else
e.unknown();
}
}
//---------------------------------------------------------
// undoSetUserMag
//---------------------------------------------------------
void TremoloBar::undoSetUserMag(qreal val)
{
score()->undoChangeProperty(this, P_ID::MAG, val);
}
//---------------------------------------------------------
// getProperty
//---------------------------------------------------------
QVariant TremoloBar::getProperty(P_ID propertyId) const
{
switch (propertyId) {
case P_ID::MAG: return userMag();
default:
return Element::getProperty(propertyId);
}
}
//---------------------------------------------------------
// propertyDefault
//---------------------------------------------------------
QVariant TremoloBar::propertyDefault(P_ID propertyId) const
{
switch (propertyId) {
case P_ID::MAG: return 1.0;
default:
return Element::propertyDefault(propertyId);
}
}
//---------------------------------------------------------
// setProperty
//---------------------------------------------------------
bool TremoloBar::setProperty(P_ID propertyId, const QVariant& v)
{
switch (propertyId) {
case P_ID::MAG:
setUserMag(v.toDouble());
break;
default:
return Element::setProperty(propertyId, v);
}
score()->setLayoutAll(true);
return true;
}
}
|