MuseScore/libmscore/mscore.cpp

357 lines
12 KiB
C++
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// 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
//=============================================================================
2012-07-16 15:49:24 +02:00
#include "config.h"
#include "musescoreCore.h"
2012-05-26 14:26:10 +02:00
#include "style.h"
#include "mscore.h"
#include "sequencer.h"
#include "element.h"
#include "dynamic.h"
#include "accidental.h"
2012-05-26 14:26:10 +02:00
#include "figuredbass.h"
#include "stafftype.h"
2012-08-04 15:46:43 +02:00
#include "note.h"
2012-09-12 11:16:36 +02:00
#include "spanner.h"
2012-09-17 15:37:31 +02:00
#include "volta.h"
2012-09-17 17:35:49 +02:00
#include "ottava.h"
2012-09-17 18:09:30 +02:00
#include "trill.h"
2013-02-25 14:56:34 +01:00
#include "repeat.h"
#include "jump.h"
#include "marker.h"
2013-10-05 23:13:33 +02:00
#include "layoutbreak.h"
#include "hairpin.h"
#include "glissando.h"
2014-03-18 15:53:52 +01:00
#include "page.h"
2014-04-25 18:43:25 +02:00
#include "slur.h"
#include "lyrics.h"
#include "accidental.h"
#include "notedot.h"
#include "tie.h"
#include "staff.h"
#include "beam.h"
2014-04-25 18:43:25 +02:00
#include "timesig.h"
#include "part.h"
#include "measure.h"
#include "score.h"
#include "keysig.h"
#include "harmony.h"
#include "cursor.h"
#include "stafftext.h"
#include "mscoreview.h"
2014-04-25 19:11:33 +02:00
#include "plugins.h"
#include "chord.h"
#include "hook.h"
#include "stem.h"
2015-03-19 10:28:01 +01:00
#include "stemslash.h"
2015-04-07 10:26:33 +02:00
#include "fraction.h"
2015-04-22 21:22:06 +02:00
#include "excerpt.h"
2012-05-26 14:26:10 +02:00
2013-05-13 18:49:17 +02:00
namespace Ms {
qreal MScore::PDPI;
qreal MScore::DPI;
2012-05-26 14:26:10 +02:00
qreal MScore::DPMM;
bool MScore::debugMode;
bool MScore::testMode = false;
bool MScore::saveTemplateMode = false;
2014-02-28 11:14:43 +01:00
bool MScore::noGui = false;
2012-05-26 14:26:10 +02:00
MStyle* MScore::_defaultStyle;
2014-01-30 13:10:45 +01:00
MStyle* MScore::_defaultStyleForParts;
2012-05-26 14:26:10 +02:00
MStyle* MScore::_baseStyle;
QString MScore::_globalShare;
int MScore::_vRaster;
int MScore::_hRaster;
QColor MScore::selectColor[VOICES];
QColor MScore::defaultColor;
QColor MScore::layoutBreakColor;
2013-07-04 21:07:38 +02:00
QColor MScore::frameMarginColor;
2012-05-26 14:26:10 +02:00
QColor MScore::bgColor;
QColor MScore::dropColor;
bool MScore::warnPitchRange;
bool MScore::playRepeats;
bool MScore::panPlayback;
qreal MScore::nudgeStep;
qreal MScore::nudgeStep10;
qreal MScore::nudgeStep50;
2012-05-26 14:26:10 +02:00
int MScore::defaultPlayDuration;
2014-01-30 13:10:45 +01:00
// QString MScore::partStyle;
2012-05-26 14:26:10 +02:00
QString MScore::lastError;
bool MScore::layoutDebug = false;
int MScore::division = 480; // 3840; // pulses per quarter note (PPQ) // ticks per beat
2012-05-26 14:26:10 +02:00
int MScore::sampleRate = 44100;
int MScore::mtcType;
bool MScore::noExcerpts = false;
bool MScore::noImages = false;
2014-04-25 18:43:25 +02:00
#ifdef SCRIPT_INTERFACE
QQmlEngine* MScore::_qml = 0;
#endif
2012-05-26 14:26:10 +02:00
Sequencer* MScore::seq = 0;
MuseScoreCore* MuseScoreCore::mscoreCore;
2012-05-26 14:26:10 +02:00
extern void initDrumset();
2013-11-11 16:53:03 +01:00
extern void initScoreFonts();
2014-04-25 19:11:33 +02:00
extern QString mscoreGlobalShare;
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// init
//---------------------------------------------------------
void MScore::init()
{
2012-07-13 16:11:39 +02:00
#ifdef SCRIPT_INTERFACE
qRegisterMetaType<Element::Type>("ElementType");
qRegisterMetaType<Note::ValueType>("ValueType");
qRegisterMetaType<MScore::Direction>("Direction");
qRegisterMetaType<MScore::DirectionH>("DirectionH");
qRegisterMetaType<Element::Placement>("Placement");
2015-04-03 18:23:51 +02:00
// qRegisterMetaType<AccidentalRole>("AccidentalRole");
// qRegisterMetaType<AccidentalType>("AccidentalType");
2012-09-12 11:16:36 +02:00
qRegisterMetaType<Spanner::Anchor>("Anchor");
qRegisterMetaType<NoteHead::Group>("NoteHeadGroup");
qRegisterMetaType<NoteHead::Type>("NoteHeadType");
qRegisterMetaType<Segment::Type>("SegmentType");
2012-08-11 01:15:22 +02:00
qRegisterMetaType<FiguredBassItem::Modifier>("Modifier");
qRegisterMetaType<FiguredBassItem::Parenthesis>("Parenthesis");
qRegisterMetaType<FiguredBassItem::ContLine>("ContLine");
qRegisterMetaType<Volta::Type>("VoltaType");
qRegisterMetaType<Ottava::Type>("OttavaType");
2014-06-25 14:07:43 +02:00
qRegisterMetaType<Trill::Type>("TrillType");
qRegisterMetaType<Dynamic::Range>("DynamicRange");
qRegisterMetaType<Jump::Type>("JumpType");
qRegisterMetaType<Marker::Type>("MarkerType");
qRegisterMetaType<Beam::Mode>("BeamMode");
qRegisterMetaType<Hairpin::Type>("HairpinType");
qRegisterMetaType<Lyrics::Syllabic>("Syllabic");
qRegisterMetaType<LayoutBreak::Type>("LayoutBreakType");
qRegisterMetaType<Glissando::Type>("GlissandoType");
2012-07-13 16:11:39 +02:00
#endif
2012-05-26 14:26:10 +02:00
DPMM = DPI / INCH; // dots/mm
#ifdef Q_OS_WIN
2012-05-26 14:26:10 +02:00
QDir dir(QCoreApplication::applicationDirPath() + QString("/../" INSTALL_NAME));
_globalShare = dir.absolutePath() + "/";
#elif defined(Q_OS_IOS)
2012-05-26 14:26:10 +02:00
{
extern QString resourcePath();
_globalShare = resourcePath();
}
2013-11-06 15:58:05 +01:00
#elif defined(Q_OS_MAC)
2012-05-26 14:26:10 +02:00
QDir dir(QCoreApplication::applicationDirPath() + QString("/../Resources"));
_globalShare = dir.absolutePath() + "/";
#else
_globalShare = QString( INSTPREFIX "/share/" INSTALL_NAME);
#endif
2012-11-20 23:07:37 +01:00
2014-09-09 00:33:51 +02:00
selectColor[0].setNamedColor("#1259d0"); //blue
selectColor[1].setNamedColor("#009234"); //green
selectColor[2].setNamedColor("#c04400"); //orange
selectColor[3].setNamedColor("#70167a"); //purple
2012-05-26 14:26:10 +02:00
defaultColor = Qt::black;
2014-09-09 00:33:51 +02:00
dropColor = QColor("#1778db");
2012-05-26 14:26:10 +02:00
defaultPlayDuration = 300; // ms
warnPitchRange = true;
2012-07-31 16:54:00 +02:00
playRepeats = true;
panPlayback = true;
2012-07-31 16:54:00 +02:00
lastError = "";
2014-08-31 19:22:21 +02:00
layoutBreakColor = QColor("#5999db");
frameMarginColor = QColor("#5999db");
bgColor.setNamedColor("#dddddd");
2012-05-26 14:26:10 +02:00
_defaultStyle = new MStyle();
2013-05-13 18:49:17 +02:00
Ms::initStyle(_defaultStyle);
_defaultStyleForParts = 0;
2012-05-26 14:26:10 +02:00
_baseStyle = new MStyle(*_defaultStyle);
//
// load internal fonts
//
//
// do not load application specific fonts
// for MAC, they are in Resources/fonts
//
#if !defined(Q_OS_MAC) && !defined(Q_OS_IOS)
2012-05-26 14:26:10 +02:00
static const char* fonts[] = {
2014-01-16 12:33:23 +01:00
":/fonts/MuseJazz.ttf",
":/fonts/FreeSans.ttf",
":/fonts/FreeSerif.ttf",
2014-01-16 12:33:23 +01:00
":/fonts/FreeSerifBold.ttf",
":/fonts/FreeSerifItalic.ttf",
":/fonts/FreeSerifBoldItalic.ttf",
2014-01-16 12:33:23 +01:00
":/fonts/mscoreTab.ttf",
":/fonts/mscore-BC.ttf",
2014-07-23 12:35:56 +02:00
":/fonts/bravura/BravuraText.otf",
":/fonts/gootville/GootvilleText.otf",
2014-07-23 17:08:48 +02:00
":/fonts/mscore/MScoreText.ttf",
2012-05-26 14:26:10 +02:00
};
for (unsigned i = 0; i < sizeof(fonts)/sizeof(*fonts); ++i) {
2014-01-16 12:33:23 +01:00
QString s(fonts[i]);
2012-05-26 14:26:10 +02:00
if (-1 == QFontDatabase::addApplicationFont(s)) {
2014-07-17 11:15:59 +02:00
if (!MScore::testMode)
qDebug("Mscore: fatal error: cannot load internal font <%s>", qPrintable(s));
if (!MScore::debugMode && !MScore::testMode)
2012-05-26 14:26:10 +02:00
exit(-1);
}
}
#endif
2013-11-06 15:58:05 +01:00
initScoreFonts();
2014-04-30 10:08:38 +02:00
StaffType::initStaffTypes();
2012-05-26 14:26:10 +02:00
initDrumset();
FiguredBass::readConfigFile(0);
}
//---------------------------------------------------------
// defaultStyle
//---------------------------------------------------------
MStyle* MScore::defaultStyle()
{
return _defaultStyle;
}
2014-01-30 13:10:45 +01:00
//---------------------------------------------------------
// defaultStyleForParts
//---------------------------------------------------------
MStyle* MScore::defaultStyleForParts()
{
if (!_defaultStyleForParts) {
QSettings s;
QString partStyle = s.value("partStyle").toString();
if (!partStyle.isEmpty()) {
QFile f(partStyle);
if (f.open(QIODevice::ReadOnly)) {
MStyle* s = new MStyle(*defaultStyle());
if (s->load(&f))
_defaultStyleForParts = s;
else
delete s;
}
}
}
return _defaultStyleForParts;
}
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// baseStyle
//---------------------------------------------------------
MStyle* MScore::baseStyle()
{
return _baseStyle;
}
//---------------------------------------------------------
// setDefaultStyle
//---------------------------------------------------------
void MScore::setDefaultStyle(MStyle* s)
{
delete _defaultStyle;
_defaultStyle = s;
}
2014-01-30 13:10:45 +01:00
//---------------------------------------------------------
// defaultStyleForPartsHasChanged
//---------------------------------------------------------
void MScore::defaultStyleForPartsHasChanged()
{
delete _defaultStyleForParts;
_defaultStyleForParts = 0;
}
#ifdef SCRIPT_INTERFACE
2014-04-25 18:43:25 +02:00
//---------------------------------------------------------
// qml
//---------------------------------------------------------
QQmlEngine* MScore::qml()
{
if (_qml == 0) {
//-----------some qt bindings
_qml = new QQmlEngine;
#ifdef Q_OS_WIN
QStringList importPaths;
QDir dir(QCoreApplication::applicationDirPath() + QString("/../qml"));
importPaths.append(dir.absolutePath());
_qml->setImportPathList(importPaths);
#endif
#ifdef Q_OS_MAC
QStringList importPaths;
QDir dir(mscoreGlobalShare + QString("/qml"));
importPaths.append(dir.absolutePath());
_qml->setImportPathList(importPaths);
#endif
2014-04-25 19:11:33 +02:00
qmlRegisterType<MsProcess> ("MuseScore", 1, 0, "QProcess");
qmlRegisterType<FileIO, 1> ("FileIO", 1, 0, "FileIO");
2014-04-25 18:43:25 +02:00
//-----------mscore bindings
qmlRegisterType<MScore> ("MuseScore", 1, 0, "MScore");
2014-04-25 19:11:33 +02:00
qmlRegisterType<MsScoreView>("MuseScore", 1, 0, "ScoreView");
// qmlRegisterType<QmlPlugin> ("MuseScore", 1, 0, "MuseScore");
2014-04-25 18:43:25 +02:00
qmlRegisterType<Score> ("MuseScore", 1, 0, "Score");
qmlRegisterType<Segment> ("MuseScore", 1, 0, "Segment");
qmlRegisterType<Chord> ("MuseScore", 1, 0, "Chord");
qmlRegisterType<Note> ("MuseScore", 1, 0, "Note");
qmlRegisterType<NoteHead> ("MuseScore", 1, 0, "NoteHead");
2014-04-25 18:43:25 +02:00
qmlRegisterType<Accidental> ("MuseScore", 1, 0, "Accidental");
qmlRegisterType<Rest> ("MuseScore", 1, 0, "Rest");
qmlRegisterType<Measure> ("MuseScore", 1, 0, "Measure");
qmlRegisterType<Cursor> ("MuseScore", 1, 0, "Cursor");
qmlRegisterType<StaffText> ("MuseScore", 1, 0, "StaffText");
qmlRegisterType<Part> ("MuseScore", 1, 0, "Part");
qmlRegisterType<Staff> ("MuseScore", 1, 0, "Staff");
qmlRegisterType<Harmony> ("MuseScore", 1, 0, "Harmony");
qmlRegisterType<PageFormat> ("MuseScore", 1, 0, "PageFormat");
qmlRegisterType<TimeSig> ("MuseScore", 1, 0, "TimeSig");
qmlRegisterType<KeySig> ("MuseScore", 1, 0, "KeySig");
qmlRegisterType<Slur> ("MuseScore", 1, 0, "Slur");
qmlRegisterType<Tie> ("MuseScore", 1, 0, "Tie");
qmlRegisterType<NoteDot> ("MuseScore", 1, 0, "NoteDot");
qmlRegisterType<FiguredBass>("MuseScore", 1, 0, "FiguredBass");
qmlRegisterType<Text> ("MuseScore", 1, 0, "MText");
qmlRegisterType<Lyrics> ("MuseScore", 1, 0, "Lyrics");
qmlRegisterType<FiguredBassItem>("MuseScore", 1, 0, "FiguredBassItem");
qmlRegisterType<LayoutBreak>("MuseScore", 1, 0, "LayoutBreak");
qmlRegisterType<Hook> ("MuseScore", 1, 0, "Hook");
qmlRegisterType<Stem> ("MuseScore", 1, 0, "Stem");
2015-03-19 10:28:01 +01:00
qmlRegisterType<StemSlash> ("MuseScore", 1, 0, "StemSlash");
qmlRegisterType<Beam> ("MuseScore", 1, 0, "Beam");
2015-04-22 21:22:06 +02:00
qmlRegisterType<Excerpt> ("MuseScore", 1, 0, "Excerpt");
2015-04-07 10:26:33 +02:00
qmlRegisterType<FractionWrapper> ("MuseScore", 1, 1, "Fraction");
qRegisterMetaType<FractionWrapper*>("FractionWrapper*");
2014-04-25 18:43:25 +02:00
qmlRegisterUncreatableType<Element>("MuseScore", 1, 0,
"Element", tr("you cannot create an element"));
//-----------virtual classes
qmlRegisterType<ChordRest>();
qmlRegisterType<SlurTie>();
qmlRegisterType<Spanner>();
}
return _qml;
}
#endif
2013-05-13 18:49:17 +02:00
}