-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix cent offset for AEU accidentals #27450
base: master
Are you sure you want to change the base?
Conversation
Just curious: where did you get those values from? |
BTW, changing struct Acc {
AccidentalVal offset; // semitone offset
double centOffset;
SymId sym;
Acc(AccidentalVal o, double o2, SymId s)
: offset(o), centOffset(o2), sym(s) {}
}; to struct Acc {
double centOffset;
SymId sym;
AccidentalVal offset; // semitone offset
Acc(AccidentalVal o, double o2, SymId s)
: centOffset(o2), sym(s), offset(o) {}
}; would save 8 bytes per entry, due to better padding, at the current 147 entries this makes up for 1176 bytes... |
Backport of musescore#27450 plus, following a clazy warning, improving the struct's padding, saving 8 bytes per entry, 1176 bytes in total
Got them from here: MuseScore/src/importexport/musicxml/internal/musicxml/export/exportmusicxml.cpp Lines 2277 to 2285 in dd6be26
|
Ah, I see, thanks! Hmm, well... it was ypu adding them there ;-) |
Yes, this is only an approximation. To be precise you would take Holrian commas, but then you'd move away from the equally tempered (100 cent based) system. The Wikipedia entry is a good start to dive into. For a deeper dive you may go through: https://www.ozanyarman.com/files/WeighingAgainstHistograms_SEARCH_FOR_THE_OPTIMAL_TONE-SYSTEM.pdf Currently only four indiviual symbols from the Arel-Ezgi-Uzdilek range are supported by MuseScore, because the others look identical to those from other ranges. But actually they have a different meaning (i.e., different cent offsets) in this context. |
see https://musescore.org/en/node/358194