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
|
//=============================================================================
// MuseScore
// Linux Music Score Editor
// $Id: capella.h 3833 2011-01-04 13:55:40Z wschweer $
//
// Copyright (C) 2009-2013 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#ifndef __CAPELLA_H__
#define __CAPELLA_H__
#include "globals.h"
#include "libmscore/xml.h"
namespace Ms {
enum class TIMESTEP : char { D1, D2, D4, D8, D16, D32, D64, D128, D256, D_BREVE };
#if 0
static const char* timeNames[] = { "1/1", "1/2", "1/4", "1/8", "1/16", "1/32", "1/64",
"1/128", "1/256", "breve" };
#endif
class Capella;
enum class ClefType : signed char;
enum class CapellaNoteObjectType : char {
REST, CHORD, CLEF, KEY, METER, EXPL_BARLINE, IMPL_BARLINE,
PAGE_BKGR
};
enum class BeamMode : unsigned char { AUTO, FORCE, SPLIT };
//---------------------------------------------------------
// CapellaObj
//---------------------------------------------------------
class CapellaObj {
protected:
Capella* cap;
public:
CapellaObj(Capella* c) { cap = c; }
};
//---------------------------------------------------------
// NoteObj
//---------------------------------------------------------
class NoteObj {
CapellaNoteObjectType _type;
public:
NoteObj(CapellaNoteObjectType t) { _type = t; }
CapellaNoteObjectType type() const { return _type; }
};
enum class Form : char {
G, C, F, PERCUSSION,
FORM_NULL, CLEF_UNCHANGED
};
enum class ClefLine : char {
L5, L4, L3, L2, L1
};
enum class Oct : char {
OCT_ALTA, OCT_NULL, OCT_BASSA
};
//---------------------------------------------------------
// CapClef
//---------------------------------------------------------
class CapClef : public NoteObj, public CapellaObj {
Form form;
public:
CapClef(Capella* c) : NoteObj(CapellaNoteObjectType::CLEF), CapellaObj(c) {}
void read();
void readCapx(XmlReader& e);
const char* name() {
static const char* formName[] = { "G", "C", "F", "=", " ", "*" };
return formName[int(form)];
}
ClefType clef() const;
ClefLine line;
Oct oct;
static ClefType clefType(Form, ClefLine, Oct);
};
//---------------------------------------------------------
// CapKey
//---------------------------------------------------------
class CapKey : public NoteObj, public CapellaObj {
public:
CapKey(Capella* c) : NoteObj(CapellaNoteObjectType::KEY), CapellaObj(c) {}
void read();
void readCapx(XmlReader& e);
int signature; // -7 - +7
};
//---------------------------------------------------------
// CapMeter
//---------------------------------------------------------
class CapMeter : public NoteObj, public CapellaObj {
public:
unsigned char numerator;
int log2Denom;
bool allaBreve;
CapMeter(Capella* c) : NoteObj(CapellaNoteObjectType::METER), CapellaObj(c) {}
void read();
void readCapx(XmlReader& e);
};
//---------------------------------------------------------
// CapExplicitBarline
//---------------------------------------------------------
class CapExplicitBarline : public NoteObj, public CapellaObj {
BarLineType _type;
int _barMode; // 0 = auto, 1 = nur Zeilen, 2 = durchgezogen
public:
CapExplicitBarline(Capella* c) : NoteObj(CapellaNoteObjectType::EXPL_BARLINE), CapellaObj(c) {}
void read();
void readCapx(XmlReader& e);
BarLineType type() const { return _type; }
int barMode() const { return _barMode; }
};
//---------------------------------------------------------
// CapVoice
//---------------------------------------------------------
struct CapVoice {
uchar y0Lyrics;
uchar dyLyrics;
QFont lyricsFont;
unsigned char stemDir;
QList<NoteObj*> objects;
int voiceNo;
};
//---------------------------------------------------------
// CapStaff
//---------------------------------------------------------
struct CapStaff {
uchar numerator; // default time signature
int log2Denom;
bool allaBreve;
uchar iLayout;
int topDistX;
int btmDistX;
QColor color;
QList<CapVoice*> voices;
};
//---------------------------------------------------------
// struct CapStaffLayout
//---------------------------------------------------------
struct CapStaffLayout {
uchar barlineMode;
uchar noteLines;
bool bSmall;
int topDist;
int btmDist;
int groupDist;
uchar barlineFrom;
uchar barlineTo;
Form form;
ClefLine line;
Oct oct; // clef
// Schlagzeuginformation
bool bPercussion; // use drum channel
bool bSoundMapIn;
bool bSoundMapOut;
char soundMapIn[128]; // Tabelle für MIDI-Töne iMin...iMin+n-1
char soundMapOut[128]; // Tabelle für MIDI-Töne iMin...iMin+n-1
int sound, volume, transp;
QString descr;
QString name;
QString abbrev;
QString intermediateName;
QString intermediateAbbrev;
};
//---------------------------------------------------------
// CapSystem
//---------------------------------------------------------
struct CapSystem {
int nAddBarCount;
bool bBarCountReset;
unsigned char explLeftIndent; // < 0 --> Einrückung gemäß Stimmenbezeichnungen
// >= --> explizite Einrückung
BeamMode beamMode;
unsigned tempo;
QColor color; // fuer Systemklammern
bool bJustified; // Randausgleich (Blocksatz)
bool bPageBreak; // nach dem System neue Seite anfangen
int instrNotation; // 0 = keine Instrumentenbezeichnung
// 1 = abgekürzt, 2 = vollständig
QList<CapStaff*> staves;
};
//---------------------------------------------------------
// BasicDrawObj
//---------------------------------------------------------
enum class CapellaType : unsigned char { GROUP, TRANSPOSABLE, METAFILE, SIMPLE_TEXT, TEXT, RECT_ELLIPSE,
LINE, POLYGON, WAVY_LINE, SLUR, NOTE_LINES, WEDGE, VOLTA,
BRACKET, GUITAR, TRILL
};
class BasicDrawObj : public CapellaObj {
public:
unsigned char modeX, modeY, distY, flags;
int nRefNote;
int nNotes;
bool background;
int pageRange;
CapellaType type;
BasicDrawObj(CapellaType t, Capella* c)
: CapellaObj(c), modeX(0), modeY(0), distY(0), flags(0),
nRefNote(0), nNotes(0), background(0), pageRange(0), type(t) {}
void read();
void readCapx(XmlReader& e);
};
//---------------------------------------------------------
// BasicRectObj
//---------------------------------------------------------
class BasicRectObj : public BasicDrawObj {
public:
BasicRectObj(CapellaType t, Capella* c) : BasicDrawObj(t, c) {}
void read();
QPointF relPos;
int width;
int yxRatio;
int height;
};
//---------------------------------------------------------
// GroupObj
//---------------------------------------------------------
class GroupObj : public BasicDrawObj {
public:
GroupObj(Capella* c) : BasicDrawObj(CapellaType::GROUP, c) {}
void read();
QPointF relPos;
QList<BasicDrawObj*> objects;
};
//---------------------------------------------------------
// TransposableObj
//---------------------------------------------------------
class TransposableObj : public BasicDrawObj {
public:
TransposableObj(Capella* c) : BasicDrawObj(CapellaType::TRANSPOSABLE, c) {}
void read();
QPointF relPos;
char b;
QList<BasicDrawObj*> variants;
};
//---------------------------------------------------------
// MetafileObj
//---------------------------------------------------------
class MetafileObj : public BasicRectObj {
public:
MetafileObj(Capella* c) : BasicRectObj(CapellaType::METAFILE, c) {}
void read();
};
//---------------------------------------------------------
// LineObj
//---------------------------------------------------------
class LineObj : public BasicDrawObj {
public:
LineObj(Capella* c) : BasicDrawObj(CapellaType::LINE, c) {}
LineObj(CapellaType t, Capella* c) : BasicDrawObj(t, c) {}
void read();
QPointF pt1, pt2;
QColor color;
char lineWidth;
};
//---------------------------------------------------------
// RectEllipseObj
//---------------------------------------------------------
class RectEllipseObj : public LineObj { // special
public:
RectEllipseObj(Capella* c) : LineObj(CapellaType::RECT_ELLIPSE, c) {}
void read();
int radius;
bool bFilled;
QColor clrFill;
};
//---------------------------------------------------------
// PolygonObj
//---------------------------------------------------------
class PolygonObj : public BasicDrawObj {
public:
PolygonObj(Capella* c) : BasicDrawObj(CapellaType::POLYGON, c) {}
void read();
bool bFilled;
unsigned lineWidth;
QColor clrFill;
QColor clrLine;
};
//---------------------------------------------------------
// WavyLineObj
//---------------------------------------------------------
class WavyLineObj : public LineObj {
public:
WavyLineObj(Capella* c) : LineObj(CapellaType::WAVY_LINE, c) {}
void read();
unsigned waveLen;
bool adapt;
};
//---------------------------------------------------------
// NotelinesObj
//---------------------------------------------------------
class NotelinesObj : public BasicDrawObj {
public:
NotelinesObj(Capella* c) : BasicDrawObj(CapellaType::NOTE_LINES, c) {}
void read();
int x0, x1, y;
QColor color;
};
//---------------------------------------------------------
// VoltaObj
//---------------------------------------------------------
class VoltaObj : public BasicDrawObj {
public:
VoltaObj(Capella* c)
: BasicDrawObj(CapellaType::VOLTA, c), x0(0), x1(0), y(0),
bLeft(false), bRight(false), bDotted(false),
allNumbers(false), from(0), to(0) {}
void read();
void readCapx(XmlReader& e);
int x0, x1, y;
QColor color;
bool bLeft;
bool bRight;
bool bDotted;
bool allNumbers;
int from, to;
};
//---------------------------------------------------------
// GuitarObj
//---------------------------------------------------------
class GuitarObj : public BasicDrawObj {
public:
GuitarObj(Capella* c) : BasicDrawObj(CapellaType::GUITAR, c) {}
void read();
QPointF relPos;
QColor color;
short flags;
int strings; // 8 Saiten in 8 Halbbytes
};
//---------------------------------------------------------
// TrillObj
//---------------------------------------------------------
class TrillObj : public BasicDrawObj {
public:
TrillObj(Capella* c) : BasicDrawObj(CapellaType::TRILL, c), x0(0),
x1(0), y(0), trillSign(true) {}
void read();
void readCapx(XmlReader& e);
int x0, x1, y;
QColor color;
bool trillSign;
};
//---------------------------------------------------------
// SlurObj
//---------------------------------------------------------
class SlurObj : public BasicDrawObj {
QPointF bezierPoint[4]; // note default constructor inits to (0, 0)
QColor color; // note default constructor inits to invalid
public:
SlurObj(Capella* c)
: BasicDrawObj(CapellaType::SLUR, c), color(Qt::black), nEnd(0), nMid(0), nDotDist(0), nDotWidth(0) {}
void read();
void readCapx(XmlReader& e);
unsigned char nEnd, nMid, nDotDist, nDotWidth;
};
//---------------------------------------------------------
// TextObj
//---------------------------------------------------------
class TextObj : public BasicRectObj {
public:
TextObj(Capella* c) : BasicRectObj(CapellaType::TEXT, c) {}
~TextObj() {}
void read();
QString text;
};
//---------------------------------------------------------
// SimpleTextObj
//---------------------------------------------------------
class SimpleTextObj : public BasicDrawObj {
QString _text;
QPointF relPos;
unsigned char align;
QFont _font;
public:
SimpleTextObj(Capella* c)
: BasicDrawObj(CapellaType::SIMPLE_TEXT, c), relPos(0, 0), align(0) {}
void read();
void readCapx(XmlReader& e);
QString text() const { return _text; }
QFont font() const { return _font; }
QPointF pos() const { return relPos; }
unsigned char textalign() const { return align; }
};
//---------------------------------------------------------
// BracketObj
//---------------------------------------------------------
class BracketObj : public LineObj {
public:
BracketObj(Capella* c) : LineObj(CapellaType::BRACKET, c) {}
void read();
char orientation, number;
};
//---------------------------------------------------------
// WedgeObj
//---------------------------------------------------------
class WedgeObj : public LineObj {
public:
WedgeObj(Capella* c) : LineObj(CapellaType::WEDGE, c), height(32),
decresc(false) {}
void read();
void readCapx(XmlReader& e);
int height;
bool decresc;
};
//---------------------------------------------------------
// BasicDurationalObj
//---------------------------------------------------------
class BasicDurationalObj : public CapellaObj {
public:
int nDots;
bool noDuration;
bool postGrace;
bool bSmall;
bool notBlack;
QColor color;
TIMESTEP t;
int horizontalShift;
int count; // tuplet
bool tripartite;
bool isProlonging;
public:
BasicDurationalObj(Capella* c) : CapellaObj(c) {}
void read();
void readCapx(XmlReader& e, unsigned int& fullm);
void readCapxDisplay(XmlReader& e);
void readCapxObjectArray(XmlReader& e);
int ticks() const;
bool invisible;
QList<BasicDrawObj*> objects;
};
//---------------------------------------------------------
// Verse
//---------------------------------------------------------
struct Verse {
bool leftAlign;
bool extender;
bool hyphen;
int num;
QString verseNumber;
QString text;
};
struct CNote {
signed char pitch;
int explAlteration; // 1 force, 2 suppress
int headType;
int alteration;
int silent;
};
//---------------------------------------------------------
// ChordObj
//---------------------------------------------------------
class ChordObj : public BasicDurationalObj, public NoteObj {
public:
enum class StemDir : signed char { DOWN = -1, AUTO = 0, UP = 1, NONE = 3 };
BeamMode beamMode;
signed char notationStave;
char dStemLength;
unsigned char nTremoloBars;
unsigned articulation;
bool leftTie;
bool rightTie;
char beamShift;
char beamSlope;
public:
ChordObj(Capella*);
void read();
void readCapx(XmlReader& e);
void readCapxLyrics(XmlReader& e);
void readCapxNotes(XmlReader& e);
void readCapxStem(XmlReader& e);
void readCapxArticulation(XmlReader& e);
QList<Verse> verse;
QList<CNote> notes;
StemDir stemDir;
};
//---------------------------------------------------------
// RestObj
//---------------------------------------------------------
class RestObj : public BasicDurationalObj, public NoteObj {
bool bVerticalCentered;
int vertShift;
public:
RestObj(Capella*);
void read();
void readCapx(XmlReader& e);
unsigned fullMeasures; // >0, multi measure rest (counting measures)
};
//---------------------------------------------------------
// CapFont
//---------------------------------------------------------
struct CapFont {
QString face;
};
//---------------------------------------------------------
// CapBracket
//---------------------------------------------------------
struct CapBracket {
int from, to;
bool curly;
};
//---------------------------------------------------------
// Capella
//---------------------------------------------------------
class Capella {
static const char* errmsg[];
int curPos;
QFile* f;
char* author;
char* keywords;
char* comment;
unsigned char beamRelMin0;
unsigned char beamRelMin1;
unsigned char beamRelMax0;
unsigned char beamRelMax1;
unsigned nRel; // presentation parameter
unsigned nAbs;
bool bUseRealSize;
bool bAllowCompression;
bool bPrintLandscape;
bool bShowBarCount; // Taktnumerierung zeigen
unsigned char barNumberFrame; // 0=kein, 1=Rechteck, 2=Ellipse
unsigned char nBarDistX;
unsigned char nBarDistY;
// LogFont barNumFont;
unsigned nFirstPage; // Versatz fuer Seitenzaehlung
unsigned leftPageMargins; // Seitenraender
unsigned topPageMargins;
unsigned rightPageMargins;
unsigned btmPageMargins;
QList<QFont> fonts;
QList<CapStaffLayout*> _staffLayouts; // staff layout
int interDist;
unsigned char txtAlign; // Stimmenbezeichnungen 0=links, 1=zentriert, 2=rechts
unsigned char adjustVert; // 0=nein, 1=außer letzte Seite, 3=alle Seiten
bool redundantKeys;
bool modernDoubleNote;
bool bSystemSeparators;
int nUnnamed;
QFont namesFont;
void readVoice(CapStaff*, int);
void readStaff(CapSystem*);
void readSystem();
protected:
void readStaveLayout(CapStaffLayout*, int);
void readLayout();
public:
enum class Error : char { CAP_NO_ERROR, BAD_SIG, CAP_EOF, BAD_VOICE_SIG,
BAD_STAFF_SIG, BAD_SYSTEM_SIG
};
Capella();
~Capella();
void read(QFile*);
QString error(Error n) const { return QString(errmsg[int(n)]); }
unsigned char readByte();
char readChar();
QColor readColor();
int readInt();
int readLong();
short readWord();
int readDWord();
unsigned readUnsigned();
char* readString();
QString readQString();
void readExtra();
QList<BasicDrawObj*> readDrawObjectArray();
bool read(void* p, qint64 len);
QFont readFont();
QPointF readPoint();
QList<CapSystem*> systems;
QList<CapBracket> brackets;
ChordObj* backgroundChord;
CapStaffLayout* staffLayout(int idx) { return _staffLayouts[idx]; }
const QList<CapStaffLayout*>& staffLayouts() const { return _staffLayouts; }
double smallLineDist; // spatium unit in metric mm
double normalLineDist;
int topDist;
// capx support
private:
void readCapxVoice(XmlReader& e, CapStaff*, int);
void readCapxStaff(XmlReader& e, CapSystem*, int);
void readCapxSystem(XmlReader& e);
void capxSystems(XmlReader& e);
void readCapxStaveLayout(XmlReader& e, CapStaffLayout*, int);
void capxLayoutStaves(XmlReader& e);
void capxLayout(XmlReader& e);
void initCapxLayout();
public:
void readCapx(XmlReader& e);
QList<BasicDrawObj*> readCapxDrawObjectArray(XmlReader& e);
};
} // namespace Ms
#endif
|