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
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2017 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 "palmmute.h"
#include "sym.h"
#include "xml.h"
#include "system.h"
#include "measure.h"
#include "chordrest.h"
#include "score.h"
namespace Ms {
static const ElementStyle palmMuteStyle {
{ Sid::palmMuteFontFace, Pid::BEGIN_FONT_FACE },
{ Sid::palmMuteFontFace, Pid::CONTINUE_FONT_FACE },
{ Sid::palmMuteFontFace, Pid::END_FONT_FACE },
{ Sid::palmMuteFontSize, Pid::BEGIN_FONT_SIZE },
{ Sid::palmMuteFontSize, Pid::CONTINUE_FONT_SIZE },
{ Sid::palmMuteFontSize, Pid::END_FONT_SIZE },
{ Sid::palmMuteFontStyle, Pid::BEGIN_FONT_STYLE },
{ Sid::palmMuteFontStyle, Pid::CONTINUE_FONT_STYLE },
{ Sid::palmMuteFontStyle, Pid::END_FONT_STYLE },
{ Sid::palmMuteTextAlign, Pid::BEGIN_TEXT_ALIGN },
{ Sid::palmMuteTextAlign, Pid::CONTINUE_TEXT_ALIGN },
{ Sid::palmMuteTextAlign, Pid::END_TEXT_ALIGN },
{ Sid::palmMuteHookHeight, Pid::BEGIN_HOOK_HEIGHT },
{ Sid::palmMuteHookHeight, Pid::END_HOOK_HEIGHT },
{ Sid::palmMutePosBelow, Pid::OFFSET },
{ Sid::palmMuteLineStyle, Pid::LINE_STYLE },
{ Sid::palmMuteBeginTextOffset, Pid::BEGIN_TEXT_OFFSET },
{ Sid::palmMuteEndHookType, Pid::END_HOOK_TYPE },
{ Sid::palmMuteLineWidth, Pid::LINE_WIDTH },
{ Sid::palmMutePlacement, Pid::PLACEMENT },
{ Sid::palmMutePosBelow, Pid::OFFSET },
};
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void PalmMuteSegment::layout()
{
TextLineBaseSegment::layout();
autoplaceSpannerSegment();
}
//---------------------------------------------------------
// getPropertyStyle
//---------------------------------------------------------
Sid PalmMuteSegment::getPropertyStyle(Pid pid) const
{
if (pid == Pid::OFFSET)
return spanner()->placeAbove() ? Sid::palmMutePosAbove : Sid::palmMutePosBelow;
return TextLineBaseSegment::getPropertyStyle(pid);
}
Sid PalmMute::getPropertyStyle(Pid pid) const
{
if (pid == Pid::OFFSET)
return placeAbove() ? Sid::palmMutePosAbove : Sid::palmMutePosBelow;
return TextLineBase::getPropertyStyle(pid);
}
//---------------------------------------------------------
// PalmMute
//---------------------------------------------------------
PalmMute::PalmMute(Score* s)
: TextLineBase(s)
{
initElementStyle(&palmMuteStyle);
resetProperty(Pid::LINE_VISIBLE);
resetProperty(Pid::BEGIN_TEXT_PLACE);
resetProperty(Pid::BEGIN_TEXT);
resetProperty(Pid::CONTINUE_TEXT_PLACE);
resetProperty(Pid::CONTINUE_TEXT);
resetProperty(Pid::END_TEXT_PLACE);
resetProperty(Pid::END_TEXT);
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
void PalmMute::read(XmlReader& e)
{
if (score()->mscVersion() < 301)
e.addSpanner(e.intAttribute("id", -1), this);
while (e.readNextStartElement()) {
if (readProperty(e.name(), e, Pid::LINE_WIDTH))
setPropertyFlags(Pid::LINE_WIDTH, PropertyFlags::UNSTYLED);
else if (!TextLineBase::readProperties(e))
e.unknown();
}
}
//---------------------------------------------------------
// write
//
// The removal of this function is potentially a temporary
// change. For now, the intended behavior does no more than
// the base write function and so we will just use that.
//
// also see letring.cpp
//---------------------------------------------------------
/*
void PalmMute::write(XmlWriter& xml) const
{
if (!xml.canWrite(this))
return;
xml.stag(this);
for (const StyledProperty& spp : *styledProperties()) {
if(!isStyled(spp.pid))
writeProperty(xml, spp.pid);
}
TextLineBase::writeProperties(xml);
xml.etag();
}
*/
//---------------------------------------------------------
// createLineSegment
//---------------------------------------------------------
static const ElementStyle palmMuteSegmentStyle {
{ Sid::palmMutePosBelow, Pid::OFFSET },
{ Sid::palmMuteMinDistance, Pid::MIN_DISTANCE },
};
LineSegment* PalmMute::createLineSegment()
{
PalmMuteSegment* pms = new PalmMuteSegment(this, score());
pms->setTrack(track());
pms->initElementStyle(&palmMuteSegmentStyle);
return pms;
}
//---------------------------------------------------------
// propertyDefault
//---------------------------------------------------------
QVariant PalmMute::propertyDefault(Pid propertyId) const
{
switch (propertyId) {
case Pid::LINE_WIDTH:
return score()->styleV(Sid::palmMuteLineWidth);
case Pid::ALIGN:
return QVariant::fromValue(Align::LEFT | Align::BASELINE);
case Pid::LINE_STYLE:
return score()->styleV(Sid::palmMuteLineStyle);
case Pid::LINE_VISIBLE:
return true;
case Pid::CONTINUE_TEXT_OFFSET:
case Pid::END_TEXT_OFFSET:
return QPointF(0, 0);
//TODOws case Pid::BEGIN_FONT_ITALIC:
// return score()->styleV(Sid::palmMuteFontItalic);
case Pid::BEGIN_TEXT:
return score()->styleV(Sid::palmMuteText);
case Pid::CONTINUE_TEXT:
case Pid::END_TEXT:
return "";
case Pid::BEGIN_HOOK_TYPE:
return int(HookType::NONE);
case Pid::BEGIN_TEXT_PLACE:
case Pid::CONTINUE_TEXT_PLACE:
case Pid::END_TEXT_PLACE:
return int(PlaceText::AUTO);
default:
return TextLineBase::propertyDefault(propertyId);
}
}
//---------------------------------------------------------
// linePos
// return System() coordinates
//---------------------------------------------------------
QPointF PalmMute::linePos(Grip grip, System** sys) const
{
qreal x = 0.0;
qreal nhw = score()->noteHeadWidth();
System* s = nullptr;
if (grip == Grip::START) {
ChordRest* c = toChordRest(startElement());
s = c->segment()->system();
x = c->pos().x() + c->segment()->pos().x() + c->segment()->measure()->pos().x();
if (c->isRest() && c->durationType() == TDuration::DurationType::V_MEASURE)
x -= c->x();
}
else {
Element* e = endElement();
ChordRest* c = toChordRest(endElement());
if (!e || e == startElement() || (endHookType() == HookType::HOOK_90)) {
// palmMute marking on single note or ends with non-angled hook:
// extend to next note or end of measure
Segment* seg = nullptr;
if (!e)
seg = startSegment();
else
seg = c->segment();
if (seg) {
seg = seg->next();
for ( ; seg; seg = seg->next()) {
if (seg->isChordRestType()) {
// look for a chord/rest in any voice on this staff
bool crFound = false;
int track = staffIdx() * VOICES;
for (int i = 0; i < VOICES; ++i) {
if (seg->element(track + i)) {
crFound = true;
break;
}
}
if (crFound)
break;
}
else if (seg->segmentType() == SegmentType::EndBarLine) {
break;
}
}
}
if (seg) {
s = seg->system();
x = seg->pos().x() + seg->measure()->pos().x() - nhw * 2;
}
}
else if (c) {
s = c->segment()->system();
x = c->pos().x() + c->segment()->pos().x() + c->segment()->measure()->pos().x();
if (c->type() == ElementType::REST && c->durationType() == TDuration::DurationType::V_MEASURE)
x -= c->x();
}
if (!s) {
Fraction t = tick2();
Measure* m = score()->tick2measure(t);
s = m->system();
x = m->tick2pos(t);
}
if (endHookType() == HookType::HOOK_45)
x += nhw * .5;
else
x += nhw;
}
*sys = s;
return QPointF(x, 0);
}
}
|