formateMusic.ts 72 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781
  1. import dayjs from "dayjs";
  2. import duration from "dayjs/plugin/duration";
  3. import state, { customData } from "/src/state";
  4. import { browser } from "../utils/index";
  5. import { transferJianNote } from "/src/helpers/customMusicScore"
  6. import {
  7. isSpecialMark,
  8. isSpeedKeyword,
  9. Fraction,
  10. SourceMeasure,
  11. isGradientWords,
  12. GRADIENT_SPEED_RESET_TAG,
  13. StringUtil,
  14. OpenSheetMusicDisplay,
  15. } from "/osmd-extended/src";
  16. import { GradualChange, speedInfo } from "./calcSpeed";
  17. const browserInfo = browser();
  18. dayjs.extend(duration);
  19. /**
  20. * 需要隐藏的中文速度文本
  21. */
  22. const hideSpeedWords: string[] = ["中速"];
  23. /**
  24. * 获取节拍器的时间
  25. * @param speed 速度
  26. * @param firstMeasure 曲谱第一个小节
  27. * @returns 节拍器的时间
  28. */
  29. export const getFixTime = (speed: number) => {
  30. const duration: any = getDuration(state.osmd as unknown as OpenSheetMusicDisplay);
  31. let numerator = duration.numerator || 0;
  32. let denominator = duration.denominator || 4;
  33. const beatUnit = duration.beatUnit || "quarter";
  34. // if (state.repeatedBeats) {
  35. // // 音频制作问题仅2拍不重复
  36. // numerator = numerator === 2 ? 4 : numerator;
  37. // } else if (numerator === 2 && denominator === 4) {
  38. // numerator = 4
  39. // }
  40. // 重复节拍,拍数*2进行计算
  41. if (state.repeatedBeats) {
  42. numerator = numerator*2;
  43. }
  44. // console.log('diff', speed, duration, formatBeatUnit(beatUnit), denominator, numerator, (numerator / denominator))
  45. return (60 / speed) * formatBeatUnit(beatUnit) * (numerator / denominator);
  46. };
  47. export const retain = (time: number) => {
  48. return Math.ceil(time * 1000000) / 1000000;
  49. };
  50. export const formatLyricsEntries = (note: any) => {
  51. const voiceEntries = note.parentStaffEntry?.voiceEntries || [];
  52. const lyricsEntries: string[] = [];
  53. for (const voic of voiceEntries) {
  54. if (voic.lyricsEntries?.table) {
  55. const values: any[] = Object.values(voic.lyricsEntries.table);
  56. for (const lyric of values) {
  57. lyricsEntries.push(lyric?.value.text);
  58. }
  59. }
  60. }
  61. return lyricsEntries;
  62. };
  63. export const getMeasureDurationDiff = (measure: any) => {
  64. const { realValue: SRealValue } = measure.activeTimeSignature;
  65. const { realValue: RRealValue } = measure.duration;
  66. return SRealValue - RRealValue;
  67. };
  68. /** 按照dorico的渐快渐慢生成对应的速度 */
  69. export const createSpeedInfo = (gradualChange: GradualChange | undefined, speed: number) => {
  70. if (gradualChange && speedInfo[gradualChange.startWord?.toLocaleLowerCase()]) {
  71. const notenum = Math.max(gradualChange.endXmlNoteIndex, 3);
  72. const speeds: number[] = [];
  73. const startSpeed = speed;
  74. const endSpeed = speed / speedInfo[gradualChange.startWord?.toLocaleLowerCase()];
  75. for (let index = 0; index < notenum; index++) {
  76. const speed = startSpeed + ((endSpeed - startSpeed) / notenum) * (index + 1);
  77. speeds.push(speed);
  78. }
  79. return speeds;
  80. }
  81. return;
  82. };
  83. const tranTime = (str: string = "") => {
  84. let result = str;
  85. const splits = str.split(":");
  86. if (splits.length === 1) {
  87. result = `00:${splits[0]}:00`;
  88. } else if (splits.length === 2) {
  89. result = `00:${splits[0]}:${splits[1]}`;
  90. }
  91. // console.log(`1970-01-01 00:${result}0`)
  92. return `1970-01-01 00:${result}0`;
  93. };
  94. export const getSlursNote = (note: any, pos?: "start" | "end") => {
  95. return pos === "end" ? note.noteElement.slurs[0]?.endNote : note.noteElement.slurs[0]?.startNote;
  96. };
  97. export const getNoteBySlursStart = (note: any, anyNoteHasSlurs?: boolean, pos?: "start" | "end") => {
  98. let activeNote = note;
  99. let slursNote = getSlursNote(activeNote, pos);
  100. for (const item of activeNote.measures) {
  101. if (item.noteElement.slurs.length) {
  102. slursNote = getSlursNote(item, pos);
  103. activeNote = item;
  104. }
  105. }
  106. return activeNote;
  107. };
  108. /** 根据 noteElement 获取note */
  109. export const getParentNote = (note: any) => {
  110. let parentNote;
  111. if (note) {
  112. // time = activeNote.time
  113. for (const n of state.times) {
  114. if (note === n.noteElement) {
  115. // console.log(note)
  116. return n;
  117. }
  118. }
  119. }
  120. return parentNote;
  121. };
  122. export type FractionDefault = {
  123. numerator: number;
  124. denominator: number;
  125. wholeValue: number;
  126. };
  127. export type Duration = FractionDefault & {
  128. TempoInBPM: number;
  129. beatUnit: string;
  130. };
  131. export const getDuration = (osmd?: OpenSheetMusicDisplay): Duration => {
  132. if (osmd) {
  133. const { Duration, TempoInBPM, ActiveTimeSignature, TempoExpressions } = osmd.GraphicSheet.MeasureList[0][0]?.parentSourceMeasure;
  134. if (Duration) {
  135. let beatUnit = "quarter";
  136. for (const item of TempoExpressions) {
  137. beatUnit = item.InstantaneousTempo.beatUnit || "quarter";
  138. }
  139. const duration = formatDuration(ActiveTimeSignature, Duration) as unknown as FractionDefault;
  140. return {
  141. ...duration,
  142. TempoInBPM,
  143. beatUnit,
  144. };
  145. }
  146. }
  147. const duration = new Fraction() as unknown as FractionDefault;
  148. return {
  149. ...duration,
  150. TempoInBPM: 90,
  151. beatUnit: "quarter",
  152. };
  153. };
  154. export function formatDuration(activeTimeSignature: Fraction, duration: Fraction): Fraction {
  155. // 弱起第一小节duration不对
  156. return activeTimeSignature;
  157. }
  158. export function formatBeatUnit(beatUnit: string) {
  159. let multiple = 4;
  160. switch (beatUnit) {
  161. case "1024th":
  162. // bpm = bpm;
  163. multiple = 1024;
  164. break;
  165. case "512th":
  166. // divisionsFromNote = (noteDuration / 4) * 512;
  167. multiple = 512;
  168. break;
  169. case "256th":
  170. // divisionsFromNote = (noteDuration / 4) * 256;
  171. multiple = 256;
  172. break;
  173. case "128th":
  174. // divisionsFromNote = (noteDuration / 4) * 128;
  175. multiple = 128;
  176. break;
  177. case "64th":
  178. // divisionsFromNote = (noteDuration / 4) * 64;
  179. multiple = 64;
  180. break;
  181. case "32nd":
  182. // divisionsFromNote = (noteDuration / 4) * 32;
  183. multiple = 32;
  184. break;
  185. case "16th":
  186. // divisionsFromNote = (noteDuration / 4) * 16;
  187. multiple = 16;
  188. break;
  189. case "eighth":
  190. // divisionsFromNote = (noteDuration / 4) * 8;
  191. multiple = 8;
  192. break;
  193. case "quarter":
  194. multiple = 4;
  195. break;
  196. case "half":
  197. // divisionsFromNote = (noteDuration / 4) * 2;
  198. multiple = 2;
  199. break;
  200. case "whole":
  201. // divisionsFromNote = (noteDuration / 4);
  202. multiple = 1;
  203. break;
  204. case "breve":
  205. // divisionsFromNote = (noteDuration / 4) / 2;
  206. multiple = 0.5;
  207. break;
  208. case "long":
  209. // divisionsFromNote = (noteDuration / 4) / 4;
  210. multiple = 0.25;
  211. break;
  212. case "maxima":
  213. // divisionsFromNote = (noteDuration / 4) / 8;
  214. multiple = 0.125;
  215. break;
  216. default:
  217. break;
  218. }
  219. return multiple;
  220. }
  221. /** 根据音符单位,速度,几几拍计算正确的时间 */
  222. export function getTimeByBeatUnit(beatUnit: string, bpm: number, denominator: number) {
  223. return (denominator / formatBeatUnit(beatUnit)) * bpm;
  224. }
  225. export type CustomInfo = {
  226. showSpeed: boolean;
  227. parsedXML: string;
  228. };
  229. /** 从xml中获取自定义信息,并删除多余的字符串 */
  230. export const getCustomInfo = (xml: string): CustomInfo => {
  231. const data = {
  232. showSpeed: true,
  233. parsedXML: xml,
  234. };
  235. const xmlParse = new DOMParser().parseFromString(xml, "text/xml");
  236. const words: any = xmlParse.getElementsByTagName("words");
  237. for (const word of words) {
  238. if (word && word.textContent?.trim() === "隐藏速度") {
  239. data.showSpeed = false;
  240. word.textContent = "";
  241. }
  242. if (word && word.textContent?.trim() === "@") {
  243. word.textContent = "segno";
  244. }
  245. }
  246. data.parsedXML = new XMLSerializer().serializeToString(xmlParse);
  247. return data;
  248. };
  249. /**
  250. * 替换文本标签中的内容
  251. */
  252. const replaceTextConent = (beforeText: string, afterText: string, ele: Element): Element => {
  253. const words: any = ele?.getElementsByTagName("words");
  254. for (const word of words) {
  255. if (word && word.textContent?.trim() === beforeText) {
  256. word.textContent = afterText;
  257. }
  258. }
  259. return ele;
  260. };
  261. /**
  262. * 添加第一分谱信息至当前分谱
  263. * @param ele 需要插入的元素
  264. * @param fitstParent 合奏谱第一个分谱
  265. * @param parent 需要添加的分谱
  266. */
  267. const setElementNoteBefore = (ele: Element, fitstParent: Element, parent?: Element | null) => {
  268. let noteIndex: number = 0;
  269. if (!fitstParent) {
  270. return;
  271. }
  272. for (let index = 0; index < fitstParent.childNodes.length; index++) {
  273. const element = fitstParent.childNodes[index];
  274. if (element.nodeName === "note") {
  275. noteIndex++;
  276. }
  277. if (element === ele) {
  278. break;
  279. }
  280. }
  281. if (noteIndex === 0 && parent) {
  282. parent.insertBefore(ele, parent.childNodes[0]);
  283. return;
  284. }
  285. if (parent && parent.childNodes.length > 0) {
  286. let noteIndex2: number = 0;
  287. const notes = Array.from(parent.childNodes).filter((child) => child.nodeName === "note");
  288. const lastNote = notes[notes.length - 1];
  289. if (noteIndex >= notes.length && lastNote) {
  290. parent.insertBefore(ele, parent.childNodes[Array.from(parent.childNodes).indexOf(lastNote)]);
  291. return;
  292. }
  293. for (let index = 0; index < notes.length; index++) {
  294. const element = notes[index];
  295. if (element.nodeName === "note") {
  296. noteIndex2 = noteIndex2 + 1;
  297. if (noteIndex2 === noteIndex) {
  298. parent.insertBefore(ele, element);
  299. break;
  300. }
  301. }
  302. }
  303. }
  304. // console.log(noteIndex, parent)
  305. };
  306. /**
  307. * 检查传入文字是否为重复关键词
  308. * @param text 总谱xml
  309. * @returns 是否是重复关键词
  310. */
  311. export const isRepeatWord = (text: string): boolean => {
  312. if (text) {
  313. const innerText = text.toLocaleLowerCase();
  314. const dsRegEx: string = "d\\s?\\.s\\.";
  315. const dcRegEx: string = "d\\.\\s?c\\.";
  316. return (
  317. innerText === "@" ||
  318. StringUtil.StringContainsSeparatedWord(innerText, dsRegEx + " al fine", true) ||
  319. StringUtil.StringContainsSeparatedWord(innerText, dsRegEx + " al coda", true) ||
  320. StringUtil.StringContainsSeparatedWord(innerText, dcRegEx + " al fine", true) ||
  321. StringUtil.StringContainsSeparatedWord(innerText, dcRegEx + " al coda", true) ||
  322. StringUtil.StringContainsSeparatedWord(innerText, dcRegEx) ||
  323. StringUtil.StringContainsSeparatedWord(innerText, "da\\s?capo", true) ||
  324. StringUtil.StringContainsSeparatedWord(innerText, dsRegEx, true) ||
  325. StringUtil.StringContainsSeparatedWord(innerText, "dal\\s?segno", true) ||
  326. StringUtil.StringContainsSeparatedWord(innerText, "al\\s?coda", true) ||
  327. StringUtil.StringContainsSeparatedWord(innerText, "to\\s?coda", true) ||
  328. StringUtil.StringContainsSeparatedWord(innerText, "a (la )?coda", true) ||
  329. StringUtil.StringContainsSeparatedWord(innerText, "fine", true) ||
  330. StringUtil.StringContainsSeparatedWord(innerText, "coda", true) ||
  331. StringUtil.StringContainsSeparatedWord(innerText, "segno", true)
  332. );
  333. }
  334. return false;
  335. };
  336. export const onlyVisible = (xml: string, partIndex: number): string => {
  337. if (!xml) return "";
  338. // console.log('原始xml')
  339. const detailId = state.examSongId + "";
  340. const xmlParse = new DOMParser().parseFromString(xml, "text/xml");
  341. const partList = xmlParse.getElementsByTagName("part-list")?.[0]?.getElementsByTagName("score-part") || [];
  342. const partListNames = Array.from(partList).map((item) => item.getElementsByTagName("part-name")?.[0]?.textContent?.trim() || "");
  343. const parts: any = xmlParse.getElementsByTagName("part");
  344. // const firstTimeInfo = parts[0]?.getElementsByTagName('metronome')[0]?.parentElement?.parentElement?.cloneNode(true)
  345. const firstMeasures = [...parts[0]?.getElementsByTagName("measure")];
  346. const metronomes = [...parts[0]?.getElementsByTagName("metronome")];
  347. const words = [...parts[0]?.getElementsByTagName("words")];
  348. const codas = [...parts[0]?.getElementsByTagName("coda")];
  349. const rehearsals = [...parts[0]?.getElementsByTagName("rehearsal")];
  350. /** 第一分谱如果是约定的配置分谱则跳过 */
  351. if (partListNames[0]?.toLocaleUpperCase?.() === "COMMON") {
  352. partIndex++;
  353. //partListNames.shift();
  354. }
  355. const visiblePartInfo = partList[partIndex];
  356. // console.log(visiblePartInfo, partIndex)
  357. // 根据后台已选择的分轨筛选出能切换的声轨
  358. //state.partListNames = partListNames;
  359. // console.log('分轨名称',state.partListNames)
  360. if (visiblePartInfo) {
  361. const id = visiblePartInfo.getAttribute("id");
  362. Array.from(parts).forEach((part: any) => {
  363. if (part && part.getAttribute("id") !== id) {
  364. part.parentNode?.removeChild(part);
  365. // 不等于第一行才添加避免重复添加
  366. } else if (part && part.getAttribute("id") !== "P1") {
  367. // 速度标记仅保留最后一个
  368. const metronomeData: {
  369. [key in string]: Element;
  370. } = {};
  371. for (let i = 0; i < metronomes.length; i++) {
  372. const metronome = metronomes[i];
  373. const metronomeContainer = metronome.parentElement?.parentElement?.parentElement;
  374. if (metronomeContainer) {
  375. const index = firstMeasures.indexOf(metronomeContainer);
  376. metronomeData[index] = metronome;
  377. }
  378. }
  379. Object.values(metronomeData).forEach((metronome) => {
  380. const metronomeContainer: any = metronome.parentElement?.parentElement;
  381. const parentMeasure: any = metronomeContainer?.parentElement;
  382. const measureMetronomes = [...(parentMeasure?.childNodes || [])];
  383. const metronomesIndex = metronomeContainer ? measureMetronomes.indexOf(metronomeContainer) : -1;
  384. // console.log(parentMeasure)
  385. if (parentMeasure && metronomesIndex > -1) {
  386. const index = firstMeasures.indexOf(parentMeasure);
  387. const activeMeasure = part.getElementsByTagName("measure")[index];
  388. setElementNoteBefore(metronomeContainer, parentMeasure, activeMeasure);
  389. }
  390. });
  391. /** word比较特殊需要精确到note位置 */
  392. words.forEach((word) => {
  393. let text = word.textContent || "";
  394. text = ["cresc."].includes(text) ? "" : text;
  395. if ((isSpecialMark(text) || isSpeedKeyword(text) || isGradientWords(text) || isRepeatWord(text) || GRADIENT_SPEED_RESET_TAG) && text) {
  396. const wordContainer = word.parentElement?.parentElement;
  397. const parentMeasure = wordContainer?.parentElement;
  398. const measureWords = [...(parentMeasure?.childNodes || [])];
  399. const wordIndex = wordContainer ? measureWords.indexOf(wordContainer) : -1;
  400. if (wordContainer && parentMeasure && wordIndex > -1) {
  401. const index = firstMeasures.indexOf(parentMeasure);
  402. const activeMeasure = part.getElementsByTagName("measure")[index];
  403. // 找当前小节是否包含word标签
  404. const _words = Array.from(activeMeasure?.getElementsByTagName("words") || []);
  405. // 遍历word标签,检查是否和第一小节重复,如果有重复则不平移word
  406. const total = _words.reduce((total: any, _word: any) => {
  407. if (_word.textContent?.includes(text)) {
  408. total++;
  409. }
  410. return total;
  411. }, 0);
  412. if (total === 0) {
  413. if (["12280"].includes(detailId)) {
  414. activeMeasure?.insertBefore(wordContainer.cloneNode(true), activeMeasure?.childNodes[wordIndex]);
  415. } else {
  416. setElementNoteBefore(wordContainer, parentMeasure, activeMeasure);
  417. }
  418. }
  419. }
  420. }
  421. });
  422. /** word比较特殊需要精确到note位置 */
  423. codas.forEach((coda) => {
  424. const wordContainer = coda.parentElement?.parentElement;
  425. const parentMeasure = wordContainer?.parentElement;
  426. const measureWords = [...(parentMeasure?.childNodes || [])];
  427. const wordIndex = wordContainer ? measureWords.indexOf(wordContainer) : -1;
  428. if (wordContainer && parentMeasure && wordIndex > -1) {
  429. const index = firstMeasures.indexOf(parentMeasure);
  430. const activeMeasure = part.getElementsByTagName("measure")[index];
  431. if (["12280"].includes(detailId)) {
  432. activeMeasure?.insertBefore(wordContainer.cloneNode(true), activeMeasure?.childNodes[wordIndex]);
  433. } else {
  434. setElementNoteBefore(wordContainer, parentMeasure, activeMeasure);
  435. }
  436. }
  437. });
  438. rehearsals.forEach((rehearsal) => {
  439. const container = rehearsal.parentElement?.parentElement;
  440. const parentMeasure = container?.parentElement;
  441. // console.log(rehearsal)
  442. if (parentMeasure) {
  443. const index = firstMeasures.indexOf(parentMeasure);
  444. part.getElementsByTagName("measure")[index]?.appendChild(container.cloneNode(true));
  445. // console.log(index, parentMeasure, firstMeasures.indexOf(parentMeasure))
  446. }
  447. });
  448. } else {
  449. words.forEach((word, idx) => {
  450. const text = word.textContent || "";
  451. // if (idx == 0 && text) {
  452. // word.textContent = '测试一下'
  453. // word.setAttribute('default-y',60)
  454. // word.setAttribute('margin-left',300)
  455. // word.setAttribute('y',300)
  456. // word.outerHTML = '<words default-x="155" default-y="100" justify="right" valign="middle" font-family="SimHei" font-style="normal" font-size="11.9365" font-weight="normal">哈哈哈哈哈</words>'
  457. // }
  458. if (isSpeedKeyword(text) && text) {
  459. const wordContainer = word.parentElement?.parentElement?.parentElement;
  460. if (wordContainer && wordContainer.firstElementChild && wordContainer.firstElementChild !== word) {
  461. const wordParent = word.parentElement?.parentElement;
  462. const fisrt = wordContainer.firstElementChild;
  463. wordContainer.insertBefore(wordParent, fisrt);
  464. }
  465. }
  466. });
  467. }
  468. // 最后一个小节的结束线元素不在最后 调整
  469. if (part && part.getAttribute("id") === id) {
  470. const barlines = part.getElementsByTagName("barline");
  471. const lastParent = barlines[barlines.length - 1]?.parentElement;
  472. if (lastParent?.lastElementChild?.tagName !== "barline") {
  473. const children = lastParent?.children || [];
  474. for (let el of children) {
  475. if (el.tagName === "barline") {
  476. // 将结束线元素放到最后
  477. lastParent?.appendChild(el);
  478. break;
  479. }
  480. }
  481. }
  482. }
  483. });
  484. Array.from(partList).forEach((part) => {
  485. if (part && part.getAttribute("id") !== id) {
  486. part.parentNode?.removeChild(part);
  487. }
  488. });
  489. }
  490. // console.log(xmlParse)
  491. return new XMLSerializer().serializeToString(appoggianceFormate(xmlParse));
  492. };
  493. export const onlyVisible2 = (xml: string): string => {
  494. if (!xml) return "";
  495. // console.log('原始xml')
  496. //const detailId = state.examSongId + "";
  497. const xmlParse = new DOMParser().parseFromString(xml, "text/xml");
  498. const partList = xmlParse.getElementsByTagName("part-list")?.[0]?.getElementsByTagName("score-part") || [];
  499. //const partListNames = Array.from(partList).map((item) => item.getElementsByTagName("part-name")?.[0]?.textContent?.trim() || "");
  500. //state.partListNames = partListNames;
  501. Array.from(partList).forEach((part) => {
  502. let partListName = part.getElementsByTagName("part-name")?.[0]?.textContent?.trim();
  503. if (!state.canSelectTracks.includes(partListName)) {
  504. part.parentNode?.removeChild(part);
  505. }
  506. });
  507. // console.log(xmlParse)
  508. return new XMLSerializer().serializeToString(appoggianceFormate(xmlParse));
  509. };
  510. // 倚音后连音线
  511. export const appoggianceFormate = (xmlParse: Document): Document => {
  512. if (!xmlParse) return xmlParse;
  513. const graces: any = xmlParse.querySelectorAll("grace");
  514. if (!graces.length) return xmlParse;
  515. const getNextElement = (el: HTMLElement): HTMLElement => {
  516. if (el.querySelector("grace")) {
  517. return getNextElement(el?.nextElementSibling as HTMLElement);
  518. }
  519. return el;
  520. };
  521. for (let grace of graces) {
  522. const notations = grace.parentElement?.querySelector("notations");
  523. if (notations && notations.querySelectorAll("slur").length > 1) {
  524. let nextEle: Element = getNextElement(grace.parentElement?.nextElementSibling as HTMLElement);
  525. if (nextEle && nextEle.querySelectorAll("slur").length > 0) {
  526. const slurNumber = Array.from(nextEle.querySelector("notations")?.children || []).map((el: Element) => {
  527. return el.getAttribute("number");
  528. });
  529. const slurs = notations.querySelectorAll("slur");
  530. for (let nota of slurs) {
  531. if (!slurNumber.includes(nota.getAttribute("number"))) {
  532. nextEle.querySelector("notations")?.appendChild(nota);
  533. }
  534. }
  535. }
  536. }
  537. }
  538. return xmlParse;
  539. };
  540. /** 根据ID获取最顶级ID */
  541. export const isWithinScope = (tree: any[], id: number): number => {
  542. if (!tree) return 0;
  543. let result = 0;
  544. for (const item of tree) {
  545. if (item.id === id) {
  546. result = item.id;
  547. break;
  548. }
  549. if (item.sysMusicScoreCategoriesList) {
  550. result = isWithinScope(item.sysMusicScoreCategoriesList, id);
  551. if (result > 0) {
  552. result = item.id;
  553. }
  554. if (result) break;
  555. }
  556. }
  557. return result;
  558. };
  559. class NoteList {
  560. notes: any[] = [];
  561. constructor(notes: any[]) {
  562. this.notes = notes;
  563. }
  564. public last() {
  565. return this.notes[this.notes.length - 1];
  566. }
  567. public list() {
  568. return this.notes;
  569. }
  570. }
  571. export const getNotesByid = (id: string): NoteList => {
  572. const notes = new NoteList(state.times.filter((item) => item.id === id));
  573. return notes;
  574. };
  575. /** 格式化当前曲谱缩放比例 */
  576. export const formatZoom = (num = 1) => {
  577. return num * state.zoom;
  578. };
  579. /** 妙极客多分轨的曲子,可能没有part-name标签,需要手动加上该标签 */
  580. export const xmlAddPartName = (xml: string) => {
  581. if (!xml) return "";
  582. const xmlParse = new DOMParser().parseFromString(xml, "text/xml");
  583. const scoreParts = Array.from(xmlParse.getElementsByTagName("score-part"));
  584. // 曲子:1795013313499971585,有两条声轨,声轨1有name,声轨2没有name,需要判断是否都没有name,才把evxmlAddPartName赋值为true
  585. state.evxmlAddPartName = scoreParts.every(item => item.getElementsByTagName("part-name").length === 0);
  586. for (const scorePart of scoreParts) {
  587. if (scorePart.getElementsByTagName("part-name").length === 0) {
  588. // state.evxmlAddPartName = true;
  589. const name = scorePart.getAttribute("id") || "";
  590. const newPartName = `<part-name>${name}</part-name>`
  591. // scorePart.prepend(newPartName);
  592. scorePart.innerHTML = newPartName + scorePart.innerHTML;
  593. }
  594. if (scorePart.getElementsByTagName("part-name").length && !scorePart.getElementsByTagName("part-name")?.[0]?.textContent?.trim() ) {
  595. scorePart.getElementsByTagName("part-name")[0].textContent = scorePart.getAttribute("id") || "";
  596. }
  597. }
  598. return new XMLSerializer().serializeToString(xmlParse);
  599. }
  600. /** 格式化曲谱
  601. * 1.全休止符的小节,没有音符默认加个全休止符
  602. */
  603. export const formatXML = (xml: string, xmlUrl?: string): string => {
  604. if (!xml) return "";
  605. const xmlParse = new DOMParser().parseFromString(xml, "text/xml");
  606. // 声调
  607. const fifths = xmlParse.getElementsByTagName("fifths");
  608. if (fifths && fifths.length) {
  609. // 是否是C调
  610. state.isCTone = fifths[0].textContent === '0'
  611. }
  612. const endings = Array.from(xmlParse.getElementsByTagName("ending"));
  613. for (const ending of endings) {
  614. // if (ending.getAttribute('type') === 'stop') {
  615. // // @ts-ignore
  616. // ending.parentNode?.removeChild(ending.parentNode?.getElementsByTagName('bar-style')[0])
  617. // }
  618. // @ts-ignore
  619. // ending.parentNode.parentNode?.removeChild(ending.parentNode)
  620. }
  621. const measures = Array.from(xmlParse.getElementsByTagName("measure"));
  622. const minutes: any = xmlParse.getElementsByTagName("per-minute");
  623. let speeds: any = []
  624. for (const minute of minutes) {
  625. let measureSpeed = minute.textContent ? Number(minute.textContent) : 0;
  626. // 速度带附点,需要转换成不带附点的速度值
  627. const hasSpeedDot = Array.from(minute?.parentElement?.children || []).some((item: any) => item?.tagName === 'beat-unit-dot')
  628. measureSpeed = hasSpeedDot ? measureSpeed + measureSpeed/2 : measureSpeed;
  629. if (minute.textContent && measureSpeed) {
  630. speeds.push(Number(measureSpeed))
  631. }
  632. // if (hasSpeedDot && measureSpeed) {
  633. // minute.textContent = measureSpeed
  634. // const dotDom = minute?.parentElement.querySelector('beat-unit-dot')
  635. // minute?.parentElement?.removeChild(dotDom)
  636. // }
  637. }
  638. speeds = [...new Set(speeds)]
  639. const hasVaryingSpeed = speeds.length > 1 ? true : false
  640. // 如果后台没有设置速度,默认取xml速度,如果xml也没有速度,默认赋值100
  641. if (state.originSpeed === 0) {
  642. state.originSpeed = speeds[0] ? speeds[0] : 100;
  643. state.speed = state.originSpeed;
  644. }
  645. // 如果谱面和小节都没有打速度,osmd设置的小节速度默认取后台设置的速度
  646. if (speeds.length === 0) {
  647. ;(window as any).baseMeasureSpeed = state.originSpeed
  648. } else {
  649. state.originAudioPlayRate = speeds[0] / state.originSpeed
  650. }
  651. console.log('是否是变速的曲子:',hasVaryingSpeed,speeds)
  652. const repeats: any = Array.from(xmlParse.querySelectorAll('repeat'));
  653. compatibleXmlPitchVoice(xmlParse);
  654. // 获取作词、作曲家
  655. getComposer(xmlParse);
  656. // 处理重复小节信息
  657. parseXmlToRepeat(repeats)
  658. // 解析处理evxml
  659. if (state.isEvxml) {
  660. analyzeEvxml(xmlParse, xmlUrl);
  661. customizationXml(xmlParse);
  662. }
  663. // const words: any = xmlParse.getElementsByTagName("words");
  664. // for (const word of words) {
  665. // if (word && word.textContent?.trim() === "筒音作5") {
  666. // word.setAttribute('y',260)
  667. // word.outerHTML = '<words id="test-word" default-x="805" default-y="100" x="200" justify="right" valign="middle" font-family="SimHei" font-style="normal" font-size="11.9365" font-weight="normal">筒音作5</words>'
  668. // }
  669. // }
  670. // console.log(11111,Array.from(xmlParse.getElementsByTagName("staffline")),Array.from(xmlParse.getElementsByTagName("words")))
  671. let speed = -1
  672. let beats = -1;
  673. let beatType = -1;
  674. // 前面小节的拍子
  675. let preBeats: number = 4;
  676. let preBeatType: number = 4;
  677. // 小节中如果没有节点默认为休止符
  678. for (const measure of measures) {
  679. if (beats === -1 && measure.getElementsByTagName("beats").length) {
  680. beats = parseInt(measure.getElementsByTagName("beats")[0].textContent || "4");
  681. }
  682. if (beatType === -1 && measure.getElementsByTagName("beat-type").length) {
  683. beatType = parseInt(measure.getElementsByTagName("beat-type")[0].textContent || "4");
  684. }
  685. if (speed === -1 && measure.getElementsByTagName('per-minute').length) {
  686. speed = Number(measure.getElementsByTagName('per-minute')[0]?.textContent)
  687. }
  688. // 当前小节的拍数
  689. const currentBeats = measure.getElementsByTagName("beats").length ? measure.getElementsByTagName("beats")[0]?.textContent : preBeats;
  690. const currentBeatType = measure.getElementsByTagName("beat-type").length ? measure.getElementsByTagName("beat-type")[0]?.textContent : preBeatType;
  691. preBeats = Number(currentBeats);
  692. preBeatType = Number(currentBeatType);
  693. const divisions = parseInt(measure.getElementsByTagName("divisions")[0]?.textContent || "256");
  694. // 如果note节点里面有space节点,并且没有duration节点,代表这是一个空白节点,需要删除
  695. if (measure.getElementsByTagName("note").length && state.isEvxml) {
  696. const noteList = Array.from(measure.getElementsByTagName("note")) || [];
  697. noteList.forEach((note: any) => {
  698. // if (note.getElementsByTagName("space").length && !note.getElementsByTagName("duration").length) {
  699. // measure.removeChild(note);
  700. // }
  701. // 非倚音音符
  702. if (!note.getElementsByTagName("grace").length) {
  703. if (!note.getElementsByTagName("duration").length || (note.getElementsByTagName("duration").length && note.getElementsByTagName("duration")[0]?.textContent == 0)) {
  704. measure.removeChild(note);
  705. }
  706. }
  707. });
  708. }
  709. // 如果有特殊中文速度文本,需要删除
  710. const reg = new RegExp("[\\u4E00-\\u9FFF]+", "g");
  711. if (measure.getElementsByTagName("words").length && state.isEvxml) {
  712. const wordList = Array.from(measure.getElementsByTagName("words")) || [];
  713. wordList.forEach((word: any) => {
  714. // TODO:删除妙极客曲子无意义的words
  715. // wordArr?.push(word?.textContent)
  716. if (word?.textContent && reg.test(word?.textContent) && word?.parentNode?.parentNode) {
  717. measure.removeChild(word.parentNode.parentNode);
  718. // deleteWordArr?.push(word?.textContent)
  719. }
  720. // if(hideSpeedWords.includes(word?.textContent) && word?.parentNode?.parentNode) {
  721. // measure.removeChild(word.parentNode.parentNode);
  722. // }
  723. })
  724. }
  725. if (measure.getElementsByTagName("note").length === 0) {
  726. const forwardTimeElement = measure.getElementsByTagName("forward")[0]?.getElementsByTagName("duration")[0];
  727. if (forwardTimeElement) {
  728. forwardTimeElement.textContent = "0";
  729. }
  730. measure.innerHTML =
  731. measure.innerHTML +
  732. `
  733. <note>
  734. <rest measure="yes"/>
  735. <duration>${divisions * beats}</duration>
  736. <voice>1</voice>
  737. <type>whole</type>
  738. </note>`;
  739. } else if (state.musicRenderType !== 'staff') {
  740. transferJianNote(measure, divisions, preBeats, preBeatType)
  741. }
  742. }
  743. return new XMLSerializer().serializeToString(xmlParse);
  744. };
  745. /** 获取所有音符的时值,以及格式化音符 */
  746. export const formateTimes = (osmd: OpenSheetMusicDisplay) => {
  747. const customNoteRealValue = customData.customNoteRealValue;
  748. const customNoteCurrentTime = customData.customNoteCurrentTime;
  749. const detailId = state.examSongId + "";
  750. const partIndex = state.partIndex + "";
  751. // let fixtime = browserInfo.huawei ? 0.08 : 0; //getFixTime()
  752. let fixtime = 0;
  753. const allNotes: any[] = [];
  754. const allNoteId: string[] = [];
  755. const allMeasures: any[] = [];
  756. const { originSpeed: baseSpeed } = state;
  757. let preMeasureNumber = 0;
  758. const formatRealKey = (realKey: number, detail: any) => {
  759. // 不是管乐迷, 不处理
  760. // if (state.appName !== "GYM") return realKey;
  761. // 长笛的LEVEL 2-5-1条练习是泛音练习,以每小节第一个音的指法为准,高音不变变指法。
  762. const olnyOneIds = ["906"];
  763. if (olnyOneIds.includes(state.cbsExamSongId)) {
  764. return detail.measures[0]?.realKey || realKey;
  765. }
  766. // 圆号的LEVEL 2-5条练习是泛音练习,最后四小节指法以连音线第一个小节为准
  767. const olnyOneIds2 = ["782", "784"];
  768. if (olnyOneIds2.includes(state.cbsExamSongId)) {
  769. const measureNumbers = [14, 16, 30, 32];
  770. if (measureNumbers.includes(detail.firstVerticalMeasure?.measureNumber)) {
  771. return allNotes[allNotes.length - 1]?.realKey || realKey;
  772. }
  773. }
  774. // 2-6 第三小节指法按照第一个音符显示
  775. const filterIds = ["900", "901", "640", "641", "739", "740", "800", "801", "773", "774", "869", "872", "714", "715"];
  776. if (filterIds.includes(state.cbsExamSongId)) {
  777. if (detail.firstVerticalMeasure?.measureNumber === 3 || detail.firstVerticalMeasure?.measureNumber === 9) {
  778. return detail.measures[0]?.realKey || realKey;
  779. }
  780. }
  781. return realKey;
  782. };
  783. if (!osmd.cursor) return [];
  784. const iterator: any = osmd.cursor.Iterator;
  785. // console.log("🚀 ~ iterator:", iterator)
  786. console.time("音符跑完时间");
  787. let i = 0;
  788. let si = 0;
  789. let measures: any[] = [];
  790. let stepSpeeds: number[] = [];
  791. /** 弱起时间 */
  792. let difftime = 0;
  793. let usetime = 0;
  794. let relaMeasureLength = 0;
  795. let beatUnit = "quarter";
  796. let gradualSpeed;
  797. let gradualChange: GradualChange | undefined;
  798. let gradualChangeIndex = 0;
  799. let totalMultipleRestMeasures = 0;
  800. let multipleRestMeasures = 0;
  801. let staveNoteIndex = 0;
  802. let staveIndex = 0;
  803. let xmlMp3BeatFixTime = 0 // xml上节拍器的时间
  804. let preNoteEndTime = 0; // 上一个音符的结束时间
  805. let preNoteMeasureNumber: any = null; // 上一个小节的number值
  806. const _notes = [] as any[];
  807. if (state.gradualTimes) {
  808. console.log("后台设置的渐慢小节时间", state.gradual, state.gradualTimes);
  809. }
  810. let currentTimeStamp = iterator.currentTimeStamp.RealValue;
  811. const currentTimes = [] as any[];
  812. let isSetNextNoteReal = false;
  813. let differFrom = 0;
  814. // let testIdx = 0;
  815. let repeatIdx = 0; // 循环的次数
  816. const firstTrackName = state.canSelectTracks[0] || "";
  817. while (!iterator.EndReached) {
  818. // console.log({ ...iterator });
  819. /** 多声轨合并显示,当前音符的时值取所有声轨中的最小值 */
  820. if (state.isCombineRender) {
  821. iterator.currentVoiceEntries = iterator.currentVoiceEntries.filter((item: any) => {
  822. const trackName = state.isEvxml && state.evxmlAddPartName ? item.parentVoice.parent.IdString || '' : item.parentVoice.parent.Name || '';
  823. return trackName?.trim() === firstTrackName
  824. });
  825. }
  826. let minIndex = 0, elRealValue = 0
  827. for (let index = 0; index < iterator.currentVoiceEntries.length; index++) {
  828. const element = iterator.currentVoiceEntries[index];
  829. if (element.isGrace) {
  830. if (minIndex == index && minIndex == 0) {
  831. minIndex = iterator.currentVoiceEntries.length > 1 ? 1 : 0
  832. }
  833. continue
  834. }
  835. if (element.notes[0].length.realValue < elRealValue) {
  836. minIndex = index
  837. }
  838. elRealValue = element.notes[0].length.realValue
  839. }
  840. if (minIndex !== 0 && state.isCombineRender && iterator.currentVoiceEntries[minIndex]) {
  841. iterator.currentVoiceEntries[minIndex].Notes[0].NoteToGraphicalNoteObjectId = iterator.currentVoiceEntries?.[0].Notes[0].NoteToGraphicalNoteObjectId;
  842. }
  843. const voiceEntries = iterator.currentVoiceEntries?.[minIndex] ? [iterator.currentVoiceEntries?.[minIndex]] : [];
  844. let currentVoiceEntries: any[] = [];
  845. // 多分轨,当前小节最大音符数量
  846. let maxNoteNum = 0;
  847. // iterator.currentMeasure?.verticalMeasureList?.forEach((item: any) => maxNoteNum = Math.max(maxNoteNum, item?.staffEntries?.length || 0))
  848. maxNoteNum = iterator.currentMeasure?.verticalSourceStaffEntryContainers.length || 0
  849. // console.log(iterator.currentMeasure.MeasureNumberXML,maxNoteNum,iterator.currentMeasure?.verticalSourceStaffEntryContainers.length)
  850. // 单声部多声轨
  851. if (state.multitrack > 0) {
  852. currentVoiceEntries = [...iterator.CurrentVoiceEntries];
  853. } else {
  854. currentVoiceEntries = [...iterator.CurrentVoiceEntries].filter((n) => {
  855. return n && n?.ParentVoice?.VoiceId != 1;
  856. });
  857. }
  858. let currentTime = 0;
  859. let isDouble = false;
  860. let isMutileSubject = false;
  861. if (currentVoiceEntries.length && !isSetNextNoteReal) {
  862. isDouble = true;
  863. let voiceNotes = [...iterator.CurrentVoiceEntries].reduce((notes, n) => {
  864. notes.push(...n.Notes);
  865. return notes;
  866. }, [] as any);
  867. voiceNotes = voiceNotes.filter((note: any) => !note.IsGraceNote)
  868. voiceNotes = voiceNotes.sort((a: any, b: any) => a?.length?.realValue - b?.length?.realValue);
  869. currentTime = voiceNotes?.[0]?.length?.realValue || 0;
  870. if (state.multitrack > 0 && currentVoiceEntries.length === 2) {
  871. const min = voiceNotes[0]?.length?.realValue || 0;
  872. const max = voiceNotes[voiceNotes.length - 1]?.length?.realValue || 0;
  873. differFrom = max - min;
  874. isSetNextNoteReal = differFrom === 0 ? false : true;
  875. }
  876. }
  877. // 多声部上下音符没对齐,光标多走一拍
  878. if (_notes[_notes.length - 1]?.isDouble && !currentVoiceEntries.length) {
  879. isMutileSubject = true;
  880. }
  881. if (state.multitrack > 0 && !isDouble && isSetNextNoteReal) {
  882. isDouble = true;
  883. currentTime = differFrom;
  884. isSetNextNoteReal = false;
  885. differFrom = 0;
  886. }
  887. currentTimes.push(iterator.currentTimeStamp.realValue - currentTimeStamp);
  888. currentTimeStamp = iterator.currentTimeStamp.realValue;
  889. for (const v of voiceEntries) {
  890. let note = v.notes[0];
  891. if (note.IsGraceNote) {
  892. // 如果是装饰音, 取不是装饰音的时值
  893. const voice = note.parentStaffEntry.voiceEntries.find((_v: any) => !_v.isGrace);
  894. if (!voice) {
  895. continue;
  896. }
  897. note = voice.notes[0];
  898. }
  899. note.fixedKey = note.ParentVoiceEntry.ParentVoice.Parent.SubInstruments[0].fixedKey || 0;
  900. // 有倚音
  901. if (note?.voiceEntry?.isGrace) {
  902. isDouble = true;
  903. let ns = [...iterator.currentVoiceEntries].reduce((notes, n) => {
  904. notes.push(...n.notes);
  905. return notes;
  906. }, []);
  907. ns = ns.sort((a: any, b: any) => b?.length?.realValue - a?.length?.realValue);
  908. currentTime = currentTime != 0 ? Math.min(ns?.[0]?.length?.realValue, currentTime) : ns?.[0]?.length?.realValue;
  909. }
  910. if (state.multitrack > 0 && currentTime > note.length.realValue) {
  911. currentTime = note.length.realValue;
  912. }
  913. note.maxNoteNum = maxNoteNum;
  914. note.trackIndex = minIndex;
  915. _notes.push({
  916. note,
  917. iterator: { ...iterator },
  918. currentTime,
  919. isDouble,
  920. isMutileSubject,
  921. measuresTempoInBPM: note?.sourceMeasure?.tempoInBPM
  922. });
  923. }
  924. iterator.moveToNextVisibleVoiceEntry(false);
  925. // 从头开始循环,repeatIdx标记+1
  926. if (iterator.backJumpOccurred) {
  927. repeatIdx += 1;
  928. }
  929. iterator.repeatIdx = repeatIdx;
  930. // console.log('小节',testIdx,iterator.repeatIdx,iterator.EndReached,iterator.currentMeasureIndex,iterator.backJumpOccurred,iterator.forwardJumpOccurred)
  931. // testIdx += 1;
  932. }
  933. // 是否是变速的曲子
  934. const hasVaryingSpeed = _notes.some((item: any) => item.measuresTempoInBPM !== _notes[0].measuresTempoInBPM)
  935. console.log('变速曲子',hasVaryingSpeed, _notes)
  936. let noteIds: any = [];
  937. // let voicesBBox: any = null;
  938. for (let { note, iterator, currentTime, isDouble, isMutileSubject } of _notes) {
  939. if (note) {
  940. if (preMeasureNumber != note?.sourceMeasure?.MeasureNumberXML) {
  941. si = 0
  942. }
  943. if (si === 0 && preMeasureNumber != note?.sourceMeasure?.MeasureNumberXML) {
  944. preMeasureNumber = note?.sourceMeasure?.MeasureNumberXML
  945. allMeasures.push(note.sourceMeasure);
  946. }
  947. if (si === 0 && state.isSpecialBookCategory) {
  948. for (const expression of (note.sourceMeasure as SourceMeasure)?.TempoExpressions) {
  949. if (expression?.InstantaneousTempo?.beatUnit) {
  950. // 取最后一个有效的tempo
  951. beatUnit = expression.InstantaneousTempo.beatUnit;
  952. }
  953. }
  954. }
  955. // 判断是否是同一小节
  956. if (staveIndex == note.sourceMeasure?.MeasureNumberXML && i !== 0) {
  957. staveNoteIndex++
  958. } else {
  959. // staveIndex不同,重新赋值
  960. staveIndex = note.sourceMeasure?.MeasureNumberXML
  961. staveNoteIndex = 0
  962. }
  963. let measureSpeed = note.sourceMeasure.tempoInBPM;
  964. const { metronomeNoteIndex } = iterator.currentMeasure;
  965. if (metronomeNoteIndex !== 0 && metronomeNoteIndex > si) {
  966. measureSpeed = allNotes[allNotes.length - 1]?.speed || 100;
  967. }
  968. // 当前的分轨
  969. let activeVerticalMeasureList: any = [];
  970. /**
  971. * bug: #9959
  972. * 多分轨合并展示,第一分轨又可能获取不到对应的音符,需要在当前小节中音符最多的分轨中去查找音符
  973. */
  974. // if (state.isCombineRender) {
  975. // const allTrackList = note.sourceMeasure.verticalMeasureList;
  976. // let maxIdx = 0, maxNote = 0;
  977. // allTrackList.forEach((item: any, index: number) => {
  978. // if (item?.vfVoices['1']?.tickables?.length > maxNote) {
  979. // maxIdx = index
  980. // maxNote = item?.vfVoices['1']?.tickables?.length
  981. // }
  982. // })
  983. // activeVerticalMeasureList = [note.sourceMeasure?.verticalMeasureList?.[maxIdx]] || [];
  984. // } else {
  985. // activeVerticalMeasureList = [note.sourceMeasure?.verticalMeasureList?.[0]] || [];
  986. // }
  987. // 合并展示某些分轨,需要把展示的分轨筛选出来
  988. if (state.isCombineRender && note.sourceMeasure.verticalMeasureList.length) {
  989. note.sourceMeasure.verticalMeasureList = note.sourceMeasure?.verticalMeasureList.filter((item: any) => state.canSelectTracks.includes(item?.parentStaff?.parentInstrument.Name?.trim()))
  990. }
  991. activeVerticalMeasureList = [note.sourceMeasure?.verticalMeasureList?.[0]] || [];
  992. // 某些情况下,合并显示的妙极客曲子,note.sourceMeasure?.verticalMeasureList可能为空数组
  993. if (state.isCombineRender && state.isEvxml && note.sourceMeasure?.verticalMeasureList.length === 0) {
  994. activeVerticalMeasureList = osmd.GraphicSheet.MeasureList.find((item: any) => item[0]?.MeasureNumber === note.sourceMeasure.MeasureNumberXML) || [];
  995. }
  996. let currenrtVfVoices = activeVerticalMeasureList[0]?.vfVoices['1'] ? activeVerticalMeasureList[0]?.vfVoices['1'] : activeVerticalMeasureList[0]?.vfVoices['2'] ? activeVerticalMeasureList[0]?.vfVoices['2'] : null;
  997. /**
  998. * TODO:多分轨合并的小节,音符可能没有id,此时就去其它分轨找
  999. */
  1000. const vmLength = note.sourceMeasure?.verticalMeasureList?.length
  1001. let currentVmIndex = 0;
  1002. let hasSvgElement = currenrtVfVoices?.tickables[staveNoteIndex];
  1003. while (!hasSvgElement && vmLength > 1 && currentVmIndex <= vmLength - 1 && currenrtVfVoices !== null) {
  1004. currentVmIndex += 1;
  1005. activeVerticalMeasureList = [note.sourceMeasure?.verticalMeasureList?.[currentVmIndex]] || [];
  1006. currenrtVfVoices = activeVerticalMeasureList[0]?.vfVoices['1'] ? activeVerticalMeasureList[0]?.vfVoices['1'] : activeVerticalMeasureList[0]?.vfVoices['2'] ? activeVerticalMeasureList[0]?.vfVoices['2'] : null;
  1007. hasSvgElement = currenrtVfVoices?.tickables[staveNoteIndex];
  1008. }
  1009. const { realValue } = iterator.currentTimeStamp;
  1010. const { RealValue: vRealValue, Denominator: vDenominator } = formatDuration(
  1011. iterator.currentMeasure.activeTimeSignature,
  1012. iterator.currentMeasure.duration
  1013. );
  1014. let { wholeValue, numerator, denominator, realValue: NoteRealValue } = note.length;
  1015. if (customNoteRealValue[i]) {
  1016. // console.log(NoteRealValue, customNoteRealValue[i])
  1017. NoteRealValue = customNoteRealValue[i];
  1018. }
  1019. if (isDouble && currentTime > 0) {
  1020. if (currentTime != NoteRealValue) {
  1021. // console.log(`小节 ${note.sourceMeasure.MeasureNumberXML} 替换: noteLength: ${NoteRealValue}, 最小: ${currentTime}`);
  1022. NoteRealValue = currentTime;
  1023. }
  1024. }
  1025. // note.sourceMeasure.MeasureNumberXML === 8 && console.error(`小节 ${note.sourceMeasure.MeasureNumberXML}`, NoteRealValue)
  1026. // 管乐迷,按自定义按读取到的音符时值
  1027. if (customNoteCurrentTime) {
  1028. if (isMutileSubject && currentTimes[i + 1] > 0 && NoteRealValue > currentTimes[i + 1]) {
  1029. // console.log(NoteRealValue, currentTimes[i + 1])
  1030. NoteRealValue = currentTimes[i + 1];
  1031. }
  1032. }
  1033. let relativeTime = usetime;
  1034. // 妙极客的曲子,修复有的音符有times,有的音符没有times导致的,累计时长错误问题
  1035. if (state.isEvxml && relativeTime < preNoteEndTime - fixtime) {
  1036. relativeTime = preNoteEndTime - fixtime
  1037. }
  1038. let beatSpeed = 0;
  1039. // 速度不能为0 此处的速度应该是按照设置的速度而不是校准后的速度,否则mp3速度不对
  1040. if (measureSpeed !== baseSpeed && !hasVaryingSpeed) {
  1041. beatSpeed = baseSpeed || measureSpeed || 100
  1042. } else {
  1043. beatSpeed = (state.isSpecialBookCategory ? measureSpeed : baseSpeed) || 1;
  1044. }
  1045. // let beatSpeed = measureSpeed || baseSpeed
  1046. // 如果有节拍器,需要将节拍器的时间算出来
  1047. if (i === 0) {
  1048. if(state.isOpenMetronome){
  1049. fixtime += getFixTime(beatSpeed);
  1050. state.fixtime = fixtime;
  1051. }
  1052. // 存储mp3节拍器时间
  1053. xmlMp3BeatFixTime = getFixTime(beatSpeed)
  1054. // console.log("fixtime:", fixtime, '速度:', beatSpeed, "state.isSpecialBookCategory:", state.isSpecialBookCategory, 'state.isOpenMetronome:', state.isOpenMetronome);
  1055. }
  1056. // console.log(getTimeByBeatUnit(beatUnit, measureSpeed, iterator.currentMeasure.activeTimeSignature.Denominator))
  1057. let gradualLength = 0;
  1058. let speed = (state.isSpecialBookCategory ? measureSpeed : baseSpeed) || 1;
  1059. gradualChange = iterator.currentMeasure.speedInfo || gradualChange;
  1060. gradualSpeed = osmd.Sheet.SoundTempos?.get(note.sourceMeasure.measureListIndex) || gradualSpeed;
  1061. if (!gradualSpeed || gradualSpeed.length < 2) {
  1062. gradualSpeed = createSpeedInfo(gradualChange, speed);
  1063. }
  1064. // console.log({...iterator.currentMeasure},gradualChange, gradualSpeed)
  1065. const measureListIndex = iterator.currentMeasure.measureListIndex;
  1066. // 计算相差时间按照比例分配到所有音符上
  1067. if (state.gradualTimes && Object.keys(state.gradualTimes).length > 0) {
  1068. const withInRangeNote = state.gradual.find((item, index) => {
  1069. const nextItem: any = state.gradual[index + 1];
  1070. return (
  1071. item[0].measureIndex <= measureListIndex &&
  1072. item[1]?.measureIndex! >= measureListIndex &&
  1073. (!nextItem || nextItem?.[0].measureIndex !== measureListIndex)
  1074. );
  1075. });
  1076. const [first, last] = withInRangeNote || [];
  1077. if (first && last) {
  1078. // 小节数量
  1079. const continuous = last.measureIndex - first.measureIndex;
  1080. // 开始小节内
  1081. const inTheFirstMeasure = first.closedMeasureIndex == measureListIndex && si >= first.noteInMeasureIndex;
  1082. // 结束小节内
  1083. const inTheLastMeasure = last.closedMeasureIndex === measureListIndex && si < last.noteInMeasureIndex;
  1084. // 范围内小节
  1085. const inFiestOrLastMeasure = first.closedMeasureIndex !== measureListIndex && last.closedMeasureIndex !== measureListIndex;
  1086. if (inTheFirstMeasure || inTheLastMeasure || inFiestOrLastMeasure) {
  1087. const startTime = state.gradualTimes[first.measureIndex];
  1088. const endTime = state.gradualTimes[last.measureIndex];
  1089. if (startTime && endTime) {
  1090. const times = continuous - first.leftDuration / first.allDuration + last.leftDuration / last.allDuration;
  1091. const diff = dayjs(tranTime(endTime)).diff(dayjs(tranTime(startTime)), "millisecond");
  1092. gradualLength = ((NoteRealValue / vRealValue / times) * diff) / 1000;
  1093. }
  1094. }
  1095. }
  1096. } else if (state.appName === "GYM" && gradualChange && gradualSpeed && (gradualChange.startXmlNoteIndex === si || gradualChangeIndex > 0)) {
  1097. const startSpeed = gradualSpeed[0] - (gradualSpeed[1] - gradualSpeed[0]);
  1098. const { resetXmlNoteIndex, endXmlNoteIndex } = gradualChange;
  1099. const noteDiff = endXmlNoteIndex;
  1100. let stepSpeed = (gradualSpeed[gradualSpeed.length - 1] - startSpeed) / noteDiff;
  1101. stepSpeed = note.DotsXml ? stepSpeed / 1.5 : stepSpeed;
  1102. if (gradualChangeIndex < noteDiff) {
  1103. const tempSpeed = Math.ceil(speed + stepSpeed * gradualChangeIndex);
  1104. let tmpSpeed = getTimeByBeatUnit(beatUnit, tempSpeed, iterator.currentMeasure.activeTimeSignature.Denominator);
  1105. const maxLength = (wholeValue + numerator / denominator) * vDenominator * (60 / tmpSpeed);
  1106. // speed += stepSpeeds.reduce((a, b) => a + b, 0)
  1107. speed += Math.ceil(stepSpeed * (gradualChangeIndex + 1));
  1108. tmpSpeed = getTimeByBeatUnit(beatUnit, speed, iterator.currentMeasure.activeTimeSignature.Denominator);
  1109. const minLength = (wholeValue + numerator / denominator) * vDenominator * (60 / tmpSpeed);
  1110. gradualLength = (maxLength + minLength) / 2;
  1111. } else if (resetXmlNoteIndex > gradualChangeIndex) {
  1112. speed = allNotes[i - 1]?.speed;
  1113. }
  1114. beatSpeed =
  1115. (state.isSpecialBookCategory ? getTimeByBeatUnit(beatUnit, speed, iterator.currentMeasure.activeTimeSignature.Denominator) : baseSpeed) || 1;
  1116. const isEnd = !(gradualChangeIndex < noteDiff) && !(resetXmlNoteIndex > gradualChangeIndex);
  1117. gradualChangeIndex++;
  1118. if (isEnd) {
  1119. gradualChangeIndex = 0;
  1120. gradualChange = undefined;
  1121. gradualSpeed = undefined;
  1122. stepSpeeds = [];
  1123. }
  1124. }
  1125. const _noteLength = NoteRealValue;
  1126. // 当前音符的持续时长,当前音符的RealValue值*拍数*(60/后台设置的基准速度)
  1127. let noteLength = gradualLength ? gradualLength : Math.min(vRealValue, NoteRealValue) * formatBeatUnit(beatUnit) * (60 / beatSpeed);
  1128. // 小节时长
  1129. const measureLength = vRealValue * 4 * (60 / beatSpeed);
  1130. // console.table({value: iterator.currentTimeStamp.realValue, vRealValue,NoteRealValue, noteLength,measureLength, MeasureNumberXML: note.sourceMeasure.MeasureNumberXML})
  1131. // console.log(i, Math.min(vRealValue, NoteRealValue),noteLength,gradualLength, formatBeatUnit(beatUnit),beatSpeed, NoteRealValue * formatBeatUnit(beatUnit) * (60 / beatSpeed) )
  1132. /**
  1133. * TODO:摇篮曲-人音-排箫(1788501975122489346),第12小节音符持续时间特殊处理
  1134. */
  1135. if (['1788501975122489346','1788502467554750466'].includes(state.cbsExamSongId)) {
  1136. if (i == 13) {
  1137. noteLength = noteLength / 2;
  1138. }
  1139. if (i == 44) {
  1140. noteLength = noteLength * 6;
  1141. }
  1142. if (i == 56) {
  1143. noteLength = noteLength * 4;
  1144. }
  1145. }
  1146. usetime += noteLength;
  1147. relaMeasureLength += noteLength;
  1148. let relaEndtime = noteLength + relativeTime;
  1149. // console.log('relaEndtime',noteLength, relativeTime)
  1150. const fixedKey = note.fixedKey || 0;
  1151. // const svgElement = activeVerticalMeasureList[0]?.vfVoices["1"]?.tickables[si];
  1152. //const svgElement = currenrtVfVoices?.tickables[staveNoteIndex];
  1153. // 过滤掉ghostnote
  1154. const filterTickables = currenrtVfVoices?.tickables?.filter((tickable: any) => tickable.attrs?.type !== "GhostNote")
  1155. const svgElement = filterTickables?.[staveNoteIndex];
  1156. // console.log('si',si,i)
  1157. // console.log(note.sourceMeasure.MeasureNumberXML,note,svgElement, NoteRealValue, measureLength)
  1158. if (allNotes.length && allNotes[allNotes.length - 1].relativeTime === relativeTime) {
  1159. i++
  1160. continue;
  1161. }
  1162. // console.log(iterator.currentMeasure)
  1163. // 如果是弱起就补齐缺省的时长,midi音频不需要考虑弱起
  1164. if (i === 0 && !state.isAppPlay) {
  1165. let _firstMeasureRealValue = 0;
  1166. const staffEntries = note.sourceMeasure.verticalMeasureList?.[0]?.staffEntries || [];
  1167. //计算第一个小节里面的音符时值是否等于整个小节的时值
  1168. staffEntries.forEach((_a: any) => {
  1169. // 需要过滤掉倚音音符
  1170. const matchNote = _a?.sourceStaffEntry?.voiceEntries?.length > 1 ? _a?.sourceStaffEntry?.voiceEntries.find((item: any) => !item.isGrace) : _a?.sourceStaffEntry?.voiceEntries?.[0]
  1171. if (matchNote?.notes?.[0]?.length?.realValue) {
  1172. _firstMeasureRealValue += matchNote.notes[0].length.realValue;
  1173. }
  1174. });
  1175. if (_firstMeasureRealValue < vRealValue) {
  1176. // console.log(_firstMeasureRealValue, vRealValue)
  1177. // 如果是弱起,将整个小节的时值减去该小节所有音符相加的时值,就是缺省的时值
  1178. difftime = measureLength - _firstMeasureRealValue * formatBeatUnit(beatUnit) * (60 / beatSpeed);
  1179. }
  1180. /**
  1181. * 管乐迷,部分弱起的曲目,mp3制作不标准,没有按照补齐弱起后的时间进行制作,需要单独处理
  1182. * 2670
  1183. */
  1184. if (["2670"].includes(state.cbsExamSongId)) {
  1185. // fixtime -= _firstMeasureRealValue * formatBeatUnit(beatUnit) * (60 / beatSpeed);
  1186. } else {
  1187. if (difftime > 0 && !state.isEvxml) {
  1188. fixtime += difftime;
  1189. state.fixtime = fixtime;
  1190. }
  1191. }
  1192. // 管乐迷 diff获取不准确时, 弱起补齐
  1193. if (["2589", "2561", "2560", "2559", "2558", "2556", "2555", "2554"].includes(detailId)) {
  1194. // difftime = iterator.currentTimeStamp.realValue * formatBeatUnit(beatUnit) * (60 / beatSpeed);
  1195. // fixtime += difftime;
  1196. }
  1197. // 如果是evxml,fixtime取读取xml的值
  1198. if (state.isEvxml) {
  1199. fixtime = state.evXmlBeginTime ? state.evXmlBeginTime : fixtime
  1200. state.fixtime = fixtime
  1201. }
  1202. console.log('节拍器时间',fixtime,state.evXmlBeginTime)
  1203. }
  1204. let stave = activeVerticalMeasureList[0]?.stave;
  1205. if (note.sourceMeasure.multipleRestMeasures) {
  1206. totalMultipleRestMeasures = note.sourceMeasure.multipleRestMeasures;
  1207. multipleRestMeasures = 0;
  1208. }
  1209. if (multipleRestMeasures < totalMultipleRestMeasures) {
  1210. if (note?.sourceMeasure?.MeasureNumberXML !== preNoteMeasureNumber) {
  1211. multipleRestMeasures++;
  1212. } else {
  1213. multipleRestMeasures = allNotes.length ? allNotes.last().multipleRestMeasures : 0;
  1214. }
  1215. } else {
  1216. if (note?.sourceMeasure?.MeasureNumberXML !== preNoteMeasureNumber) {
  1217. multipleRestMeasures = 0;
  1218. totalMultipleRestMeasures = 0;
  1219. } else {
  1220. multipleRestMeasures = allNotes.length ? allNotes.last().multipleRestMeasures : 0;
  1221. }
  1222. }
  1223. // console.log(note.tie)
  1224. // console.log('👀看看endtime', duration, relaEndtime, fixtime, i)
  1225. // console.log('频率',note?.pitch?.frequency,i)
  1226. /**
  1227. * evxml的曲子,如果曲谱xml中带有times信息,则音符时值优先取times中的值
  1228. * 曲子:1795013295024062466(春暖花开),如果音符有times信息,休止符没有times信息,此种规则是认为休止符不参与时值计算的,需要过滤掉该休止符
  1229. */
  1230. let evNoteStartTime = 0, evNoteEndTime = 0;
  1231. if (state.isEvxml && note?.noteTimeInfo?.length === 0 && state.xmlHasTimes ) {
  1232. // 找出这个音符前面音符的结束时间
  1233. let preNoteTImes = allNotes[allNotes.length - 1]?.endtime*1000
  1234. if(!preNoteTImes){
  1235. //如果前一个音符没有结束时间,证明这个音符是第一个音符没有打时间,当有timegap以fixtime当开始时间(1795013294269087745),当第一个小节有times这个往前奏里面找补(1795013306436763649)
  1236. preNoteTImes = (state.evXmlBeginArr.length>0 ? fixtime : Math.max(fixtime - noteLength, 0))*1000
  1237. }
  1238. // 找出这个音符后面音符的开始时间
  1239. let nextI = i
  1240. let nextNoteTimes
  1241. // 多个连续的没有打时间的音符 需要平分时值
  1242. const notesRatio = []
  1243. while (!nextNoteTimes && nextI<_notes.length) {
  1244. notesRatio.push(_notes[nextI].note.length.realValue)
  1245. nextI++
  1246. if(_notes[nextI]?.note){ // 有可能_notes里面没有这个音符
  1247. nextNoteTimes = fliterNotesTime(_notes[nextI].note, preNoteTImes)
  1248. }
  1249. }
  1250. // 当最后音符就是没有打时间的音符,可能nextNoteTimes时间找不到时候取上个音符的结束时间加上这个音符的时间
  1251. if(!nextNoteTimes){
  1252. nextNoteTimes = preNoteTImes + noteLength*1000
  1253. }
  1254. // 判断有没有首位连续 首位连续的时候删掉这个音符
  1255. const allowRange = Math.abs(nextNoteTimes - preNoteTImes)< 10;
  1256. if (allowRange) {
  1257. note.maxNoteNum = note.maxNoteNum - 1;
  1258. // 唱名时间补齐,当删除这个音符的时候,上个音符的持续时间要加上这个音符的时间
  1259. allNotes[allNotes.length - 1].noteLengthTime += noteLength
  1260. i++
  1261. continue;
  1262. }else{
  1263. // 当多个连续的休止符没有打时间的时候 根据音符平均分配
  1264. if(notesRatio.length > 1){
  1265. const sum = notesRatio.reduce((acc:number, curr:number) => acc + curr, 0)
  1266. nextNoteTimes = (nextNoteTimes - preNoteTImes) * notesRatio[0] / sum + preNoteTImes
  1267. }
  1268. evNoteEndTime = nextNoteTimes/1000
  1269. evNoteStartTime = preNoteTImes/1000
  1270. // 当这个音符计算出来的时值大于本身这个音符的时值时候,取这个音符的长度,防止有前奏和间奏的时候,计算音符持续时长过长
  1271. if(evNoteEndTime - evNoteStartTime > noteLength){
  1272. evNoteEndTime = evNoteStartTime + noteLength
  1273. }
  1274. if (evNoteStartTime) {
  1275. relativeTime = evNoteStartTime - fixtime
  1276. }
  1277. }
  1278. }
  1279. if (state.isEvxml && note?.noteTimeInfo?.length ) {
  1280. let idx = noteIds.filter((item: any) => item === svgElement?.attrs.id)?.length || 0;
  1281. // 如果是合并的小节的休止符
  1282. if (note.isRestFlag && !svgElement && note?.NoteToGraphicalNoteObjectId) {
  1283. const customRestId = `rest-${note?.sourceMeasure?.MeasureNumberXML}-${note?.NoteToGraphicalNoteObjectId}`;
  1284. idx = noteIds.filter((item: any) => item === customRestId)?.length || 0;
  1285. }
  1286. evNoteStartTime = note?.noteTimeInfo[idx]?.begin
  1287. evNoteEndTime = note?.noteTimeInfo[idx]?.end
  1288. if (evNoteStartTime) {
  1289. relativeTime = evNoteStartTime - fixtime
  1290. // usetime = evNoteStartTime - fixtime
  1291. }
  1292. // usetime = evNoteStartTime - fixtime
  1293. }
  1294. svgElement?.attrs.id && noteIds.push(svgElement?.attrs.id)
  1295. // 如果是合并的休止小节,是没有渲染音符的,所以没有svgElement对象,也就没有id,此时需要添加自定义的一个id进度,便于多遍循环时,找到对应的noteTimeInfo里面的时间信息
  1296. if (note.isRestFlag && !svgElement && note?.NoteToGraphicalNoteObjectId) {
  1297. noteIds.push(`rest-${note?.sourceMeasure?.MeasureNumberXML}-${note?.NoteToGraphicalNoteObjectId}`)
  1298. }
  1299. // 如果该音符包含倚音,添加标记
  1300. let hasGraceNote = false;
  1301. if (svgElement?.modifiers?.length) {
  1302. hasGraceNote = svgElement?.modifiers.some((item: any) => item?.attrs?.type === "GraceNoteGroup")
  1303. }
  1304. const filterRepeatIdx = allNotes.filter((item: any) => item.noteId === note.NoteToGraphicalNoteObjectId).length
  1305. const nodeDetail = {
  1306. trackIndex: note.trackIndex, // 当前的音符属于第几条分轨
  1307. isStaccato: note.voiceEntry.isStaccato(),
  1308. isRestFlag: note.isRestFlag,
  1309. noteId: note.NoteToGraphicalNoteObjectId,
  1310. measureListIndex: note.sourceMeasure.measureListIndex,
  1311. MeasureNumberXML: note.sourceMeasure.MeasureNumberXML, // 当前的小节数,(从1开始)
  1312. _noteLength: _noteLength,
  1313. svgElement: svgElement,
  1314. frequency: note?.pitch?.frequency || -1,
  1315. nextFrequency: note?.pitch?.nextFrequency || -1,
  1316. prevFrequency: note?.pitch?.prevFrequency || -1,
  1317. difftime,
  1318. octaveOffset: activeVerticalMeasureList[0]?.octaveOffset,
  1319. speed,
  1320. beatSpeed,
  1321. i,
  1322. si,
  1323. stepSpeeds,
  1324. measureOpenIndex: allMeasures.length - 1,
  1325. measures,
  1326. tempoInBPM: note.sourceMeasure.tempoInBPM,
  1327. measureLength,
  1328. relaMeasureLength,
  1329. id: svgElement?.attrs.id,
  1330. hasGraceNote,
  1331. note: note.halfTone + 12, // see issue #224
  1332. fixtime, // 弱起补充的时间
  1333. relativeTime: retain(relativeTime),
  1334. time: state.isEvxml && evNoteStartTime ? retain(evNoteStartTime) : retain(relativeTime + fixtime), // 开始播放的时间
  1335. endtime: state.isEvxml && evNoteEndTime ? retain(evNoteEndTime) : retain(relaEndtime + fixtime), // 播放完成的时间
  1336. relaEndtime: retain(relaEndtime),
  1337. realValue,
  1338. halfTone: note.halfTone,
  1339. noteElement: note,
  1340. fixedKey,
  1341. realKey: 0,
  1342. duration: 0,
  1343. formatLyricsEntries: formatLyricsEntries(note),
  1344. stave,
  1345. firstVerticalMeasure: activeVerticalMeasureList[0],
  1346. noteLength: 1,
  1347. speedbeatUnit: beatUnit,
  1348. multipleRestMeasures: multipleRestMeasures, // 当前合并小节的索引,从1开始到当前的totalMultipleRestMeasures结束,
  1349. totalMultipleRestMeasures, // 当前小节总的合并小节数
  1350. measureSpeed, // 小节速度
  1351. maxNoteNum: note.maxNoteNum, // 当前小节音符最多的分轨的音符数量
  1352. // repeatIdx: iterator.repeatIdx || 0, // 标记是第几遍循环,从0开始
  1353. repeatIdx: filterRepeatIdx,
  1354. noteLengthTime: noteLength, //当前音符时长
  1355. xmlNoteTime: 0, // xml上音符开始时间 唱名用
  1356. xmlNoteEndTime: 0, //xml上音符结束时间 唱名用
  1357. xmlMp3BeatFixTime, //xml上节拍器的时间
  1358. notBeatFixtime: state.isOpenMetronome ? fixtime - xmlMp3BeatFixTime : fixtime, // 不含节拍器的fixtime值 唱名用
  1359. notBeatTime: state.isEvxml && evNoteStartTime ? retain(evNoteStartTime) : retain(relativeTime + (state.isOpenMetronome ? fixtime - xmlMp3BeatFixTime : fixtime)), // 不含节拍器的 音符开始时间
  1360. notBeatEndTime: state.isEvxml && evNoteEndTime ? retain(evNoteEndTime) : retain(relaEndtime + (state.isOpenMetronome ? fixtime - xmlMp3BeatFixTime : fixtime)) // 不含节拍器的 音符结束时间
  1361. };
  1362. // console.log(i,'当前的小节',nodeDetail.MeasureNumberXML,totalMultipleRestMeasures,multipleRestMeasures)
  1363. // 如果是妙极客的曲子,并且第二遍循环播放需要等待时间,并且是第二遍循环的第一个小节的第一个音符
  1364. // if (state.isEvxml && state.secondEvXmlBeginTime && nodeDetail.i > 0 && nodeDetail.MeasureNumberXML === 1 && nodeDetail.noteId === 0) {
  1365. // nodeDetail.time = nodeDetail.time + state.secondEvXmlBeginTime;
  1366. // nodeDetail.endtime = nodeDetail.endtime + state.secondEvXmlBeginTime;
  1367. // usetime = usetime + state.secondEvXmlBeginTime;
  1368. // relativeTime = relativeTime + state.secondEvXmlBeginTime;
  1369. // }
  1370. // if (state.isEvxml && nodeDetail.repeatIdx && nodeDetail.i > 0 && nodeDetail.MeasureNumberXML === 1 && nodeDetail.noteId === 0) {
  1371. const firstRepeatNodeId = allNotes.find((item: any) => item.MeasureNumberXML === state.timegapRepeatMeasureIndex)?.noteId || 0;
  1372. if (state.isEvxml && nodeDetail.repeatIdx && nodeDetail.i > 0 && nodeDetail.MeasureNumberXML === state.timegapRepeatMeasureIndex && nodeDetail.noteId === firstRepeatNodeId) {
  1373. const currentWaitTime = state.evXmlBeginArr[nodeDetail.repeatIdx] || 0;
  1374. nodeDetail.time = nodeDetail.time + currentWaitTime;
  1375. nodeDetail.endtime = nodeDetail.endtime + currentWaitTime;
  1376. usetime = usetime + currentWaitTime;
  1377. relativeTime = relativeTime + currentWaitTime;
  1378. }
  1379. nodeDetail.realKey = formatRealKey(note.halfTone - fixedKey * 12, nodeDetail);
  1380. nodeDetail.duration = nodeDetail.endtime - nodeDetail.time;
  1381. let tickables = currenrtVfVoices?.tickables || [];
  1382. if ([121].includes(state.subjectId)) {
  1383. tickables = note.sourceMeasure.verticalSourceStaffEntryContainers;
  1384. }
  1385. // console.log(note.sourceMeasure.MeasureNumberXML, note.sourceMeasure.verticalSourceStaffEntryContainers.length)
  1386. // console.log('👀看看endtime', nodeDetail.duration, relaEndtime, fixtime, i)
  1387. // console.log('音符时间',nodeDetail.i,nodeDetail.time,nodeDetail.endtime)
  1388. tickables = tickables.filter((tickable: any) => tickable.attrs?.type !== "GhostNote")
  1389. let maxNum = (state.isCombineRender && note.maxNoteNum) ? note.maxNoteNum : tickables.length;
  1390. // 妙极客的曲子,一个休止小节内可能有多个休止符,此时maxNum是0,需要针对这种情况作处理
  1391. if (note.isRestFlag && maxNum === 0) {
  1392. maxNum = note.maxNoteNum;
  1393. }
  1394. nodeDetail.noteLength = maxNum || 1;
  1395. allNotes.push(nodeDetail);
  1396. allNoteId.push(nodeDetail.id);
  1397. if ( measures.some((item: any) => item.MeasureNumberXML !== nodeDetail.MeasureNumberXML) ) {
  1398. measures = [];
  1399. measures.push(nodeDetail);
  1400. nodeDetail.measures = measures;
  1401. } else {
  1402. measures.push(nodeDetail);
  1403. }
  1404. /**
  1405. * bug: #9877
  1406. * 多分轨合并展示的曲子,不同分轨,同一小节音符的数量可能不能,不能只通过tickables的长度判断该小节的音符数量
  1407. */
  1408. if (si < maxNum - 1) {
  1409. si++;
  1410. } else {
  1411. si = 0;
  1412. relaMeasureLength = 0;
  1413. measures = [];
  1414. }
  1415. preNoteEndTime = nodeDetail.endtime;
  1416. }
  1417. preNoteMeasureNumber = note?.sourceMeasure?.MeasureNumberXML;
  1418. i++;
  1419. }
  1420. // 按照时间轴排序
  1421. const sortArray = allNotes.sort((a, b) => a.relativeTime - b.relativeTime).map((item, index) => Object.assign(item,{i:index}));
  1422. // const sortArray = allNotes.sort((a, b) => a.time - b.time).map((item, index) => ({ ...item, i: index }));
  1423. // const sortArray = allNotes.map((item, index) => ({ ...item, i: index }));
  1424. // 给 xmlNoteTime 和 xmlNoteEndTime 赋值
  1425. let xmlNoteTime = 0
  1426. sortArray.map(item => {
  1427. const noteLengthTime = item.noteLengthTime
  1428. item.xmlNoteTime = retain(xmlNoteTime)
  1429. item.xmlNoteEndTime = retain(xmlNoteTime + noteLengthTime)
  1430. xmlNoteTime += noteLengthTime
  1431. })
  1432. console.timeEnd("音符跑完时间");
  1433. try {
  1434. osmd.cursor.reset();
  1435. } catch (error) {}
  1436. return sortArray;
  1437. };
  1438. /** 获取小节之间的连音线,仅同音高*/
  1439. export const getNoteByMeasuresSlursStart = (note: any) => {
  1440. let activeNote = note;
  1441. let tieNote;
  1442. if (note.noteElement.tie && note.noteElement.tie.StartNote) {
  1443. tieNote = note.noteElement.tie.StartNote;
  1444. }
  1445. if (activeNote && tieNote && tieNote !== activeNote.noteElement) {
  1446. const arr: any = []
  1447. for (const note of state.times) {
  1448. if (tieNote === note.noteElement) {
  1449. arr.push(note)
  1450. }
  1451. }
  1452. if (arr.length) {
  1453. return arr.find((n: any) => n.i === (note.i - 1)) || arr[0]
  1454. }
  1455. }
  1456. return activeNote;
  1457. };
  1458. // 解析xml,获取作词、作曲家名称
  1459. const getComposer = (xmlParse: any) => {
  1460. const creators: any = Array.from(xmlParse.querySelectorAll('creator'));
  1461. for (const creator of creators) {
  1462. if (creator && creator.getAttribute('type') === 'composer' && !state.musicComposer) {
  1463. state.musicComposer = creator.textContent?.trim() || '';
  1464. }
  1465. if (creator && creator.getAttribute('type') === 'lyricist' && !state.musicLyricist) {
  1466. state.musicLyricist = creator.textContent?.trim() || '';
  1467. }
  1468. }
  1469. }
  1470. // 通过xml信息获取重播的小节信息
  1471. const parseXmlToRepeat = (repeats: any) => {
  1472. if (!repeats.length) return
  1473. let repeatInfo: any = []
  1474. // 重复开始小节,结束小节
  1475. let start = 0, end = 0
  1476. for (let i = 0; i < repeats.length; i++) {
  1477. const element = repeats[i];
  1478. const direction = element.getAttribute('direction')
  1479. let parentElement = element.parentNode
  1480. while (parentElement && parentElement.tagName !== 'measure') {
  1481. parentElement = parentElement.parentNode
  1482. }
  1483. let notesNumber = parentElement.getAttribute('number') // 第多少小节,从1开始
  1484. notesNumber = notesNumber ? Number(notesNumber) : 0
  1485. if (direction === 'forward') {
  1486. start = notesNumber
  1487. } else if (direction === 'backward') {
  1488. end = notesNumber
  1489. repeatInfo.push({
  1490. start,
  1491. end
  1492. })
  1493. }
  1494. }
  1495. state.repeatInfo = repeatInfo
  1496. // console.log('重播',repeatInfo)
  1497. }
  1498. // 校验当前选段是否满足重播条件
  1499. export const verifyCanRepeat = (startNum: number, endNum: number) => {
  1500. let repeatIdx = -1
  1501. if (state.repeatInfo.length) {
  1502. for (let i = state.repeatInfo.length - 1; i >= 0; i--) {
  1503. const { start, end } = state.repeatInfo[i];
  1504. if (startNum <= start && endNum >= end) {
  1505. repeatIdx = i
  1506. return {
  1507. repeatIdx,
  1508. canRepeat: true
  1509. }
  1510. break;
  1511. }
  1512. }
  1513. return {
  1514. repeatIdx,
  1515. canRepeat: false
  1516. }
  1517. } else {
  1518. return {
  1519. repeatIdx,
  1520. canRepeat: false
  1521. }
  1522. }
  1523. }
  1524. // 处理妙极客xml谱面
  1525. const customizationXml = (xmlParse: any) => {
  1526. const credits: any = Array.from(xmlParse.querySelectorAll('credit'));
  1527. const creators: any = Array.from(xmlParse.querySelectorAll('creator'));
  1528. const graces: any = Array.from(xmlParse.querySelectorAll('grace'));
  1529. const measures: any[] = Array.from(xmlParse.getElementsByTagName("measure"));
  1530. const notes: any[] = Array.from(xmlParse.getElementsByTagName("note"));
  1531. // 获取音符最多的歌词数,time最多的次数,取两者的最大值,用于自定义循环播放次数
  1532. let maxLyricNum = 0, maxTimeNum = 0;
  1533. if (notes && notes.length) {
  1534. for (const note of notes) {
  1535. if (maxLyricNum < note.getElementsByTagName("lyric").length) {
  1536. maxLyricNum = note.getElementsByTagName("lyric").length
  1537. }
  1538. if (maxTimeNum < note.getElementsByTagName("time").length) {
  1539. maxTimeNum = note.getElementsByTagName("time").length
  1540. }
  1541. }
  1542. }
  1543. state.maxLyricNum = Math.max(maxLyricNum, maxTimeNum);
  1544. // state.osmd.EngravingRules.DYCustomRepeatCount = maxLyricNum;
  1545. ;(window as any).DYCustomRepeatCount = state.maxLyricNum;
  1546. console.log('歌词次数',maxLyricNum)
  1547. if (credits && credits.length) {
  1548. for (const credit of credits) {
  1549. if (credit.getElementsByTagName("credit-type")?.[0]?.textContent === 'lyricist') {
  1550. const creditWord = credit.getElementsByTagName("credit-words")
  1551. creditWord?.[0].setAttribute('justify', 'right')
  1552. }
  1553. }
  1554. }
  1555. if (creators && creators.length) {
  1556. for (const creator of creators) {
  1557. if (creator.getAttribute('type') === 'lyricist') {
  1558. // creator.textContent = '测试一下1';
  1559. }
  1560. }
  1561. }
  1562. // 妙极客xml的倚音(grace)标签需要加上slash=yes属性
  1563. if (graces && graces.length) {
  1564. for (const grace of graces) {
  1565. grace?.setAttribute('slash','yes');
  1566. // console.log(grace,'倚音')
  1567. }
  1568. }
  1569. // 妙极客xml部分小节没有音符,只有Segno,该小节不需要渲染,表示的是反复标记
  1570. for (const measure of measures) {
  1571. const hasNote = measure.getElementsByTagName("note").length;
  1572. const hasSegno = measure.getElementsByTagName("segno").length;
  1573. const sounds = Array.from(measure.getElementsByTagName("sound"));
  1574. const hasSoundSegno = sounds.some((item: any) => item.getAttribute('segno') === 'segno' );
  1575. if (!hasNote && hasSegno && hasSoundSegno) {
  1576. const parent = measure.parentNode;
  1577. parent.removeChild(measure);
  1578. }
  1579. }
  1580. /**
  1581. * bug: #10289,曲目:1782672015612725196、1788040971888537602
  1582. * 妙极客xml,多遍歌词循环的曲目,如果没有repeat标签,需要加上repeat标签
  1583. * */
  1584. if (maxLyricNum > 1) {
  1585. const hasRepeat = xmlParse.querySelectorAll('repeat').length > 0;
  1586. if (!hasRepeat) {
  1587. const parts = xmlParse.querySelectorAll('score-partwise>part')
  1588. if (parts.length) {
  1589. for (const part of parts) {
  1590. const currentMeasures = part.querySelectorAll('measure').length ? Array.from(part.querySelectorAll('measure')) : [];
  1591. const lastMeasure: any = currentMeasures.last();
  1592. if (lastMeasure?.getElementsByTagName('barline').length) {
  1593. const barlineDom = lastMeasure?.getElementsByTagName('barline')[0]
  1594. barlineDom.innerHTML = barlineDom.innerHTML + `<repeat direction="backward" />`;
  1595. } else {
  1596. lastMeasure.innerHTML = lastMeasure.innerHTML + `
  1597. <barline location="right">
  1598. <bar-style>light-heavy</bar-style>
  1599. <repeat direction="backward" />
  1600. </barline>`
  1601. }
  1602. // console.log(lastMeasure)
  1603. }
  1604. }
  1605. }
  1606. }
  1607. }
  1608. // 计算evxml的起始播放时间
  1609. const analyzeEvxml = (xmlParse: any, xmlUrl?: string) => {
  1610. // xml拍号数
  1611. const xmlNum = xmlParse.getElementsByTagName("timegap")[0]?.getElementsByTagName("values")[0]?.getElementsByTagName("item")[0]?.getAttribute('num');
  1612. const denNum = xmlParse.getElementsByTagName("timegap")[0]?.getElementsByTagName("values")[0]?.getElementsByTagName("item")[0]?.getAttribute('den');
  1613. const xmlNum2 = xmlParse.getElementsByTagName("timegap")[0]?.getElementsByTagName("values")[0]?.getElementsByTagName("item")[1]?.getAttribute('num');
  1614. const denNum2 = xmlParse.getElementsByTagName("timegap")[0]?.getElementsByTagName("values")[0]?.getElementsByTagName("item")[1]?.getAttribute('den');
  1615. const timeGaps: any = xmlParse.getElementsByTagName("timegap")?.length ? Array.from(xmlParse.getElementsByTagName("timegap")?.[0]?.getElementsByTagName("values")?.[0]?.getElementsByTagName("item")) : [];
  1616. state.xmlHasTimes = !!xmlParse.getElementsByTagName("times")?.length
  1617. // 第一个音符的起始时间
  1618. const firstMeasure = xmlParse.getElementsByTagName("measure")[0];
  1619. if (firstMeasure) {
  1620. const firstNoteBeginTime = firstMeasure.getElementsByTagName("times")[0]?.getElementsByTagName("time")[0]?.getAttribute('begin');
  1621. state.evXmlBeginTime = firstNoteBeginTime ? firstNoteBeginTime / 1000 : xmlNum ? 60 / state.originSpeed * xmlNum * 4/denNum : 0;
  1622. state.secondEvXmlBeginTime = firstNoteBeginTime ? 0 : xmlNum2 ? 60 / state.originSpeed * xmlNum2 * 4/denNum2 : 0;
  1623. const hasTimeGap = state.xmlHasTimeGap = xmlParse.getElementsByTagName("timegap").length > 0;
  1624. const hasTimes = xmlParse.getElementsByTagName("times").length > 0;
  1625. if (timeGaps && timeGaps.length && !firstNoteBeginTime) {
  1626. // 有timegap的曲子,需要找到是从哪一小节开始循环的,默认是从第一节开始循环
  1627. const startRepeat = Array.from(xmlParse.getElementsByTagName("repeat") || []).filter((item: any) => item?.getAttribute('direction') === 'forward')
  1628. const firstRepeat: any = startRepeat?.length ? startRepeat[0] : null;
  1629. if (firstRepeat) {
  1630. let parentElement = firstRepeat?.parentNode
  1631. while (parentElement && parentElement.tagName !== 'measure') {
  1632. parentElement = parentElement.parentNode
  1633. }
  1634. state.timegapRepeatMeasureIndex = parentElement?.getAttribute('number') ? Number(parentElement?.getAttribute('number')) : 1;
  1635. }
  1636. for (const timeGap of timeGaps) {
  1637. const num: any = timeGap?.getAttribute('num'), den: any = timeGap?.getAttribute('den');
  1638. const startTime = num ? 60 / state.originSpeed * num * 4/den : 0;
  1639. state.evXmlBeginArr.push(startTime)
  1640. }
  1641. }
  1642. console.log('🚀 ~ evxml解析','有timegap:',hasTimeGap,'有times:',hasTimes,'timegap集合',state.evXmlBeginArr,'第一个timegap',state.evXmlBeginTime)
  1643. }
  1644. // if (!hasTimeGap && !hasTimes) {
  1645. // state.noTimes.push(xmlUrl)
  1646. // }
  1647. }
  1648. /**
  1649. * 兼容处理xml声部移调
  1650. * 打谱软件可能会自动处理移调,这类型的xml就不用通过程序移调了
  1651. * 没有通过软件处理的移调xml,才需要通过程序处理
  1652. * 判读规则:只处理独奏的,不处理合奏的,
  1653. * <instrument-name></instrument-name>标签的值为:Tenor Recorder(竖笛)、Panpipes(排箫)、Ocarina(陶笛)、Woodwind(葫芦丝)、空的和solo,需要程序处理移调
  1654. */
  1655. export const compatibleXmlPitchVoice = (xmlParse: any) => {
  1656. const partNames = Array.from(xmlParse.getElementsByTagName('part-name'));
  1657. const partListNames = partNames.filter((item: any) => item?.textContent?.trim().toLocaleUpperCase() !== "COMMON");
  1658. if (partListNames.length == 1) {
  1659. const instrumentNames = Array.from(xmlParse.getElementsByTagName('instrument-name')) || [];
  1660. // @ts-ignore
  1661. const instrumentName = instrumentNames[0]?.textContent?.trim()?.toLocaleLowerCase() || ''
  1662. // console.log('instrument名称',instrumentName)
  1663. // 是否需要程序处理移调
  1664. let xmlNeedAdjustVoice = false;
  1665. switch (state.musicalCodeId) {
  1666. case 37:
  1667. case 38:
  1668. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') || instrumentName.includes('tenor recorder') ? true : false
  1669. break;
  1670. case 33:
  1671. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') || instrumentName.includes('panpipes') ? true : false
  1672. break;
  1673. case 34:
  1674. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') || instrumentName.includes('ocarina') ? true : false
  1675. break;
  1676. case 35:
  1677. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') || instrumentName.includes('woodwind') ? true : false
  1678. break;
  1679. case 39:
  1680. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') || instrumentName.includes('whistling') ? true : false
  1681. break;
  1682. default:
  1683. xmlNeedAdjustVoice = !instrumentName || instrumentName.includes('solo') ? true : false
  1684. break;
  1685. }
  1686. (window as any).xmlNeedAdjustVoice = xmlNeedAdjustVoice
  1687. }
  1688. }
  1689. // 筛选出这个音符中的值(比前一个音符时值大的值)
  1690. function fliterNotesTime(note:any, preTime:number):undefined|number {
  1691. // 音符可能涉及多遍歌词,所以这里要找到对应的times
  1692. if(note?.noteTimeInfo?.length){
  1693. const timeObj = note?.noteTimeInfo.find((value:any) => {
  1694. const beginTime = value?.begin*1000 || 0
  1695. return beginTime > preTime || Math.abs(beginTime - preTime)< 10 //差值在10毫秒之内
  1696. })
  1697. return timeObj?.begin*1000
  1698. }else{
  1699. return undefined
  1700. }
  1701. }