level.ts 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /**
  2. * This module represents the levels for the game. Each level consists of lines
  3. * that you have to complete. Each line has the kanji of the line, which is used
  4. * solely for display and the kana of the line which the input is based.
  5. */
  6. namespace level {
  7. export interface Line {
  8. kanji: string,
  9. kana: string,
  10. start?: number,
  11. end?: number
  12. }
  13. export interface Level {
  14. name: string,
  15. creator: string | null,
  16. genre: string | null,
  17. difficulty: string | null,
  18. audio: string | null,
  19. background?: string | null,
  20. songLink?: string,
  21. lines: Line[]
  22. }
  23. export interface LevelSet {
  24. name: string,
  25. levels: Level[]
  26. }
  27. export interface Config {
  28. background: string,
  29. selectMusic: string | null,
  30. selectSound: string,
  31. decideSound: string,
  32. baseColor: string,
  33. highlightColor: string,
  34. levelSets: LevelSet[]
  35. }
  36. export async function loadFromJson(url: string): Promise<Config> {
  37. const response = await window.fetch(url);
  38. return await response.json();
  39. }
  40. let parser = new DOMParser();
  41. async function parseXML(response: Response): Promise<Document> {
  42. const text = await response.text();
  43. let normalized = text.replace(/[“”]/g, '"');
  44. return parser.parseFromString(normalized, "text/xml");
  45. }
  46. export async function loadFromTM(base: string): Promise<Config> {
  47. let settingsXML = window.fetch(base+'/settings.xml').then(parseXML);
  48. let levelSets = window.fetch(base+'/folderlist.xml')
  49. .then(parseXML)
  50. .then(dom => parseTMFolderList(base, dom));
  51. const [settings, levels] = await Promise.all([settingsXML, levelSets]);
  52. return parseTMSettings(base, levels, settings);
  53. }
  54. function parseTMSettings(base: string, levelSets: LevelSet[], dom: Document): Config {
  55. function getData(tag: string): string | null {
  56. let elem = dom.querySelector(tag);
  57. if (elem === null) {
  58. return null;
  59. } else {
  60. return base+'/'+elem.getAttribute('src');
  61. }
  62. }
  63. let background = getData('background');
  64. let selectMusic = getData('selectmusic');
  65. let selectSound = getData('selectsound');
  66. let decideSound = getData('decidesound');
  67. if (background === null) {
  68. throw new Error('background is not set');
  69. }
  70. if (decideSound === null) {
  71. throw new Error('decidesound is not set');
  72. }
  73. if (selectSound === null) {
  74. throw new Error('selectsound is not set');
  75. }
  76. return {
  77. background,
  78. baseColor: 'white',
  79. highlightColor: 'blue',
  80. selectMusic,
  81. selectSound,
  82. decideSound,
  83. levelSets
  84. }
  85. }
  86. function parseTMFolderList(base: string, dom: Document): Promise<LevelSet[]> {
  87. let folderList = dom.querySelectorAll('folder');
  88. let promises = [];
  89. for (let i = 0; i < folderList.length; ++i) {
  90. let folder = folderList[i];
  91. let name = folder.getAttribute('name');
  92. let path = folder.getAttribute('path');
  93. if (name === null || path === null) {
  94. console.warn(`Invalid folder entry ${name} with path ${path}`);
  95. continue;
  96. }
  97. let promise = window.fetch(base+'/'+path)
  98. .then(parseXML)
  99. .then(dom => parseTMFolder(base, name!, dom))
  100. promises.push(promise);
  101. }
  102. return Promise.all(promises);
  103. }
  104. async function parseTMFolder(base: string, name: string, dom: Document): Promise<LevelSet> {
  105. let musicList = dom.querySelectorAll('musicinfo');
  106. let promises = [];
  107. for (let i = 0; i < musicList.length; ++i) {
  108. let musicInfo = musicList[i];
  109. let xmlPath = base+'/'+musicInfo.getAttribute('xmlpath');
  110. let audioPath = base+'/'+musicInfo.getAttribute('musicpath');
  111. function getData(tag: string): string | null {
  112. let elem = musicInfo.querySelector(tag);
  113. if (elem === null) {
  114. return null;
  115. } else {
  116. return elem.textContent;
  117. }
  118. }
  119. let name = getData('musicname') || '[Unknown]';
  120. let creator = getData('artist');
  121. let genre = getData('genre');
  122. let difficulty = getData('level');
  123. let promise = window.fetch(xmlPath)
  124. .then(parseXML)
  125. .then(parseTMSong)
  126. .then(lines => {
  127. return {
  128. name,
  129. creator,
  130. genre,
  131. difficulty,
  132. audio: audioPath,
  133. lines
  134. }
  135. })
  136. promises.push(promise);
  137. }
  138. const levels = await Promise.all(promises);
  139. return { name, levels }
  140. }
  141. function parseTMSong(dom: Document): Line[] {
  142. let kanjiList = dom.querySelectorAll('nihongoword');
  143. let kanaList = dom.querySelectorAll('word');
  144. let intervalList = dom.querySelectorAll('interval');
  145. let lines: Line[] = [];
  146. let time = 0;
  147. for (let i = 0; i < intervalList.length; ++i) {
  148. let start = time;
  149. const interval = intervalList[i].textContent;
  150. if (interval === null) {
  151. throw new Error(`Invalid interval: ${interval}`);
  152. }
  153. time += parseInt(interval) / 1000
  154. lines.push({
  155. kanji: kanjiList[i].textContent || '',
  156. kana: kanaList[i].textContent || '',
  157. start: start,
  158. end: time
  159. })
  160. }
  161. return lines;
  162. }
  163. }