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
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 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 "importgtp.h"
#include "globals.h"
#include "libmscore/score.h"
#include "libmscore/measurebase.h"
#include "libmscore/text.h"
#include "libmscore/box.h"
#include "libmscore/staff.h"
#include "libmscore/part.h"
#include "libmscore/measure.h"
#include "libmscore/timesig.h"
#include "libmscore/tremolo.h"
#include "libmscore/rest.h"
#include "libmscore/chord.h"
#include "libmscore/note.h"
#include "libmscore/stringdata.h"
#include "libmscore/clef.h"
#include "libmscore/lyrics.h"
#include "libmscore/tempotext.h"
#include "libmscore/slur.h"
#include "libmscore/tie.h"
#include "libmscore/tuplet.h"
#include "libmscore/barline.h"
#include "libmscore/excerpt.h"
#include "libmscore/stafftype.h"
#include "libmscore/bracket.h"
#include "libmscore/articulation.h"
#include "libmscore/keysig.h"
#include "libmscore/harmony.h"
#include "libmscore/bend.h"
#include "libmscore/tremolobar.h"
#include "libmscore/segment.h"
#include "libmscore/rehearsalmark.h"
#include "libmscore/dynamic.h"
#include "libmscore/arpeggio.h"
#include "libmscore/volta.h"
#include "libmscore/instrtemplate.h"
#include "libmscore/fingering.h"
#include "libmscore/notedot.h"
#include "libmscore/stafftext.h"
#include "preferences.h"
namespace Ms {
//---------------------------------------------------------
// readMixChange
//---------------------------------------------------------
bool GuitarPro4::readMixChange(Measure* measure)
{
/*char patch =*/ readChar();
signed char volume = readChar();
signed char pan = readChar();
signed char chorus = readChar();
signed char reverb = readChar();
signed char phase = readChar();
signed char tremolo = readChar();
int tempo = readInt();
bool tempoEdited = false;
if (volume >= 0)
readChar();
if (pan >= 0)
readChar();
if (chorus >= 0)
readChar();
if (reverb >= 0)
readChar();
if (phase >= 0)
readChar();
if (tremolo >= 0)
readChar();
if (tempo >= 0) {
if (tempo != previousTempo) {
previousTempo = tempo;
setTempo(tempo, measure);
}
readChar();
tempoEdited = true;
}
readChar(); // bitmask: what should be applied to all tracks
return tempoEdited;
}
//---------------------------------------------------------
// readBeatEffects
//---------------------------------------------------------
int GuitarPro4::readBeatEffects(int track, Segment* segment)
{
int effects = 0;
uchar fxBits1 = readUChar();
uchar fxBits2 = readUChar();
if (fxBits1 & BEAT_FADE)
effects = 4; // fade in
if (fxBits1 & BEAT_EFFECT) {
effects = readUChar(); // effect 1-tapping, 2-slapping, 3-popping
}
if (fxBits2 & BEAT_TREMOLO)
readTremoloBar(track,segment);
if (fxBits1 & BEAT_ARPEGGIO) {
int strokeup = readUChar(); // up stroke length
int strokedown = readUChar(); // down stroke length
Arpeggio* a = new Arpeggio(score);
if( strokeup > 0 ) {
a->setArpeggioType(ArpeggioType::UP_STRAIGHT);
}
else if( strokedown > 0 ) {
a->setArpeggioType(ArpeggioType::DOWN_STRAIGHT);
}
else {
delete a;
a = 0;
}
if(a) {
ChordRest* cr = new Chord(score);
cr->setTrack(track);
cr->add(a);
segment->add(cr);
}
}
if (fxBits2 & BEAT_STROKE_DIR) {
effects = readUChar(); // stroke pick direction
effects += 4; //1 or 2 for effects becomes 4 or 5
}
if (fxBits1 & 0x01) { // GP3 column-wide vibrato
}
if (fxBits1 & 0x2) { // GP3 column-wide wide vibrato (="tremolo" in GP3)
}
return effects;
}
//---------------------------------------------------------
// readNote
//---------------------------------------------------------
bool GuitarPro4::readNote(int string, int staffIdx, Note* note)
{
uchar noteBits = readUChar();
//
// noteBits:
// 7 - Right hand or left hand fingering;
// 6 - Accentuated note
// 5 - Note type (rest, empty note, normal note);
// 4 - note dynamic;
// 3 - Presence of effects linked to the note;
// 2 - Ghost note;
// 1 - Dotted note; ?
// 0 - Time-independent duration
if (noteBits & BEAT_TREMOLO) {
note->setHeadGroup(NoteHead::Group::HEAD_CROSS);
note->setGhost(true);
}
bool tieNote = false;
uchar variant = 1;
if (noteBits & BEAT_EFFECT) {
variant = readUChar();
if (variant == 1) { // normal note
}
else if (variant == 2) {
/* guitar pro 4 bundles tied notes with slides in the representation
* we take note when we see ties and do not create slides for these notes. */
slides[staffIdx * VOICES] = -2;
tieNote = true;
}
else if (variant == 3) { // dead notes = ghost note
note->setHeadGroup(NoteHead::Group::HEAD_CROSS);
note->setGhost(true);
}
else
qDebug("unknown note variant: %d", variant);
}
if (noteBits & 0x1) { // note != beat
int a = readUChar(); // length
int b = readUChar(); // t
qDebug(" Time-independent note len, len %d t %d", a, b);
}
if (noteBits & 0x2) { // note is dotted
//readUChar();
}
// set dynamic information on note if different from previous note
if (noteBits & NOTE_DYNAMIC) {
int d = readChar();
if (previousDynamic != d) {
previousDynamic = d;
addDynamic(note, d);
}
}
int fretNumber = -1;
if (noteBits & NOTE_FRET)
fretNumber = readUChar();
// check if a note is supposed to be accented, and give it the sforzato type
if (noteBits & NOTE_SFORZATO) {
Articulation* art = new Articulation(note->score());
art->setArticulationType(ArticulationType::Sforzatoaccent);
if (!note->score()->addArticulation(note, art))
delete art;
}
if (noteBits & NOTE_FINGERING) {
int leftFinger = readUChar();
int rightFinger = readUChar();
Text* f = new Fingering(score);
QString finger;
// if there is a valid left hand fingering
if (leftFinger < 5) {
if (leftFinger == 0)
finger = "T";
else if (leftFinger == 1)
finger = "1";
else if (leftFinger == 2)
finger = "2";
else if (leftFinger == 3)
finger = "3";
else if (leftFinger == 4)
finger = "4";
}
else {
if (rightFinger == 0)
finger = "T";
else if (rightFinger == 1)
finger = "I";
else if (rightFinger == 2)
finger = "M";
else if (rightFinger == 3)
finger = "A";
else if (rightFinger == 4)
finger = "O";
}
f->setPlainText(finger);
note->add(f);
f->reset();
}
bool slur = false;
if (noteBits & BEAT_EFFECTS) {
uchar modMask1 = readUChar();
uchar modMask2 = readUChar();
if (modMask1 & EFFECT_BEND)
readBend(note);
if (modMask1 & EFFECT_HAMMER)
slur = true;
if (modMask1 & EFFECT_LET_RING)
addLetRing(note->chord(), note->staffIdx(), true);
else
addLetRing(note->chord(), note->staffIdx(), false);
if (modMask1 & EFFECT_GRACE) {
int fret = readUChar(); // grace fret
int dynamic = readUChar(); // grace dynamic
int transition = readUChar(); // grace transition
int duration = readUChar(); // grace duration
int grace_len = MScore::division/8;
if (duration == 1)
grace_len = MScore::division/8; //32th
else if (duration == 2)
grace_len = MScore::division/6; //24th
else if (duration == 3)
grace_len = MScore::division/4; //16th
Note* gn = new Note(score);
if (fret == 255) {
gn->setHeadGroup(NoteHead::Group::HEAD_CROSS);
gn->setGhost(true);
}
if (fret == 255)
fret = 0;
gn->setFret(fret);
gn->setString(string);
int grace_pitch = note->part()->instrument()->stringData()->getPitch(string, fret, nullptr, 0);
gn->setPitch(grace_pitch);
gn->setTpcFromPitch();
Chord* gc = new Chord(score);
gc->setTrack(note->chord()->track());
gc->add(gn);
gc->setParent(note->chord());
TDuration d;
d.setVal(grace_len);
if(grace_len == MScore::division/6)
d.setDots(1);
gc->setDurationType(d);
gc->setDuration(d.fraction());
gc->setNoteType(NoteType::ACCIACCATURA);
gc->setMag(note->chord()->staff()->mag() * score->styleD(StyleIdx::graceNoteMag));
note->chord()->add(gc);
addDynamic(gn, dynamic);
if (transition == 0) {
// no transition
}
else if(transition == 1){
//TODO: Add a 'slide' guitar effect when implemented
}
else if (transition == 2 && fretNumber>=0 && fretNumber<=255 && fretNumber!=gn->fret()) {
QList<PitchValue> points;
points.append(PitchValue(0,0, false));
points.append(PitchValue(60,(fretNumber-gn->fret())*100, false));
Bend* b = new Bend(note->score());
b->setPoints(points);
b->setTrack(gn->track());
gn->add(b);
}
else if (transition == 3) {
// TODO:
// major: replace with a 'hammer-on' guitar effect when implemented
// minor: make slurs for parts
ChordRest* cr1 = static_cast<Chord*>(gc);
ChordRest* cr2 = static_cast<Chord*>(note->chord());
Slur* slur = new Slur(score);
slur->setAnchor(Spanner::Anchor::CHORD);
slur->setStartElement(cr1);
slur->setEndElement(cr2);
slur->setTick(cr1->tick());
slur->setTick2(cr2->tick());
slur->setTrack(cr1->track());
slur->setTrack2(cr2->track());
// this case specifies only two-note slurs, don't set a parent
score->undoAddElement(slur);
}
}
if (modMask2 & EFFECT_STACATTO) { // staccato
Chord* chord = note->chord();
Articulation* a = new Articulation(chord->score());
a->setArticulationType(ArticulationType::Staccato);
chord->add(a);
}
if (modMask2 & EFFECT_PALM_MUTE)
addPalmMute(note->chord(), note->staffIdx(), true);
else
addPalmMute(note->chord(), note->staffIdx(), false);
if (modMask2 & EFFECT_TREMOLO) { // tremolo picking length
int tremoloDivision = readUChar();
Chord* chord = note->chord();
Tremolo* t = new Tremolo(chord->score());
if (tremoloDivision == 1) {
t->setTremoloType(TremoloType::R8);
chord->add(t);
}
else if (tremoloDivision == 2) {
t->setTremoloType(TremoloType::R16);
chord->add(t);
}
else if (tremoloDivision == 3) {
t->setTremoloType(TremoloType::R32);
chord->add(t);
}
else
qDebug("Unknown tremolo value");
}
if (modMask2 & EFFECT_SLIDE) {
int slideKind = readUChar();
// if slide >= 4 then we are not dealing with legato slide nor shift slide
if (slideKind >= 3 || slideKind == 254 || slideKind == 255) {
slide = slideKind;
}
else
slides[note->chord()->track()] = slideKind;
}
if (modMask2 & 0x10)
readUChar(); // harmonic kind
if (modMask2 & EFFECT_TRILL) {
readUChar(); // trill fret
readUChar(); // trill length
// add the trill articulation to the note
Articulation* art = new Articulation(note->score());
art->setArticulationType(ArticulationType::Trill);
if (!note->score()->addArticulation(note, art))
delete art;
}
}
else {
addLetRing(note->chord(), note->staffIdx(), false);
}
if (fretNumber == -1) {
qDebug("Note: no fret number, tie %d", tieNote);
}
Staff* staff = note->staff();
if (fretNumber == 255) {
fretNumber = 0;
note->setHeadGroup(NoteHead::Group::HEAD_CROSS);
note->setGhost(true);
}
// dead note represented as high numbers - fix to zero
if (fretNumber > 99 || fretNumber == -1)
fretNumber = 0;
int pitch = staff->part()->instrument()->stringData()->getPitch(string, fretNumber, nullptr, 0);
note->setFret(fretNumber);
note->setString(string);
note->setPitch(pitch);
if (tieNote) {
bool found = false;
Chord* chord = note->chord();
Segment* segment = chord->segment()->prev1(Segment::Type::ChordRest);
int track = note->track();
while (segment) {
Element* e = segment->element(track);
if (e) {
if (e->type() == Element::Type::CHORD) {
Chord* chord2 = static_cast<Chord*>(e);
foreach(Note* note2, chord2->notes()) {
if (note2->string() == string) {
Tie* tie = new Tie(score);
tie->setEndNote(note);
note2->add(tie);
note->setFret(note2->fret());
note->setPitch(note2->pitch());
found = true;
break;
}
}
}
if (found)
break;
}
segment = segment->prev1(Segment::Type::ChordRest);
}
if (!found)
qDebug("tied note not found, pitch %d fret %d string %d", note->pitch(), note->fret(), note->string());
}
return slur;
}
//---------------------------------------------------------
// readInfo
//---------------------------------------------------------
void GuitarPro4::readInfo()
{
title = readDelphiString();
subtitle = readDelphiString();
artist = readDelphiString();
album = readDelphiString();
composer = readDelphiString();
QString copyright = readDelphiString();
if (!copyright.isEmpty())
score->setMetaTag("copyright", QString("%1").arg(copyright));
transcriber = readDelphiString();
instructions = readDelphiString();
int n = readInt();
for (int i = 0; i < n; ++i)
comments.append(readDelphiString());
}
//---------------------------------------------------------
// convertGP4SlideNum
//---------------------------------------------------------
int GuitarPro4::convertGP4SlideNum(int slide)
{
switch (slide) {
// slide out downwards
case 3:
return SLIDE_OUT_DOWN;
break;
// slide out upwards
case 4:
return SLIDE_OUT_UP;
break;
// slide in from above
case 254:
return SLIDE_IN_ABOVE;
break;
// slide in from below
case 255:
return SLIDE_IN_BELOW;
break;
}
return slide;
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
void GuitarPro4::read(QFile* fp)
{
f = fp;
curPos = 30;
readInfo();
readUChar(); // triplet feeling
readLyrics();
int tempo = readInt();
key = readInt();
/*int octave =*/ readUChar(); // octave
//previousDynamic = new int [staves * VOICES];
// initialise the dynamics to 0
//for (int i = 0; i < staves * VOICES; i++)
// previousDynamic[i] = 0;
previousDynamic = -1;
previousTempo = -1;
readChannels();
measures = readInt();
staves = readInt();
int tnumerator = 4;
int tdenominator = 4;
for (int i = 0; i < measures; ++i) {
GpBar bar;
uchar barBits = readUChar();
if (barBits & SCORE_TIMESIG_NUMERATOR)
tnumerator = readUChar();
if (barBits & SCORE_TIMESIG_DENOMINATOR)
tdenominator = readUChar();
if (barBits & SCORE_REPEAT_START)
bar.repeatFlags = bar.repeatFlags | Repeat::START;
if (barBits & SCORE_REPEAT_END) { // number of repeats
bar.repeatFlags = bar.repeatFlags | Repeat::END;
bar.repeats = readUChar() + 1;
}
if (barBits & SCORE_VOLTA) { // a volta
uchar voltaNumber = readUChar();
while (voltaNumber > 0) {
// volta information is represented as a binary number
bar.volta.voltaType = GP_VOLTA_BINARY;
bar.volta.voltaInfo.append(voltaNumber & 1);
voltaNumber >>= 1;
}
}
if (barBits & SCORE_MARKER) {
bar.marker = readDelphiString(); // new section?
/*int color = */ readInt(); // color?
}
if (barBits & SCORE_KEYSIG) {
int currentKey = readUChar();
/* key signatures are specified as
* 1# = 1, 2# = 2, ..., 7# = 7
* 1b = 255, 2b = 254, ... 7b = 249 */
bar.keysig = currentKey <= 7 ? currentKey : -256+currentKey;
readUChar(); // specifies major/minor mode
}
if (barBits & SCORE_DOUBLE_BAR)
bar.barLine = BarLineType::DOUBLE;
bar.timesig = Fraction(tnumerator, tdenominator);
bars.append(bar);
}
//
// create a part for every staff
//
for (int staffIdx = 0; staffIdx < staves; ++staffIdx) {
Part* part = new Part(score);
Staff* s = new Staff(score);
s->setPart(part);
part->insertStaff(s, 0);
score->staves().push_back(s);
score->appendPart(part);
}
createMeasures();
for (int i = 0; i < staves; ++i) {
int tuning[GP_MAX_STRING_NUMBER];
uchar c = readUChar(); // simulations bitmask
if (c & 0x2) { // 12 stringed guitar
}
if (c & 0x4) { // banjo track
}
QString name = readPascalString(40);
int strings = readInt();
if (strings <= 0 || strings > GP_MAX_STRING_NUMBER)
throw GuitarProError::GP_BAD_NUMBER_OF_STRINGS ;
for (int j = 0; j < strings; ++j)
tuning[j] = readInt();
for (int j = strings; j < GP_MAX_STRING_NUMBER; ++j)
readInt();
/*int midiPort =*/ readInt(); // - 1;
int midiChannel = readInt() - 1;
/*int midiChannel2 =*/ readInt(); // - 1;
int frets = readInt();
int capo = readInt();
/*int color =*/ readInt();
int tuning2[strings];
for (int k = 0; k < strings; ++k)
tuning2[strings-k-1] = tuning[k];
StringData stringData(frets, strings, tuning2);
Part* part = score->staff(i)->part();
Instrument* instr = part->instrument();
instr->setStringData(stringData);
part->setPartName(name);
part->setPlainLongName(name);
//
// determine clef
//
Staff* staff = score->staff(i);
int patch = channelDefaults[midiChannel].patch;
ClefType clefId = ClefType::G;
if (midiChannel == GP_DEFAULT_PERCUSSION_CHANNEL) {
clefId = ClefType::PERC;
// instr->setUseDrumset(DrumsetKind::GUITAR_PRO);
instr->setDrumset(gpDrumset);
staff->setStaffType(StaffType::preset(StaffTypes::PERC_DEFAULT));
}
else if (patch >= 24 && patch < 32)
clefId = ClefType::G3;
else if (patch >= 32 && patch < 40)
clefId = ClefType::F8;
Measure* measure = score->firstMeasure();
Clef* clef = new Clef(score);
clef->setClefType(clefId);
clef->setTrack(i * VOICES);
Segment* segment = measure->getSegment(Segment::Type::Clef, 0);
segment->add(clef);
if (capo > 0) {
Segment* s = measure->getSegment(Segment::Type::ChordRest, measure->tick());
StaffText* st = new StaffText(score);
st->setTextStyleType(TextStyleType::STAFF);
st->setPlainText(QString("Capo. fret ") + QString::number(capo));
st->setParent(s);
st->setTrack(i * VOICES);
measure->add(st);
}
Channel* ch = instr->channel(0);
if (midiChannel == GP_DEFAULT_PERCUSSION_CHANNEL) {
ch->program = 0;
ch->bank = 128;
}
else {
ch->program = patch;
ch->bank = 0;
}
ch->volume = channelDefaults[midiChannel].volume;
ch->pan = channelDefaults[midiChannel].pan;
ch->chorus = channelDefaults[midiChannel].chorus;
ch->reverb = channelDefaults[midiChannel].reverb;
// missing: phase, tremolo
ch->updateInitList();
}
slurs = new Slur*[staves];
letRings = new Pedal*[staves];
palmMutes = new TextLine*[staves];
for (int i = 0; i < staves; ++i) {
slurs[i] = 0;
letRings[i] = 0;
palmMutes[i] = 0;
}
Measure* measure = score->firstMeasure();
bool mixChange = false;
for (int bar = 0; bar < measures; ++bar, measure = measure->nextMeasure()) {
const GpBar& gpbar = bars[bar];
if (!gpbar.marker.isEmpty()) {
Text* s = new RehearsalMark(score);
s->setPlainText(gpbar.marker.trimmed());
s->setTrack(0);
Segment* segment = measure->getSegment(Segment::Type::ChordRest, measure->tick());
segment->add(s);
}
Tuplet* tuplets[staves];
for (int staffIdx = 0; staffIdx < staves; ++staffIdx)
tuplets[staffIdx] = 0;
for (int staffIdx = 0; staffIdx < staves; ++staffIdx) {
Fraction measureLen = 0;
int tick = measure->tick();
int beats = readInt();
int track = staffIdx * VOICES;
for (int beat = 0; beat < beats; ++beat) {
slide = -1;
if (slides.contains(track))
slide = slides.take(track);
uchar beatBits = readUChar();
bool dotted = beatBits & 0x1;
int pause = -1;
if (beatBits & BEAT_PAUSE)
pause = readUChar();
int len = readChar();
int tuple = 0;
if (beatBits & BEAT_TUPLET)
tuple = readInt();
Segment* segment = measure->getSegment(Segment::Type::ChordRest, tick);
if (beatBits & BEAT_CHORD) {
int numStrings = score->staff(staffIdx)->part()->instrument()->stringData()->strings();
int header = readUChar();
QString name;
if ((header & 1) == 0) {
name = readDelphiString();
readChord(segment, staffIdx * VOICES, numStrings, name, false);
}
else {
skip(16);
name = readPascalString(21);
skip(4);
readChord(segment, staffIdx * VOICES, numStrings, name, true);
skip(32);
}
}
Lyrics* lyrics = 0;
if (beatBits & BEAT_LYRICS) {
lyrics = new Lyrics(score);
lyrics->setPlainText(readDelphiString());
}
gpLyrics.beatCounter++;
if (gpLyrics.beatCounter >= gpLyrics.fromBeat && gpLyrics.lyricTrack == staffIdx + 1) {
int index = gpLyrics.beatCounter - gpLyrics.fromBeat;
if (index < gpLyrics.lyrics.size()) {
lyrics = new Lyrics(score);
lyrics->setPlainText(gpLyrics.lyrics[index]);
}
}
int beatEffects = 0;
if (beatBits & BEAT_EFFECTS)
beatEffects = readBeatEffects(track, segment);
if (beatBits & BEAT_MIX_CHANGE) {
readMixChange(measure);
mixChange = true;
}
else {
if (bar == 0)
setTempo(tempo, measure);
}
int strings = readUChar(); // used strings mask
Fraction l = len2fraction(len);
// Some beat effects could add a Chord before this
ChordRest* cr = segment->cr(track);
if (strings == 0) {
if(segment->cr(track)){
segment->remove(segment->cr(track));
delete cr;
cr = 0;
}
cr = new Rest(score);
}
else {
if(!segment->cr(track))
cr = new Chord(score);
}
cr->setTrack(track);
if (lyrics)
cr->add(lyrics);
TDuration d(l);
d.setDots(dotted ? 1 : 0);
if (dotted)
l = l + (l/2);
if (tuple) {
Tuplet* tuplet = tuplets[staffIdx];
if ((tuplet == 0) || (tuplet->elementsDuration() == tuplet->baseLen().fraction() * tuplet->ratio().numerator())) {
tuplet = new Tuplet(score);
tuplet->setTrack(cr->track());
tuplets[staffIdx] = tuplet;
setTuplet(tuplet, tuple);
tuplet->setParent(measure);
}
tuplet->setTrack(track);
tuplet->setBaseLen(l);
tuplet->setDuration(l * tuplet->ratio().denominator());
cr->setTuplet(tuplet);
tuplet->add(cr);
}
cr->setDuration(l);
if (cr->type() == Element::Type::REST && (pause == 0 || l >= measure->len())) {
cr->setDurationType(TDuration::DurationType::V_MEASURE);
cr->setDuration(measure->len());
}
else
cr->setDurationType(d);
if(!segment->cr(track))
segment->add(cr);
Staff* staff = cr->staff();
int numStrings = staff->part()->instrument()->stringData()->strings();
bool hasSlur = false;
for (int i = 6; i >= 0; --i) {
if (strings & (1 << i) && ((6-i) < numStrings)) {
Note* note = new Note(score);
// apply dotted notes to the note
if (dotted) {
// there is at most one dotted note in this guitar pro version
NoteDot* dot = new NoteDot(score);
dot->setIdx(0);
dot->setParent(note);
dot->setTrack(track); // needed to know the staff it belongs to (and detect tablature)
dot->setVisible(true);
note->add(dot);
}
static_cast<Chord*>(cr)->add(note);
hasSlur = readNote(6-i, staffIdx, note);
note->setTpcFromPitch();
}
}
if (cr && (cr->type() == Element::Type::CHORD))
applyBeatEffects(static_cast<Chord*>(cr), beatEffects);
// if we see that a tied note has been constructed do not create the tie
if (slides[track] == -2) {
slide = 0;
slides[track] = -1;
}
createSlur(hasSlur, staffIdx, cr);
if (cr && (cr->type() == Element::Type::CHORD) && slide > 0)
createSlide(convertGP4SlideNum(slide), cr, staffIdx);
restsForEmptyBeats(segment, measure, cr, l, track, tick);
createSlur(hasSlur, staffIdx, cr);
tick += cr->actualTicks();
measureLen += cr->actualFraction();
}
if (measureLen < measure->len()) {
score->setRest(tick, track, measure->len() - measureLen, false, nullptr, false);
}
}
if (bar == 1 && !mixChange)
setTempo(tempo, score->firstMeasure());
}
}
}
|