Created
May 8, 2012 15:58
-
-
Save lasconic/2636633 to your computer and use it in GitHub Desktop.
Trumpet fingering plugin for MuseScore with french note names
This file contains 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 | |
// | |
// Note names and fingerings for Trumpet Bb | |
// changable for other Brass | |
// | |
// Contribution Artur Vilá Canal | |
// Copyright (c) 2011 Karl Gerhards, (C)2008 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. | |
//============================================================================= | |
// | |
// This is ECMAScript code (ECMA-262 aka "Java Script") | |
// | |
//--------------------------------------------------------- | |
// init | |
// this function will be called on startup of mscore | |
//--------------------------------------------------------- | |
function init() | |
{ | |
// print("test script init"); | |
} | |
// gibt den Griff zur midi-Nummer | |
function griff(midi) | |
{ | |
// change for other Brass | |
midi = midi-20; | |
// edit and uncomment for other Brass | |
// midi = midi-20; | |
// for 4 valves, usually 1+3 = 4 | |
switch (midi){ | |
case 34: return "123"; break; | |
case 35: return "13"; break; | |
case 36: return "23"; break; | |
case 37: return "12"; break; | |
case 38: return "1"; break; | |
case 39: return "2"; break; | |
case 40: return "0"; break; | |
case 41: return "123"; break; | |
case 42: return "13"; break; | |
case 43: return "23"; break; | |
case 44: return "12"; break; | |
case 45: return "1"; break; | |
case 46: return "2"; break; | |
case 47: return "0"; break; | |
case 48: return "23"; break; | |
case 49: return "12"; break; | |
case 50: return "1"; break; | |
case 51: return "2"; break; | |
case 52: return "0"; break; | |
case 53: return "12"; break; | |
case 54: return "1"; break; | |
case 55: return "2"; break; | |
case 56: return "0"; break; | |
case 57: return "1"; break; | |
case 58: return "2"; break; | |
case 59: return "0"; break; | |
case 60: return "23"; break; | |
case 61: return "12"; break; | |
case 62: return "1"; break; | |
case 63: return "2"; break; | |
case 64: return "0"; break; | |
case 65: return "#2 or b12"; break; | |
case 66: return "1"; break; | |
default: return ""; | |
} | |
} | |
//------------------------------------------------------------------- | |
// run | |
// this function will be called when activating the | |
// plugin menu entry | |
// | |
// global Variables: | |
// pluginPath - contains the plugin path; file separator is "/" | |
//------------------------------------------------------------------- | |
function run() | |
{ | |
var cursor = new Cursor(curScore); | |
cursor.staff = 0; | |
cursor.voice = 0; | |
cursor.rewind(); // set cursor to first chord/rest | |
var CrLf = '\r\n'; | |
var textold = "xxx"; | |
while (!cursor.eos()) { | |
if (cursor.isChord()) { | |
var text = new Text(curScore); | |
text.text = griff(cursor.chord().topNote().pitch) + CrLf + cursor.chord().topNote().name; | |
// comment this block for american note names | |
text.text = text.text.replace("A","La"); | |
text.text = text.text.replace("B","Si"); | |
text.text = text.text.replace("C","Do"); | |
text.text = text.text.replace("D","Ré"); | |
text.text = text.text.replace("E","Mi"); | |
text.text = text.text.replace("F","Fa"); | |
text.text = text.text.replace("G","Sol"); | |
// comment the above block for american note names | |
text.yOffset = 7; | |
if (text.text != textold) {cursor.putStaffText(text);} | |
textold = text.text; | |
if (text.text = textold) {cursor.putStaffText(text);} | |
textold = text.text; | |
} | |
cursor.next(); | |
} | |
} | |
//--------------------------------------------------------- | |
// menu: defines were the function will be placed | |
// in the MuseScore menu structure | |
//--------------------------------------------------------- | |
var mscorePlugin = { | |
//change name for menu | |
menu: 'Plugins.trumpetfingering FR GAPBELOW5', | |
init: init, | |
run: run | |
}; | |
mscorePlugin; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment