Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

rettinghaus
Copy link
Contributor

@rettinghaus rettinghaus commented Mar 30, 2025

@Jojo-Schmitz
Copy link
Contributor

Just curious: where did you get those values from?

@Jojo-Schmitz
Copy link
Contributor

Jojo-Schmitz commented Mar 30, 2025

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...

Jojo-Schmitz pushed a commit to Jojo-Schmitz/MuseScore that referenced this pull request Mar 30, 2025
Backport of musescore#27450 plus, following a clazy warning, improving the struct's padding, saving 8 bytes per entry, 1176 bytes in total
@rettinghaus
Copy link
Contributor Author

Got them from here:

// Arel-Ezgi-Uzdilek (AEU)
case SymId::accidentalBuyukMucennebFlat: res = -0.89;
break;
case SymId::accidentalBakiyeFlat: res = -0.44;
break;
case SymId::accidentalKucukMucennebSharp: res = 0.56;
break;
case SymId::accidentalBuyukMucennebSharp: res = 0.89;
break;

@Jojo-Schmitz
Copy link
Contributor

Jojo-Schmitz commented Mar 30, 2025

Ah, I see, thanks!

Hmm, well... it was ypu adding them there ;-)

@rettinghaus
Copy link
Contributor Author

rettinghaus commented Mar 30, 2025

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants