Created
February 1, 2026 14:35
-
-
Save mfmfuyu/b5e46ecba4b676831324bfcf18f51102 to your computer and use it in GitHub Desktop.
MuseScore 4 Note Names Plugin Custom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //============================================================================= | |
| // MuseScore | |
| // Music Composition & Notation | |
| // | |
| // Note Names Plugin | |
| // | |
| // Copyright (C) 2012 Werner Schweer | |
| // Copyright (C) 2013 - 2021 Joachim Schmitz | |
| // Copyright (C) 2014 Jörn Eichler | |
| // Copyright (C) 2020 Johan Temmerman | |
| // | |
| // 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 | |
| //============================================================================= | |
| import QtQuick 2.2 | |
| import MuseScore 3.0 | |
| MuseScore { | |
| version: "4.0" | |
| description: "This plugin names notes as per your language setting" | |
| title: "Note Names 3" | |
| categoryCode: "composing-arranging-tools" | |
| thumbnailName: "note_names.png" | |
| // Small note name size is fraction of the full font size. | |
| property real fontSizeMini: 0.35; | |
| function nameChord (notes, text, small) { | |
| var sep = "\n"; // change to "," if you want them horizontally (anybody?) | |
| var oct = ""; | |
| var name; | |
| for (var i = 0; i < notes.length; i++) { | |
| if (!notes[i].visible) | |
| continue // skip invisible notes | |
| if (text.text) // only if text isn't empty | |
| text.text = sep + text.text; | |
| if (small) | |
| text.fontSize *= fontSizeMini | |
| if (typeof notes[i].tpc === "undefined") // like for grace notes ?!? | |
| return | |
| switch (notes[i].tpc) { | |
| case -1: name = qsTranslate("global", "ファ♭♭"); break; | |
| case 0: name = qsTranslate("global", "ド♭♭"); break; | |
| case 1: name = qsTranslate("global", "ソ♭♭"); break; | |
| case 2: name = qsTranslate("global", "レ♭♭"); break; | |
| case 3: name = qsTranslate("global", "ラ♭♭"); break; | |
| case 4: name = qsTranslate("global", "ミ♭♭"); break; | |
| case 5: name = qsTranslate("global", "シ♭♭"); break; | |
| case 6: name = qsTranslate("global", "ファ♭"); break; | |
| case 7: name = qsTranslate("global", "ド♭"); break; | |
| case 8: name = qsTranslate("global", "ソ♭"); break; | |
| case 9: name = qsTranslate("global", "レ♭"); break; | |
| case 10: name = qsTranslate("global", "ラ♭"); break; | |
| case 11: name = qsTranslate("global", "ミ♭"); break; | |
| case 12: name = qsTranslate("global", "シ♭"); break; | |
| case 13: name = qsTranslate("global", "ファ"); break; | |
| case 14: name = qsTranslate("global", "ド"); break; | |
| case 15: name = qsTranslate("global", "ソ"); break; | |
| case 16: name = qsTranslate("global", "レ"); break; | |
| case 17: name = qsTranslate("global", "ラ"); break; | |
| case 18: name = qsTranslate("global", "ミ"); break; | |
| case 19: name = qsTranslate("global", "シ"); break; | |
| case 20: name = qsTranslate("global", "ファ♯"); break; | |
| case 21: name = qsTranslate("global", "ド♯"); break; | |
| case 22: name = qsTranslate("global", "ソ♯"); break; | |
| case 23: name = qsTranslate("global", "レ♯"); break; | |
| case 24: name = qsTranslate("global", "ラ♯"); break; | |
| case 25: name = qsTranslate("global", "ミ♯"); break; | |
| case 26: name = qsTranslate("global", "シ♯"); break; | |
| case 27: name = qsTranslate("global", "ファ♯♯"); break; | |
| case 28: name = qsTranslate("global", "ド♯♯"); break; | |
| case 29: name = qsTranslate("global", "ソ♯♯"); break; | |
| case 30: name = qsTranslate("global", "レ♯♯"); break; | |
| case 31: name = qsTranslate("global", "ラ♯♯"); break; | |
| case 32: name = qsTranslate("global", "ミ♯♯"); break; | |
| case 33: name = qsTranslate("global", "シ♯♯"); break; | |
| default: name = qsTr("?") + text.text; break; | |
| } // end switch tpc | |
| // octave, middle C being C4 | |
| //oct = (Math.floor(notes[i].pitch / 12) - 1) | |
| // or | |
| //oct = (Math.floor(notes[i].ppitch / 12) - 1) | |
| // or even this, similar to the Helmholtz system but one octave up | |
| //var octaveTextPostfix = [",,,,,", ",,,,", ",,,", ",,", ",", "", "'", "''", "'''", "''''", "'''''"]; | |
| //oct = octaveTextPostfix[Math.floor(notes[i].pitch / 12)]; | |
| text.text = name + oct + text.text | |
| } // end for note | |
| } | |
| function renderGraceNoteNames (cursor, list, text, small) { | |
| if (list.length > 0) { // Check for existence. | |
| // Now render grace note's names... | |
| for (var chordNum = 0; chordNum < list.length; chordNum++) { | |
| // iterate through all grace chords | |
| var chord = list[chordNum]; | |
| // Set note text, grace notes are shown a bit smaller | |
| nameChord(chord.notes, text, small) | |
| if (text.text) | |
| cursor.add(text) | |
| // X position the note name over the grace chord | |
| text.offsetX = chord.posX | |
| // MEMO: voice -> staffIdx | |
| switch (cursor.staffIdx) { | |
| case 1: case 3: text.placement = Placement.BELOW; break; | |
| } | |
| // If we consume a STAFF_TEXT we must manufacture a new one. | |
| if (text.text) | |
| text = newElement(Element.STAFF_TEXT); // Make another STAFF_TEXT | |
| } | |
| } | |
| return text | |
| } | |
| onRun: { | |
| curScore.startCmd() | |
| var cursor = curScore.newCursor(); | |
| var startStaff; | |
| var endStaff; | |
| var endTick; | |
| var fullScore = false; | |
| cursor.rewind(1); | |
| if (!cursor.segment) { // no selection | |
| fullScore = true; | |
| startStaff = 0; // start with 1st staff | |
| endStaff = curScore.nstaves - 1; // and end with last | |
| } else { | |
| startStaff = cursor.staffIdx; | |
| cursor.rewind(2); | |
| if (cursor.tick === 0) { | |
| // this happens when the selection includes | |
| // the last measure of the score. | |
| // rewind(2) goes behind the last segment (where | |
| // there's none) and sets tick=0 | |
| endTick = curScore.lastSegment.tick + 1; | |
| } else { | |
| endTick = cursor.tick; | |
| } | |
| endStaff = cursor.staffIdx; | |
| } | |
| console.log(startStaff + " - " + endStaff + " - " + endTick) | |
| for (var staff = startStaff; staff <= endStaff; staff++) { | |
| for (var voice = 0; voice < 4; voice++) { | |
| cursor.rewind(1); // beginning of selection | |
| cursor.voice = voice; | |
| cursor.staffIdx = staff; | |
| if (fullScore) // no selection | |
| cursor.rewind(0); // beginning of score | |
| var prev = null; | |
| while (cursor.segment && (fullScore || cursor.tick < endTick)) { | |
| if (cursor.element && cursor.element.type === Element.CHORD) { | |
| var text = newElement(Element.STAFF_TEXT); // Make a STAFF_TEXT | |
| // First...we need to scan grace notes for existence and break them | |
| // into their appropriate lists with the correct ordering of notes. | |
| var leadingLifo = Array(); // List for leading grace notes | |
| var trailingFifo = Array(); // List for trailing grace notes | |
| var graceChords = cursor.element.graceNotes; | |
| // Build separate lists of leading and trailing grace note chords. | |
| if (graceChords.length > 0) { | |
| for (var chordNum = 0; chordNum < graceChords.length; chordNum++) { | |
| var noteType = graceChords[chordNum].notes[0].noteType | |
| if (noteType === NoteType.GRACE8_AFTER || noteType === NoteType.GRACE16_AFTER || | |
| noteType === NoteType.GRACE32_AFTER) { | |
| trailingFifo.unshift(graceChords[chordNum]) | |
| } else { | |
| leadingLifo.push(graceChords[chordNum]) | |
| } | |
| } | |
| } | |
| // Next process the leading grace notes, should they exist... | |
| text = renderGraceNoteNames(cursor, leadingLifo, text, true) | |
| // Now handle the note names on the main chord... | |
| var notes = cursor.element.notes; | |
| nameChord(notes, text, false); | |
| // check prev text | |
| if (!prev || prev != text.text) { | |
| if (text.text) | |
| cursor.add(text); | |
| prev = text.text; | |
| // MEMO: voice -> staffIdx | |
| switch (cursor.staffIdx) { | |
| case 1: case 3: text.placement = Placement.BELOW; break; | |
| } | |
| if (text.text) | |
| text = newElement(Element.STAFF_TEXT) // Make another STAFF_TEXT object | |
| // Finally process trailing grace notes if they exist... | |
| text = renderGraceNoteNames(cursor, trailingFifo, text, true) | |
| } | |
| } // end if CHORD | |
| cursor.next(); | |
| } // end while segment | |
| } // end for voice | |
| } // end for staff | |
| curScore.endCmd() | |
| quit(); | |
| } // end onRun | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment