display.ts 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /*
  2. * This module handles displaying the UI. The most important one is the main
  3. * area which contains the text to be typed in. Progress is displayed on the
  4. * kana part of the area, while errors are shown via the romaji section. The
  5. * kanji is simply just for reading.
  6. */
  7. import { KanaInputState as InputState } from './kana';
  8. import * as state from './state';
  9. import { TransitionResult } from './state';
  10. import * as level from './level';
  11. import * as util from './util';
  12. class SingleKanaDisplayComponent {
  13. element: HTMLElement;
  14. finished: boolean;
  15. constructor(kana: string) {
  16. this.element = document.createElement('span');
  17. this.element.classList.add('kana');
  18. this.element.textContent = kana;
  19. this.element.setAttribute('data-text', kana);
  20. this.finished = false;
  21. }
  22. setPartial() {
  23. if (!this.finished) {
  24. this.element.classList.add('half');
  25. }
  26. }
  27. setFull() {
  28. this.finished = true;
  29. this.element.classList.remove('half');
  30. this.element.classList.add('full');
  31. }
  32. }
  33. class KanaMachineController {
  34. state: state.StateMachine;
  35. children: SingleKanaDisplayComponent[];
  36. current: number;
  37. get elements() {
  38. return this.children.map((kanaComponent) => kanaComponent.element);
  39. }
  40. constructor(kana: string, state: state.StateMachine) {
  41. this.state = state;
  42. this.current = 0;
  43. this.state.addObserver(this.observer);
  44. this.children = kana
  45. .split('')
  46. .map((c) => new SingleKanaDisplayComponent(c));
  47. }
  48. observer: state.Observer = (result, boundary) => {
  49. if (boundary) {
  50. this.children[this.current].setFull();
  51. this.current += 1;
  52. } else if (result != TransitionResult.FAILED) {
  53. this.children[this.current].setPartial();
  54. }
  55. };
  56. destroy(): void {
  57. this.state.removeObserver(this.observer);
  58. }
  59. }
  60. export class KanaDisplayController {
  61. children: KanaMachineController[];
  62. constructor(readonly element: HTMLElement) {
  63. this.children = [];
  64. }
  65. setInputState(inputState: InputState | null) {
  66. this.clearChildren();
  67. if (inputState == null) {
  68. this.children = [];
  69. } else {
  70. this.children = inputState.map((kana, machine) => {
  71. return new KanaMachineController(kana, machine);
  72. });
  73. this.children.forEach((child) => {
  74. child.elements.forEach((kanaElement) => {
  75. this.element.appendChild(kanaElement);
  76. });
  77. });
  78. }
  79. }
  80. private clearChildren(): void {
  81. this.children.forEach((child) => {
  82. child.elements.forEach((kanaElement) => {
  83. this.element.removeChild(kanaElement);
  84. });
  85. child.destroy();
  86. });
  87. }
  88. destroy(): void {
  89. this.clearChildren();
  90. }
  91. }
  92. export class RomajiDisplayController {
  93. inputState: InputState | null;
  94. constructor(
  95. readonly firstElement: HTMLElement,
  96. readonly restElement: HTMLElement
  97. ) {
  98. this.inputState = null;
  99. }
  100. setInputState(inputState: InputState | null) {
  101. this.clearObservers();
  102. this.inputState = inputState;
  103. if (this.inputState != null) {
  104. this.inputState.map((_, machine) => {
  105. machine.addObserver(this.observer);
  106. });
  107. this.observer(TransitionResult.SUCCESS, false);
  108. } else {
  109. this.firstElement.textContent = '';
  110. this.restElement.textContent = '';
  111. }
  112. }
  113. private clearObservers(): void {
  114. if (this.inputState != null) {
  115. this.inputState.map((_, machine) => {
  116. machine.removeObserver(this.observer);
  117. });
  118. }
  119. }
  120. observer: state.Observer = (result) => {
  121. if (result === TransitionResult.FAILED) {
  122. this.firstElement.classList.remove('error');
  123. this.firstElement.offsetHeight; // trigger reflow
  124. this.firstElement.classList.add('error');
  125. } else if (this.inputState !== null) {
  126. let remaining = this.inputState.getRemainingInput();
  127. this.firstElement.textContent = remaining.charAt(0);
  128. this.restElement.textContent = remaining.substring(1);
  129. } else {
  130. this.firstElement.textContent = '';
  131. this.restElement.textContent = '';
  132. }
  133. };
  134. destroy(): void {
  135. this.clearObservers();
  136. }
  137. }
  138. export class TrackProgressController {
  139. totalBar: HTMLElement;
  140. intervalBar: HTMLElement;
  141. listener: ((event: AnimationPlaybackEvent) => void) | null;
  142. constructor(private element: HTMLElement, private lines: level.Line[]) {
  143. this.totalBar = util.getElement(element, '.total .shade');
  144. this.intervalBar = util.getElement(element, '.interval .shade');
  145. this.listener = null;
  146. }
  147. start(start: number = 0): void {
  148. this.clearAnimations();
  149. const end = this.lines[this.lines.length - 1].end!;
  150. const progress = start / end;
  151. this.totalBar.animate(
  152. { width: [`${progress * 100}%`, '100%'] },
  153. {
  154. duration: (end - start) * 1000,
  155. }
  156. );
  157. for (const line of this.lines) {
  158. if (line.end! <= start) {
  159. continue;
  160. }
  161. const segmentStart = Math.max(line.start!, start);
  162. const segmentLength = line.end! - segmentStart;
  163. const fullSegmentLength = line.end! - line.start!;
  164. const progress = 1 - segmentLength / fullSegmentLength;
  165. const animation = this.intervalBar.animate(
  166. { width: [`${progress * 100}%`, '100%'] },
  167. {
  168. delay: (segmentStart - start) * 1000,
  169. duration: segmentLength * 1000,
  170. }
  171. );
  172. if (this.listener) {
  173. animation.addEventListener('finish', this.listener);
  174. }
  175. }
  176. }
  177. pause(): void {
  178. this.totalBar.getAnimations().forEach((anim) => anim.pause());
  179. this.intervalBar.getAnimations().forEach((anim) => anim.pause());
  180. }
  181. setListener(func: (event: AnimationPlaybackEvent) => void): void {
  182. this.listener = func;
  183. }
  184. destroy(): void {
  185. this.clearAnimations();
  186. }
  187. private clearAnimations() {
  188. this.totalBar.getAnimations().forEach((anim) => anim.cancel());
  189. this.intervalBar.getAnimations().forEach((anim) => anim.cancel());
  190. }
  191. }
  192. export class Score {
  193. combo: number = 0;
  194. score: number = 0;
  195. maxCombo: number = 0;
  196. finished: number = 0;
  197. hit: number = 0;
  198. missed: number = 0;
  199. skipped: number = 0;
  200. lastMissed: boolean = false;
  201. lastSkipped: boolean = false;
  202. intervalEnd(finished: boolean): void {
  203. if (finished) {
  204. this.finished += 1;
  205. } else {
  206. this.combo = 0;
  207. }
  208. }
  209. update(result: TransitionResult, boundary: boolean): void {
  210. if (result === TransitionResult.FAILED) {
  211. this.missed += 1;
  212. this.lastMissed = true;
  213. this.combo = 0;
  214. } else if (result === TransitionResult.SKIPPED) {
  215. this.skipped += 1;
  216. this.lastSkipped = true;
  217. this.combo = 0;
  218. }
  219. if (boundary) {
  220. if (this.lastSkipped) {
  221. // no points if we've skipped
  222. this.lastSkipped = false;
  223. return;
  224. } else if (this.lastMissed) {
  225. this.hit += 1;
  226. this.score += 50;
  227. this.lastMissed = false;
  228. } else {
  229. this.hit += 1;
  230. this.score += 100 + this.combo;
  231. }
  232. this.combo += 1;
  233. }
  234. if (this.combo > this.maxCombo) {
  235. this.maxCombo = this.combo;
  236. }
  237. }
  238. }
  239. export class ScoreController {
  240. comboElement: HTMLElement;
  241. scoreElement: HTMLElement;
  242. maxComboElement: HTMLElement;
  243. finishedElement: HTMLElement;
  244. hitElement: HTMLElement;
  245. missedElement: HTMLElement;
  246. skippedElement: HTMLElement;
  247. inputState: InputState | null = null;
  248. score: Score;
  249. constructor(
  250. private scoreContainer: HTMLElement,
  251. private statsContainer: HTMLElement
  252. ) {
  253. this.comboElement = util.getElement(scoreContainer, '.combo');
  254. this.scoreElement = util.getElement(scoreContainer, '.score');
  255. this.maxComboElement = util.getElement(scoreContainer, '.max-combo');
  256. this.finishedElement = util.getElement(scoreContainer, '.finished');
  257. this.hitElement = util.getElement(statsContainer, '.hit');
  258. this.missedElement = util.getElement(statsContainer, '.missed');
  259. this.skippedElement = util.getElement(statsContainer, '.skipped');
  260. this.score = new Score();
  261. this.setValues();
  262. }
  263. setInputState(inputState: InputState | null): void {
  264. this.clearObservers();
  265. this.inputState = inputState;
  266. if (this.inputState != null) {
  267. this.inputState.map((_, m) => {
  268. m.addObserver(this.observer);
  269. });
  270. }
  271. }
  272. intervalEnd(finished: boolean): void {
  273. this.score.intervalEnd(finished);
  274. this.setValues();
  275. }
  276. observer: state.Observer = (result, boundary) => {
  277. this.score.update(result, boundary);
  278. this.setValues();
  279. };
  280. setValues(): void {
  281. this.comboElement.textContent =
  282. this.score.combo == 0 ? '' : this.score.combo + ' combo';
  283. this.scoreElement.textContent = this.score.score + '';
  284. this.maxComboElement.textContent = this.score.maxCombo + '';
  285. this.finishedElement.textContent = this.score.finished + '';
  286. this.hitElement.textContent = this.score.hit + '';
  287. this.missedElement.textContent = this.score.missed + '';
  288. this.skippedElement.textContent = this.score.skipped + '';
  289. }
  290. private clearObservers(): void {
  291. if (this.inputState != null) {
  292. this.inputState.map((_, machine) => {
  293. machine.removeObserver(this.observer);
  294. });
  295. }
  296. }
  297. destroy(): void {
  298. this.clearObservers();
  299. }
  300. }