-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge changes for verovio facsimile and file structure changes
- Loading branch information
1 parent
3f2113a
commit 213d72f
Showing
6 changed files
with
533 additions
and
330 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
importScripts('../assets/js/verovio-toolkit-wasm.js'); | ||
|
||
let toolkit; | ||
const backlog = []; | ||
|
||
/** | ||
* Parse and respond to messages sent by NeonCore. | ||
* @param {MessageEvent} evt | ||
*/ | ||
function handleNeonEvent (evt) { | ||
const data = evt.data; | ||
const result = { | ||
id: data.id | ||
}; | ||
|
||
switch (data.action) { | ||
case 'renderData': | ||
result.svg = toolkit.renderData(data.mei, {}); | ||
break; | ||
case 'getElementAttr': | ||
result.attributes = toolkit.getElementAttr(data.elementId); | ||
break; | ||
case 'edit': | ||
result.result = toolkit.edit(data.editorAction); | ||
break; | ||
case 'getMEI': | ||
result.mei = toolkit.getMEI({ | ||
pageNo: 0, | ||
scoreBased: true | ||
}); | ||
break; | ||
case 'editInfo': | ||
result.info = toolkit.editInfo(); | ||
break; | ||
case 'renderToSVG': | ||
result.svg = toolkit.renderToSVG(1); | ||
break; | ||
default: | ||
break; | ||
} | ||
postMessage(result); | ||
} | ||
|
||
|
||
verovio.module.onRuntimeInitialized = function () { | ||
|
||
toolkit = new verovio.toolkit(); | ||
toolkit.setOptions({ | ||
inputFrom: 'mei', | ||
footer: 'none', | ||
header: 'none', | ||
pageMarginLeft: 0, | ||
pageMarginTop: 0, | ||
font: 'Bravura', | ||
useFacsimile: false, | ||
}); | ||
console.debug('READY'); | ||
onmessage = handleNeonEvent; | ||
for (const message of backlog) { | ||
handleNeonEvent(message); | ||
} | ||
} | ||
|
||
|
||
function tempHandler (evt) { | ||
backlog.push(evt); | ||
} | ||
|
||
onmessage = tempHandler; |
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